/* roulang page: index */
/* ============ design tokens ============ */
        :root {
            --primary: #0F6B4A;
            --primary-deep: #0A2C20;
            --accent: #C84422;
            --accent-deep: #A4331A;
            --bg: #F6F6F1;
            --white: #FFFFFF;
            --green-light: #E5F1EA;
            --text: #17211B;
            --text-weak: #64736B;
            --border: #DCE4DE;
            --radius-sm: 4px;
            --radius-btn: 6px;
            --radius-card: 10px;
            --radius-round: 22px;
            --shadow-sm: 0 2px 8px rgba(10, 44, 32, .06);
            --shadow-md: 0 8px 24px rgba(10, 44, 32, .08);
            --shadow-lg: 0 16px 36px rgba(10, 44, 32, .12);
            --container: 1280px;
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", sans-serif;
        }

        /* ============ reset & base ============ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            -webkit-text-size-adjust: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            object-fit: cover;
            background-color: var(--green-light);
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .2s ease, background .2s ease;
        }

        a:hover {
            color: var(--primary-deep);
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            border: 0;
            background: none;
        }

        button {
            cursor: pointer;
        }

        :focus-visible {
            outline: 2px solid rgba(200, 68, 34, .75);
            outline-offset: 3px;
        }

        .container {
            max-width: var(--container);
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        .grid-container {
            max-width: var(--container) !important;
        }

        .section-block {
            padding: 84px 0;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 44px;
            flex-wrap: wrap;
        }

        .section-head .kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            letter-spacing: .06em;
            font-weight: 600;
            color: var(--primary);
            background: var(--green-light);
            border-radius: var(--radius-sm);
            padding: 4px 12px;
            margin-bottom: 10px;
        }

        .section-head h2 {
            font-size: 32px;
            line-height: 1.25;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--text);
        }

        .section-head p {
            color: var(--text-weak);
            max-width: 460px;
            font-size: 15px;
            line-height: 1.8;
        }

        .section-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
            transition: border-color .2s ease;
        }

        .section-link:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .fa-offset {
            font-variant-numeric: tabular-nums;
            letter-spacing: .02em;
        }

        /* ============ buttons / labels ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 46px;
            min-height: 44px;
            padding: 0 22px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            border: 1px solid transparent;
            line-height: 1;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
            white-space: nowrap;
            user-select: none;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background-color: var(--primary-deep);
            color: #fff;
            box-shadow: var(--shadow-md);
        }

        .btn-accent {
            background-color: var(--accent);
            color: #fff;
            box-shadow: 0 4px 14px rgba(200, 68, 34, .22);
        }

        .btn-accent:hover {
            background-color: var(--accent-deep);
            color: #fff;
            box-shadow: 0 10px 24px rgba(200, 68, 34, .26);
        }

        .btn-outline {
            background: rgba(255, 255, 255, .12);
            color: #fff;
            border-color: rgba(255, 255, 255, .55);
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-deep);
            border-color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-light-green {
            background: var(--green-light);
            color: var(--primary-deep);
            border: 1px solid rgba(15, 107, 74, .18);
        }

        .btn-light-green:hover {
            background: #d3e8dd;
            color: var(--primary-deep);
        }

        .btn-ghost {
            background: transparent;
            color: var(--primary);
            border-color: rgba(15, 107, 74, .36);
        }

        .btn-ghost:hover {
            background: var(--green-light);
            border-color: var(--primary);
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--green-light);
            color: var(--primary);
            font-size: 13px;
            line-height: 1;
            border-radius: var(--radius-sm);
            padding: 6px 10px;
            font-weight: 500;
        }

        .tag-line {
            color: var(--text-weak);
            font-size: 13px;
        }

        .tag-dark {
            background: rgba(255, 255, 255, .16);
            color: #fff;
            backdrop-filter: blur(3px);
            border: 1px solid rgba(255, 255, 255, .18);
        }

        /* ============ header dock ============ */
        .site-header-wrap {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            padding: 14px 22px 0;
        }

        .header-dock {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, .82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(15, 107, 74, .22);
            border-radius: var(--radius-round);
            height: 66px;
            padding: 0 12px 0 20px;
            box-shadow: 0 4px 18px rgba(10, 44, 32, .05);
            transition: background .3s ease, box-shadow .3s ease;
        }

        .site-header-wrap.dock-scrolled .header-dock {
            background: rgba(255, 255, 255, .95);
            box-shadow: 0 10px 26px rgba(10, 44, 32, .12);
        }

        .dock-brand {
            display: flex;
            align-items: baseline;
            flex-shrink: 0;
            gap: 6px;
            margin-right: 24px;
        }

        .brand-main {
            font-weight: 800;
            font-size: 20px;
            color: var(--primary-deep);
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .brand-sub {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            background: rgba(200, 68, 34, .08);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: .04em;
            white-space: nowrap;
        }

        .dock-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex: 1;
        }

        .dock-nav a {
            display: flex;
            align-items: center;
            height: 42px;
            padding: 0 18px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 22px;
            transition: color .2s ease, background .2s ease;
            position: relative;
        }

        .dock-nav a:hover {
            background: var(--green-light);
            color: var(--primary);
        }

        .dock-nav a.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .dock-nav a.active:hover {
            background: var(--primary-deep);
            color: #fff;
        }

        .dock-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            background: #f0f3ef;
            border: 1px solid transparent;
            border-radius: 22px;
            height: 40px;
            padding: 0 4px 0 14px;
            width: 180px;
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .nav-search-box:hover {
            border-color: rgba(15, 107, 74, .25);
        }

        .nav-search-box:focus-within {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(15, 107, 74, .12);
        }

        .nav-search-box input {
            width: 100%;
            height: 34px;
            border: 0;
            background: transparent;
            font-size: 14px;
            outline: none;
            color: var(--text);
        }

        .nav-search-box input::placeholder {
            color: #8d9a92;
        }

        .nav-search-box button {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: transparent;
            color: var(--primary);
            transition: background .2s ease;
        }

        .nav-search-box button:hover {
            background: var(--green-light);
        }

        .dock-cta {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 18px;
            border-radius: 22px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--accent);
            box-shadow: 0 4px 12px rgba(200, 68, 34, .18);
            transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
        }

        .dock-cta:hover {
            background: var(--accent-deep);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(200, 68, 34, .22);
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--primary-deep);
            font-size: 20px;
            background: var(--green-light);
            transition: background .2s ease;
        }

        .nav-toggle:hover {
            background: #d3e8dd;
        }

        /* ============ hero ============ */
        .hero-section {
            position: relative;
            overflow: hidden;
            background-image: linear-gradient(115deg, rgba(10, 44, 32, .93) 0%, rgba(15, 107, 74, .82) 55%, rgba(10, 44, 32, .55) 100%), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            margin-top: -80px;
            padding-top: 150px;
            padding-bottom: 110px;
        }

        .hero-section:after {
            content: '';
            position: absolute;
            right: 4%;
            bottom: 0;
            width: 420px;
            height: 220px;
            background: radial-gradient(circle, rgba(230, 241, 234, .15) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
        }

        .hero-topline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #d8eee2;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .hero-topline i {
            color: #69b393;
        }

        .hero-copy h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.18;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
            color: #fff;
            max-width: 620px;
        }

        .hero-copy h1 span {
            display: block;
            font-weight: 800;
        }

        .hero-subtitle {
            font-size: 17px;
            color: #d5e7dc;
            max-width: 480px;
            line-height: 1.8;
            margin-bottom: 34px;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-check-list {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 28px;
            margin-top: 38px;
            padding-top: 26px;
            border-top: 1px solid rgba(255, 255, 255, .16);
            max-width: 580px;
        }

        .hero-check-list span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #d9e9e0;
        }

        .hero-check-list i {
            color: #83c9a7;
        }

        /* quick entry card */
        .entry-card {
            background: #fff;
            color: var(--text);
            border-radius: 16px;
            box-shadow: 0 18px 46px rgba(10, 44, 32, .24);
            padding: 26px 26px 22px;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .entry-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 26px 52px rgba(10, 44, 32, .18);
        }

        .entry-card-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .entry-card-head .tag {
            padding: 6px 12px;
            font-size: 14px;
        }

        .entry-card-head .dot-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-weak);
        }

        .entry-card-head .dot-status i {
            color: #2ea56f;
            font-size: 10px;
        }

        .entry-address {
            border: 1px solid var(--border);
            background: #F9FAF8;
            border-radius: 12px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .entry-address i {
            color: var(--primary);
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 6px;
            font-size: 14px;
        }

        .entry-address .addr-label {
            font-size: 13px;
            color: var(--text-weak);
            line-height: 1.2;
        }

        .entry-address .addr-value {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-weight: 700;
            font-size: 15px;
            color: var(--primary-deep);
            font-variant-numeric: tabular-nums;
            letter-spacing: .03em;
            width: 100%;
        }

        .addr-value .copy-mini {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            color: var(--accent);
            background: rgba(200, 68, 34, .08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .2s ease;
        }

        .addr-value .copy-mini:hover {
            background: rgba(200, 68, 34, .14);
        }

        .entry-shortcut {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 16px;
        }

        .link-mini {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            background: #f2f5f1;
            padding: 0 12px;
            height: 38px;
            border-radius: 20px;
            color: var(--text);
            transition: background .2s ease, color .2s ease, transform .2s ease;
        }

        .link-mini i {
            color: var(--primary);
            font-size: 13px;
        }

        .link-mini:hover {
            background: var(--green-light);
            color: var(--primary);
            transform: translateY(-1px);
        }

        .entry-user-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }

        .entry-user-actions .btn {
            height: 42px;
            font-size: 14px;
        }

        .btn-fav {
            background: var(--green-light);
            color: var(--primary-deep);
        }

        .btn-fav:hover {
            background: #d3e8dd;
            color: var(--primary);
        }

        .btn-share {
            background: rgba(15, 107, 74, .08);
            color: var(--primary);
        }

        .btn-share:hover {
            background: rgba(15, 107, 74, .14);
        }

        /* ============ section feature  ============ */
        .feature-points {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .feature-point {
            display: flex;
            gap: 14px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .feature-point:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(15, 107, 74, .4);
        }

        .feature-point i {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--green-light);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
        }

        .feature-point h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .feature-point p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-weak);
        }

        .feature-media {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
            min-height: 320px;
            box-shadow: var(--shadow-md);
            background: #dce8df;
        }

        .feature-media img {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            object-fit: cover;
        }

        .feature-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 28px;
            background: linear-gradient(transparent, rgba(10, 44, 32, .78));
            color: #fff;
        }

        .feature-overlay h3 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .feature-overlay p {
            font-size: 15px;
            color: #dcebe3;
        }

        /* ============ directory / magazine zone ============ */
        .toc-wrap {
            background: var(--green-light);
            border-radius: 18px;
            padding: 40px 44px 24px;
        }

        .toc-row {
            display: grid;
            grid-template-columns: 84px 180px 1fr 40px;
            align-items: center;
            gap: 18px;
            border-bottom: 1px solid rgba(15, 107, 74, .15);
            padding: 24px 4px;
            transition: transform .2s ease, background .2s ease;
            border-radius: 10px;
        }

        .toc-row:first-child {
            border-top: 1px solid rgba(15, 107, 74, .15);
        }

        .toc-row:hover {
            transform: translateX(4px);
            color: var(--primary);
        }

        .toc-index {
            font-size: 24px;
            font-weight: 800;
            color: rgba(15, 107, 74, .3);
            font-variant-numeric: tabular-nums;
            letter-spacing: .04em;
        }

        .toc-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
        }

        .toc-row:hover .toc-title {
            color: var(--primary);
        }

        .toc-desc {
            font-size: 15px;
            color: var(--text-weak);
            line-height: 1.7;
        }

        .toc-arrow {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: var(--primary);
            transition: background .2s ease, color .2s ease, transform .2s ease;
        }

        .toc-row:hover .toc-arrow {
            background: var(--primary);
            color: #fff;
            transform: translateX(2px);
        }

        /* ============ latest CMS ============ */
        .latest-list {
            border-top: 1px solid var(--border);
        }

        .cms-item {
            display: grid;
            grid-template-columns: 96px 1fr auto;
            gap: 20px;
            align-items: start;
            background: #fff;
            border: 1px solid var(--border);
            border-top: 0;
            padding: 22px 24px;
            transition: box-shadow .2s ease, border-color .2s ease;
        }

        .cms-item:first-child {
            border-radius: 12px 12px 0 0;
        }

        .cms-item:last-child {
            border-radius: 0 0 12px 12px;
            border-bottom: 1px solid var(--border);
        }

        .cms-item:hover {
            z-index: 1;
            position: relative;
            background: #fff;
            border-color: rgba(15, 107, 74, .35);
            box-shadow: var(--shadow-md);
        }

        .cms-date {
            color: var(--text-weak);
            font-size: 13px;
            padding-top: 3px;
            font-variant-numeric: tabular-nums;
        }

        .cms-date .date-sub {
            display: block;
            font-size: 13px;
            color: var(--text-weak);
            margin-top: 2px;
            font-variant-numeric: tabular-nums;
        }

        .cms-body {
            min-width: 0;
        }

        .cms-body .cms-tag {
            display: inline-block;
            background: var(--green-light);
            color: var(--primary);
            font-size: 12px;
            border-radius: 4px;
            padding: 3px 8px;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .cms-body h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.45;
            margin-bottom: 6px;
        }

        .cms-body h3 a {
            color: var(--text);
            transition: color .2s ease;
        }

        .cms-item:hover .cms-body h3 a {
            color: var(--primary);
        }

        .cms-body p {
            color: var(--text-weak);
            font-size: 15px;
            line-height: 1.7;
            max-width: 680px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cms-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
            padding-top: 8px;
            transition: color .2s ease;
        }

        .cms-more:hover {
            color: var(--accent);
        }

        .empty-latest {
            text-align: center;
            padding: 70px 20px;
            background: #fff;
            border: 1px dashed rgba(15, 107, 74, .24);
            border-radius: 14px;
            color: var(--text-weak);
            font-size: 15px;
        }

        .empty-latest i {
            display: inline-block;
            margin-bottom: 12px;
            font-size: 30px;
            color: #a7bfb1;
        }

        /* ============ featured showcase ============ */
        .showcase-card {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .showcase-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(15, 107, 74, .25);
        }

        .showcase-img {
            overflow: hidden;
            background: var(--green-light);
            aspect-ratio: 16 / 10;
            position: relative;
        }

        .showcase-img img {
            width: 100%;
            height: 100%;
            transition: transform .4s ease;
        }

        .showcase-card:hover .showcase-img img {
            transform: scale(1.04);
        }

        .showcase-body {
            padding: 24px 24px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .showcase-body .tag {
            align-self: flex-start;
            margin-bottom: 14px;
        }

        .showcase-body h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text);
        }

        .showcase-body p {
            color: var(--text-weak);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 18px;
        }

        .showcase-link {
            margin-top: auto;
            font-weight: 600;
            gap: 6px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            font-size: 15px;
        }

        .showcase-link:hover {
            color: var(--accent);
        }

        .showcase-vertical .showcase-img {
            aspect-ratio: 4 / 3;
        }

        .show-mini-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            height: 160px;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .show-mini-card:hover {
            transform: translateY(-4px);
            border-color: rgba(15, 107, 74, .3);
            box-shadow: var(--shadow-md);
        }

        .show-mini-card img {
            width: 116px;
            height: 100%;
            border-radius: 10px;
            flex-shrink: 0;
            object-fit: cover;
        }

        .show-mini-card .mini-content {
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mini-content .mini-tag {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .mini-content h4 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .mini-content .more {
            font-size: 13px;
            color: var(--text-weak);
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ============ share CTA ============ */
        .share-zone {
            background: linear-gradient(118deg, #f2faf4 0%, #e4f1ea 100%);
            border-radius: 22px;
            padding: 60px 44px;
            text-align: center;
        }

        .share-zone h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-deep);
            margin-bottom: 10px;
        }

        .share-zone .share-note {
            color: var(--text-weak);
            font-size: 15px;
            margin-bottom: 30px;
        }

        .btn-group-center {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* ============ FAQ ============ */
        .faq-list {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-item:last-child {
            border-bottom: 0;
        }

        .faq-q {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            text-align: left;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            background: #fff;
            transition: background .2s ease, color .2s ease;
        }

        .faq-q:hover {
            background: #f6faf7;
            color: var(--primary);
        }

        .faq-q i {
            color: var(--text-weak);
            transition: transform .25s ease, color .2s ease;
            font-size: 15px;
        }

        .faq-item.open .faq-q {
            color: var(--primary);
            background: #f6faf7;
        }

        .faq-item.open .faq-q i {
            transform: rotate(45deg);
            color: var(--primary);
        }

        .faq-a {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease, padding .3s ease;
        }

        .faq-item.open .faq-a {
            padding: 0 24px 22px;
            max-height: 400px;
        }

        .faq-a p {
            color: var(--text-weak);
            line-height: 1.8;
            font-size: 15px;
            border-left: 3px solid var(--green-light);
            padding-left: 14px;
            margin-left: 2px;
        }

        /* ============ footer ============ */
        .site-footer {
            background: var(--primary-deep);
            color: #b9cec3;
            margin-top: 40px;
            padding: 60px 0 34px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
        }

        .footer-brand {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 16px;
        }

        .footer-brand .brand-main {
            color: #fff;
            font-weight: 800;
        }

        .footer-brand .brand-sub {
            background: rgba(200, 68, 34, .2);
            color: #ffe4de;
        }

        .footer-about {
            color: #9fb6aa;
            font-size: 14px;
            line-height: 1.8;
            max-width: 320px;
        }

        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-col ul li {
            margin-bottom: 9px;
        }

        .footer-col ul a {
            color: #afc4b9;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color .2s ease, padding-left .2s ease;
        }

        .footer-col ul a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-col ul a i {
            color: #61a487;
            font-size: 10px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding-top: 26px;
            font-size: 13px;
            color: #829c8f;
            flex-wrap: wrap;
        }

        .footer-bottom a {
            color: #b7cec2;
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        /* ============ toast ============ */
        .toast-tip {
            position: fixed;
            left: 50%;
            bottom: 38px;
            transform: translateX(-50%) translateY(20px);
            background: #15251e;
            color: #fff;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 14px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
            opacity: 0;
            pointer-events: none;
            transition: opacity .25s ease, transform .25s ease;
            z-index: 1600;
        }

        .toast-tip.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* ============ responsive ============ */
        @media (max-width: 1023px) {
            .header-dock {
                padding: 0 10px 0 16px;
            }

            .dock-nav {
                position: absolute;
                top: calc(100% + 10px);
                left: 10px;
                right: 10px;
                background: #fff;
                border-radius: 18px;
                box-shadow: var(--shadow-lg);
                padding: 14px;
                flex-direction: column;
                align-items: stretch;
                display: none;
            }

            .dock-nav.open {
                display: flex;
            }

            .dock-nav a {
                min-height: 48px;
                border-radius: 10px;
                justify-content: center;
                font-size: 16px;
            }

            .nav-search-box {
                width: 160px;
            }

            .section-block {
                padding: 64px 0;
            }

            .toc-row {
                grid-template-columns: 60px 1fr 38px;
            }

            .toc-desc {
                grid-column: 2 / 4;
                grid-row: 2;
            }

            .toc-arrow {
                justify-self: end;
            }
        }

        @media (max-width: 767px) {
            .site-header-wrap {
                padding: 10px 12px 0;
            }

            .header-dock {
                height: 60px;
                border-radius: 18px;
                padding: 0 8px 0 14px;
            }

            .brand-sub {
                display: none;
            }

            .brand-main {
                font-size: 18px;
            }

            .dock-call {
                display: none;
            }

            .nav-search-box {
                display: none;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .dock-cta {
                height: 40px;
                padding: 0 14px;
                font-size: 13px;
            }

            .section-block {
                padding: 48px 0;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .section-head {
                margin-bottom: 28px;
            }

            .hero-section {
                padding-top: 120px;
                padding-bottom: 80px;
            }

            .hero-copy h1 {
                font-size: 34px;
                line-height: 1.22;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .feature-media {
                min-height: 220px;
                order: -1;
            }

            .hero-check-list {
                gap: 10px 16px;
            }

            .toc-wrap {
                padding: 16px;
            }

            .toc-row {
                grid-template-columns: 44px 1fr 34px;
                gap: 8px;
                padding: 18px 2px;
            }

            .toc-index {
                font-size: 18px;
            }

            .toc-title {
                font-size: 17px;
            }

            .toc-desc {
                font-size: 14px;
                margin-top: 4px;
            }

            .toc-desc {
                grid-column: 1 / 4;
                grid-row: 2;
            }

            .toc-arrow {
                grid-column: 3;
                grid-row: 1;
                width: 30px;
                height: 30px;
                font-size: 12px;
            }

            .cms-item {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .cms-date {
                display: flex;
                gap: 8px;
                font-size: 13px;
            }

            .cms-date .date-sub {
                margin-left: auto;
                display: inline;
            }

            .cms-more {
                padding-top: 2px;
            }

            .entry-card {
                padding: 20px;
            }

            .feature-points {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .faq-q {
                font-size: 15px;
                padding: 18px;
            }

            .faq-item.open .faq-a {
                padding-left: 18px;
                padding-right: 18px;
            }

            .faq-a p {
                padding-left: 8px;
                font-size: 14px;
            }

            .share-zone {
                padding: 40px 22px;
            }

            .show-mini-card {
                height: auto;
                flex-direction: row;
            }
        }

        @media (max-width: 559px) {
            .dock-nav {
                left: 4px;
                right: 4px;
            }

            .entry-user-actions {
                grid-template-columns: 1fr;
            }

            .hero-copy h1 {
                font-size: 30px;
                letter-spacing: -0.02em;
            }

            .hero-btns .btn {
                width: 100%;
            }

            .btn-group-center .btn {
                width: 100%;
            }

            .latest-list .cms-item {
                padding: 18px 16px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 1023px) and (min-width: 640px) {
            .toc-wrap {
                padding: 24px 18px;
            }
        }

        @media (min-width: 640px) {
            .entry-card {
                animation: floatCard 5s ease-in-out infinite;
            }
        }

        @keyframes floatCard {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-6px);
            }
        }

        /* 微交互与工具类 */
        .accent-line {
            width: 46px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            margin-top: 10px;
        }

        .text-link {
            font-weight: 600;
            color: var(--primary);
        }

        .section-bg-light {
            background: #f1f5f0;
        }

        .align-center {
            text-align: center;
        }

        .grid-margin-x .cell {
            margin-bottom: 14px;
        }

        [data-ready] .site-header-wrap {
            visibility: visible;
        }

/* roulang page: category1 */
:root {
            --green: #0F6B4A;
            --deep-green: #0A2C20;
            --ink: #0A2C20;
            --orange: #C84422;
            --paper: #F6F6F1;
            --white: #FFFFFF;
            --soft-green: #E5F1EA;
            --text: #17211B;
            --muted: #64736B;
            --line: #DCE4DE;
            --radius-tag: 4px;
            --radius-btn: 6px;
            --radius-card: 10px;
            --radius-dock: 20px;
            --shadow-sm: 0 4px 18px rgba(10, 44, 32, .06);
            --shadow-md: 0 10px 30px rgba(10, 44, 32, .08);
            --shadow-lg: 0 18px 44px rgba(10, 44, 32, .12);
            --font-stack: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            background: var(--paper);
            color: var(--text);
            font-size: 16px;
            line-height: 1.75;
            padding-top: 108px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
            object-fit: cover;
            background: var(--soft-green);
        }

        a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease, opacity .25s ease;
        }

        a:hover {
            color: var(--orange);
        }

        button,
        input {
            font-family: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 3px;
        }

        .grid-container {
            max-width: 1280px;
        }

        .section-block {
            padding: 58px 0 12px;
        }

        .section-inner {
            padding: 72px 0 44px;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 32px;
        }

        .section-kicker {
            display: block;
            color: var(--green);
            font-size: 14px;
            letter-spacing: .14em;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .section-head h2,
        .section-title {
            font-size: 32px;
            line-height: 1.25;
            color: var(--ink);
            font-weight: 720;
            letter-spacing: -0.01em;
            margin: 4px 0 0;
        }

        .section-desc {
            color: var(--muted);
            margin-top: 10px;
            font-size: 16px;
            max-width: 560px;
        }

        .section-link {
            color: var(--green);
            font-weight: 700;
            white-space: nowrap;
            border-bottom: 2px solid var(--orange);
            padding-bottom: 2px;
        }

        .section-link i {
            margin-left: 6px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            background: var(--soft-green);
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
            border-radius: var(--radius-tag);
            padding: 6px 10px;
            white-space: nowrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 0 22px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 15px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all .25s ease;
        }

        .btn i {
            font-size: 14px;
        }

        .btn-primary {
            background: var(--green);
            color: #fff !important;
        }

        .btn-primary:hover {
            background: var(--ink);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-highlight {
            background: var(--orange);
            color: #fff !important;
        }

        .btn-highlight:hover {
            background: #a23319;
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(200, 68, 34, .22);
        }

        .btn-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, .72);
            color: #fff !important;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, .14);
            border-color: #fff;
        }

        .soft-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1px solid var(--line);
            color: var(--text);
            min-height: 44px;
            padding: 0 18px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: var(--shadow-sm);
        }

        .soft-btn:hover {
            border-color: var(--green);
            color: var(--green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .header-dock {
            position: sticky;
            top: 14px;
            z-index: 100;
            margin: 0 auto 22px;
            display: flex;
            align-items: center;
            gap: 12px;
            width: calc(100% - 28px);
            max-width: 1290px;
            min-height: 66px;
            padding: 8px 12px 8px 18px;
            background: rgba(255, 255, 255, .82);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(15, 107, 74, .18);
            border-radius: var(--radius-dock);
            box-shadow: 0 10px 34px rgba(10, 44, 32, .08);
            transition: background .3s, box-shadow .3s;
        }

        .header-dock.is-scrolled {
            background: rgba(255, 255, 255, .94);
            box-shadow: 0 16px 42px rgba(10, 44, 32, .12);
        }

        .dock-brand {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.12;
            gap: 4px;
            min-width: 128px;
            padding-right: 6px;
        }

        .brand-main {
            font-size: 19px;
            font-weight: 760;
            color: var(--ink);
            letter-spacing: .02em;
        }

        .brand-sub {
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: .2em;
            color: var(--orange);
        }

        .dock-nav {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .dock-nav .nav-search-box.mobile-inline {
            display: none;
        }

        .dock-nav>a {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 10px;
            color: var(--text);
            font-size: 15px;
            font-weight: 650;
        }

        .dock-nav>a:hover {
            background: var(--soft-green);
            color: var(--green);
        }

        .dock-nav>a.active {
            background: var(--deep-green);
            color: #fff;
            box-shadow: 0 4px 12px rgba(10, 44, 32, .16);
        }

        .dock-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            border: 1px solid var(--line);
            background: #fff;
            border-radius: 10px;
            height: 40px;
            overflow: hidden;
            width: 168px;
            transition: border-color .2s, box-shadow .2s, width .25s;
        }

        .nav-search-box:focus-within {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(15, 107, 74, .1);
            width: 194px;
        }

        .nav-search-box input {
            flex: 1;
            min-width: 0;
            border: 0;
            background: transparent;
            padding: 0 10px;
            font-size: 14px;
            color: var(--text);
            outline: none;
        }

        .nav-search-box input::placeholder {
            color: #9aa69f;
        }

        .nav-search-box button {
            width: 40px;
            height: 40px;
            border: 0;
            background: transparent;
            color: var(--green);
            cursor: pointer;
            font-size: 15px;
        }

        .nav-search-box button:hover {
            background: var(--soft-green);
        }

        .dock-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 10px;
            background: var(--orange);
            color: #fff !important;
            font-size: 14px;
            font-weight: 700;
        }

        .dock-cta:hover {
            background: #a23319;
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(200, 68, 34, .2);
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            border: 0;
            background: var(--soft-green);
            color: var(--ink);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .2s;
        }

        .nav-toggle:hover {
            background: #cfdfd6;
        }

        .cat-banner {
            position: relative;
            overflow: hidden;
            margin: 0 auto 40px;
            width: calc(100% - 28px);
            max-width: 1280px;
            min-height: 380px;
            border-radius: 16px;
            color: #fff;
            display: flex;
            align-items: flex-end;
            background:
                linear-gradient(100deg, rgba(10, 44, 32, .96), rgba(10, 44, 32, .76) 44%, rgba(10, 44, 32, .18) 100%),
                url('/assets/images/backpic/back-2.webp') center / cover;
            box-shadow: var(--shadow-md);
            isolation: isolate;
        }

        .cat-banner-inner {
            position: relative;
            z-index: 2;
            max-width: 920px;
            padding: 52px 42px;
        }

        .crumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, .78);
            font-size: 13px;
            font-weight: 600;
        }

        .crumb a {
            color: rgba(255, 255, 255, .86);
        }

        .crumb a:hover {
            color: #fff;
        }

        .crumb span {
            opacity: .64;
        }

        .cat-banner .section-kicker {
            color: #e9f7f0;
            margin-top: 14px;
        }

        .cat-banner h1 {
            font-size: 48px;
            line-height: 1.16;
            color: #fff;
            font-weight: 780;
            margin: 4px 0 12px;
            letter-spacing: .01em;
        }

        .banner-lead {
            display: inline-flex;
            align-items: center;
            color: #e9f7f0;
            font-size: 15px;
            font-weight: 650;
            letter-spacing: .08em;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 6px;
            padding: 7px 14px;
            margin-bottom: 16px;
        }

        .banner-desc {
            max-width: 620px;
            color: rgba(255, 255, 255, .9);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .cat-banner::after {
            content: "SPORTS";
            position: absolute;
            right: -8px;
            bottom: -32px;
            font-size: 132px;
            letter-spacing: .04em;
            font-weight: 800;
            color: rgba(255, 255, 255, .05);
            z-index: 1;
            pointer-events: none;
            -webkit-user-select: none;
            user-select: none;
        }

        .intro-section {
            padding-top: 30px;
        }

        .intro-copy h2 {
            font-size: 30px;
            color: var(--ink);
            margin: 12px 0 16px;
            line-height: 1.3;
        }

        .intro-copy p {
            color: var(--muted);
            margin-bottom: 18px;
        }

        .intro-points {
            margin-top: 16px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .intro-points li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text);
            font-size: 15px;
            line-height: 1.6;
        }

        .intro-points li i {
            color: var(--green);
            margin-top: 6px;
        }

        .media-frame {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 4px solid #fff;
            background: var(--soft-green);
            margin-left: 20px;
        }

        .media-frame img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        .media-caption {
            position: absolute;
            left: 14px;
            bottom: 14px;
            background: rgba(255, 255, 255, .92);
            color: var(--ink);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .project-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-4px);
            border-color: var(--green);
            box-shadow: var(--shadow-lg);
        }

        .project-card .card-media {
            display: block;
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: var(--soft-green);
        }

        .project-card .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .project-card:hover .card-media img {
            transform: scale(1.035);
        }

        .card-media .tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, .92);
            color: var(--green);
        }

        .card-body {
            padding: 20px 20px 22px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            flex: 1;
        }

        .card-body h3 {
            font-size: 19px;
            font-weight: 720;
            color: var(--ink);
            line-height: 1.35;
            margin: 0;
        }

        .card-body p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .go-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--green);
            font-weight: 700;
            font-size: 14px;
            margin-top: auto;
            border-bottom: 2px solid transparent;
        }

        .go-link i {
            transition: transform .25s;
        }

        .go-link:hover {
            color: var(--orange);
            border-bottom-color: var(--orange);
        }

        .go-link:hover i {
            transform: translateX(3px);
        }

        .feature-section {
            background: #eff5f1;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding-top: 64px;
            padding-bottom: 64px;
            margin-top: 42px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 24px;
            align-items: stretch;
        }

        .focus-panel {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            min-height: 440px;
            background: var(--deep-green);
            box-shadow: var(--shadow-md);
        }

        .focus-panel>img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .52;
        }

        .focus-mask {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 44, 32, .1), rgba(10, 44, 32, .82));
            padding: 26px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .focus-mask .tag {
            align-self: flex-start;
        }

        .focus-mask h3 {
            color: #fff;
            font-size: 28px;
            font-weight: 740;
            margin: 14px 0 10px;
            line-height: 1.36;
            max-width: 420px;
        }

        .focus-mask p {
            color: rgba(255, 255, 255, .86);
            font-size: 15px;
            max-width: 500px;
            margin-bottom: 4px;
        }

        .flow-list {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .flow-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 22px 20px;
            border-bottom: 1px solid var(--line);
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .flow-item:last-child {
            border-bottom: 0;
        }

        .flow-item:hover {
            background: #f3faf6;
        }

        .flow-item:hover {
            transform: translateX(3px);
        }

        .flow-num {
            flex: 0 0 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--soft-green);
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 760;
            font-variant-numeric: tabular-nums;
        }

        .flow-content {
            flex: 1;
            min-width: 0;
        }

        .flow-content .tag {
            margin-bottom: 6px;
            font-size: 12px;
            padding: 4px 8px;
        }

        .flow-content h3 {
            font-size: 17px;
            font-weight: 720;
            color: var(--ink);
            line-height: 1.4;
            margin: 4px 0 5px;
        }

        .flow-content p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .flow-arrow {
            color: var(--green);
            font-size: 14px;
            flex: 0 0 24px;
            text-align: center;
        }

        .dark-band {
            background: var(--ink);
            border-radius: 16px;
            margin-top: 52px;
            padding: 60px 46px;
            box-shadow: 0 18px 52px rgba(10, 44, 32, .18);
        }

        .dark-band .section-kicker {
            color: #9fd8c0;
        }

        .dark-band h2 {
            color: #fff;
        }

        .dark-band .section-desc {
            color: rgba(255, 255, 255, .72);
        }

        .format-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 28px;
        }

        .format-item {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 14px;
            padding: 22px 20px;
            color: #fff;
            transition: background .25s ease, transform .25s ease;
        }

        .format-item:hover {
            background: rgba(255, 255, 255, .14);
            transform: translateY(-3px);
        }

        .format-icon {
            width: 46px;
            height: 46px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f0bf9d;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .format-item h3 {
            font-size: 17px;
            font-weight: 720;
            margin-bottom: 8px;
        }

        .format-item p {
            color: rgba(255, 255, 255, .74);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
        }

        .topic-tags a {
            background: rgba(255, 255, 255, .12);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 6px;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 600;
            transition: background .25s ease, border-color .25s ease;
        }

        .topic-tags a:hover {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
        }

        .entry-section {
            padding-top: 64px;
            padding-bottom: 28px;
        }

        .entry-panel {
            display: grid;
            grid-template-columns: 1.02fr .98fr;
            gap: 28px;
            align-items: center;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 34px;
            box-shadow: var(--shadow-sm);
        }

        .entry-copy h2 {
            color: var(--ink);
            line-height: 1.3;
            margin: 10px 0 10px;
        }

        .entry-copy p {
            color: var(--muted);
            margin-bottom: 22px;
        }

        .entry-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .quick-search {
            background: var(--soft-green);
            border-radius: 14px;
            padding: 22px;
        }

        .quick-search h3 {
            font-size: 18px;
            color: var(--ink);
            margin-bottom: 12px;
        }

        .quick-search label {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 8px;
            display: block;
        }

        .search-line {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 9px;
            height: 46px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .search-line input {
            min-width: 0;
            height: 44px;
            border: 0;
            flex: 1;
            padding: 0 14px;
            background: transparent;
            color: var(--text);
            font-size: 14px;
            outline: 0;
        }

        .search-line button {
            align-self: stretch;
            width: 52px;
            border: 0;
            background: var(--green);
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            transition: background .2s;
        }

        .search-line button:hover {
            background: var(--ink);
        }

        .quick-search .btn {
            width: 100%;
        }

        .faq-section {
            padding-top: 58px;
            padding-bottom: 32px;
        }

        .faq-wrap {
            max-width: 820px;
        }

        details.faq-item {
            border-bottom: 1px solid var(--line);
            padding: 4px 0;
        }

        details.faq-item:first-of-type {
            border-top: 1px solid var(--line);
        }

        details.faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 64px;
            cursor: pointer;
            font-weight: 700;
            color: var(--ink);
            list-style: none;
            gap: 14px;
            font-size: 16px;
            transition: color .2s;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        details.faq-item summary:hover {
            color: var(--green);
        }

        details.faq-item summary i {
            color: var(--green);
            transition: transform .25s ease;
        }

        details.faq-item[open] summary i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 2px 20px 22px 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
            max-width: 720px;
        }

        .cta-band {
            margin: 46px 0 12px;
        }

        .cta-panel {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            background:
                linear-gradient(105deg, rgba(10, 44, 32, .96), rgba(15, 107, 74, .86) 60%, rgba(10, 44, 32, .72)),
                url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            padding: 56px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 28px;
            color: #fff;
            box-shadow: var(--shadow-lg);
        }

        .cta-copy h2 {
            color: #fff;
            font-size: 32px;
            line-height: 1.3;
            font-weight: 750;
            margin-bottom: 10px;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, .82);
            max-width: 520px;
            margin: 0;
            font-size: 15px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .site-footer {
            border-top: 1px solid var(--line);
            background: #fafbf9;
            margin-top: 58px;
            padding-top: 55px;
            padding-bottom: 22px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 38px;
            margin-bottom: 38px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            gap: 4px;
            margin-bottom: 18px;
        }

        .footer-brand .brand-main {
            font-size: 24px;
        }

        .footer-brand .brand-sub {
            font-size: 12px;
        }

        .footer-about {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.85;
            max-width: 320px;
            margin: 0;
        }

        .footer-title {
            color: var(--ink);
            font-size: 15px;
            font-weight: 750;
            margin-bottom: 16px;
            letter-spacing: .04em;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--muted);
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            gap: 8px;
            transition: color .2s, padding-left .2s;
        }

        .footer-col ul li a:hover {
            color: var(--green);
            padding-left: 3px;
        }

        .footer-col ul li a i {
            width: 16px;
            color: var(--green);
            font-size: 13px;
            margin-top: 5px;
        }

        .footer-bottom {
            border-top: 1px solid var(--line);
            padding-top: 24px;
            color: var(--muted);
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-bottom a {
            color: var(--muted);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .cat-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin: 34px 0 6px;
        }

        .page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fff;
            color: var(--muted);
            font-size: 14px;
            font-weight: 600;
            padding: 0 12px;
        }

        .page-btn.cur {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
        }

        .page-btn:hover {
            border-color: var(--green);
            color: var(--green);
        }

        .anchor-target {
            display: block;
            height: 20px;
            margin-bottom: -20px;
        }

        .row {
            max-width: none;
        }

        @media (max-width: 1023.98px) {
            .coverage-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .format-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .focus-panel {
                min-height: 360px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }

            .entry-panel {
                grid-template-columns: 1fr;
            }

            .dock-nav {
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                right: 0;
                display: none;
                background: #fff;
                border-radius: 16px;
                padding: 14px;
                border: 1px solid var(--line);
                box-shadow: var(--shadow-lg);
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .dock-nav.open {
                display: flex;
            }

            .dock-nav>a {
                justify-content: flex-start;
                min-height: 46px;
                padding: 0 14px;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .dock-nav .nav-search-box.mobile-inline {
                display: flex;
                width: 100%;
                margin: 6px 0 4px;
            }

            .dock-actions .nav-search-box {
                display: none;
            }
        }

        @media (max-width: 767.98px) {
            body {
                padding-top: 94px;
            }

            .section-block {
                padding: 42px 0 8px;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 13px;
                margin-bottom: 24px;
            }

            .section-title,
            .section-head h2 {
                font-size: 27px;
            }

            .cat-banner {
                min-height: 330px;
                width: calc(100% - 20px);
                margin-bottom: 28px;
            }

            .cat-banner-inner {
                padding: 34px 24px;
            }

            .cat-banner h1 {
                font-size: 36px;
            }

            .banner-desc {
                font-size: 16px;
            }

            .cat-banner::after {
                font-size: 84px;
                bottom: -16px;
            }

            .media-frame {
                margin-left: 0;
                margin-top: 26px;
            }

            .intro-copy h2 {
                font-size: 25px;
            }

            .dark-band {
                padding: 36px 22px;
            }

            .format-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .format-item {
                padding: 18px;
            }

            .cta-panel {
                padding: 40px 24px;
            }

            .focus-mask h3 {
                font-size: 23px;
            }

            .entry-panel {
                padding: 24px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-about {
                max-width: 100%;
            }
        }

        @media (max-width: 559.98px) {
            .feature-grid {
                gap: 14px;
            }

            .coverage-grid {
                grid-template-columns: 1fr;
            }

            .format-grid {
                grid-template-columns: 1fr;
            }

            .hero-tag-cloud {
                overflow-x: auto;
            }

            .footer-bottom {
                flex-direction: column;
            }

            .cat-pagination {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: wrap;
            }

            .dock-brand {
                min-width: 106px;
            }

            .brand-main {
                font-size: 16px;
            }

            .brand-sub {
                font-size: 10px;
                letter-spacing: .12em;
            }

            .dock-cta {
                display: none;
            }

            .header-dock {
                width: calc(100% - 16px);
                min-height: 60px;
                padding-left: 14px;
                gap: 8px;
            }

            .dock-nav {
                left: 0;
                right: 0;
            }

            .flow-item {
                padding: 16px;
                gap: 12px;
            }

            .flow-num {
                flex-basis: 36px;
                height: 36px;
            }

            .entry-actions .btn {
                width: 100%;
            }

            .cta-actions .btn {
                width: 100%;
            }
        }

        @media (min-width: 900px) {
            .nav-toggle {
                display: none !important;
            }
        }

/* roulang page: article */
:root {
            --primary: #0F6B4A;
            --dark-green: #0A2C20;
            --accent: #C84422;
            --bg: #F6F6F1;
            --paper: #FFFFFF;
            --soft-green: #E5F1EA;
            --text: #17211B;
            --muted: #64736B;
            --divider: #DCE4DE;
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 10px;
            --radius-dock: 22px;
            --shadow-sm: 0 2px 10px rgba(10, 44, 32, .06);
            --shadow-md: 0 12px 28px rgba(10, 44, 32, .08);
            --shadow-lg: 0 24px 48px rgba(10, 44, 32, .12);
            --font-stack: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-stack);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        a:hover {
            color: #0b5639;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            background: var(--soft-green);
        }

        p {
            font-size: 1rem;
        }

        .container {
            width: min(1240px, calc(100% - 32px));
            margin-left: auto;
            margin-right: auto;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .btn-primary,
        .btn-outline,
        .btn-dark,
        .copy-link,
        .side-enter-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            min-height: 44px;
            padding: .65rem 1.4rem;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: .95rem;
            line-height: 1.2;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--dark-green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-outline {
            background: transparent;
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--soft-green);
            color: var(--dark-green);
            border-color: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .btn-dark {
            background: var(--dark-green);
            color: #fff;
        }

        .btn-dark:hover {
            background: #061b14;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-block {
            width: 100%;
        }

        .fa,
        .fas,
        .far,
        .fa-solid,
        .fa-regular {
            font-size: .95em;
        }

        .header-dock {
            position: fixed;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            width: min(1200px, calc(100% - 32px));
            padding: 8px 12px 8px 18px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(10, 44, 32, .1);
            border-radius: var(--radius-dock);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .header-dock.is-scrolled {
            background: rgba(255, 255, 255, .94);
            border-color: rgba(10, 44, 32, .14);
            box-shadow: var(--shadow-md);
        }

        .dock-brand {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            flex-shrink: 0;
            line-height: 1.12;
            padding: 4px 0;
            border-radius: var(--radius-sm);
        }

        .dock-brand .brand-main,
        .footer-brand .brand-main {
            font-weight: 900;
            color: var(--dark-green);
            font-size: 1.05rem;
            letter-spacing: .02em;
        }

        .dock-brand .brand-sub,
        .footer-brand .brand-sub {
            margin-top: 3px;
            background: var(--primary);
            color: #fff;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .08em;
            padding: 2px 7px;
            border-radius: 4px;
            display: inline-block;
            line-height: 1.4;
        }

        .dock-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }

        .dock-nav a {
            position: relative;
            padding: 9px 12px;
            font-size: .92rem;
            font-weight: 600;
            color: var(--text);
            border-radius: 8px;
            white-space: nowrap;
        }

        .dock-nav a:hover {
            background: var(--soft-green);
            color: var(--primary);
        }

        .dock-nav a.active {
            color: var(--primary);
        }

        .dock-nav a.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 2px;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
        }

        .dock-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 2px;
            border: 1px solid var(--divider);
            border-radius: 40px;
            background: #fff;
            padding: 4px 6px;
            min-height: 40px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .nav-search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15, 107, 74, .1);
        }

        .nav-search-box input {
            border: 0;
            padding: 4px 6px;
            width: 104px;
            background: transparent;
            font-size: .86rem;
            color: var(--text);
        }

        .nav-search-box input:focus {
            outline: 0;
        }

        .nav-search-box input::placeholder {
            color: var(--muted);
        }

        .nav-search-box button {
            min-width: 30px;
            height: 30px;
            border: 0;
            background: transparent;
            color: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color .2s ease, color .2s ease;
        }

        .nav-search-box button:hover {
            background: var(--soft-green);
            color: var(--dark-green);
        }

        .dock-cta {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            min-height: 42px;
            padding: .45rem 1rem;
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            font-size: .88rem;
            font-weight: 700;
            border: 1px solid transparent;
            transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .dock-cta:hover {
            background: #a83a1d;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 1px solid var(--divider);
            background: #fff;
            border-radius: 14px;
            color: var(--dark-green);
            font-size: 1.1rem;
            cursor: pointer;
            transition: border-color .2s ease, color .2s ease, background-color .2s ease;
        }

        .nav-toggle:hover {
            background: var(--soft-green);
            border-color: var(--primary);
            color: var(--primary);
        }

        .post-banner {
            margin-top: 76px;
            min-height: 190px;
            background-color: var(--dark-green);
            background-image: linear-gradient(100deg, rgba(10, 44, 32, .86), rgba(15, 107, 74, .5)), url("/assets/images/backpic/back-1.webp");
            background-size: cover;
            background-position: center;
            border-bottom: 4px solid var(--primary);
            position: relative;
        }

        .post-banner-inner {
            height: 100%;
            min-height: 190px;
        }

        .breadcrumb-outer {
            margin-top: 26px;
            margin-bottom: 26px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: .9rem;
            color: var(--muted);
            background: rgba(255, 255, 255, .82);
            border: 1px solid var(--divider);
            border-radius: var(--radius-lg);
            padding: 8px 16px;
            box-shadow: var(--shadow-sm);
        }

        .breadcrumb a {
            color: var(--primary);
            font-weight: 600;
        }

        .breadcrumb a:hover {
            color: var(--dark-green);
        }

        .breadcrumb-sep {
            color: #b8c6be;
            font-size: .8rem;
        }

        .breadcrumb .crumb-current {
            max-width: 320px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text);
            font-weight: 600;
        }

        .article-doc {
            padding-top: 2px;
            padding-bottom: 8px;
        }

        .article-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 34px;
            align-items: start;
        }

        .article-main {
            background: var(--paper);
            border: 1px solid var(--divider);
            border-radius: 16px;
            padding: clamp(22px, 4vw, 46px);
            box-shadow: var(--shadow-sm);
            min-width: 0;
        }

        .article-header {
            padding-bottom: 24px;
            margin-bottom: 28px;
            border-bottom: 1px solid var(--divider);
        }

        .article-category-flag {
            display: inline-flex;
            align-items: center;
            gap: .3rem;
            padding: 4px 10px;
            background: var(--soft-green);
            color: var(--primary);
            font-size: .82rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            margin-bottom: 14px;
        }

        .article-header h1 {
            margin: 0;
            font-size: clamp(1.8rem, 3vw, 2.55rem);
            line-height: 1.45;
            font-weight: 800;
            letter-spacing: -.01em;
            color: var(--text);
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 22px;
            margin-top: 22px;
            font-size: .9rem;
            color: var(--muted);
            font-variant-numeric: tabular-nums;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
        }

        .article-meta i {
            color: var(--primary);
        }

        .post-body {
            font-size: 1.03rem;
            line-height: 1.9;
            color: #26332c;
        }

        .post-body > *:first-child {
            margin-top: 0;
        }

        .post-body > *:last-child {
            margin-bottom: 0;
        }

        .post-body p {
            margin: 1.4em 0;
            line-height: 1.9;
        }

        .post-body h2,
        .post-body h3,
        .post-body h4 {
            color: var(--text);
            line-height: 1.4;
            font-weight: 800;
        }

        .post-body h2 {
            font-size: 1.55rem;
            margin: 2.2em 0 .9em;
            padding-bottom: .45em;
            border-bottom: 1px solid var(--divider);
        }

        .post-body h3 {
            font-size: 1.25rem;
            margin: 2em 0 .8em;
        }

        .post-body h4 {
            font-size: 1.08rem;
            margin: 1.8em 0 .6em;
        }

        .post-body strong {
            color: var(--dark-green);
            font-weight: 700;
        }

        .post-body ul,
        .post-body ol {
            margin: 1.2em 0;
            padding-left: 1.4rem;
        }

        .post-body ul li,
        .post-body ol li {
            margin: .4em 0;
        }

        .post-body ul li::marker {
            color: var(--primary);
        }

        .post-body img {
            border-radius: var(--radius-lg);
            margin: 1.8em 0;
            box-shadow: var(--shadow-md);
        }

        .post-body blockquote {
            border-left: 4px solid var(--primary);
            background: var(--soft-green);
            padding: 1rem 1.4rem;
            border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
            margin: 1.8em 0;
            color: #294538;
        }

        .post-body blockquote p {
            margin: .4em 0;
        }

        .post-body pre {
            background: var(--dark-green);
            color: #eaf5ef;
            padding: 1.2rem 1.4rem;
            border-radius: var(--radius-lg);
            overflow-x: auto;
            line-height: 1.7;
            font-size: .95rem;
            margin: 1.8em 0;
        }

        .post-body code {
            background: var(--soft-green);
            color: var(--dark-green);
            padding: .15em .4em;
            border-radius: 4px;
            font-size: .92em;
        }

        .post-body pre code {
            background: transparent;
            color: inherit;
            padding: 0;
            border-radius: 0;
        }

        .post-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6em 0;
            font-size: .96rem;
        }

        .post-body th {
            background: var(--dark-green);
            color: #fff;
            text-align: left;
            font-weight: 700;
        }

        .post-body th,
        .post-body td {
            border: 1px solid var(--divider);
            padding: .7rem .9rem;
        }

        .post-body tr:nth-child(even) {
            background: #f2f6f3;
        }

        .article-toolbar {
            margin-top: 38px;
            padding-top: 28px;
            border-top: 1px solid var(--divider);
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 22px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: .25rem;
            background: var(--soft-green);
            color: var(--primary);
            font-size: .82rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
        }

        .article-return-row {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 12px;
        }

        .article-return-row a {
            min-height: 44px;
        }

        .article-aside {
            position: sticky;
            top: 94px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-width: 0;
        }

        .side-card {
            background: var(--paper);
            border: 1px solid var(--divider);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            padding: 24px 20px;
        }

        .side-card-title {
            display: flex;
            align-items: center;
            gap: .5rem;
            margin: 0 0 12px;
            font-size: 1.12rem;
            font-weight: 800;
            color: var(--dark-green);
            letter-spacing: -.01em;
        }

        .side-card-title i {
            color: var(--primary);
        }

        .side-card p {
            color: var(--muted);
            font-size: .92rem;
            line-height: 1.65;
            margin: 0 0 16px;
        }

        .entry-address {
            background: var(--soft-green);
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 18px;
            word-break: break-all;
            color: var(--primary);
            font-weight: 600;
            font-size: .92rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .side-nav {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .side-nav li + li {
            border-top: 1px solid var(--divider);
        }

        .side-nav a {
            display: flex;
            align-items: center;
            gap: .6rem;
            padding: .7rem .2rem;
            font-size: .93rem;
            font-weight: 600;
            color: var(--text);
            border-radius: 6px;
            transition: color .2s ease, padding-left .2s ease;
        }

        .side-nav a i {
            color: var(--primary);
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .side-nav a:hover {
            color: var(--primary);
            padding-left: 8px;
            background: transparent;
        }

        .side-tip {
            display: flex;
            gap: 10px;
            margin-top: 16px;
            background: var(--bg);
            border-radius: 10px;
            padding: 12px 14px;
            font-size: .9rem;
            color: var(--muted);
        }

        .side-tip i {
            color: var(--accent);
            margin-top: 2px;
        }

        .related-band {
            margin-top: 44px;
            padding: 44px 0 12px;
            border-top: 1px solid var(--divider);
        }

        .section-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 26px;
        }

        .section-heading h2 {
            font-size: clamp(1.45rem, 2.4vw, 1.85rem);
            margin: 0;
            font-weight: 800;
            color: var(--dark-green);
            letter-spacing: -.01em;
        }

        .section-heading p {
            margin: 6px 0 0;
            color: var(--muted);
            font-size: .98rem;
            max-width: 620px;
        }

        .heading-link {
            font-weight: 700;
            font-size: .95rem;
            white-space: nowrap;
        }

        .heading-link i {
            margin-left: .3rem;
            transition: transform .2s ease;
        }

        .heading-link:hover i {
            transform: translateX(4px);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .related-item {
            display: grid;
            grid-template-columns: 132px minmax(0, 1fr);
            gap: 0;
            min-height: 132px;
            background: var(--paper);
            border: 1px solid var(--divider);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }

        .related-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: #a9cab8;
            color: var(--primary);
        }

        .related-thumb {
            background: var(--soft-green);
            overflow: hidden;
        }

        .related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-copy {
            padding: 12px 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 7px;
            min-width: 0;
        }

        .related-copy .related-eyebrow {
            font-size: .78rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: .04em;
        }

        .related-copy .related-title {
            font-size: .98rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-copy .related-meta {
            font-size: .8rem;
            color: var(--muted);
        }

        .related-item:hover .related-title {
            color: var(--primary);
        }

        .faq-section {
            padding: 44px 0 10px;
        }

        .faq-heading {
            margin-bottom: 22px;
        }

        .faq-heading h2 {
            font-size: clamp(1.45rem, 2.4vw, 1.85rem);
            color: var(--dark-green);
            margin: 0 0 8px;
            font-weight: 800;
        }

        .faq-heading p {
            color: var(--muted);
            max-width: 640px;
            margin: 0;
        }

        .faq-list {
            border-top: 1px solid var(--divider);
        }

        .faq-item {
            border-bottom: 1px solid var(--divider);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            list-style: none;
            cursor: pointer;
            padding: 21px 6px;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            transition: color .2s ease, padding-left .2s ease;
        }

        .faq-item summary:hover,
        .faq-item[open] summary {
            color: var(--primary);
            padding-left: 10px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary i {
            color: var(--accent);
            transition: transform .25s ease;
        }

        .faq-item[open] summary i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px 24px 10px;
            color: var(--muted);
            line-height: 1.9;
            max-width: 940px;
        }

        .faq-answer p {
            margin: 0 0 .5rem;
        }

        .save-cta {
            margin: 40px 0 4px;
            padding: 34px 0;
            background: var(--soft-green);
            border-radius: 20px;
        }

        .save-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .save-cta-copy h2 {
            font-size: 1.4rem;
            margin: 0 0 6px;
            color: var(--dark-green);
            font-weight: 800;
        }

        .save-cta-copy p {
            color: var(--muted);
            margin: 0;
        }

        .save-cta-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .save-cta .copy-current {
            background: var(--primary);
            border: 1px solid transparent;
            color: #fff;
        }

        .save-cta .copy-current:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .article-notfound-wrap {
            min-height: 56vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 120px;
        }

        .empty-panel {
            background: var(--paper);
            border: 1px solid var(--divider);
            border-radius: 18px;
            box-shadow: var(--shadow-sm);
            padding: 48px 40px;
            text-align: center;
            max-width: 560px;
            margin: 0 auto;
        }

        .empty-panel .empty-icon {
            width: 62px;
            height: 62px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--soft-green);
            color: var(--primary);
            border-radius: 50%;
            font-size: 1.5rem;
        }

        .empty-panel h2 {
            margin: 0 0 12px;
            font-size: 1.4rem;
            color: var(--dark-green);
            font-weight: 800;
        }

        .empty-panel p {
            color: var(--muted);
            margin: 0 0 24px;
        }

        .site-footer {
            margin-top: 64px;
            background: var(--dark-green);
            color: #c3d4cb;
            padding: 52px 0 26px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 36px;
        }

        .footer-brand {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .footer-brand .brand-main {
            color: #fff;
            font-size: 1.15rem;
        }

        .footer-brand .brand-sub {
            background: var(--primary);
        }

        .footer-about {
            color: #a9beb4;
            font-size: .9rem;
            line-height: 1.8;
            margin: 0;
            max-width: 340px;
        }

        .footer-title {
            color: #fff;
            font-size: .92rem;
            font-weight: 800;
            margin: 4px 0 16px;
            letter-spacing: .04em;
        }

        .site-footer ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .site-footer ul li {
            margin-bottom: 4px;
        }

        .site-footer ul a {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            color: #9fb8ad;
            font-size: .9rem;
            padding: 5px 0;
            border-radius: 4px;
            transition: color .2s ease, padding-left .2s ease;
        }

        .site-footer ul a i {
            color: var(--primary);
            font-size: .85em;
        }

        .site-footer ul a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-bottom {
            margin-top: 44px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .11);
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: .85rem;
            color: #86a399;
            line-height: 1.7;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom a {
            color: #aacfc0;
            border-bottom: 1px solid transparent;
        }

        .footer-bottom a:hover {
            color: #fff;
            border-bottom-color: rgba(255, 255, 255, .4);
        }

        @media (max-width: 1024px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .article-aside {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }
            .side-card {
                margin-bottom: 0;
            }
            .related-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 900px) {
            .header-dock {
                width: calc(100% - 24px);
                top: 8px;
                border-radius: 18px;
                padding: 8px 10px 8px 14px;
            }
            .dock-cta {
                display: none;
            }
            .nav-search-box input {
                display: none;
            }
            .nav-search-box {
                width: 42px;
                height: 42px;
                justify-content: center;
                border-radius: 50%;
                padding: 0;
            }
            .nav-search-box button {
                min-width: 38px;
                height: 38px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (max-width: 720px) {
            .dock-nav {
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                right: 0;
                display: none;
                flex-direction: column;
                gap: 6px;
                background: #fff;
                border: 1px solid var(--divider);
                border-radius: 18px;
                padding: 12px;
                box-shadow: var(--shadow-lg);
            }
            .dock-nav.open {
                display: flex;
            }
            .dock-nav a {
                display: block;
                width: 100%;
                padding: 13px 14px;
                min-height: 48px;
                text-align: left;
                border-radius: 10px;
            }
            .dock-nav a.active::after {
                display: none;
            }
            .dock-nav a.active {
                background: var(--soft-green);
            }
            .nav-toggle {
                display: inline-flex;
            }
            .dock-actions .dock-cta {
                display: none;
            }
            .dock-nav a,
            .nav-search-box,
            .nav-toggle {
                font-size: 1rem;
            }
            .article-meta {
                gap: 9px 14px;
            }
            .related-item {
                grid-template-columns: 108px minmax(0, 1fr);
            }
        }

        @media (max-width: 640px) {
            .container {
                width: calc(100% - 20px);
            }
            .post-banner {
                min-height: 130px;
            }
            .post-banner-inner {
                min-height: 130px;
            }
            .breadcrumb-outer {
                margin-top: 16px;
                margin-bottom: 16px;
            }
            .article-main {
                padding: 20px 18px;
                border-radius: 14px;
            }
            .article-meta {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .article-aside {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .related-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .related-item {
                grid-template-columns: 120px minmax(0, 1fr);
                min-height: 118px;
            }
            .section-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .heading-link {
                display: inline-flex;
                min-height: 44px;
                align-items: center;
            }
            .faq-answer {
                padding-left: 10px;
                padding-right: 8px;
            }
            .save-cta-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .footer-bottom {
                flex-direction: column;
            }
            .article-layout {
                gap: 16px;
            }
            .empty-panel {
                padding: 28px 22px;
            }
        }

        @media (max-width: 480px) {
            .post-banner {
                margin-top: 68px;
            }
            .breadcrumb {
                font-size: .84rem;
            }
            .breadcrumb .crumb-current {
                max-width: 180px;
            }
            .article-header h1 {
                font-size: 1.55rem;
                line-height: 1.5;
            }
            .article-meta {
                font-size: .84rem;
            }
            .article-return-row {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
            }
            .visible-desktop {
                display: none !important;
            }
        }

/* roulang page: category2 */
:root {
  --primary: #0F6B4A;
  --primary-deep: #0A5E3E;
  --deep: #0A2C20;
  --accent: #C84422;
  --accent-deep: #A8371C;
  --paper: #F6F6F1;
  --surface: #FFFFFF;
  --light-green: #E5F1EA;
  --text: #17211B;
  --muted: #64736B;
  --line: #DCE4DE;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 8px 22px rgba(10,44,32,.06);
  --shadow-md: 0 14px 34px rgba(10,44,32,.08);
  --shadow-hover: 0 22px 40px rgba(10,44,32,.12);
  --font-sans: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Source Han Sans SC",sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  padding-top: 94px;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--deep);
  line-height: 1.3;
  margin: 0 0 0.45rem;
  text-wrap: balance;
}

p { margin: 0 0 1.05rem; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1rem; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-deep); }

button, input, select, textarea { font-family: var(--font-sans); }
button { cursor: pointer; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 36px);
  padding-right: clamp(20px, 4vw, 36px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--primary);
  background: var(--light-green);
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: .8rem;
}

.content-section {
  padding: clamp(66px, 8vw, 110px) 0;
  scroll-margin-top: 80px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 720;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ===== 浮动 Dock 导航 ===== */
.header-dock {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 1240px;
  height: 66px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 10px 0 18px;
  background: rgba(255,255,255,.84);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(15,107,74,.18);
  border-radius: 24px;
  box-shadow: 0 8px 26px rgba(10,44,32,.08);
  transition: background .3s ease, box-shadow .3s ease;
}

.header-dock.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 28px rgba(10,44,32,.1);
}

.dock-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1.2;
}

.brand-main {
  font-size: 20px;
  font-weight: 750;
  color: var(--deep);
  letter-spacing: .01em;
}

.brand-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--light-green);
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
}

.dock-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.dock-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  color: var(--deep);
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.dock-nav a:hover {
  background: var(--light-green);
  color: var(--primary-deep);
  border-color: rgba(15,107,74,.16);
}

.dock-nav a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.dock-nav a.active:hover {
  background: var(--primary-deep);
  color: #fff;
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-search-box {
  display: flex;
  align-items: center;
  height: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding-left: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.nav-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,107,74,.12);
}

.nav-search-box input {
  width: 120px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  padding: 0;
}

.nav-search-box button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--primary);
  border-radius: 999px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}

