/* 闁稿繈鍔嶉弻濠囧几娴ｈ櫣鏆嗛梺鏉跨Х婢瑰﹪寮憴鍕垫敵 */
:root {
    --primary: #2E7D32; /* 缂備浇鍎绘竟濠冪▔婵犳凹鏆柨娑樻湰濞插潡寮伴幘缁橆潐閻犲浄鎷� */
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary: #37474F;
    --accent: #FF5722; /* 婵鐟ㄦ竟濠傤嚕妤﹁法娈堕柤鐧告嫹 */
    --accent-light: #FF8A65;
    --light: #FAFAFA;
    --dark: #263238;
    --text: #37474F;
    --text-light: #78909C;
    --border: #CFD8DC;
    --card-bg: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.08);
    --radius: 6px;
    --radius-lg: 12px;
}


* { margin: 0; padding: 0; box-sizing: border-box; }


body {
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.7; /* 闁哄洦娼欓妶浠嬫儍閸曨偄璁查悹鍥╃帛閳ь剨鎷� */
    color: var(--text);
    background-color: var(--light);
    font-size: 16px; /* 闁哄秴娲ら崳顖溾偓娑欍仦缂嶅寰勮閻剟鏁嶅畝鍐╃闁炬梹绋戝鍛婄附閿燂拷 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent-light);
}


.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}


.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }
.py-4 { padding: 20px 0; }
.py-5 { padding: 30px 0; }


.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1001;
    width: 0%;
}


.header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: var(--secondary);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav a.active {
    color: var(--primary);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}


.mobile-nav {
    background-color: var(--card-bg);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mobile-nav .nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
}

.mobile-nav .nav a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}


.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 15px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text);
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--border);
}


.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.main-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}


.article-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.article-tag {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}


.article-body {
    padding: 30px;
}

.article-excerpt {
    background-color: rgba(255, 87, 34, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-excerpt h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
}


.article-content h2 {
    font-size: 1.6rem;
    margin: 28px 0 18px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 24px 0 15px;
    color: var(--secondary);
}

.article-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
    display: block;
}

.image-container {
    margin: 25px 0;
    text-align: center;
}

.image-container img {
    box-shadow: var(--shadow);
}

.highlight-box {
    background-color: rgba(46, 125, 50, 0.05);
    border-radius: var(--radius);
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--primary);
}

.highlight-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}


.tags-container {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.tags-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: rgba(46, 125, 50, 0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}


.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--dark);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.sidebar-title i {
    margin-right: 10px;
    color: var(--primary);
}


.search-box {
    position: relative;
    margin-bottom: 15px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    background-color: white;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}


.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.toc-list a {
    color: var(--text);
    font-size: 0.95rem;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.toc-list a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}


.related-articles {
    margin: 40px 0;
}

.related-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.article-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-item-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.article-item-content {
    padding: 20px;
}

.article-item-category {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-item-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--dark);
    font-weight: 600;
}

.article-item-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}


.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 25px;
    margin-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 闁搞儳鍋涢崺灞俱亜閸洖鍔ラ柟绋款樀閹革拷 */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* 闁告繂绉寸花鎻掝嚕韫囨凹鍟庨悹渚婃嫹 */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

    .header-inner {
        height: 60px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-header, .article-body {
        padding: 20px;
    }
}

/* SEO濞村吋锚鐎垫煡鎮ч悷鎵毎闁哄秴鍢茬槐锟� */
.structured-data {
    display: none;
}

/* 闁炬碍枪濞叉捇宕ｇ€ｎ亗鍋ㄩ柣銊ュ濞堬綁鎸婅箛鎾虫暥閻庡湱娅㈢槐娆愮▔瀹ュ棙鈻旂紒鈧潪鎵ɑ闁告瑯鍨辨慨鍕矗閺嶇數绀� */
.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Template 001 home page */
.official-home {
            --home-bg: #f7fafc;
            --home-surface: #ffffff;
            --home-ink: #122033;
            --home-muted: #667085;
            --home-line: #d9e2ec;
            --home-primary: #1d6f8f;
            --home-primary-dark: #12465c;
            --home-green: #16835d;
            --home-amber: #c77a08;
            --home-shadow: 0 18px 48px rgba(18, 32, 51, 0.08);
            margin: 0;
            background: var(--home-bg);
            color: var(--home-ink);
            font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.65;
        }

        .official-home * {
            box-sizing: border-box;
        }

        .official-home a {
            color: inherit;
            text-decoration: none;
        }

        .official-home img {
            display: block;
            max-width: 100%;
        }

        .home-shell {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .home-topbar {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid rgba(217, 226, 236, 0.86);
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(14px);
        }

        .home-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 24px;
        }

        .home-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-height: 44px;
            font-weight: 700;
            color: var(--home-primary-dark);
        }

        .home-brand-mark {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--home-primary), var(--home-green));
            color: #fff;
            font-weight: 800;
            letter-spacing: 0;
        }

        .home-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.18;
        }

        .home-brand-text small {
            color: var(--home-muted);
            font-size: 12px;
            font-weight: 500;
        }

        .home-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .home-links a {
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            padding: 0 14px;
            border-radius: 8px;
            color: #344054;
            font-size: 15px;
            font-weight: 600;
        }

        .home-links a:hover {
            background: #edf6f8;
            color: var(--home-primary-dark);
        }

        .home-nav-action {
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 18px;
            border-radius: 8px;
            background: var(--home-primary);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 10px 22px rgba(29, 111, 143, 0.22);
        }

        .home-menu-button {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--home-line);
            border-radius: 8px;
            background: #fff;
            color: var(--home-ink);
            cursor: pointer;
        }

        .home-menu-button span,
        .home-menu-button::before,
        .home-menu-button::after {
            content: "";
            display: block;
            width: 18px;
            height: 2px;
            margin: 4px auto;
            border-radius: 99px;
            background: currentColor;
        }

        .home-hero {
            position: relative;
            overflow: hidden;
            padding: 80px 0 64px;
            background: #10374b;
            color: #fff;
        }

        .home-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 20%, rgba(65, 193, 159, 0.35), transparent 34%),
                radial-gradient(circle at 82% 18%, rgba(106, 166, 255, 0.22), transparent 34%),
                linear-gradient(135deg, rgba(18, 70, 92, 0.98), rgba(22, 131, 93, 0.86));
            pointer-events: none;
        }

        .home-hero > .home-shell {
            position: relative;
            z-index: 1;
        }

        .home-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            align-items: center;
            gap: 48px;
        }

        .home-eyebrow {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border: 1px solid rgba(255, 255, 255, 0.38);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            color: rgba(255, 255, 255, 0.92);
            font-size: 14px;
            font-weight: 700;
        }

        .home-hero h1 {
            max-width: 760px;
            margin: 18px 0 18px;
            font-size: clamp(34px, 5vw, 62px);
            line-height: 1.12;
            letter-spacing: 0;
        }

        .home-hero p {
            max-width: 690px;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
        }

        .home-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }

        .home-button {
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 22px;
            border-radius: 8px;
            border: 1px solid transparent;
            font-weight: 800;
        }

        .home-button-primary {
            background: #fff;
            color: var(--home-primary-dark);
        }

        .official-home .home-button.home-button-primary {
            color: var(--home-primary-dark) !important;
        }

        .home-button-secondary {
            border-color: rgba(255, 255, 255, 0.48);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .home-hero-panel {
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.14);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(12px);
            overflow: hidden;
        }

        .home-hero-panel-body {
            padding: 20px;
        }

        .home-hero-panel-body strong {
            display: block;
            margin-bottom: 6px;
            font-size: 18px;
        }

        .home-hero-panel-body span {
            color: rgba(255, 255, 255, 0.84);
        }

        .home-dashboard {
            padding: 18px;
            min-height: 318px;
            background: #f8fbfd;
            color: var(--home-ink);
        }

        .home-dashboard-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            padding-bottom: 16px;
            border-bottom: 1px solid #dce7ee;
        }

        .home-dashboard-title strong {
            display: block;
            color: var(--home-ink);
        }

        .home-dashboard-title span {
            color: var(--home-muted);
            font-size: 13px;
        }

        .home-dashboard-badge {
            padding: 7px 10px;
            border-radius: 999px;
            background: #e7f7f1;
            color: var(--home-green);
            font-size: 13px;
            font-weight: 800;
        }

        .home-dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 16px;
        }

        .home-dashboard-metric {
            min-height: 84px;
            padding: 14px;
            border: 1px solid #dce7ee;
            border-radius: 8px;
            background: #fff;
        }

        .home-dashboard-metric strong {
            display: block;
            color: var(--home-primary-dark);
            font-size: 24px;
            line-height: 1;
        }

        .home-dashboard-metric span {
            display: block;
            margin-top: 8px;
            color: var(--home-muted);
            font-size: 13px;
        }

        .home-dashboard-chart {
            display: flex;
            align-items: end;
            gap: 10px;
            height: 118px;
            margin-top: 18px;
            padding: 14px;
            border: 1px solid #dce7ee;
            border-radius: 8px;
            background: #fff;
        }

        .home-dashboard-chart i {
            display: block;
            flex: 1;
            min-width: 18px;
            border-radius: 6px 6px 2px 2px;
            background: linear-gradient(180deg, #1d6f8f, #16835d);
        }

        .home-section {
            padding: 72px 0;
        }

        .home-section-alt {
            background: #fff;
        }

        .home-section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 28px;
        }

        .home-section-head h2 {
            max-width: 660px;
            margin: 0;
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.2;
            color: var(--home-ink);
            letter-spacing: 0;
        }

        .home-section-head p {
            max-width: 480px;
            margin: 0;
            color: var(--home-muted);
        }

        .home-card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .home-card {
            min-height: 100%;
            border: 1px solid var(--home-line);
            border-radius: 8px;
            background: var(--home-surface);
            padding: 24px;
            box-shadow: 0 8px 24px rgba(18, 32, 51, 0.04);
        }

        .home-card-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            background: #e7f4f7;
            color: var(--home-primary-dark);
            font-weight: 800;
        }

        .home-card h3 {
            margin: 18px 0 8px;
            font-size: 20px;
            color: var(--home-ink);
        }

        .home-card p {
            margin: 0;
            color: var(--home-muted);
        }

        .home-image-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr 0.9fr;
            gap: 18px;
            margin-top: 30px;
        }

        .home-image-card {
            position: relative;
            min-height: 260px;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid var(--home-line);
            background: #e9f1f5;
            box-shadow: 0 8px 24px rgba(18, 32, 51, 0.05);
        }

        .home-image-card:first-child {
            grid-row: span 2;
            min-height: 538px;
        }

        .home-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .home-image-caption {
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 16px;
            padding: 14px 16px;
            border-radius: 8px;
            background: rgba(15, 31, 45, 0.76);
            color: #fff;
            backdrop-filter: blur(10px);
        }

        .home-image-caption strong {
            display: block;
            margin-bottom: 4px;
            font-size: 16px;
        }

        .home-image-caption span {
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
        }

        .home-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1px;
            border: 1px solid var(--home-line);
            border-radius: 8px;
            overflow: hidden;
            background: var(--home-line);
            box-shadow: var(--home-shadow);
        }

        .home-stat {
            background: #fff;
            padding: 28px;
        }

        .home-stat strong {
            display: block;
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1;
            color: var(--home-primary-dark);
        }

        .home-stat span {
            display: block;
            margin-top: 10px;
            color: var(--home-muted);
            font-weight: 600;
        }

        .home-showcase {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
            gap: 34px;
            align-items: center;
        }

        .home-showcase-media {
            border-radius: 8px;
            box-shadow: var(--home-shadow);
            overflow: hidden;
            background: #ffffff;
        }

        .home-audit-panel {
            display: grid;
            gap: 14px;
            padding: 28px;
            border: 1px solid var(--home-line);
        }

        .home-audit-row {
            display: grid;
            grid-template-columns: 120px minmax(0, 1fr) 62px;
            align-items: center;
            gap: 12px;
            min-height: 50px;
        }

        .home-audit-row span {
            color: var(--home-muted);
            font-weight: 700;
        }

        .home-audit-bar {
            height: 10px;
            overflow: hidden;
            border-radius: 999px;
            background: #e7edf2;
        }

        .home-audit-bar i {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--home-primary), var(--home-green));
        }

        .home-list {
            display: grid;
            gap: 14px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .home-list li {
            display: grid;
            grid-template-columns: 36px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
            padding: 16px;
            border: 1px solid var(--home-line);
            border-radius: 8px;
            background: #fff;
        }

        .home-list b {
            display: grid;
            place-items: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #ecf8f3;
            color: var(--home-green);
            font-size: 14px;
        }

        .home-list strong {
            display: block;
            margin-bottom: 4px;
            color: var(--home-ink);
        }

        .home-list span {
            color: var(--home-muted);
        }

        .home-news-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .home-news {
            overflow: hidden;
            border: 1px solid var(--home-line);
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 8px 24px rgba(18, 32, 51, 0.04);
        }

        .home-news-mark {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 112px;
            padding: 20px;
            background: linear-gradient(135deg, #e9f7fa, #edf8f2);
            color: var(--home-primary-dark);
            font-weight: 800;
        }

        .home-news-mark span {
            display: grid;
            place-items: center;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 8px 18px rgba(18, 32, 51, 0.08);
        }

        .home-news-body {
            padding: 20px;
        }

        .home-news small {
            color: var(--home-amber);
            font-weight: 800;
        }

        .home-news h3 {
            margin: 8px 0 8px;
            font-size: 19px;
            line-height: 1.38;
            color: var(--home-ink);
        }

        .home-news p {
            margin: 0;
            color: var(--home-muted);
        }

        .home-cta {
            padding: 54px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--home-primary-dark), #16835d);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .home-cta h2 {
            margin: 0 0 10px;
            font-size: clamp(26px, 3vw, 38px);
            letter-spacing: 0;
        }

        .home-cta p {
            margin: 0;
            color: rgba(255, 255, 255, 0.86);
        }

        .home-footer {
            padding: 48px 0 28px;
            background: #0f1f2d;
            color: #d7e2ec;
        }

        .home-footer-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(3, 1fr);
            gap: 28px;
        }

        .home-footer h3 {
            margin: 0 0 12px;
            color: #fff;
            font-size: 17px;
        }

        .home-footer p,
        .home-footer a {
            color: #afc0cf;
        }

        .home-footer ul {
            display: grid;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .home-copy {
            margin-top: 34px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            color: #91a4b7;
            font-size: 14px;
        }

        .home-back-top {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 30;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 8px;
            background: var(--home-primary);
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 12px 30px rgba(18, 32, 51, 0.22);
        }

        @media (max-width: 980px) {
            .home-menu-button {
                display: block;
            }

            .home-links {
                position: absolute;
                top: 72px;
                left: 16px;
                right: 16px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 12px;
                border: 1px solid var(--home-line);
                border-radius: 8px;
                background: #fff;
                box-shadow: var(--home-shadow);
            }

            .home-links.is-open {
                display: flex;
            }

            .home-nav-action {
                display: none;
            }

            .home-hero {
                padding: 56px 0 44px;
            }

            .home-hero-grid,
            .home-showcase,
            .home-section-head,
            .home-cta {
                grid-template-columns: 1fr;
                flex-direction: column;
                align-items: flex-start;
            }

            .home-card-grid,
            .home-image-grid,
            .home-news-grid,
            .home-stats,
            .home-footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .home-image-card:first-child {
                grid-row: auto;
                min-height: 260px;
            }
        }

        @media (max-width: 640px) {
            .home-shell {
                width: min(100% - 24px, 1180px);
            }

            .home-brand-text small {
                display: none;
            }

            .home-hero-grid,
            .home-card-grid,
            .home-image-grid,
            .home-news-grid,
            .home-stats,
            .home-footer-grid {
                grid-template-columns: 1fr;
            }

            .home-section {
                padding: 48px 0;
            }

            .home-cta {
                padding: 30px 22px;
            }
        }

/* Template 001 detail page */
.official-detail .home-shell {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .official-detail .home-topbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(217, 226, 236, 0.86);
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(14px);
        }

        .official-detail .home-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 24px;
        }

        .official-detail .home-brand,


        .official-detail .home-topbar a,


        .official-detail .home-footer a {
            text-decoration: none;
            border-bottom: 0;
        }

        .official-detail .home-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-height: 44px;
            font-weight: 700;
            color: #12465c;
        }

        .official-detail .home-brand-mark {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: linear-gradient(135deg, #1d6f8f, #16835d);
            color: #fff;
            font-weight: 800;
        }

        .official-detail .home-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.18;
        }

        .official-detail .home-brand-text small {
            color: #667085;
            font-size: 12px;
            font-weight: 500;
        }

        .official-detail .home-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .official-detail .home-links a {
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            padding: 0 14px;
            border-radius: 8px;
            color: #344054;
            font-size: 15px;
            font-weight: 600;
        }

        .official-detail .home-links a:hover {
            background: #edf6f8;
            color: #12465c;
        }

        .official-detail .home-nav-action {
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 18px;
            border-radius: 8px;
            background: #1d6f8f;
            color: #fff !important;
            font-weight: 700;
            box-shadow: 0 10px 22px rgba(29, 111, 143, 0.22);
        }

        .official-detail .home-menu-button {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid #d9e2ec;
            border-radius: 8px;
            background: #fff;
            color: #122033;
            cursor: pointer;
        }

        .official-detail .home-menu-button span,


        .official-detail .home-menu-button::before,


        .official-detail .home-menu-button::after {
            content: "";
            display: block;
            width: 18px;
            height: 2px;
            margin: 4px auto;
            border-radius: 99px;
            background: currentColor;
        }

        .official-detail .home-footer {
            padding: 48px 0 28px;
            background: #0f1f2d;
            color: #d7e2ec;
        }

        .official-detail .home-footer-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(3, 1fr);
            gap: 28px;
        }

        .official-detail .home-footer h3 {
            margin: 0 0 12px;
            color: #fff;
            font-size: 17px;
        }

        .official-detail .home-footer p,


        .official-detail .home-footer a {
            color: #afc0cf;
        }

        .official-detail .home-footer ul {
            display: grid;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .official-detail .home-copy {
            margin-top: 34px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            color: #91a4b7;
            font-size: 14px;
        }

        .official-detail .home-back-top {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 30;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 8px;
            background: #1d6f8f;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 12px 30px rgba(18, 32, 51, 0.22);
        }

        @media (max-width: 980px) {
            .official-detail .home-menu-button {
                display: block;
            }

            .official-detail .home-links {
                position: absolute;
                top: 72px;
                left: 16px;
                right: 16px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 12px;
                border: 1px solid #d9e2ec;
                border-radius: 8px;
                background: #fff;
                box-shadow: 0 18px 48px rgba(18, 32, 51, 0.08);
            }

            .official-detail .home-links.is-open {
                display: flex;
            }

            .official-detail .home-nav-action {
                display: none;
            }

            .official-detail .home-footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .official-detail .home-shell {
                width: min(100% - 24px, 1180px);
            }

            .official-detail .home-brand-text small {
                display: none;
            }

            .official-detail .home-footer-grid {
                grid-template-columns: 1fr;
            }
        }

/* Template 001 fixed component values */
.official-home .home-chart-bar-42 { height: 42%; }
.official-home .home-chart-bar-45 { height: 45%; }
.official-home .home-chart-bar-58 { height: 58%; }
.official-home .home-chart-bar-66 { height: 66%; }
.official-home .home-chart-bar-72 { height: 72%; }
.official-home .home-chart-bar-76 { height: 76%; }
.official-home .home-chart-bar-88 { height: 88%; }

.official-home .home-audit-value-74 { width: 74%; }
.official-home .home-audit-value-78 { width: 78%; }
.official-home .home-audit-value-82 { width: 82%; }
.official-home .home-audit-value-86 { width: 86%; }
.official-home .home-audit-value-91 { width: 91%; }

.official-detail .article-gallery-image {
    width: 700px;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.official-detail .article-tag-link {
    padding: 4px 12px;
    border-radius: 12px;
    background: #f0f7ff;
    font-size: 0.8rem;
}

.official-detail .popular-article-link {
    display: flex;
    gap: 10px;
}

.official-detail .popular-article-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.official-detail .popular-article-title {
    font-size: 0.85rem;
    line-height: 1.3;
}

.official-detail .popular-article-date {
    margin-top: 4px;
    color: #999;
    font-size: 0.7rem;
}

.official-detail .related-article-image {
    width: 360px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
