/* roulang page: index */
:root {
  --primary: #0B6B4F;
  --primary-dark: #08241C;
  --primary-light: #1B9E7F;
  --accent: #D4A643;
  --accent-light: #E4B962;
  --bg: #F5F3EE;
  --card: #FFFFFF;
  --text: #1F2937;
  --text-light: #6B7280;
  --border: #E8ECE9;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(8, 36, 28, 0.06);
  --shadow-hover: 0 8px 30px rgba(8, 36, 28, 0.12);
  --container: 1200px;
  --transition: 0.3s ease;
  --font-primary: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  --gradient-brand: linear-gradient(135deg, #08241C 0%, #0B6B4F 55%, #1B9E7F 100%);
  --gradient-cta: linear-gradient(135deg, #D4A643 0%, #E4B962 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-primary); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.nav-lock { overflow: hidden; }
img { max-width: 100%; display: block; border-radius: var(--radius-md); }
a { text-decoration: none; color: inherit; }
button, input { font-family: inherit; font-size: 1rem; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 40px; font-weight: 800; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
::selection { background: var(--accent); color: var(--primary-dark); }
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-head { margin-bottom: 40px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; }
.section-head h2 { position: relative; }
.section-head h2::after { content: ""; display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--gradient-cta); margin-top: 10px; }
.section-sub { color: var(--text-light); font-size: 14px; max-width: 640px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border: none; cursor: pointer; border-radius: var(--radius-sm); padding: 12px 24px; transition: var(--transition); min-height: 44px; white-space: nowrap; }
.btn-primary { background: var(--gradient-cta); color: #1F2937; box-shadow: 0 4px 14px rgba(212, 166, 67, 0.3); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 6px 22px rgba(212, 166, 67, 0.45); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(11, 107, 79, 0.08); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn svg { width: 18px; height: 18px; }
.badge { display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 600; border-radius: var(--radius-pill); background: var(--gradient-cta); color: #1F2937; letter-spacing: 0.3px; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--card); box-shadow: 0 1px 8px rgba(8, 36, 28, 0.06); }
.topbar { background: var(--card); border-bottom: 1px solid var(--border); }
.topbar-inner { max-width: var(--container); margin: 0 auto; padding: 0 20px; height: 64px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--gradient-brand); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; }
.logo-text { font-size: 18px; font-weight: 800; letter-spacing: 0.2px; color: var(--primary-dark); line-height: 1.2; }
.logo-text small { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.4px; color: var(--primary-light); text-transform: uppercase; }
.search-wrap { flex: 1; display: flex; justify-content: center; max-width: 420px; margin: 0 auto; }
.search-form { position: relative; width: 100%; }
.search-form input { width: 100%; height: 42px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); padding: 0 46px 0 18px; background: var(--bg); color: var(--text); font-size: 14px; transition: var(--transition); }
.search-form input:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(11, 107, 79, 0.08); }
.search-form button { position: absolute; top: 5px; right: 5px; width: 32px; height: 32px; border: none; border-radius: 50%; background: var(--primary); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.search-form button:hover { background: var(--primary-light); }
.search-form button svg { width: 16px; height: 16px; }
.search-mobile-btn { display: none; }
.topbar-cta { flex-shrink: 0; }
.channels-wrap { background: var(--primary-dark); box-shadow: 0 2px 6px rgba(8, 36, 28, 0.2); }
.channels { max-width: var(--container); margin: 0 auto; padding: 0 20px; height: 48px; display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.channels::-webkit-scrollbar { display: none; }
.channels a { flex-shrink: 0; padding: 7px 20px; border-radius: var(--radius-pill); color: rgba(255, 255, 255, 0.8); font-size: 14px; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.channels a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.channels a.active { background: var(--gradient-cta); color: #1F2937; }
.channels a:focus-visible { outline-color: var(--accent); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center; padding: 72px 0 100px; }
.hero-bg { position: absolute; inset: 0; background: url('/assets/images/backpic/back-1.webp') center / cover no-repeat; opacity: 0.14; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-brand); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-copy { color: #fff; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.18); padding: 6px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; backdrop-filter: blur(6px); margin-bottom: 24px; }
.hero-kicker span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { color: #fff; font-size: 44px; font-weight: 800; line-height: 1.28; margin-bottom: 20px; letter-spacing: 0.5px; }
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero-sub { color: rgba(255, 255, 255, 0.78); font-size: 16px; line-height: 1.8; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions .btn { min-width: 140px; }
.hero-actions .btn-outline-light svg { width: 18px; height: 18px; }
.hero-visual { position: relative; }
.hero-img { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); }
.hero-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8, 36, 28, 0.55) 100%); pointer-events: none; border-radius: 24px; }
.hero-img img { width: 100%; height: 320px; object-fit: cover; border-radius: 24px; }
.hero-img-caption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; color: #fff; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.hero-img-caption::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.hero-badges { position: absolute; left: -24px; right: -24px; bottom: -20px; display: flex; flex-wrap: wrap; gap: 12px; z-index: 3; }
.hero-badge { flex: 1; min-width: 130px; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(8px); border-radius: var(--radius-md); padding: 14px 16px; box-shadow: 0 8px 24px rgba(8, 36, 28, 0.22); }
.hero-badge .num { font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1.2; }
.hero-badge .num sup { font-size: 13px; font-weight: 700; top: -6px; position: relative; }
.hero-badge .label { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.hero-badge .label strong { display: block; color: var(--text); font-weight: 600; }

/* ---- Directory ---- */
.directory { background: var(--bg); }
.directory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.index-card { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.index-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-cta); opacity: 0; transition: var(--transition); }
.index-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.index-card:hover::before { opacity: 1; }
.index-card-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: rgba(11, 107, 79, 0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.index-card-icon svg { width: 26px; height: 26px; }
.index-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.index-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.index-card-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.index-card-link:hover { gap: 8px; color: var(--accent); }
.index-card-link svg { width: 16px; height: 16px; }

/* ---- Featured ---- */
.featured { background: #fff; }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.featured-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.featured-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.featured-card:hover .card-img img { transform: scale(1.04); }
.featured-card-wide { grid-column: span 2; flex-direction: row; }
.featured-card-wide .card-img { width: 52%; flex-shrink: 0; }
.featured-card-wide .card-img img { height: 100%; min-height: 240px; object-fit: cover; }
.card-img { position: relative; overflow: hidden; background: var(--bg); }
.card-img img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.45s ease; }
.featured-card .card-img .badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; transition: var(--transition); display: block; }
.featured-card-wide .card-title { font-size: 21px; }
.card-title:hover { color: var(--primary); }
.card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 12px; }
.card-meta .date { display: flex; align-items: center; gap: 4px; font-variant-numeric: tabular-nums; }
.card-meta .date svg { width: 14px; height: 14px; }
.card-meta .views { display: flex; align-items: center; gap: 4px; font-variant-numeric: tabular-nums; }
.card-meta .views svg { width: 14px; height: 14px; }
.card-link-more { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 2px; transition: var(--transition); }
.card-link-more:hover { gap: 6px; }

/* ---- Latest ---- */
.latest { background: var(--bg); }
.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.latest-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.latest-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.latest-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.latest-card-top .badge { font-size: 12px; }
.latest-card-top time { font-size: 13px; color: var(--text-light); font-variant-numeric: tabular-nums; }
.latest-card h3 { font-size: 18px; font-weight: 700; line-height: 1.45; margin-bottom: 10px; }
.latest-card h3 a { display: block; transition: var(--transition); }
.latest-card h3 a:hover { color: var(--primary); }
.latest-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.latest-card .read-more { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: var(--transition); }
.latest-card .read-more:hover { gap: 8px; color: var(--accent); }
.latest-card .read-more svg { width: 15px; height: 15px; }
.empty-state { border: 2px dashed var(--border); border-radius: var(--radius-lg); padding: 56px 24px; text-align: center; background: var(--card); color: var(--text-light); }
.empty-state svg { width: 40px; height: 40px; color: var(--border); margin: 0 auto 14px; }
.empty-state p { font-size: 15px; }

/* ---- Related ---- */
.related { background: #fff; }
.related-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.related-card { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow); transition: var(--transition); align-items: center; }
.related-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.related-card img { width: 150px; height: 96px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.related-card-body { flex: 1; min-width: 0; }
.related-card-body h3 { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: var(--transition); }
.related-card-body h3:hover { color: var(--primary); }
.related-card-body .meta { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 10px; }
.related-card-body .meta span { display: flex; align-items: center; gap: 4px; }
.related-card-body .meta svg { width: 13px; height: 13px; }

/* ---- CTA ---- */
.cta-band { background: var(--bg); }
.cta-box { background: var(--gradient-brand); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-box::before { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(212, 166, 67, 0.12); }
.cta-box::after { content: ""; position: absolute; left: 40%; bottom: -100px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); }
.cta-content { position: relative; z-index: 2; max-width: 560px; }
.cta-content h2 { font-size: 28px; color: #fff; font-weight: 800; margin-bottom: 12px; letter-spacing: 0.3px; }
.cta-content p { color: rgba(255, 255, 255, 0.8); font-size: 15px; line-height: 1.7; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn { min-width: 140px; }
.cta-actions .btn svg { width: 18px; height: 18px; }

/* ---- FAQ ---- */
.faq { background: #fff; }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(11, 107, 79, 0.3); }
.faq-item.open { background: #F9FAF7; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; background: transparent; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 700; color: var(--text); transition: var(--transition); min-height: 54px; }
.faq-item.open .faq-q { font-weight: 800; color: var(--primary); }
.faq-q .icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; transition: var(--transition); }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; width: 11px; height: 1.8px; background: var(--text-light); border-radius: 2px; transition: var(--transition); }
.faq-q .icon::after { transform: rotate(90deg); }
.faq-item.open .faq-q .icon { border-color: var(--primary); background: var(--primary); }
.faq-item.open .faq-q .icon::before, .faq-item.open .faq-q .icon::after { background: #fff; }
.faq-item.open .faq-q .icon::after { transform: rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 15px; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; }

/* ---- Footer ---- */
.site-footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.7); }
.footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 300px; color: rgba(255, 255, 255, 0.6); }
.footer-brand .logo-icon { background: rgba(255, 255, 255, 0.1); }
.footer-col h4 { font-size: 15px; color: #fff; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ""; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul a svg { width: 13px; height: 13px; opacity: 0; transition: var(--transition); }
.footer-col ul a:hover svg { opacity: 1; }
.footer-contact li { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255, 255, 255, 0.4); }
.footer-bottom a { color: rgba(255, 255, 255, 0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom .sep { margin: 0 8px; opacity: 0.5; }

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 40px; }
  .hero h1 { font-size: 34px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card-wide { grid-column: span 2; }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .related-track { grid-template-columns: 1fr; }
  .hero-badges { left: 0; right: 0; position: static; margin-top: 32px; }
  .tab-num { margin-left: 100px; }
}
@media (max-width: 767px) {
  body { font-size: 15px; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .topbar-inner { height: 58px; padding: 0 14px; gap: 12px; }
  .search-wrap { display: none; position: absolute; top: 58px; left: 0; right: 0; background: var(--card); padding: 12px 16px; box-shadow: 0 8px 20px rgba(8, 36, 28, 0.12); z-index: 1001; }
  .search-wrap.open { display: block; }
  .search-form input { height: 44px; }
  .search-mobile-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; border-radius: 50%; background: transparent; color: var(--primary); cursor: pointer; margin-left: auto; }
  .search-mobile-btn svg { width: 20px; height: 20px; }
  .topbar-cta { display: none; }
  .logo-text { font-size: 15px; }
  .logo-text small { font-size: 9px; }
  .channels { padding: 0 12px; gap: 6px; }
  .channels a { padding: 7px 14px; font-size: 13px; }
  .hero { min-height: 360px; padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 28px; line-height: 1.3; }
  .hero-sub { font-size: 14px; line-height: 1.7; margin-bottom: 26px; }
  .hero-actions .btn { min-width: 130px; padding: 10px 18px; font-size: 14px; }
  .hero-img img { height: 220px; }
  .hero-badges { position: static; margin-top: 26px; }
  .hero-badge .num { font-size: 20px; }
  .directory-grid { grid-template-columns: 1fr; }
  .index-card { padding: 22px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card-wide { grid-column: span 1; flex-direction: column; }
  .featured-card-wide .card-img { width: 100%; }
  .featured-card-wide .card-img img { height: 190px; }
  .card-img img { height: 180px; }
  .card-title { font-size: 17px; }
  .latest-grid { grid-template-columns: 1fr; }
  .latest-card { padding: 22px; }
  .related-card { flex-direction: column; align-items: flex-start; }
  .related-card img { width: 100%; height: 150px; }
  .related-card-body h3 { font-size: 16px; }
  .cta-box { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .cta-content h2 { font-size: 22px; }
  .cta-actions .btn { min-width: 130px; padding: 10px 18px; font-size: 14px; }
  .faq-q { padding: 16px 18px; font-size: 15px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 14px; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 0 24px; gap: 32px; }
  .footer-bottom { padding: 16px 12px; font-size: 12px; line-height: 1.8; }
  .footer-contact li { font-size: 13px; }
}
@media (max-width: 480px) {
  .hero-badges { flex-direction: column; }
  .hero-badge { width: 100%; }
  .logo-icon { width: 32px; height: 32px; }
  .btn { min-height: 44px; }
}

/* roulang page: article */
:root{
  --primary:#0B6B4F;
  --secondary:#1B9E7F;
  --accent:#D4A643;
  --accent-light:#E4B962;
  --dark:#08241C;
  --light:#F5F3EE;
  --card:#FFFFFF;
  --text:#1F2937;
  --text-muted:#6B7280;
  --border:#E8ECE9;
  --radius-lg:20px;
  --radius-md:16px;
  --radius-sm:12px;
  --radius-pill:999px;
  --shadow-sm:0 4px 20px rgba(8,36,28,0.06);
  --shadow-hover:0 8px 30px rgba(8,36,28,0.12);
  --gradient-brand:linear-gradient(135deg,#08241C 0%,#0B6B4F 55%,#1B9E7F 100%);
  --gradient-accent:linear-gradient(135deg,#D4A643 0%,#E4B962 100%);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;background:var(--light);color:var(--text);font-size:16px;line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:color .3s ease}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,textarea,select{font-family:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.num,time,.meta-time{font-variant-numeric:tabular-nums}

/* Button */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:700;border-radius:var(--radius-sm);padding:12px 24px;font-size:15px;line-height:1;transition:all .3s ease}
.btn:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.btn-primary{background:var(--gradient-accent);color:#1F2937}
.btn-primary:hover{filter:brightness(1.06);box-shadow:0 8px 24px rgba(212,166,67,.35);transform:translateY(-1px)}
.btn-primary:active{transform:translateY(1px)}
.btn-outline{border:1px solid rgba(255,255,255,.85);color:#fff;background:transparent}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:#fff}
.btn-sm{padding:10px 18px;font-size:14px}

/* Header */
.site-header{position:sticky;top:0;z-index:100}
.topbar{height:64px;background:#fff;border-bottom:1px solid var(--border)}
.topbar-inner{display:flex;align-items:center;height:100%;gap:20px}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-icon{width:36px;height:36px;border-radius:10px;background:var(--gradient-brand);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.logo-icon svg{width:20px;height:20px}
.logo-text{font-size:18px;font-weight:800;color:var(--dark);line-height:1.2;white-space:nowrap}
.logo-text small{display:block;font-size:11px;font-weight:500;color:var(--text-muted);letter-spacing:.04em}
.search-box{display:flex;align-items:center;background:#F0F1EF;border-radius:var(--radius-pill);padding:0 6px 0 16px;height:40px;width:220px;border:1px solid transparent;transition:border-color .3s ease}
.search-box:focus-within{border-color:var(--primary);background:#fff}
.search-box input{flex:1;border:none;background:transparent;font-size:14px;color:var(--text);outline:none}
.search-box input::placeholder{color:#9CA3AF}
.search-btn{width:32px;height:32px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:13px;transition:background .3s ease}
.search-btn:hover{background:var(--secondary)}
.topbar-cta{margin-left:auto;flex-shrink:0}
.nav-toggle{display:none;width:40px;height:40px;border-radius:10px;background:var(--light);color:var(--primary);font-size:18px;align-items:center;justify-content:center;flex-shrink:0}
.channels-wrap{height:48px;background:var(--dark);display:flex;align-items:center;position:relative;z-index:99}
.channels{display:flex;align-items:center;gap:10px;height:100%}
.channels a{display:inline-flex;align-items:center;padding:6px 18px;border-radius:var(--radius-pill);color:rgba(255,255,255,.8);font-size:14px;font-weight:600;white-space:nowrap;transition:all .3s ease}
.channels a:hover{background:rgba(255,255,255,.1);color:#fff}
.channels a.active{background:var(--gradient-accent);color:#1F2937;font-weight:700}

/* Article Hero */
.article-hero{position:relative;background:url('/assets/images/backpic/back-1.webp') center/cover no-repeat;padding:56px 0 48px}
.article-hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(8,36,28,.95) 0%,rgba(11,107,79,.9) 55%,rgba(27,158,127,.86) 100%)}
.article-hero-inner{position:relative;z-index:2;max-width:860px;margin:0 auto}
.breadcrumb{display:flex;align-items:center;flex-wrap:wrap;gap:8px;color:rgba(255,255,255,.72);font-size:13px;margin-bottom:18px}
.breadcrumb a{color:rgba(255,255,255,.85);transition:color .3s ease}
.breadcrumb a:hover{color:var(--accent-light)}
.breadcrumb .sep{opacity:.5}
.breadcrumb .current{color:rgba(255,255,255,.6);max-width:280px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.article-hero h1{color:#fff;font-size:40px;font-weight:800;line-height:1.3;margin-bottom:20px}
.article-meta{display:flex;align-items:center;flex-wrap:wrap;gap:18px;color:rgba(255,255,255,.85);font-size:14px}
.article-meta .meta-item{display:inline-flex;align-items:center;gap:7px}
.article-meta i{color:var(--accent-light)}

/* Article Main */
.article-main{background:var(--light);padding:48px 0 72px}
.article-container{max-width:860px}
.article-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:48px;margin-top:-24px;position:relative;z-index:5}
.article-content{font-size:16px;color:var(--text)}
.article-content p{margin:22px 0;line-height:1.7}
.article-content h2{font-size:28px;font-weight:700;margin:40px 0 18px;color:var(--dark);line-height:1.3}
.article-content h3{font-size:22px;font-weight:600;margin:32px 0 14px;color:var(--dark);line-height:1.3}
.article-content img{width:100%;height:auto;border-radius:var(--radius-lg);margin:26px 0}
.article-content figure{margin:28px 0}
.article-content figcaption{font-size:13px;color:var(--text-muted);text-align:center;margin-top:10px}
.article-content blockquote{border-left:4px solid var(--accent);background:#FBF7EF;padding:18px 22px;margin:26px 0;border-radius:0 12px 12px 0;color:#4A4A4A;font-size:15px}
.article-content ul,.article-content ol{padding-left:1.5em;margin:22px 0;line-height:1.8}
.article-content ul{list-style:disc}
.article-content ol{list-style:decimal}
.article-content li{margin:8px 0}
.article-content a{color:var(--primary);text-decoration:underline;text-underline-offset:3px}
.article-content a:hover{color:var(--secondary)}
.article-content table{display:block;width:100%;overflow-x:auto;border-collapse:collapse;margin:26px 0;font-size:14px;border-radius:12px}
.article-content th,.article-content td{border:1px solid var(--border);padding:12px 16px;text-align:left;white-space:nowrap}
.article-content th{background:#F0F5F2;color:var(--primary);font-weight:700}
.article-content tr:nth-child(even) td{background:#FAFBFA}
.article-content code{background:#F0F2F1;color:#0B6B4F;padding:2px 7px;border-radius:6px;font-size:14px}
.article-content pre{background:var(--dark);color:#D1F5E8;padding:22px;border-radius:var(--radius-md);overflow-x:auto;line-height:1.6;margin:26px 0}
.article-content pre code{background:transparent;color:inherit;padding:0}
.article-content hr{border:none;border-top:1px solid var(--border);margin:36px 0}

/* Article Footer */
.article-footer{margin-top:40px;padding-top:28px;border-top:1px solid var(--border)}
.article-tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px}
.tag{display:inline-flex;align-items:center;padding:6px 16px;border-radius:var(--radius-pill);background:#F0F5F2;color:var(--primary);font-size:13px;font-weight:600}
.article-pager{display:grid;grid-template-columns:1fr auto 1fr;gap:16px;align-items:center}
.pager-link{display:flex;flex-direction:column;gap:4px;font-size:14px;padding:14px 18px;border-radius:var(--radius-sm);background:#F7F9F8;border:1px solid var(--border);transition:all .3s ease}
.pager-link:hover{border-color:var(--primary);background:#F0F5F2}
.pager-link .dir{font-size:12px;color:var(--text-muted);font-weight:500}
.pager-link .title-text{font-weight:700;color:var(--text);font-size:14px}
.pager-link.next{text-align:right}
.pager-back{display:inline-flex;align-items:center;justify-content:center}
.pager-back a{display:inline-flex;align-items:center;gap:6px;padding:10px 20px;border-radius:var(--radius-sm);background:var(--dark);color:#fff;font-size:14px;font-weight:600;transition:background .3s ease}
.pager-back a:hover{background:var(--primary)}

/* Not Found */
.not-found{background:var(--card);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:72px 40px;text-align:center;margin-top:-24px;position:relative;z-index:5}
.not-found-icon{width:72px;height:72px;border-radius:50%;background:#F0F5F2;color:var(--primary);font-size:28px;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.not-found h2{font-size:26px;color:var(--dark);margin-bottom:12px}
.not-found p{color:var(--text-muted);margin-bottom:24px}

/* Related */
.related-section{padding:64px 0 24px;background:var(--light)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:28px}
.section-head h2{font-size:28px;font-weight:800;color:var(--dark);position:relative;padding-left:18px}
.section-head h2::before{content:'';position:absolute;left:0;top:6px;bottom:6px;width:5px;border-radius:3px;background:var(--gradient-accent)}
.section-head a{font-size:14px;color:var(--primary);font-weight:600;display:inline-flex;align-items:center;gap:6px}
.section-head a:hover{color:var(--secondary)}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.related-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);transition:box-shadow .3s ease,transform .3s ease}
.related-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}
.related-cover{position:relative;height:0;padding-bottom:56.25%;overflow:hidden}
.related-cover img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.related-card:hover .related-cover img{transform:scale(1.04)}
.card-tag{position:absolute;top:12px;left:12px;background:var(--gradient-accent);color:#1F2937;font-size:12px;font-weight:700;padding:5px 14px;border-radius:var(--radius-pill)}
.related-body{padding:20px}
.related-body h3{font-size:17px;line-height:1.4;margin-bottom:12px;font-weight:700}
.related-body h3 a{color:var(--text)}
.related-body h3 a:hover{color:var(--primary)}
.related-time{font-size:13px;color:var(--text-muted);display:flex;align-items:center;gap:6px}

/* CTA */
.cta-section{padding:56px 0 72px}
.cta-card{background:var(--gradient-brand);border-radius:var(--radius-lg);padding:44px;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;position:relative;overflow:hidden}
.cta-card::after{content:'';position:absolute;top:-60px;right:-40px;width:240px;height:240px;border-radius:50%;background:rgba(255,255,255,.06)}
.cta-content{position:relative;z-index:2;flex:1;min-width:260px}
.cta-content h2{color:#fff;font-size:28px;font-weight:800;margin-bottom:10px}
.cta-content p{color:rgba(255,255,255,.78);font-size:15px}
.cta-buttons{position:relative;z-index:2;display:flex;gap:14px;flex-wrap:wrap}
.cta-buttons .btn{min-height:44px}

/* Footer */
.site-footer{background:var(--dark);color:rgba(255,255,255,.75);padding-top:64px}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:40px}
.footer-brand .logo{margin-bottom:18px}
.footer-brand .logo-text{color:#fff}
.footer-brand .logo-text small{color:rgba(255,255,255,.5)}
.footer-brand .logo-icon{background:var(--gradient-accent);color:#1F2937}
.footer-brand p{font-size:14px;line-height:1.7;color:rgba(255,255,255,.6);max-width:320px}
.footer-col h4{color:#fff;font-size:15px;font-weight:700;margin-bottom:18px;letter-spacing:.02em}
.footer-col ul li{margin-bottom:12px}
.footer-col a{font-size:14px;color:rgba(255,255,255,.65);transition:color .3s ease}
.footer-col a:hover{color:var(--accent-light)}
.footer-contact li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:rgba(255,255,255,.65)}
.footer-contact svg{width:18px;height:18px;flex-shrink:0;color:var(--accent);margin-top:3px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:22px 0;display:flex;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;color:rgba(255,255,255,.45)}
.footer-bottom a{color:rgba(255,255,255,.55)}
.footer-bottom a:hover{color:#fff}
.footer-bottom .sep{opacity:.4}

/* Responsive */
@media (max-width:1023px){
  .related-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media (max-width:767px){
  .topbar-inner{gap:10px}
  .search-box{width:44px;padding:0;justify-content:center}
  .search-box input{display:none}
  .search-box:focus-within{width:44px;border-color:transparent;background:#F0F1EF}
  .topbar-cta span{display:none}
  .topbar-cta{padding:10px 14px}
  .nav-toggle{display:flex}
  .channels-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .channels-wrap::-webkit-scrollbar{display:none}
  .channels{display:flex;flex-wrap:nowrap;gap:8px;width:max-content;padding:0 16px}
  .channels a{flex-shrink:0}
  .article-hero{padding:40px 0 48px}
  .article-hero h1{font-size:28px}
  .article-card{padding:28px 22px}
  .article-content h2{font-size:24px}
  .article-content h3{font-size:20px}
  .article-pager{grid-template-columns:1fr;gap:10px}
  .pager-back{order:-1}
  .related-grid{grid-template-columns:1fr}
  .cta-section{padding:48px 0}
  .cta-card{padding:32px 24px;flex-direction:column;align-items:flex-start}
  .cta-content h2{font-size:24px}
  .footer-top{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media (max-width:480px){
  .container{padding:0 16px}
  .logo-text{font-size:16px}
  .related-grid{grid-template-columns:1fr}
  .article-hero h1{font-size:25px}
  .article-meta{gap:12px;font-size:13px}
}

/* roulang page: category1 */
:root {
    --green-900: #08241C;
    --green-800: #0B6B4F;
    --green-700: #1B9E7F;
    --gold: #D4A643;
    --gold-light: #E4B962;
    --cream: #F5F3EE;
    --white: #FFFFFF;
    --text-main: #1F2937;
    --text-sub: #6B7280;
    --border-line: #E8ECE9;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-card: 0 4px 20px rgba(8,36,28,.06);
    --shadow-hover: 0 8px 30px rgba(8,36,28,.12);
    --gradient-brand: linear-gradient(135deg,#08241C 0%,#0B6B4F 55%,#1B9E7F 100%);
    --gradient-cta: linear-gradient(135deg,#D4A643 0%,#E4B962 100%);
    --transition: .3s ease;
    --font-family: "PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:130px}
body{font-family:var(--font-family);background:var(--cream);color:var(--text-main);line-height:1.7;font-size:16px;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:color var(--transition)}
button,input,textarea{font-family:inherit;font-size:inherit}
ul,ol{list-style:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
section{width:100%}
a:focus-visible,button:focus-visible,input:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px}
::selection{background:rgba(212,166,67,.3)}

/* 顶部条 */
.top-strip{background:var(--green-900);color:rgba(255,255,255,.82);font-size:12px;padding:8px 0;letter-spacing:.4px}
.top-strip .container{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.top-links{display:flex;gap:12px}
.top-links a{display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,.82)}
.top-links a:hover{color:var(--gold-light)}
.top-item{display:flex;align-items:center;gap:6px}

/* 导航header */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.97);backdrop-filter:blur(8px);box-shadow:0 1px 8px rgba(8,36,28,.05)}
.header-main{display:flex;align-items:center;justify-content:space-between;height:72px;gap:16px}
.logo{display:flex;align-items:center;gap:12px;min-width:fit-content}
.logo-icon{width:40px;height:40px;background:var(--gradient-brand);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0;box-shadow:0 2px 10px rgba(11,107,79,.4)}
.logo-icon svg{width:22px;height:22px}
.logo-text{font-size:21px;font-weight:800;color:var(--green-900);white-space:nowrap;letter-spacing:.2px}
.logo-text small{display:block;font-size:11px;font-weight:400;color:var(--text-sub);letter-spacing:1.5px;margin-top:-2px}
.search-box{flex:0 1 240px;position:relative;margin-left:auto;display:flex;align-items:center}
.search-box i{position:absolute;left:14px;color:var(--text-sub);font-size:13px;pointer-events:none}
.search-box input{width:100%;height:38px;border:1px solid var(--border-line);background:#F4F5F4;border-radius:999px;padding:0 16px 0 38px;font-size:13px;transition:all var(--transition);color:var(--text-main)}
.search-box input::placeholder{color:#A0A8AB}
.search-box input:focus{outline:none;border-color:var(--green-700);background:#fff;box-shadow:0 0 0 3px rgba(27,158,127,.12)}
.header-cta{display:flex;align-items:center;gap:6px;background:var(--gradient-cta);color:var(--text-main);font-weight:700;font-size:13px;padding:10px 18px;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:all var(--transition);white-space:nowrap;box-shadow:0 2px 6px rgba(212,166,67,.25)}
.header-cta i{font-size:13px}
.header-cta:hover{filter:brightness(1.07);box-shadow:0 6px 16px rgba(212,166,67,.4);transform:translateY(-1px)}
.header-cta:active{transform:translateY(0)}
.menu-toggle{display:none}
.channels-wrap{background:var(--green-900);position:sticky;top:72px;z-index:99;box-shadow:0 4px 12px rgba(8,36,28,.18)}
.channels{display:flex;gap:4px;overflow-x:auto;scrollbar-width:none;padding:8px 0;justify-content:center}
.channels::-webkit-scrollbar{display:none}
.channels a{flex:0 0 auto;color:rgba(255,255,255,.8);text-decoration:none;font-weight:400;font-size:15px;padding:5px 0;position:relative;margin:0 8px;white-space:nowrap;transition:color var(--transition);border-bottom:2px solid transparent}
.channels a:hover{color:var(--gold-light)}
.channels a .nav-pill{display:inline-block;padding:7px 19px;border-radius:999px;color:rgba(255,255,255,.88);font-weight:400;background:rgba(255,255,255,.04);transition:all var(--transition);font-size:14px;line-height:1.4}
.channels a.active .nav-pill{background:var(--gradient-cta);color:var(--green-900);font-weight:700;box-shadow:0 2px 10px rgba(212,166,67,.35)}

/* 通用按钮 */
.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:700;border-radius:var(--radius-sm);text-decoration:none;transition:all var(--transition);border:none;cursor:pointer;padding:10px 18px;font-size:14px;min-height:fit-content}
.btn-primary{background:var(--gradient-cta);color:var(--green-900)}
.btn-primary:hover{filter:brightness(1.1);transform:translateY(-2px);box-shadow:0 8px 22px rgba(212,166,67,.45)}
.btn-primary:active{transform:translateY(0)}
.btn-light-outline{border:1px solid rgba(255,255,255,.7);background:rgba(255,255,255,.08);color:#fff;border-radius:12px;padding:12px 24px;font-weight:600;backdrop-filter:blur(4px)}
.btn-light-outline:hover{background:rgba(255,255,255,.18);border-color:#fff;}
.btn-xl{padding:15px 30px;font-size:16px;border-radius:14px}
.btn-green-sub{background:rgba(11,107,79,.12);border:1px solid rgba(11,107,79,.22);color:var(--green-800)}
.btn-green-sub:hover{background:rgba(11,107,79,.18);border-color:rgba(11,107,79,.4)}

/* 通用内页 hero */
.inner-hero{background:var(--gradient-brand);padding:70px 0 80px;position:relative;overflow:hidden}
.inner-hero .container{position:relative;z-index:2;display:flex;column-gap:50px;align-items:center}
.inner-hero-text{flex:1;max-width:640px}
.inner-hero h1{font-size:44px;font-weight:800;color:#fff;line-height:1.25;margin-bottom:18px;letter-spacing:.3px}
.inner-hero h1 span{color:var(--gold-light)}
.inner-hero .hero-desc{font-size:16px;line-height:1.85;color:rgba(255,255,255,.75);max-width:580px}
.inner-hero-illustration{flex:0 0 240px;display:flex;justify-content:center;align-items:center}
.hero-petal{width:150px;height:150px;background:linear-gradient(135deg,rgba(212,166,67,.2),rgba(255,255,255,.06));border:1px solid rgba(255,255,255,.3);border-radius:32px;transform:rotate(12deg);position:relative;display:flex;align-items:center;justify-content:center;box-shadow:0 20px 55px rgba(4,20,16,.4)}
.hero-petal i{font-size:46px;color:rgba(228,185,98,.9);transform:rotate(-12deg)}
.hero-badges{margin-top:34px;display:flex;gap:16px;flex-wrap:wrap;align-items:flex-end}
.hbadge-item{background:rgba(8,36,28,.42);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.35);border-radius:16px;padding:12px 26px;display:flex;align-items:center;gap:14px;color:#fff;box-shadow:0 8px 20px rgba(8,36,28,.2)}
.hbadge-item i{color:var(--gold);font-size:18px}
.hb-num{font-size:30px;font-weight:800;color:var(--gold);font-variant-numeric:tabular-nums;line-height:1}
.hb-label{font-size:13px;color:rgba(255,255,255,.85);line-height:1.3;font-weight:400}
.hb-label strong{display:block;font-size:14px;color:#fff;font-weight:600}
.clip-path-helper{position:absolute;bottom:-1px;left:0;right:0;height:45px;background:var(--cream);border-radius:50% 50% 0 0/18px 18px 0 0;transform:scale(1.01)}

/* 面包屑 */
.category-questions{display:none}
.async-track{display:none}

/* 板块 1: 分类卡片集? 整理为专题目录 */
.topic-guide{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:28px;padding:20px 0 0}
.topic-col{padding:20px}
.topic-head{display:flex;justify-content:space-between;align-items:flex-start;border-bottom:1px solid #65c9c4;padding-bottom:16px;margin-bottom:22px}
.topic-head h3{font-size:20px;font-weight:700;color:#f4fff6;position:relative;letter-spacing:.5px}
.topic-head h3::after{content:'';display:block;width:32%;height:2px;background:var(--gold);margin-top:8px}
.topic-title-xl{font-size:14px;color:#f2f7f5;font-weight:600}
.topic-title-sm{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:700;color:#0c0f0d;background:var(--gold);padding:8px 14px;line-height:1.4;border-radius:999px;font-variant-numeric:tabular-nums}
.topic-list{display:grid;gap:12px}
.topic-list-item{display:flex;align-items:center;justify-content:space-between;padding:10px 4px;color:rgba(232,255,244,.9);font-size:14px;font-weight:500;border-bottom:1px solid rgba(0,255,122,.06);transition:background var(--transition)}
.topic-list-item:hover{text-decoration:none;color:#9cf0b5;background:rgba(65,186,255,.08);padding-left:14px}
.topic-list-item span{display:block;color:#b2cda7;font-size:14px;font-weight:600;background:rgba(0,102,34,.34);border-radius:999px;padding:3px 15px;text-align:center}

/* ====== 新的完整分类页设计变量(覆盖上部强调) ====== */
.insights-hero{position:relative;overflow:hidden;background:var(--gradient-brand)}
.insights-hero .hero-bg{position:absolute;inset:0;background:url('/assets/images/backpic/back-1.webp') center/cover no-repeat;opacity:.18}
.insights-hero .container{position:relative;z-index:2;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;padding:68px 20px}
.hero-txt h1{font-size:clamp(32px,5vw,52px);line-height:1.18;color:#fff;margin:22px 0 18px}
.hero-txt h1 strong{color:var(--gold-light);font-weight:800}
.hero-desc{font-size:16px;line-height:1.85;color:rgba(255,255,255,.8);max-width:600px}
.hero-visual{width:290px;flex-shrink:0}
.hero-visual .hero-code-card{background:rgba(8,36,28,.6);border:1px solid rgba(255,255,255,.15);border-radius:28px;padding:26px;backdrop-filter:blur(12px);box-shadow:0 24px 50px rgba(0,0,0,.3)}
.hero-code-card .metric{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.12);padding:8px 0}
.hero-code-card .m-label{color:rgba(255,255,255,.65);font-size:12px;letter-spacing:2px}
.hero-code-card .m-value{color:var(--gold-light);font-size:20px;font-weight:800;font-variant-numeric:tabular-nums}
.hero-score-big{font-size:34px;color:#fff;font-weight:800;text-align:center;padding:14px 0;font-variant-numeric:tabular-nums}
.hero-visual .tag{display:inline-block;background:rgba(212,166,67,.18);color:var(--gold-light);border-radius:999px;padding:4px 14px;font-size:12px;margin-top:8px}
.insights-hero-meta{display:flex;gap:14px;margin-top:32px;flex-wrap:wrap}
.hero-insight-badge{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);color:rgba(255,255,255,.91);padding:10px 20px 10px 14px;border-radius:999px;font-size:13px;display:flex;align-items:center;gap:7px;backdrop-filter:blur(6px)}
.hero-insight-badge i{color:var(--gold)}
.hero-insight-badge b{color:var(--gold-light);font-weight:800;font-size:16px;font-variant-numeric:tabular-nums}
.input-help-mobile{display:none}

/* 数据引擎 引擎模块 */
.engine-section{position:relative;background:var(--cream);z-index:2}
.engine-section:before{content:'';position:absolute;top:0;left:0;right:0;background:var(--cream);z-index:2}
.engine-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center;padding:36px 0}
.engine-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:30px}
.engine-header h2{font-size:clamp(27px,4vw,40px);font-weight:700;line-height:1.15}
.engine-header h2 small{color:var(--text-sub);font-size:15px;font-weight:400;display:block;margin-top:12px}
.engine-header .link-line a{color:var(--green-800);font-weight:600;font-size:15px}
.engine-corners{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.eng-card{flex-direction:row;display:flex;gap:14px;background:#fff;border:1px solid var(--border-line);border-radius:18px;padding:24px;box-shadow:var(--shadow-card);transition:all var(--transition)}
.eng-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-3px)}
.eng-card i{font-size:29px;color:var(--gold);background:rgba(212,166,67,.13);padding:18px;border-radius:16px}
.eng-card h3{font-size:17px;font-weight:700;margin-top:16px}
.eng-card p{margin-top:8px;font-size:14px;color:var(--text-sub)}
.engine-chart-card{ background:var(--gradient-brand);border-radius:26px;padding:16px 15px;color:#fff}
.engine-chart-card .ech-title{font-size:14px;color:rgba(255,255,255,.79);padding:0 12px}
.stat-list{display:grid;gap:0}
.stat-row{display:flex;justify-content:space-between;align-items:center;padding:9px 12px;border-bottom:1px solid rgba(255,255,255,.09);font-size:14px;color:rgba(255,255,255,.89)}
.stat-row b{color:var(--gold-light);font-variant-numeric:tabular-nums}
.chart-bars{display:flex;gap:7px;justify-content:find-start;padding:8px 12px 0}
.bar-item{flex:1;display:flex;flex-direction:column;align-items:center;gap:7px}
.bar-item span{font-size:11px;color:rgba(255,255,255,.65)}
.p-bar{background:rgba(255,255,255,.19);max-width:54px;width:100%;border-radius:99px;height:95px;display:flex;align-items:flex-end;overflow:hidden}
.p-bar .fill{width:100%;display:block;background:linear-gradient(180deg,var(--gold-light),var(--gold));border-radius:99px}
.fill.h50{height:50%;filter:opacity(.85)}
.fill.h70{height:70%}
.fill.h85{height:85%}
.fill.h68{height:70%;filter:opacity(.7)}

/* 实时数据 / 分类亮点 */
.stats-showplace{background:#fff;border:1px solid var(--border-line);border-radius:20px;padding:20px 20px 22px;font-size:14px}
.showplace-header .sh-title i{color:var(--green-800)}
.search-form .search-input-group{display:flex}
.search-form input{flex:1;border:1px solid var(--border-line);border-radius:12px 0 0 12px;padding:10px 14px;font-size:13px}
.search-form button{background:var(--gradient-brand);color:#fff;border-radius:0 12px 12px 0;padding:0 15px;border:none}

/* 分类主要内容区块 */
.section-block{padding:60px 0}
.section-label{display:inline-flex;align-items:center;gap:10px;background:rgba(212,166,67,.14);color:var(--green-800);border-radius:999px;padding:7px 21px;font-size:13px;font-weight:600;letter-spacing:1px;margin-bottom:12px}
.section-heading{font-size:clamp(27px,4vw,36px);font-weight:800;line-height:1.3;margin-bottom:8px;color:var(--green-900)}
.section-sub{color:var(--text-sub);font-size:15px;max-width:690px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.grid-card{background:#fff;border:1px solid var(--border-line);border-radius:var(--radius-lg);padding:24px;box-shadow:var(--shadow-card);transition:transform var(--transition),box-shadow var(--transition)}
.grid-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}
.grid-card i{font-size:24px;color:var(--gold);background:rgba(11,107,79,.08);width:48px;height:48px;border-radius:14px;align-items:center;justify-content:center;display:flex}
.grid-card h3{margin-top:20px;font-size:17px;font-weight:700}
.grid-card p{color:var(--text-sub);margin-top:8px;font-size:14px}


/* 阅读数/时间/卡型 与分类共用 */
.meta-line{color:var(--text-sub);font-size:13px;display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.size-18{width:18px;height:18px;display:inline}
.list-arrow i,.btn i{font-size:14px}

/* 分类页特殊: 近期关键统计 */
.cat-rank-card{display:flex;column-gap:28px}
.rank-cover{flex:0 0 34%;}
.rank-cover img{width:100%;height:100%;object-fit:cover;border-radius:16px}
.rank-body{flex:1;display:flex;flex-direction:column;padding:8px 0}
.rank-tag{font-size:12px;font-weight:600;color:var(--gold);letter-spacing:2px}
.rank-title{font-size:25px;font-weight:800;line-height:1.4;margin:8px 0 10px}
.rank-desc{color:var(--text-sub);font-size:14.5px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

/* 数据概览表 */
.data-panel{background:#fff;border:1px solid var(--border-line);border-radius:20px;padding:0;box-shadow:0 8px 22px rgba(8,36,28,.04)}
.data-panel-head{padding:18px 26px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--border-line)}
.data-panel-head h3{font-size:18px;font-weight:700}
.table-scroll{overflow-x:auto}
table{width:100%;border-collapse:collapse;font-size:14px;min-width:640px}
.table-scroll th,.table-scroll td{padding:15px 20px;text-align:left;border-bottom:1px solid var(--border-line)}
.table-scroll th{font-weight:600;color:var(--text-sub);background:#F7F9F8;font-size:13px;letter-spacing:.6px}
.table-scroll tr:last-child td{border-bottom:none;}
.positive{color:#0B6B4F;font-weight:700;font-variant-numeric:tabular-nums}
.negative{color:#C25E4A;font-weight:700;font-variant-numeric:tabular-nums}
.neutral{color:var(--gold);font-weight:600}

/* 转化 CTA 板块 */
.subscribe-optin{background:var(--green-900);position:relative;overflow:hidden;border-radius:26px;padding:38px 40px;margin:30px 0 50px;display:flex;justify-content:center;align-items:center;height:100%;background-image:linear-gradient(135deg,#08241C 0%,#0B6B4F 70%,#1B9E7F 100%);gap:12px;color:#fff;flex-wrap:wrap}
.feature-insight{background:1px solid red}

/* 内页-主导航继承 */

/* 频道集成 */
.featurefeed{background:#fff;border:1px solid var(--border-line);border-radius:20px;padding:20px 26px 12px;}
.feed-item{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:12px;border-bottom:1px solid var(--border-line)}
.feed-item:last-child{border-bottom:none}
.feed-tag{font-size:12px;background:var(--gold);border-radius:6px;padding:1px 8px;color:#1f2937;font-weight:700;display:flex;align-items:center;white-space:nowrap}
.feed-date{font-size:14px;color:var(--text-sub);min-width:max-content}
.feed-title{font-weight:600;font-size:16px;flex:1;line-height:1.5}


/* 新闻要点 */
.bullet-event{display:flex;align-items:center;gap:16px;padding:16px 0;border-bottom:1px solid var(--border-line)}
.bullet-event:last-child{border:none}
.ev-date{flex:0 0 87px;text-align:center;background:#F7FBFA;border-radius:13px;padding:8px 10px}
.ev-date b{display:block;font-size:25px;font-weight:800;color:var(--green-800);line-height:1;font-variant-numeric:tabular-nums}
.ev-date span{font-size:12px;color:var(--text-sub)}
.ev-main h4{font-size:16px;font-weight:600}
.ev-main p{font-size:14px;color:var(--text-sub);overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}

/* FAQ */
.faq{max-width:900px;margin:0 auto}
.faq-item{background:#fff;border:1px solid var(--border-line);border-radius:var(--radius-sm);margin-bottom:12px;overflow:hidden;transition:all var(--transition)}
.faq-item.active{border-color:rgba(11,107,79,.2);box-shadow:0 6px 18px rgba(8,36,28,.08)}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;padding:19px 25px;font-weight:600;color:var(--green-900);font-size:16px;background:#fff}
.faq-item.active .faq-question{background:#F9FAF7}
.faq-icon{font-size:24px;color:var(--green-700);transition:transform .35s;flex-shrink:0;width:22px;height:22px;display:flex;align-items:center;justify-content:center}
.faq-item.active .faq-icon{transform:rotate(135deg)}
.faq-answer{padding:0 25px;max-height:0;overflow:hidden;transition:max-height .45s ease,padding .3s ease;color:var(--text-sub);line-height:1.7;font-size:15px}
.faq-item.active .faq-answer{max-height:350px;padding:0 25px 22px}
.faq-answer p{margin-top:8px}

/* 相关推荐 底部 */
.insight-flex{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.insight-card{background:#fff;border-radius:12px;overflow:hidden;border:1px solid var(--border-line);padding-bottom:16px;transition:transform var(--transition),box-shadow var(--transition)}
.insight-card:hover{transform:translateY(-5px)}
.insight-card img{width:100%;height:200px !important;object-fit:cover;transition:transform var(--transition)}
.insight-card .ins-body{padding:16px}
.insight-card .ins-meta{color:var(--text-sub);font-size:12px;display:flex;gap:12px}
.insight-card h3{font-size:16px;margin:8px 0}

.btn-line{border:1.5px solid rgba(11,107,79,.5);color:var(--green-800);background:transparent;font-weight:600;padding:11px 20px;border-radius:10px;display:inline-block}
.btn-line:hover{background:rgba(11,107,79,.08)}

/* 相关分类导航 */
.chip-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.chip{display:inline-flex;align-items:center;gap:7px;padding:7px 18px;border:1px solid var(--border-line);background:#fff;border-radius:999px;font-size:14px;font-weight:600;color:#313c37;transition:all var(--transition)}
.chip:hover{border-color:var(--green-700);color:var(--green-800);transform:translateY(-2px)}
.chip .d{color:var(--gold);}

/* 底部页脚 */
.site-footer{background:var(--green-900);color:rgba(255,255,255,.78);padding:42px 0 30px;margin-top:0;font-size:14px}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:36px;padding-bottom:30px}
.footer-brand p{max-width:440px;font-size:13.5px;margin-top:10px}
.footer-col h5,.footer-brand h4{color:var(--gold-light);margin-bottom:13px;font-size:14px;font-weight:600}
.footer-col a{color:rgba(255,255,255,.78)}
.footer-col a:hover{color:var(--gold-light)}
.footer-contact{display:flex;flex-wrap:wrap;gap:12px}
.last-list{display:flex;flex-direction:column;gap:10px}
.copy-reel{border-top:1px solid rgba(255,255,255,.08);padding-top:26px;display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;gap:8px;color:#aeb9c4;font-size:13px}
.copy-reel a{color:rgba(255,255,255,.78)}
.copy-reel a:hover{color:var(--gold-light)}

/* ================= 响应式 =============== */
@media(max-width:1100px) {
    .insight-flex,.grid-4{grid-template-columns:repeat(3,1fr)}
    .topic-guide{grid-template-columns:1fr}
}
@media(max-width:1023px) {
    .header-main{flex-wrap:wrap;padding:8px 16px;height:auto;gap:10px}
    .search-box{flex:1;min-width:200px;order:3}
    .channels{justify-content:flex-start;padding:7px 8px}
    .site-header{padding-bottom:0}
    .channels-wrap{top:115px}
    html{scroll-padding-top:155px}
    .header-cta{order:4}
    .brand{order:1}
    .insights-hero .container{grid-template-columns:1fr;padding:52px 16px}
    .hero-visual{display:none}
    .grid-4{grid-template-columns:repeat(2,1fr)}
    .engine-grid{grid-template-columns:1fr}
    .footer-top{grid-template-columns:1fr 1fr;gap:30px}
    .bullet-event{flex-direction:column;align-items:flex-start;gap:8px}
}
@media(max-width:767px) {
    .logo-text{font-size:18px}
    .logo-icon{width:35px;height:35px;border-radius:9px;}
    .top-strip .container{flex-direction:column}
    .insights-hero .container{padding:36px 16px}
    .hbadge-item{padding:10px 14px}
    .hb-num{font-size:23px}
    .table-scroll th,.table-scroll td{padding:12px 14px}
    .channels a{font-size:14px;margin:0 4px}
    .channels a .nav-pill{padding:8px 16px;font-size:14px}
    .section-block{padding:40px 0}
    .engine-header{flex-direction:column;align-items:flex-start;gap:8px;margin-bottom:22px}
    .engine-corners{grid-template-columns:1fr}
    .grid-4{grid-template-columns:1fr}
    .cat-rank-card{flex-direction:column}
    .rank-cover{flex:none;width:100%;height:190px}
    .rank-title{font-size:19px;margin:12px 0}
    .insight-flex{grid-template-columns:1fr}
    .bullet-event{display:block}
    .footer-top{grid-template-columns:1fr;}
    .banner-sub{text-align:center}
    .page-heading-pills{flex-wrap:wrap}
    .engine-chart-card{padding:20px}
    .inner-hero{padding:42px 0 56px;margin-bottom:0px}
    .hero-badges{margin-top:24px;align-items:stretch}
    .inner-hero-text .hero-desc{font-size:14.5px}
    .inner-hero-prefix{font-size:13px}
    .subscribe-optin{flex-direction:column;gap:14px;padding:25px}
}
@media(max-width:480px){
    .channels a .nav-pill{white-space:nowrap;padding:8px 14px}
    .header-main .search-box{min-width:150px}
    .copy-reel{flex-direction:column;align-items:flex-start}
}


/* 新的数据卡片辅助样式 */
.d-stats{display:flex;flex-direction:column;gap:8px}
.header-btn{white-space:normal}
.two-col{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.mobile-scoll-wide{overflow:auto}
.ellipsis-1{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.listed-callout{border-left:3px solid var(--gold);background:rgba(212,166,67,.06);padding:14px 20px;font-size:15px;line-height:1.8}
/* 频道 快捷切换 */
.category-nav-inline{position:relative;z-index:1}

/* 快速锚点目录 */
.directory-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px 24px;margin-top:24px}
.directory-index{background:#fff;border:1px solid var(--border-line);border-radius:15px;padding:18px;display:flex;align-items:flex-start;gap:16px;transition:box-shadow .3s,transform .3s}
.directory-index:hover{box-shadow:0 6px 18px rgba(8,36,28,.09);transform:translateY(-3px)}
.dir-num{background:var(--gradient-brand);color:#fff;font-size:18px;font-weight:800;width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:12px;flex-shrink:0;font-variant-numeric:tabular-nums}
.dir-main h4{color:var(--green-900);font-size:17px;font-weight:700;}
.dir-main span{font-size:14px;color:var(--text-sub);line-height:1.6;display:block;margin-top:4px}

.section-darkgreen{background:var(--gradient-brand);color:rgba(255,255,255,0.9);border-radius:22px;padding:18px 18px;}
.section-darkgreen .brands-tile{display:flex;align-items:flex-start;justify-content:center;flex-direction:column;gap:12px;height:100%}
.section-darkgreen h2{color:#fff}
.stat-display-number{font-size:34px;font-weight:800;color:var(--gold);font-variant-numeric:tabular-nums;line-height:1}
.stat-panel-foot{padding:2px 0;display:flex}

/* 对齐 */
.meta-stat{color:var(--green-800);font-weight:600}
.v-mid{align-self:center}
.text-muted{color:var(--text-sub)}
.it-news-outline{display:none;}
.pull-all-cards{display:grid;grid-template-columns:1fr;gap:24px}
@media(max-width:760px){
    .directory-grid{grid-template-columns:1fr}
    .two-col{grid-template-columns:1fr}
}

/*=Custom scrollbar=*/
.faq-question .icon-big i.fa.fa-angle-down{display:block}

/* roulang page: category2 */
:root {
  --green-dark: #08241C;
  --green-main: #0B6B4F;
  --green-teal: #1B9E7F;
  --gold: #D4A643;
  --gold-light: #E4B962;
  --paper: #F5F3EE;
  --card: #FFFFFF;
  --ink: #1F2937;
  --muted: #6B7280;
  --border: #E8ECE9;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 20px rgba(8, 36, 28, 0.06);
  --shadow-hover: 0 8px 30px rgba(8, 36, 28, 0.12);
  --grad-brand: linear-gradient(135deg, #08241C 0%, #0B6B4F 55%, #1B9E7F 100%);
  --grad-gold: linear-gradient(135deg, #D4A643 0%, #E4B962 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(212, 166, 67, 0.85);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 107, 79, 0.08);
  color: var(--green-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.section-head h2 {
  margin-top: 18px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--green-dark);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* 按钮通用 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.btn-gold {
  background: var(--grad-gold);
  color: #1E2A24;
  box-shadow: 0 6px 16px rgba(212, 166, 67, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 10px 24px rgba(212, 166, 67, 0.45);
  transform: translateY(-2px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* Header 第一层 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(8, 36, 28, 0.08);
}

.header-top {
  background: rgba(255, 255, 255, 0.96);
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-badge {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--grad-brand);
  color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(8, 36, 28, 0.18);
}

.logo-badge svg {
  width: 22px;
  height: 22px;
}

.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 19px;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
}

.logo-word small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.search-form {
  display: flex;
  align-items: center;
  flex: 0 1 360px;
  margin-left: auto;
  background: #F1F0EC;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  height: 44px;
  padding: 0 5px 0 16px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.search-form:focus-within {
  background: #FFFFFF;
  border-color: var(--green-teal);
  box-shadow: 0 0 0 4px rgba(27, 158, 127, 0.14);
}

.search-icon {
  display: flex;
  align-items: center;
  color: #8C9590;
  flex-shrink: 0;
}

.search-icon svg {
  width: 17px;
  height: 17px;
}

.search-form input {
  flex: 1;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 8px 0 10px;
  font-size: 14px;
  color: var(--ink);
}

.search-form input::placeholder {
  color: #A0A49F;
}

.search-submit {
  flex-shrink: 0;
  height: 34px;
  min-width: 50px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  background: var(--green-main);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.search-submit:hover {
  background: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Header 第二层 频道 */
.channels-wrap {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.channels {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.channels::-webkit-scrollbar {
  display: none;
}

.channels a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 18px;
  margin: 8px 0;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.channels a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.channels a.active {
  background: var(--grad-gold);
  color: #17231D;
  box-shadow: 0 4px 12px rgba(212, 166, 67, 0.28);
}

/* Hero */
.cat-hero {
  position: relative;
  background: var(--grad-brand);
  overflow: hidden;
  color: #fff;
  padding: 72px 0 64px;
}

.hero-back {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/backpic/back-2.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-gradient-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(8, 36, 28, 0.92) 0%, rgba(11, 107, 79, 0.72) 52%, rgba(27, 158, 127, 0.38) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 52px;
  margin-bottom: 50px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: var(--gold-light);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.hero-grid h1 {
  margin-top: 22px;
  font-size: 46px;
  line-height: 1.23;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #FFFFFF;
}

.hero-grid h1 .hero-split {
  display: block;
  color: var(--gold-light);
}

.hero-lead {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
}

.hero-lead strong {
  color: #FFFFFF;
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 36, 28, 0.88) 100%);
}

.hero-card-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.stat-card .stat-num {
  font-variant-numeric: tabular-nums;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-card .stat-num sup {
  font-size: 15px;
  top: -0.3em;
}

.stat-card .stat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.stat-card .stat-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* 内容目录 */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.topic-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  min-height: 176px;
}

.topic-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 107, 79, 0.25);
  transform: translateY(-3px);
}

.topic-media {
  position: relative;
  overflow: hidden;
  background: #E2E0DA;
}

.topic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8, 36, 28, 0.1) 0%, rgba(8, 36, 28, 0) 42%);
}

.topic-media .topic-media-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 3px 9px;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--green-dark);
}

.topic-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topic-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.4;
}

.topic-body p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.topic-body .topic-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-main);
}

.topic-body .topic-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.topic-body .topic-link:hover svg {
  transform: translateX(4px);
}

/* 精选卡片 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-card);
  display: flex;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-card .card-media {
  position: relative;
  overflow: hidden;
  background: #EBEDE9;
  flex-shrink: 0;
}

.feature-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .card-media img {
  transform: scale(1.03);
}

.feature-card--wide {
  display: block;
}

.feature-card--wide .card-media {
  width: 100%;
  aspect-ratio: 16 / 8;
}

.feature-card--normal {
  display: flex;
}

.feature-card--normal .card-media {
  width: 38%;
  aspect-ratio: 4 / 3.1;
}

.feature-card--normal .feature-body {
  padding: 16px 18px;
}

.card-media .cate-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: var(--grad-gold);
  color: #17231D;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.feature-body {
  padding: 22px 24px 20px;
}

.feature-card--wide .feature-body {
  max-width: 640px;
}

.feature-body h3 {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--green-dark);
}

.feature-card--normal .feature-body h3 {
  font-size: 16.5px;
  line-height: 1.5;
}

.feature-body > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-card--wide .feature-body > p {
  -webkit-line-clamp: 3;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #F0E9E1;
  color: #9A8D7A;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.card-meta svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  vertical-align: -2px;
}

/* 使用路径 */
.route-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.route-item {
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 27px 22px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.route-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
  background: #FFFFFF;
}

.route-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green-main);
  color: #fff;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 14px rgba(11, 107, 79, 0.2);
}

.route-item h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

.route-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* 场景 */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.scene-item {
  display: flex;
  gap: 18px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.scene-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.scene-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(212, 166, 67, 0.12);
  color: var(--gold);
}

.scene-icon svg {
  width: 24px;
  height: 24px;
}

.scene-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
}

.scene-item p {
  margin-top: 8px;
  color: #6A746E;
  font-size: 14px;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 24px;
  margin-bottom: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  background: #FBFCFA;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  border-radius: var(--radius-sm);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green-main);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--green-main);
  color: #fff;
}

.faq-item .faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  color: #52605A;
  max-width: 780px;
}

/* CTA */
.cta-panel {
  background: var(--grad-brand);
  border-radius: 24px;
  padding: 50px 54px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(8, 36, 28, 0.2);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.08);
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-grid h2 {
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
}

.cta-grid p {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* 相关 tags */
.tag-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-nav span {
  color: var(--muted);
  font-size: 14px;
}

.tag-nav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  min-height: 36px;
  border: 1px solid #D9E1DB;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: var(--green-main);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.tag-nav a:hover {
  border-color: var(--green-main);
  background: rgba(11, 107, 79, 0.05);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 80px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.2fr;
  gap: 40px;
  padding: 60px 0 42px;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand .logo-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  box-shadow: none;
}

.footer-brand .logo-word {
  color: #FFFFFF;
}

.footer-brand .logo-word small {
  color: rgba(255, 255, 255, 0.44);
}

.footer-brand > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 2;
  max-width: 360px;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease, padding-left 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 3px;
}

.footer-contact li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom .sep {
  opacity: 0.5;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* 响应式 */
@media (max-width: 1023px) {
  .container {
    padding: 0 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }

  .hero-grid h1 {
    font-size: 38px;
  }

  .hero-visual {
    max-width: 560px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--normal {
    display: flex;
  }

  .feature-card--normal .card-media {
    width: 28%;
  }

  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .header-flex {
    min-height: 62px;
    gap: 12px;
  }

  .logo-badge {
    width: 36px;
    height: 36px;
  }

  .logo-word {
    font-size: 17px;
  }

  .search-form {
    display: none;
  }

  .header-actions .btn {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .channels a {
    min-height: 34px;
    padding: 5px 15px;
    font-size: 14px;
  }

  .hero-grid h1 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
  }

  .topic-card {
    grid-template-columns: 1fr;
  }

  .topic-media {
    aspect-ratio: 16 / 7;
  }

  .topic-body {
    padding: 19px;
  }

  .feature-card--normal {
    flex-direction: column;
  }

  .feature-card--normal .card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .feature-body h3 {
    font-size: 18px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 36px 25px;
  }

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .faq-item {
    padding: 0 16px;
  }

  .faq-item summary {
    font-size: 15px;
    padding: 17px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .site-footer {
    margin-top: 48px;
  }

  .footer-bottom {
    padding: 20px 0;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .logo-word small {
    display: none;
  }

  .channel-actions .btn {
    font-size: 13px;
    min-height: 34px;
  }
}