.nav-search-box button:hover {
  background: var(--light-green);
}

.dock-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.dock-cta:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(200,68,34,.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  font-size: 17px;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, background .25s ease;
}

.nav-toggle:hover {
  border-color: var(--primary);
  background: var(--light-green);
}

/* ===== 分类页 Hero ===== */
.category-hero {
  position: relative;
  background-color: var(--deep);
  background-image:
    linear-gradient(100deg, rgba(10,44,32,.92) 0%, rgba(10,44,32,.78) 42%, rgba(10,44,32,.34) 100%),
    url('/assets/images/backpic/back-2.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 76px 0 82px;
  overflow: hidden;
}

.category-hero .container { position: relative; z-index: 2; }

.crumb-line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  margin-bottom: 28px;
}

.crumb-line a { color: rgba(255,255,255,.82); }
.crumb-line a:hover { color: #fff; }
.crumb-line i { font-size: 12px; opacity: .72; }
.crumb-line span { color: rgba(255,255,255,.96); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .34rem .95rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #f1f7f3;
  margin-bottom: 18px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 760;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 700px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.85;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: .65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(200,68,34,.22);
}

.btn-accent:hover {
  background: #a8341b;
  color: #fff;
  box-shadow: 0 14px 28px rgba(200,68,34,.28);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-deep);
  color: #fff;
}

