Spaces:
Running
Running
File size: 17,269 Bytes
1156dcb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CCSE 西班牙国籍考试题库 - 支持、隐私政策与服务条款</title>
<style>
:root {
--primary-color: #c0392b;
--primary-hover: #a93226;
--secondary-color: #d35400;
--text-color: #2c3e50;
--bg-color: #f8f9fa;
--card-bg: #ffffff;
--border-color: #e9ecef;
--disclaimer-bg: #fff3cd;
--disclaimer-border: #ffeba2;
--disclaimer-text: #856404;
--accent-bg: #f0f7ff;
--accent-border: #3498db;
}
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.7;
color: var(--text-color);
background-color: var(--bg-color);
margin: 0;
padding: 20px 15px;
}
.container {
max-width: 860px;
margin: 0 auto;
background-color: var(--card-bg);
padding: 40px 35px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
header {
text-align: center;
padding-bottom: 25px;
border-bottom: 2px solid var(--primary-color);
margin-bottom: 30px;
}
h1 {
color: var(--primary-color);
font-size: 26px;
margin: 0 0 10px 0;
line-height: 1.3;
}
.subtitle {
font-size: 15px;
color: #7f8c8d;
font-weight: normal;
display: block;
margin-top: 5px;
}
.nav-tabs {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.nav-tabs a {
color: var(--text-color);
text-decoration: none;
padding: 8px 16px;
background-color: #f1f3f5;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
}
.nav-tabs a:hover {
background-color: var(--primary-color);
color: #ffffff;
}
.disclaimer-banner {
background-color: var(--disclaimer-bg);
border: 1px solid var(--disclaimer-border);
color: var(--disclaimer-text);
padding: 16px 20px;
border-radius: 8px;
margin-bottom: 35px;
font-size: 14px;
}
.disclaimer-banner strong {
color: #533f03;
}
h2 {
color: var(--text-color);
font-size: 20px;
border-bottom: 1px solid var(--border-color);
padding-bottom: 8px;
margin-top: 40px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}
h3 {
color: var(--primary-color);
font-size: 17px;
margin-top: 25px;
margin-bottom: 12px;
}
h4 {
color: var(--text-color);
font-size: 15px;
margin-top: 18px;
margin-bottom: 8px;
}
.section {
margin-bottom: 40px;
}
.language-block {
margin-bottom: 25px;
}
ul {
list-style-type: none;
padding-left: 0;
margin: 10px 0;
}
li {
margin-bottom: 10px;
position: relative;
}
.emoji-list li {
padding-left: 28px;
text-indent: -28px;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 15px;
margin: 20px 0;
}
.feature-card {
background-color: #f8f9fa;
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 15px;
}
.feature-card h4 {
margin-top: 0;
color: var(--secondary-color);
}
.contact-info {
background-color: var(--accent-bg);
padding: 18px 20px;
border-radius: 8px;
border-left: 4px solid var(--accent-border);
margin-top: 20px;
}
hr {
border: 0;
height: 1px;
background: var(--border-color);
margin: 35px 0;
}
strong {
color: #1a252f;
}
.badge {
display: inline-block;
background-color: #e74c3c;
color: white;
font-size: 11px;
padding: 2px 8px;
border-radius: 10px;
vertical-align: middle;
margin-left: 5px;
}
@media (max-width: 600px) {
.container {
padding: 20px 18px;
}
h1 {
font-size: 22px;
}
.feature-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>CCSE 西班牙国籍考试题库 2026 买断版<span class="badge">买断无广告</span></h1>
<span class="subtitle">CCSE Test Prep — Official Question Bank & Real Exam Simulation</span>
<span class="subtitle" style="font-size: 0.85em; margin-top: 6px; color: #555;">(西班牙语原题 + 中 / 英 / 阿 三语对照对照刷题 · 100% 纯本地离线)</span>
</header>
<!-- 顶部快速导航 -->
<div class="nav-tabs">
<a href="#support">技术支持 / Support</a>
<a href="#privacy-policy">隐私政策 / Privacy Policy</a>
<a href="#terms-of-service">服务条款 / Terms of Service</a>
</div>
<!-- 重要非官方免责声明栏 -->
<div class="disclaimer-banner">
<strong>⚠️ 特别声明 / IMPORTANT DISCLAIMER:</strong><br>
本应用由独立开发者制作,<strong>非塞万提斯学院(Instituto Cervantes)或任何政府机构的官方应用</strong>,与官方无任何隶属或许可关系。“CCSE”为塞万提斯学院之注册商标。本应用所有题目均根据官方公开考纲及知识手册整理编写,仅供考生备考学习使用。<br>
<em>This app is NOT official and is NOT affiliated with or endorsed by the Instituto Cervantes or any government agency. "CCSE" is a registered trademark of Instituto Cervantes.</em>
</div>
<!-- 1. 技术支持部分 -->
<div class="section" id="support">
<h2>🛠️ 技术支持 / Support</h2>
<div class="language-block">
<p>感谢您使用<strong>《CCSE 西班牙国籍考试题库买断版》</strong>!本应用专为准备参加西班牙宪法与社会文化知识考试(CCSE)的入籍申请者设计。我们承诺提供<strong>无广告、无订阅、一次买断、100% 离线</strong>的高效备考体验。</p>
<div class="feature-grid">
<div class="feature-card">
<h4>📚 完整 300 题库</h4>
<p>涵盖官方 4 大主题:政府与宪法、西班牙历史、艺术文化、社会生活。</p>
</div>
<div class="feature-card">
<h4>⏱️ 全真模拟考试</h4>
<p>25 题、45 分钟倒计时、60% 及格线,完美还原塞万提斯学院考场体验。</p>
</div>
<div class="feature-card">
<h4>🌐 多语言双语对照</h4>
<p>西语原题搭配中文、英文或阿拉伯语对照,非西语母语者备考无障碍。</p>
</div>
<div class="feature-card">
<h4>📴 100% 纯离线刷题</h4>
<p>无网环境随时随地刷题,无需注册账号,零流量消耗。</p>
</div>
</div>
<h4>常见问题解答 (FAQ)</h4>
<ul class="emoji-list">
<li>🔹 <strong>如何切换题目与解析的翻译语言?</strong><br>在刷题或答题界面顶部,点击语言切换按钮,即可在<strong>中文 (Chinese)、英文 (English)、阿拉伯文 (Arabic)</strong>之间自由切换对照语言,西语原文保持不变。</li>
<li>🔹 <strong>更换新手机后,需要重新购买吗?</strong><br>不需要。只要您在同一系统(如 iOS)的设备上登录购买时使用的同一个 Apple ID,打开 App 进入设置页面点击<strong>“恢复购买 (Restore Purchases)”</strong>即可直接解锁完整版,无需再次付费。</li>
<li>🔹 <strong>完全没有网络可以正常使用吗?</strong><br>完全可以。本应用主打纯本地极速体验,除首次在 App Store 下载安装外,所有的 300 道题库、卡片记忆、错题复习、模拟考试和法条解析均保存在本地,无需联网。</li>
<li>🔹 <strong>题目解析里的法条依据准确吗?</strong><br>每道题目均附有详细的答案解释,并精确标注对应的《西班牙宪法》条款或官方 CCSE 备考手册章节,方便进一步查阅与深度记忆。</li>
</ul>
<div class="contact-info">
<h4>📬 联系开发者 / Contact Support</h4>
<p>如果在刷题过程中遇到任何技术问题、发现题目解析错漏或需协助恢复购买,欢迎随时联系我们:<br>
📧 <strong>开发者邮箱:</strong> 710354687@qq.com<br>
⏱️ <strong>回复时间:</strong> 工作日 24 小时内回复处理</p>
</div>
</div>
</div>
<hr>
<!-- 2. 隐私政策部分 -->
<div class="section" id="privacy-policy">
<h2>🔒 隐私政策 / Privacy Policy</h2>
<div class="language-block">
<h3>中文隐私声明</h3>
<p><strong>核心承诺:</strong> 我们极度重视并保护您的个人隐私。本应用为纯粹的备考刷题工具,<strong>不收集、不上传、不共享、不出售</strong>您的任何个人身份信息。您的所有学习进度、错题记录和收藏题目仅保存在您设备的本地存储中。</p>
<h4>1. 我们收集与不收集的数据</h4>
<p>由于应用采用纯本地离线架构,我们绝不收集以下数据:</p>
<ul class="emoji-list">
<li>❌ <strong>不收集个人身份信息:</strong> 不要求注册登录,不收集姓名、邮箱、电话号码或护照/居留卡号。</li>
<li>❌ <strong>不收集位置信息:</strong> 不申请任何 GPS 或地理位置权限。</li>
<li>❌ <strong>不收集设备追踪符:</strong> 不收集 IDFA 等广告追踪标识符。</li>
<li>❌ <strong>无第三方广告 SDK:</strong> 绝不内置任何第三方广告 SDK(如 AdMob、穿山甲等),保障界面纯净。</li>
</ul>
<h4>2. 数据存储与安全</h4>
<p>您产生的刷题历史、模拟考成绩、错题本和收藏夹等数据均存储在您的手机本地设备中。卸载应用将彻底清除这些本地数据。我们无法也无需获取您的任何学习记录。</p>
<h4>3. 第三方服务(仅限应用内购买)</h4>
<p>为向您提供“一次购买、永久使用”的内购验证服务,我们仅接入了必要的内购管理 SDK:</p>
<ul class="emoji-list">
<li>✅ <strong>RevenueCat:</strong> 仅用于验证苹果 App Store 的匿名购买收据(Receipt Data),以解锁高级功能。RevenueCat 不会获取您的真实姓名、Apple ID 账号或任何个人私密数据。</li>
</ul>
<h4>4. 设备权限说明</h4>
<p>本应用无需申请相机、麦克风、相册、通讯录、定位或蓝牙等任何敏感设备权限。</p>
</div>
<hr>
<div class="language-block">
<h3>English Privacy Policy (For App Store Review & Global Users)</h3>
<p><strong>Applies to:</strong> CCSE Test Prep / CCSE 西班牙国籍考试题库买断版</p>
<p><strong>Core Commitment:</strong> We are committed to protecting your privacy. This application is a fully offline study tool designed for the Spanish CCSE citizenship exam. We do NOT collect, store, or share any Personally Identifiable Information (PII).</p>
<ul class="emoji-list">
<li>❌ <strong>No Personal Data Collection:</strong> We do not collect your name, email, phone number, location, or sensitive identifiers. No user account registration is required.</li>
<li>❌ <strong>No Advertising / Tracking:</strong> We do not include any third-party ad networks or tracking SDKs.</li>
<li>✅ <strong>Local Storage:</strong> All user progress, bookmarks, incorrect answers, and mock exam scores are saved exclusively on your local device.</li>
<li>✅ <strong>In-App Purchase Validation:</strong> We use the RevenueCat SDK strictly to process and validate anonymous In-App Purchase receipts via Apple/Google. RevenueCat does not link payment receipts to your personal identity.</li>
</ul>
</div>
</div>
<hr>
<!-- 3. 服务条款部分 -->
<div class="section" id="terms-of-service">
<h2>📄 服务条款 / Terms of Service</h2>
<div class="language-block">
<h3>中文服务条款</h3>
<p><strong>最后更新日期:2026年7月</strong></p>
<h4>1. 条款接受</h4>
<p>当您下载、安装或使用本应用(以下简称“本 App”),即表示您已阅读、理解并同意受本服务条款的约束。</p>
<h4>2. 应用功能与付费模式</h4>
<ul class="emoji-list">
<li>• <strong>一次性买断制:</strong> 本 App 采用“一次购买、永久解锁”的买断模式,无任何隐形消费、按月续费或订阅制费用。</li>
<li>• <strong>免费试用与解锁:</strong> 提供部分章节题库的免费体验。付费解锁后可享受全部 300 道最新题库、中/英/阿多语言对照、全真模拟考场及错题自动收集功能。</li>
</ul>
<h4>3. 重要免责声明(非官方提示)</h4>
<ul class="emoji-list">
<li>⚠️ <strong>非官方机构:</strong> 本应用为独立开发者团队开发,<strong>并非塞万提斯学院(Instituto Cervantes)或西班牙政府机构的官方应用程序</strong>。</li>
<li>⚠️ <strong>商标与版权说明:</strong> “CCSE”商标归塞万提斯学院所有。本应用中出现的官方考试题库及考纲均源自公开渠道整理,仅供个人学习交流。</li>
<li>⚠️ <strong>考试结果不保证:</strong> 本应用旨在提升您的备考效率。能否通过官方 CCSE 考试取决于您的实际复习投入与综合掌握程度,开发者不对任何用户的官方考试成绩、行政申诉或补考费用承担任何法律责任。</li>
</ul>
<h4>4. 知识产权保护</h4>
<p>本 App 的软件代码、界面设计、交互逻辑、多语言翻译文本及人工撰写的答案解析均受知识产权法保护。未经许可,严禁对本应用进行逆向工程、破解、数据抓取或二次打包发布。</p>
</div>
<hr>
<div class="language-block">
<h3>Terms of Service (English Summary)</h3>
<ul class="emoji-list">
<li>• <strong>Non-Official Entity:</strong> This application is developed by an independent developer and is NOT affiliated with, endorsed by, or representative of Instituto Cervantes or the Spanish Government.</li>
<li>• <strong>Educational Purpose:</strong> This app serves strictly as a practice and study aid for individuals preparing for the official CCSE exam.</li>
<li>• <strong>One-Time Purchase:</strong> Access to full features is unlocked via a single one-time In-App Purchase. No automatic recurring subscriptions.</li>
<li>• <strong>Disclaimer of Warranties:</strong> While we strive for 100% accuracy in questions and translated explanations, we offer no guarantee of passing scores on official exams. The developer is not liable for exam results or official application outcomes.</li>
</ul>
</div>
</div>
</div>
</body>
</html> |