/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px 0;
}

/* 容器样式 */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 标题样式 */
.privacy-title {
    font-size: 36px; /* 标题放大 */
    color: #222;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    font-weight: 700;
}

/* 日期区域 */
.privacy-date {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

.privacy-date p {
    display: inline-block;
    margin: 0 15px;
}

/* 内容区域 */
.privacy-content {
    color: #444;
}

.privacy-content p {
    margin-bottom: 16px;
    text-align: justify;
}

/* 章节标题 */
.section-title {
    font-size: 24px;
    color: #222;
    margin: 35px 0 18px;
    font-weight: 600;
    padding-left: 10px;
    border-left: 4px solid #007bff;
}

/* 子章节标题 */
.sub-section-title {
    font-size: 18px;
    color: #333;
    margin: 25px 0 15px;
    font-weight: 600;
}

/* 子子章节标题 */
.sub-sub-section-title {
    font-size: 16px;
    color: #333;
    margin: 20px 0 12px;
    font-weight: 600;
}

/* 列表样式 */
.privacy-content ol,
.privacy-content ul {
    margin: 10px 0 20px 40px;
}

.privacy-content ol li,
.privacy-content ul li {
    margin-bottom: 10px;
    text-align: justify;
}

.content-list {
    margin: 15px 0 25px 40px;
}

.content-list li {
    margin-bottom: 8px;
}

/* 联系信息样式 */
.contact-info {
    color: #007bff;
    font-weight: 500;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 25px;
    }

    .privacy-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .sub-section-title {
        font-size: 16px;
    }

    .privacy-date p {
        display: block;
        margin: 5px 0;
    }
}