.btn-outline-primary {
  background: #fff;
  color: var(--primary);
  border-color: rgba(15,107,74,.3);
}

.btn-outline-primary:hover {
  border-color: var(--primary);
  background: var(--light-green);
  color: var(--primary-deep);
}

/* ===== 栏目说明区 ===== */
.intro-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.intro-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro-note {
  background: var(--light-green);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  border: 1px solid rgba(15,107,74,.12);
}

.intro-note h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
}

.intro-note p {
  color: #243c30;
  margin-bottom: 0;
}

.intro-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intro-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.intro-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15,107,74,.28);
}

.intro-list .intro-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--light-green);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.intro-list h3 {
  font-size: 17px;
  font-weight: 720;
  margin: .15rem 0 .25rem;
}

.intro-list p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}

/* ===== 百科知识主题错位卡片 ===== */
.ency-mosaic-section {
  background: var(--paper);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.mosaic-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  grid-column: span 5;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.mosaic-card.feature {
  grid-column: span 7;
}

.mosaic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15,107,74,.35);
  box-shadow: var(--shadow-hover);
}

.mosaic-media {
  background: #E7EDE9;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.mosaic-card.feature .mosaic-media {
  aspect-ratio: 16 / 9;
}

.mosaic-card.portrait .mosaic-media {
  aspect-ratio: 3 / 2.8;
}

