CCSWebsite/console/cookie.html
2025-06-17 01:43:15 +00:00

125 lines
4.0 KiB
HTML
Executable File
Raw Permalink 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.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cookies政策 - 圆周云境</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 40px;
padding: 20px 0;
border-bottom: 1px solid #e1e4e8;
}
header h1 {
color: #2c3e50;
font-size: 2.2rem;
margin-bottom: 10px;
}
header p {
color: #7f8c8d;
font-size: 1rem;
}
.content {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
padding: 30px;
margin-bottom: 40px;
}
h2 {
color: #2c3e50;
font-size: 1.5rem;
margin: 30px 0 15px;
padding-bottom: 10px;
border-bottom: 2px solid #3498db;
display: inline-block;
}
p {
margin-bottom: 20px;
color: #444;
}
ul {
margin-left: 20px;
margin-bottom: 20px;
}
li {
margin-bottom: 10px;
}
footer {
text-align: center;
padding: 20px 0;
color: #7f8c8d;
font-size: 0.9rem;
border-top: 1px solid #e1e4e8;
}
</style>
</head>
<body>
<header>
<h1>Cookies政策 - 圆周云境</h1>
<p>最后更新: 2025年5月24日</p>
</header>
<div class="content">
<section>
<h2>1. Cookies的使用</h2>
<p>圆周云境使用Cookies来增强用户体验和实现登录注册的token验证功能。Cookies是您访问我们的服务时我们存储在您设备上的小文本文件。</p>
</section>
<section>
<h2>2. Cookies的用途</h2>
<p>我们使用Cookies的主要目的包括</p>
<ul>
<li>保持您的登录状态,确保在登录过程中和登录后的会话持续性。</li>
<li>存储您的注册token信息以便验证您的身份并提供相关服务。</li>
<li>个性化您的体验,基于您的偏好来定制网站内容。</li>
<li>分析网站使用情况,以改进我们的服务。</li>
</ul>
</section>
<section>
<h2>3. Cookies的管理</h2>
<p>大多数浏览器允许您控制和管理Cookies。您可以配置浏览器来接受、拒绝或删除Cookies。</p>
<p>请注意如果禁用Cookies某些网站功能可能无法正常工作包括登录和注册功能。</p>
</section>
<section>
<h2>4. 第三方Cookies</h2>
<p>我们的网站可能包含第三方服务的Cookies如社交媒体插件或分析工具。这些第三方可能使用Cookies来收集有关您访问我们网站的信息。</p>
</section>
<section>
<h2>5. 您的选择</h2>
<p>您可以通过浏览器设置来管理和控制Cookies的使用。请访问浏览器的帮助部分获取相关信息。</p>
<p>如果您不想接收Cookies可以将浏览器设置为拒绝对Cookies的请求。请注意这样做可能会影响您使用我们网站的某些功能。</p>
</section>
</div>
<footer>
<p>&copy; 2025 圆周云境. 保留所有权利。</p>
</footer>
</body>
</html>