/* roulang page: index */
:root {
  --deep: #0C2A1F;
  --green: #17694A;
  --lime: #C6EF51;
  --lime-bright: #D4F46A;
  --orange: #E96416;
  --paper: #F5F1E8;
  --panel: #E8E2D4;
  --card: #FFFFFF;
  --ink: #17241E;
  --muted: #5C6E65;
  --line: rgba(23,36,30,0.14);
  --radius: 10px;
  --radius-sm: 8px;
  --shadow: 0 8px 24px rgba(12,42,31,0.07);
  --shadow-hover: 0 12px 28px rgba(12,42,31,0.14);
  --font: system-ui, "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
:focus-visible {
  outline: 3px solid rgba(198,239,81,0.7);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(198,239,81,0.25);
}
.wrap {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4.5vw, 48px);
}
.section {
  padding: 88px 0;
  position: relative;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--lime);
}
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--deep);
  text-wrap: balance;
  letter-spacing: 0.01em;
}
.section-title + .section-desc {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.section-head.light .section-title {
  color: #fff;
}
.section-desc {
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
  text-align: center;
}
.btn-lime {
  background: var(--lime);
  color: var(--deep);
}
.btn-lime:hover {
  background: var(--lime-bright);
  box-shadow: 0 10px 24px rgba(198,239,81,0.24);
  transform: translate(-1px, -1px);
}
.btn-lime:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(198,239,81,0.2);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-outline-light:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1px solid rgba(23,36,30,0.32);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ===== 左侧栏 ===== */
.site-rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: 104px;
  height: 100dvh;
  background: var(--deep);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(198,239,81,0.24);
}
.rail-logo {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rail-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}
.rail-logo .brand-main {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.rail-logo .brand-sub {
  margin-top: 3px;
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.rail-nav {
  width: 100%;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.rail-nav a {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  transition: background .22s ease, color .22s ease;
}
.rail-nav a svg {
  width: 21px;
  height: 21px;
  stroke: rgba(255,255,255,0.72);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .22s ease;
}
.rail-nav a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.rail-nav a.active {
  color: #fff;
  font-weight: 800;
}
.rail-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  background: var(--lime);
  border-radius: 0 6px 6px 0;
}
.rail-nav a.active svg {
  stroke: var(--lime);
}
.rail-bottom {
  margin-top: auto;
  padding: 20px 10px 26px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}

/* ===== 移动端顶部栏与抽屉 ===== */
.mobile-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 120;
  height: 60px;
  background: var(--deep);
  align-items: center;
  padding: 0 14px 0 6px;
  box-shadow: 0 4px 14px rgba(12,42,31,0.2);
}
.menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
}
.menu-btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.menu-btn span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-logo {
  margin-left: 6px;
}
.mobile-logo a {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.mobile-logo small {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.m-header-cta {
  margin-left: auto;
  background: var(--lime);
  color: var(--deep);
  border-radius: 8px;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease;
}
.m-header-cta:hover {
  background: var(--lime-bright);
}
.mobile-drawer {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: min(320px, 86vw);
  z-index: 119;
  background: var(--deep);
  padding: 22px 10px 30px;
  transform: translateX(-105%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
}
.mobile-drawer a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1.8;
}
.mobile-drawer a.active {
  color: #fff;
  background: rgba(198,239,81,0.12);
  box-shadow: inset 3px 0 0 var(--lime);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-mask {
  position: fixed;
  inset: 60px 0 0 0;
  background: rgba(7,20,14,0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 118;
  backdrop-filter: blur(1.5px);
}
.drawer-mask.show {
  opacity: 1;
  visibility: visible;
}

/* ===== 主内容 ===== */
.site-main {
  margin-left: 104px;
}

/* ===== 倒计时条 ===== */
.countdown-strip {
  background: var(--deep);
  border-bottom: 2px solid rgba(198,239,81,0.28);
  padding: 13px 0;
}
.count-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 36px);
  flex-wrap: wrap;
}
.count-label {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  text-align: center;
}
.count-label strong {
  color: #fff;
  font-weight: 800;
}
.count-time {
  color: var(--lime);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.06em;
}
.count-time .unit {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.count-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(198,239,81,0.5);
  color: var(--lime);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== 首屏 ===== */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(7,28,18,0.94) 0%, rgba(11,49,33,0.78) 44%, rgba(11,49,33,0.32) 100%),
    url('/assets/images/backpic/back-1.png') center/cover no-repeat;
}
.hero-mask {
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(58px, 10vh, 120px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,239,81,0.12);
  color: var(--lime);
  border: 1px solid rgba(198,239,81,0.52);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 24px;
}
.hero h1 {
  max-width: 700px;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff;
  text-wrap: balance;
}
.hero-lead {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}
.hero-meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 14px;
  color: rgba(255,255,255,0.76);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta strong {
  color: #fff;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ===== 通用双列卖点 2 × 2 ===== */
.feature-grid {
  margin-top: 8px;
}
.feature-two {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 48px 80px;
  align-items: start;
}
.feature-two .feat-block {
  position: relative;
  padding: 20px 0 34px;
  border-bottom: 1px solid var(--line);
}
.feature-two .feat-block:last-child {
  border-bottom: 0;
}
.feat-num {
  position: absolute;
  right: -2px;
  top: -12px;
  font-size: 74px;
  font-weight: 900;
  color: var(--deep);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.feat-block h3 {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--deep);
  position: relative;
}
.feat-block p {
  margin-top: 12px;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.feat-two-col {
  display: flex;
  flex-direction: column;
}
.feat-two-col .feat-block:first-child {
  transform: translateY(8px);
}

/* ===== 图墙 ===== */
.gallery-section {
  background: var(--panel);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
  align-items: start;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: box-shadow .25s ease;
}
.g-item:hover {
  box-shadow: var(--shadow-hover);
}
.g-item .g-media {
  overflow: hidden;
  position: relative;
}
.g-item .g-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,42,31,0) 48%, rgba(12,42,31,0.32) 100%);
  pointer-events: none;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.g-item:hover img {
  transform: scale(1.04);
}
.g-cap {
  padding: 18px 20px 21px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.g-item .g-tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(23,105,74,0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.g-cap strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
.g-cap span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.col-wide {
  grid-column: span 7;
}
.col-narrow {
  grid-column: span 5;
}
.col-4 {
  grid-column: span 4;
}
.g-item.portrait {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  min-height: 320px;
}
.g-item.portrait .g-media {
  min-height: 260px;
}
.g-item.landscape .g-media {
  min-height: 340px;
}
.g-item.square .g-media {
  min-height: 250px;
}
.row-offset .g-item:nth-child(2) {
  transform: translateY(18px);
}

/* ===== CTA 报名 ===== */
.cta-block {
  background: var(--deep);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.section-cta .wrap {
  max-width: 1400px;
}
.cta-copy {
  padding: clamp(32px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(7,28,18,0.18) 0%, rgba(7,28,18,0.7) 100%),
    url('/assets/images/backpic/back-3.png') center/cover no-repeat;
}
.cta-copy h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}
.cta-copy .lead {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
}
.cta-note-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}
.cta-note-list li::before {
  content: "";
  display: block;
  margin-top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.cta-form {
  padding: clamp(28px, 4.5vw, 64px);
  background: rgba(255,255,255,0.03);
}
.form-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
.form-sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 6px;
}
.form-grid {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}
.form-item label {
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-item input,
.form-item select {
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 15px;
  transition: outline .15s ease, box-shadow .15s ease;
}
.form-item textarea {
  width: 100%;
  min-height: 84px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 12px 14px;
  resize: vertical;
}
.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
  outline: 3px solid var(--lime);
  outline-offset: 0;
  box-shadow: 0 0 0 6px rgba(198,239,81,0.28);
  border-color: var(--lime);
}
.cta-form .btn {
  width: 100%;
  margin-top: 8px;
}
.form-status {
  font-size: 13px;
  color: var(--lime);
  min-height: 22px;
  margin-top: 10px;
  line-height: 1.7;
}
.form-status.error {
  color: #FF8763;
}

/* ===== FAQ ===== */
.faq-area {
  background: var(--paper);
}
.faq-list {
  max-width: 980px;
  border-top: 2px solid var(--deep);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 6px 26px 0;
  cursor: pointer;
  min-height: 74px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--deep);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--green);
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(23,36,30,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .3s ease, background .2s ease, border-color .2s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--deep);
  transition: background .2s ease;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 12px;
}
.faq-item summary:hover .faq-icon {
  border-color: var(--green);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--lime);
  border-color: var(--lime);
}
.faq-item[open] summary {
  color: var(--green);
}
.faq-answer {
  max-width: 760px;
  padding: 4px 26px 30px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.faq-answer p + p {
  margin-top: 12px;
}
.faq-answer a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(23,105,74,0.4);
  text-underline-offset: 3px;
}

