/* roulang page: index */
:root {
            --color-pine: #0C7B50;
            --pine-dark: #075B3A;
            --forest: #062E1F;
            --forest-light: #0A3E2A;
            --accent: #F97316;
            --amber: #F59E0B;
            --sand: #F7F5F0;
            --ink: #10241C;
            --ink-weak: #5C6B63;
            --line: #E7E1D6;
            --card-radius: 20px;
            --btn-radius: 14px;
            --huge-radius: 32px;
            --card-shadow: 0 8px 24px rgba(6, 34, 24, 0.06);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
            background-color: #F7F5F0;
            color: var(--ink);
            font-feature-settings: "tnum";
            -webkit-font-smoothing: antialiased;
            margin: 0;
        }
        * {
            box-sizing: border-box;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        button {
            cursor: pointer;
        }
        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (max-width: 640px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        .nav-list a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            color: var(--ink);
        }
        .nav-list a:hover {
            color: var(--color-pine);
            border-bottom-color: var(--color-pine);
        }
        .nav-list a.active {
            color: var(--color-pine);
            border-bottom-color: var(--color-pine);
            font-weight: 700;
        }
        .btn-primary {
            background-color: var(--color-pine);
            color: #fff;
            font-weight: 600;
            height: 44px;
            padding-left: 22px;
            padding-right: 22px;
            border-radius: var(--btn-radius);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
            border: none;
            font-size: 15px;
        }
        .btn-primary:hover {
            background-color: var(--pine-dark);
        }
        .btn-primary:focus-visible {
            outline: 2px solid var(--color-pine);
            outline-offset: 3px;
        }
        .btn-outline {
            background-color: transparent;
            color: var(--color-pine);
            border: 1px solid var(--color-pine);
            height: 44px;
            padding-left: 22px;
            padding-right: 22px;
            border-radius: var(--btn-radius);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.2s;
            font-size: 15px;
        }
        .btn-outline:hover {
            background-color: #EAF3EE;
        }
        .btn-accent {
            background: linear-gradient(135deg, #F97316, #F59E0B);
            color: #fff;
            height: 44px;
            padding-left: 22px;
            padding-right: 22px;
            border-radius: var(--btn-radius);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-accent:hover {
            opacity: 0.88;
        }
        .hero-subtitle {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
        }
        @media (max-width: 640px) {
            .section-title {
                font-size: 28px;
            }
        }
        .card-hover {
            transition: all 0.2s ease;
            box-shadow: var(--card-shadow);
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(6, 34, 24, 0.12);
        }
        .img-zoom-container {
            overflow: hidden;
        }
        .img-zoom-container img {
            transition: transform 0.2s ease;
        }
        .card-hover:hover .img-zoom-container img {
            transform: scale(1.05);
        }
        .faq-row {
            transition: border 0.2s, box-shadow 0.2s;
        }
        .faq-row:hover {
            border-left: 4px solid var(--color-pine);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 800px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            transition: color 0.2s;
            display: inline-block;
            padding: 4px 0;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .badge-live {
            background-color: var(--accent);
            color: white;
        }
        .badge-wait {
            background-color: var(--amber);
            color: white;
        }
        .badge-order {
            background-color: #0C7B50;
            color: white;
        }
        .t-mono {
            font-feature-settings: "tnum";
        }
        .mobile-nav-panel {
            display: none;
        }
        @media (max-width: 1023px) {
            .nav-list {
                display: none !important;
            }
            .mobile-nav-bar {
                display: flex !important;
            }
            .top-search {
                display: none !important;
            }
            .top-cta {
                display: inline-flex !important;
            }
        }
        @media (min-width: 1024px) {
            .mobile-nav-bar {
                display: none !important;
            }
            .top-cta-mobile {
                display: none !important;
            }
        }
        @media (max-width: 640px) {
            .hide-extra-sm {
                display: none;
            }
        }
        .dropdown-enter {
            display: block;
            width: 100%;
            background-color: #0C7B50;
            color: white;
            text-align: center;
            padding: 14px;
            border-radius: 14px;
            font-weight: 600;
        }
        .search-box-input {
            height: 48px;
            border-radius: 14px;
            border: 1px solid var(--line);
            padding: 0 16px;
            font-size: 15px;
            background-color: #fff;
        }
        .search-box-input:focus {
            outline: none;
            border-color: var(--color-pine);
            box-shadow: 0 0 0 3px rgba(12, 123, 80, 0.15);
        }
        .field-invalid {
            border-color: #dc2626 !important;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #062E1F 0%, #0C7B50 68%, #0EB36E 100%);
        }
        .small-card-gradient {
            background: linear-gradient(140deg, #0A3E2A 0%, #15915E 100%);
        }
        .empty-state {
            border: 1px dashed #D9D2C5;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            color: #5C6B63;
            background-color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
        }
        .match-table {
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
            font-size: 15px;
        }
        .match-table th {
            background: #f0ede5;
            padding: 12px;
            text-align: left;
        }
        .scroll-hidden::-webkit-scrollbar {
            height: 6px;
        }
        .scroll-hidden::-webkit-scrollbar-thumb {
            background: #d6d0c2;
            border-radius: 99px;
        }

/* roulang page: article */
:root {
  --pine: #0C7B50;
  --pine-deep: #075B3A;
  --forest: #062E1F;
  --orange-sport: #F97316;
  --amber-sport: #F59E0B;
  --sand: #F7F5F0;
  --ink: #10241C;
  --muted: #5C6B63;
  --line: #E7E1D6;
  --white: #FFFFFF;
  --card-radius: 20px;
  --button-radius: 14px;
  --cta-radius: 32px;
  --shadow-card: 0 8px 24px rgba(6, 34, 24, 0.06);
  --shadow-hover: 0 18px 40px rgba(6, 34, 24, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
  font-feature-settings: "tnum";
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font-family: inherit;
  border: none;
}

input:focus {
  outline: none;
}

.container-custom {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-topbar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-topbar .container-custom {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-topbar a {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.site-topbar a:hover {
  color: var(--amber-sport);
}

.nav-list a {
  position: relative;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  transition: color .2s;
}

.nav-list a.active,
.nav-list a:hover {
  color: var(--pine);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--pine);
  transition: right .2s ease;
}

.nav-list a.active::after,
.nav-list a:hover::after {
  right: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: var(--pine);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--button-radius);
  gap: 8px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--pine-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn-primary:focus-visible,
.search-box-input:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
}

.search-box-input {
  height: 44px;
  border-radius: var(--button-radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 14px;
  transition: border .2s, box-shadow .2s;
}

.search-box-input:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 4px rgba(12, 123, 80, 0.12);
}

.mobile-panel {
  display: none;
}

.mobile-panel.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-panel,
  .mobile-panel.open {
    display: none !important;
  }
}

.mobile-nav-bar {
  display: none;
}

@media (max-width: 1023.98px) {
  .mobile-nav-bar {
    display: flex !important;
  }

  .nav-list {
    display: none !important;
  }

  .desktop-actions {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .container-custom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-topbar .container-custom {
    height: auto;
    min-height: 40px;
    flex-wrap: wrap;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-topbar .top-link {
    margin-left: auto;
  }
}

.article-page-main {
  min-height: 70vh;
}

.breadcrumb-wrap {
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-wrap a:hover {
  color: var(--pine);
}

.breadcrumb-wrap .sep {
  margin: 0 8px;
  color: #B9B2A7;
}

.article-category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(12, 123, 80, 0.1);
  color: var(--pine);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.article-sidebar-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.sidebar-sticky {
  position: sticky;
  top: 130px;
}

.widget-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.widget-heading i {
  color: var(--pine);
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li {
  margin: 0 0 6px;
}

.toc-list a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all .2s;
}

.toc-list a:hover,
.toc-list a.is-active {
  color: var(--pine);
  background: rgba(12, 123, 80, 0.06);
  border-left-color: var(--pine);
}

.toc-list .toc-h3 {
  padding-left: 26px;
}

.related-thumb-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  transition: border .2s, box-shadow .2s, transform .2s;
}

.related-thumb-card:hover {
  border-color: rgba(12, 123, 80, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.related-thumb-card img {
  width: 90px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.article-body {
  font-size: 17px;
  line-height: 2;
  color: var(--ink);
}

.article-body p {
  margin: 1.5em 0;
}

.article-body h2 {
  font-size: 27px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--ink);
  margin: 2.2em 0 0.9em;
  padding-left: 16px;
  border-left: 5px solid var(--pine);
}

.article-body h3 {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
  margin: 1.9em 0 0.75em;
}

.article-body a {
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body a:hover {
  color: var(--orange-sport);
}

.article-body img {
  border-radius: 20px;
  border: 1px solid var(--line);
  margin: 2em 0;
  box-shadow: var(--shadow-card);
}

.article-body blockquote {
  background: rgba(12, 123, 80, 0.04);
  border-left: 4px solid var(--pine);
  border-radius: 10px;
  margin: 2em 0;
  padding: 16px 22px;
  color: var(--muted);
}

.article-body table {
  display: block;
  overflow-x: auto;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.article-body table th,
.article-body table td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.article-body ul,
.article-body ol {
  margin: 1.5em 0;
  padding-left: 1.6em;
}

.article-body li {
  margin: 0.55em 0;
}

.article-bottom-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--card-radius);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border .2s, box-shadow .2s, transform .2s;
}

.article-bottom-card:hover {
  border-color: rgba(12, 123, 80, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.cta-gradient {
  background: linear-gradient(135deg, #062E1F 0%, #0C7B50 68%, #0EB36E 100%);
  border-radius: var(--cta-radius);
  box-shadow: 0 24px 60px rgba(6, 46, 31, 0.2);
  color: #fff;
}

.cta-white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 30px;
  background: #fff;
  color: var(--pine);
  font-weight: 800;
  border-radius: var(--button-radius);
  gap: 8px;
  transition: all .2s;
}

.cta-white-btn:hover {
  background: var(--orange-sport);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 14px;
  transition: border .2s, box-shadow .2s;
}

.faq-item[open] {
  border-color: rgba(12, 123, 80, 0.4);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}

.faq-item summary i {
  color: var(--pine);
  transition: transform .25s;
  font-size: 15px;
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item .faq-content {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--amber-sport);
}

.t-mono {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.copy-grid-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: border .2s, box-shadow .2s, transform .2s;
}

.copy-grid-card:hover {
  border-color: rgba(12, 123, 80, 0.32);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.site-map-label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .02em;
}

/* roulang page: category1 */
:root {
            --pine: #0C7B50;
            --pine-deep: #075B3A;
            --forest: #062E1F;
            --sand: #F7F5F0;
            --ink: #10241C;
            --ink-deep: #0B1913;
            --ink-weak: #5C6B63;
            --line: #E7E1D6;
            --orange: #F97316;
            --amber: #F59E0B;
            --radius-btn: 14px;
            --radius-card: 20px;
            --radius-hero: 32px;
            --shadow-card: 0 8px 24px rgba(6, 34, 24, 0.06);
            --shadow-card-hover: 0 18px 40px rgba(6, 34, 24, 0.12);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
            background: var(--sand);
            color: var(--ink);
            line-height: 1.7;
            font-feature-settings: "tnum";
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        input {
            font-family: inherit;
        }
        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section-pad {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        @media (max-width: 767px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-pad {
                padding-top: 56px;
                padding-bottom: 56px;
            }
        }
        .nav-list a {
            position: relative;
            padding: 10px 16px;
            font-weight: 600;
            font-size: 15px;
            border-radius: 14px;
            color: var(--ink);
            white-space: nowrap;
        }
        .nav-list a:hover {
            color: var(--pine);
            background: rgba(12, 123, 80, .06);
        }
        .nav-list a.active {
            background: var(--pine);
            color: #fff;
        }
        .search-box-input {
            border: 1px solid var(--line);
            background: #fff;
            height: 48px;
            border-radius: 14px;
            color: var(--ink);
            font-size: 14px;
            outline: none;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .search-box-input::placeholder {
            color: #A0ACA5;
        }
        .search-box-input:focus {
            border-color: var(--pine);
            box-shadow: 0 0 0 4px rgba(12, 123, 80, .14);
        }
        .btn-primary {
            background: var(--pine);
            color: #fff;
            border: 1px solid transparent;
            border-radius: 14px;
            min-height: 48px;
            padding: 12px 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            white-space: nowrap;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }
        .btn-primary:hover {
            background: var(--pine-deep);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(6, 34, 24, .12);
        }
        .btn-primary:focus,
        .btn-outline:focus,
        .btn-white:focus {
            outline: 2px solid var(--pine);
            outline-offset: 3px;
        }
        .btn-outline {
            background: #fff;
            border: 1px solid rgba(12, 123, 80, .5);
            color: var(--pine-deep);
            border-radius: 14px;
            min-height: 48px;
            padding: 12px 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(12, 123, 80, .05);
            color: var(--pine);
        }
        .btn-white {
            background: #fff;
            border: 1px solid #fff;
            color: var(--pine);
            border-radius: 999px;
            min-height: 48px;
            padding: 12px 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 700;
            font-size: 15px;
        }
        .btn-white:hover {
            background: var(--amber);
            border-color: var(--amber);
            color: #fff;
        }
        .footer-links a {
            display: inline-block;
            padding: 5px 0;
            color: rgba(255, 255, 255, .66);
            font-size: 14px;
        }
        .footer-links a:hover {
            color: var(--orange);
            transform: translateX(4px);
        }
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--line);
            color: var(--ink-weak);
        }
        .tag-pine {
            background: rgba(12, 123, 80, .1);
            color: var(--pine);
            border-color: transparent;
        }
        .tag-amber {
            background: rgba(245, 158, 11, .18);
            color: #8A4B08;
            border-color: transparent;
        }
        .card-hover {
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(12, 123, 80, .28);
        }
        .img-zoom {
            overflow: hidden;
        }
        .img-zoom img {
            transition: transform .2s ease;
        }
        .card-hover:hover .img-zoom img {
            transform: scale(1.04);
        }
        .feature-line {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .feature-line i {
            margin-top: 6px;
            color: var(--pine);
        }
        .faq-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 20px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .faq-card.active {
            border-left: 4px solid var(--pine);
            box-shadow: var(--shadow-card);
        }
        .faq-question {
            background: transparent;
            border: 0;
            width: 100%;
            min-height: 68px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            text-align: left;
            color: var(--ink);
            font-weight: 700;
            font-size: 17px;
            border-radius: 20px;
        }
        .faq-question:hover {
            background: rgba(12, 123, 80, .04);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(12, 123, 80, .1);
            color: var(--pine);
            transition: transform .25s ease;
        }
        .faq-card.active .faq-icon {
            transform: rotate(180deg);
            background: var(--pine);
            color: #fff;
        }
        .faq-answer {
            padding: 0 24px 22px 24px;
            color: var(--ink-weak);
            font-size: 15px;
            line-height: 1.9;
            border-top: 1px dashed transparent;
        }
        .faq-card.active .faq-answer {
            border-color: var(--line);
            padding-top: 16px;
        }
        @media (max-width: 640px) {
            .section-pad {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .btn-primary,
            .btn-outline,
            .btn-white {
                min-height: 44px;
                padding: 10px 18px;
            }
        }

/* roulang page: category3 */
:root {
        --pine: #0C7B50;
        --pine-dark: #075B3A;
        --forest: #062E1F;
        --forest-light: #0A3E2A;
        --mint: #0EB36E;
        --sand: #F7F5F0;
        --ink: #10241C;
        --ink-weak: #5C6B63;
        --line-color: #E7E1D6;
        --orange-sport: #F97316;
        --amber-sport: #F59E0B;
        --radius-comp: 14px;
        --radius-card: 20px;
        --radius-hero: 32px;
        --shadow-card: 0 8px 24px rgba(6, 34, 24, 0.06);
        --shadow-hover: 0 18px 40px rgba(6, 34, 24, 0.12);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
        background: var(--sand);
        color: var(--ink);
        line-height: 1.6;
        font-feature-settings: "palt";
        -webkit-font-smoothing: antialiased;
    }

    .container-custom {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a,
    button,
    input {
        font-family: inherit;
    }

    .list-reset {
        list-style: none;
    }

    .t-mono,
    .countdown-digit,
    .number-mono {
        font-feature-settings: "tnum";
        font-variant-numeric: tabular-nums;
    }

    /* 顶部信息条 */
    .topbar {
        background: var(--forest);
        color: rgba(255, 255, 255, 0.78);
    }
    .topbar .topbar-action {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0 12px;
        font-size: 12px;
        transition: 0.2s ease;
    }
    .topbar .topbar-action:hover {
        background: var(--orange-sport);
        border-color: var(--orange-sport);
    }

    /* 主导航 */
    .nav-list a {
        position: relative;
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
        padding: 6px 2px;
        text-decoration: none;
        transition: color 0.2s ease;
        white-space: nowrap;
    }
    .nav-list a:hover {
        color: var(--pine);
    }
    .nav-list a:hover::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        border-radius: 999px;
        background: var(--pine);
    }
    .nav-list a.active {
        color: var(--pine);
        font-weight: 800;
    }
    .nav-list a.active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        background: var(--pine);
        border-radius: 999px;
    }

    .mobile-panel .dropdown-enter {
        display: block;
        background: var(--pine);
        color: #fff;
        border-radius: 14px;
        text-align: center;
        font-weight: 700;
        padding: 14px 16px;
        text-decoration: none;
    }
    .mobile-panel .dropdown-enter:hover {
        background: var(--pine-dark);
    }
    .mobile-panel a.active {
        background: var(--sand);
        color: var(--pine);
        font-weight: 700;
    }

    .mobile-nav-bar {
        display: flex !important;
    }
    @media (min-width: 1024px) {
        .mobile-nav-bar {
            display: none !important;
        }
    }

    /* 搜索框 */
    .search-box-input {
        height: 44px;
        border: 1px solid var(--line-color);
        border-radius: var(--radius-comp);
        padding-left: 38px;
        padding-right: 14px;
        background: #fff;
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: border 0.2s ease, box-shadow 0.2s ease;
    }
    .search-box-input:focus {
        border-color: var(--pine);
        box-shadow: 0 0 0 3px rgba(12, 123, 80, 0.12);
    }
    .search-box-input::placeholder {
        color: var(--ink-weak);
    }
    .search-box-large {
        height: 50px;
        border-radius: 16px;
    }

    /* 按钮体系 */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 22px;
        background: var(--pine);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        border-radius: var(--radius-comp);
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }
    .btn-primary:hover {
        background: var(--pine-dark);
        box-shadow: 0 8px 18px rgba(12, 123, 80, 0.2);
    }
    .btn-primary:focus-visible,
    .btn-outline:focus-visible {
        outline: 3px solid rgba(12, 123, 80, 0.3);
        outline-offset: 2px;
    }

    .btn-dark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 22px;
        background: var(--forest);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        border-radius: var(--radius-comp);
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.15s ease;
    }
    .btn-dark:hover {
        background: #0b4a34;
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 42px;
        padding: 0 18px;
        background: transparent;
        border: 1.5px solid var(--pine);
        color: var(--pine);
        border-radius: var(--radius-comp);
        font-weight: 700;
        font-size: 13px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .btn-outline:hover {
        background: rgba(12, 123, 80, 0.06);
        color: var(--pine-dark);
    }

    .btn-white {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 24px;
        background: #fff;
        color: var(--pine);
        border-radius: var(--radius-comp);
        font-weight: 800;
        border: none;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .btn-white:hover {
        background: linear-gradient(135deg, #fff 0%, #FEF3E2 100%);
        color: var(--orange-sport);
    }

    /* 辅助标签 */
    .badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 28px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.16);
    }
    .badge-live {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 24px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(249, 115, 22, 0.14);
        color: var(--orange-sport);
        font-size: 12px;
        font-weight: 700;
    }

    .tag-chip {
        display: inline-flex;
        align-items: center;
        height: 28px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(12, 123, 80, 0.08);
        color: var(--pine-dark);
        border: 1px solid rgba(12, 123, 80, 0.14);
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }
    .tag-chip-outline {
        display: inline-flex;
        align-items: center;
        height: 31px;
        padding: 0 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.24);
        color: rgba(255, 255, 255, 0.9);
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    /* 卡片 */
    .card-sport {
        background: #fff;
        border: 1px solid rgba(231, 225, 214, 0.9);
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        flex-direction: column;
    }
    .card-sport:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    .media-zoom {
        overflow: hidden;
    }
    .media-zoom img {
        transition: transform 0.2s ease;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .card-sport:hover .media-zoom img {
        transform: scale(1.03);
    }

    .list-dot li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }
    .list-dot li::before {
        content: "";
        flex: 0 0 7px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--pine);
        margin-top: 10px;
    }

    .link-arrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: var(--pine);
        text-decoration: none;
        transition: gap 0.2s ease, color 0.2s ease;
    }
    .link-arrow:hover {
        gap: 12px;
        color: var(--orange-sport);
    }

    /* 分类头部 */
    .category-hero-bg {
        background-image: url('/assets/images/backpic/back-2.webp');
        background-size: cover;
        background-position: center 30%;
    }

    /* 图文交错区块 */
    .spotlight-media {
        min-height: 350px;
    }

    /* 数据面板 */
    .data-panel {
        background: linear-gradient(135deg, #062E1F 0%, #0C7B50 68%, #0EB36E 100%);
    }
    .data-item {
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
    }

    /* 步骤 */
    .step-card {
        position: relative;
        background: #fff;
        border: 1px solid var(--line-color);
        border-radius: var(--radius-card);
        padding: 26px 22px;
        box-shadow: var(--shadow-card);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    .step-number {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--pine);
        color: #fff;
        font-size: 20px;
        font-weight: 900;
    }

    /* 中部行动卡 */
    .mid-banner {
        background-image: linear-gradient(135deg, rgba(6, 46, 31, 0.96) 0%, rgba(12, 123, 80, 0.9) 100%), url('/assets/images/backpic/back-1.webp');
        background-size: cover;
        background-position: center;
    }

    /* FAQ */
    .faq-item {
        background: #fff;
        border: 1px solid var(--line-color);
        border-radius: var(--radius-card);
        padding: 0;
        overflow: hidden;
        transition: background 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item:hover {
        background: rgba(12, 123, 80, 0.03);
    }
    .faq-item.open {
        box-shadow: 0 8px 24px rgba(6, 34, 24, 0.06);
    }
    .faq-q-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background: transparent;
        border: none;
        text-align: left;
        padding: 20px 22px;
        font-size: 17px;
        font-weight: 700;
        color: var(--ink);
        cursor: pointer;
        line-height: 1.5;
    }
    .faq-q-btn i {
        font-size: 14px;
        color: var(--ink-weak);
        transition: transform 0.25s ease, color 0.2s ease;
        flex: 0 0 auto;
    }
    .faq-item.open .faq-q-btn i {
        transform: rotate(180deg);
        color: var(--pine);
    }
    .faq-answer {
        display: none;
        padding: 0 22px 22px 22px;
        color: var(--ink-weak);
        font-size: 15px;
        line-height: 1.9;
        border-top: 1px dashed rgba(231, 225, 214, 0.7);
        margin-top: 0;
    }
    .faq-item.open .faq-answer {
        display: block;
        padding-top: 16px;
    }
    .faq-item.open {
        position: relative;
    }
    .faq-item.open::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--pine);
    }

    /* 收尾 CTA */
    .cta-final {
        background-image: linear-gradient(135deg, #062E1F 0%, #0C7B50 68%, #0EB36E 100%);
        border-radius: 32px;
        position: relative;
        overflow: hidden;
    }
    .cta-final::after {
        content: "";
        position: absolute;
        right: -80px;
        top: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    /* 页脚 */
    .footer-links a {
        color: rgba(255, 255, 255, 0.58);
        text-decoration: none;
        padding: 6px 0;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }
    .footer-links a:hover {
        color: #fff;
        padding-left: 4px;
    }

    /* 响应式细调 */
    @media (max-width: 768px) {
        .section-space {
            padding-top: 56px;
            padding-bottom: 56px;
        }
        .faq-q-btn {
            padding: 16px 16px;
            font-size: 16px;
        }
        .faq-answer {
            padding-left: 16px;
            padding-right: 16px;
        }
        .step-card {
            padding: 20px;
        }
    }
    @media (max-width: 520px) {
        .container-custom {
            padding-left: 14px;
            padding-right: 14px;
        }
        .topbar span.point-text {
            max-width: 180px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-sport {
            border-radius: 18px;
        }
    }

    .section-space {
        padding-top: 64px;
        padding-bottom: 64px;
    }

/* roulang page: category2 */
:root {
            --pine: #0C7B50;
            --pine-dark: #075B3A;
            --forest: #062E1F;
            --sand: #F7F5F0;
            --ink: #10241C;
            --ink-weak: #5C6B63;
            --line: #E7E1D6;
            --orange: #F97316;
            --amber: #F59E0B;
            --radius-btn: 14px;
            --radius-card: 20px;
            --radius-hero: 32px;
            --shadow-card: 0 8px 24px rgba(6, 34, 24, 0.06);
            --shadow-card-hover: 0 18px 40px rgba(6, 34, 24, 0.12);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
            background: var(--sand);
            color: var(--ink);
            line-height: 1.65;
            font-feature-settings: "tnum";
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button,
        input {
            font: inherit;
            border: 0;
        }

        ::selection {
            background: rgba(12, 123, 80, .15);
        }

        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .t-mono {
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        #site-header {
            background: var(--sand);
        }

        .nav-list a {
            position: relative;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            padding: 10px 0;
            transition: color .2s ease;
        }

        .nav-list a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: var(--pine);
            transition: width .2s ease;
        }

        .nav-list a:hover {
            color: var(--pine);
        }

        .nav-list a.active {
            color: var(--pine);
        }

        .nav-list a.active::after,
        .nav-list a:hover::after {
            width: 100%;
        }

        .search-box-input {
            height: 48px;
            padding-left: 42px;
            padding-right: 16px;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: #fff;
            font-size: 14px;
            color: var(--ink);
            transition: border-color .2s, box-shadow .2s;
        }

        .search-box-input::placeholder {
            color: #9AA49E;
        }

        .search-box-input:focus {
            outline: none;
            border-color: var(--pine);
            box-shadow: 0 0 0 4px rgba(12, 123, 80, .1);
        }

        .btn-primary,
        .btn-white,
        .btn-outline,
        .btn-ghost-white,
        .btn-orange,
        .dropdown-enter {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 24px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: background .2s, color .2s, transform .2s, box-shadow .2s;
        }

        .btn-primary {
            background: var(--pine);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--pine-dark);
            transform: translateY(-1px);
        }

        .btn-primary:focus-visible,
        .btn-white:focus-visible,
        .btn-outline:focus-visible,
        .btn-ghost-white:focus-visible,
        .btn-orange:focus-visible {
            outline: 2px solid var(--pine);
            outline-offset: 3px;
        }

        .btn-white {
            background: #fff;
            color: var(--pine-dark);
        }

        .btn-white:hover {
            background: var(--orange);
            color: #fff;
        }

        .btn-outline {
            background: #fff;
            border: 1px solid var(--pine);
            color: var(--pine-dark);
        }

        .btn-outline:hover {
            background: rgba(12, 123, 80, .08);
            border-color: var(--pine-dark);
        }

        .btn-ghost-white {
            border: 1px solid rgba(255, 255, 255, .5);
            color: #fff;
        }

        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
        }

        .btn-orange {
            background: linear-gradient(135deg, #F97316, #F59E0B);
            color: #fff;
            padding: 0 18px;
        }

        .btn-orange:hover {
            filter: brightness(1.05);
        }

        .dropdown-enter {
            display: flex;
            width: 100%;
            background: var(--pine);
            color: #fff;
        }

        .dropdown-enter:hover {
            background: var(--pine-dark);
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(12, 123, 80, .09);
            color: var(--pine);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .05em;
        }

        .card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 20px;
            overflow: hidden;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .card-media {
            overflow: hidden;
        }

        .card-media img {
            transition: transform .3s ease;
        }

        .card:hover .card-media img {
            transform: scale(1.04);
        }

        .clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .check-card {
            display: inline-flex;
            width: 26px;
            height: 26px;
            flex: none;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(12, 123, 80, .12);
            color: var(--pine);
            font-size: 12px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 20px;
            padding: 4px 24px 0;
            transition: background .2s, border-color .2s;
        }

        .faq-item:hover {
            background: #FCFAF5;
            border-color: #D8D1C3;
        }

        .faq-item.open {
            border-color: rgba(12, 123, 80, .35);
        }

        .faq-question {
            margin: 0;
        }

        .faq-question-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            background: transparent;
            text-align: left;
            padding: 18px 0;
            color: var(--ink);
            font-size: 17px;
            line-height: 1.5;
            font-weight: 700;
            cursor: pointer;
            transition: color .2s;
        }

        .faq-question-btn:hover {
            color: var(--pine);
        }

        .faq-icon {
            flex: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--sand);
            color: var(--pine);
            font-size: 20px;
            transition: transform .25s, background .25s, color .25s;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--pine);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 600px;
        }

        .faq-answer p {
            padding: 0 0 22px;
            margin: 0;
            color: var(--ink-weak);
            font-size: 16px;
            line-height: 1.85;
            max-width: 860px;
        }

        .rank-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .rank-item:last-child {
            border-bottom: 0;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            color: rgba(255, 255, 255, .65);
            transition: color .2s, transform .2s;
        }

        .footer-links a:hover {
            color: var(--amber);
            transform: translateX(2px);
        }

        .cta-card {
            background-image: linear-gradient(135deg, #062E1F 0%, #0C7B50 68%, #0EB36E 100%);
            box-shadow: 0 24px 60px rgba(6, 34, 24, .18);
        }

        .mobile-panel {
            background: #fff;
        }

        @media (max-width: 1023px) {
            .desktop-actions,
            .nav-list {
                display: none !important;
            }

            .mobile-nav-bar {
                display: flex !important;
            }
        }

        @media (min-width: 1024px) {
            .mobile-panel {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .btn-primary,
            .btn-outline,
            .btn-white {
                padding: 0 18px;
                font-size: 14px;
            }

            .faq-question-btn {
                font-size: 16px;
            }
        }

/* roulang page: category4 */
:root {
            --pine: #0C7B50;
            --pine-deep: #075B3A;
            --pine-dark: #062E1F;
            --pine-bright: #0EB36E;
            --sport-orange: #F97316;
            --amber-sport: #F59E0B;
            --sand: #F7F5F0;
            --ink: #10241C;
            --ink-weak: #5C6B63;
            --line: #E7E1D6;
            --radius-sm: 14px;
            --radius-card: 20px;
            --radius-hero: 32px;
            --shadow-card: 0 8px 24px rgba(6,34,24,0.06);
            --shadow-hover: 0 18px 40px rgba(6,34,24,0.12);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
            background: var(--sand);
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            font-feature-settings: "tnum";
            margin: 0;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input,
        button,
        textarea {
            font-family: inherit;
        }

        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 640px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        .topbar {
            background: var(--pine-dark);
            color: rgba(255, 255, 255, .76);
        }

        .topbar a {
            color: #fff;
        }

        #site-header {
            transition: box-shadow .3s ease;
        }

        #site-header.scrolled {
            box-shadow: 0 10px 30px rgba(6, 34, 24, 0.08);
        }

        .nav-list a {
            position: relative;
            font-weight: 600;
            font-size: 15px;
            color: var(--ink);
            padding: 8px 2px;
            line-height: 1.2;
        }

        .nav-list a:hover {
            color: var(--pine-deep);
        }

        .nav-list a.active {
            color: var(--pine);
        }

        .nav-list a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: var(--pine);
            border-radius: 999px;
        }

        .search-box-input {
            height: 46px;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--ink);
            font-size: 14px;
            padding: 0 14px 0 40px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .search-box-input:focus {
            outline: none;
            border-color: var(--pine);
            box-shadow: 0 0 0 3px rgba(12, 123, 80, 0.14);
        }

        .search-box-input::placeholder {
            color: #9AA49D;
        }

        .mobile-nav-bar {
            display: none;
        }

        .mobile-panel {
            display: none;
        }

        .dropdown-enter {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            border-radius: 14px;
            background: var(--pine);
            color: #fff;
            font-weight: 700;
            transition: background .2s ease;
        }

        .dropdown-enter:hover {
            background: var(--pine-deep);
        }

        @media (max-width: 1023px) {
            .mobile-nav-bar {
                display: flex !important;
            }

            .mobile-panel.open {
                display: block;
            }

            .mobile-panel.hidden {
                display: none;
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 48px;
            padding: 0 24px;
            border-radius: 14px;
            background: var(--pine);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border: 1px solid var(--pine);
            transition: all .2s ease;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--pine-deep);
            border-color: var(--pine-deep);
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(7, 91, 58, 0.18);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--pine);
            outline-offset: 3px;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 48px;
            padding: 0 26px;
            border-radius: 14px;
            background: #fff;
            color: var(--pine);
            font-size: 15px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, .6);
            transition: all .2s ease;
            white-space: nowrap;
        }

        .btn-white:hover {
            background: var(--pine-bright);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(6, 34, 24, 0.16);
        }

        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 48px;
            padding: 0 26px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all .2s ease;
            white-space: nowrap;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #fff;
        }

        .badge-micro {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 28px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
        }

        .badge-sand {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 28px;
            padding: 0 12px;
            border-radius: 999px;
            background: var(--sand);
            color: var(--pine-deep);
            font-size: 12px;
            font-weight: 600;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--pine);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
        }

        .eyebrow::before {
            content: "";
            width: 14px;
            height: 4px;
            border-radius: 999px;
            background: var(--pine);
            display: inline-block;
        }

        .t-mono,
        .countdown-digit {
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        .quick-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 40px;
            padding: 0 16px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--line);
            color: var(--ink);
            font-size: 13px;
            font-weight: 600;
            transition: all .2s ease;
        }

        .quick-chip:hover {
            border-color: var(--pine);
            color: var(--pine);
            background: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }

        .base-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .base-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(12, 123, 80, 0.25);
        }

        .step-dot {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: var(--pine);
            color: #fff;
            font-weight: 800;
            font-size: 15px;
            flex: none;
            box-shadow: 0 6px 14px rgba(12, 123, 80, 0.22);
        }

        .timeline-item {
            position: relative;
            padding-left: 0;
        }

        .timeline-item:not(:last-child)::before {
            content: "";
            position: absolute;
            top: 44px;
            bottom: 0;
            left: 16px;
            width: 2px;
            background: linear-gradient(180deg, rgba(12, 123, 80, .3), rgba(12, 123, 80, .08));
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            padding: 22px 20px;
            text-align: center;
            color: #fff;
            transition: transform .2s ease, background .2s ease;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-3px);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: rgba(249, 115, 22, 0.22);
            color: #fff;
            font-size: 17px;
            margin: 0 auto 12px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 20px;
            overflow: hidden;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .faq-item.open {
            border-left: 4px solid var(--pine);
            box-shadow: 0 12px 28px rgba(6, 34, 24, 0.08);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 22px;
            background: transparent;
            border: 0;
            color: var(--ink);
            font-size: 16px;
            font-weight: 700;
            text-align: left;
            transition: background .2s ease;
        }

        .faq-question:hover {
            background: rgba(12, 123, 80, 0.04);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: rgba(12, 123, 80, 0.1);
            color: var(--pine);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            flex: none;
            transition: transform .25s ease, background .25s ease, color .25s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--pine);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
        }

        .faq-answer-content {
            padding: 0 22px 22px;
            color: var(--ink-weak);
            font-size: 15px;
            line-height: 1.85;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            position: relative;
            padding: 8px 0 8px 28px;
            color: var(--ink-weak);
            line-height: 1.8;
        }

        .feature-list li::before {
            content: "";
            position: absolute;
            left: 2px;
            top: 18px;
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--pine);
        }

        .footer-links a {
            display: inline-block;
            padding: 6px 0;
            color: rgba(255, 255, 255, 0.65);
            transition: color .2s ease;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .cta-card {
            background: linear-gradient(135deg, #062E1F 0%, #0C7B50 62%, #0EB36E 100%);
            position: relative;
            overflow: hidden;
            border-radius: 32px;
        }

        .cta-card::after {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            right: -80px;
            top: -90px;
            border-radius: 999px;
            border: 42px solid rgba(255, 255, 255, 0.06);
        }

        .image-bg {
            background-size: cover;
            background-position: center;
        }

        .card-img {
            border-radius: 20px 20px 0 0;
        }

        @media (max-width: 520px) {
            .nav-list a {
                font-size: 14px;
            }
        }