.mosaic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.mosaic-card:hover .mosaic-media img {
  transform: scale(1.035);
}

.mosaic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10,44,32,.24) 100%);
  pointer-events: none;
}

.mosaic-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 22px;
}

.mosaic-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-green);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: .3rem .85rem;
  margin-bottom: 14px;
}

.mosaic-body h3 {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 730;
  margin-bottom: 10px;
  color: var(--deep);
}

.mosaic-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.mosaic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  transition: gap .25s ease, color .25s ease;
}

.mosaic-link i {
  font-size: 12px;
  transition: transform .25s ease;
}

.mosaic-link:hover {
  color: var(--accent);
  gap: 12px;
}

.mosaic-link:hover i {
  transform: translateX(4px);
}

/* ===== 话题标签区 ===== */
.topic-strip {
  background: var(--deep);
  color: #fff;
  padding: 52px 0;
  scroll-margin-top: 90px;
}

.topic-strip-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.topic-strip h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 720;
  margin-bottom: 8px;
}

.topic-strip p {
  color: rgba(255,255,255,.72);
  margin: 0;
  font-size: 15px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: 14px;
  font-weight: 600;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.tag-pill i {
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.tag-pill:hover {
  background: rgba(15,107,74,.52);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

/* ===== 使用流程 ===== */
.flow-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.flow-item {
  padding: clamp(24px, 3vw, 38px);
  position: relative;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transition: background .25s ease;
}

.flow-item:first-child { border-left: 0; }

.flow-item:hover {
  background: var(--light-green);
}

.flow-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--accent);
  background: rgba(200,68,34,.1);
  border-radius: 999px;
  padding: .2rem .75rem;
  display: inline-block;
  margin-bottom: 16px;
}

.flow-item h3 {
  font-size: 19px;
  font-weight: 720;
  margin-bottom: 10px;
}

.flow-item p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--paper);
  scroll-margin-top: 80px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.faq-intro {
  background: var(--surface);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-intro h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 740;
  margin-bottom: 15px;
}