/* ===== CMS 资讯列表 ===== */
.news-section {
  background: #ECE7DD;
}
.news-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 44px;
}
.news-head-row .section-head {
  margin-bottom: 0;
}
.news-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.news-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  transition: color .2s, border-color .2s, background .2s;
}
.news-links a:hover {
  color: var(--green);
  border-color: var(--green);
  background: rgba(255,255,255,0.5);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-card {
  background: var(--card);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 218px 1fr;
  min-height: 190px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .22s ease, transform .22s ease;
  position: relative;
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.news-media {
  min-height: 100%;
  background: var(--deep);
  overflow: hidden;
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-media img {
  transform: scale(1.03);
}
.news-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep), var(--green));
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.news-body {
  padding: 22px 24px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-badge {
  display: inline-flex;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(23,105,74,0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.news-card h3 {
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 10px;
  transition: color .2s ease;
}
.news-card:hover h3 {
  color: var(--green);
}
.news-excerpt {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin-top: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.news-arrow {
  margin-left: auto;
  color: var(--green);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  transform: translateX(0);
  transition: transform .2s ease;
}
.news-card:hover .news-arrow {
  transform: translateX(5px);
}
.news-empty {
  border: 2px dashed rgba(23,36,30,0.22);
  background: transparent;
  border-radius: var(--radius);
  padding: 42px 32px;
  text-align: center;
  color: var(--muted);
}
.news-empty .btn {
  margin-top: 16px;
  font-size: 14px;
  padding: 10px 20px;
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.68);
  padding: 54px 0 30px;
  margin-left: 104px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-brand .brand-main {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
.footer-brand .brand-sub {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 0.12em;
  border-left: 3px solid var(--lime);
  padding-left: 8px;
  margin-top: 6px;
}
.footer-desc {
  max-width: 400px;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-nav li + li {
  margin-top: 9px;
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-nav a:hover {
  color: var(--lime);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.36);
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover {
  color: var(--lime);
}

/* ===== 响应式 ===== */
@media (max-width: 1199px) {
  .row-offset .g-item:nth-child(2) {
    transform: none;
  }
  .col-wide {
    grid-column: span 7;
  }
  .col-narrow {
    grid-column: span 5;
  }
  .col-4 {
    grid-column: span 4;
  }
  .cta-block {
    grid-template-columns: 1fr;
  }
  .cta-form {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .feature-two {
    gap: 20px 50px;
  }
}
@media (max-width: 1023px) {
  .site-rail {
    display: none;
  }
  .site-main,
  .site-footer {
    margin-left: 0;
  }
  .mobile-header {
    display: flex;
  }
  .section {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .col-wide,
  .col-narrow,
  .col-4 {
    grid-column: span 1;
  }
  .g-item.landscape .g-media,
  .g-item.portrait .g-media,
  .g-item.square .g-media {
    min-height: 220px;
  }
  .cta-copy {
    padding: 34px 24px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 52px 0;
  }
  .hero {
    min-height: 86vh;
    align-items: flex-end;
  }
  .hero-content {
    padding-block: 70px 52px;
  }
  .hero-meta {
    gap: 12px 20px;
    font-size: 13px;
  }
  .feature-two {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feat-two-col {
    margin-top: 0;
  }
  .feat-block {
    padding: 22px 0 24px;
  }
  .feat-num {
    top: -2px;
    font-size: 52px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .g-item:nth-child(2),
  .g-item:nth-child(3) {
    transform: none;
  }
  .g-item.portrait {
    min-height: 0;
    display: block;
  }
  .g-item.portrait .g-media,
  .g-item.landscape .g-media,
  .g-item.square .g-media {
    min-height: 190px;
  }
  .cta-copy,
  .cta-form {
    padding: 28px 20px;
  }
  .form-grid {
    gap: 15px;
  }
  .news-card {
    grid-template-columns: 1fr;
  }
  .news-media {
    min-height: 170px;
  }
  .news-body {
    padding: 18px 16px 16px;
  }
  .news-foot {
    width: 100%;
  }
  .count-inner {
    gap: 10px 18px;
    padding: 6px 0;
  }
  .count-time {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .mobile-logo .brand-sub {
    display: none;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-lead {
    font-size: 15.5px;
  }
  .count-time .unit {
    display: none;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .col-4 {
    grid-column: span 1;
  }
}

/* roulang page: article */
:root{
  --deep:#0C2A1F;
  --green:#17694A;
  --lime:#C6EF51;
  --orange:#E96416;
  --paper:#F5F1E8;
  --sand:#E8E2D4;
  --white:#FFFFFF;
  --ink:#17241E;
  --muted:#5C6E65;
  --line:rgba(23,36,30,0.14);
  --radius:10px;
  --radius-sm:8px;
  --pill:999px;
  --shadow:0 8px 24px rgba(12,42,31,0.07);
  --shadow-lg:0 12px 28px rgba(12,42,31,0.14);
  --glow:rgba(198,239,81,0.6);
  --rail:104px;
  --wrap:1320px;
  --font:system-ui,"PingFang SC","Microsoft YaHei UI","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font);
  background:var(--paper);
  color:var(--ink);
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block;object-fit:cover;}
a{color:inherit;text-decoration:none;}
ul,ol{list-style:none;}
button,input,textarea,select{font-family:inherit;font-size:inherit;}
:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px var(--glow);
}
.site-shell{min-height:100vh;}
.site-rail{
  position:fixed;
  left:0;
  top:0;
  width:var(--rail);
  height:100dvh;
  background:var(--deep);
  display:flex;
  flex-direction:column;
  align-items:stretch;
  z-index:200;
}
.rail-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:98px;
  gap:4px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:#fff;
}
.rail-brand .brand-main{
  font-size:21px;
  font-weight:900;
  letter-spacing:0.02em;
  line-height:1;
}
.rail-brand .brand-sub{
  font-size:10px;
  letter-spacing:0.32em;
  color:var(--lime);
  opacity:0.95;
}
.rail-nav{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:34px 8px;
}
.rail-link{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:14px 6px 12px;
  color:rgba(255,255,255,0.62);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.04em;
  border-radius:8px;
  transition:background 0.25s ease,color 0.25s ease;
}
.rail-link svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.rail-link::before{
  content:"";
  position:absolute;
  left:-8px;
  top:50%;
  translate:0 -50%;
  width:3px;
  height:0;
  border-radius:0 4px 4px 0;
  background:var(--lime);
  transition:height 0.25s ease;
}
.rail-link:hover{
  background:rgba(255,255,255,0.06);
  color:#fff;
}
.rail-link.active{
  background:rgba(255,255,255,0.08);
  color:#fff;
}
.rail-link.active::before{
  height:24px;
}
.rail-meta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:18px 12px 26px;
  color:rgba(255,255,255,0.34);
  font-size:10px;
  letter-spacing:0.08em;
  border-top:1px solid rgba(255,255,255,0.08);
}
.rail-meta .rail-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 0 4px rgba(198,239,81,0.2);
}
.workspace{
  margin-left:var(--rail);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.site-main{
  flex:1;
}
.mobile-header{
  display:none;
}
.mobile-drawer,
.drawer-backdrop{
  display:none;
}
.article-page{
  max-width:1180px;
  margin:0 auto;
  padding:48px clamp(16px,4.4vw,56px) 42px;
}
.crumb{
  font-size:13px;
  color:var(--muted);
  margin-bottom:34px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.crumb a{
  color:var(--green);
  transition:color 0.2s ease;
}
.crumb a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}
.crumb-sep{
  color:rgba(23,36,30,0.32);
}
.crumb-current{
  color:var(--ink);
  font-weight:600;
}
.article-head{
  border-bottom:1px solid var(--line);
  padding-bottom:36px;
  margin-bottom:34px;
}
.article-kicker{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.article-cat{
  display:inline-flex;
  align-items:center;
  padding:5px 14px;
  border:1px solid rgba(23,105,74,0.4);
  border-radius:var(--pill);
  color:var(--green);
  font-size:13px;
  font-weight:700;
  letter-spacing:0.05em;
}
.article-cat::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--lime);
  margin-right:7px;
}
.article-head h1{
  font-size:clamp(30px,4.2vw,56px);
  font-weight:900;
  line-height:1.18;
  text-wrap:balance;
  max-width:900px;
  color:var(--deep);
  margin-bottom:20px;
}
.article-intro{
  font-size:17px;
  color:var(--muted);
  max-width:800px;
  line-height:1.85;
}
.article-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 22px;
  margin-top:24px;
  color:var(--muted);
  font-size:14px;
}
.article-meta span,
.article-meta time{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.article-meta .meta-dot{
  width:3px;
  height:3px;
  border-radius:50%;
  background:rgba(23,36,30,0.35);
}
.article-cover{
  margin:0 0 42px;
}
.article-cover img{
  width:100%;
  height:auto;
  max-height:520px;
  aspect-ratio:16/8;
  display:block;
  border-radius:14px;
  box-shadow:var(--shadow);
  background:var(--sand);
}
.article-cover figcaption{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}
.rich-text{
  max-width:760px;
  margin:0 auto;
  font-size:17px;
  line-height:1.9;
  color:var(--ink);
}
.rich-text p{
  margin-bottom:0.95em;
}
.rich-text h2{
  font-size:clamp(23px,3vw,34px);
  font-weight:800;
  line-height:1.35;
  margin:1.8em 0 0.6em;
  color:var(--deep);
}
.rich-text h2::before{
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  border-radius:4px;
  background:var(--lime);
  margin-right:12px;
  vertical-align:2px;
}
.rich-text h3{
  font-size:clamp(19px,1.9vw,24px);
  font-weight:700;
  color:var(--deep);
  margin:1.6em 0 0.5em;
}
.rich-text ul{
  margin:0.8em 0 1.2em;
}
.rich-text ul li,
.rich-text ol li{
  position:relative;
  padding-left:28px;
  margin-bottom:8px;
}
.rich-text ul li::before{
  content:"";
  position:absolute;
  left:6px;
  top:0.78em;
  width:9px;
  height:9px;
  border-radius:2px;
  background:var(--lime);
}
.rich-text ol{
  counter-reset:rl;
  margin:0.8em 0 1.2em;
}
.rich-text ol li{
  counter-increment:rl;
}
.rich-text ol li::before{
  content:counter(rl,decimal-leading-zero);
  position:absolute;
  left:0;
  top:0;
  font-size:13px;
  font-weight:800;
  color:var(--green);
}
.rich-text blockquote{
  position:relative;
  margin:1.6em 0;
  padding:18px 22px 18px 30px;
  background:#EEECE2;
  border-left:4px solid var(--green);
  border-radius:0 10px 10px 0;
  color:var(--ink);
}
.rich-text blockquote p{
  margin-bottom:0.4em;
}
.rich-text blockquote p:last-child{
  margin-bottom:0;
}
.rich-text a{
  color:var(--green);
  border-bottom:1px solid rgba(23,105,74,0.35);
  transition:border-color 0.2s ease,color 0.2s ease;
}
.rich-text a:hover{
  border-color:var(--green);
}
.rich-text img{
  max-width:100%;
  height:auto;
  border-radius:10px;
  margin:1.4em auto;
  box-shadow:var(--shadow);
}
.rich-text figure{
  margin:1.5em 0;
}
.rich-text figure img{
  margin:0 0 8px;
}
.rich-text figcaption{
  font-size:13px;
  color:var(--muted);
  text-align:center;
}
.rich-text table{
  width:100%;
  border-collapse:collapse;
  margin:1.5em 0;
  font-size:15px;
}
.rich-text th,
.rich-text td{
  border:1px solid var(--line);
  padding:10px 14px;
  text-align:left;
}
.rich-text th{
  background:var(--sand);
  font-weight:700;
}
.rich-text code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:0.9em;
  background:#EEECE2;
  padding:2px 6px;
  border-radius:5px;
}
.article-bottom{
  max-width:760px;
  margin:42px auto 0;
  padding-top:26px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:var(--muted);
  font-size:14px;
}
.article-topic-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.topic-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 14px;
  border:1px solid var(--line);
  border-radius:var(--pill);
  font-size:13px;
  color:var(--green);
  transition:border-color 0.2s ease,background 0.2s ease,color 0.2s ease;
}
.topic-link:hover{
  border-color:var(--green);
  background:rgba(23,105,74,0.06);
}
.back-home{
  color:var(--green);
  font-weight:600;
}
.back-home:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}
.suggest{
  margin-top:72px;
}
.suggest-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
  padding-bottom:14px;
  border-bottom:2px solid var(--deep);
}
.suggest-head h2{
  font-size:clamp(24px,3vw,34px);
  font-weight:900;
  color:var(--deep);
  line-height:1.2;
}
.suggest-head p{
  color:var(--muted);
  font-size:14px;
  max-width:420px;
}
.suggest-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.suggest-card{
  display:flex;
  flex-direction:column;
  min-height:220px;
  background:var(--white);
  border-radius:12px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:box-shadow 0.25s ease,translate 0.25s ease;
  border:1px solid rgba(12,42,31,0.05);
}
.suggest-card:hover{
  box-shadow:var(--shadow-lg);
  translate:0 -2px;
}
.suggest-card.alt{
  background:var(--deep);
  color:#fff;
}
.suggest-card.alt:hover{
  box-shadow:0 14px 30px rgba(12,42,31,0.25);
}
.card-label{
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  color:var(--green);
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.suggest-card.alt .card-label{
  color:var(--lime);
}
.card-label::before{
  content:"";
  width:22px;
  height:2px;
  background:var(--lime);
}
.card-body h3{
  font-size:clamp(20px,2.4vw,28px);
  font-weight:800;
  color:var(--deep);
  margin-bottom:8px;
  line-height:1.25;
}
.suggest-card.alt .card-body h3{
  color:#fff;
}
.card-body p{
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
  max-width:520px;
}
.suggest-card.alt .card-body p{
  color:rgba(255,255,255,0.68);
}
.card-arrow{
  margin-top:auto;
  padding-top:20px;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:14px;
}
.suggest-card.alt .card-arrow{
  color:var(--lime);
}
.card-arrow svg{
  width:16px;
  height:16px;
  transition:translate 0.25s ease;
}
.card-arrow:hover svg{
  translate:4px 0;
}
.no-article{
  max-width:820px;
  margin:68px auto;
  background:var(--white);
  border:1px dashed rgba(23,36,30,0.28);
  border-radius:16px;
  text-align:center;
  padding:72px 32px;
}
.no-article-icon{
  width:72px;
  height:72px;
  margin:0 auto 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--sand);
  border-radius:50%;
  color:var(--green);
}
.no-article-icon svg{
  width:30px;
  height:30px;
}
.no-article h1{
  font-size:clamp(26px,3.4vw,42px);
  font-weight:900;
  color:var(--deep);
  margin-bottom:14px;
}
.no-article p{
  color:var(--muted);
  max-width:520px;
  margin:0 auto 28px;
  line-height:1.9;
}
.button-main{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 28px;
  border-radius:var(--radius-sm);
  background:var(--lime);
  color:var(--deep);
  font-weight:800;
  font-size:15px;
  border:1px solid rgba(12,42,31,0.2);
  box-shadow:0 4px 0 rgba(12,42,31,0.18);
  transition:background 0.25s ease,translate 0.25s ease,box-shadow 0.25s ease;
}
.button-main:hover{
  background:#D4F46A;
  box-shadow:0 7px 18px rgba(12,42,31,0.26);
  translate:-1px -2px;
}
.button-main:active{
  translate:0 1px;
  box-shadow:0 2px 0 rgba(12,42,31,0.2);
}
.site-footer{
  background:var(--deep);
  color:rgba(255,255,255,0.8);
  padding:60px 0 28px;
}
.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 clamp(20px,4.8vw,56px);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 0.8fr 0.9fr;
  gap:48px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-main{
  font-size:30px;
  font-weight:900;
  color:#fff;
  line-height:1.1;
}
.footer-brand .brand-sub{
  font-size:12px;
  color:var(--lime);
  letter-spacing:0.24em;
  margin-top:4px;
}
.footer-desc{
  margin-top:18px;
  font-size:14px;
  color:rgba(255,255,255,0.55);
  max-width:440px;
  line-height:1.9;
}
.footer-title{
  font-size:15px;
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
}
.footer-nav li+li{
  margin-top:10px;
}
.footer-nav a{
  color:rgba(255,255,255,0.62);
  font-size:14px;
  transition:color 0.2s ease,padding-left 0.2s ease;
}
.footer-nav a:hover{
  color:var(--lime);
  padding-left:4px;
}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:8px 28px;
  color:rgba(255,255,255,0.42);
  font-size:13px;
  margin-top:28px;
}
.footer-bottom span:first-child{
  color:rgba(255,255,255,0.62);
}
@media (max-width:1100px){
  .article-page{
    padding-left:32px;
    padding-right:32px;
  }
}
@media (min-width:1024px){
  .article-page{
    min-height:calc(100vh - 340px);
  }
}
@media (max-width:1023px){
  .site-rail{
    display:none;
  }
  .workspace{
    margin-left:0;
    padding-top:64px;
  }
  .mobile-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:60px;
    background:var(--deep);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 16px 0 12px;
    z-index:300;
    box-shadow:0 6px 16px rgba(12,42,31,0.25);
  }
  .mobile-brand{
    color:#fff;
    font-weight:900;
    font-size:17px;
    letter-spacing:0.02em;
    display:flex;
    flex-direction:column;
  }
  .mobile-brand small{
    font-size:9px;
    color:var(--lime);
    letter-spacing:0.3em;
    font-weight:600;
  }
  .menu-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:8px;
    background:rgba(255,255,255,0.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:background 0.2s ease;
  }
  .menu-btn:hover{
    background:rgba(255,255,255,0.16);
  }
  .menu-btn svg{
    width:20px;
    height:20px;
  }
  .mobile-cta{
    display:inline-flex;
    align-items:center;
    height:34px;
    padding:0 12px;
    border-radius:8px;
    background:var(--lime);
    color:var(--deep);
    font-size:13px;
    font-weight:800;
  }
  .drawer-backdrop{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(5,20,13,0.6);
    opacity:0;
    visibility:hidden;
    transition:opacity 0.25s ease,visibility 0.25s ease;
    z-index:400;
  }
  .mobile-drawer{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    width:min(86vw,380px);
    background:var(--deep);
    display:flex;
    flex-direction:column;
    padding:38px 24px 26px;
    z-index:500;
    transform:translateX(-102%);
    transition:transform 0.3s cubic-bezier(0.2,0.7,0.3,1);
  }
  .drawer-brand{
    display:flex;
    flex-direction:column;
    color:#fff;
    padding-bottom:24px;
    border-bottom:1px solid rgba(255,255,255,0.1);
    margin-bottom:22px;
  }
  .drawer-brand .brand-main{
    font-size:25px;
    font-weight:900;
  }
  .drawer-brand .brand-sub{
    font-size:11px;
    color:var(--lime);
    letter-spacing:0.22em;
  }
  .drawer-nav{
    display:flex;
    flex-direction:column;
    gap:8px;
    flex:1;
  }
  .drawer-link{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 10px;
    border-radius:10px;
    color:rgba(255,255,255,0.7);
    font-size:16px;
    font-weight:600;
    transition:background 0.2s ease,color 0.2s ease;
  }
  .drawer-link svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .drawer-link.active{
    background:rgba(198,239,81,0.14);
    color:var(--lime);
  }
  .drawer-foot{
    margin-top:22px;
    color:rgba(255,255,255,0.35);
    font-size:12px;
  }
  .drawer-backdrop.show{
    opacity:1;
    visibility:visible;
  }
  .mobile-drawer.show{
    transform:translateX(0);
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
}
@media(max-width:640px){
  .article-page{
    padding:30px 18px 30px;
  }
  .crumb{
    margin-bottom:24px;
  }
  .article-head{
    padding-bottom:28px;
    margin-bottom:28px;
  }
  .article-head h1{
    font-size:clamp(27px,7vw,36px);
    margin-bottom:16px;
  }
  .article-cover img{
    aspect-ratio:4/3;
  }
  .rich-text{
    font-size:16px;
  }
  .suggest-grid{
    grid-template-columns:1fr;
  }
  .suggest-card{
    min-height:auto;
  }
  .article-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* roulang page: category1 */
:root{
  --bg:#F5F1E8;
  --bg-2:#E8E2D4;
  --card:#FFFFFF;
  --ink:#17241E;
  --ink-2:#5C6E65;
  --line:rgba(23,36,30,0.14);
  --deep:#0C2A1F;
  --brand:#17694A;
  --lime:#C6EF51;
  --lime-bright:#D4F46A;
  --orange:#E96416;
  --radius:10px;
  --radius-sm:8px;
  --shadow:0 8px 24px rgba(12,42,31,0.07);
  --shadow-up:0 12px 28px rgba(12,42,31,0.14);
  --rail-w:104px;
  --font:system-ui,"PingFang SC","Microsoft YaHei UI","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
}
*,*:before,*:after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  font-size:17px;
  line-height:1.82;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,p,ul,figure{margin:0}
ul{list-style:none;padding:0}
img{display:block;max-width:100%;border:0}
a{color:inherit;text-decoration:none}
input,button,textarea{font:inherit;color:inherit}
button{background:none;border:0;cursor:pointer}
::selection{background:var(--lime);color:var(--deep)}
:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(198,239,81,.65)}
.wrap{max-width:1280px;margin-left:auto;margin-right:auto;padding-left:clamp(20px,4vw,48px);padding-right:clamp(20px,4vw,48px)}
.section{padding-block:clamp(56px, 7.5vw, 92px)}
.section-head{margin-bottom:clamp(30px, 4vw, 52px);max-width:830px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.sec-kicker{display:inline-flex;align-items:center;gap:10px;margin:0 0 14px;font-size:14px;letter-spacing:.14em;color:var(--brand);font-weight:700;text-transform:uppercase}
.sec-kicker::before{content:"";width:26px;height:3px;background:var(--lime);border-radius:2px;display:inline-block}
.section-head.center .sec-kicker::after{content:"";width:26px;height:3px;background:var(--lime);border-radius:2px}
.section-head h2{font-size:clamp(25px,3vw,40px);line-height:1.28;font-weight:800;letter-spacing:.01em;text-wrap:balance}
.section-head .sec-desc{margin-top:18px;font-size:17px;color:var(--ink-2);max-width:740px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:48px;padding:13px 28px;border-radius:8px;
  font-size:16px;font-weight:700;line-height:1.2;letter-spacing:.02em;
  border:1px solid transparent;transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.btn-primary{background:var(--lime);color:var(--deep);border-color:var(--lime)}
.btn-primary:hover{background:var(--lime-bright);transform:translate(-1px,-1px);box-shadow:var(--shadow-up);border-color:var(--lime)}
.btn-primary:active{transform:translateY(1px);box-shadow:var(--shadow)}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.72);color:#fff}
.btn-ghost:hover{border-color:var(--lime);color:var(--lime);background:rgba(255,255,255,.05)}
.btn-ghost-dark{background:transparent;border:1px solid rgba(23,36,30,.35);color:var(--deep)}
.btn-ghost-dark:hover{border-color:var(--brand);color:var(--brand);background:rgba(23,36,30,.03)}
.btn-light{background:#fff;color:var(--deep);border-color:#fff}
.btn-light:hover{background:var(--bg-2);border-color:var(--lime);transform:translate(-1px,-1px);box-shadow:var(--shadow)}
.btn:active{transform:translateY(1px)}
.badge{display:inline-flex;align-items:center;gap:6px;height:30px;padding:0 14px;border-radius:999px;font-size:13px;font-weight:700;white-space:nowrap;background:#EFEBE1;color:var(--ink);border:1px solid transparent}
.badge-lime{background:rgba(198,239,81,.16);color:#275100;border-color:rgba(146,184,35,.4)}
.badge-ghost{background:transparent;color:var(--ink-2);border-color:var(--line)}
.badge-wait{background:#FFF3E4;color:#A64B0E;border-color:#E9B37E}
.badge-done{background:#E7E3DA;color:#66736A;border-color:rgba(23,36,30,.1)}
.tag{display:inline-block;padding:5px 12px;border-radius:999px;font-size:12px;background:var(--bg-2);color:var(--ink-2)}

.rail{
  position:fixed;left:0;top:0;z-index:80;width:var(--rail-w);height:100dvh;
  background:var(--deep);display:flex;flex-direction:column;align-items:center;
  padding:22px 10px 16px;color:#fff;border-right:1px solid rgba(255,255,255,.07);
}
.rail-logo{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:3px;width:72px;border:1px solid rgba(255,255,255,.2);border-radius:8px;
  padding:9px 4px;margin-bottom:28px;background:rgba(255,255,255,.04);
}
.logo-name{display:block;font-size:21px;font-weight:900;line-height:1.1;letter-spacing:.03em}
.logo-sub{display:block;font-size:10px;line-height:1.5;color:var(--lime);letter-spacing:.1em;font-weight:700}
.rail-nav{display:flex;flex-direction:column;gap:7px;width:100%;margin-top:12px}
.rail-nav a{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  min-height:68px;position:relative;border-radius:10px;color:rgba(255,255,255,.72);
  font-size:12px;line-height:1.2;letter-spacing:.06em;transition:background .2s ease,color .2s ease;
}
.rail-nav a:hover{background:rgba(255,255,255,.06);color:#fff}
.rail-nav a:focus-visible{outline:none;box-shadow:0 0 0 3px var(--lime) inset,0 0 0 4px var(--deep)}
.rail-nav a svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.rail-nav a.active{color:#EFF7DA;background:rgba(255,255,255,.05)}
.rail-nav a.active::before{content:"";position:absolute;left:2px;top:12px;bottom:12px;width:4px;border-radius:4px;background:var(--lime)}
.rail-foot{margin-top:auto;text-align:center;color:rgba(255,255,255,.44);font-size:11px;line-height:1.6;letter-spacing:.05em}
.m-topbar,.drawer{display:none}
.site-main{margin-left:var(--rail-w);min-height:70vh}
.site-footer{margin-left:var(--rail-w)}

.mobile-menu-btn{display:none}
.cat-hero{
  position:relative;display:flex;align-items:flex-end;min-height:440px;
  color:#fff;overflow:hidden;background-color:var(--deep);
}
.cat-hero__bg{
  position:absolute;inset:0;background-size:cover;background-position:center 65%;
  filter:saturate(.92);
}
.cat-hero__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(7,28,18,.93) 0%,rgba(11,49,33,.78) 45%,rgba(12,42,31,.32) 100%)}
.cat-hero__inner{position:relative;z-index:2;width:100%;padding-block:70px 62px}
.cat-hero__eyebrow{display:inline-flex;align-items:center;gap:10px;margin-bottom:16px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);padding:6px 14px;border-radius:999px;font-size:13px;letter-spacing:.12em;color:#D9E7C2;font-weight:700}
.cat-hero__eyebrow::before{content:"";width:15px;height:3px;background:var(--lime);border-radius:2px}
.cat-hero h1{margin:0;font-size:clamp(40px,6vw,78px);line-height:1.08;font-weight:900;letter-spacing:.01em}
.cat-hero .lead{margin-top:20px;max-width:720px;font-size:clamp(16px,1.5vw,19px);line-height:1.8;color:rgba(255,255,255,.88)}
.cat-hero__meta{margin-top:26px;display:flex;flex-wrap:wrap;gap:12px 22px;padding-top:20px;border-top:1px solid rgba(255,255,255,.16);color:rgba(255,255,255,.66);font-size:14px;align-items:center}
.cat-hero__meta i{display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--lime);margin-right:7px;vertical-align:middle}
.cat-hero__actions{margin-top:30px;display:flex;flex-wrap:wrap;gap:12px}
.cat-hero__notice{background:rgba(0,0,0,.22);border:1px solid rgba(255,255,255,.08);border-radius:6px;padding:6px 12px;font-size:13px;color:rgba(255,255,255,.75)}

.section-main{border-bottom:1px solid var(--line)}
.feature-bg{background:var(--bg-2)}
.spot-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:24px;align-items:stretch}
.spot-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;box-shadow:var(--shadow);transition:border-color .2s ease,box-shadow .2s ease}
.spot-card:hover{border-color:rgba(23,36,30,.22);box-shadow:var(--shadow-up)}
.spot-card figure{position:relative;overflow:hidden;margin:0;background:var(--bg-2)}
.spot-card figure img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.spot-card:hover figure img{transform:scale(1.035)}
.spot-card--main{grid-column:span 7;min-height:100%}
.spot-card--main figure{aspect-ratio:16/9;}
.spot-card--main .spot-body{padding:30px 28px 32px;display:flex;flex-direction:column;flex:1}
.spot-card--main h3{font-size:clamp(21px,2.2vw,30px);font-weight:800;line-height:1.3;margin-top:16px}
.spot-card--main p{margin-top:12px;color:var(--ink-2);max-width:640px}
.spot-card--side{grid-column:span 5;min-height:0}
.spot-card--side .spot-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}
.spot-card--side figure{aspect-ratio:16/9.5}
.spot-card--side h3{font-size:19px;line-height:1.4;font-weight:800;margin-top:14px}
.spot-card--side p{margin-top:10px;font-size:15px;color:var(--ink-2)}
.spot-card--side .spot-tags{margin-top:18px;display:flex;flex-wrap:wrap;gap:8px}
.spot-body .row-flex{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px}
.spots-stack{grid-column:span 5;display:grid;grid-template-columns:repeat(2,1fr);gap:24px;align-content:space-between}
.eyebrow-text{font-size:12px;letter-spacing:.14em;font-weight:700;color:var(--ink-2)}
.spot-footnote{grid-column:1/-1;font-size:14px;color:var(--ink-2);border-left:3px solid var(--lime);padding-left:12px;margin-top:6px}

.sched-panel{background:var(--card);border-radius:var(--radius);border:1px solid var(--line);box-shadow:var(--shadow);overflow:hidden}
.sched-head,.sched-row{display:grid;grid-template-columns:72px minmax(280px,1.4fr) minmax(170px,1fr) 148px;align-items:center;gap:14px}
.sched-head{background:#F1EBE0;padding:14px 22px;font-size:12px;letter-spacing:.12em;color:var(--ink-2);border-bottom:1px solid var(--line);font-weight:700}
.sched-row{padding:24px 22px;border-bottom:1px solid var(--line);transition:background .18s ease}
.sched-row:last-child{border-bottom:0}
.sched-row:hover{background:#FAF7F0}
.sched-order{font-size:22px;color:rgba(12,42,31,.32);font-weight:900}
.sched-title h4{font-size:19px;line-height:1.4;font-weight:800}
.sched-title p{margin-top:4px;font-size:14px;color:var(--ink-2)}
.sched-place{font-size:15px;color:var(--ink);font-weight:600}
.sched-status{text-align:right}
.sched-note{background:#F4F0E7;border-radius:0 0 var(--radius) var(--radius);padding:18px 22px;display:flex;gap:8px;align-items:flex-start}
.sched-note span{color:var(--orange);font-weight:700}
.sched-note p{font-size:14px;color:var(--ink-2)}

.step-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;counter-reset:step}
.step-item{position:relative;padding:26px 20px 20px 0;border-top:1px solid var(--line)}
.step-item::before{
  counter-increment:step;content:"0" counter(step);
  display:block;font-size:clamp(38px,4vw,62px);font-weight:900;line-height:1;
  color:rgba(198,239,81,.55);position:absolute;top:24px;right:6px;z-index:0;letter-spacing:-.03em;
}
.step-item h3{position:relative;font-size:19px;line-height:1.4;font-weight:800;margin-bottom:10px}
.step-item p{position:relative;font-size:15px;color:var(--ink-2);margin-top:8px}
.step-item .dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--brand);vertical-align:middle;margin-right:6px}

.fit-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:0;border:1px solid var(--line);border-radius:var(--radius);background:var(--card);overflow:hidden}
.fit-item{grid-column:span 3;padding:30px 26px 34px;border-left:1px solid var(--line);position:relative;background:var(--card)}
.fit-item:first-child{border-left:0}
.fit-item .fit-index{font-size:14px;letter-spacing:.1em;color:var(--brand);font-weight:800;display:block}
.fit-item h3{margin-top:70px;font-size:20px;line-height:1.4;font-weight:800}
.fit-item p{margin-top:10px;font-size:15px;color:var(--ink-2)}
.fit-item::before{content:"";display:block;width:34px;height:3px;background:var(--lime);margin-bottom:20px}
.fit-tag-style{display:inline-block;margin-top:14px;background:var(--bg-2);color:var(--ink);font-size:12px;border-radius:4px;padding:4px 10px;font-weight:600}

.faq-list{max-width:1000px}
.faq-item{border-bottom:1px solid var(--line);position:relative}
.faq-item summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:23px 10px 23px 0;font-size:clamp(16px,1.5vw,20px);font-weight:800;transition:color .2s ease;line-height:1.45}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{color:var(--brand)}
.faq-item summary .plus{flex:0 0 auto;width:34px;height:34px;border:1px solid var(--line);border-radius:8px;position:relative;transition:border-color .25s ease,background .25s ease,transform .25s ease}
.faq-item summary .plus::before,.faq-item summary .plus::after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:14px;height:2px;background:var(--ink);border-radius:2px;transition:background .2s ease}
.faq-item summary .plus::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item[open] summary .plus{transform:rotate(135deg);border-color:var(--brand)}
.faq-item[open] summary .plus::before{background:var(--brand)}
.faq-item[open] summary .plus::after{background:var(--brand)}
.faq-answer{padding:0 60px 26px 0;color:var(--ink-2);font-size:16px;line-height:1.85;max-width:770px}

.cta-block{margin:64px 0 0;background:var(--deep);color:#fff;border-radius:var(--radius);position:relative;overflow:hidden;background-image:radial-gradient(rgba(198,239,81,.16) 1px,transparent 1px);background-size:20px 20px}
.cta-block::before{content:"";position:absolute;inset:0;background:linear-gradient(115deg,rgba(198,239,81,.08) 0%,transparent 38%)}
.cta-inner{position:relative;padding:clamp(30px,5vw,58px);display:grid;grid-template-columns:1.3fr 1fr;gap:40px;align-items:center;border:1px solid rgba(255,255,255,.12);border-radius:var(--radius)}
.cta-inner h2{font-size:clamp(22px,2.6vw,32px);line-height:1.4;margin-bottom:12px}
.cta-inner p{color:rgba(255,255,255,.78);max-width:560px}
.cta-btn{display:flex;justify-content:flex-end;gap:14px;flex-wrap:wrap}
.cta-block .btn-secondary-white{display:inline-flex;justify-content:center;align-items:center;min-height:48px;padding:12px 26px;border-radius:8px;background:transparent;border:1px solid rgba(255,255,255,.72);color:#fff;font-weight:700;gap:8px;transition:background .2s,border .2s,color .2s}
.cta-block .btn-secondary-white:hover{border-color:var(--lime);color:var(--deep);background:var(--lime)}
@media (min-width:1200px){
  .spot-card--side figure{aspect-ratio:16/8.4;}
  .spots-stack .spot-card--side figure{aspect-ratio:16/9.6;}
}
@media (max-width:1023px){
  .rail{display:none}
  .site-main,.site-footer{margin-left:0}
  .m-topbar{
    display:flex;align-items:center;justify-content:space-between;height:62px;
    background:var(--deep);padding:0 18px;position:sticky;top:0;z-index:110;color:#fff;
    border-bottom:2px solid var(--lime);
  }
  .mobile-menu-btn{display:inline-flex;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;padding:10px;border-radius:8px}
  .mobile-menu-btn span{display:block;height:2px;width:20px;background:var(--lime);border-radius:2px;transition:opacity .15s,transform .2s}
  .mobile-brand{font-size:17px;font-weight:900;text-align:center;letter-spacing:.02em;display:flex;flex-direction:column;align-items:center;line-height:1.2;gap:2px}
  .mobile-brand small{display:block;font-size:11px;color:var(--lime);font-weight:700;letter-spacing:.1em}
  .mobile-brand-text{font-weight:900}
  .m-cta{display:inline-flex;height:34px;align-items:center;padding:0 16px;border-radius:999px;background:var(--lime);color:var(--deep);font-size:13px;font-weight:800;transition:transform .2s}
  .m-cta:active{transform:translateY(1px)}
  .drawer{
    position:fixed;left:0;top:0;bottom:0;width:min(310px,84vw);
    display:flex;flex-direction:column;background:var(--deep);z-index:220;color:#fff;
    padding:24px 20px;transform:translateX(-104%);transition:transform .28s cubic-bezier(.2,.7,.3,1);
    box-shadow:4px 0 30px rgba(0,0,0,.28);border-right:1px solid var(--lime);
  }
  .drawer.is-open{transform:translateX(0)}
  .drawer-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}
  .drawer-brand{font-weight:900;font-size:18px}
  .drawer-brand small{margin-left:8px;font-size:11px;color:var(--lime);letter-spacing:.1em}
  .drawer-close{width:40px;height:40px;border-radius:8px;color:#fff;font-size:22px;display:flex;align-items:center;justify-content:center;transition:background .2s}
  .drawer-close:hover{background:rgba(255,255,255,.08)}
  .drawer-nav{display:flex;flex-direction:column;gap:6px}
  .drawer-nav a{display:flex;align-items:center;gap:14px;padding:15px 12px;border-radius:10px;color:rgba(255,255,255,.8);font-size:16px;font-weight:700;transition:background .2s,color .2s}
  .drawer-nav a:hover,.drawer-nav a.active{background:rgba(255,255,255,.07);color:var(--lime)}
  .drawer-nav a svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
  .drawer-nav{margin-top:10px}
  .drawer-backdrop{position:fixed;inset:0;background:rgba(7,28,18,.5);z-index:210;opacity:0;pointer-events:none;transition:opacity .3s}
  .drawer-backdrop.show{opacity:1;pointer-events:auto}
  .sched-head{display:none}
  .sched-row{grid-template-columns:52px 1fr auto;gap:10px 16px;padding:20px 18px}
  .sched-order{font-size:20px;grid-row:span 2}
  .sched-place{opacity:.75;grid-column:2;font-size:14px}
  .sched-status{grid-column:3;grid-row:span 2;text-align:right}
  .spot-grid{grid-template-columns:1fr 1fr}
  .spot-card--main,.spot-card--side{grid-column:span 2}
  .spots-stack{grid-column:span 2;grid-template-columns:1fr 1fr}
  .step-grid{grid-template-columns:repeat(2,1fr)}
  .fit-item{grid-column:span 6;border-left:0;border-top:1px solid var(--line)}
  .fit-item:first-child{border-top:0}
  .fit-item:nth-child(2){border-top:0}
}
@media (max-width:720px){
  .cat-hero{min-height:430px}
  .cat-hero h1{font-size:clamp(34px,8vw,52px)}
  .cat-hero__inner{padding-block:54px 44px}
  .spot-grid,.spots-stack{grid-template-columns:1fr}
  .spot-card--main,.spot-card--side{grid-column:1}
  .spot-card--main figure{aspect-ratio:16/10}
  .spot-card--side figure{aspect-ratio:16/8.5}
  .sched-row{grid-template-columns:1fr 68px;gap:8px 10px;padding:18px 14px}
  .sched-order{display:none}
  .sched-place{grid-column:1;font-size:14px}
  .sched-status{grid-column:2;grid-row:1;text-align:right}
  .sched-title h4{font-size:17px}
  .step-grid{grid-template-columns:1fr}
  .fit-grid{grid-template-columns:1fr}
  .fit-item,.fit-item:first-child,.fit-item:nth-child(2){border-left:0;border-top:1px solid var(--line)}
  .fit-item:first-child{border-top:0}
  .cta-inner{grid-template-columns:1fr;gap:24px}
  .cta-btn{justify-content:flex-start}
  .faq-answer{padding-right:0}
}
.site-footer{
  background:var(--deep);color:rgba(255,255,255,.72);padding:60px 0 26px;margin-top:0;font-size:15px;
}
.site-footer .wrap{display:flex;flex-direction:column}
.footer-grid{display:grid;grid-template-columns:1.2fr .7fr .8fr;gap:48px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.13)}
.footer-brand .brand-main{font-size:28px;font-weight:900;color:#fff;line-height:1.1;letter-spacing:.03em}
.footer-brand .brand-sub{display:inline-block;margin-top:5px;color:var(--lime);font-size:13px;letter-spacing:.14em;font-weight:700;background:rgba(198,239,81,.08);border:1px solid rgba(198,239,81,.22);padding:2px 10px;border-radius:999px}
.footer-desc{margin-top:18px;max-width:440px;color:rgba(255,255,255,.66);font-size:14px;line-height:1.9}
.footer-title{color:#fff;font-size:16px;font-weight:800;margin-bottom:18px;letter-spacing:.05em}
.footer-title::after{content:"";display:block;width:18px;height:3px;background:var(--lime);border-radius:2px;margin-top:10px}
.footer-nav li{margin-bottom:12px}
.footer-nav a{color:rgba(255,255,255,.68);font-size:14px;transition:color .2s,padding-left .2s}
.footer-nav a:hover{color:var(--lime);padding-left:4px}
.footer-bottom{
  padding-top:24px;display:flex;justify-content:space-between;gap:18px;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}
@media (max-width:1023px){
  .site-footer{margin-left:0}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-wrapper{padding:44px 0 22px}
}

/* roulang page: category2 */
:root{
  --deep:#0C2A1F;
  --green:#17694A;
  --green-soft:#2A8E6A;
  --lime:#C6EF51;
  --lime-hover:#D4F46A;
  --orange:#E96416;
  --paper:#F5F1E8;
  --paper-2:#EAE4D6;
  --paper-3:#E0DACB;
  --card:#FFFFFF;
  --text:#17241E;
  --text-2:#5C6E65;
  --line:rgba(23,36,30,0.14);
  --line-deep:rgba(23,36,30,0.28);
  --radius:10px;
  --radius-sm:8px;
  --shadow:0 8px 24px rgba(12,42,31,0.07);
  --shadow-lg:0 12px 28px rgba(12,42,31,0.14);
  --font:system-ui,"PingFang SC","Microsoft YaHei UI","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
  font-family:var(--font);
  font-size:16px;
  line-height:1.8;
  color:var(--text);
  background:var(--paper);
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}
body.nav-open{overflow:hidden}
img{max-width:100%;display:block;border:0}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{
  outline:3px solid rgba(198,239,81,.7);
  outline-offset:2px;
  box-shadow:0 0 0 3px rgba(198,239,81,.35);
}
::selection{background:#C6EF51;color:#0C2A1F}
.wrap{
  max-width:1220px;
  margin-inline:auto;
  padding-inline:40px;
}
.section-block{padding:88px 0}
.sec-head{margin-bottom:44px}
.sec-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.sec-kicker::before{
  content:"";
  width:28px;
  height:3px;
  border-radius:2px;
  background:var(--lime);
}
.sec-title{
  font-size:clamp(24px,3vw,40px);
  line-height:1.3;
  font-weight:800;
  text-wrap:balance;
  color:var(--deep);
}
.sec-desc{
  max-width:780px;
  margin-top:14px;
  color:var(--text-2);
  font-size:16px;
}
.btn{
  min-height:48px;
  padding:.65rem 1.7rem;
  border-radius:var(--radius-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  font-weight:800;
  font-size:15px;
  line-height:1.2;
  transition:background .2s ease,color .2s ease,border-color .2s ease,
    box-shadow .2s ease,transform .18s ease;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn-lime{
  background:var(--lime);
  color:var(--deep);
}
.btn-lime:hover{
  background:var(--lime-hover);
  transform:translate(-1px,-1px);
  box-shadow:0 10px 20px rgba(12,42,31,.12);
}
.btn-line-light{
  border-color:rgba(255,255,255,.68);
  color:#fff;
  background:transparent;
}
.btn-line-light:hover{
  border-color:var(--lime);
  color:var(--lime);
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
}
.btn-deep-line{
  border-color:var(--line-deep);
  color:var(--deep);
  background:#fff;
}
.btn-deep-line:hover{
  border-color:var(--green);
  color:var(--green);
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}
.btn:active{transform:translateY(1px);box-shadow:none}

/* 左侧竖栏 */
.site-rail{
  position:fixed;
  inset:0 auto 0 0;
  z-index:60;
  width:104px;
  height:100dvh;
  background:var(--deep);
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0 8px 18px;
}
.rail-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:108px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.14);
  margin-bottom:8px;
}
.brand-main{
  display:block;
  color:#fff;
  font-size:21px;
  font-weight:900;
  line-height:1.25;
  letter-spacing:.04em;
}
.brand-sub{
  display:block;
  color:var(--lime);
  font-size:10.5px;
  font-weight:600;
  letter-spacing:.18em;
  line-height:1.3;
  margin-top:5px;
}
.rail-nav{
  width:100%;
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.rail-nav a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:11px 2px 10px;
  color:rgba(255,255,255,.63);
  font-size:12.5px;
  font-weight:600;
  border-left:3px solid transparent;
  transition:color .2s ease,background .2s ease,border-color .2s ease;
  border-radius:0 8px 8px 0;
  position:relative;
}
.rail-nav a svg{
  width:23px;
  height:23px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:stroke .2s;
}
.rail-nav a:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}
.rail-nav a.active{
  color:#fff;
  border-left-color:var(--lime);
  background:linear-gradient(90deg,rgba(198,239,81,.13),rgba(198,239,81,.03));
}
.rail-nav a.active svg{
  stroke:var(--lime);
}
.rail-copy{
  margin-top:auto;
  text-align:center;
  color:rgba(255,255,255,.36);
  font-size:10px;
  line-height:1.6;
  font-style:normal;
}

/* 移动端顶栏 */
.m-header{
  display:none;
}
.drawer{
  display:none;
}

/* 主内容容器 */
.site-main{
  margin-left:104px;
  min-height:100vh;
}

/* 分类页头 */
.category-hero{
  position:relative;
  color:#fff;
  background:
    linear-gradient(110deg,rgba(7,28,18,.97) 0%,rgba(10,42,28,.86) 42%,rgba(14,54,35,.55) 100%),
    url("/assets/images/backpic/back-1.png") center/cover no-repeat;
  min-height:440px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:4px solid var(--lime);
}
.category-hero::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-120px;
  width:330px;
  height:330px;
  border:1px solid rgba(198,239,81,.28);
  border-radius:50%;
  background:radial-gradient(circle,rgba(198,239,81,.12),transparent 68%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1220px;
  margin:0 auto;
  padding:90px 40px 70px;
}
.page-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--lime);
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  margin-bottom:20px;
  border:1px solid rgba(198,239,81,.38);
  padding:5px 13px;
  border-radius:999px;
  background:rgba(198,239,81,.08);
}
.page-kicker::before{
  content:"";
  width:8px;
  height:8px;
  background:var(--lime);
  border-radius:50%;
}
.page-title{
  font-size:clamp(30px,4.6vw,58px);
  font-weight:900;
  line-height:1.15;
  letter-spacing:.01em;
  text-wrap:balance;
}
.page-lead{
  max-width:760px;
  font-size:clamp(15px,1.5vw,18px);
  color:rgba(255,255,255,.86);
  margin-top:24px;
  line-height:1.9;
  padding-bottom:2px;
  border-bottom:2px solid rgba(198,239,81,.24);
}
.page-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:26px;
  color:rgba(255,255,255,.66);
  font-size:13.5px;
}
.page-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.page-meta span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--lime);
}
.hero-actions{
  margin-top:38px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

/* 频道栏目 */
.topic-band{
  background:var(--paper);
}
.topic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.topic-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 32px 38px;
  position:relative;
  overflow:hidden;
  transition:box-shadow .25s ease,border-color .25s ease,transform .25s ease;
}
.topic-card::after{
  content:attr(data-index);
  position:absolute;
  right:14px;
  top:-12px;
  font-size:78px;
  font-weight:900;
  color:rgba(23,36,30,.055);
  line-height:1;
  font-style:italic;
  pointer-events:none;
}
.topic-card:hover{
  border-color:rgba(23,105,74,.4);
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}
.topic-icon{
  width:48px;
  height:48px;
  background:rgba(23,105,74,.1);
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  margin-bottom:24px;
}
.topic-icon svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.topic-title{
  font-size:20px;
  font-weight:800;
  color:var(--deep);
  line-height:1.5;
}
.topic-text{
  margin-top:12px;
  color:var(--text-2);
  font-size:15px;
  line-height:1.85;
  text-align:left;
  overflow-wrap:break-word;
}
.topic-tag{
  display:inline-block;
  background:rgba(198,239,81,.22);
  border:1px solid rgba(23,105,74,.12);
  color:var(--deep);
  font-size:12px;
  font-weight:700;
  border-radius:999px;
  padding:2px 12px;
  margin-top:20px;
}

/* 资讯快览 */
.latest-band{
  background:var(--paper-2);
  border-top:1px solid var(--line);
}
.feature-card{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  transition:box-shadow .28s ease;
}
.feature-card:hover{
  box-shadow:var(--shadow-lg);
}
.feature-media{
  position:relative;
  min-height:300px;
  display:block;
  overflow:hidden;
  background:var(--paper-3);
}
.feature-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.feature-card:hover .feature-media img{
  transform:scale(1.035);
}
.feature-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(12,42,31,.3),transparent 58%);
}
.feature-badge{
  position:absolute;
  z-index:2;
  top:22px;
  left:22px;
  background:var(--lime);
  color:var(--deep);
  padding:5px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
}
.feature-body{
  padding:44px 42px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.feature-label{
  color:var(--green);
  font-size:13px;
  font-weight:800;
  letter-spacing:.1em;
  margin-bottom:12px;
}
.feature-title{
  font-size:clamp(20px,2vw,30px);
  font-weight:800;
  line-height:1.4;
  color:var(--deep);
  text-wrap:balance;
  transition:color .2s;
}
.feature-card:hover .feature-title{
  color:var(--green);
}
.feature-summary{
  margin-top:16px;
  color:var(--text-2);
  line-height:1.9;
  font-size:15px;
  max-width:510px;
}
.feature-meta{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:16px 24px;
  color:#7A847E;
  font-size:13px;
}
.feature-meta span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.feature-meta span::before{
  content:"";
  width:5px;
  height:5px;
  background:var(--lime);
  border-radius:50%;
}
.arrow-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--deep);
  font-weight:800;
  font-size:15px;
  margin-top:26px;
  width:fit-content;
}
.arrow-link .go{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(198,239,81,.25);
  color:var(--deep);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
  transition:transform .25s ease,background .25s ease;
}
.feature-card:hover .arrow-link .go{
  transform:translateX(5px);
  background:var(--lime);
}
.news-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:34px;
}
.head-note{
  max-width:380px;
  color:var(--text-2);
  font-size:14px;
  line-height:1.7;
  text-align:right;
}
.post-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.post-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  transition:border-color .22s ease,box-shadow .25s ease;
}
.post-card:hover{
  border-color:rgba(23,105,74,.35);
  box-shadow:var(--shadow-lg);
}
.post-card-row{
  display:grid;
  grid-template-columns:205px minmax(0,1fr);
}
.post-img{
  position:relative;
  min-height:190px;
  overflow:hidden;
  background:var(--paper-3);
}
.post-img img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}
.post-card:hover .post-img img{
  transform:scale(1.04);
}
.post-badge{
  position:absolute;
  z-index:2;
  top:14px;
  left:14px;
  font-size:12px;
  font-weight:800;
  color:var(--deep);
  background:var(--lime);
  border-radius:999px;
  padding:3px 12px;
  box-shadow:0 2px 8px rgba(12,42,31,.16);
}
.post-content{
  padding:26px 26px 24px;
  display:flex;
  flex-direction:column;
}
.post-cat{
  font-size:12.5px;
  font-weight:800;
  color:var(--green);
  letter-spacing:.12em;
  margin-bottom:9px;
}
.post-title{
  font-size:18px;
  font-weight:800;
  color:var(--deep);
  line-height:1.55;
  transition:color .2s ease;
  text-wrap:balance;
}
.post-card:hover .post-title{
  color:var(--green);
}
.post-excerpt{
  color:var(--text-2);
  font-size:14.5px;
  margin-top:11px;
  line-height:1.8;
  flex:1;
}
.post-date{
  display:block;
  margin-top:18px;
  color:#7A847E;
  font-size:12.5px;
}
.post-go{
  display:inline-flex;
  align-items:center;
  gap:4px;
  transition:transform .25s ease;
  color:var(--green);
  font-weight:700;
  margin-top:12px;
  font-size:14px;
}
.post-card:hover .post-go{
  transform:translateX(5px);
}

