/* roulang page: index */
:root {
            --green-600:#1F7A4D;
            --green-700:#156039;
            --orange-500:#F36F36;
            --orange-600:#DE5820;
            --ink-900:#151A1D;
            --ink-700:#272E31;
            --paper:#F4F6F3;
            --card:#FFFFFF;
            --line:rgba(21,26,29,.1);
            --muted:#6B767A;
            --radius:8px;
            --radius-btn:999px;
            --shadow:0 8px 24px rgba(21,26,29,.06);
            --shadow-hover:0 14px 32px rgba(21,26,29,.10);
            --pad-section:104px 0;
            --pad-section-md:72px 0;
            --pad-section-sm:56px 0;
            --font-cn:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
            --font-weight-black:900;
            --trans:.25s cubic-bezier(.25,.46,.45,.94);
        }

        *,*::before,*::after{box-sizing:border-box}
        html,body{margin:0;padding:0}
        body{
            font-family:var(--font-cn);
            background:var(--paper);
            color:var(--ink-900);
            font-size:16px;
            line-height:1.75;
            -webkit-font-smoothing:antialiased;
        }
        img{max-width:100%;display:block}
        a{color:inherit;text-decoration:none}
        ul,ol{margin:0;padding:0;list-style:none}
        button{font-family:inherit;cursor:pointer}
        p{margin-top:0;margin-bottom:1em}

        .grid-container{max-width:76rem;margin:0 auto;padding-left:1.25rem;padding-right:1.25rem}
        .site-wrap{max-width:1200px;margin:0 auto;padding-left:1.25rem;padding-right:1.25rem}
        .grid-x{flex-wrap:wrap}
        .cell{flex:0 0 auto}

        .btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:.45rem;
            height:48px;
            padding:0 1.75rem;
            border-radius:var(--radius-btn);
            border:0;
            font-size:0.95rem;
            font-weight:700;
            line-height:1;
            transition:background .25s,color .25s,transform .2s,box-shadow .25s;
            white-space:nowrap;
        }
        .btn:focus-visible{outline:3px solid rgba(243,111,54,.35);outline-offset:3px}
        .btn--primary{background:var(--orange-500);color:var(--ink-900)}
        .btn--primary:hover{background:var(--orange-600);transform:translateY(-1px);box-shadow:0 8px 20px rgba(222,88,32,.2)}
        .btn--ghost{background:transparent;color:var(--ink-900);box-shadow:inset 0 0 0 2px var(--ink-900)}
        .btn--ghost:hover{background:var(--ink-900);color:#fff}
        .btn--ghost-light{background:transparent;color:#fff;box-shadow:inset 0 0 0 2px #fff}
        .btn--ghost-light:hover{background:#fff;color:var(--ink-900)}
        .btn--lg{height:54px;padding:0 2rem;font-size:1rem}
        .btn--sm{height:40px;padding:0 1.1rem;font-size:.88rem}

        .badge{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            padding:0 .5rem;
            height:24px;
            background:rgba(31,122,77,.1);
            color:var(--green-700);
            border-radius:4px;
            font-size:.78rem;
            font-weight:700;
            letter-spacing:.04em;
        }
        .badge--orange{background:rgba(243,111,54,.14);color:var(--orange-600)}
        .badge--light{background:rgba(255,255,255,.18);color:#fff}

        .muted{color:var(--muted)}
        .text-center{text-align:center}
        .mb-0{margin-bottom:0}
        .mt-1{margin-top:.5rem}

        .section{padding:var(--pad-section)}
        .section--paper{background:var(--paper)}
        .section--dark{background:var(--ink-900);color:rgba(255,255,255,.86)}

        .section-head{margin-bottom:56px}
        .section-kicker{
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            color:var(--green-700);
            font-size:.82rem;
            font-weight:800;
            letter-spacing:.14em;
            text-transform:uppercase;
            margin-bottom:14px;
        }
        .section-kicker::before{content:"";width:24px;height:3px;background:var(--orange-500);border-radius:3px;display:inline-block}
        .section--dark .section-kicker{color:#fff}
        .section-title{
            font-size:clamp(1.75rem,3vw,2.3rem);
            font-weight:900;
            letter-spacing:-.02em;
            line-height:1.2;
            margin:0 0 14px;
            color:var(--ink-900);
        }
        .section--dark .section-title{color:#fff}
        .section-lead{max-width:640px;font-size:1rem;color:var(--muted);margin:0}
        .section--dark .section-lead{color:rgba(255,255,255,.6)}

        /* Header Nav */
        .site-header{
            position:sticky;
            top:0;
            z-index:50;
            background:rgba(21,26,29,.96);
            backdrop-filter:blur(8px);
            box-shadow:0 1px 0 rgba(255,255,255,.08);
            min-height:76px;
        }
        .header-wrap{
            max-width:1200px;
            margin:0 auto;
            padding:0 20px;
            min-height:76px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:24px;
        }
        .site-brand{display:flex;align-items:center;gap:.65rem;flex-shrink:0}
        .brand-mark{
            display:inline-flex;align-items:center;justify-content:center;
            width:42px;height:42px;background:var(--green-600);border-radius:8px;
            color:#fff;font-weight:900;font-size:.95rem;letter-spacing:.02em;
            line-height:1;position:relative;
        }
        .brand-mark::after{
            content:"";position:absolute;right:-4px;top:-4px;width:10px;height:10px;
            background:var(--orange-500);border-radius:50%;
        }
        .brand-text{color:#fff;font-size:1.28rem;font-weight:900;letter-spacing:.02em}
        .brand-text small{display:block;font-size:.62rem;color:rgba(255,255,255,.5);font-weight:500;letter-spacing:.2em}

        .nav-panel{display:flex;align-items:center;gap:18px}
        .nav-links{display:flex;align-items:center;gap:30px}
        .nav-links a{
            color:rgba(255,255,255,.72);font-size:.96rem;font-weight:600;position:relative;
            transition:color .2s;
            padding:.25rem 0;
        }
        .nav-links a:hover{color:#fff}
        .nav-links a.active{color:#fff}
        .nav-links a.active::after{
            content:"";position:absolute;left:10%;right:10%;bottom:-4px;height:3px;
            background:var(--green-600);border-radius:4px;
        }
        .nav-links a.active::before{
            content:"";width:6px;height:6px;background:var(--orange-500);border-radius:50%;
            display:inline-block;vertical-align:middle;margin-right:5px;
        }
        .nav-cta{height:40px;padding:0 1.15rem;font-size:.88rem}

        .nav-toggle{
            display:none;width:44px;height:44px;background:transparent;border:0;
            padding:0;align-items:center;justify-content:center;flex-direction:column;gap:5px;
        }
        .nav-toggle span{display:block;width:22px;height:2px;background:#fff;transition:transform .3s,opacity .3s;border-radius:2px}
        .nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
        .nav-toggle.open span:nth-child(2){opacity:0}
        .nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

        @media screen and (max-width:63.9375em){
            .nav-toggle{display:flex}
            .nav-panel{
                position:absolute;top:76px;left:0;right:0;
                background:var(--ink-900);
                padding:1rem 1.25rem 1.5rem;
                flex-direction:column;align-items:stretch;gap:1rem;
                box-shadow:0 18px 30px rgba(0,0,0,.18);
                display:none;
            }
            .nav-panel.open{display:flex}
            .nav-links{flex-direction:column;align-items:stretch;gap:.6rem}
            .nav-links a{padding:.6rem .4rem;border-bottom:1px solid rgba(255,255,255,.08);font-size:1.03rem}
            .nav-links a.active::after{display:none}
            .nav-cta{justify-content:center}
        }
        @media screen and (min-width:64em){
            .nav-panel{display:flex}
        }

        /* Hero */
        .hero{
            position:relative;
            background:linear-gradient(110deg,rgba(21,26,29,.95),rgba(21,26,29,.72)),url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            color:#fff;
        }
        .hero::before{
            content:"";position:absolute;inset:0;
            background:linear-gradient(90deg,rgba(31,122,77,.18) 0,transparent 55%);
            pointer-events:none;
        }
        .hero-inner{
            position:relative;z-index:2;
            max-width:1200px;margin:0 auto;
            padding:calc(76px + 2rem) 24px 96px;
            display:grid;
            grid-template-columns:minmax(0,7fr) minmax(0,5fr);
            gap:56px;
            align-items:center;
        }
        .hero-title{
            font-size:clamp(2.15rem,4.5vw,3.4rem);
            font-weight:900;
            line-height:1.16;
            letter-spacing:-.02em;
            margin:20px 0 20px;
            color:#fff;
        }
        .hero-title .accent{color:var(--orange-500)}
        .hero-lead{
            font-size:1.05rem;
            color:rgba(255,255,255,.72);
            max-width:480px;
            margin:0 0 32px;
            line-height:1.85;
        }
        .hero-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
        .hero-tag{
            display:inline-flex;align-items:center;gap:.4rem;
            background:rgba(255,255,255,.12);
            border:1px solid rgba(255,255,255,.16);
            padding:.25rem .8rem;border-radius:999px;
            color:#fff;font-size:.78rem;font-weight:700;
        }
        .hero-tag::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--orange-500)}

        .hero-panel{
            background:rgba(21,26,29,.38);
            border:1px solid rgba(255,255,255,.15);
            border-radius:14px;
            padding:30px;
            box-shadow:0 30px 60px rgba(0,0,0,.24);
            position:relative;
            overflow:hidden;
        }
        .hero-panel::before{
            content:"";position:absolute;top:-60px;right:-60px;width:180px;height:180px;border-radius:50%;
            border:34px solid rgba(243,111,54,.16);
            pointer-events:none;
        }
        .panel-kicker{font-size:.78rem;color:rgba(255,255,255,.5);letter-spacing:.16em;font-weight:700;margin-bottom:20px}
        .panel-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
        .panel-cell{
            background:rgba(255,255,255,.07);
            border-radius:10px;
            padding:18px 14px;
            text-align:center;
            border:1px solid rgba(255,255,255,.07);
            transition:background .25s;
        }
        .panel-cell:hover{background:rgba(255,255,255,.12)}
        .panel-num{font-size:1.8rem;font-weight:900;color:var(--orange-500);line-height:1;letter-spacing:-.02em}
        .panel-num em{font-style:italic;font-size:2rem}
        .panel-label{margin-top:8px;font-size:.68rem;color:rgba(255,255,255,.5);letter-spacing:.04em}

        @media screen and (max-width:52.5em){
            .hero-inner{grid-template-columns:1fr;padding:58px 20px 72px;gap:44px}
            .hero-title{font-size:clamp(1.9rem,8vw,2.7rem)}
            .hero-actions .btn{width:100%;justify-content:center}
        }

        /* Latest news */
        .latest-block{
            display:grid;
            grid-template-columns:minmax(0,7fr) minmax(0,5fr);
            gap:28px;
        }
        .news-feature{
            display:block;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            overflow:hidden;
            transition:box-shadow .25s,transform .25s;
            height:100%;
        }
        .news-feature:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px)}
        .news-figure{position:relative;aspect-ratio:16/9;background:#e2e7e3;overflow:hidden}
        .news-figure img{width:100%;height:100%;object-fit:cover;transition:transform .45s}
        .news-feature:hover .news-figure img{transform:scale(1.03)}
        .caption-date{font-size:.78rem;color:var(--muted);display:flex;align-items:center;gap:.5rem;margin-top:12px}
        .news-body{padding:22px 24px 26px}
        .news-title{font-size:1.25rem;font-weight:800;line-height:1.45;margin:.7rem 0 .6rem;color:var(--ink-900)}
        .news-summary{font-size:.92rem;color:var(--muted);line-height:1.8}
        .news-side{display:flex;flex-direction:column;gap:20px}
        .news-item{
            display:flex;gap:16px;background:var(--card);border:1px solid var(--line);
            border-radius:var(--radius);padding:14px;align-items:stretch;
            transition:box-shadow .25s,transform .25s;
        }
        .news-item:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px)}
        .news-thumb{width:130px;max-width:35%;min-height:95px;border-radius:6px;background:#e2e7e3;overflow:hidden;flex-shrink:0}
        .news-thumb img{width:100%;height:100%;object-fit:cover}
        .news-item-body{flex:1;display:flex;flex-direction:column;gap:6px}
        .news-item-title{font-size:1rem;font-weight:700;line-height:1.5;margin:0;color:var(--ink-900)}
        .news-item-summary{font-size:.82rem;color:var(--muted);line-height:1.6}
        .news-item-meta{font-size:.72rem;color:var(--muted);display:flex;align-items:center;gap:.5rem;margin-top:auto}
        .latest-empty{
            grid-column:1/-1;
            background:#fff;border:1px dashed #c5d0c8;
            border-radius:var(--radius);padding:42px;text-align:center;
            color:var(--muted);font-size:.95rem;
        }
        .news-sidebar-slot{grid-column:1/-1}

        @media screen and (max-width:63.9375em){
            .latest-block{grid-template-columns:1fr}
            .news-item{max-width:100%}
            .news-thumb{width:110px;max-width:30%}
        }
        @media screen and (max-width:34.375em){
            .news-item{flex-direction:column}
            .news-thumb{width:100%;max-width:100%;height:130px;aspect-ratio:16/9}
        }

        /* Steps */
        .steps-row{
            display:grid;
            grid-template-columns:repeat(3,minmax(0,1fr));
            gap:0;
            border-radius:14px;
            background:var(--ink-900);
            padding:44px 12px;
            position:relative;
            overflow:hidden;
        }
        .steps-row::before{
            content:"";position:absolute;top:0;left:0;right:0;height:4px;
            background:linear-gradient(90deg,var(--green-600) 0 38%,var(--orange-500) 38% 55%,#d8d9d6 55% 100%);
        }
        .step-item{padding:10px 26px;position:relative;border-right:1px solid rgba(255,255,255,.08)}
        .step-item:last-child{border-right:0}
        .step-num{display:inline-block;font-size:2.8rem;font-weight:900;color:transparent;-webkit-text-stroke:2px rgba(243,111,54,.85);line-height:1;letter-spacing:-.03em;margin-bottom:18px;font-style:italic}
        .step-title{font-size:1.18rem;font-weight:800;color:#fff;margin-bottom:10px}
        .step-desc{font-size:.9rem;color:rgba(255,255,255,.55);line-height:1.75;margin:0}
        @media screen and (max-width:52.5em){
            .steps-row{grid-template-columns:1fr;padding:20px}
            .step-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.08);padding:28px 10px}
            .step-item:last-child{border-bottom:0}
        }

        /* Cases */
        .case-wrap{
            display:grid;
            grid-template-columns:minmax(0,4fr) minmax(0,8fr);
            gap:48px;
            align-items:start;
        }
        .case-list{display:flex;flex-direction:column;gap:14px}
        .case-row{
            display:grid;
            grid-template-columns:minmax(0,48px) minmax(0,1fr) minmax(0,98px);
            gap:16px;
            align-items:center;
            background:rgba(255,255,255,.055);
            border:1px solid rgba(255,255,255,.1);
            border-radius:11px;
            padding:16px 14px;
            transition:background .25s;
        }
        .case-row:hover{background:rgba(255,255,255,.09)}
        .case-idx{font-size:1.6rem;font-weight:900;color:var(--orange-500);font-style:italic;line-height:1}
        .case-body .case-type{font-size:.75rem;color:rgba(255,255,255,.48);letter-spacing:.08em;font-weight:700;margin-bottom:6px}
        .case-body .case-name{color:#fff;font-weight:800;font-size:1.02rem;margin-bottom:4px}
        .case-body .case-note{color:rgba(255,255,255,.6);font-size:.85rem;line-height:1.7}
        .case-thumb{width:98px;height:64px;border-radius:6px;object-fit:cover;background:rgba(255,255,255,.1)}
        @media screen and (max-width:63.9375em){
            .case-wrap{grid-template-columns:1fr}
            .case-list{gap:12px}
        }
        @media screen and (max-width:40em){
            .case-row{grid-template-columns:1fr 90px}
            .case-idx{grid-column:1/2}
            .case-body{grid-column:1}
            .case-thumb{grid-column:2;grid-row:1/3;width:90px;height:66px}
        }

        /* FAQ */
        .faq-wrap{
            display:grid;
            grid-template-columns:minmax(0,4fr) minmax(0,8fr);
            gap:48px;
        }
        .faq-item{
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            margin-bottom:14px;
            overflow:hidden;
            transition:box-shadow .25s;
        }
        .faq-item:hover{box-shadow:var(--shadow)}
        .faq-q{
            width:100%;
            background:transparent;
            border:0;
            text-align:left;
            font-size:1.02rem;
            font-weight:700;
            color:var(--ink-900);
            padding:20px 22px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:16px;
            line-height:1.5;
        }
        .faq-q .faq-icon{
            display:inline-flex;align-items:center;justify-content:center;
            width:30px;height:30px;border-radius:50%;
            background:rgba(31,122,77,.09);
            color:var(--green-700);
            font-size:1.1rem;font-weight:700;
            transition:all .25s;
            flex-shrink:0;
        }
        .faq-item.active .faq-icon{background:var(--orange-500);color:var(--ink-900);transform:rotate(45deg)}
        .faq-a{
            display:none;
            padding:0 22px 22px 66px;
            color:var(--muted);
            font-size:.94rem;
            line-height:1.85;
        }
        .faq-item.active .faq-a{display:block}
        .faq-index{
            margin-right:.35rem;
            color:var(--green-700);
            font-weight:900;
            font-size:.9rem;
        }
        @media screen and (max-width:63.9375em){
            .faq-wrap{grid-template-columns:1fr}
        }

        /* apply cta */
        .apply-section{
            background:
                radial-gradient(circle at 10% 10%,rgba(243,111,54,.16),transparent 300px),
                radial-gradient(circle at 90% 30%,rgba(255,255,255,.05),transparent 360px),
                var(--green-700);
            color:#fff;
            position:relative;
        }
        .apply-wrap{
            max-width:1200px;margin:0 auto;
            padding:18px 24px 0;
            background:url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            border-radius:16px;
            overflow:hidden;
        }
        .apply-inner{
            position:relative;
            padding:64px 24px 64px;
            background:rgba(21,26,29,.3);
            backdrop-filter:blur(2px);
            text-align:center;
            max-width:860px;margin:0 auto;
        }
        .apply-inner h2{font-size:clamp(1.8rem,3.2vw,2.4rem);color:#fff;margin-bottom:.8rem;letter-spacing:-.01em}
        .apply-inner p{color:rgba(255,255,255,.78);max-width:560px;margin:0 auto 30px;font-size:1.02rem}
        .apply-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:14px}
        .apply-contact{font-size:.9rem;color:rgba(255,255,255,.6);margin-top:16px}

        /* footer */
        .site-footer{background:var(--ink-900);color:rgba(255,255,255,.6);padding:64px 0 0}
        .footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.4fr;gap:40px;padding-bottom:46px}
        .footer-title{color:#fff;font-size:1rem;font-weight:800;margin-bottom:18px;letter-spacing:.05em}
        .footer-brand a{display:inline-flex;align-items:center;gap:.55rem;margin-bottom:18px}
        .footer-desc{font-size:.88rem;line-height:1.8;max-width:300px;color:rgba(255,255,255,.48);margin-bottom:0}
        .footer-links a{color:rgba(255,255,255,.55);font-size:.9rem;display:inline-flex;align-items:center;gap:6px;padding:4px 0;transition:color .2s}
        .footer-links a:hover{color:var(--orange-500)}
        .footer-links a::before{content:"›";color:var(--green-600);transition:color .2s}
        .footer-contact p{display:flex;gap:.5rem;align-items:center;margin-bottom:9px;font-size:.9rem;color:rgba(255,255,255,.55)}
        .footer-contact .ico{
            display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;
            background:rgba(255,255,255,.08);color:var(--orange-500);border-radius:7px;font-size:.85rem;flex-shrink:0;
        }
        .footer-bottom{
            border-top:1px solid rgba(255,255,255,.07);
            padding:18px 0;
            font-size:.78rem;
            text-align:center;
            color:rgba(255,255,255,.32);
            display:flex;flex-direction:column;gap:4px;
        }
        .footer-bottom .domain-text{letter-spacing:.06em}
        @media screen and (max-width:52.5em){
            .footer-grid{grid-template-columns:1fr 1fr}
        }
        @media screen and (max-width:34.375em){
            .footer-grid{grid-template-columns:1fr}
        }

        /* view more */
        .view-more{
            display:inline-flex;align-items:center;gap:8px;
            color:var(--green-700);
            font-size:.9rem;font-weight:700;
            transition:gap .25s;
        }
        .view-more:hover{gap:14px;color:var(--orange-600)}
        .section-head-row{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;flex-wrap:wrap;margin-bottom:36px}
        .mt-40{margin-top:40px}
        .mb-0{margin-bottom:0!important}
        .text-orange{color:#fff}

/* roulang page: article */
@charset "UTF-8";
        :root {
            --green-600: #1F7A4D;
            --green-700: #156039;
            --green-100: #E6F2EB;
            --orange-500: #F36F36;
            --orange-600: #DE5820;
            --ink-900: #151A1D;
            --ink-700: #272E31;
            --paper: #F4F6F3;
            --card: #FFFFFF;
            --line: rgba(21, 26, 29, .1);
            --muted: #6B767A;
            --shadow-1: 0 8px 24px rgba(21, 26, 29, .06);
            --shadow-2: 0 14px 32px rgba(21, 26, 29, .10);
            --radius: 8px;
            --radius-full: 999px;
            --site-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            -webkit-text-size-adjust: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--site-font);
            background: var(--paper);
            color: var(--ink-900);
            line-height: 1.75;
            margin: 0;
            padding: 0;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            border-style: none;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, background .2s ease, box-shadow .2s ease;
        }

        a:hover,
        a:focus {
            outline: none;
        }

        ul,
        ol,
        dl,
        p {
            margin: 0;
            padding: 0;
        }

        button {
            font: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }

        .site-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .site-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            line-height: 1;
        }

        .site-brand .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--green-600);
            color: #fff;
            font-weight: 900;
            font-size: 16px;
            border-radius: 6px;
            letter-spacing: .02em;
            flex: 0 0 40px;
        }

        .site-brand .brand-text {
            color: #F4F6F3;
            font-size: 19px;
            font-weight: 900;
            letter-spacing: .03em;
            line-height: 1.1;
            white-space: nowrap;
        }

        .site-brand .brand-text small {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .16em;
            color: #8FA79D;
            margin-top: 2px;
        }

        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 76px;
            gap: 24px;
            width: 100%;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: var(--ink-900);
            height: 76px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .site-header.scroll {
            box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
        }

        .nav-panel {
            display: flex;
            align-items: center;
            gap: 22px;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            color: rgba(255, 255, 255, .82);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 14px;
            border-radius: 4px;
            position: relative;
            transition: color .2s, background .2s;
        }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, .07);
        }

        .nav-links a.active {
            color: #fff;
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 6px;
            height: 3px;
            background: var(--orange-500);
            border-radius: 2px;
        }

        .nav-cta {
            flex: 0 0 auto;
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 6px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--site-font);
            font-weight: 800;
            font-size: 15px;
            border-radius: var(--radius-full);
            padding: 15px 30px;
            min-height: 48px;
            line-height: 1;
            border: 2px solid transparent;
            transition: background .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn--primary {
            background: var(--orange-500);
            color: var(--ink-900);
        }

        .btn--primary:hover {
            background: var(--orange-600);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(243, 111, 54, .25);
        }

        .btn--outline-light {
            background: transparent;
            border-color: rgba(255, 255, 255, .8);
            color: #fff;
        }

        .btn--outline-light:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
            color: #fff;
        }

        .btn--sm {
            min-height: 44px;
            padding: 10px 22px;
            font-size: 14px;
        }

        .btn:focus-visible,
        .nav-toggle:focus-visible,
        .nav-links a:focus-visible {
            outline: 3px solid rgba(243, 111, 54, .55);
            outline-offset: 2px;
        }

        .article-hero {
            position: relative;
            color: #fff;
            padding: 92px 0 78px;
            background-color: var(--ink-900);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border-bottom: 4px solid var(--green-600);
        }

        .article-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(21, 26, 29, .82);
        }

        .article-hero-inner {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            font-size: 13px;
            color: rgba(255, 255, 255, .75);
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 28px;
            padding: 0;
        }

        .breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb li+li::before {
            content: "/";
            color: rgba(255, 255, 255, .4);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, .88);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--orange-500);
        }

        .breadcrumb .current {
            color: #fff;
            font-weight: 600;
            max-width: 640px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .article-title {
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.3;
            font-weight: 900;
            letter-spacing: -.015em;
            margin: 0 0 22px;
            max-width: 980px;
            color: #fff;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, .78);
            margin-top: 18px;
        }

        .article-meta .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .cate-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--orange-500);
            border-radius: 50%;
            margin-right: 7px;
        }

        .article-main {
            padding: 46px 0 78px;
        }

        .article-page-shell {
            max-width: 860px;
            margin: 0 auto;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow-1);
            padding: clamp(26px, 5vw, 58px);
        }

        .article-deck {
            background: var(--green-100);
            border-left: 5px solid var(--green-600);
            padding: 20px 22px 20px 26px;
            margin-bottom: 34px;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-size: 15px;
            color: #243A30;
        }

        .article-deck strong {
            color: var(--green-700);
            font-weight: 800;
        }

        .article-line {
            border: 0;
            border-top: 1px solid var(--line);
            margin: 34px 0 30px;
        }

        .rich-text {
            font-size: 16px;
            line-height: 1.85;
            color: #252B2E;
            word-wrap: break-word;
        }

        .rich-text p {
            margin: 0 0 22px;
        }

        .rich-text h2 {
            font-size: clamp(21px, 2.6vw, 27px);
            font-weight: 900;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--green-600);
            color: var(--ink-900);
            letter-spacing: -.01em;
        }

        .rich-text h3 {
            font-size: 20px;
            font-weight: 800;
            margin: 32px 0 12px;
            color: var(--ink-900);
        }

        .rich-text h4 {
            font-size: 17px;
            font-weight: 800;
            margin: 24px 0 10px;
            color: var(--ink-900);
        }

        .rich-text a {
            color: var(--green-700);
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-color: rgba(31, 122, 77, .35);
        }

        .rich-text a:hover {
            text-decoration-color: var(--green-700);
        }

        .rich-text ul,
        .rich-text ol {
            margin: 0 0 22px;
            padding-left: 24px;
        }

        .rich-text li {
            margin-bottom: 8px;
        }

        .rich-text blockquote {
            margin: 28px 0;
            padding: 18px 24px;
            background: var(--paper);
            border-left: 4px solid var(--orange-500);
            color: #435057;
            border-radius: 0 var(--radius) var(--radius) 0;
        }

        .rich-text blockquote p {
            margin-bottom: 10px;
        }

        .rich-text blockquote p:last-child {
            margin-bottom: 0;
        }

        .rich-text figure {
            margin: 30px 0;
        }

        .rich-text figure img {
            border-radius: var(--radius);
            margin-bottom: 6px;
        }

        .rich-text figcaption {
            font-size: 13px;
            color: var(--muted);
            text-align: center;
            padding: 4px 10px 0;
        }

        .rich-text img {
            border-radius: var(--radius);
            height: auto;
        }

        .rich-text table {
            display: block;
            width: 100%;
            max-width: 100%;
            overflow-x: auto;
            border-collapse: collapse;
            margin: 26px 0;
            border-spacing: 0;
            font-size: 14px;
        }

        .rich-text table thead th {
            background: var(--ink-900);
            color: #fff;
            font-weight: 700;
            text-align: left;
        }

        .rich-text table th,
        .rich-text table td {
            border: 1px solid var(--line);
            padding: 10px 13px;
            background: #fff;
        }

        .rich-text table tr:nth-child(even) td {
            background: #FAFBF9;
        }

        .rich-text code {
            background: #F0F2F0;
            border: 1px solid #E3E6E2;
            border-radius: 4px;
            padding: 2px 8px;
            font-size: 14px;
        }

        .rich-text hr {
            border: 0;
            border-top: 1px solid var(--line);
            margin: 40px 0;
        }

        .article-tag-wrap {
            padding-top: 26px;
            margin-top: 28px;
            border-top: 1px solid var(--line);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .tag-label {
            color: var(--muted);
            font-size: 14px;
        }

        .tag-pill {
            background: var(--paper);
            border: 1px solid var(--line);
            color: var(--green-700);
            font-size: 13px;
            padding: 6px 14px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
        }

        .article-notfound {
            padding: 40px 0 16px;
            text-align: left;
            font-size: 15px;
        }

        .notfound-heading {
            color: var(--green-700);
            font-weight: 900;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .notfound-box {
            background: var(--paper);
            border-left: 5px solid var(--orange-500);
            padding: 26px 28px;
            border-radius: 0 var(--radius) var(--radius) 0;
            line-height: 1.8;
            margin: 28px 0;
        }

        .notfound-box p {
            margin-bottom: 14px;
        }

        .notfound-box a:not(.btn) {
            color: var(--green-700);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .section-next {
            background: var(--ink-900);
            padding: 88px 0 94px;
            color: #CBD5D1;
        }

        .section-next .section-title-area {
            margin-bottom: 42px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--orange-500);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: 13px;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 2px;
            background: var(--orange-500);
            display: block;
        }

        .section-next h2 {
            color: #fff;
            font-weight: 900;
            font-size: clamp(24px, 3vw, 32px);
            margin: 0;
            letter-spacing: -.01em;
        }

        .section-next .section-desc {
            color: rgba(255, 255, 255, .68);
            margin-top: 8px;
            font-size: 15px;
            max-width: 680px;
        }

        .next-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .next-card {
            background: #1E2528;
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: var(--radius);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .next-card:hover {
            border-color: rgba(255, 255, 255, .18);
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
        }

        .next-card .thumb {
            margin: 0;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #2A3133;
        }

        .next-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease;
        }

        .next-card:hover .thumb img {
            transform: scale(1.04);
        }

        .next-card-body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .next-card-body h3 {
            margin: 0;
            font-size: 19px;
            color: #fff;
            font-weight: 800;
        }

        .next-card-body p {
            color: rgba(255, 255, 255, .66);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .next-card-body a {
            color: var(--orange-500);
            font-weight: 800;
            font-size: 14px;
            margin-top: auto;
            line-height: 1.4;
        }

        .next-card-body a span {
            display: inline-block;
            margin-left: 3px;
            transition: transform .2s ease;
        }

        .next-card-body a:hover span {
            transform: translateX(4px);
        }

        .contact-cta {
            background: var(--green-700);
            padding: 66px 0;
            color: #fff;
        }

        .contact-cta .cta-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .contact-cta h2 {
            margin: 0 0 6px;
            font-size: clamp(25px, 3.4vw, 34px);
            font-weight: 900;
            color: #fff;
        }

        .contact-cta p {
            color: rgba(255, 255, 255, .78);
            font-size: 15px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .cta-mail-note {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            max-width: 260px;
        }

        .site-footer {
            background: var(--ink-900);
            color: #B9C2BE;
            font-size: 14px;
            padding: 68px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.7fr .8fr .8fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-brand {
            max-width: 320px;
        }

        .footer-desc {
            margin-top: 18px;
            color: rgba(255, 255, 255, .55);
            line-height: 1.8;
            font-size: 14px;
        }

        .footer-title {
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            font-size: 15px;
            letter-spacing: .02em;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 9px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .62);
            text-decoration: none;
            transition: color .2s ease;
        }

        .footer-links a:hover {
            color: var(--orange-500);
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.6;
        }

        .footer-contact .ico {
            color: var(--orange-500);
            font-weight: 800;
            margin-right: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 20px 0 26px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            color: rgba(255, 255, 255, .42);
            font-size: 13px;
        }

        .footer-bottom .domain-text {
            color: rgba(255, 255, 255, .3);
        }

        @media (max-width: 63.9375em) {
            .next-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .article-page-shell {
                padding: 34px;
            }
        }

        @media (max-width: 39.9375em) {
            .site-wrap {
                padding-left: 20px;
                padding-right: 20px;
            }

            .site-header {
                height: auto;
                min-height: 68px;
            }

            .header-wrap {
                padding: 0 20px;
                min-height: 68px;
                height: auto;
                flex-wrap: wrap;
            }

            .site-brand .brand-text {
                font-size: 17px;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .nav-panel {
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 18px;
                width: 100%;
                padding: 14px 0 22px;
                background: transparent;
            }

            .nav-panel.open {
                display: flex;
            }

            .nav-links {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .nav-links a {
                width: 100%;
                justify-content: flex-start;
                padding: 12px 10px;
                font-size: 16px;
            }

            .nav-links a.active::after {
                display: none;
            }

            .nav-links a.active {
                color: var(--orange-500);
                background: rgba(243, 111, 54, .1);
            }

            .nav-cta {
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .article-hero {
                padding: 60px 0 54px;
            }

            .article-title {
                font-size: 27px;
            }

            .article-main {
                padding: 30px 0 58px;
            }

            .article-page-shell {
                padding: 24px 20px;
            }

            .article-deck {
                padding-left: 16px;
                padding-right: 16px;
                font-size: 14px;
            }

            .rich-text {
                font-size: 15px;
                line-height: 1.8;
            }

            .next-grid {
                grid-template-columns: 1fr;
            }

            .section-next {
                padding: 64px 0 70px;
            }

            .contact-cta {
                padding: 54px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
            }
        }

/* roulang page: category1 */
:root{
  --green-600:#1F7A4D;
  --green-700:#156039;
  --orange:#F36F36;
  --orange-dark:#DE5820;
  --ink-900:#151A1D;
  --ink-700:#272E31;
  --paper:#F4F6F3;
  --card:#FFFFFF;
  --line:rgba(21,26,29,.1);
  --muted:#6B767A;
  --line-light:rgba(255,255,255,.12);
  --font-sans:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
  --font-strong:"Arial Black","Impact","DIN Condensed","PingFang SC",sans-serif;
  --shadow:0 8px 24px rgba(21,26,29,.06);
  --shadow-hover:0 14px 32px rgba(21,26,29,.10);
  --radius-card:10px;
  --radius-pill:999px;
  --radius-tag:4px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink-900);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body.menu-open{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
a:hover{color:var(--orange)}
ul,ol,li{margin:0;padding:0}
h1,h2,h3,h4,p{margin:0;padding:0}
h1,h2,h3{line-height:1.22;font-weight:900}
button{font-family:inherit;cursor:pointer}
.skip-link{position:fixed;top:-100px;left:20px;z-index:9999;background:#fff;color:var(--ink-900);padding:10px 18px;border-radius:8px;box-shadow:var(--shadow)}
.skip-link:focus{top:20px}
.site-wrap{max-width:1200px;margin:0 auto;padding-left:24px;padding-right:24px;width:100%}
section{position:relative}

/* 通用版块间距 */
.section{padding:96px 0}
.section--paper{background:var(--paper)}
.section--dark{background:var(--ink-900);color:#fff}
.section--white{background:#fff}

/* Header / Nav */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:76px;
  background:rgba(21,26,29,.97);
  border-bottom:1px solid rgba(255,255,255,.08);
  z-index:100;
  transition:box-shadow .25s ease,background .25s ease;
}
.site-header.is-scrolled{
  box-shadow:0 8px 28px rgba(0,0,0,.22);
  background:rgba(16,19,21,.87);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.header-wrap{height:76px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.site-brand{display:inline-flex;align-items:center;gap:12px;color:#fff;transition:opacity .2s}
.site-brand:hover{opacity:.9;color:#fff}
.brand-mark{
  width:44px;height:44px;flex:none;
  display:grid;place-items:center;
  background:var(--orange);
  color:var(--ink-900);
  font-family:var(--font-strong);
  font-size:19px;
  font-weight:900;
  border-radius:10px;
  letter-spacing:.5px;
}
.brand-text{font-size:21px;font-weight:900;letter-spacing:2px;line-height:1.1}
.brand-text small{display:block;font-size:9px;font-weight:700;letter-spacing:3px;opacity:.68;margin-top:2px}
.nav-panel{display:flex;align-items:center;gap:30px}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  color:rgba(255,255,255,.72);
  font-size:15px;
  font-weight:600;
  position:relative;
  padding:25px 0 22px;
  transition:color .2s ease;
  letter-spacing:.2px;
}
.nav-links a:hover{color:#fff}
.nav-links a.active{color:#fff}
.nav-links a.active::after{
  content:"";
  position:absolute;
  right:10%;left:10%;bottom:13px;
  height:3px;
  background:var(--orange);
  border-radius:2px;
}
.nav-cta.white-no{color:#fff}
.nav-toggle{
  display:none;
  width:44px;height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,.2);
  border-radius:10px;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  padding:0;
}
.nav-toggle span{width:20px;height:2px;background:#fff;border-radius:2px;transition:transform .25s,opacity .25s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Buttons */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:var(--radius-pill);
  border:0;
  font-family:var(--font-sans);
  text-align:center;
  font-weight:800;
  letter-spacing:.4px;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;
  min-height:48px;
}
.btn--primary{
  background:var(--orange);
  color:var(--ink-900);
  padding:15px 34px;
  line-height:1;
}
.btn--primary:hover{
  background:var(--orange-dark);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:var(--shadow-hover);
}
.btn--ghost{
  background:transparent;
  border:2px solid rgba(255,255,255,.9);
  color:#fff;
  padding:13px 28px;
  line-height:1;
}
.btn--ghost:hover{
  border-color:var(--orange);
  color:var(--orange);
  transform:translateY(-1px);
}
.btn--sm{min-height:44px;padding:12px 24px;font-size:14px}
.btn:focus-visible,a:focus-visible,button:focus-visible{
  outline:3px solid rgba(243,111,54,.55);
  outline-offset:3px;
  border-radius:6px;
}

/* Eyebrow + headings */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:800;
  letter-spacing:2.4px;
  text-transform:uppercase;
  color:var(--green-600);
  margin-bottom:18px;
}
.eyebrow::before{content:"";width:26px;height:3px;background:var(--orange);border-radius:4px}
.eyebrow--light{color:var(--orange)}
.section-head{max-width:820px;margin-bottom:48px}
.section-title{
  font-size:clamp(1.9rem,3vw,2.55rem);
  letter-spacing:-.5px;
  color:var(--ink-900);
  line-height:1.28;
  margin-bottom:14px;
}
.section-desc{color:var(--muted);font-size:16px;max-width:680px}
.on-dark .section-title{color:#fff}
.on-dark .eyebrow{color:var(--orange)}
.on-dark .section-desc{color:rgba(255,255,255,.65)}

/* Hero */
.page-hero{
  min-height:630px;
  display:flex;
  align-items:center;
  color:#fff;
  background-color:var(--ink-900);
  background-image:linear-gradient(105deg,rgba(21,26,29,.98) 12%,rgba(21,26,29,.75) 58%,rgba(21,26,29,.34) 100%),url('/assets/images/backpic/back-1.webp');
  background-size:cover;
  background-position:center center;
}
.hero-inner{
  display:flex;
  align-items:center;
  min-height:630px;
  width:100%;
}
.hero-content{position:relative;z-index:3;max-width:760px;padding:110px 0 92px}
.crumb-list{
  font-size:13px;
  color:rgba(255,255,255,.62);
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:28px;
  letter-spacing:.2px;
}
.crumb-list a{color:rgba(255,255,255,.72)}
.crumb-list a:hover{color:#fff}
.crumb-list .current{color:var(--orange);font-weight:700}
.hero-topline{
  display:inline-block;
  background:rgba(243,111,54,.15);
  border:1px solid rgba(243,111,54,.65);
  color:var(--orange);
  padding:7px 16px;
  border-radius:var(--radius-pill);
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:24px;
}
.page-hero h1{
  font-size:clamp(2.6rem,5vw,4.2rem);
  line-height:1.08;
  letter-spacing:-1px;
  font-weight:900;
  margin-bottom:24px;
  color:#fff;
}
.page-hero .lead{
  font-size:17px;
  line-height:1.85;
  color:rgba(255,255,255,.82);
  max-width:620px;
  margin-bottom:34px;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.text-link-light{
  color:rgba(255,255,255,.8);
  font-weight:600;
  font-size:15px;
  text-decoration:underline;
  text-decoration-color:rgba(255,255,255,.3);
  text-underline-offset:6px;
}
.text-link-light:hover{color:var(--orange)}
.hero-note{
  margin-top:28px;
  color:rgba(255,255,255,.45);
  font-size:13px;
  letter-spacing:.4px;
}

/* Intro split */
.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.intro-media{position:relative}
.media-frame{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#E8ECE7;
}
.media-frame img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  transition:transform .5s ease;
}
.media-frame:hover img{transform:scale(1.02)}
.media-chip{
  position:absolute;
  top:-14px;
  left:16px;
  background:var(--orange);
  color:var(--ink-900);
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  padding:8px 18px;
  border-radius:var(--radius-pill);
  box-shadow:0 6px 16px rgba(243,111,54,.28);
  z-index:3;
}
.media-stat{
  position:absolute;
  right:-10px;
  bottom:18px;
  background:var(--ink-900);
  color:#fff;
  border-radius:14px;
  padding:18px 22px;
  box-shadow:0 12px 30px rgba(21,26,29,.2);
  min-width:170px;
}
.media-stat span{display:block;color:rgba(255,255,255,.55);font-size:12px;letter-spacing:1.4px;margin-bottom:2px}
.media-stat strong{color:var(--orange);font-family:var(--font-strong);font-size:34px;font-weight:900;line-height:1.1}
.intro-copy .eyebrow{margin-bottom:16px}
.intro-title{
  font-size:clamp(1.7rem,2.8vw,2.4rem);
  color:var(--ink-900);
  line-height:1.25;
  margin:0 0 22px;
  letter-spacing:-.4px;
}
.intro-copy p{color:#3D4547;margin-bottom:18px;font-size:16px}
.service-list{
  border-top:1px solid var(--line);
  margin-top:28px;
  list-style:none;
}
.service-list li{
  display:grid;
  grid-template-columns:30px 1fr;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  font-weight:600;
  color:var(--ink-700);
  font-size:15px;
  align-items:start;
}
.service-list i{
  display:grid;
  place-items:center;
  width:24px;height:24px;
  background:var(--green-600);
  color:#fff;
  border-radius:50%;
  font-style:normal;
  font-size:13px;
  font-weight:900;
}

/* Stats dark */
.stats-section{background:var(--ink-900);color:#fff;padding:78px 0}
.stat-band{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}
.stat-item{padding:6px 30px 6px 32px;border-left:1px solid rgba(255,255,255,.13)}
.stat-item:first-child{border-left:0}
.stat-item .stat-value{
  font-family:var(--font-strong);
  font-size:clamp(2.6rem,4.4vw,3.9rem);
  font-weight:900;
  color:var(--orange);
  font-style:italic;
  letter-spacing:.5px;
  line-height:1;
  margin-bottom:12px;
}
.stat-item .stat-label{color:rgba(255,255,255,.62);font-size:14px;letter-spacing:.4px}

/* Representive events */
.event-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:60px;
  margin-top:20px;
}
.event-item{
  padding:34px 12px 34px 0;
  border-bottom:1px solid var(--line);
  border-top:1px solid transparent;
  background:transparent;
  transition:padding-left .2s ease,background .2s ease;
}
.event-item:nth-child(-n+2){border-top:none}
.event-no{
  font-family:var(--font-strong);
  display:block;
  font-size:15px;
  font-weight:900;
  letter-spacing:1.6px;
  color:var(--green-600);
  margin-bottom:14px;
}
.event-item h3{font-size:21px;font-weight:800;margin-bottom:10px;color:var(--ink-900)}
.event-item p{color:var(--muted);font-size:15px;line-height:1.75;max-width:520px}
.event-item:hover{padding-left:14px;background:#fff}
.event-item:hover .event-no{color:var(--orange)}

/* Process strip */
.process-section{background:#fff}
.process-title-block{margin-bottom:44px}
.process-strip{
  background:var(--ink-900);
  color:#fff;
  border-radius:20px;
  display:grid;
  grid-template-columns:1fr 64px 1fr 64px 1fr;
  gap:12px;
  padding:52px 48px;
  align-items:center;
}
.process-step{padding:12px 0}
.step-no{
  display:block;
  font-family:var(--font-strong);
  font-size:52px;
  font-weight:900;
  line-height:1;
  color:var(--orange);
  font-style:italic;
  margin-bottom:18px;
}
.process-step h3{color:#fff;font-size:21px;font-weight:800;margin-bottom:12px}
.process-step p{color:rgba(255,255,255,.63);font-size:15px;line-height:1.7}
.step-arrow{display:flex;justify-content:center;align-items:center;color:var(--orange);font-size:32px;font-weight:900;font-family:var(--font-strong)}

/* Accordion FAQ */
.faq-grid{
  display:grid;
  grid-template-columns:4fr 8fr;
  gap:60px;
  align-items:start;
}
.faq-list-head{position:sticky;top:120px}
.accordion{list-style:none;background:transparent;border:none;margin:0}
.accordion-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(21,26,29,.03);
  transition:box-shadow .2s ease;
}
.accordion-item:hover{box-shadow:var(--shadow)}
.accordion-title{
  display:block;
  width:100%;
  background:#fff;
  border:none;
  color:var(--ink-900);
  font-weight:800;
  font-size:17px;
  padding:20px 52px 20px 22px;
  line-height:1.5;
  border:0!important;
  position:relative;
  text-align:left;
}
.accordion-title:hover,.accordion-title:focus{background:#FAFBF9;color:var(--green-700)}
.accordion-title::before,.accordion-title::after{content:"";position:absolute;right:24px;top:50%;width:15px;height:2px;background:var(--green-600);transition:transform .2s ease;transform:translateY(-50%)}
.accordion-title::after{transform:translateY(-50%) rotate(90deg)}
.accordion-item.is-active .accordion-title::after{transform:translateY(-50%) rotate(0)}
.accordion-content{
  border:none;
  background:#fff;
  color:#475052;
  font-size:15px;
  line-height:1.8;
  padding:2px 22px 22px;
  border-top:1px solid var(--line);
}
.accordion-content p{margin-bottom:6px}

/* CTA */
.cta-section{padding:70px 0 96px}
.cta-box{
  background-color:var(--green-700);
  background-image:linear-gradient(110deg,rgba(21,26,29,.9) 0%,rgba(21,26,29,.35) 100%),url('/assets/images/backpic/back-3.webp');
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:22px;
  overflow:hidden;
  padding:72px 64px;
  display:grid;
  grid-template-columns:1.2fr .85fr;
  gap:44px;
  align-items:center;
  box-shadow:var(--shadow-hover);
}
.cta-title{font-size:clamp(1.8rem,3.2vw,2.7rem);font-weight:900;margin-bottom:14px}
.cta-title span{color:var(--orange)}
.cta-desc{color:rgba(255,255,255,.78);font-size:16px;line-height:1.85;max-width:600px;margin-bottom:28px}
.cta-sub-note{color:rgba(255,255,255,.55);font-size:13px;margin-top:14px}
.cta-right{text-align:right}
.cta-email{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-family:var(--font-strong);
  font-size:15px;
  letter-spacing:1px;
  color:rgba(255,255,255,.6);
  border:1px solid rgba(255,255,255,.16);
  padding:10px 18px;
  border-radius:var(--radius-pill);
  margin-bottom:22px;
}
.cta-email .ico{color:var(--orange);font-size:18px;display:grid;place-items:center}
.cta-line{color:rgba(255,255,255,.65);font-size:14px}
.cta-line a{color:#fff;border-bottom:1px solid rgba(255,255,255,.4)}
.cta-line a:hover{color:var(--orange)}

/* Footer */
.site-footer{background:#0D1113;color:rgba(255,255,255,.62);font-size:14px;padding:64px 0 22px;position:relative}
.footer-grid{display:grid;grid-template-columns:2.1fr 1fr 1fr 1.35fr;gap:44px;margin-bottom:46px}
.footer-brand .site-brand{margin-bottom:18px}
.footer-desc{font-size:14px;line-height:1.85;color:rgba(255,255,255,.52);max-width:330px;margin-top:18px}
.footer-title{
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:.6px;
  margin-bottom:18px;
}
.footer-links{display:flex;flex-direction:column;gap:11px}
.footer-links a{color:rgba(255,255,255,.58);font-size:14px;transition:color .2s,padding-left .2s}
.footer-links a:hover{color:var(--orange);padding-left:5px}
.footer-contact p{color:rgba(255,255,255,.58);font-size:14px;margin-bottom:13px;display:flex;gap:8px;align-items:flex-start}
.footer-contact .ico{color:var(--orange);min-width:18px;font-style:normal;font-weight:700;display:inline-block}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:24px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:space-between;
  color:rgba(255,255,255,.38);
  font-size:13px;
}

/* Responsive */
@media screen and (max-width:63.9375em){
  .nav-toggle{display:flex}
  .nav-toggle[aria-expanded="true"] span{background:var(--orange)}
  .nav-panel{
    position:absolute;
    top:76px;left:0;right:0;
    flex-direction:column;
    align-items:stretch;
    gap:16px;
    background:rgba(13,17,19,.99);
    padding:0 24px;
    max-height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:max-height .3s ease,opacity .3s ease,padding .3s ease;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .nav-panel.open{
    max-height:580px;
    padding:20px 24px 28px;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .nav-links{flex-direction:column;align-items:flex-start;gap:6px}
  .nav-links a{
    width:100%;
    padding:14px 4px;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .nav-links a.active::after{right:auto;left:0;bottom:0;top:auto;width:58px;height:3px}
  .nav-cta{width:100%;margin-top:10px}
  .intro-grid{grid-template-columns:1fr;gap:48px}
  .media-stat{right:6px;bottom:14px}
  .stat-band{grid-template-columns:1fr 1fr;gap:34px 0}
  .stat-item{border-left:0;padding:0}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.13)}
  .event-list{grid-template-columns:1fr;column-gap:0}
  .event-item:nth-child(-n+2){border-top:none}
  .process-strip{grid-template-columns:1fr;padding:42px 26px;gap:6px}
  .step-arrow{transform:rotate(90deg);height:60px}
  .faq-grid{grid-template-columns:1fr;gap:30px}
  .faq-list-head{position:relative;top:auto}
  .cta-grid{grid-template-columns:1fr}
  .cta-box{grid-template-columns:1fr;padding:52px 28px}
  .cta-right{text-align:left}
  .section{padding:72px 0}
}
@media screen and (max-width:39.9375em){
  .site-wrap{padding-left:18px;padding-right:18px}
  .brand-text{font-size:18px}
  .brand-text small{font-size:8px;letter-spacing:2.4px}
  .header-wrap{gap:8px}
  .section{padding:58px 0}
  .page-hero{min-height:540px}
  .hero-inner{min-height:540px}
  .hero-content{padding:90px 0 70px}
  .hero-actions{flex-direction:column;align-items:stretch;width:100%}
  .hero-actions .btn,.hero-actions a{width:100%;justify-content:center}
  .text-link-light{margin:4px 0}
  .stat-band{grid-template-columns:1fr;gap:28px 0}
  .stat-item{border-right:0!important;border-left:0}
  .intro-grid{gap:38px}
  .media-stat{position:relative;right:0;bottom:0;margin-top:-44px;margin-right:14px;margin-left:auto;width:170px}
  .event-list{grid-template-columns:1fr}
  .event-item{padding:26px 0}
  .process-strip{padding:34px 20px}
  .step-no{font-size:44px}
  .cta-box{padding:42px 20px;border-radius:18px}
  .cta-email{font-size:13px;flex-wrap:wrap}
  .footer-grid{grid-template-columns:1fr;gap:34px}
  .footer-brand{grid-column:auto}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* roulang page: category3 */
:root {
    --green-600: #1F7A4D;
    --green-700: #156039;
    --orange-500: #F36F36;
    --orange-600: #DE5820;
    --ink-900: #151A1D;
    --ink-700: #272E31;
    --paper: #F4F6F3;
    --card: #FFFFFF;
    --line: rgba(21, 26, 29, 0.1);
    --muted: #6B767A;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow: 0 8px 24px rgba(21, 26, 29, 0.06);
    --shadow-hover: 0 14px 32px rgba(21, 26, 29, 0.10);
    --transition: all .25s ease;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    background: var(--paper);
    color: var(--ink-900);
    line-height: 1.75;
    font-size: 16px;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(243, 111, 54, 0.6);
    outline-offset: 2px;
}
button {
    font-family: inherit;
}
h1, h2, h3, h4 {
    line-height: 1.25;
    font-weight: 800;
}
strong {
    font-weight: 800;
}
.site-wrap,
.header-wrap {
    width: min(1200px, 92%);
    margin-left: auto;
    margin-right: auto;
}

/* 表单可访问 focus */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 34px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.btn--sm {
    height: 44px;
    padding: 0 24px;
    font-size: 15px;
    border-radius: 999px;
}
.btn--primary {
    background: var(--orange-500);
    color: var(--ink-900);
    box-shadow: 0 8px 18px rgba(21, 26, 29, 0.14);
}
.btn--primary:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(21, 26, 29, 0.18);
}
.btn--ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}
.btn--ghost:hover {
    border-color: var(--orange-500);
    color: #fff;
    background: rgba(243, 111, 54, 0.12);
}
.btn--dark-outline {
    background: #fff;
    border: 2px solid var(--ink-900);
    color: var(--ink-900);
}
.btn--dark-outline:hover {
    border-color: var(--green-600);
    color: var(--green-600);
}

/* 站点页头 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(21, 26, 29, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--green-600);
    border-radius: var(--radius) var(--radius) var(--radius) 4px;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: -0.01em;
}
.brand-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}
.brand-text small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 5px;
}
.nav-panel {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 15px;
    padding: 9px 14px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.nav-links a.active {
    color: #fff;
}
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange-500);
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 页脚 */
.site-footer {
    background: var(--ink-900);
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 42px;
    padding-bottom: 56px;
}
.footer-brand .site-brand {
    margin-bottom: 18px;
}
.footer-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
    max-width: 30em;
    margin-top: 10px;
}
.footer-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--orange-500);
    padding-left: 4px;
}
.footer-contact p {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
    word-break: break-all;
}
.footer-contact .ico {
    color: var(--orange-500);
    font-style: normal;
    font-weight: 800;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .domain-text {
    color: rgba(255, 255, 255, 0.4);
}

/* 集团动态页 */
.section {
    padding: 96px 0;
}
.section--paper {
    background: var(--paper);
}
.section--white {
    background: #fff;
}
.section--timeline {
    background: var(--ink-900);
    color: rgba(255, 255, 255, 0.88);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(31, 122, 77, 0.12);
    color: var(--green-600);
    padding: 7px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.section--dark .eyebrow,
.section--timeline .eyebrow,
.section--green .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.eyebrow--light {
    color: var(--green-600);
    background: rgba(31, 122, 77, 0.12);
}
.section-head {
    margin-bottom: 48px;
}
.section-head h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    color: var(--ink-900);
    margin: 0 0 14px;
}
.section-head p {
    color: var(--muted);
    font-size: 17px;
    max-width: 720px;
}
.section--timeline .section-head h2,
.section--green .section-head h2 {
    color: #fff;
}
.section--timeline .section-head p,
.section--green .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

/* 页内面包屑 */
.inline-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 30px;
}
.inline-crumb a:hover {
    color: #fff;
}
.inline-crumb .crumb-current {
    color: var(--orange-500);
}

/* Hero：集团动态杂志条 */
.page-hero {
    padding: 84px 0 80px;
    color: #fff;
    background-color: var(--ink-900);
    background-image: linear-gradient(100deg, rgba(21, 26, 29, 0.97) 10%, rgba(21, 26, 29, 0.72) 55%, rgba(31, 122, 77, 0.40)), url('/assets/images/backpic/back-3.webp');
    background-size: cover;
    background-position: center 38%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 7px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--orange-500);
    margin-right: 8px;
}
.page-hero-copy h1 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin: 0 0 18px;
}
.page-hero-copy .hero-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.85;
    max-width: 575px;
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.hero-aside {
    background: var(--ink-700);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow);
}
.hero-aside-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
    padding-bottom: 12px;
}
.hero-aside-head span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}
.hero-aside-head h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
}
.hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}
.metric-cell {
    background: var(--ink-700);
    padding: 16px;
}
.metric-cell strong {
    display: block;
    color: var(--orange-500);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-style: italic;
    line-height: 1.2;
}
.metric-cell span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}
.hero-aside-footnote {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    margin-top: 14px;
}

/* 板块：发展说明 */
.statement-copy .statement-lead {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.7;
    margin-bottom: 18px;
}
.statement-copy p {
    color: var(--ink-700);
    font-size: 16px;
    margin-bottom: 18px;
}
.detail-flag {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.detail-flag li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding: 14px 2px;
    font-size: 15px;
}
.detail-flag li span:first-child {
    color: var(--muted);
    flex-shrink: 0;
}
.detail-flag li span:last-child {
    color: var(--ink-900);
    font-weight: 700;
    text-align: right;
}
.media-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #d6ddd7;
}
.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}
.media-frame .media-note {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(21, 26, 29, 0.88);
    color: #fff;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
}

/* 时间线：集团发展节点 */
.timeline-list {
    position: relative;
    margin-top: 40px;
}
.timeline-list::before {
    content: "";
    position: absolute;
    left: 168px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--green-600), var(--orange-500));
}
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 168px 0.18fr 1fr;
    gap: 0;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.timeline-item:last-child {
    border-bottom: 0;
}
.tl-year {
    color: var(--orange-500);
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    font-family: "Arial Black", Impact, sans-serif;
    letter-spacing: 0.02em;
    padding-right: 36px;
    text-align: right;
    line-height: 1.3;
}
.tl-node {
    position: relative;
}
.tl-node::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--ink-900);
    border: 3px solid var(--orange-500);
    border-radius: 99px;
}
.tl-body {
    padding-left: 36px;
}
.tl-body h3 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 8px;
}
.tl-body p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    max-width: 680px;
}
.tl-tag {
    display: inline-block;
    margin-top: 10px;
    background: rgba(31, 122, 77, 0.25);
    border: 1px solid rgba(31, 122, 77, 0.8);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
}

/* 业务矩阵 */
.service-matrix {
    margin-top: 28px;
    border-top: 1px solid var(--line);
}
.service-row {
    display: grid;
    grid-template-columns: 96px 230px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}
.service-row:hover {
    background: rgba(31, 122, 77, 0.03);
    padding-left: 8px;
    padding-right: 8px;
}
.service-no {
    color: var(--orange-500);
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    font-family: "Arial Black", Impact, sans-serif;
}
.service-row h3 {
    font-size: 18px;
    color: var(--ink-900);
    margin: 0;
}
.service-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}
.service-tags span {
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink-700);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

/* 公开信息与对接须知 */
.section--green {
    background: var(--green-700);
    color: #fff;
}
.notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.notice-cell {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.notice-cell:hover {
    background: rgba(255, 255, 255, 0.12);
}
.notice-cell strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}
.notice-cell p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    margin: 0;
}