.faq-intro p {
  color: var(--muted);
  margin-bottom: 20px;
}

.faq-intro .faq-note {
  background: var(--light-green);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #2c4c3e;
  font-size: 14px;
}

.accordion-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 24px;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 20px 0;
  min-height: 44px;
  color: var(--deep);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-toggle:hover { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary);
  font-size: 13px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-item.is-active .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  padding: 0 0 22px;
}

/* ===== 快捷入口 CTA ===== */
.entry-cta-section {
  padding: 0 0 clamp(50px, 8vw, 90px);
  scroll-margin-top: 90px;
}

.entry-panel {
  position: relative;
  background-color: var(--deep);
  background-image:
    linear-gradient(115deg, rgba(10,44,32,.85) 0%, rgba(10,44,32,.76) 55%, rgba(15,107,74,.84) 100%),
    url('/assets/images/backpic/back-3.png');
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  color: #fff;
  padding: clamp(30px, 5vw, 60px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.entry-panel h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 750;
  margin-bottom: 12px;
}

.entry-panel p {
  color: rgba(255,255,255,.78);
  margin: 0;
  font-size: 15px;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.entry-actions .btn {
  background: var(--accent);
  color: #fff;
}

.entry-actions .btn-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
  color: #fff;
}

.entry-actions .btn-light:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ===== 页脚 ===== */
.site-footer {
  background: #07261A;
  color: rgba(255,255,255,.73);
  padding: 58px 0 30px;
  font-size: 14px;
}

.site-footer .container {
  max-width: 1300px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-main {
  color: #fff;
  font-size: 20px;
}

.footer-brand .brand-sub {
  background: rgba(15,107,74,.4);
  border: 1px solid rgba(255,255,255,.22);
  color: #E7F2EB;
}

.footer-about {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s ease, padding-left .25s ease;
}

.footer-col a i {
  color: rgba(255,255,255,.38);
  font-size: 13px;
  width: 15px;
  text-align: center;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,.65);
}

.footer-bottom a:hover { color: #fff; }

.footer-bottom p { margin: 0; }

/* ===== 响应式断点 ===== */
@media screen and (max-width: 1023px) {
  body {
    padding-top: 88px;
  }

  .header-dock {
    height: 64px;
    padding-left: 14px;
  }

  .dock-brand .brand-main { font-size: 18px; }
  .dock-brand .brand-sub { font-size: 11px; }

  .dock-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    display: none;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 18px 34px rgba(10,44,32,.14);
  }

  .dock-nav.is-open {
    display: flex;
  }

  .dock-nav a {
    min-height: 48px;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  .nav-search-box { display: none; }
  .nav-toggle { display: inline-flex; }
  .dock-cta { padding: 0 14px; }
  .dock-cta i { margin-right: 0; }
  .dock-cta span.cta-text { display: none; }

  .intro-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .entry-panel {
    grid-template-columns: 1fr;
  }

  .entry-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media screen and (max-width: 800px) {
  .mosaic-card,
  .mosaic-card.feature {
    grid-column: span 6;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .flow-item:first-child { border-top: 0; }
}

@media screen and (max-width: 640px) {
  body {
    font-size: 15px;
    padding-top: 84px;
  }

  .header-dock {
    width: calc(100% - 16px);
    top: 10px;
    height: 62px;
    padding: 0 8px 0 12px;
  }

  .dock-brand {
    gap: 6px;
  }

  .brand-main {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 11px;
    padding: 3px 6px;
  }

  .dock-actions {
    gap: 6px;
  }

  .dock-cta {
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .category-hero {
    padding: 58px 0 64px;
  }

  .hero-title {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    min-height: 46px;
    font-size: 14px;
  }

  .intro-list {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 60px 0;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mosaic-card,
  .mosaic-card.feature,
  .mosaic-card.portrait {
    grid-column: auto;
  }

  .mosaic-card .mosaic-media,
  .mosaic-card.feature .mosaic-media,
  .mosaic-card.portrait .mosaic-media {
    aspect-ratio: 16 / 10;
  }

  .mosaic-body {
    padding: 18px 17px;
  }

  .topic-strip-row {
    grid-template-columns: 1fr;
  }

  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .accordion-group {
    padding: 0 16px;
  }

  .faq-toggle {
    font-size: 15px;
    padding: 18px 0;
  }

  .entry-panel {
    border-radius: 18px;
    padding: 26px 20px;
  }

  .entry-actions {
    flex-direction: column;
    width: 100%;
  }

  .entry-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* roulang page: category3 */
:root {
            --primary: #0F6B4A;
            --deep: #0A2C20;
            --accent: #C84422;
            --bg: #F6F6F1;
            --white: #FFFFFF;
            --light: #E5F1EA;
            --text: #17211B;
            --muted: #64736B;
            --line: #DCE4DE;
            --radius-sm: 4px;
            --radius-btn: 6px;
            --radius-card: 10px;
            --radius-dock: 22px;
            --shadow-sm: 0 8px 22px rgba(10, 44, 32, .06);
            --shadow-md: 0 14px 34px rgba(10, 44, 32, .08);
            --shadow-lg: 0 22px 44px rgba(10, 44, 32, .12);
            --font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: var(--font-family);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        body.nav-locked {
            overflow: hidden;
        }

        ::selection {
            background: var(--primary);
            color: #fff;
        }

        h1,
        h2,
        h3,
        h4,
        p,
        figure,
        ul,
        ol,
        dl,
        dd {
            margin: 0;
            padding: 0;
        }

        ul,
        ol {
            list-style: none;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
        }

        a:hover {
            color: var(--accent);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        img {
            display: block;
            max-width: 100%;
            background: var(--light);
        }

        button {
            font-family: inherit;
            cursor: pointer;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container,
        .grid-container {
            max-width: 1320px;
            width: 100%;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--primary);
        }

        .text-link i {
            transition: transform .22s ease;
        }

        .text-link:hover i {
            transform: translateX(4px);
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--light);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
            padding: 7px 11px;
            border-radius: var(--radius-sm);
        }

        .section-kicker {
            display: block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .32em;
            color: var(--primary);
            padding-left: 14px;
            border-left: 3px solid var(--accent);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(28px, 4.1vw, 42px);
            font-weight: 760;
            line-height: 1.24;
            letter-spacing: .01em;
            color: var(--deep);
        }

        .section-lead {
            max-width: 760px;
            color: var(--muted);
            font-size: 16px;
            margin-top: 14px;
        }

        .section-head {
            margin-bottom: 32px;
        }

        .section-pad {
            padding: 74px 0;
        }

        .inline-anchor {
            scroll-margin-top: 116px;
        }

        .header-dock {
            position: sticky;
            top: 14px;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: calc(100% - 32px);
            max-width: 1240px;
            margin: 18px auto 0;
            min-height: 66px;
            background: rgba(255, 255, 255, .82);
            -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(15, 107, 74, .2);
            border-radius: var(--radius-dock);
            box-shadow: 0 14px 34px rgba(10, 44, 32, .07);
            padding: 6px 12px 6px 18px;
            gap: 14px;
            transition: background .3s ease, box-shadow .3s ease;
        }

        .header-dock.nav-scrolled {
            background: rgba(255, 255, 255, .94);
            box-shadow: 0 20px 38px rgba(10, 44, 32, .1);
        }

        .dock-brand {
            display: flex;
            align-items: baseline;
            flex-shrink: 0;
            gap: 8px;
            border-radius: 8px;
        }

        .brand-main {
            font-size: 22px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: .02em;
            color: var(--deep);
        }

        .brand-sub {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: var(--deep);
            background: var(--light);
            border: 1px solid rgba(15, 107, 74, .22);
            padding: 3px 9px;
            border-radius: 999px;
            line-height: 1.4;
            letter-spacing: .05em;
        }

        .dock-brand:hover .brand-main {
            color: var(--primary);
        }

        .dock-brand:hover .brand-sub {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .dock-nav {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
            gap: 4px;
        }

        .dock-nav a {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 16px;
            color: #33423a;
            font-weight: 600;
            font-size: 15px;
            border-radius: 14px;
            white-space: nowrap;
        }

        .dock-nav a:hover {
            color: var(--primary);
            background: rgba(15, 107, 74, .08);
        }

        .dock-nav a.active {
            background: var(--light);
            color: var(--primary);
            font-weight: 700;
        }

        .dock-nav a.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 5px;
            width: 5px;
            height: 5px;
            margin-left: -3px;
            background: var(--primary);
            border-radius: 4px;
        }

        .dock-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 9px;
            flex-shrink: 0;
        }

        .nav-search-box {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0;
            width: 220px;
            height: 42px;
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, .88);
            border-radius: 999px;
            overflow: hidden;
            transition: border-color .2s ease, box-shadow .2s ease, width .25s ease;
        }

        .nav-search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15, 107, 74, .1);
        }

        .nav-search-box input {
            flex: 1;
            min-width: 0;
            border: 0;
            outline: 0;
            background: transparent;
            padding: 0 8px 0 15px;
            font-size: 14px;
            color: var(--text);
        }

        .nav-search-box button {
            flex: 0 0 auto;
            width: 44px;
            height: 44px;
            border: 0;
            background: var(--primary);
            color: #fff;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s ease;
        }

        .nav-search-box button:hover {
            background: var(--deep);
        }

        .dock-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            gap: 7px;
            padding: 0 17px;
            border: 0;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            box-shadow: 0 8px 16px rgba(15, 107, 74, .22);
            white-space: nowrap;
        }

        .dock-cta:hover {
            background: var(--deep);
            color: #fff;
            transform: translateY(-2px);
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            background: var(--light);
            color: var(--deep);
            font-size: 18px;
            border-radius: 14px;
        }

        .cat-hero {
            position: relative;
            max-width: 1320px;
            width: calc(100% - 32px);
            margin: 26px auto 70px;
            border-radius: 16px;
            overflow: hidden;
            min-height: 400px;
            background-image: linear-gradient(105deg, rgba(6, 38, 24, .95) 5%, rgba(15, 107, 74, .84) 52%, rgba(27, 65, 45, .68)), url('/assets/images/backpic/back-2.webp');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            color: #fff;
            display: flex;
            align-items: center;
        }

        .cat-hero-inner {
            padding: 56px 54px;
            width: 100%;
        }

        .breadcrumb-main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, .7);
            margin-bottom: 24px;
        }

        .breadcrumb-main a {
            color: rgba(255, 255, 255, .88);
            display: inline-flex;
            gap: 5px;
            align-items: center;
        }

        .breadcrumb-main i {
            font-size: 11px;
            color: rgba(255, 255, 255, .5);
        }

        .breadcrumb-main .current {
            color: #fff;
            font-weight: 600;
        }

        .hero-head {
            font-size: clamp(38px, 6vw, 62px);
            line-height: 1.12;
            font-weight: 800;
            color: #fff;
            letter-spacing: .03em;
        }

        .hero-heroline {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }

        .hero-heroline .small-mark {
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .18);
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 13px;
            letter-spacing: .08em;
            font-weight: 600;
        }

        .hero-sub {
            max-width: 690px;
            font-size: 16px;
            line-height: 1.9;
            color: rgba(255, 255, 255, .84);
            margin-top: 18px;
        }

        .hero-feature-row {
            position: relative;
            z-index: 2;
        }

        .quick-card {
            background: #fff;
            border-radius: 18px;
            padding: 22px 22px 20px;
            color: var(--text);
            box-shadow: 0 24px 48px rgba(10, 44, 32, .18);
            border: 1px solid rgba(255, 255, 255, .4);
            margin: 28px 0 4px;
        }

        .quick-head {
            border-bottom: 1px solid var(--line);
            padding-bottom: 14px;
            margin-bottom: 14px;
        }

        .quick-head span {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .quick-title {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 15px;
            font-weight: 800;
            color: var(--deep);
        }

        .quick-title i {
            color: var(--primary);
            font-size: 17px;
            margin-top: 18px;
            margin-left: auto;
        }

        .quick-url {
            display: block;
            margin-top: 5px;
            padding: 9px 11px;
            background: var(--light);
            color: var(--primary);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .quick-card-list {
            padding-top: 4px;
        }

        .quick-card-list li+li {
            margin-top: 6px;
        }

        .quick-card-list a {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 10px;
            border-radius: 10px;
            color: var(--text);
            font-weight: 600;
        }

        .quick-card-list a:hover {
            background: var(--bg);
            color: var(--primary);
            padding-left: 15px;
        }

        .quick-card-list i {
            width: 21px;
            color: var(--primary);
            font-size: 15px;
            text-align: center;
        }

        .quick-buttons {
            display: flex;
            gap: 8px;
            border-top: 1px solid var(--line);
            margin-top: 12px;
            padding-top: 14px;
        }

        .quick-buttons .btn {
            padding: 0 10px;
            font-size: 13px;
            min-height: 42px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 20px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 700;
            line-height: 1;
            background: var(--primary);
            color: #fff;
            border: 1px solid transparent;
            transition: all .22s ease;
            box-shadow: 0 8px 16px rgba(15, 107, 74, .14);
            cursor: pointer;
            gap: 8px;
        }

        .btn:hover {
            background: var(--deep);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn-accent {
            background: var(--accent);
            box-shadow: 0 10px 20px rgba(200, 68, 34, .18);
        }

        .btn-accent:hover {
            background: #A62D18;
        }

        .btn-outline {
            background: transparent;
            border-color: rgba(15, 107, 74, .4);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: rgba(15, 107, 74, .08);
            color: var(--deep);
            border-color: var(--primary);
        }

        .btn-white-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, .65);
            color: #fff;
            box-shadow: none;
        }

        .btn-white-outline:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
        }

        .cat-hero .btn-outline {
            color: rgba(255, 255, 255, .9);
            border-color: rgba(255, 255, 255, .45);
        }

        .cat-hero .btn-outline:hover {
            color: #fff;
            border-color: #fff;
            background: rgba(255, 255, 255, .12);
        }

        .directory-row {
            border-bottom: 1px solid var(--line);
        }

        .directory-row a {
            display: grid;
            grid-template-columns: 80px auto 32px;
            gap: 22px;
            align-items: center;
            padding: 27px 6px;
            border-radius: 10px;
            color: var(--text);
        }

        .directory-row a:hover {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            padding-left: 16px;
            color: var(--text);
        }

        .dir-no {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: .06em;
            color: rgba(15, 107, 74, .28);
            font-variant-numeric: tabular-nums;
            line-height: 1;
        }

        .directory-row a:hover .dir-no {
            color: var(--primary);
        }

        .dir-main {
            min-width: 0;
        }

        .dir-main h3 {
            font-size: 21px;
            font-weight: 760;
            color: var(--deep);
        }

        .dir-main p {
            font-size: 14px;
            color: var(--muted);
            margin-top: 4px;
        }

        .direction-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .direction-tags span {
            background: var(--light);
            color: var(--primary);
            font-size: 12px;
            padding: 4px 9px;
            border-radius: 99px;
            line-height: 1.5;
        }

        .dir-arrow {
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
        }

        .info-section {
            padding: 40px 0 90px;
        }

        .lead-story {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-bottom: 18px;
            display: grid;
            grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
            transition: box-shadow .25s ease, transform .25s ease;
        }

        .lead-story:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .lead-media {
            position: relative;
            min-height: 300px;
            overflow: hidden;
        }

        .lead-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .lead-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 44, 32, .18), transparent 58%);
        }

        .lead-story-badge {
            position: absolute;
            left: 20px;
            bottom: 18px;
            z-index: 2;
            background: rgba(255, 255, 255, .95);
            color: var(--primary);
            border-radius: 99px;
            padding: 6px 12px;
            font-size: 13px;
            font-weight: 700;
        }

        .lead-body {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 34px 34px 30px;
        }

        .lead-body .tag {
            margin-bottom: 13px;
        }

        .lead-body h3 {
            font-size: clamp(23px, 3vw, 32px);
            line-height: 1.35;
            font-weight: 780;
            color: var(--deep);
            margin-bottom: 14px;
        }

        .lead-body p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.86;
            margin-bottom: 20px;
        }

        .row-list {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 0 20px;
            box-shadow: var(--shadow-sm);
        }

        .row-item {
            display: grid;
            grid-template-columns: 172px 1fr 34px;
            gap: 20px;
            align-items: center;
            padding: 18px 8px;
            border-bottom: 1px solid var(--line);
            transition: padding .22s ease, box-shadow .22s ease;
        }

        .row-item:last-child {
            border-bottom: 0;
        }

        .row-item:hover {
            padding-left: 16px;
            padding-right: 0;
            box-shadow: 0 10px 24px rgba(10, 44, 32, .06);
            border-radius: 12px;
        }

        .row-thumb {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 104px;
            background: var(--light);
        }

        .row-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .row-meta {
            display: flex;
            align-items: center;
            gap: 9px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .row-meta .cat {
            background: var(--light);
            color: var(--primary);
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
        }

        .row-title {
            font-size: 18px;
            line-height: 1.45;
            font-weight: 750;
            color: var(--deep);
        }

        .row-summary {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-top: 7px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .row-arrow {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            color: var(--primary);
            font-size: 12px;
        }

        .row-item:hover .row-arrow {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateX(2px);
        }

        .pagination-line {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: flex-end;
            padding-top: 18px;
        }

        .pagination-line a {
            min-width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            color: var(--text);
            font-size: 14px;
            font-weight: 700;
        }

        .pagination-line a.current {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .pagination-line a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .guide-wrap {
            background: var(--white);
            border-radius: 26px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            padding: 48px 40px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 30px;
        }

        .step-line {
            position: relative;
            padding-left: 18px;
        }

        .step-line::before {
            content: "";
            position: absolute;
            top: 58px;
            bottom: -12px;
            left: 11px;
            width: 1px;
            background: var(--line);
        }

        .step-line .step-index {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            border: 1px solid rgba(15, 107, 74, .2);
            margin-bottom: 12px;
        }

        .step-line h3 {
            font-size: 19px;
            font-weight: 760;
            margin-bottom: 8px;
        }

        .step-line p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.8;
        }

        .showcase-cards {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 22px;
        }

        .showcase-card {
            grid-column: span 3;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
            padding: 0;
            transition: all .24s ease;
        }

        .showcase-card.card-wide {
            grid-column: span 4;
        }

        .showcase-card.card-narrow {
            grid-column: span 2;
        }

        .showcase-card.card-narrow .card-media {
            aspect-ratio: 1 / 1;
        }

        .showcase-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(15, 107, 74, .34);
        }

        .card-media {
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--light);
        }

        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease;
        }

        .showcase-card:hover .card-media img {
            transform: scale(1.04);
        }

        .card-body {
            padding: 22px;
        }

        .card-body h3 {
            font-size: 19px;
            line-height: 1.5;
            font-weight: 760;
            margin: 8px 0;
        }

        .card-body p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75;
        }

        .read-more {
            display: inline-flex;
            margin-top: 15px;
            gap: 6px;
            font-weight: 700;
        }

        .read-more i {
            transition: transform .2s ease;
        }

        .read-more:hover i {
            transform: translateX(4px);
        }

        .cta-block {
            position: relative;
            background: linear-gradient(118deg, #0A2C20 8%, #0F6B4A 70%, #1C7A53);
            color: #fff;
            border-radius: 24px;
            overflow: hidden;
            padding: 54px;
            max-width: 1320px;
            width: calc(100% - 32px);
            margin: 20px auto 80px;
        }

        .cta-block::after {
            content: "";
            position: absolute;
            right: -70px;
            bottom: -80px;
            width: 330px;
            height: 330px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .07);
        }

        .cta-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .cta-copy {
            max-width: 620px;
        }

        .cta-copy span {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(255, 255, 255, .14);
            border-radius: 99px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .cta-copy h2 {
            font-size: clamp(26px, 3.6vw, 38px);
            line-height: 1.3;
            font-weight: 800;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, .8);
            max-width: 590px;
            margin-top: 14px;
        }

        .cta-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            z-index: 1;
        }

        .faq-wrap {
            padding: 34px 0 84px;
        }

        .faq-col {
            max-width: 940px;
        }

        .faq-list {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 4px 28px;
            box-shadow: var(--shadow-sm);
        }

        .faq-item {
            border-bottom: 1px solid var(--line);
            padding: 4px 0;
        }

        .faq-item:last-child {
            border-bottom: 0;
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: transparent;
            border: 0;
            color: var(--text);
            text-align: left;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.6;
            padding: 18px 8px;
            gap: 16px;
        }

        .faq-q:hover {
            color: var(--primary);
        }

        .faq-q i {
            color: var(--primary);
            font-size: 18px;
            transition: transform .24s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-q i {
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .28s ease;
            padding: 0 8px 0 18px;
            color: var(--muted);
            line-height: 1.85;
            font-size: 15px;
            border-left: 2px solid var(--light);
            margin-left: 8px;
        }

        .faq-a p {
            padding: 0 0 18px;
        }

        .site-footer {
            background: var(--deep);
            color: rgba(255, 255, 255, .68);
            font-size: 14px;
        }

        .site-footer .container {
            max-width: 1320px;
            padding: 60px 24px 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr .55fr .7fr .7fr;
            gap: 40px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 15px;
        }

        .footer-brand .brand-main {
            font-size: 22px;
            color: #fff;
        }

        .footer-brand .brand-sub {
            border-color: rgba(255, 255, 255, .28);
            color: #fff;
            background: rgba(255, 255, 255, .08);
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: .03em;
        }

        .footer-about {
            line-height: 1.8;
            max-width: 380px;
        }

        .footer-grid ul li+li {
            margin-top: 7px;
        }

        .footer-grid a {
            color: rgba(255, 255, 255, .65);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 3px 0;
        }

        .footer-grid a:hover {
            color: #fff;
        }

        .footer-grid a i {
            width: 18px;
            color: rgba(255, 255, 255, .42);
        }

        .footer-grid a:hover i {
            color: var(--light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .15);
            margin-top: 48px;
            padding-top: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, .5);
            font-size: 13px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, .62);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        .toast-note {
            position: fixed;
            left: 50%;
            bottom: 28px;
            transform: translateX(-50%) translateY(20px);
            background: var(--deep);
            color: #fff;
            font-size: 14px;
            padding: 12px 20px;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            pointer-events: none;
            transition: opacity .25s ease, transform .25s ease;
            z-index: 300;
        }

        .toast-note.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        @media (max-width: 1100px) {
            .dock-nav a {
                padding: 0 13px;
            }

            .nav-search-box {
                width: 180px;
            }

            .dock-cta span {
                display: none;
            }

            .quick-card {
                padding: 16px;
            }
        }

        @media (max-width: 1023px) {
            .header-dock {
                flex-wrap: wrap;
                min-height: 64px;
            }

            .dock-nav {
                display: none;
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                width: 100%;
                flex-flow: column nowrap;
                align-items: stretch;
                padding: 12px;
                background: rgba(255, 255, 255, .97);
                border: 1px solid var(--line);
                border-radius: 20px;
                box-shadow: var(--shadow-lg);
                overflow: hidden;
            }

            .dock-nav.open {
                display: flex;
                animation: menuDrop .24s ease;
            }

            .dock-nav a {
                justify-content: flex-start;
                min-height: 48px;
                padding: 0 16px;
                border-radius: 10px;
            }

            .dock-nav a.active::after {
                left: 14px;
                bottom: auto;
                top: 50%;
                width: 5px;
                height: 5px;
                margin-top: -3px;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .nav-search-box {
                width: 42px;
                border: 0;
                background: var(--light);
                justify-content: center;
            }

            .nav-search-box input {
                position: absolute;
                right: 48px;
                top: 0;
                width: 0;
                opacity: 0;
                border: 1px solid var(--line);
                height: 42px;
                border-radius: 999px;
                background: #fff;
                transition: width .24s ease;
            }

            .nav-search-box.open input {
                width: 180px;
                opacity: 1;
                border-color: var(--line);
            }

            .nav-search-box button {
                width: 42px;
                border-radius: 50%;
                background: var(--primary);
            }

            .lead-story {
                grid-template-columns: 1fr;
            }

            .lead-media {
                min-height: 210px;
            }

            .lead-media img {
                position: absolute;
                height: 100%;
            }

            .row-item {
                grid-template-columns: 130px 1fr 26px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .step-line::before {
                display: none;
            }

            .quick-card {
                max-width: 540px;
            }

            .footer-grid {
                grid-template-columns: 1fr .55fr .55fr;
            }

            .footer-grid>div:last-child {
                grid-column: 3;
            }
        }

        @media (max-width: 820px) {
            .cat-hero {
                min-height: auto;
            }

            .cat-hero-inner {
                padding: 36px 26px;
            }

            .showcase-cards {
                grid-template-columns: 1fr;
            }

            .showcase-card,
            .showcase-card.card-wide,
            .showcase-card.card-narrow {
                grid-column: span 1;
            }

            .showcase-card.card-narrow .card-media {
                aspect-ratio: 16 / 10;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-grid>div:last-child {
                grid-column: 1;
            }

            .footer-grid ul li {
                display: inline-block;
                margin-right: 14px;
            }
        }

        @media (max-width: 640px) {
            .header-dock {
                width: calc(100% - 20px);
                margin-top: 8px;
                padding-left: 8px;
                padding-right: 6px;
                min-height: 60px;
            }

            .brand-main {
                font-size: 19px;
            }

            .brand-sub {
                font-size: 11px;
                padding: 2px 6px;
            }

            .dock-cta {
                width: 44px;
                padding: 0;
                font-size: 15px;
            }

            .dock-cta i {
                margin: 0;
            }

            .nav-search-box {
                display: none;
            }

            .nav-search-box.show-mobile-search {
                display: flex;
            }

            .container,
            .grid-container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .cat-hero {
                width: calc(100% - 20px);
                margin-top: 12px;
                border-radius: 14px;
            }

            .cat-hero-inner {
                padding: 28px 20px 32px;
            }

            .hero-head {
                font-size: 36px;
            }

            .hero-sub {
                font-size: 15px;
            }

            .quick-card {
                margin-top: 24px;
            }

            .section-pad {
                padding: 54px 0;
            }

            .directory-row a {
                grid-template-columns: 52px auto 26px;
                gap: 8px;
                padding: 20px 2px;
            }

            .dir-no {
                font-size: 22px;
            }

            .dir-main h3 {
                font-size: 18px;
            }

            .dir-main p {
                font-size: 13px;
            }

            .lead-story {
                display: block;
            }

            .lead-media {
                min-height: 185px;
            }

            .lead-body {
                padding: 24px 20px;
            }

            .lead-body h3 {
                font-size: 24px;
            }

            .row-list {
                padding: 0 14px;
            }

            .row-item {
                grid-template-columns: 1fr;
                position: relative;
                padding: 18px 4px;
            }

            .row-item:hover {
                padding-left: 8px;
                padding-right: 4px;
            }

            .row-thumb {
                height: 148px;
                width: 100%;
            }

            .row-arrow {
                position: absolute;
                right: 0;
                top: 24px;
                width: 30px;
                height: 30px;
            }

            .row-meta {
                padding-right: 30px;
            }

            .pagination-line {
                justify-content: center;
            }

            .cta-block {
                width: calc(100% - 24px);
                padding: 30px 20px;
                margin: 40px auto;
            }

            .cta-btns {
                width: 100%;
            }

            .cta-btns .btn {
                flex: 1 1 auto;
                min-height: 50px;
            }

            .faq-list {
                padding: 0 16px;
            }

            .faq-q {
                padding: 15px 4px;
                font-size: 15px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @keyframes menuDrop {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
