    <style>
/* privacy.css - 隐私政策页面专用样式表 */

/* 基础内容样式 */
.privacy-content {
    padding: 20px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 章节样式 */
.privacy-section {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 主标题样式 */
.privacy-section h2 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

/* 副标题样式 */
.privacy-section h3 {
    color: #34495e;
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 500;
}

/* 列表样式 */
.privacy-section ul {
    padding-left: 25px;
    margin: 15px 0;
}

.privacy-section li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

.privacy-section li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接样式 */
.privacy-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 更新信息样式 */
.update-info {
    font-style: italic;
    color: #7f8c8d;
    text-align: right;
    margin-top: 20px;
    font-size: 14px;
}

/* 特别说明框样式 */
.note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
    font-size: 15px;
}

.note strong {
    color: #2c3e50;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .privacy-content {
        padding: 15px;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-section h3 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 10px;
    }
    
    .privacy-section {
        padding: 12px;
    }
    
    .privacy-section ul {
        padding-left: 20px;
    }
}
    </style>