/* roulang page: index */
:root{
  --sans: "Noto Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  --serif: "Noto Serif SC","Songti SC",serif;
  --ink: #1E3A34;
  --deep: #142B26;
  --amber: #B88943;
  --amber-dark: #A97A35;
  --teal: #2F7C6E;
  --brick: #BC583A;
  --bg: #F6F3ED;
  --cream: #F2EFE6;
  --card: #FFFDF8;
  --text: #2B2B26;
  --muted: #6E6A5E;
  --line: #E3DDD2;
  --soft-line: #EFE8DD;
  --shadow: 0 14px 30px rgba(51,43,30,.08);
  --shadow-lg: 0 22px 44px rgba(51,43,30,.14);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --pill: 56px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.8;
  overflow-x:hidden;
  padding-bottom:86px;
}
body::after{
  content:"";
  position:fixed;
  bottom:0;left:0;
  width:100%;height:86px;
  pointer-events:none;
  background:linear-gradient(180deg,transparent,var(--bg));
  display:none;
}
a{color:inherit;text-decoration:none;transition:color .25s ease, background .25s ease, border-color .25s ease}
a:hover{color:var(--amber)}
img{max-width:100%;display:block;height:auto}
.container{max-width:1280px;padding-left:20px;padding-right:20px}
.section{padding:94px 0}
.section-deep{background:var(--deep);color:var(--cream)}
.section-tint{background:linear-gradient(180deg,#EEF0E7,#F6F3ED)}

/* 文字颜色辅助 */
.t-amber{color:var(--amber)}
.t-muted{color:var(--muted)}
.t-cream{color:var(--cream)}

/* 区块标头 */
.section-head{max-width:760px;margin-bottom:46px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;letter-spacing:.08em;color:var(--teal);
  margin-bottom:12px;
}
.eyebrow::before{content:"";width:24px;height:2px;background:var(--amber);border-radius:2px}
.eyebrow.center::after{content:"";width:24px;height:2px;background:var(--amber);border-radius:2px}
h1,h2,h3,h4,h5,h6{color:var(--ink);font-weight:700;line-height:1.35}
h1{font-size:44px;letter-spacing:-.01em}
h2{font-size:32px;letter-spacing:-.01em}
h3{font-size:20px;font-weight:600}
.section-head h2{font-size:34px;margin-bottom:16px}
.section-head p{color:var(--muted);font-size:17px;margin-bottom:0}
.serif-text{font-family:var(--serif)}

/* 按钮体系 */
.btn{
  border-radius:var(--pill);
  height:50px;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--sans);
  font-weight:600;
  font-size:15px;
  line-height:1;
  border:1.5px solid transparent;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-amber{background:var(--amber);color:#fff;box-shadow:0 10px 20px rgba(184,137,67,.22)}
.btn-amber:hover{background:var(--amber-dark);color:#fff;transform:translateY(-2px);box-shadow:0 16px 30px rgba(184,137,67,.3)}
.btn-amber:active{background:#945F24;transform:scale(.99)}
.btn-outline{border-color:var(--ink);color:var(--ink);background:transparent}
.btn-outline:hover{background:rgba(30,58,52,.08);color:var(--ink);transform:translateY(-2px)}
.btn-light{background:var(--cream);color:var(--ink)}
.btn-light:hover{background:var(--amber);color:#fff;transform:translateY(-2px)}
.btn-lg{height:56px;padding:0 38px;font-size:16px}
.btn-sm{height:42px;padding:0 20px;font-size:14px}
.btn .arrow{transition:transform .25s ease}
.btn:hover .arrow{transform:translateX(4px)}
a.btn:focus-visible,.btn:focus-visible{
  outline:3px solid rgba(184,137,67,.4);
  outline-offset:3px;
}
.btn-anchor{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--amber);font-weight:600;font-size:15px;
}
.btn-anchor .arrow{transition:transform .25s}
.btn-anchor:hover{color:var(--amber-dark)}
.btn-anchor:hover .arrow{transform:translateX(4px)}

/* 标签 */
.tag-badge{
  display:inline-flex;align-items:center;
  font-size:12px;font-weight:600;
  line-height:1;padding:6px 12px;
  border-radius:999px;
  white-space:nowrap;
}
.tag-teal{background:rgba(47,124,110,.14);color:var(--teal)}
.tag-brick{background:rgba(188,88,58,.12);color:var(--brick)}
.tag-amber{background:rgba(184,137,67,.15);color:var(--amber-dark)}
.tag-line{border:1px solid rgba(255,255,255,.38);color:#F9F5EA}

/* 焦点可见性 */
a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline:3px solid rgba(184,137,67,.4);
  outline-offset:2px;
  border-radius:6px;
}

/* 悬浮胶囊导航 */
.site-header{
  position:fixed;
  top:14px;left:0;right:0;
  z-index:1060;
  pointer-events:none;
  padding:0 16px;
}
.capsule{
  pointer-events:auto;
  max-width:1200px;
  height:64px;
  margin:0 auto;
  display:flex;
  align-items:center;
  padding-left:22px;
  padding-right:10px;
  background:rgba(246,243,237,.85);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(227,221,210,.9);
  border-radius:56px;
  box-shadow:none;
  transition:background .35s ease, box-shadow .35s ease, height .35s ease;
}
.capsule.scrolled{
  background:rgba(246,243,237,.96);
  box-shadow:var(--shadow);
  height:58px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
  font-family:var(--sans);
  color:var(--ink);
}
.brand-mark{
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  background:var(--ink);
  border-radius:50%;
  color:var(--cream);
  flex:0 0 34px;
}
.brand-mark svg{width:18px;height:18px}
.brand-text{
  font-size:19px;
  font-weight:800;
  letter-spacing:-.01em;
  line-height:1.2;
}
.brand-text .brand-key{color:var(--amber)}
.nav-mid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:1;
  margin-left:18px;
}
.nav-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  min-width:54px;
  padding:0 14px;
  border-radius:30px;
  font-size:15px;
  font-weight:500;
  color:var(--text);
  transition:all .25s ease;
}
.nav-link:hover{
  color:var(--ink);
  background:rgba(30,58,52,.07);
}
.nav-link.active{
  color:var(--ink);
  font-weight:600;
  background:rgba(47,124,110,.13);
}
.nav-link.active::after{
  content:"";
  position:absolute;
  right:16px;left:16px;bottom:5px;
  height:2px;
  border-radius:2px;
  background:var(--amber);
}
.capsule .nav-toggle{
  display:none;
  width:44px;height:44px;
  border:0;
  background:transparent;
  border-radius:50%;
  position:relative;
  margin-left:auto;
}
.nav-toggle span{
  position:absolute;
  left:12px;width:20px;height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav-toggle span:nth-child(1){top:17px}
.nav-toggle span:nth-child(2){top:25px}
.nav-open .nav-toggle span:nth-child(1){top:21px;transform:rotate(45deg)}
.nav-open .nav-toggle span:nth-child(2){top:21px;transform:rotate(-45deg)}
.btn-nav-cta{
  margin-left:10px;
  flex-shrink:0;
  height:44px;
  padding:0 22px;
  font-size:15px;
}
.nav-mobile-btn{
  display:none;
}

/* Hero */
.hero{
  position:relative;
  background:
    linear-gradient(115deg, rgba(20,43,38,.96) 0%,rgba(30,58,52,.9) 55%,rgba(47,124,110,.78) 100%),
    url("/assets/images/backpic/back-1.png") center/cover no-repeat;
  color:#fff;
  padding:188px 0 112px;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  right:-120px;bottom:-120px;
  width:420px;height:420px;
  border-radius:50%;
  background:radial-gradient(closest-side, rgba(184,137,67,.25), transparent 72%);
  pointer-events:none;
}
.hero-copy{position:relative;z-index:2}
.hero h1{
  color:#fff;
  font-size:45px;
  font-weight:800;
  line-height:1.3;
  letter-spacing:-.01em;
  margin:0 0 18px;
}
.hero h1 .hl{
  color:var(--amber);
}
.hero-lead{
  font-size:17px;
  line-height:1.9;
  color:rgba(242,239,230,.92);
  max-width:620px;
  margin-bottom:30px;
}
.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:30px;
}
.hero-trust{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding-left:0;
  list-style:none;
}
.hero-trust li{
  font-size:13px;
  color:rgba(242,239,230,.85);
  padding:7px 14px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  letter-spacing:.02em;
}

/* Hero 图卡 */
.hero-visual{
  position:relative;
  z-index:2;
  border-radius:24px;
  overflow:hidden;
  min-height:470px;
  height:100%;
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(200deg,rgba(47,124,110,.72) 0%,rgba(20,43,38,.96) 80%),
    url("/assets/images/coverpic/cover-4.png") center/cover no-repeat;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}
.hero-visual-inner{
  width:100%;
  padding:34px;
  color:#fff;
}
.panel-browser{
  background:rgba(15,30,26,.75);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:22px;
  margin-bottom:16px;
}
.browser-dots{display:flex;gap:7px;margin-bottom:18px}
.browser-dots i{
  width:10px;height:10px;border-radius:50%;
  display:block;
}
.browser-dots i:nth-child(1){background:var(--brick)}
.browser-dots i:nth-child(2){background:var(--amber)}
.browser-dots i:nth-child(3){background:var(--teal)}
.browser-title{
  font-size:16px;font-weight:700;
  display:flex;align-items:center;gap:8px;
}
.browser-title svg{width:18px;height:18px;color:var(--amber)}
.browser-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.browser-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13.5px;
  color:rgba(242,239,230,.9);
  padding:9px 12px;
  background:rgba(255,255,255,.07);
  border-radius:12px;
}
.browser-list .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--amber);
  flex:0 0 8px;
}
.hero-visual-foot{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(242,239,230,.82);
}

