/* =========================================================
   使用规范页面专属样式
   templates/assets/css/standards.css
========================================================= */

/* =========================================================
   内容主体
========================================================= */

.standards-content {
    padding: 40px 0 60px;
    background: #fff;
}

/* =========================================================
   内容容器（复用 about 的容器）
========================================================= */

.standards-content .about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   页面标题（与 about 页保持一致）
========================================================= */

.standards-content .about-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.standards-content .about-section-heading-en {
    font-size: 13px;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.standards-content .about-section-heading h2 {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.standards-content .about-heading-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #0076c8;
    border-radius: 2px;
}

/* =========================================================
   内容正文
========================================================= */

.standards-body {
    max-width: 900px;
    margin: 0 auto;
}

/* 引言段落 */
.standards-body .intro-text {
    font-size: 16px;
    line-height: 2;
    color: #333;
    background: #f8f9fa;
    padding: 22px 28px;
    border-radius: 6px;
    border-left: 4px solid #0076c8;
    margin-bottom: 36px;
    text-align: justify;
}

/* 规范章节 */
.standards-body .standards-section {
    margin-bottom: 40px;
}

.standards-body .standards-section:last-child {
    margin-bottom: 0;
}

/* 章节主标题（H2） */
.standards-body h2 {
    font-size: 21px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0076c8;
    position: relative;
}

/* 章节子标题（H3） */
.standards-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-top: 22px;
    margin-bottom: 10px;
}

/* 正文段落 */
.standards-body p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 14px;
    text-align: justify;
}

.standards-body p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   高亮引用块（可选）
========================================================= */

.standards-body .highlight-box {
    background: #f5f8fc;
    padding: 18px 22px;
    border-radius: 6px;
    margin: 16px 0;
}

/* =========================================================
   响应式
========================================================= */

/* 平板及以下 */
@media (max-width: 768px) {
    .standards-content {
        padding: 30px 0 40px;
    }

    .standards-content .about-section-heading h2 {
        font-size: 24px;
    }

    .standards-content .about-section-heading-en {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .standards-body .intro-text {
        font-size: 15px;
        line-height: 1.9;
        padding: 18px 20px;
    }

    .standards-body h2 {
        font-size: 18px;
    }

    .standards-body h3 {
        font-size: 16px;
    }

    .standards-body p {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* 手机 */
@media (max-width: 480px) {
    .standards-content {
        padding: 24px 0 30px;
    }

    .standards-content .about-section-heading h2 {
        font-size: 20px;
    }

    .standards-content .about-section-heading-en {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .standards-body .intro-text {
        font-size: 14px;
        line-height: 1.8;
        padding: 14px 16px;
        margin-bottom: 24px;
    }

    .standards-body h2 {
        font-size: 17px;
        padding-bottom: 8px;
    }

    .standards-body h3 {
        font-size: 15px;
        margin-top: 18px;
    }

    .standards-body p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .standards-body .standards-section {
        margin-bottom: 28px;
    }

    .standards-body .highlight-box {
        padding: 14px 16px;
        margin: 12px 0;
    }
}