/* 隐私政策页面样式 */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

.privacy-content {
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.privacy-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.privacy-last-updated {
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

/* 添加update-date类的样式 */
.update-date {
    color: #666666;
    font-weight: 500;
}

/* 暗黑模式下的颜色适配 */
html.dark .privacy-last-updated {
    color: #aaaaaa;
}

html.dark .update-date {
    color: #bbbbbb;
}

/* 高对比度模式适配 */
html.high-contrast .privacy-last-updated,
html.high-contrast .update-date {
    color: #ffffff;
}

/* 英雄区域 */
.privacy-hero {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

.privacy-hero-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.privacy-hero-icon i {
    font-size: 28px;
}

.privacy-hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    max-width: 80%;
}

/* 部分样式 */
.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.privacy-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color);
}

.privacy-section ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.privacy-section li {
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--text-color);
}

.privacy-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* 学生友好的信息卡片 */
.student-friendly .info-card {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--bg-light);
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.info-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
}

.info-content {
    flex-grow: 1;
}

.info-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-content p {
    margin: 0;
}

/* 使用列表 */
.use-list {
    list-style: none;
    padding: 0;
}

.use-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.use-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 2px;
}

/* 我们不做的清单 */
.dont-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dont-item {
    display: flex;
    align-items: center;
    background-color: #fff2f2;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

.dont-item i {
    color: #e74c3c;
    font-size: 18px;
    margin-right: 15px;
}

.dont-item p {
    margin: 0;
}

/* 安全功能 */
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
}

.security-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

/* 用户权利 */
.rights-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rights-item {
    display: flex;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.rights-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 3px;
}

.rights-content {
    flex-grow: 1;
}

.rights-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.rights-content p {
    margin: 0;
}

/* 承诺 */
.commitment {
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.commitment i {
    color: #e74c3c;
    font-size: 24px;
    margin-right: 20px;
}

.commitment p {
    margin: 0;
    font-weight: 500;
}

.final-note {
    margin-bottom: 0;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

/* 打印按钮样式 */
.print-button {
    display: block;
    margin: 5px auto 20px;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.print-button:hover {
    background-color: var(--primary-dark);
}

.print-button i {
    margin-right: 5px;
}

/* 深色模式适配 */
html.dark .dont-item {
    background-color: rgba(231, 76, 60, 0.1);
}

html.dark .commitment {
    background-color: rgba(52, 152, 219, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-hero-text {
        max-width: 100%;
    }
    
    .security-item {
        flex: 1 1 100%;
    }
}

/* 打印样式 */
@media print {
    .navbar-container, .breadcrumb, .footer {
        display: none;
    }
    
    .privacy-container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
    
    .privacy-section {
        page-break-inside: avoid;
    }
    
    .print-button, .privacy-nav {
        display: none;
    }
} 