/* 卖点三连 */
.feature-area{
  background:var(--bg);
}
.feature-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.feature-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
  background:var(--card);
  border:1px solid var(--soft-line);
  border-radius:18px;
  padding:24px 26px;
  box-shadow:none;
  transition:all .25s ease;
}
.feature-item:hover{
  border-color:rgba(30,58,52,.35);
  box-shadow:var(--shadow);
  transform:translateY(-4px);
}
.feature-icon{
  width:64px;height:64px;
  flex:0 0 64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(47,124,110,.12);
  color:var(--teal);
}
.feature-item:hover .feature-icon{
  background:rgba(184,137,67,.16);
  color:var(--amber-dark);
}
.feature-icon svg{width:30px;height:30px}
.feature-copy h3{
  margin:0 0 6px;
  font-size:19px;
  color:var(--ink);
}
.feature-copy p{margin:0;color:var(--muted);font-size:15px;line-height:1.8}
.feature-arrow{
  margin-left:auto;
  width:36px;height:36px;
  flex:0 0 36px;
  align-self:center;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  transition:all .25s ease;
}
.feature-item:hover .feature-arrow{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.feature-arrow svg{width:16px;height:16px}

/* 场景演示 */
.demo-section{
  background:linear-gradient(180deg,#EEF0E7,#F6F3ED);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.process-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:44px;
  max-width:960px;
  margin:0 auto 46px;
}
.process-steps::before{
  content:"";
  position:absolute;
  top:36px;
  left:14%;
  width:72%;
  height:2px;
  border-top:2px dashed rgba(47,124,110,.45);
}
.process-item{
  position:relative;
  text-align:center;
  padding:0 8px;
}
.process-icon{
  width:72px;height:72px;
  margin:0 auto 16px;
  background:var(--deep);
  border:4px solid var(--cream);
  box-shadow:0 0 0 1px rgba(30,58,52,.15);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--amber);
  position:relative;
  z-index:1;
}
.process-icon svg{width:30px;height:30px}
.process-item h3{font-size:19px;margin:0 0 8px;color:var(--ink)}
.process-item p{font-size:14px;color:var(--muted);margin:0;line-height:1.7}

/* 演示大图 */
.demo-stage{
  max-width:1120px;
  margin:0 auto;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:var(--deep);
}
.demo-shot{
  position:relative;
  overflow:hidden;
}
.demo-shot::before{
  content:"";
  display:block;
  padding-top:56%;
}
.demo-shot .cover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.demo-shot-tag{
  position:absolute;
  left:20px;top:20px;
  padding:7px 16px;
  background:rgba(20,43,38,.68);
  backdrop-filter:blur(4px);
  color:var(--cream);font-size:13px;font-weight:500;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
}
.demo-caption{
  position:absolute;
  left:20px;right:20px;bottom:16px;
  color:rgba(242,239,230,.9);
  font-size:14px;
  line-height:1.6;
  text-align:center;
  background:linear-gradient(180deg,transparent,rgba(8,20,17,.72));
  padding:44px 12px 12px;
}
.demo-more{
  text-align:center;
  padding:22px 0 0;
  font-size:14px;
}
.demo-banner{
  margin-top:56px;
  border-radius:22px;
  background:linear-gradient(120deg,var(--deep),var(--ink));
  color:var(--cream);
  padding:44px 52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
}
.demo-banner h3{
  color:#fff;
  font-size:21px;
  margin-bottom:6px;
}
.demo-banner p{margin:0;color:rgba(242,239,230,.8);font-size:14px}

/* 社会认同 */
.reviews-section{
  background:var(--bg);
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-bottom:56px;
}
.stat-item{
  background:var(--card);
  border:1px solid var(--soft-line);
  border-radius:20px;
  padding:30px 22px;
  text-align:center;
  transition:all .25s ease;
}
.stat-item:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.stat-number{
  font-size:44px;
  font-weight:800;
  color:var(--amber-dark);
  line-height:1.15;
  letter-spacing:-.02em;
  font-family:var(--sans);
}
.stat-label{
  font-size:13px;
  color:var(--muted);
  margin-top:10px;
  letter-spacing:.04em;
}
.quote-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.quote-card{
  padding:34px 8px 26px 0;
  border-bottom:1px solid var(--line);
}
.quote-mark{
  font-family:var(--serif);
  font-size:52px;
  line-height:1;
  color:var(--amber);
  margin-bottom:6px;
}
.quote-card p{
  font-family:var(--serif);
  font-size:17px;
  line-height:1.9;
  color:var(--text);
  margin-bottom:16px;
}
.quote-user{
  font-size:14px;
  font-style:italic;
  color:var(--muted);
}

/* 最新信息 / CMS */
.news-section{
  background:#FBFAF6;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.news-main-card{
  background:var(--card);
  border:1px solid var(--soft-line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:none;
  transition:all .25s ease;
  height:100%;
}
.news-main-card:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-4px);
}
.news-cover{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/8;
  background:rgba(47,124,110,.12);
}
.news-cover img{width:100%;height:100%;object-fit:cover}
.news-cover .badge{
  position:absolute;left:16px;top:16px;
  background:rgba(20,43,38,.78);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
}
.news-main-body{
  padding:24px 26px 26px;
}
.news-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  color:var(--muted);
  font-size:13px;
  margin-bottom:10px;
}
.news-meta .meta-divider{width:3px;height:3px;border-radius:50%;background:var(--line);display:inline-block}
.news-title{
  font-size:20px;
  font-weight:700;
  color:var(--ink);
  line-height:1.45;
  margin-bottom:8px;
}
.news-title a{color:inherit}
.news-title a:hover{color:var(--amber)}
.news-excerpt{
  color:var(--muted);
  font-size:14px;
  margin-bottom:16px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.news-read{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:var(--amber-dark);
  font-size:14px;
  font-weight:600;
}
.news-read .arrow{transition:transform .25s ease}
.news-main-card:hover .news-read .arrow{transform:translateX(4px)}

.news-sub-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:16px;
}
.sub-news-card{
  background:var(--card);
  border:1px solid var(--soft-line);
  border-radius:16px;
  padding:18px;
  transition:all .25s ease;
}
.sub-news-card:hover{
  box-shadow:var(--shadow);
  transform:translateY(-3px);
  border-color:rgba(30,58,52,.25);
}
.sub-news-title{
  font-size:16px;
  font-weight:600;
  color:var(--ink);
  margin:8px 0 8px;
  line-height:1.5;
}
.sub-news-title a{color:inherit}
.sub-news-title a:hover{color:var(--amber)}
.sub-news-excerpt{
  font-size:13.5px;
  color:var(--muted);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.news-date{
  display:inline-flex;
  font-size:12px;
  color:var(--muted);
  margin-top:12px;
}

.hot-panel{
  background:var(--card);
  border:1px solid var(--soft-line);
  border-radius:20px;
  padding:22px;
  box-shadow:none;
}
.hot-panel-title{
  font-size:18px;
  font-weight:700;
  color:var(--ink);
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
  margin-bottom:6px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.hot-panel-title .pulse{
  width:8px;height:8px;
  background:var(--brick);
  border-radius:50%;
}
.hot-list{
  list-style:none;
  padding:0;
  margin:0;
}
.hot-list li{
  border-bottom:1px dashed var(--line);
  padding:14px 0;
}
.hot-list li:last-child{border-bottom:0}
.hot-link{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.hot-num{
  font-family:var(--serif);
  font-size:18px;
  font-weight:700;
  color:var(--line);
  line-height:1.3;
  flex:0 0 26px;
  transition:color .25s ease;
}
.hot-link:hover .hot-num{color:var(--amber)}
.hot-text{flex:1;min-width:0}
.hot-text .t{
  font-size:14.5px;
  font-weight:600;
  color:var(--text);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-bottom:6px;
  transition:color .25s ease;
}
.hot-link:hover .hot-text .t{color:var(--amber)}
.hot-side{
  font-size:12px;
  color:var(--muted);
  display:flex;
  gap:10px;
  align-items:center;
}
.hot-more{
  display:block;
  text-align:center;
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid var(--soft-line);
}
.news-empty{
  height:280px;
  padding:30px;
  background:var(--card);
  border:1px dashed var(--line);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.news-empty p{color:var(--muted);font-size:16px;margin:16px 0 0}
.news-empty .empty-cup{
  width:64px;height:64px;
  border-radius:50%;
  background:rgba(47,124,110,.12);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto;
  color:var(--teal);
}

/* CTA 收尾 */
.cta-section{
  position:relative;
  background:linear-gradient(125deg,#142B26,#1E3A34 65%,#2F7C6E);
  overflow:hidden;
  padding:96px 0;
}
.cta-section::before{
  content:"";
  position:absolute;
  width:560px;height:560px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(184,137,67,.35) 0%,transparent 68%);
  top:-220px;right:-80px;
}
.cta-inner{
  position:relative;
  z-index:2;
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
.cta-inner h2{
  color:#fff;
  font-size:34px;
  font-weight:700;
  margin-bottom:14px;
}
.cta-inner .cta-text{
  color:rgba(242,239,230,.86);
  font-size:16px;
  line-height:1.8;
  margin-bottom:30px;
}
.cta-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

/* 页脚 */
.site-footer{
  background:var(--deep);
  color:rgba(242,239,230,.78);
  padding:72px 0 30px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-brand{
  color:#fff;
  font-size:20px;
  font-weight:700;
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
}
.footer-brand .brand-mark{
  color:var(--cream);
}
.footer-about{
  font-size:13.5px;
  color:rgba(242,239,230,.66);
  max-width:330px;
  line-height:1.8;
}
.footer-title{
  color:#fff;
  font-size:15px;
  font-weight:600;
  margin-bottom:16px;
  letter-spacing:.02em;
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:7px;
}
.footer-links a{
  color:rgba(242,239,230,.74);
  font-size:14px;
}
.footer-links a:hover{color:var(--amber)}
.footer-meta{
  font-size:13px;
  color:rgba(242,239,230,.5);
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:52px;
  padding-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 20px;
  row-gap:12px;
  justify-content:space-between;
}
.footer-meta a{color:rgba(242,239,230,.6)}
.footer-meta a:hover{color:var(--cream)}

/* 底部固定转化条 */
.bottom-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:980;
  background:#142B26;
  border-top:1px solid rgba(184,137,67,.45);
  padding:12px 24px;
  color:var(--cream);
  transform:translateY(105%);
  transition:transform .35s ease;
  pointer-events:none;
}
.bottom-cta.show{
  transform:translateY(0);
  pointer-events:auto;
}
.bottom-cta-content{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.bottom-cta-content .bc-text{
  font-size:14.5px;
  color:rgba(242,239,230,.88);
}
.bottom-cta-content .bc-sub{
  font-size:12px;
  color:rgba(242,239,230,.52);
  margin-left:8px;
}
.bottom-cta .btn{
  height:42px;
  padding:0 22px;
  flex-shrink:0;
}

@media (max-width: 1199.98px){
  .hero h1{font-size:40px}
}

@media (max-width: 991.98px){
  .section{padding:72px 0}
  .hero{padding:160px 0 84px}
  .hero h1{font-size:36px;line-height:1.4}
  .nav-capsule-wrap .capsule{
    position:relative;
  }
  .capsule .nav-mid{
    pointer-events:none;
    position:absolute;
    top:calc(100% + 12px);
    left:0;right:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:8px;
    border-radius:26px;
    background:rgba(246,243,237,.97);
    backdrop-filter:blur(12px);
    border:1px solid rgba(227,221,210,.95);
    box-shadow:var(--shadow);
    margin:0;
    max-height:0;
    overflow:hidden;
    visibility:hidden;
    opacity:0;
    transition:max-height .3s ease, opacity .3s ease, visibility .3s ease, padding .3s ease;
  }
  .capsule.nav-open .nav-mid{
    visibility:visible;
    opacity:1;
    max-height:560px;
    padding:18px 12px;
    pointer-events:auto;
  }
  .capsule .nav-mid a{
    height:48px;
    justify-content:flex-start;
    width:100%;
  }
  .capsule .nav-toggle{
    display:block;
  }
  .btn-nav-cta{display:none}
  .nav-mobile-btn{
    display:flex;
    margin-top:8px;
  }
  .hero-visual{margin-top:32px}
  .browser-list li{font-size:14px}
  .process-steps{
    grid-template-columns:1fr;
    gap:42px;
    max-width:520px;
  }
  .process-steps::before{display:none}
  .demo-shot::before{padding-top:62%}
  .demo-banner{padding:30px 24px}
  .stat-grid{gap:14px}
  .quote-row{grid-template-columns:1fr;gap:18px}
  .news-main-card{margin-bottom:0}
  .news-sub-grid{grid-template-columns:1fr}
  .footer-col{margin-bottom:36px}
}

@media (max-width: 767.98px){
  body{padding-bottom:70px}
  .container{padding-left:16px;padding-right:16px}
  .section{padding:60px 0}
  .site-header{top:10px}
  .capsule{height:60px}
  .capsule.scrolled{height:56px}
  .brand-text{font-size:17px}
  .hero{padding:132px 0 64px}
  .hero h1{font-size:30px;line-height:1.45;letter-spacing:0}
  .hero-lead{font-size:15.5px}
  .hero-actions .btn{height:48px;padding:0 22px;font-size:14px}
  .section-head h2{font-size:27px}
  .section-head p{font-size:15px}
  .feature-area .row > *{margin-bottom:0}
  .feature-item{flex-wrap:wrap;padding:20px}
  .feature-arrow{display:none}
  .process-item{padding:0}
  .demo-shot::before{padding-top:68%}
  .demo-banner{width:100%;align-items:flex-start}
  .stat-grid{grid-template-columns:1fr;gap:12px}
  .stat-item{padding:24px 16px}
  .stat-number{font-size:38px}
  .quote-card{padding-top:10px}
  .news-main-body{padding:20px}
  .demo-banner h3{font-size:19px}
  .cta-inner h2{font-size:28px}
  .cta-buttons .btn{width:100%}
  .bottom-cta{padding:8px 12px}
  .bottom-cta-content .bc-sub{display:none}
  .bottom-cta-content .btn{height:40px;font-size:14px}
}

@media (max-width: 520px){
  .hero h1{font-size:27px}
  .hero-trust li{font-size:11.5px;padding:6px 10px}
  .badge-trust{gap:5px}
  .hero-actions .btn{flex:1}
  .stat-number{font-size:33px}
  .process-icon{width:64px;height:64px}
  .footer-links{grid-template-columns:1fr 1fr}
  .footer-meta{display:block;line-height:2}
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* roulang page: category1 */
:root{
  --primary:#1E3A34;
  --primary-deep:#142B26;
  --accent:#B88943;
  --accent-hover:#A97A35;
  --teal:#2F7C6E;
  --terra:#BC583A;
  --paper:#F6F3ED;
  --cream:#F2EFE6;
  --ink:#2B2B26;
  --muted:#6E6A5E;
  --line:#E3DDD2;
  --card:#FFFFFF;
  --soft-green:rgba(47,124,110,.12);
  --soft-gold:rgba(184,137,67,.14);
  --soft-red:rgba(188,88,58,.10);
  --radius:14px;
  --radius-lg:20px;
  --shadow:0 18px 42px rgba(51,43,30,.09);
  --shadow-sm:0 10px 24px rgba(51,43,30,.07);
  --burger-width:22px;
  --nav-h:60px;
  --space-section:96px;
  --space-section-md:64px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.8;
  font-size:16px;
  min-height:100vh;
  padding-top:0;
  overflow-x:hidden;
}
a{color:var(--accent);text-decoration:none;transition:color .2s ease}
a:hover{color:var(--accent-hover)}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none}
.container{max-width:1240px;padding-left:20px;padding-right:20px}
@media (min-width:1200px){
  .container{max-width:1340px}
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:600;font-size:15px;line-height:1;padding:16px 28px;border-radius:56px;
  transition:background .25s ease,color .25s ease,transform .2s ease,border-color .25s ease,box-shadow .2s ease;
  border:1.5px solid transparent;letter-spacing:.03em;
}
.btn:focus-visible,.btn:focus{outline:3px solid rgba(184,137,67,.4);outline-offset:3px;box-shadow:none}
.btn-amber{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-amber:hover,.btn-amber:focus{background:var(--accent-hover);border-color:var(--accent-hover);color:#fff;transform:translateY(-1px)}
.btn-amber:active{background:var(--accent-hover);transform:scale(.99)}
.btn-outline{background:transparent;color:#fff;border-color:rgba(242,239,230,.62)}
.btn-outline:hover{background:var(--accent);color:#142B26;border-color:var(--accent)}
.btn-light-solid{background:var(--cream);color:var(--primary);border-color:var(--cream)}
.btn-light-solid:hover{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-sm{padding:11px 22px;font-size:14px}
.btn-xs{padding:8px 14px;font-size:13px}

/* ===== Brand ===== */
.brand{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:700;font-size:20px;color:var(--primary);
  letter-spacing:-.01em;
}
.brand-mark{
  width:34px;height:34px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;
  background:var(--primary);color:var(--cream);flex-shrink:0;
}
.brand-mark svg{width:20px;height:20px}
.brand-text{white-space:nowrap;line-height:1.1;font-size:20px;font-weight:800}
.brand-key{color:var(--accent)}
footer .brand{color:var(--cream)}
footer .brand-mark{width:36px;height:36px;border-radius:12px;background:var(--accent);color:#142B26}
footer .brand-key{color:var(--accent)}

/* ===== Header / Capsule Nav ===== */
.site-header{
  position:fixed;top:14px;left:0;right:0;z-index:1030;
  padding:0 16px;pointer-events:none;transition:top .3s ease;
}
.site-header .capsule{
  pointer-events:auto;
  max-width:1280px;margin:0 auto;
  background:rgba(246,243,237,.84);
  -webkit-backdrop-filter:blur(14px) saturate(150%);
  backdrop-filter:blur(14px) saturate(150%);
  border:1px solid rgba(227,221,210,.8);
  border-radius:58px;
  min-height:58px;
  padding:8px 12px 8px 18px;
  display:flex;align-items:center;flex-wrap:nowrap;
  box-shadow:0 6px 22px rgba(51,43,30,.07);
  transition:box-shadow .3s ease,background .3s ease,min-height .3s ease;
}
.site-header.is-scrolled .capsule{
  min-height:52px;
  background:rgba(246,243,237,.94);
  box-shadow:0 10px 30px rgba(51,43,30,.13);
}
.nav-mid{
  display:flex;align-items:center;gap:4px;margin-left:38px;flex:1;
}
.nav-link{
  display:inline-flex;align-items:center;height:40px;padding:0 13px;
  color:var(--primary);font-size:14px;font-weight:500;
  border-radius:24px;position:relative;transition:background .22s ease,color .22s ease;
  white-space:nowrap;
}
.nav-link:hover{background:rgba(30,58,52,.08);color:var(--primary)}
.nav-link.active{background:var(--primary);color:var(--cream)}
.nav-link.active:hover{background:var(--primary);color:var(--cream)}
.nav-btn-cta{margin-left:18px;flex-shrink:0}
.nav-mobile-btn{display:none!important;margin:10px 0 6px}
.nav-toggle{
  display:none;width:42px;height:42px;border:none;background:transparent;
  margin-left:auto;align-items:center;justify-content:center;cursor:pointer;
}
.nav-toggle span{
  display:block;width:var(--burger-width);height:2.5px;border-radius:2px;
  background:var(--primary);margin:3px 0;transition:transform .3s ease,opacity .2s ease;
}
.nav-toggle.open span:first-child{transform:translateY(6px) rotate(45deg)}
.nav-toggle.open span:last-child{transform:translateY(-5.5px) rotate(-45deg)}
@media(max-width:991.98px){
  .nav-toggle{display:flex}
  .nav-mid{
    display:none;
    position:absolute;top:calc(100% - 2px);left:0;right:0;
    margin:0;padding:10px 12px 12px;
    background:rgba(246,243,237,.96);
    -webkit-backdrop-filter:blur(16px);
    backdrop-filter:blur(16px);
    border:1px solid rgba(227,221,210,.9);
    border-radius:22px;
    box-shadow:0 18px 44px rgba(26,20,12,.12);
    width:100%;flex-direction:column;align-items:stretch;
  }
  .nav-mid.open{display:flex;animation:navIn .22s ease}
  .nav-mid .nav-link{width:100%;height:46px;padding-bottom:0;padding-top:0}
  .nav-mobile-btn{display:inline-flex!important}
  .nav-mid + .btn-nav-cta{display:none}
}
@keyframes navIn{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===== Layout & section common ===== */
main{display:block}
.section{padding:var(--space-section) 0;position:relative}
.section-head{
  display:flex;align-items:flex-end;
  justify-content:space-between;gap:24px;margin-bottom:36px;
}
.section-title{
  font-size:28px;font-weight:700;color:var(--primary);line-height:1.35;
  padding-left:16px;position:relative;letter-spacing:.01em;
  font-family:"Noto Serif SC","Songti SC",serif;
}
.section-title:before{
  content:"";display:block;width:8px;height:26px;border-radius:6px;
  background:var(--accent);position:absolute;left:0;top:8px;
}
.section-sub{color:var(--muted);padding-left:16px;margin-top:10px;max-width:600px;font-size:15px}
.eyebrow-tag{
  display:inline-block;font-size:12px;font-weight:500;letter-spacing:.12em;
  padding:5px 12px;color:var(--teal);background:var(--soft-green);
  border-radius:20px;margin-bottom:12px;text-transform:uppercase;
}
#breadcrumb-nav .breadcrumb{background:transparent;padding:0;margin-bottom:0}
#breadcrumb-nav{display:flex}

/* ===== Page heading ===== */
.page-heading{
  padding:150px 0 52px;background:var(--paper);
  border-bottom:1px solid var(--line);margin-bottom:0;
}
.page-heading-inner{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;flex-wrap:nowrap}
.page-breadcrumb{font-size:13px;color:var(--muted);display:flex;align-items:center;gap:8px;margin-bottom:16px}
.page-breadcrumb a{color:var(--muted)}
.page-breadcrumb a:hover{color:var(--teal)}
.page-breadcrumb .sep{color:#B4AFA3}
.page-heading h1{
  font-size:38px;
  font-weight:700;color:var(--primary);
  margin:0;line-height:1.28;
  font-family:"Noto Serif SC","Songti SC",serif;
  letter-spacing:.005em;
}
.page-heading h1 .dot{color:var(--accent);margin-right:6px}
.page-heading p{
  color:var(--muted);margin-top:12px;
  max-width:720px;font-size:16px;line-height:2;
}
.page-heading .lowkey-note{
  display:block;margin-top:16px;color:#8B857A;font-size:13px;
}
@media(max-width:767.98px){
  .page-heading{padding:120px 0 36px}
  .page-heading h1{font-size:30px}
  .page-heading-inner{flex-direction:column;align-items:flex-start;gap:18px}
}

/* ===== Entry / anchor nav ===== */
.anchor-nav{
  padding:8px 0;background:#F0ECE2;
  border-bottom:1px solid #E5DED2;position:sticky;top:92px;z-index:5;
}
.anchor-nav .anchor-list{
  display:flex;align-items:center;gap:4px;overflow-x:auto;flex-wrap:wrap;
}
.anchor-nav .anchor-list a{
  display:inline-flex;padding:8px 16px;flex-shrink:0;color:var(--primary);
  font-size:14px;line-height:1.3;font-weight:500;border-radius:20px;
}
.anchor-nav .anchor-list a:hover{background:rgba(47,124,110,.1);color:var(--teal)}
.anchor-nav .anchor-list a.all-link{color:var(--accent)}
@media(max-width:767.98px){
  .anchor-nav{top:auto}
  .anchor-nav .anchor-list{display:flex;gap:4px;flex-wrap:nowrap;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .anchor-nav .anchor-list::-webkit-scrollbar{display:none}
}

/* ===== Reading content main ===== */
.guide-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:84px;
  align-items:start;
}
.guide-body{max-width:900px;min-width:0}
body .guide-body h2{
  font-size:23px;font-weight:700;color:var(--primary);
  margin-top:50px;margin-bottom:18px;
  display:flex;align-items:center;gap:12px;
  font-family:"Noto Serif SC","Songti SC",serif;
}
.guide-body h2 span{color:var(--accent);font-size:17px;font-weight:800}
.guide-body h3{font-size:17px;font-weight:700;color:var(--primary);margin:24px 0 10px;line-height:1.7;padding-left:0}
.guide-body p{color:#39372F;font-size:16px;margin-bottom:14px}
.guide-body ul.type-list li{
  padding-left:24px;position:relative;margin-bottom:10px;font-size:15px;color:#39372F;
}
.guide-body ul.type-list li:before{
  content:"";position:absolute;left:2px;top:13px;width:7px;height:7px;border-radius:2px;
  background:var(--teal);opacity:.9;
}
.body-gap{border-bottom:1px dashed var(--line);margin:44px 0 42px}

/* ===== cards ===== */
.recommend-card{
  border:1px solid #E9E2D8;background:var(--card);border-radius:var(--radius);
  padding:26px 18px;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.recommend-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm);border-color:#D5CCBB}
.recommend-card .rc-title{font-size:17px;font-weight:700;color:var(--primary);margin-bottom:8px}
.recommend-card .rc-text{font-size:14px;line-height:1.8;color:var(--muted);margin-bottom:16px}
.recommend-card a.rc-link{font-weight:500;font-size:13px}

/* ===== lead/paragraph block ===== */
.split-block{
  display:grid;grid-template-columns:1fr 1fr;
  gap:26px 60px;align-items:center;margin-top:24px;
}
.split-block .visual-card{
  border-radius:var(--radius-lg);
  overflow:hidden;background:#E6E0D6;box-shadow:var(--shadow-sm);
}
.split-block .other-list{
  display:flex;flex-direction:column;gap:0;
}
.split-block .other-list li{
  padding:13px 0 14px;border-bottom:1px solid var(--line);
  position:relative;font-size:15px;color:#4A473D;
}
.split-block .other-list li b{font-weight:600;color:var(--primary)}
.split-block .other-list li:last-child{border-bottom:none}
.card-img-wrap{position:relative}
.card-img-wrap img{width:100%;object-fit:cover;aspect-ratio:4/3;background:#EEE9E0}
.card-image-caption{
  padding:14px 10px 8px;text-align:center;color:#90897C;font-size:13px;
}
@media(max-width:991.98px){
  .split-block{grid-template-columns:1fr;gap:26px}
}

/* ===== Step / path display ===== */
.path-step-row{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
  margin-top:18px;
}
.path-step{position:relative;padding:8px 0 0}
.path-step .step-index{
  font-size:16px;font-weight:800;color:var(--accent);line-height:1.4;margin-bottom:4px;
  display:flex;align-items:center;gap:8px;
}
.path-step .step-index small{font-size:12px;font-weight:500;color:var(--muted)}
.step-box{
  background:rgba(255,255,255,.7);border-radius:14px;
  padding:22px 12px 19px;text-align:center;
  border:1px solid #E7E0D4;position:relative;height:100%;
}
.step-box:hover{border-color:var(--accent);box-shadow:var(--shadow-sm)}
.step-box .ic{
  width:52px;height:52px;margin:0 auto 14px;border-radius:16px;
  background:var(--soft-green);color:var(--teal);display:flex;align-items:center;justify-content:center;
}
.step-box .ic svg{width:26px;height:26px}
.step-box h5{font-size:14px;color:var(--primary);font-weight:700;margin-bottom:8px}
.step-box p{font-size:13px;color:var(--muted);margin:0;line-height:1.7}
.step-arrow{
  position:absolute;font-size:20px;color:var(--accent);
  top:50%;right:-17px;transform:translateY(-50%);z-index:2;line-height:1;pointer-events:none;
}
@media(max-width:991.98px){
  .path-step-row{grid-template-columns:repeat(2,1fr);row-gap:16px}
  .step-arrow{display:none}
}
@media(max-width:575.98px){
  .path-step-row{grid-template-columns:1fr;gap:10px}
  .path-step{max-width:100%}
  .guide-body h2{font-size:21px}
  .section-title{font-size:22px}
}

/* ===== Table ===== */
.table-responsive{margin-top:20px}
.custom-table{
  width:100%;border-collapse:collapse;font-size:14px;color:#39372F;
  border-radius:12px;overflow:hidden;background:var(--card);
  box-shadow:var(--shadow-sm);
}
.custom-table th{
  background:var(--primary);color:var(--cream);font-weight:500;
  padding:14px 15px;text-align:left;white-space:nowrap;
}
.custom-table td{
  padding:15px;border-bottom:1px solid #EDE7DE;vertical-align:top;line-height:1.75;
}
.custom-table td .time-tag{font-weight:600;color:var(--primary)}
.custom-table tbody tr{transition:background .2s ease}
.custom-table tbody tr:hover{background:rgba(47,124,110,.05)}
.custom-table tr:last-child td{border-bottom:none}

/* ===== Attention / info block ===== */
.note-box{
  border-radius:12px;padding:20px 44px 20px 24px;
  font-size:14px;line-height:1.9;position:relative;margin-bottom:18px;
}
.note-box .note-title{font-weight:700;margin-bottom:5px}
.note-box.green{background:rgba(47,124,110,.09);border-left:4px solid var(--teal)}
.note-box.gold{
  background:rgba(184,137,67,.09);border-left:4px solid var(--accent);
}
.note-box.red{
  background:rgba(188,88,58,.08);border-left:4px solid var(--terra);
}
.callout-wrap{
  background:rgba(47,124,110,.07);border-radius:var(--radius);
  padding:26px 52px 26px 28px;display:grid;grid-template-columns:64px 1fr;
  gap:20px;align-items:start;margin-top:30px;
}

/* ===== Sidebar small ===== */
.guide-side{
  display:flex;flex-direction:column;gap:0;border-top:0;
}
.side-tpl{
  margin-bottom:18px;
  background:rgba(237,232,219,.4);
  padding:14px 4px 4px 20px;
}
.side-tpl span{
  font-size:15px;color:var(--primary);font-weight:600;margin-bottom:8px;display:block;
}
.side-list{
  border-bottom:1px solid var(--line);padding:12px 6px 12px 0;
  display:flex;align-items:center;
  column-gap:12px;row-gap:2px;flex-wrap:wrap;justify-content:space-between;
}
.side-list .name{font-size:14px;color:#4A473D;font-weight:400;flex:1;line-height:1.4}
.side-list .name:hover{color:var(--teal)}
.side-list .nums{font-size:12px;color:#8B857A}
.box-tagline{
  font-size:13px;text-align:center;color:#8B857A;margin-top:16px;
  line-height:1.7;
}
@media(max-width:1099.98px){
  .guide-layout{grid-template-columns:1fr;gap:52px}
}

/* ===== mini feature grid (带图) ===== */
.intro-advantage{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:24px;
}
.adv-card{
  border:1px solid transparent;padding:22px 12px 22px 0;
  border-bottom:2px solid #e4ded2;
}
.adv-card h4{font-size:16px;font-weight:700;color:var(--primary);margin-bottom:10px}
.adv-card p{margin:0;font-size:14px;color:var(--muted);line-height:1.85}
@media(max-width:767.98px){
  .intro-advantage{grid-template-columns:1fr;gap:8px}
}

/* ===== CTA ===== */
.cta-panel{
  background:var(--primary);color:var(--cream);
  border-radius:26px;padding:56px 36px;
  position:relative;overflow:hidden;
  background-image:url('/assets/images/backpic/back-1.png');
  background-size:cover;background-position:center;
  box-shadow:var(--shadow);
}
.cta-panel:before{
  content:"";position:absolute;inset:0;background:rgba(20,43,38,.78);z-index:1;
}
.cta-inner{position:relative;z-index:4;text-align:center;max-width:660px;margin:0 auto;min-height:230px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;}
.cta-inner h2{font-size:30px;color:var(--cream);font-weight:700;margin:0;font-family:"Noto Serif SC",serif}
.cta-inner p{color:rgba(242,239,230,.8);margin:0;font-size:15px}
@media(max-width:767.98px){
  .cta-panel{padding:32px 20px}
  .cta-inner h2{font-size:24px}
}

/* ===== tag ===== */
.tag-sm{
  display:inline-flex;padding:2px 11px;border-radius:14px;background:rgba(47,124,110,.12);
  color:var(--teal);font-size:12px;
  line-height:1.6;white-space:nowrap;
}
.tag-sm.amber{background:var(--soft-gold);color:var(--accent)}
.tag-sm.red{background:var(--soft-red);color:var(--terra)}

/* ===== FAQ ===== */
.faq-area{margin-top:46px}
.faq-area .faq-title{
  font-size:14px;padding-left:2px;margin-bottom:7px;color:var(--accent);
}
.accordion-item{
  background:transparent;border:none;border-bottom:1px solid #E4DECE;
}
.accordion-item:first-of-type{border-top:1px solid #e7e0d2}
.accordion-button{
  background:transparent;
  box-shadow:none;border:none;
  padding:22px 2px 20px;
  font-size:16px;font-weight:600;color:var(--primary);
  outline:none;
  display:flex;align-items:center;
}
.accordion-button:not(.collapsed){background:transparent;color:var(--primary);box-shadow:none}
.accordion-button:focus{box-shadow:none}
.accordion-button::after{
  background-image:none;width:0;display:none;
}
.accordion-button:after{display:none}
.faq-expand-icon{
  margin-left:auto;width:32px;height:32px;flex-shrink:0;display:flex;
  align-items:center;justify-content:center;border:1px solid #DDD4C6;border-radius:50%;
  color:var(--accent);font-style:normal;
  font-weight:400;transition:transform .3s ease,background .2s,color .2s;
}
.accordion-button:not(.collapsed) .faq-expand-icon{
  background:var(--accent);color:#fff;
  transform:rotate(45deg);
}
.accordion-body{
  padding:0 40px 22px 2px;
  color:#504D43;
  line-height:1.9;font-size:14px;
}
.accordion-body a{color:var(--teal);font-weight:500}
.accordion-body a:hover{color:var(--accent)}

/* ===== bottom back link ===== */
.back-to-home{
  display:flex;justify-content:flex-end;align-items:center;gap:12px;margin-top:22px;
}
.back-pill{
  display:inline-flex;align-items:center;gap:6px;padding:10px 18px;min-height:46px;
  border:1.5px solid #E2D8CC;color:var(--primary);
  border-radius:56px;font-weight:500;font-size:14px;
}
.back-pill:hover{border-color:var(--accent);background:var(--soft-gold)}

/* ===== Footer ===== */
.site-footer{
  background:var(--primary-deep);
  color:var(--cream);
  padding:72px 0 96px;
  position:relative;z-index:1;
}
.footer-brand{display:flex;align-items:center;justify-content:flex-start;gap:12px;color:var(--cream);font-weight:700;font-size:17px;margin-bottom:16px}
.footer-about{line-height:1.9;font-size:14px;color:rgba(242,239,230,.58);margin:0;max-width:380px}
.footer-col{display:flex;flex-direction:column}
.footer-title{font-size:15px;color:rgba(242,239,230,.92);margin-bottom:18px;letter-spacing:.03em;font-weight:600}
.footer-links{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a,.footer-links span{
  color:rgba(242,239,230,.6);font-size:14px;line-height:1.7;
}
.footer-links a:hover{color:var(--accent)}
.footer-meta{
  border-top:1px solid rgba(242,239,230,.12);
  margin-top:48px;padding-top:22px;
  display:flex;gap:20px;justify-content:space-between;
  color:rgba(242,239,230,.4);font-size:12px;
  line-height:1.8;
}
.footer-meta span:last-child{text-align:right;flex-shrink:0}
@media(max-width:767.98px){
  .site-footer{padding-top:52px;padding-bottom:70px}
  .footer-meta{flex-direction:column;gap:10px}
}

/* bottom spacer for fixed bar (only page which has fixed bar) */
body.fixed-bar-space{padding-bottom:72px}
.fixed-bottom-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:80;
  background:rgba(20,43,38,.98);border-top:1px solid rgba(184,137,67,.32);
  backdrop-filter:blur(8px);min-height:64px;
}
.fixed-bar-inner{display:flex;justify-content:flex-start;align-items:center;gap:20px;padding:12px 32px;max-width:1280px;margin:0 auto;height:67px}
.fixed-bar-copy{color:rgba(242,239,230,.84);font-size:14px;line-height:1.4}
.fixed-bar-copy strong{color:#fff}
.fixed-bar-copy .mb-tag{color:var(--accent);font-weight:600}
@media(prefers-reduced-motion:reduce){
  *{transition-duration:.05ms!important;scroll-behavior:auto}
}
@media(max-width:575.98px){
  .fixed-bar-copy .mb-hide{display:none}
  .fixed-bar-inner{padding:10px 12px;height:auto;flex-wrap:nowrap}
  .fixed-bottom-bar{min-height:56px}
  .fixed-bar-inner .btn{padding:10px 17px;font-size:13px}
  .fixed-bar-copy strong{font-size:13px}
}

/* focus visible */
a:focus-visible,.btn:focus-visible,.accordion-button:focus-visible{
  outline:3px solid rgba(184,137,67,.45);outline-offset:3px;
}
.anchor-list a:focus-visible{outline:3px solid rgba(184,137,67,.35);outline-offset:2px;border-radius:6px}

/* ===== responsive refine ===== */
@media(max-width:576px){
  .section{padding:56px 0}
  .brand-text{font-size:17px}
  .brand-mark{width:30px;height:30px}
  .site-header{top:10px;padding:0 10px}
  .caption-holder{font-size:12px}
  .btn-nav-cta{display:none;padding:10px 16px;font-size:13px}
}

/* roulang page: article */
:root{
  --deep:#1E3A34;
  --deep-2:#142B26;
  --deep-3:#0F211D;
  --amber:#B88943;
  --amber-deep:#A97A35;
  --teal:#2F7C6E;
  --clay:#BC583A;
  --paper:#F6F3ED;
  --cream:#F2EFE6;
  --card-bg:#FFFFFF;
  --ink:#2B2B26;
  --muted:#6E6A5E;
  --weak:#8B857A;
  --line:#E3DDD2;
  --card-line:#EFE8DD;
  --soft-line:#E6DFD3;
  --shadow-warm:rgba(51,43,30,.10);
  --radius-lg:18px;
  --radius-md:14px;
  --radius-pill:100px;
  --font-sans:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
  --font-serif:"Noto Serif SC","Songti SC",serif;
}
*,*::before,*::after{box-sizing:border-box;}
html{scroll-padding-top:120px;-webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.85;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;border:0;}
a{color:var(--deep);text-decoration:none;transition:color .25s ease;}
a:hover{color:var(--amber-deep);}
ul,ol{margin:0;padding:0;}
p{margin:0;}
h1,h2,h3,h4,h5,h6{line-height:1.35;margin:0 0 .5em;color:var(--ink);font-weight:700;}
strong{font-weight:600;}
.container{max-width:1240px;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  height:50px;padding:0 30px;border-radius:var(--radius-pill);
  font-weight:600;font-size:15px;line-height:1.2;border:1.5px solid transparent;
  transition:all .25s ease;white-space:nowrap;
}
.btn i{transition:transform .25s ease;font-size:15px;line-height:1;}
.btn:hover i{transform:translateX(3px);}
.btn:focus-visible,.btn-check:focus+.btn,.form-control:focus-visible{
  outline:3px solid rgba(184,137,67,.35);outline-offset:2px;box-shadow:none;
}
.btn-amber{background:var(--amber);border-color:var(--amber);color:#fff;}
.btn-amber:hover,.btn-amber:active{background:var(--amber-deep);border-color:var(--amber-deep);color:#fff;}
.btn-amber.active{background:#956A2D;border-color:#956A2D;}
.btn-deep{background:var(--deep);border-color:var(--deep);color:var(--cream);}
.btn-deep:hover{background:var(--deep-2);border-color:var(--deep-2);color:#fff;}
.btn-outline-deep{background:transparent;border-color:rgba(30,58,52,.55);color:var(--deep);}
.btn-outline-deep:hover{background:rgba(30,58,52,.08);border-color:var(--deep);color:var(--deep);}
.btn-cream{background:var(--cream);border-color:var(--cream);color:var(--deep);}
.btn-cream:hover{background:var(--amber);border-color:var(--amber);color:#fff;}
.btn-sm{height:42px;padding:0 22px;font-size:14px;}
.text-muted-light{color:rgba(242,239,230,.72);}
/* Header */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1050;
  padding-top:14px;pointer-events:none;
}
.site-header .capsule{
  pointer-events:auto;
  display:flex;align-items:center;
  max-width:1240px;height:74px;
  margin:0 auto;padding:.5rem .6rem .5rem 1.35rem;
  border-radius:var(--radius-pill);
  background:rgba(246,243,237,.84);
  border:1px solid rgba(230,223,211,.9);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  box-shadow:0 12px 30px rgba(51,43,30,.10);
  transition:background .3s ease,box-shadow .3s ease,padding .3s ease;
}
.site-header.scrolled .capsule{
  height:66px;
  background:rgba(246,243,237,.94);
  box-shadow:0 16px 30px rgba(51,43,30,.14);
}
.site-header .brand{
  display:inline-flex;align-items:center;gap:10px;
  font-size:1.18rem;font-weight:700;letter-spacing:.01em;color:var(--deep);
  margin-right:24px;line-height:1.2;
}
.site-header .brand:hover{color:var(--deep);}
.brand-mark{
  width:38px;height:38px;border-radius:13px;flex:0 0 auto;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--deep);color:var(--cream);
  box-shadow:0 6px 16px rgba(30,58,52,.24);
}
.brand-mark svg{width:21px;height:21px;}
.brand-text{white-space:nowrap;}
.brand-key{color:var(--amber-deep);font-weight:800;}
.nav-toggle{
  display:none;width:48px;height:48px;margin-left:auto;
  border:0;background:transparent;border-radius:50%;align-items:center;justify-content:center;
}
.nav-toggle span{display:block;width:22px;height:2px;background:var(--deep);margin:3px auto;border-radius:2px;transition:all .3s ease;}
.nav-mid{display:flex;align-items:center;gap:6px;}
.nav-mid .nav-link{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:44px;padding:0 18px;border-radius:var(--radius-pill);
  font-size:15px;font-weight:500;color:var(--deep);white-space:nowrap;
  border:1px solid transparent;transition:all .2s ease;
}
.nav-mid .nav-link:hover{background:rgba(184,137,67,.12);color:var(--amber-deep);}
.nav-mid .nav-link.active{background:var(--deep);color:#fff;font-weight:600;}
.btn-nav-cta{height:46px;padding:0 26px;margin-left:10px;}
.nav-mobile-btn{display:none;}
body.nav-open .nav-toggle span:nth-child(1){transform:translateY(5px) rotate(45deg);}
body.nav-open .nav-toggle span:nth-child(2){transform:translateY(-5px) rotate(-45deg);}
/* Page Wrapper */
.page-wrapper{padding-top:104px;}
/* Breadcrumb */
.breadcrumb-wrap{
  display:flex;align-items:center;flex-wrap:wrap;gap:6px;
  font-size:13px;letter-spacing:.02em;color:var(--weak);
}
.breadcrumb-wrap a{color:var(--teal);font-weight:500;}
.breadcrumb-wrap a:hover{color:var(--amber-deep);}
.breadcrumb-wrap .sep{color:#B7B0A3;}
.breadcrumb-wrap .current{color:var(--weak);max-width:320px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
/* Article hero */
.article-hero{
  position:relative;
  min-height:360px;
  padding:70px 0 52px;
  background-color:var(--deep);
  background-image:linear-gradient(97deg,rgba(15,33,29,.94),rgba(30,58,52,.76)),url('/assets/images/backpic/back-2.webp');
  background-size:cover;background-position:center;
  color:var(--cream);
  overflow:hidden;
}
.article-hero::after{
  content:"";position:absolute;right:-70px;bottom:-90px;width:300px;height:300px;
  border-radius:50%;border:1px solid rgba(242,239,230,.16);
  box-shadow:0 0 0 36px rgba(242,239,230,.05),0 0 0 70px rgba(242,239,230,.03);
  pointer-events:none;
}
.article-hero .container,.article-hero .row{position:relative;z-index:2;}
.article-hero .breadcrumb-wrap a{color:rgba(242,239,230,.78);}
.article-hero .breadcrumb-wrap a:hover{color:var(--amber);}
.article-hero .breadcrumb-wrap .current{color:rgba(242,239,230,.6);}
.article-hero-title{
  color:#fff;
  font-size:clamp(1.85rem,3.4vw,2.9rem);
  line-height:1.3;
  margin-top:22px;margin-bottom:20px;
  font-weight:700;letter-spacing:.02em;
  max-width:880px;
}
.article-hero-title em{font-style:normal;color:var(--amber);}
.article-hero-meta{
  display:flex;align-items:center;flex-wrap:wrap;gap:16px 22px;
  font-size:13.5px;color:rgba(242,239,230,.76);margin-top:12px;
}
.article-hero-meta .hd-cat{
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(184,137,67,.18);border:1px solid rgba(184,137,67,.42);
  color:#E7C792;border-radius:var(--radius-pill);padding:4px 16px;
  font-size:13px;font-weight:500;
}
.article-hero-meta .hd-text{display:inline-flex;align-items:center;gap:8px;}
.article-hero-meta i{color:var(--amber);font-size:15px;}
.article-hero-cover{
  position:absolute;right:24px;bottom:0;width:220px;height:190px;
  border-radius:22px 22px 0 0;object-fit:cover;
  border:1px solid rgba(242,239,230,.26);box-shadow:0 -6px 30px rgba(0,0,0,.22);
  display:none;
}
/* Article Layout */
.page-section{padding:56px 0;}
.article-layout{padding-top:60px;padding-bottom:84px;}
.article-main-col .article-card-box{
  background:#fff;border:1px solid var(--card-line);border-radius:var(--radius-lg);
  box-shadow:0 16px 40px rgba(51,43,30,.08);
  overflow:hidden;
}
.article-pad{padding:min(4vw,3.1rem);}
.article-title-area{
  border-bottom:1px solid var(--soft-line);margin-bottom:1.7rem;padding-bottom:1.5rem;
}
.article-title-area h1{
  font-size:clamp(1.55rem,2.6vw,2.1rem);
  color:var(--ink);line-height:1.5;margin:16px 0 12px;
}
.article-title-meta{
  display:flex;flex-wrap:wrap;gap:14px 20px;font-size:14px;color:var(--muted);
}
.article-title-meta .meta-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(47,124,110,.12);color:var(--teal);
  padding:5px 14px;border-radius:var(--radius-pill);
  font-weight:600;font-size:13px;
}
.article-title-meta i{font-size:14px;}
.article-title-meta time{display:inline-flex;align-items:center;gap:6px;}
/* Article cover in main */
.article-main-cover{
  position:relative;border-radius:var(--radius-md);overflow:hidden;
  margin-bottom:30px;background:#E5E2D8;
}
.article-main-cover::before{content:"";display:block;padding-bottom:56%;}
.article-main-cover img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
/* Article Body */
.article-vessel{font-family:var(--font-serif);font-size:17px;line-height:2;color:#35312b;}
.article-vessel h1,.article-vessel h2,.article-vessel h3,.article-vessel h4{
  font-family:var(--font-sans);color:var(--deep);font-weight:700;
  margin:1.75em 0 .6em;letter-spacing:.01em;
}
.article-vessel h2{font-size:1.45rem;line-height:1.55;border-left:4px solid var(--amber);padding-left:15px;}
.article-vessel h3{font-size:1.18rem;font-weight:600;margin-top:1.5em;}
.article-vessel p{margin-bottom:1.7em;letter-spacing:.015em;}
.article-vessel p:last-child{margin-bottom:0;}
.article-vessel a{color:var(--teal);font-weight:500;text-decoration:underline;text-underline-offset:3px;text-decoration-color:rgba(47,124,110,.35);}
.article-vessel a:hover{color:var(--amber-deep);text-decoration-color:var(--amber-deep);}
.article-vessel ul,.article-vessel ol{margin:0 0 1.7em 1.4em;}
.article-vessel li{margin-bottom:.65em;} 
.article-vessel blockquote{
  background:var(--paper);border-left:3px solid var(--amber);
  padding:24px 28px;border-radius:0 var(--radius-md) var(--radius-md) 0;
  color:#4C463C;margin:0 0 1.8em;font-family:var(--font-sans);
}
.article-vessel blockquote p{margin:0;}
.article-vessel .table, .article-vessel table{
  width:100%;font-family:var(--font-sans);font-size:.9rem;margin-bottom:1.9em;border-collapse:collapse;
}
.article-vessel table th,.article-vessel table td{border-top:1px solid var(--soft-line);border-bottom:1px solid var(--soft-line);padding:12px 12px;text-align:left;}
.article-vessel table thead th{border-top:2px solid var(--deep);border-bottom:2px solid var(--deep);font-weight:600;color:var(--deep);background:#FAF8F2;}
.article-vessel img{border-radius:12px;}
.article-vessel .note,.article-vessel .tip{
  border-radius:10px;padding:18px 20px 16px 46px;position:relative;
  font-family:var(--font-sans);font-size:.9rem;line-height:1.8;
  background:rgba(47,124,110,.12);margin-bottom:1.8em;color:#2B5049;
}
.article-vessel .note strong{color:var(--teal);}
.article-vessel .warning{
  background:rgba(188,88,58,.09);color:#7F402E;
  border-radius:10px;padding:16px 20px 14px 46px;position:relative;font-family:var(--font-sans);font-size:.9rem;margin-bottom:1.8em;
}
.article-vessel .note::before,.article-vessel .tip::before{content:"i";position:absolute;left:18px;top:18px;width:22px;height:22px;border-radius:50%;background:var(--teal);color:#fff;font-size:14px;line-height:22px;text-align:center;font-weight:700;font-family:var(--font-sans);}
.article-vessel .warning::before{content:"!";position:absolute;left:18px;top:18px;width:22px;height:22px;border-radius:50%;background:var(--clay);color:#fff;font-size:15px;line-height:22px;text-align:center;font-weight:700;font-family:var(--font-sans);}
/* Article actions */
.article-actions{
  display:flex;flex-wrap:wrap;align-items:center;gap:14px;
  padding:28px 0 0;margin-top:34px;border-top:1px dashed var(--soft-line);
}
.article-actions .btn{height:46px;}
/* Not found */
.not-found-panel{
  text-align:center;padding:8px 16px 26px;
}
.not-found-code{
  font-size:66px;font-weight:800;line-height:1;color:rgba(184,137,67,.3);
  font-family:var(--font-serif);letter-spacing:.06em;
}
.not-found-panel h2{font-size:1.5rem;color:var(--deep);margin:24px 0 14px;}
.not-found-panel p{color:var(--muted);font-size:15px;max-width:520px;margin:0 auto 24px;}
/* Sidebar */
.article-side-col .side-card{
  background:#fff;border:1px solid var(--card-line);border-radius:var(--radius-lg);
  box-shadow:0 12px 28px rgba(51,43,30,.06);padding:26px 24px;
  margin-bottom:22px;
}
.side-card .side-title{
  font-size:16px;font-weight:700;color:var(--deep);margin-bottom:16px;
  display:flex;align-items:center;gap:8px;letter-spacing:.02em;
}
.side-card .side-title i{
  width:18px;height:4px;background:var(--amber);border-radius:3px;display:inline-block;
}
.side-card .side-title .bi{width:auto;background:transparent;font-size:18px;color:var(--teal)}
.channel-link-list .channel-item{
  display:flex;align-items:center;gap:10px;
  padding:12px 8px;border-radius:10px;
  color:var(--deep);font-weight:600;font-size:15px;
  border-bottom:1px dashed var(--soft-line);
  transition:all .2s ease;
}
.channel-link-list .channel-item:last-child{border-bottom:0;}
.channel-link-list .channel-item:hover{background:rgba(47,124,110,.07);color:var(--teal);padding-left:14px;}
.channel-link-list .channel-item i{color:var(--amber);margin-left:auto;font-size:14px;opacity:.7;}
.channel-link-list .channel-item small{display:block;font-weight:400;color:var(--weak);font-size:12.5px;}
.entry-quick-card{
  background:var(--deep-2);overflow:hidden;position:relative;border-radius:var(--radius-lg);
  padding:28px 24px;border:1px solid var(--deep-2);color:var(--cream);
}
.entry-quick-card::after{content:"";position:absolute;right:-50px;top:-60px;width:180px;height:180px;border-radius:50%;border:1px solid rgba(242,239,230,.16);box-shadow:0 0 0 24px rgba(242,239,230,.045);}
.entry-quick-card h3{color:#fff;font-size:17px;margin-bottom:10px;}
.entry-quick-card p{font-size:14px;color:rgba(242,239,230,.75);margin-bottom:20px;}
.entry-quick-card .btn{width:100%;}
.tags-group{display:flex;flex-wrap:wrap;gap:10px;}
.tags-group .tag{
  display:inline-flex;padding:6px 15px;background:rgba(47,124,110,.12);color:var(--teal);
  border-radius:var(--radius-pill);font-size:13px;font-weight:500;transition:all .2s;
}
.tags-group .tag:hover{background:var(--deep);color:#fff;}
.info-check-list{list-style:none;margin:0;}
.info-check-list li{
  display:flex;align-items:flex-start;gap:8px;font-size:14px;
  color:var(--muted);padding:8px 0;border-bottom:1px solid #F5F0E8;
}
.info-check-list li:last-child{border-bottom:0;}
.info-check-list i{color:var(--teal);margin-top:5px;}
/* Related category section */
.related-band{background:#ECEAE1;padding:86px 0 90px;}
.section-head{margin-bottom:46px;}
.section-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12.5px;font-weight:600;letter-spacing:.22em;color:var(--amber-deep);margin-bottom:12px;
}
.section-head h2{font-size:clamp(1.4rem,3vw,1.75rem);color:var(--deep);font-weight:700;margin-bottom:10px;}
.section-head p{margin:0;color:var(--muted);font-size:15px;max-width:760px;}
.pointer-line{display:inline-block;width:22px;height:4px;background:var(--amber);border-radius:8px;margin-right:8px;vertical-align:middle;}
.related-card{
  position:relative;overflow:hidden;height:100%;border-radius:var(--radius-lg);
  background:#fff;border:1px solid var(--card-line);box-shadow:0 10px 18px rgba(51,43,30,.05);
  transition:transform .25s ease,box-shadow .25s ease;
}
.related-card:hover{transform:translateY(-5px);box-shadow:0 16px 35px rgba(51,43,30,.12);}
.rc-pic{
  height:210px;position:relative;overflow:hidden;background:#DEDCD2;
}
.rc-pic::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 20%,rgba(8,20,17,.42));opacity:.4;}
.rc-pic img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease;}
.related-card:hover .rc-pic img{transform:scale(1.05);}
.rc-pic .rc-cat{
  position:absolute;left:16px;top:16px;z-index:2;
  background:rgba(20,43,38,.85);color:var(--cream);padding:6px 14px;border-radius:var(--radius-pill);
  font-size:12px;font-weight:500;backdrop-filter:blur(4px);
}
.rc-body{padding:22px 22px 24px;}
.rc-body h3{font-size:19px;font-weight:700;color:var(--ink);margin-bottom:8px;line-height:1.45;}
.rc-body p{color:var(--muted);font-size:14px;margin-bottom:16px;}
.related-link{
  display:inline-flex;align-items:center;gap:8px;font-size:14.5px;font-weight:600;color:var(--teal);
}
.related-link i{transition:transform .25s ease;}
.related-link:hover{color:var(--amber-deep);}
.related-link:hover i{transform:translateX(4px);}
/* cta */
.cta-band{
  background:var(--deep-2);
  position:relative;
  padding:90px 0;
  background-image:radial-gradient(rgba(242,239,230,.05) 1px,transparent 1px);
  background-size:34px 34px;
  color:var(--cream);overflow:hidden;
}
.cta-band::before{content:"";position:absolute;right:40px;top:-80px;width:250px;height:250px;border:32px solid rgba(184,137,67,.1);border-radius:50%;}
.cta-band .cta-title{color:#fff;font-size:clamp(1.7rem,4vw,2.25rem);font-weight:700;letter-spacing:.01em;}
.cta-band p{color:rgba(242,239,230,.78);font-size:15px;max-width:640px;margin:0;}
.cta-action{display:flex;flex-wrap:wrap;gap:14px;}
/* footer */
.site-footer{background:var(--deep-2);padding:64px 0 0;color:var(--cream);}
.footer-brand{display:flex;align-items:center;gap:10px;font-size:1.2rem;font-weight:700;color:#fff;}
.footer-brand .brand-mark{background:rgba(255,255,255,.12);color:#fff;}
.footer-about{margin:20px 0 0;color:rgba(242,239,230,.68);font-size:14.5px;line-height:1.9;max-width:460px;}
.footer-col{margin-bottom:20px;}
.footer-title{font-size:15px;font-weight:600;color:#fff;margin-bottom:18px;position:relative;padding-left:14px;}
.footer-title::before{content:"";position:absolute;left:0;top:8px;width:5px;height:16px;background:var(--amber);border-radius:3px;}
.footer-links{list-style:none;margin:0;}
.footer-links li{margin-bottom:10px;}
.footer-links a,.footer-links span{font-size:14px;color:rgba(242,239,230,.72);transition:color .2s ease;display:inline-block;padding:3px 0;}
.footer-links a:hover{color:var(--amber);padding-left:4px;}
.footer-meta{
  margin-top:46px;border-top:1px solid rgba(242,239,230,.14);
  padding:26px 0 32px;display:flex;flex-wrap:wrap;gap:10px;
  justify-content:space-between;
  color:rgba(242,239,230,.45);font-size:13px;
}
/* Animations */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s!important;transition-duration:.001s!important;scroll-behavior:auto!important;}
}
/* Responsive */
@media (max-width:991.98px){
  .page-wrapper{padding-top:92px;}
  .nav-toggle{display:flex;flex-direction:column;width:48px;height:48px;}
  .site-header .capsule{padding-left:16px;}
  .nav-btn-cta{display:none;}
  .nav-mid{
    position:fixed;top:calc(14px + 66px);left:16px;right:16px;z-index:1040;
    background:rgba(246,243,237,.97);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(230,223,211,.9);border-radius:22px;
    padding:18px 16px;box-shadow:0 20px 45px rgba(51,43,30,.2);
    display:flex;flex-direction:column;align-items:stretch;gap:4px;
    opacity:0;visibility:hidden;transform:translateY(-12px);
    transition:all .35s ease;max-height:80vh;overflow-y:auto;
  }
  .nav-mid.open{opacity:1;visibility:visible;transform:translateY(0);}
  .nav-mid .nav-link{justify-content:flex-start;padding:12px 20px;min-height:48px;}
  .nav-mobile-btn{display:inline-flex;margin-top:12px;margin-left:0;}
  .article-layout{padding-top:44px;}
  .article-hero-cover{display:none;}
}
@media (max-width:767.98px){
  .article-hero{padding:30px 0 36px;min-height:auto;}
  .article-title-meta{gap:10px 14px;}
  .section-head h2{margin-top:8px;}
  .rc-pic{height:190px;}
  .related-zone .related-card+.related-card{margin-top:20px;}
  .cta-band{padding:64px 0;}
  .cta-action .btn{width:100%;}
  .article-actions .btn{flex:1;}
}
@media (max-width:575.98px){
  .site-header .capsule{max-width:calc(100% - 16px);background:rgba(246,243,237,.92);}
  .site-header nav{}, 
  .brand-text{font-size:1rem;}
  .site-header{padding-top:8px;}
  .brand-mark{width:34px;height:34px;border-radius:12px;}
  .article-actions{flex-direction:column;align-items:stretch;}
  .article-actions .btn{width:100%;}
  .section-head h2{font-size:1.55rem;}
  .footer-meta{flex-direction:column;gap:6px;font-size:12.5px;}
}

/* roulang page: category2 */
:root{
  --ink:#1E3A34;
  --ink-deep:#142B26;
  --amber:#B88943;
  --amber-deep:#A97A35;
  --teal:#2F7C6E;
  --clay:#BC583A;
  --paper:#F6F3ED;
  --cream:#F2EFE6;
  --white:#FFFFFF;
  --text:#2B2B26;
  --muted:#6E6A5E;
  --soft-muted:#8B857A;
  --line:#E3DDD2;
  --line-soft:#EFE8DD;
  --radius:14px;
  --radius-sm:10px;
  --radius-lg:20px;
  --shadow:0 10px 30px rgba(51,43,30,.10);
  --shadow-sm:0 4px 14px rgba(51,43,30,.06);
  --font-sans:"Noto Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:130px}
body{
  margin:0;
  padding-top:88px;
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.8;
  background:var(--paper);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
body.page-faq{background:var(--paper)}
img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:color .25s ease,background .25s ease,border-color .25s ease,box-shadow .25s ease}
p{margin:0}
ul,ol{margin:0;padding:0}
h1,h2,h3,h4,h5,h6{
  font-family:var(--font-sans);
  color:var(--ink-deep);
  font-weight:700;
  line-height:1.45;
  margin:0;
}
.container{max-width:1200px}
.section-space{padding:76px 0}
.rounded-14{border-radius:var(--radius)}
@media (max-width:767px){
  body{padding-top:74px}
  .section-space{padding:54px 0}
}

/* ===== 胶囊导航 ===== */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1060;
  pointer-events:none;
  padding:14px 12px 0;
  height:auto;
}
.capsule.container{
  pointer-events:auto;
  max-width:1240px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:8px 12px 8px 22px;
  margin:0 auto;
  border-radius:56px;
  background:rgba(246,243,237,.86);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  border:1px solid rgba(227,221,210,.92);
  box-shadow:0 6px 28px rgba(51,43,30,.07);
  transition:box-shadow .3s ease,padding .3s ease,background .3s ease,border-color .3s ease;
}
.site-header.scrolled .capsule.container{
  padding-top:6px;
  padding-bottom:6px;
  box-shadow:0 10px 30px rgba(51,43,30,.12);
  background:rgba(246,243,237,.94);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  font-weight:700;
  color:var(--ink);
  white-space:nowrap;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  color:var(--cream);
  flex:0 0 auto;
}
.brand-mark svg{width:18px;height:18px}
.brand-text{font-size:19px;letter-spacing:.01em;line-height:1.2;color:var(--ink)}
.brand-key{color:var(--amber);font-weight:800}
.nav-mid{
  display:flex;
  align-items:center;
  gap:2px;
}
.nav-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:40px;
  color:var(--ink);
  font-size:15px;
  font-weight:600;
  line-height:1;
  text-align:center;
}
.nav-link:hover{background:rgba(30,58,52,.08);color:var(--ink)}
.nav-link.active{
  background:var(--ink);
  color:var(--cream);
}
.btn{
  --bs-btn-border-radius:56px;
  border-radius:56px;
  font-weight:600;
  letter-spacing:.02em;
  transition:background .25s ease,color .25s ease,box-shadow .25s ease,transform .25s ease,border-color .25s ease;
}
.btn-amber{
  background:var(--amber);
  border-color:var(--amber);
  color:#fff;
  box-shadow:0 6px 18px rgba(184,137,67,.24);
}
.btn-amber:hover{
  background:var(--amber-deep);
  border-color:var(--amber-deep);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(184,137,67,.28);
}
.btn-nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:104px;
  min-height:42px;
  padding:0 22px;
  font-size:14px;
}
.btn-outline-deep{
  background:transparent;
  border:1.5px solid var(--ink);
  color:var(--ink);
  padding:.6rem 1.6rem;
}
.btn-outline-deep:hover{
  background:rgba(30,58,52,.09);
  color:var(--ink);
  border-color:var(--ink);
}
.btn-cream{
  background:var(--cream);
  border:1px solid var(--cream);
  color:var(--ink-deep);
}
.btn-cream:hover{
  background:var(--amber);
  border-color:var(--amber);
  color:#fff;
}
.btn-outline-cream{
  background:transparent;
  border:1.5px solid rgba(242,239,230,.9);
  color:var(--cream);
}
.btn-outline-cream:hover{
  background:var(--cream);
  color:var(--ink-deep);
}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  padding:0;
  border-radius:50%;
  position:relative;
  cursor:pointer;
}
.nav-toggle span{
  position:absolute;
  width:22px;
  height:2px;
  background:var(--ink);
  border-radius:2px;
  left:10px;
  transition:top .25s ease,transform .25s ease,opacity .25s ease;
}
.nav-toggle span:first-child{top:15px}
.nav-toggle span:last-child{top:25px}
.nav-toggle[aria-expanded="true"] span:first-child{top:20px;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:last-child{top:20px;transform:rotate(-45deg)}
.nav-mobile-btn{display:none}
@media (max-width:991px){
  .capsule.container{padding:8px 8px 8px 18px;border-radius:32px}
  .nav-toggle{
    display:inline-flex;
    flex:0 0 auto;
  }
  .nav-mid{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    right:0;
    background:rgba(246,243,237,.98);
    -webkit-backdrop-filter:blur(18px);
    backdrop-filter:blur(18px);
    box-shadow:0 18px 42px rgba(51,43,30,.16);
    border:1px solid rgba(227,221,210,.9);
    border-radius:22px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    z-index:1050;
  }
  .nav-mid.open{display:flex}
  .nav-link{
    justify-content:flex-start;
    padding-left:18px;
    width:100%;
    border-radius:60px;
  }
  .nav-link.active{background:var(--ink);color:var(--cream)}
  .btn-nav-cta{display:none}
  .nav-mobile-btn{
    display:inline-flex;
    justify-content:center;
    min-width:100%;
    margin-top:6px;
  }
}

/* ===== 栏目题头 ===== */
.page-banner{
  position:relative;
  padding:66px 0 56px;
  background:var(--paper);
  border-bottom:1px solid var(--line-soft);
  overflow:hidden;
}
.page-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(246,243,237,.96) 10%,rgba(246,243,237,.82) 70%),url("/assets/images/backpic/back-3.png") center/cover no-repeat;
  z-index:0;
}
.page-banner .container{position:relative;z-index:1}
.breadcrumb-soft{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
  font-size:13px;
  color:var(--soft-muted);
  margin:0 0 18px;
}
.breadcrumb-soft a{color:var(--ink);font-weight:500}
.breadcrumb-soft a:hover{color:var(--amber)}
.breadcrumb-soft .sep{color:var(--line);padding:0 2px}
.banner-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:34px;
}
.banner-content{max-width:760px}
.eyebrow-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(47,124,110,.14);
  color:var(--teal);
  font-size:13px;
  font-weight:600;
  padding:5px 14px;
  border-radius:40px;
  letter-spacing:.04em;
  margin-bottom:16px;
}
.page-h1{
  font-size:38px;
  font-weight:800;
  line-height:1.35;
  color:var(--ink-deep);
  letter-spacing:.01em;
}
.page-h1 .accent{color:var(--amber)}
.banner-intro{
  margin-top:18px;
  font-size:17px;
  color:var(--muted);
  max-width:660px;
  line-height:1.9;
}
.banner-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.banner-trust span{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(30,58,52,.18);
  color:var(--ink);
  background:rgba(246,243,237,.7);
  padding:4px 14px;
  border-radius:60px;
  font-size:13px;
  font-weight:500;
}
.banner-note-card{
  background:var(--ink);
  border-radius:16px;
  padding:24px 26px;
  color:var(--cream);
  max-width:320px;
  min-width:280px;
  box-shadow:0 16px 40px rgba(30,58,52,.16);
}
.banner-note-card .note-title{
  color:rgba(242,239,230,.6);
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.banner-note-card strong{
  display:block;
  font-size:25px;
  margin-top:6px;
  color:var(--cream);
}
.banner-note-card p{
  margin-top:10px;
  font-size:14px;
  color:rgba(242,239,230,.76);
  line-height:1.7;
}
.banner-note-card a{
  color:var(--amber);
  font-weight:600;
  font-size:14px;
  margin-top:14px;
  display:inline-block;
}
.banner-note-card a:hover{color:var(--cream)}
@media (max-width:991px){
  .banner-row{flex-direction:column;align-items:flex-start}
  .banner-note-card{max-width:100%;width:100%}
}
@media (max-width:767px){
  .page-banner{padding:46px 0 40px}
  .page-h1{font-size:29px}
  .banner-intro{font-size:16px;margin-top:14px}
}

/* ===== 区块标题 ===== */
.section-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:28px;
  color:var(--ink-deep);
  margin-bottom:10px;
}
.section-title::before{
  content:"";
  width:8px;
  height:24px;
  background:var(--amber);
  border-radius:4px;
  flex:0 0 auto;
}
.section-lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.85;
  max-width:680px;
  margin:0 0 30px;
}

/* ===== 场景导览卡片 ===== */
.directory-section{
  padding:80px 0 46px;
}
.dir-grid{
  --bs-gutter-y:24px;
}
.problem-nav-card{
  height:100%;
  background:var(--white);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:24px 22px 20px;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
  display:flex;
  flex-direction:column;
}
.problem-nav-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(47,124,110,.35);
}
.pn-sn{
  font-size:13px;
  font-weight:800;
  color:var(--amber);
  letter-spacing:.12em;
}
.problem-nav-card h3{
  font-size:19px;
  margin-top:10px;
  color:var(--ink);
}
.problem-nav-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin-top:8px;
  flex:1 1 auto;
}
.problem-nav-card .pn-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--teal);
  margin-top:14px;
}
.problem-nav-card .pn-link i{font-style:normal;transition:transform .25s ease}
.problem-nav-card:hover .pn-link i{transform:translateX(3px)}
.problem-nav-card .pn-link:hover{color:var(--amber)}
@media (max-width:767px){
  .directory-section{padding:52px 0 34px}
  .section-title{font-size:23px}
}

/* ===== 常见问题区域 ===== */
.faq-section{
  padding:60px 0 90px;
}
.faq-wrap{
  border-radius:18px;
  overflow:visible;
}
.faq-main{
  max-width:100%;
  padding-right:8px;
}
.faq-group{
  margin-bottom:52px;
}
.faq-group-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid var(--line);
  padding-bottom:10px;
  margin-bottom:16px;
}
.faq-group-head h2{
  font-size:23px;
  color:var(--ink-deep);
  position:relative;
  padding-left:15px;
}
.faq-group-head h2::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  bottom:5px;
  width:4px;
  background:var(--amber);
  border-radius:4px;
}
.faq-group-count{
  flex:0 0 auto;
  font-size:13px;
  color:var(--soft-muted);
  background:rgba(30,58,52,.06);
  padding:3px 12px;
  border-radius:40px;
}
.faq-item{
  border-bottom:1px solid var(--line-soft);
}
.faq-item:last-child{border-bottom:none}
.faq-q{
  width:100%;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  background:transparent;
  border:none;
  padding:20px 6px 18px;
  font-family:var(--font-sans);
  font-size:16px;
  font-weight:600;
  color:var(--ink-deep);
  text-align:left;
  cursor:pointer;
  transition:color .2s ease;
}
.faq-q:hover{color:var(--teal)}
.faq-q .faq-q-text{line-height:1.65;flex:1 1 auto}
.faq-icon{
  position:relative;
  width:20px;
  height:20px;
  flex:0 0 auto;
  margin-top:4px;
  border:2px solid var(--ink);
  border-radius:50%;
  transition:border-color .25s ease,background .25s ease;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--ink);
  transition:background .25s ease,transform .25s ease;
}
.faq-icon::before{top:8px;left:5px;width:6px;height:2px}
.faq-icon::after{left:8px;top:5px;width:2px;height:6px}
.faq-q:hover .faq-icon{border-color:var(--teal)}
.faq-q:hover .faq-icon::before,
.faq-q:hover .faq-icon::after{background:var(--teal)}
.faq-item.open .faq-icon{background:var(--amber);border-color:var(--amber);transform:rotate(45deg)}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after{background:#fff}
.faq-item.open .faq-icon::before{transform:rotate(0deg)}
.faq-item.open .faq-icon::after{transform:rotate(90deg)}
.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .35s ease;
}
.faq-item.open .faq-answer{grid-template-rows:1fr}
.faq-answer-inner{overflow:hidden}
.faq-answer-inner p{
  padding:0 26px 22px 6px;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}
.faq-answer-inner p:last-child{margin-bottom:0}
@media (max-width:767px){
  .faq-section{padding:44px 0 60px}
  .faq-group-count{display:none}
  .faq-q{padding:17px 2px 14px}
  .faq-answer-inner p{padding-right:6px}
}

/* ===== 信息条 ===== */
.info-soft{
  background:rgba(47,124,110,.10);
  border-left:3px solid var(--teal);
  color:var(--ink);
  padding:14px 18px;
  border-radius:var(--radius-sm);
  font-size:14px;
  line-height:1.8;
  margin:0 0 26px;
}
.notice-clay{
  background:rgba(188,88,58,.09);
  border-left:3px solid var(--clay);
  padding:14px 18px;
  border-radius:var(--radius-sm);
  font-size:14px;
  line-height:1.8;
  color:var(--ink);
  margin-top:18px;
}

/* ===== 侧边栏 ===== */
.faq-sidebar{padding-left:26px}
.sticky-side{
  position:sticky;
  top:110px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.panel-card{
  background:var(--white);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:22px 20px;
}
.panel-title{
  font-size:14px;
  font-weight:800;
  color:var(--ink);
  letter-spacing:.04em;
  padding-bottom:8px;
  border-bottom:1px solid var(--line-soft);
  margin-bottom:4px;
}
.toc-list{list-style:none;display:block;margin:0}
.toc-list li{margin:0}
.toc-list a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 8px;
  border-bottom:1px dashed var(--line-soft);
  font-size:14px;
  font-weight:500;
  color:var(--text);
}
.toc-list li:last-child a{border-bottom:none}
.toc-list a:hover{color:var(--amber);padding-left:12px}
.toc-list .toc-num{
  color:var(--amber);
  font-weight:700;
  font-size:12px;
  letter-spacing:.06em;
}
.check-list{
  list-style:none;
  margin-top:12px;
  counter-reset:check-item;
}
.check-list li{
  counter-increment:check-item;
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14px;
  color:var(--text);
  line-height:1.7;
  padding:6px 0;
}
.check-list li::before{
  content:counter(check-item, decimal-leading-zero);
  flex:0 0 24px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(47,124,110,.14);
  color:var(--teal);
  font-size:12px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}
.panel-cover{padding:0;overflow:hidden;border:none}
.panel-cover img{
  width:100%;
  height:148px;
  object-fit:cover;
  display:block;
  background:rgba(47,124,110,.12);
}
.panel-cover .pc-body{padding:18px 20px 22px}
.panel-cover h3{
  font-size:18px;
  padding:0;
  color:var(--ink);
  margin-bottom:6px;
}
.panel-cover p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}
.panel-cover .btn{
  margin-top:14px;
  padding:.45rem 1.3rem;
  font-size:14px;
}
@media (max-width:991px){
  .faq-sidebar{padding-left:calc(var(--bs-gutter-x) * .5);margin-top:38px}
  .sticky-side{position:relative;top:auto}
}

/* ===== 深色流程区块 ===== */
.deep-flow{
  background:
    linear-gradient(180deg,rgba(20,43,38,.94),rgba(20,43,38,.97)),
    url("/assets/images/backpic/back-1.png") center/cover no-repeat;
  padding:84px 0 76px;
  color:var(--cream);
}
.deep-flow .section-title{color:var(--cream)}
.deep-flow .section-title::before{background:var(--amber)}
.deep-flow .section-lead{color:rgba(242,239,230,.76)}
.flow-row{--bs-gutter-y:24px;margin-top:16px}
.flow-card{
  height:100%;
  background:rgba(242,239,230,.06);
  border:1px solid rgba(242,239,230,.14);
  border-radius:16px;
  padding:28px 22px 24px;
  transition:background .25s ease,border-color .25s ease,transform .25s ease;
}
.flow-card:hover{
  background:rgba(242,239,230,.1);
  border-color:rgba(242,239,230,.28);
  transform:translateY(-4px);
}
.flow-step{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(184,137,67,.18);
  color:var(--amber);
  font-weight:800;
  font-size:15px;
  letter-spacing:.05em;
  margin-bottom:16px;
}
.flow-card h3{
  color:var(--cream);
  font-size:18px;
  margin-bottom:8px;
}
.flow-card p{
  color:rgba(242,239,230,.7);
  font-size:14px;
  line-height:1.75;
}
.flow-note{
  margin-top:32px;
  background:rgba(242,239,230,.08);
  border-left:3px solid var(--amber);
  padding:14px 20px;
  border-radius:10px;
  font-size:14px;
  color:rgba(242,239,230,.76);
}
.flow-note a{color:var(--amber);font-weight:600}
@media (max-width:767px){
  .deep-flow{padding:54px 0 48px}
}

/* ===== CTA ===== */
.cta-band{
  background:var(--paper);
  padding:76px 0;
  border-bottom:1px solid var(--line-soft);
}
.cta-inner{
  background:var(--ink-deep);
  border-radius:20px;
  padding:52px 50px;
  position:relative;
  overflow:hidden;
  color:var(--cream);
}
.cta-inner::before{
  content:"";
  position:absolute;
  right:-60px;
  top:-80px;
  width:260px;
  height:260px;
  border-radius:50%;
  border:2px dashed rgba(242,239,230,.12);
}
.cta-inner::after{
  content:"";
  position:absolute;
  right:40px;
  bottom:-120px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(184,137,67,.12);
}
.cta-inner > *{position:relative;z-index:1}
.cta-inner h2{
  color:var(--cream);
  font-size:30px;
  margin-bottom:14px;
}
.cta-inner p{
  color:rgba(242,239,230,.74);
  font-size:16px;
  max-width:680px;
  margin-bottom:28px;
  line-height:1.85;
}
.cta-inner .cta-btn-group{display:flex;flex-wrap:wrap;gap:12px}
@media (max-width:767px){
  .cta-band{padding:46px 0}
  .cta-inner{padding:34px 24px}
  .cta-inner h2{font-size:25px}
}

/* ===== 页脚 ===== */
.site-footer{
  background:var(--ink-deep);
  color:rgba(242,239,230,.78);
  padding:66px 0 30px;
  font-size:14px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:21px;
  font-weight:800;
  color:var(--cream);
  margin-bottom:12px;
}
.footer-brand .brand-mark{
  background:var(--amber);
  color:var(--ink-deep);
}
.footer-about{
  color:rgba(242,239,230,.56);
  max-width:420px;
  line-height:1.85;
  margin:0;
}
.footer-col{padding-top:8px}
.footer-title{
  font-size:14px;
  font-weight:700;
  color:var(--cream);
  letter-spacing:.06em;
  margin-bottom:12px;
}
.footer-links{list-style:none;display:block;margin:0}
.footer-links li{margin-bottom:8px}
.footer-links a{
  display:inline-block;
  color:rgba(242,239,230,.7);
  padding:3px 0;
}
.footer-links a:hover{color:var(--amber)}
.footer-links li span{display:inline-block;padding:3px 0}
.footer-meta{
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid rgba(242,239,230,.12);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:rgba(242,239,230,.46);
  font-size:13px;
}

/* ===== 可访问性 ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline:3px solid rgba(184,137,67,.42);
  outline-offset:2px;
  box-shadow:none;
}
.btn:focus-visible{
  outline:3px solid rgba(184,137,67,.45);
  box-shadow:none;
}
::selection{
  background:rgba(184,137,67,.25);
  color:var(--ink-deep);
}
@media (prefers-reduced-motion:reduce){
  *{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* roulang page: category3 */
:root{
  --ink:#1E3A34;
  --deep:#142B26;
  --amber:#B88943;
  --amber-deep:#A97A35;
  --teal:#2F7C6E;
  --terra:#BC583A;
  --paper:#F6F3ED;
  --cream:#F2EFE6;
  --body:#2B2B26;
  --muted:#6E6A5E;
  --line:#E3DDD2;
  --card:#FFFFFF;
  --soft-green:rgba(47,124,110,.10);
  --shadow-sm:0 6px 18px rgba(51,43,30,.07);
  --shadow-md:0 14px 40px rgba(51,43,30,.09);
  --radius:14px;
  --radius-lg:20px;
  --font-sans:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
  --font-serif:"Noto Serif SC","Songti SC",serif;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  padding:0;
  background:var(--paper);
  color:var(--body);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{
  color:var(--deep);
  text-decoration:none;
  transition:color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

a:hover{
  color:var(--amber-deep);
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

h1,h2,h3,h4,h5,h6{
  font-weight:700;
  color:var(--deep);
  line-height:1.35;
  margin-top:0;
}

p{
  margin-top:0;
}

.container{
  max-width:1200px;
}

/* ===== 按钮 ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:56px;
  padding:.72rem 1.55rem;
  font-size:15px;
  font-weight:600;
  font-family:var(--font-sans);
  border:1px solid transparent;
  line-height:1.4;
  min-height:46px;
  transition:background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease, opacity .22s ease;
  vertical-align:middle;
  white-space:nowrap;
}

.btn:focus,
.btn-ghost:focus,
.btn-nav-cta:focus{
  outline:3px solid rgba(184,137,67,.4);
  outline-offset:2px;
}

.btn-amber{
  background:var(--amber);
  border-color:var(--amber);
  color:#fff;
}

.btn-amber:hover,
.btn-amber:active{
  background:var(--amber-deep);
  border-color:var(--amber-deep);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(184,137,67,.22);
}

.btn-ghost{
  background:rgba(255,255,255,.6);
  border:1px solid rgba(30,58,52,.5);
  color:var(--deep);
}

.btn-ghost:hover{
  background:rgba(30,58,52,.08);
  border-color:var(--deep);
  color:var(--deep);
  transform:translateY(-1px);
}

.btn-cream{
  background:var(--cream);
  border-color:var(--cream);
  color:var(--deep);
}

.btn-cream:hover{
  background:var(--amber);
  border-color:var(--amber);
  color:#fff;
  transform:translateY(-1px);
}

.btn-sm{
  min-height:40px;
  padding:.5rem 1.15rem;
  font-size:14px;
}

/* ===== 标签 ===== */
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:.22rem .72rem;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  background:rgba(47,124,110,.12);
  color:var(--teal);
  line-height:1.4;
}

.tag-terra{
  background:rgba(188,88,58,.10);
  color:var(--terra);
}

.tag-amber{
  background:rgba(184,137,67,.12);
  color:var(--amber-deep);
}

/* ===== 悬浮胶囊导航 ===== */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1050;
  padding-top:16px;
  pointer-events:none;
}

.site-header .container{
  pointer-events:auto;
}

.capsule{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:9px 10px 9px 18px;
  border-radius:60px;
  background:rgba(246,243,237,.82);
  border:1px solid rgba(227,221,210,.78);
  box-shadow:0 10px 36px rgba(51,43,30,.08);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  transition:background .3s ease, box-shadow .3s ease, border-color .3s ease;
  min-height:68px;
}

.site-header.scrolled .capsule{
  background:rgba(246,243,237,.94);
  box-shadow:0 14px 44px rgba(51,43,30,.12);
  border-color:rgba(227,221,210,.92);
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-sans);
  font-size:20px;
  font-weight:700;
  color:var(--deep);
  line-height:1.2;
  min-height:44px;
}

.brand:hover{
  color:var(--deep);
}

.brand-mark{
  width:38px;
  height:38px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--deep);
  color:var(--cream);
  flex:0 0 auto;
}

.brand-mark svg{
  width:21px;
  height:21px;
}

.brand-key{
  color:var(--amber);
}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  width:46px;
  height:46px;
  border:1px solid rgba(30,58,52,.18);
  border-radius:50%;
  background:transparent;
  padding:0;
  gap:7px;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}

.nav-toggle:hover{
  background:rgba(30,58,52,.06);
  border-color:var(--deep);
}

.nav-toggle span{
  width:22px;
  height:2px;
  border-radius:4px;
  background:var(--deep);
  display:block;
  transition:transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child{
  transform:translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child{
  transform:translateY(-4.5px) rotate(-45deg);
}

.nav-mid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:1 1 auto;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:.45rem 1.05rem;
  border-radius:56px;
  color:var(--ink);
  font-size:15px;
  font-weight:500;
  transition:background .2s ease, color .2s ease;
}

.nav-link:hover{
  color:var(--ink);
  background:rgba(30,58,52,.06);
}

.nav-link.active{
  background:rgba(30,58,52,.1);
  color:var(--ink);
  font-weight:600;
}

.btn-nav-cta{
  min-height:44px;
  margin-left:6px;
  padding:.52rem 1.35rem;
}

.nav-mobile-btn{
  display:none;
}

/* ===== 内页统一栏目标题区 ===== */
.category-hero{
  position:relative;
  padding:150px 0 52px;
  background:linear-gradient(135deg,#EAE5DA 0%,#F6F3ED 58%,#E4E8DF 100%);
  overflow:hidden;
}

.category-hero::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(47,124,110,.08);
  top:-180px;
  right:-120px;
  pointer-events:none;
}

.category-hero .container{
  position:relative;
  z-index:2;
}

.hero-breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--muted);
  margin-bottom:18px;
}

.hero-breadcrumb a{
  color:var(--muted);
}

.hero-breadcrumb a:hover{
  color:var(--amber-deep);
}

.hero-breadcrumb .sep{
  color:rgba(110,106,94,.55);
}

.hero-h1{
  font-size:clamp(32px,4vw,44px);
  line-height:1.25;
  letter-spacing:.01em;
  margin-bottom:18px;
  color:var(--deep);
}

.hero-lead{
  max-width:760px;
  font-size:17px;
  color:var(--body);
  line-height:1.9;
  margin-bottom:24px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
  align-items:center;
}

.hero-meta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:24px;
  padding:6px 14px;
  border-radius:56px;
  border:1px solid rgba(30,58,52,.16);
  background:rgba(246,243,237,.7);
  font-size:14px;
  color:var(--ink);
}

/* ===== 快讯条 ===== */
.ticker-section{
  padding:28px 0 0;
}

.ticker-bar{
  display:flex;
  align-items:center;
  gap:18px;
  padding:15px 20px;
  border-radius:14px;
  background:var(--deep);
  color:var(--cream);
  box-shadow:var(--shadow-md);
  flex-wrap:wrap;
}

.ticker-label{
  background:var(--amber);
  color:#fff;
  font-size:12px;
  font-weight:600;
  border-radius:999px;
  padding:.25rem .8rem;
  white-space:nowrap;
}

.ticker-text{
  flex:1 1 auto;
  font-size:15px;
}

.ticker-link{
  color:var(--cream);
  font-weight:600;
  font-size:14px;
  border-bottom:1px solid rgba(242,239,230,.6);
  white-space:nowrap;
}

.ticker-link:hover{
  color:var(--amber);
  border-color:var(--amber);
}

/* ===== 通用section ===== */
.section{
  padding:72px 0;
}

.section-sm{
  padding:48px 0;
}

.section-head{
  margin-bottom:34px;
}

.kicker-line{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.05em;
  color:var(--amber-deep);
  margin-bottom:12px;
}

.kicker-line::before{
  content:"";
  width:8px;
  height:22px;
  border-radius:6px;
  background:var(--amber);
}

.section-title{
  font-size:clamp(26px,3vw,34px);
  font-weight:700;
  color:var(--deep);
  margin-bottom:12px;
  line-height:1.35;
}

.section-sub{
  max-width:760px;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin-bottom:0;
}

/* ===== 置顶公告区 ===== */
.section-feature{
  padding-top:64px;
  padding-bottom:24px;
}

.feature-card{
  background:var(--card);
  border:1px solid #EFE8DD;
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:100%;
  box-shadow:0 4px 18px rgba(51,43,30,.04);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:rgba(30,58,52,.2);
}

.feature-media{
  position:relative;
  height:220px;
  background:rgba(47,124,110,.08);
  margin:0;
  overflow:hidden;
}

.feature-card.feature-card-primary .feature-media{
  height:260px;
}

.feature-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature-body{
  padding:24px 26px 26px;
}

.feature-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 14px;
  font-size:13px;
  color:var(--muted);
  margin-bottom:12px;
}

.feature-title{
  font-size:20px;
  font-weight:700;
  color:var(--deep);
  line-height:1.5;
  margin-bottom:10px;
}

.feature-card-primary .feature-title{
  font-size:22px;
}

.feature-desc{
  font-size:15px;
  color:var(--muted);
  margin-bottom:18px;
}

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--amber-deep);
  font-size:15px;
  font-weight:600;
  border-bottom:1px solid rgba(184,137,67,.35);
  padding-bottom:2px;
  transition:gap .2s ease, border-color .2s ease, color .2s ease;
}

.link-arrow:hover{
  color:var(--deep);
  gap:12px;
  border-color:var(--deep);
}

/* ===== 公告时间线列表 ===== */
.section-list{
  padding-top:40px;
}

.news-row{
  display:grid;
  grid-template-columns:112px 1fr 64px;
  align-items:center;
  gap:18px;
  background:#fff;
  border:1px solid #EFE8DD;
  border-radius:14px;
  padding:16px 20px;
  margin-bottom:12px;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.news-row:hover{
  transform:translateY(-3px);
  border-color:rgba(30,58,52,.25);
  box-shadow:var(--shadow-sm);
}

.news-date{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding-left:4px;
}

.news-day{
  font-size:28px;
  font-weight:700;
  color:var(--deep);
  line-height:1.15;
}

.news-month{
  font-size:13px;
  color:var(--muted);
}

.news-row-main{
  min-width:0;
}

.news-row-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  margin-bottom:5px;
}

.news-row-title{
  display:block;
  font-size:17px;
  font-weight:600;
  color:var(--deep);
  line-height:1.5;
  margin-bottom:4px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  transition:color .2s ease;
}

.news-row:hover .news-row-title{
  color:var(--amber-deep);
}

.news-row-desc{
  font-size:14px;
  color:var(--muted);
  margin-bottom:0;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
}

.news-row-link{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(30,58,52,.06);
  color:var(--deep);
  font-size:20px;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.news-row:hover .news-row-link{
  background:rgba(184,137,67,.14);
  color:var(--amber-deep);
  transform:translateX(3px);
}

.back-home-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  font-weight:600;
  color:var(--deep);
}

/* ===== 公告内容组织说明 ===== */
.section-types{
  background:#EDEAE1;
}

.types-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.type-card{
  background:#fff;
  border:1px solid #EFE8DD;
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:0 6px 18px rgba(51,43,30,.04);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  height:100%;
}

.type-card:hover{
  transform:translateY(-3px);
  border-color:var(--line);
  box-shadow:var(--shadow-sm);
}

.type-icon{
  width:54px;
  height:54px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--soft-green);
  color:var(--teal);
  font-size:24px;
  font-weight:700;
  margin-bottom:16px;
}

.type-card h3{
  font-size:18px;
  font-weight:700;
  color:var(--deep);
  margin-bottom:10px;
}

.type-card p{
  font-size:14px;
  color:var(--muted);
  margin-bottom:0;
  line-height:1.8;
}

/* ===== 相关栏目推荐 ===== */
.section-relate .row{
  --bs-gutter-y:18px;
}

.relate-card{
  display:flex;
  align-items:center;
  gap:20px;
  background:#fff;
  border:1px solid #EFE8DD;
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 4px 16px rgba(51,43,30,.04);
  height:100%;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.relate-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:rgba(30,58,52,.2);
}

.relate-media{
  width:120px;
  height:90px;
  flex:0 0 auto;
  border-radius:12px;
  overflow:hidden;
  background:var(--soft-green);
}

.relate-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.relate-content{
  flex:1 1 auto;
  min-width:0;
}

.relate-content h3{
  font-size:18px;
  font-weight:700;
  color:var(--deep);
  margin-bottom:6px;
  line-height:1.45;
}

.relate-content p{
  font-size:14px;
  color:var(--muted);
  margin-bottom:8px;
  line-height:1.7;
}

.relate-content .link-arrow{
  font-size:14px;
}

/* ===== FAQ ===== */
.section-faq{
  background:#EDEAE1;
}

.faq-accordion{
  max-width:920px;
  margin:0 auto;
}

.faq-accordion .accordion-item{
  background:transparent;
  border:0;
  border-bottom:1px solid rgba(30,58,52,.18);
  border-radius:0!important;
}

.faq-accordion .accordion-item:first-child{
  border-top:1px solid rgba(30,58,52,.18);
}

.faq-accordion .accordion-button{
  background:transparent;
  color:var(--deep);
  font-size:16px;
  font-weight:600;
  border-radius:0;
  padding:20px 8px 20px 0;
  box-shadow:none;
  line-height:1.5;
}

.faq-accordion .accordion-button:not(.collapsed){
  color:var(--amber-deep);
  background:transparent;
}

.faq-accordion .accordion-button:focus{
  outline:3px solid rgba(184,137,67,.35);
  outline-offset:2px;
  box-shadow:none;
}

.faq-accordion .accordion-button::after{
  filter:grayscale(1) brightness(.5);
  transition:transform .25s ease, filter .25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
  filter:grayscale(1) brightness(1);
}

.faq-accordion .accordion-body{
  padding:0 34px 24px 0;
  color:var(--body);
  font-size:15px;
  line-height:1.9;
}

/* ===== CTA收尾 ===== */
.section-cta{
  padding:88px 0;
}

.cta-block{
  background:
    linear-gradient(rgba(20,43,38,.93),rgba(20,43,38,.93)),
    url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
  border-radius:28px;
  color:var(--cream);
  padding:60px 48px;
  box-shadow:var(--shadow-md);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta-block::before{
  content:"";
  position:absolute;
  left:24px;
  top:24px;
  width:120px;
  height:120px;
  border-radius:50%;
  border:1px solid rgba(184,137,67,.35);
  pointer-events:none;
}

.cta-block::after{
  content:"";
  position:absolute;
  right:28px;
  bottom:-44px;
  width:160px;
  height:160px;
  border-radius:50%;
  border:1px solid rgba(242,239,230,.16);
  pointer-events:none;
}

.cta-block h2{
  color:#fff;
  font-size:clamp(26px,3.2vw,36px);
  font-weight:700;
  margin-bottom:16px;
  position:relative;
  z-index:1;
}

.cta-block p{
  max-width:680px;
  margin:0 auto 32px;
  color:rgba(242,239,230,.82);
  font-size:16px;
  line-height:1.85;
  position:relative;
  z-index:1;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  position:relative;
  z-index:1;
}

/* ===== 页脚 ===== */
.site-footer{
  background:var(--deep);
  color:rgba(242,239,230,.72);
  padding:60px 0 26px;
  margin-top:30px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:20px;
  font-weight:700;
  color:var(--cream);
  margin-bottom:12px;
}

.footer-brand .brand-mark{
  background:rgba(242,239,230,.14);
  color:var(--cream);
}

.footer-about{
  font-size:14px;
  line-height:1.9;
  color:rgba(242,239,230,.66);
  max-width:440px;
  margin:8px 0 0;
}

.footer-title{
  color:var(--cream);
  font-size:15px;
  font-weight:600;
  margin-bottom:16px;
  letter-spacing:.02em;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  display:inline-block;
  color:rgba(242,239,230,.72);
  font-size:14px;
  line-height:1.6;
}

.footer-links a:hover{
  color:var(--amber);
}

.footer-col{
  padding-top:6px;
}

.footer-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:36px;
  padding-top:18px;
  border-top:1px solid rgba(242,239,230,.14);
  font-size:13px;
  color:rgba(242,239,230,.58);
}

/* ===== 站点首页按钮细节、通用 ===== */
.link-under{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color:var(--amber-deep);
}

.link-under:hover{
  color:var(--deep);
  gap:10px;
}

/* ===== 响应式 ===== */
@media (max-width:1199.98px){
  .container{
    max-width:960px;
  }

  .nav-link{
    padding:.42rem .8rem;
    font-size:14px;
  }
}

@media (max-width:991.98px){
  .nav-toggle{
    display:inline-flex;
  }

  .btn-nav-cta{
    display:none;
  }

  .nav-mid{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:rgba(246,243,237,.98);
    border:1px solid rgba(227,221,210,.9);
    border-radius:22px;
    padding:14px;
    box-shadow:0 18px 44px rgba(51,43,30,.14);
    backdrop-filter:blur(14px);
  }

  .nav-mid.nav-open{
    display:flex;
  }

  .nav-mid .nav-link{
    width:100%;
    justify-content:flex-start;
    padding:.7rem 1rem;
  }

  .nav-mobile-btn{
    display:inline-flex;
    width:100%;
    margin-top:6px;
  }

  .category-hero{
    padding-top:126px;
    padding-bottom:42px;
  }

  .section{
    padding:58px 0;
  }

  .section-cta{
    padding:66px 0;
  }

  .types-grid{
    grid-template-columns:1fr;
    max-width:600px;
  }

  .relate-card{
    padding:16px;
  }

  .cta-block{
    padding:48px 34px;
    border-radius:20px;
  }

  .footer-meta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:767.98px){
  body{
    font-size:15px;
    line-height:1.75;
  }

  .hero-h1{
    font-size:30px;
  }

  .hero-lead{
    font-size:15px;
  }

  .section-title{
    font-size:25px;
  }

  .news-row{
    grid-template-columns:84px 1fr 42px;
    gap:12px;
    padding:14px 14px;
  }

  .news-day{
    font-size:23px;
  }

  .news-row-title{
    font-size:15px;
    white-space:normal;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
  }

  .news-row-desc{
    -webkit-line-clamp:2;
  }

  .news-row-link{
    width:40px;
    height:40px;
    font-size:17px;
  }

  .ticker-bar{
    gap:12px;
    padding:14px 16px;
  }

  .feature-media,
  .feature-card.feature-card-primary .feature-media{
    height:180px;
  }

  .feature-body{
    padding:20px 20px 22px;
  }

  .feature-title,
  .feature-card-primary .feature-title{
    font-size:18px;
  }

  .feature-desc{
    font-size:14px;
  }

  .relate-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .relate-media{
    width:100%;
    height:150px;
  }

  .cta-block{
    text-align:left;
    padding:42px 26px;
  }

  .cta-actions{
    justify-content:flex-start;
  }

  .footer-col{
    margin-top:8px;
  }
}

@media (max-width:575.98px){
  .capsule{
    padding-right:8px;
    padding-left:14px;
  }

  .brand{
    font-size:17px;
  }

  .brand-mark{
    width:34px;
    height:34px;
  }

  .news-row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .news-date{
    flex-direction:row;
    align-items:center;
    gap:10px;
  }

  .news-day{
    font-size:22px;
  }

  .news-month{
    font-size:12px;
  }

  .news-row-link{
    display:none;
  }

  .section-sub{
    font-size:15px;
  }

  .feature-meta{
    font-size:12px;
  }

  .category-hero{
    padding-top:118px;
  }

  .hero-actions .btn{
    width:100%;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
}
