/* ===== 网站协议/制度页面通用样式 ===== */
/* 适用于任何网站，无外部依赖，仅PC端 */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #eef1f6;
    line-height: 1.8;
    font-size: 15px;
}

a { color: #3b6fad; text-decoration: none; }
a:hover { color: #1a365d; text-decoration: underline; }

/* ---- 顶部导航 ---- */
.policy-header {
    background: linear-gradient(135deg, #0b6e55 0%, #1aad8c 100%);
    color: #fff;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 12px rgba(26,54,93,0.18);
}

.policy-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.policy-header .logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.policy-header .logo-text a {
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}

.policy-header .logo-text a:hover {
    opacity: .85;
    text-decoration: none;
}

.policy-header .nav-links {
    display: flex;
    gap: 28px;
}

.policy-header .nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}

.policy-header .nav-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* ---- 内容区域 ---- */
.policy-body {
    background: #eef1f6;
    padding: 40px 0 60px;
}

.policy-body .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 0;
    overflow: hidden;
}

/* 页面标题栏 */
.policy-card .card-title-bar {
    background: linear-gradient(135deg, #f7f9fc 0%, #edf1f7 100%);
    border-bottom: 1px solid #dde3ec;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.policy-card .card-title-bar h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    position: relative;
    padding-left: 16px;
}

.policy-card .card-title-bar h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, #2b5ea7, #1a365d);
    border-radius: 2px;
}

.policy-card .back-link {
    font-size: 14px;
    color: #5b7bb4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.policy-card .back-link:hover {
    color: #1a365d;
    text-decoration: none;
}

/* 文章内容 */
.policy-card .article-content {
    padding: 45px 50px 50px;
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.policy-card .article-content p {
    margin-bottom: 8px;
}

.policy-card .article-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin: 30px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8ecf1;
}

.policy-card .article-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #2b5ea7;
    margin: 24px 0 10px;
}

/*
.policy-card .article-content .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
    margin: 28px 0 12px;
}
*/

.policy-card .article-content .sub-title {
    font-size: 16px;
    font-weight: 700;
    color: #2b5ea7;
    margin: 18px 0 8px;
}

.policy-card .article-content ul,
.policy-card .article-content ol {
    margin: 8px 0 12px 24px;
}

.policy-card .article-content li {
    margin-bottom: 4px;
}

.policy-card .article-content .right-align {
    text-align: right;
    margin-top: 20px;
    color: #666;
}

.policy-card .article-content .contact-box {
    background: #f7f9fc;
    border: 1px solid #dde3ec;
    border-radius: 4px;
    padding: 16px 24px;
    margin: 16px 0;
}

.policy-card .article-content .contact-box p {
    margin-bottom: 4px;
}

.policy-card .article-content .contact-box .label {
    font-weight: 700;
    color: #1a365d;
    margin-right: 8px;
}

/* ---- 底部 ---- */
.policy-footer {
    background: #1a2332;
    color: rgba(255,255,255,0.75);
    padding: 32px 0;
    text-align: center;
}

.policy-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-footer p {
    font-size: 13px;
    line-height: 2.2;
}

.policy-footer a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.policy-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.policy-footer .footer-divider {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 12px auto;
}
