/* ===== 基础样式 ===== */
html, body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-family: "SF Pro SC","PingFang SC","Microsoft YaHei",Arial,sans-serif;
    color: #333;
}

a {
    color: #128beb;
    text-decoration: none;
}

a:hover {
    color: #006ec5;
}

/* ===== 页面容器 ===== */
.legal-wrapper {
    max-width: 900px;
    margin: 64px auto;
    padding: 48px;
    background: #ffffff;
    border: 1px solid #dce2e4;
    border-radius: 4px;
    box-sizing: border-box;
}

/* ===== 标题区域 ===== */
.legal-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin: 20px 0 6px;
}

.legal-update {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 48px;
}

/* ===== 正文 ===== */
.legal-content {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content strong {
    color: #333;
}

.indent {
    text-indent: 28px;
}

/* ===== 分节 ===== */
.legal-section {
    margin-top: 40px;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    line-height: 34px;
}

/* ===== 移动端 ===== */
@media (max-width: 480px) {
    body {
        background: #ffffff;
    }

    .legal-wrapper {
        margin: 0;
        padding: 30px;
        border: none;
        border-radius: 0;
    }
}
