Files
gongxue-new/docs/.vitepress/theme/pages/PrivacyPolicy.vue

83 lines
3.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>