90 lines
4.1 KiB
Vue
90 lines
4.1 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">
|
||
恭学教育集团(以下简称"我们")通过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>
|