83 lines
3.4 KiB
Vue
83 lines
3.4 KiB
Vue
<script setup lang="ts">
|
||
import { ArrowLeft } from 'lucide-vue-next'
|
||
</script>
|
||
|
||
<template>
|
||
<div class="pt-24 min-h-screen bg-apple-grey animate-fade-in">
|
||
<div class="max-w-4xl mx-auto px-4 md:px-6 py-12">
|
||
<a
|
||
href="javascript:history.back()"
|
||
class="inline-flex items-center gap-2 text-apple-blue hover:text-apple-blue-hover mb-8 transition-colors"
|
||
>
|
||
<ArrowLeft :size="20" />
|
||
<span>返回</span>
|
||
</a>
|
||
|
||
<div class="bg-white rounded-2xl shadow-sm p-8 md:p-12">
|
||
<h1 class="text-3xl font-bold text-apple-dark mb-8 text-center">
|
||
隐私政策
|
||
</h1>
|
||
|
||
<div class="prose-apple max-w-none">
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">1. 信息收集</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
我们收集的信息包括但不限于:姓名、联系方式、学习记录、设备信息等,仅用于为您提供更好的教育服务。
|
||
</p>
|
||
</section>
|
||
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">2. 信息使用</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
收集的信息将用于:改善服务质量、个性化学习推荐、安全保障、法律合规等目的。
|
||
</p>
|
||
</section>
|
||
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">3. 信息安全</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
我们采用行业标准的安全措施保护您的个人信息,防止未经授权的访问、使用或泄露。
|
||
</p>
|
||
</section>
|
||
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">4. 第三方共享</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
未经您同意,我们不会向第三方出售、交易或转让您的个人信息,除非法律法规要求或为提供服务所必需。
|
||
</p>
|
||
</section>
|
||
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">5. Cookie政策</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
我们使用Cookie来提升用户体验,您可以通过浏览器设置管理Cookie偏好。
|
||
</p>
|
||
</section>
|
||
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">6. 权利保障</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
您有权访问、更正、删除您的个人信息,或要求限制处理您的个人信息。
|
||
</p>
|
||
</section>
|
||
|
||
<section class="mb-8">
|
||
<h2 class="text-xl font-semibold text-apple-dark mb-4">7. 联系我们</h2>
|
||
<p class="text-apple-text-gray mb-3">
|
||
如对本隐私政策有任何疑问,请联系:<br/>
|
||
电话:18322616529<br/>
|
||
邮箱:gongxuejiaoyu@sina.cn<br/>
|
||
地址:天津市津南区咸水沽镇雅润路东侧金浩园17号楼底商3号
|
||
</p>
|
||
</section>
|
||
|
||
<div class="mt-12 pt-8 border-t border-gray-200 text-center text-sm text-apple-text-gray">
|
||
<p>最后更新:2026年1月</p>
|
||
<p>© {{ new Date().getFullYear() }} 恭学教育集团 版权所有</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|