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

90 lines
4.1 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">
恭学教育集团以下简称"我们"通过gw.gongxue100.com网站及关联平台为用户提供天津专升本相关的教育服务
</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. 免责声明</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">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">
本条款受中华人民共和国法律管辖因本条款产生的争议双方应友好协商解决协商不成的提交天津市有管辖权的人民法院诉讼解决
</p>
</section>
<section class="mb-8">
<h2 class="text-xl font-semibold text-apple-dark mb-4">8. 联系方式</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>