/* FAQ */
.accordion-custom {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.accordion-custom .accordion-item {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.accordion-custom .accordion-item:last-child {
    border-bottom: 0;
}
.accordion-custom .accordion-title {
    color: var(--ink-900);
    font-weight: 700;
    font-size: 16px;
    padding: 10px 60px 10px 20px;
    display: block;
    position: relative;
    line-height: 1.7;
    transition: var(--transition);
}
.accordion-custom .accordion-title:hover {
    color: var(--green-600);
    background: rgba(31, 122, 77, 0.04);
}
.accordion-custom .accordion-title::before {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green-600);
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
}
.accordion-custom .accordion-item.is-active .accordion-title::before {
    content: "–";
    color: var(--orange-500);
}
.accordion-custom .accordion-content {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    padding: 0 24px 22px;
}
.faq-help {
    background: var(--ink-900);
    border-radius: var(--radius);
    padding: 24px;
    color: #fff;
    margin-top: 28px;
}
.faq-help strong {
    display: block;
    margin-bottom: 6px;
}
.faq-help p,
.faq-help span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

/* CTA */
.cta-section {
    background: var(--green-700);
    color: #fff;
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.04);
    transform: rotate(20deg);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.cta-inner .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.cta-inner h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
}
.cta-inner .cta-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    margin-bottom: 26px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.cta-contact {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}
.cta-contact a {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-contact a:hover {
    color: var(--orange-500);
    border-color: var(--orange-500);
}

@media screen and (max-width: 63.9375em) {
    .section {
        padding: 76px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .service-row {
        grid-template-columns: 68px 1fr;
    }
    .service-desc {
        grid-column: 1 / 3;
        padding-top: 6px;
    }
    .service-tags {
        grid-column: 1 / 3;
        justify-content: flex-start;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-panel {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 76px);
        background: rgba(21, 26, 29, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 18px 4% 24px;
        display: none;
        overflow-y: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 32px rgba(21, 26, 29, 0.25);
    }
    .nav-panel.open {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }
    .nav-links a {
        padding: 13px 12px;
    }
    .nav-links a.active::after {
        left: 12px;
        right: auto;
        width: 32px;
    }
    .nav-cta {
        margin: 16px 0 6px;
        justify-content: center;
        width: 100%;
    }
    .page-hero {
        padding: 64px 0;
    }
    .hero-aside {
        margin-top: 34px;
    }
    .timeline-list::before {
        left: 6px;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .tl-year {
        text-align: left;
        padding: 0;
    }
    .tl-body {
        padding-left: 16px;
    }
    .tl-node {
        display: none;
    }
    .notice-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 39.9375em) {
    .section {
        padding: 58px 0;
    }
    .page-hero {
        padding: 42px 0 48px;
    }
    .page-hero-copy h1 {
        font-size: 34px;
    }
    .page-hero-copy .hero-lead {
        font-size: 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .service-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 0;
    }
    .service-desc,
    .service-tags {
        grid-column: 1;
    }
    .service-tags {
        padding-top: 6px;
    }
    .detail-flag li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .detail-flag li span:last-child {
        text-align: left;
    }
    .cta-section {
        padding: 64px 0;
    }
}

/* roulang page: category2 */
:root {
            --green-600: #1F7A4D;
            --green-700: #156039;
            --green-deep: #0F3D2A;
            --orange-500: #F36F36;
            --orange-600: #DE5820;
            --ink-900: #151A1D;
            --ink-700: #272E31;
            --paper: #F4F6F3;
            --card: #FFFFFF;
            --line: rgba(21, 26, 29, 0.1);
            --muted: #6B767A;
            --radius-sm: 4px;
            --radius: 8px;
            --radius-lg: 12px;
            --shadow-sm: 0 8px 24px rgba(21, 26, 29, 0.06);
            --shadow-md: 0 14px 32px rgba(21, 26, 29, 0.1);
            --header-h: 76px;
            --ease: 0.25s ease;
            --font-cn: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --font-impact: Impact, "Arial Black", "DIN Condensed", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }

        body {
            margin: 0;
            font-family: var(--font-cn);
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink-900);
            background: var(--paper);
            -webkit-font-smoothing: antialiased;
        }

        body,
        h1,
        h2,
        h3,
        h4,
        p,
        ul,
        ol,
        figure,
        blockquote {
            margin: 0;
        }

        ul,
        ol {
            padding: 0;
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--ease);
        }

        button {
            border: 0;
            background: none;
            font-family: inherit;
            cursor: pointer;
        }

        .site-wrap {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        [id] {
            scroll-margin-top: 110px;
        }

        .section {
            padding: 96px 0;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-h);
            background: rgba(21, 26, 29, 0.97);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .site-header.scrolled {
            background: rgba(21, 26, 29, 0.9);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        }

        .header-wrap {
            height: var(--header-h);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 clamp(16px, 4vw, 40px);
        }

        .site-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            line-height: 1.2;
            flex-shrink: 0;
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 6px;
            background: var(--orange-500);
            color: var(--ink-900);
            font-family: var(--font-impact);
            font-size: 0.95rem;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .brand-text {
            font-size: 1.12rem;
            font-weight: 900;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .brand-text small {
            display: block;
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2px;
        }

        .nav-panel {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .nav-links {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .nav-links a {
            position: relative;
            display: inline-block;
            padding: 9px 16px;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.95rem;
            font-weight: 600;
            transition: background var(--ease), color var(--ease);
        }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-links a.active {
            color: #fff;
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 1px;
            height: 3px;
            border-radius: 2px;
            background: var(--orange-500);
        }

        .nav-cta {
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: transparent;
            padding: 0;
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 2px;
            background: #fff;
            transition: transform var(--ease), opacity var(--ease);
        }

        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 50px;
            padding: 0 32px;
            border-radius: 999px;
            border: 2px solid transparent;
            font-size: 0.98rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
            cursor: pointer;
        }

        .btn--sm {
            height: 44px;
            padding: 0 22px;
            font-size: 0.92rem;
        }

        .btn--primary {
            background: var(--orange-500);
            color: var(--ink-900);
            box-shadow: 0 8px 22px rgba(243, 111, 54, 0.2);
        }

        .btn--primary:hover {
            background: var(--orange-600);
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(243, 111, 54, 0.3);
        }

        .btn--ghost-light {
            border-color: rgba(255, 255, 255, 0.86);
            color: #fff;
        }

        .btn--ghost-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            transform: translateY(-1px);
        }

        .btn--ghost-dark {
            border-color: var(--ink-900);
            color: var(--ink-900);
        }

        .btn--ghost-dark:hover {
            background: var(--ink-900);
            color: #fff;
            transform: translateY(-1px);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn:focus-visible {
            outline: 3px solid rgba(243, 111, 54, 0.38);
            outline-offset: 3px;
        }

        .overline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--green-600);
            text-transform: uppercase;
        }

        .overline::before {
            content: "";
            width: 22px;
            height: 3px;
            border-radius: 2px;
            background: var(--orange-500);
        }

        .overline--light {
            color: rgba(255, 255, 255, 0.78);
        }

        .category-head {
            position: relative;
            padding: 84px 0 72px;
            color: #fff;
            background-color: #0E2C21;
            background-image: linear-gradient(90deg, rgba(9, 22, 16, 0.96), rgba(14, 44, 32, 0.82) 55%, rgba(14, 44, 32, 0.46)), url('/assets/images/backpic/back-2.png');
            background-size: cover, cover;
            background-position: center, center;
            background-repeat: no-repeat;
            border-bottom: 4px solid var(--orange-500);
        }

        .category-head .site-wrap {
            position: relative;
            z-index: 2;
            max-width: 1080px;
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.66);
            margin-bottom: 28px;
            line-height: 1.4;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.78);
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb .current {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 700;
        }

        .top-kicker {
            display: inline-block;
            background: rgba(31, 122, 77, 0.88);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 6px 12px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .category-head h1 {
            font-size: clamp(2rem, 4.4vw, 3.3rem);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.02em;
            max-width: 840px;
            margin: 0 0 18px;
        }

        .category-head .head-desc {
            font-size: 1.06rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            max-width: 780px;
        }

        .head-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .section-head {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px 32px;
            margin-bottom: 46px;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            line-height: 1.3;
            font-weight: 900;
            color: var(--ink-900);
            margin-top: 10px;
        }

        .section-desc {
            max-width: 620px;
            color: var(--muted);
            font-size: 1rem;
        }

        .service-overview {
            background: var(--paper);
        }

        .intro-grid {
            align-items: center;
        }

        .intro-media {
            position: relative;
            margin-bottom: 24px;
        }

        .media-frame {
            position: relative;
            aspect-ratio: 4 / 3;
            border-radius: var(--radius);
            overflow: hidden;
            background: #DCE5DE;
            box-shadow: var(--shadow-sm);
        }

        .media-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .media-frame:hover img {
            transform: scale(1.035);
        }

        .media-caption {
            margin-top: 12px;
            font-size: 0.82rem;
            color: var(--muted);
            border-left: 3px solid var(--orange-500);
            padding-left: 12px;
            line-height: 1.7;
        }

        .intro-content {
            padding-left: 6px;
        }

        .intro-content h2 {
            font-size: clamp(1.4rem, 2.6vw, 2rem);
            font-weight: 900;
            line-height: 1.35;
            margin: 10px 0 20px;
            color: var(--ink-900);
        }

        .intro-content p {
            color: var(--ink-700);
            margin-bottom: 18px;
            line-height: 1.9;
        }

        .scope-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 26px;
        }

        .scope-list li {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 14px 16px;
            box-shadow: 0 2px 10px rgba(21, 26, 29, 0.03);
        }

        .scope-list strong {
            display: block;
            font-size: 1rem;
            color: var(--green-700);
            margin-bottom: 4px;
        }

        .scope-list span {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .service-catalog {
            background: #fff;
        }

        .dir-grid {
            display: grid;
            grid-template-columns: 300px minmax(0, 1fr);
            gap: 40px;
            align-items: start;
        }

        .dir-menu {
            position: sticky;
            top: calc(var(--header-h) + 28px);
            background: var(--ink-900);
            border-radius: var(--radius);
            padding: 30px 26px;
            color: #fff;
            box-shadow: var(--shadow-md);
        }

        .dir-label {
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.58);
            font-weight: 800;
            text-transform: uppercase;
        }

        .dir-menu h3 {
            font-size: 1.4rem;
            font-weight: 900;
            margin: 8px 0 22px;
        }

        .dir-menu a {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 11px 12px;
            border-left: 3px solid transparent;
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.96rem;
            font-weight: 600;
            transition: all var(--ease);
        }

        .dir-menu a span {
            font-size: 0.8rem;
            color: var(--orange-500);
            font-family: var(--font-impact);
        }

        .dir-menu a:hover,
        .dir-menu a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.07);
            border-left-color: var(--orange-500);
        }

        .dir-note {
            margin-top: 26px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.86rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.66);
        }

        .dir-content {
            display: grid;
            gap: 26px;
        }

        .service-entry {
            display: grid;
            grid-template-columns: minmax(240px, 42%) minmax(0, 1fr);
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--ease), transform var(--ease);
        }

        .service-entry:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .entry-media {
            min-height: 252px;
            background-size: cover;
            background-position: center;
            background-color: #DCE5DE;
        }

        .entry-body {
            padding: 30px 30px 34px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .entry-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .entry-num {
            font-family: var(--font-impact);
            font-size: 1rem;
            font-style: italic;
            color: var(--orange-500);
            font-weight: 900;
        }

        .entry-kind {
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--green-600);
            letter-spacing: 0.05em;
        }

        .entry-body h3 {
            font-size: 1.32rem;
            font-weight: 800;
            line-height: 1.4;
            margin: 0 0 10px;
        }

        .entry-body p {
            font-size: 0.98rem;
            line-height: 1.85;
            color: var(--ink-700);
            margin-bottom: 16px;
        }

        .entry-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .entry-tags span {
            display: inline-block;
            background: rgba(31, 122, 77, 0.1);
            color: var(--green-700);
            padding: 5px 10px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 1.5;
        }

        .service-flow {
            position: relative;
            padding: 96px 0;
            background: var(--green-deep);
            color: #fff;
            overflow: hidden;
        }

        .service-flow .absolute-deco {
            position: absolute;
            right: -170px;
            bottom: -150px;
            width: 440px;
            height: 440px;
            border: 2px solid rgba(243, 111, 54, 0.26);
            border-radius: 36px;
            transform: rotate(30deg);
            pointer-events: none;
        }

        .service-flow .site-wrap {
            position: relative;
            z-index: 2;
        }

        .section-title--light {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 900;
            color: #fff;
            margin-top: 10px;
            line-height: 1.3;
        }

        .section-desc--light {
            max-width: 560px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.8;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin-top: 52px;
        }

        .process-step {
            border-top: 3px solid rgba(255, 255, 255, 0.2);
            padding-top: 28px;
        }

        .process-step .step-no {
            font-family: var(--font-impact);
            font-style: italic;
            font-size: 3.3rem;
            font-weight: 900;
            color: var(--orange-500);
            line-height: 1;
            margin-bottom: 12px;
        }

        .process-step h3 {
            font-size: 1.14rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 0.92rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
        }

        .faq-section {
            background: var(--paper);
        }

        .faq-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.3fr;
            gap: 64px;
            align-items: start;
        }

        .faq-side h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 900;
            color: var(--ink-900);
            line-height: 1.3;
            margin: 10px 0 18px;
        }

        .faq-side p {
            color: var(--muted);
            line-height: 1.85;
            margin-bottom: 26px;
        }

        .site-accordion {
            background: transparent;
            margin: 0;
            border: 0;
        }

        .site-accordion .accordion-item {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--ease), border-color var(--ease);
        }

        .site-accordion .accordion-item.is-active {
            border-color: rgba(31, 122, 77, 0.3);
            box-shadow: var(--shadow-md);
        }

        .site-accordion .accordion-title {
            display: block;
            position: relative;
            padding: 20px 60px 20px 24px;
            background: transparent;
            border: 0;
            color: var(--ink-900);
            font-size: 1.02rem;
            font-weight: 700;
            line-height: 1.55;
            border-radius: 0;
            transition: color var(--ease), background var(--ease);
        }

        .site-accordion .accordion-title:hover {
            color: var(--green-600);
            background: #FCFDFC;
        }

        .site-accordion .accordion-title::before {
            content: "+";
            position: absolute;
            right: 18px;
            top: 50%;
            width: 28px;
            height: 28px;
            margin-top: -14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(31, 122, 77, 0.1);
            color: var(--green-700);
            font-size: 1.18rem;
            font-weight: 700;
            line-height: 1;
        }

        .site-accordion .accordion-item.is-active .accordion-title::before {
            content: "−";
            background: var(--green-600);
            color: #fff;
            font-size: 1.3rem;
        }

        .site-accordion .accordion-content {
            padding: 0 24px 22px;
            background: transparent;
            border: 0;
            color: var(--ink-700);
            font-size: 0.98rem;
            line-height: 1.9;
        }

        .site-accordion .accordion-content p {
            margin-bottom: 0;
        }

        .apply-section {
            background: var(--green-deep);
            color: #fff;
            position: relative;
            overflow: hidden;
            padding: 84px 0;
        }

        .apply-section::before {
            content: "";
            position: absolute;
            left: -150px;
            top: -90px;
            width: 420px;
            height: 420px;
            transform: rotate(20deg);
            border: 2px solid rgba(243, 111, 54, 0.2);
            border-radius: 28px;
            pointer-events: none;
        }

        .apply-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.45fr 0.75fr;
            gap: 48px;
            align-items: center;
        }

        .apply-section .overline {
            color: #FFD4BF;
            text-transform: uppercase;
        }

        .apply-section h2 {
            font-size: clamp(1.5rem, 3.2vw, 2.3rem);
            line-height: 1.3;
            margin: 10px 0 16px;
            font-weight: 900;
        }

        .apply-section .apply-text {
            color: rgba(255, 255, 255, 0.78);
            max-width: 680px;
            font-size: 1rem;
            line-height: 1.9;
        }

        .apply-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            margin-top: 26px;
        }

        .apply-contact {
            border-left: 3px solid var(--orange-500);
            padding-left: 18px;
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 2;
        }

        .apply-contact strong {
            color: #fff;
            font-weight: 700;
        }

        .apply-contact a {
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }

        .apply-contact a:hover {
            border-color: var(--orange-500);
        }

        .site-footer {
            background: var(--ink-900);
            color: rgba(255, 255, 255, 0.78);
            padding: 80px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 38px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-brand .site-brand {
            margin-bottom: 14px;
        }

        .footer-desc {
            font-size: 0.94rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.62);
            max-width: 340px;
        }

        .footer-title {
            font-size: 1rem;
            font-weight: 800;
            color: #fff;
            margin: 6px 0 18px;
        }

        .footer-links {
            display: grid;
            gap: 10px;
            font-size: 0.92rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.68);
            line-height: 1.5;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-contact p {
            font-size: 0.92rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4px;
        }

        .footer-contact .ico {
            color: var(--orange-500);
            font-weight: 800;
            margin-right: 6px;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-top: 22px;
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom .domain-text {
            color: rgba(255, 255, 255, 0.62);
        }

        @media screen and (max-width: 63.9375em) {
            .nav-toggle {
                display: flex;
            }

            .nav-panel {
                position: absolute;
                top: var(--header-h);
                left: 0;
                right: 0;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 18px;
                background: var(--ink-900);
                padding: 22px 24px 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 28px 44px rgba(0, 0, 0, 0.28);
            }

            .nav-panel.open {
                display: flex;
            }

            .nav-links {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .nav-links a {
                display: block;
                padding: 13px 16px;
                border-radius: var(--radius);
                font-size: 1rem;
            }

            .nav-links a.active::after {
                display: none;
            }

            .nav-links a.active {
                background: rgba(31, 122, 77, 0.28);
            }

            .nav-cta {
                width: 100%;
                margin-top: 6px;
                text-align: center;
            }

            .dir-grid {
                grid-template-columns: 1fr;
            }

            .dir-menu {
                position: static;
            }
        }

        @media screen and (max-width: 56em) {
            .section {
                padding: 72px 0;
            }

            .service-flow {
                padding: 72px 0;
            }

            .faq-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .apply-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px 22px;
            }

            .service-entry {
                grid-template-columns: 1fr;
            }

            .entry-media {
                min-height: 230px;
            }
        }

        @media screen and (max-width: 39.9375em) {
            .site-wrap {
                padding: 0 18px;
            }

            .section {
                padding: 58px 0;
            }

            .service-flow {
                padding: 58px 0;
            }

            .category-head {
                padding: 56px 0 50px;
            }

            .category-head h1 {
                font-size: 2rem;
            }

            .category-head .head-desc {
                font-size: 0.98rem;
            }

            .head-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .head-actions .btn {
                width: 100%;
            }

            .intro-content {
                padding-left: 0;
            }

            .scope-list {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .apply-section {
                padding: 60px 0;
            }

            .apply-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .apply-actions .btn {
                width: 100%;
            }

            .section-head {
                margin-bottom: 34px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }
