﻿/* ============================================================
           yszc.aspx — 隐私政策页样式
           设计语言与 home.css 统一，继承 :root 变量体系
           采用稍窄版心以提升法律文本可读性
           ============================================================ */

/* ---------- 页面 Hero 标题区 ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--brand) 0%, #2a56b5 100%);
    padding: 44px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-hero::after {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
    }

    .page-hero::before {
        content: '';
        position: absolute;
        left: -60px;
        bottom: -70px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
    }

    .page-hero .container {
        position: relative;
        z-index: 1;
    }

    .page-hero h1 {
        font-size: 32px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 2px;
        line-height: 1.3;
    }

    .page-hero p {
        font-size: 14px;
        color: rgba(255,255,255,0.8);
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.7;
        font-weight: 350;
    }

/* ---------- 协议内容容器 ---------- */
.agreement-content {
    padding: 36px 0 10px;
}

    .agreement-content .container {
        max-width: 860px;
        margin: 0 auto;
        width: 100%;
        padding: 0 48px;
    }

/* ---------- 提示条款 ---------- */
.agreement-notice {
    background: #fffbe6;
    border: 1px solid #f5e6a3;
    border-radius: 10px;
    padding: 22px 28px;
    margin-bottom: 36px;
}

    .agreement-notice h3 {
        font-size: 16px;
        font-weight: 700;
        color: #8a6d3b;
        margin-bottom: 12px;
    }

    .agreement-notice p {
        font-size: 14px;
        color: #8a7440;
        line-height: 1.9;
        margin-bottom: 8px;
    }

        .agreement-notice p:last-child {
            margin-bottom: 0;
        }

    .agreement-notice em {
        font-style: normal;
        font-weight: 600;
        color: #6b5520;
    }

/* ---------- 协议章节 ---------- */
.agreement-section {
    margin-bottom: 40px;
}

    .agreement-section:last-child {
        margin-bottom: 20px;
    }

    .agreement-section .section-header {
        margin-bottom: 20px;
    }

/* ---------- 协议内容卡片 ---------- */
.agreement-card {
    background: var(--surface);
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 28px 32px;
}

/* ---------- 子标题 ---------- */
.agreement-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    margin: 26px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--divider);
    line-height: 1.5;
}

    .agreement-subtitle:first-child {
        margin-top: 0;
    }

/* ---------- 条款正文 ---------- */
.agreement-card p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.9;
    margin-bottom: 10px;
    text-align: justify;
}

    .agreement-card p:last-child {
        margin-bottom: 0;
    }

.agreement-card em, .agreement-card .em {
    font-style: normal;
    font-weight: 650;
    color: var(--text-2);
}

/* ---------- 列表 ---------- */
.agreement-card ol {
    margin: 8px 0 12px 22px;
    padding: 0;
}

    .agreement-card ol li {
        font-size: 14px;
        color: var(--text-3);
        line-height: 1.9;
        margin-bottom: 6px;
        padding-left: 4px;
    }

/* ---------- 联系方式 ---------- */
.contact-info {
    margin-top: 12px;
    padding: 16px 20px;
    background: var(--brand-50);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-3);
    line-height: 2;
}

    .contact-info strong {
        color: var(--text-2);
        font-weight: 600;
    }

/* ---------- 分隔间距 ---------- */
.dv-space {
    height: 20px;
    width: 100%;
}

/* ============================================================
           响应式
           ============================================================ */

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
    .agreement-content .container {
        padding: 0 24px;
    }

    .page-hero {
        padding: 36px 0 32px;
    }

        .page-hero h1 {
            font-size: 26px;
            letter-spacing: 1px;
        }

    .agreement-card {
        padding: 22px 24px;
    }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
    .agreement-content .container {
        padding: 0 16px;
    }

    .page-hero {
        padding: 28px 0 24px;
    }

        .page-hero h1 {
            font-size: 22px;
        }

    .agreement-content {
        padding: 24px 0 10px;
    }

    .agreement-section {
        margin-bottom: 30px;
    }

    .agreement-card {
        padding: 18px 18px;
    }

    .agreement-notice {
        padding: 16px 18px;
    }

    .agreement-subtitle {
        font-size: 14px;
    }

    .agreement-card p, .agreement-card ol li {
        font-size: 13px;
    }
}

/* Small mobile: <= 480px */
@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 20px;
    }

    .agreement-card {
        padding: 14px 16px;
    }

        .agreement-card p, .agreement-card ol li {
            font-size: 13px;
        }
}
