You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
5.2 KiB
166 lines
5.2 KiB
@{
|
|
ViewData["Title"] = "隐私政策";
|
|
}
|
|
|
|
<style>
|
|
.privacy-content {
|
|
line-height: 1.6;
|
|
color: #495057;
|
|
}
|
|
|
|
.privacy-content h1 {
|
|
color: #343a40;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
padding-bottom: 0.5rem;
|
|
border-bottom: 2px solid #e9ecef;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.privacy-content h2 {
|
|
color: #495057;
|
|
font-weight: 600;
|
|
margin-bottom: 0.75rem;
|
|
margin-top: 1.5rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.privacy-content p {
|
|
margin-bottom: 0.75rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.privacy-content ul {
|
|
margin-bottom: 0.75rem;
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
.privacy-content li {
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
/* 页面容器 */
|
|
.privacy-container {
|
|
max-height: calc(100vh - 280px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* 隐私内容滚动区域 */
|
|
.privacy-scroll-area {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
min-height: 0;
|
|
}
|
|
|
|
/* 自定义滚动条样式 */
|
|
.privacy-scroll-area::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.privacy-scroll-area::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.privacy-scroll-area::-webkit-scrollbar-thumb {
|
|
background: #c1c1c1;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.privacy-scroll-area::-webkit-scrollbar-thumb:hover {
|
|
background: #a8a8a8;
|
|
}
|
|
|
|
/* 响应式调整 */
|
|
@@media (max-width: 768px) {
|
|
.privacy-container {
|
|
max-height: calc(100vh - 240px);
|
|
}
|
|
|
|
.privacy-content h1 {
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.privacy-content h2 {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.privacy-content p {
|
|
font-size: 0.95rem;
|
|
}
|
|
}
|
|
|
|
@@media (max-width: 576px) {
|
|
.privacy-container {
|
|
max-height: calc(100vh - 220px);
|
|
}
|
|
|
|
.privacy-content h1 {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.privacy-content h2 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.privacy-content p {
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title">
|
|
<i class="fas fa-shield-alt"></i> 隐私政策
|
|
</h3>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<div class="privacy-container">
|
|
<div class="privacy-scroll-area">
|
|
<div class="p-3">
|
|
<div class="privacy-content">
|
|
<h1>@ViewData["Title"]</h1>
|
|
<p>本页面用于详细说明网站的隐私政策。</p>
|
|
<p>我们致力于保护您的隐私,确保您的个人信息安全。本系统仅用于LTE协议测试和开发目的,不会收集或存储任何个人敏感信息。</p>
|
|
<p>所有的日志数据和消息记录仅用于技术分析和调试,不会用于其他商业目的。</p>
|
|
|
|
<h2>数据收集</h2>
|
|
<p>本系统不会主动收集任何个人身份信息。所有的技术数据仅用于系统运行和调试目的。</p>
|
|
|
|
<h2>数据使用</h2>
|
|
<p>收集的技术数据仅用于:</p>
|
|
<ul>
|
|
<li>系统性能监控和优化</li>
|
|
<li>错误诊断和修复</li>
|
|
<li>协议测试和开发</li>
|
|
</ul>
|
|
|
|
<h2>数据安全</h2>
|
|
<p>我们采用行业标准的安全措施来保护您的数据,包括:</p>
|
|
<ul>
|
|
<li>数据加密传输</li>
|
|
<li>访问控制</li>
|
|
<li>定期安全审计</li>
|
|
</ul>
|
|
|
|
<h2>数据保留</h2>
|
|
<p>技术日志数据会根据系统配置自动清理,不会永久保存。</p>
|
|
|
|
<h2>联系我们</h2>
|
|
<p>如果您对本隐私政策有任何疑问,请联系系统管理员。</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|