Spaces:
Running
Running
File size: 16,696 Bytes
800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c 662308d 800140c | 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 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>人工智能大航海 (AI Odyssey) - 支持与政策</title>
<style>
:root {
--primary-color: #3b82f6;
--secondary-color: #1e293b;
--bg-color: #f8fafc;
--card-bg: #ffffff;
--text-color: #334155;
--text-light: #64748b;
--border-color: #e2e8f0;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth; /* 开启平滑滚动 */
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.7;
}
header {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
color: white;
padding: 3rem 1rem 2rem 1rem;
text-align: center;
position: relative;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.lang-switch {
position: absolute;
top: 1rem;
right: 1rem;
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.3);
color: white;
padding: 0.4rem 0.8rem;
border-radius: 20px;
cursor: pointer;
font-size: 0.85rem;
transition: all 0.3s;
z-index: 10;
}
.lang-switch:hover {
background: rgba(255, 255, 255, 0.3);
}
.app-title-sub {
color: #93c5fd;
font-size: 1.1rem;
margin-top: 0.6rem;
font-weight: 300;
letter-spacing: 1px;
}
/* 导航栏样式 */
.page-nav {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}
.page-nav a {
color: white;
text-decoration: none;
background: rgba(255, 255, 255, 0.1);
padding: 0.5rem 1rem;
border-radius: 8px;
font-size: 0.95rem;
transition: all 0.3s ease;
border: 1px solid rgba(255,255,255,0.2);
}
.page-nav a:hover {
background: var(--primary-color);
border-color: var(--primary-color);
}
.container {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
.section-header {
margin: 3rem 0 1.5rem 0;
text-align: center;
font-size: 1.8rem;
color: var(--secondary-color);
font-weight: bold;
}
.section-header::after {
content: '';
display: block;
width: 50px;
height: 4px;
background: var(--primary-color);
margin: 0.5rem auto 0 auto;
border-radius: 2px;
}
.section-card {
background: var(--card-bg);
border-radius: 12px;
padding: 2rem;
margin-bottom: 1.5rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
border: 1px solid var(--border-color);
}
.highlight-box {
background-color: #eff6ff;
border-left: 4px solid var(--primary-color);
padding: 1rem 1.5rem;
border-radius: 0 8px 8px 0;
margin-bottom: 1.5rem;
}
.feature-box {
background-color: #f1f5f9;
border-radius: 8px;
padding: 1.5rem;
margin-top: 1rem;
}
h2 {
color: var(--secondary-color);
font-size: 1.3rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
h3 {
color: var(--secondary-color);
font-size: 1.1rem;
margin: 1.5rem 0 0.8rem 0;
}
ul {
list-style-type: none;
margin-bottom: 1rem;
}
.list-disc {
list-style-type: disc;
padding-left: 1.5rem;
}
li {
margin-bottom: 0.5rem;
}
.flex-li {
display: flex;
align-items: flex-start;
gap: 0.5rem;
}
.emoji-icon {
flex-shrink: 0;
margin-top: 0.1rem;
}
a {
color: var(--primary-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
margin-top: 4rem;
padding: 2rem 0;
color: var(--text-light);
font-size: 0.9rem;
border-top: 1px solid var(--border-color);
}
/* 语言切换控制 */
.lang-en, .lang-zh { display: none; }
html[lang="zh-CN"] .lang-zh { display: block; }
html[lang="zh-CN"] .lang-zh-inline { display: inline; }
html[lang="zh-CN"] .lang-en-inline { display: none; }
html[lang="en"] .lang-en { display: block; }
html[lang="en"] .lang-en-inline { display: inline; }
html[lang="en"] .lang-zh-inline { display: none; }
</style>
</head>
<body>
<header>
<button class="lang-switch" onclick="toggleLanguage()">
<span class="lang-zh-inline">English</span>
<span class="lang-en-inline">中文</span>
</button>
<div class="lang-zh">
<h1>人工智能大航海 / 全民学AI</h1>
<p class="app-title-sub">看得见的算法,玩得懂的人工智能</p>
</div>
<div class="lang-en">
<h1>AI Odyssey / AI For Everyone</h1>
<p class="app-title-sub">Interactive AI Exploration Playground</p>
</div>
<!-- 页面内导航栏 -->
<nav class="page-nav">
<a href="#support"><span class="lang-zh-inline">技术支持与反馈</span><span class="lang-en-inline">Support & FAQ</span></a>
<a href="#privacy"><span class="lang-zh-inline">隐私政策</span><span class="lang-en-inline">Privacy Policy</span></a>
<a href="#terms"><span class="lang-zh-inline">服务条款</span><span class="lang-en-inline">Terms of Service</span></a>
</nav>
</header>
<div class="container">
<!-- ================= 模块 1:技术支持 ================= -->
<div id="support">
<div class="lang-zh section-header">技术支持与反馈</div>
<div class="lang-en section-header">Support & FAQ</div>
<div class="section-card">
<p class="lang-zh">欢迎来到人工智能的科普世界!我们致力于消除技术焦虑,通过<b>生动的互动实验、好玩的闯关游戏和大白话原理拆解</b>,让每一个普通人都能轻松玩懂 AI。</p>
<p class="lang-en">Welcome to the world of AI exploration! We are dedicated to eliminating tech anxiety. Through <b>interactive playgrounds, gamified challenges, and plain-language explanations</b>, we make AI accessible for everyone.</p>
<h3 class="lang-zh" style="margin-top:2rem;">🚀 交流与反馈</h3>
<h3 class="lang-en" style="margin-top:2rem;">🚀 Contact & Feedback</h3>
<p class="lang-zh">如果您在探索过程中遇到任何程序漏洞 (Bug) 或有任何好玩的脑洞建议,欢迎随时联系我们:<br>📧 <strong>联系邮箱:</strong> <a href="mailto:710354687@qq.com">710354687@qq.com</a></p>
<p class="lang-en">If you encounter any bugs, have feature requests, or want to share your creative ideas, feel free to reach out:<br>📧 <strong>Email:</strong> <a href="mailto:710354687@qq.com">710354687@qq.com</a></p>
<h3 class="lang-zh" style="margin-top:2rem;">💡 常见问题 FAQ</h3>
<h3 class="lang-en" style="margin-top:2rem;">💡 FAQ</h3>
<div style="margin-bottom: 1rem;">
<strong class="lang-zh">⚡ 这款 App 适合零基础的人玩吗?</strong>
<strong class="lang-en">⚡ Is this App suitable for complete beginners?</strong>
<p class="lang-zh" style="color: var(--text-light);">完全适合!这里没有复杂的数学公式。你可以通过亲手“调节参数”、观察 AI 的“实时反应”来直观理解其背后的逻辑。</p>
<p class="lang-en" style="color: var(--text-light);">Absolutely! There are no complex formulas here. You can intuitively understand the logic simply by adjusting parameters and watching the AI react.</p>
</div>
</div>
</div>
<!-- ================= 模块 2:隐私政策 ================= -->
<div id="privacy">
<div class="lang-zh section-header">隐私政策</div>
<div class="lang-en section-header">Privacy Policy</div>
<div class="highlight-box">
<div class="lang-zh">
<strong>核心承诺:</strong> 我们极度尊重您的隐私。本应用不收集、存储或分享您的任何能识别个人身份的数据。您的探索进度、个人笔记、闯关记录等核心数据仅存储在您的设备本地。
</div>
<div class="lang-en">
<strong>Core Commitment:</strong> We highly respect your privacy. This app does not collect, store, or share any data that can personally identify you. Your core data is stored exclusively on your device locally.
</div>
</div>
<div class="section-card">
<h2 class="lang-zh">1. 我们不收集个人数据</h2>
<h2 class="lang-en">1. No Personal Data Collection</h2>
<p class="lang-zh">本应用的核心互动与科普功能完全离线运行。因此:</p>
<p class="lang-en">The app’s core functionality runs entirely offline. Therefore:</p>
<ul class="lang-zh">
<li class="flex-li"><span class="emoji-icon">❌</span> 我们不收集您的姓名、邮箱、电话、位置或广告追踪码。</li>
<li class="flex-li"><span class="emoji-icon">✅</span> 无需注册任何账号,无需强制登录,学习数据绝不上传云端。</li>
<li class="flex-li"><span class="emoji-icon">🗑️</span> 卸载 App 即可永久删除所有本地探索记录。</li>
</ul>
<ul class="lang-en">
<li class="flex-li"><span class="emoji-icon">❌</span> We do not collect your name, email, location, or ad tracking IDs.</li>
<li class="flex-li"><span class="emoji-icon">✅</span> No account registration required. Data is never uploaded to the cloud.</li>
<li class="flex-li"><span class="emoji-icon">🗑️</span> Uninstalling the app permanently deletes all local records.</li>
</ul>
<h2 class="lang-zh" style="margin-top:2rem;">2. 第三方服务与权限</h2>
<h2 class="lang-en" style="margin-top:2rem;">2. Third-Party Services & Permissions</h2>
<p class="lang-zh">
<strong>内购管理:</strong>我们仅使用安全的 RevenueCat SDK 处理由 Apple 提供的匿名购买收据,以解锁“高级版”功能,不关联您的真实身份。<br>
<strong>设备权限:</strong>我们坚守极简底线,不请求相机、相册、地理位置或本地网络等敏感权限。
</p>
<p class="lang-en">
<strong>In-App Purchases:</strong> We only use the secure RevenueCat SDK to validate anonymous purchase receipts from Apple to unlock "Premium" features. It does not associate with your real identity.<br>
<strong>Permissions:</strong> We do not request sensitive permissions such as camera, photos, location, or local network.
</p>
</div>
</div>
<!-- ================= 模块 3:服务条款 ================= -->
<div id="terms">
<div class="lang-zh section-header">服务条款</div>
<div class="lang-en section-header">Terms of Service</div>
<div class="section-card">
<div class="lang-zh">
<h2>1. 接受条款与应用许可</h2>
<p>下载或使用本应用即表示您同意本条款。我们授予您在个人 iOS 设备上非商业用途的有限使用许可。本应用的知识产权归我们所有,未经许可不得复制或分发。</p>
<h2 style="margin-top:2rem;">2. 应用功能与购买说明</h2>
<div class="feature-box">
<ul class="list-disc">
<li><strong>基础体验:</strong> 基础 AI 原理大白话解析、初级互动实验及本地数据归档。</li>
<li><strong>高级体验(一次性买断):</strong> 解锁全部进阶互动沙盒、深度算法探索、高级报告及无广告纯净体验。</li>
</ul>
</div>
<p style="margin-top: 1rem;">本应用采用<strong>一次性买断制</strong>,无订阅、无自动续费。所有支付均通过 Apple App Store 官方安全通道完成。</p>
<h2 style="margin-top:2rem;">3. 免责声明与责任限制</h2>
<p>本应用仅供大众进行人工智能知识科普与互动体验使用。原理解析基于当前主流技术理论简化整理,旨在消除技术焦虑。本应用不构成任何专业证书颁发或学业/就业承诺。在法律允许范围内,我们不对因使用本应用产生的间接损害承担责任。</p>
</div>
<div class="lang-en">
<h2>1. Acceptance & License</h2>
<p>By using the App, you agree to these terms. We grant you a limited, non-commercial license for your personal iOS device. All intellectual property belongs to us and cannot be copied without permission.</p>
<h2 style="margin-top:2rem;">2. Features & Purchases</h2>
<div class="feature-box">
<ul class="list-disc">
<li><strong>Standard:</strong> Basic AI plain-language explanations, entry-level experiments, and local archiving.</li>
<li><strong>Premium (One-Time Purchase):</strong> Unlocks all advanced sandboxes, in-depth algorithms, and an ad-free experience.</li>
</ul>
</div>
<p style="margin-top: 1rem;">The App uses a <strong>one-time purchase model</strong> with no subscriptions. All payments are securely processed via the Apple App Store.</p>
<h2 style="margin-top:2rem;">3. Disclaimer & Limitation of Liability</h2>
<p>The App is for general AI popularization and interactive experiences. Concepts are simplified to eliminate tech anxiety. The App does not provide professional certifications or academic commitments. To the fullest extent permitted by law, we are not liable for indirect damages arising from App usage.</p>
</div>
</div>
</div>
</div>
<footer>
<p class="lang-zh">
© 2026 人工智能大航海 (AI Odyssey). 保留所有权利。<br>
最后更新日期:2026年5月17日
</p>
<p class="lang-en">
© 2026 AI Odyssey. All rights reserved.<br>
Last Updated: May 17, 2026
</p>
</footer>
<script>
function toggleLanguage() {
const html = document.documentElement;
if (html.getAttribute('lang') === 'zh-CN') {
html.setAttribute('lang', 'en');
} else {
html.setAttribute('lang', 'zh-CN');
}
}
</script>
</body>
</html> |