/* 内容整理方式 */
.integrity-band{
  background:#fff;
  border-top:1px solid var(--line);
}
.integrity-head{
  max-width:660px;
}
.line-list{
  margin-top:34px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.line-item{
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:34px 30px 36px;
  background:var(--paper);
  position:relative;
  transition:background .2s ease;
  min-height:245px;
}
.line-item:hover{
  background:#fff;
}
.line-num{
  font-size:44px;
  font-weight:900;
  color:rgba(23,105,74,.12);
  line-height:1;
  letter-spacing:-.04em;
  display:block;
}
.line-title{
  font-size:18px;
  font-weight:800;
  color:var(--deep);
  margin-top:20px;
  line-height:1.5;
}
.line-desc{
  margin-top:12px;
  color:var(--text-2);
  font-size:14.5px;
  line-height:1.8;
  text-align:left;
}

/* CTA 引流区 */
.cta-shell{
  padding:84px 0;
}
.cta-panel{
  background:
    linear-gradient(125deg,rgba(12,42,31,.96),rgba(17,68,44,.92)),
    url("/assets/images/backpic/back-2.png") center/cover no-repeat;
  color:#fff;
  border-radius:18px;
  overflow:hidden;
  padding:66px 58px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
  border:1px solid rgba(198,239,81,.28);
  box-shadow:var(--shadow-lg);
}
.cta-left{
  max-width:650px;
}
.cta-label{
  color:var(--lime);
  font-size:13px;
  letter-spacing:.18em;
  font-weight:700;
  margin-bottom:14px;
}
.cta-title{
  font-size:clamp(24px,3vw,38px);
  font-weight:900;
  line-height:1.35;
  text-wrap:balance;
}
.cta-desc{
  margin-top:18px;
  color:rgba(255,255,255,.78);
  font-size:15.5px;
  line-height:1.9;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.cta-note{
  font-size:13px;
  color:rgba(255,255,255,.56);
  margin-top:20px;
  line-height:1.8;
}
.cta-right{
  min-width:230px;
  flex-shrink:0;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:34px 30px;
}
.cta-quote{
  font-size:15px;
  color:rgba(255,255,255,.82);
  line-height:2;
  border-left:3px solid var(--lime);
  padding-left:18px;
}

/* FAQ */
.faq-band{
  background:var(--paper);
}
.faq-list{
  margin-top:10px;
}
.faq-item{
  border-top:1px solid var(--line);
}
.faq-item:last-child{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:26px 4px;
  text-align:left;
  color:var(--deep);
  font-size:18px;
  font-weight:800;
  line-height:1.5;
  transition:color .2s ease;
}
.faq-q:hover{
  color:var(--green);
}
.faq-icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border-radius:50%;
  border:1px solid var(--line-deep);
  position:relative;
  transition:background .25s ease,border-color .25s ease,transform .25s ease;
}
.faq-icon::before,.faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:15px;
  height:2px;
  background:var(--deep);
  border-radius:2px;
  transform:translate(-50%,-50%);
  transition:background .25s ease,transform .25s ease;
}
.faq-icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.faq-item.open .faq-icon{
  background:var(--lime);
  border-color:var(--lime);
  transform:rotate(180deg);
}
.faq-item.open .faq-icon::before{
  transform:translate(-50%,-50%) rotate(90deg);
  background:var(--deep);
}
.faq-item.open .faq-icon::after{
  background:var(--deep);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-a-inner{
  max-width:760px;
  padding:0 60px 30px 4px;
  color:var(--text-2);
  font-size:15px;
  line-height:1.9;
}
.faq-a p+p{
  margin-top:10px;
}

/* 页脚 */
.site-footer{
  background:var(--deep);
  color:rgba(255,255,255,.82);
  padding:72px 0 34px;
  margin-left:104px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2.2fr 1fr 1.3fr;
  gap:60px;
}
.footer-brand .brand-main{
  font-size:25px;
}
.footer-brand .brand-sub{
  font-size:12px;
  letter-spacing:.2em;
  margin-top:6px;
}
.footer-desc{
  margin-top:22px;
  color:rgba(255,255,255,.58);
  font-size:14px;
  line-height:1.9;
  max-width:380px;
}
.footer-title{
  color:#fff;
  font-size:15px;
  font-weight:800;
  margin-bottom:20px;
  padding-top:2px;
}
.footer-nav li{
  margin-bottom:12px;
}
.footer-nav a{
  color:rgba(255,255,255,.62);
  font-size:14px;
  transition:color .2s ease,padding-left .2s ease;
}
.footer-nav a:hover{
  color:var(--lime);
  padding-left:6px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:50px;
  padding-top:24px;
  color:rgba(255,255,255,.36);
  font-size:13px;
}

/* 响应式 */
@media(max-width:1200px){
  .wrap{
    padding-inline:36px;
  }
  .hero-inner{
    padding-inline:36px;
  }
  .feature-body{
    padding:36px 32px;
  }
  .post-card-row{
    grid-template-columns:180px minmax(0,1fr);
  }
  .post-content{
    padding:22px 20px;
  }
  .cta-panel{
    padding:52px 44px;
  }
  .footer-grid{
    gap:40px;
  }
}
@media(max-width:1023px){
  .site-rail{
    display:none;
  }
  .site-main{
    margin-left:0;
  }
  .site-footer{
    margin-left:0;
  }
  .m-header{
    display:flex;
    position:sticky;
    top:0;
    z-index:80;
    height:60px;
    align-items:center;
    gap:8px;
    background:var(--deep);
    padding:0 14px;
    border-bottom:2px solid var(--lime);
    box-shadow:0 4px 16px rgba(12,42,31,.18);
  }
  .m-menu-btn{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border-radius:8px;
  }
  .m-menu-btn svg{
    width:24px;
    height:24px;
    stroke:#fff;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
  }
  .m-brand{
    text-align:center;
    flex:1;
    min-width:0;
  }
  .m-brand .brand-main{
    font-size:18px;
  }
  .m-brand .brand-sub{
    font-size:10px;
    letter-spacing:.14em;
    margin-top:1px;
  }
  .m-header-cta{
    flex:0 0 auto;
    background:var(--lime);
    color:var(--deep);
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    padding:6px 16px;
    line-height:1.4;
  }
  .drawer{
    position:fixed;
    top:60px;
    left:0;
    bottom:0;
    width:278px;
    background:var(--deep);
    z-index:75;
    padding:26px 20px 30px;
    display:flex;
    flex-direction:column;
    transform:translateX(-104%);
    transition:transform .3s ease;
    border-top:1px solid rgba(255,255,255,.1);
    box-shadow:10px 0 30px rgba(0,0,0,.14);
  }
  body.nav-open .drawer{
    transform:translateX(0);
  }
  .drawer-nav{
    margin-top:12px;
    display:flex;
    flex-direction:column;
    gap:6px;
  }
  .drawer-nav a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:15px 14px;
    border-radius:10px;
    color:rgba(255,255,255,.6);
    font-weight:700;
    font-size:16px;
  }
  .drawer-nav a svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .drawer-nav a:hover{
    background:rgba(255,255,255,.06);
    color:#fff;
  }
  .drawer-nav a.active{
    background:rgba(198,239,81,.12);
    color:var(--lime);
    border-left:3px solid var(--lime);
    border-radius:8px;
  }
  .drawer-copy{
    margin-top:auto;
    color:rgba(255,255,255,.3);
    font-size:12px;
    line-height:1.8;
  }
  .category-hero{
    min-height:400px;
  }
  .hero-inner{
    padding:70px 32px 56px;
  }
  .section-block{
    padding:72px 0;
  }
  .topic-grid{
    grid-template-columns:1fr;
  }
  .feature-card{
    grid-template-columns:1fr;
  }
  .feature-media{
    min-height:250px;
  }
  .feature-body{
    padding:30px 26px;
  }
  .post-grid{
    grid-template-columns:1fr;
  }
  .post-card-row{
    grid-template-columns:220px minmax(0,1fr);
  }
  .line-list{
    grid-template-columns:1fr;
  }
  .cta-panel{
    flex-direction:column;
    padding:48px 32px;
  }
  .cta-right{
    align-self:stretch;
    min-width:0;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:639px){
  .wrap{
    padding-inline:18px;
  }
  .section-block{
    padding:56px 0;
  }
  .hero-inner{
    padding:54px 18px 46px;
    width:100%;
  }
  .category-hero{
    min-height:auto;
  }
  .page-lead{
    margin-top:18px;
  }
  .page-meta{
    flex-direction:column;
    gap:6px;
  }
  .sec-head{
    margin-bottom:30px;
  }
  .feature-card{
    border-radius:12px;
  }
  .feature-media{
    min-height:215px;
  }
  .post-card-row{
    grid-template-columns:1fr;
  }
  .post-img{
    min-height:190px;
  }
  .news-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .head-note{
    max-width:none;
    text-align:left;
  }
  .faq-q{
    font-size:16px;
    padding:20px 0;
  }
  .faq-a-inner{
    padding:0 0 24px;
  }
  .cta-shell{
    padding:54px 0;
  }
  .cta-panel{
    padding:40px 20px;
    border-radius:14px;
  }
  .cta-actions .btn{
    width:100%;
  }
  .section-block:last-child{
    padding-bottom:56px;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
  .site-footer{
    padding:56px 0 26px;
  }
  .footer-bottom{
    flex-direction:column;
    margin-top:34px;
  }
  .feature-body{
    padding:24px 18px;
  }
  .hero-actions .btn{
    width:100%;
  }
}
