/* roulang page: index */
:root{
  --bg:#FAF6EF;
  --bg-2:#F2EBDF;
  --bg-3:#F7F1E6;
  --dark:#1F322C;
  --dark-2:#25403A;
  --gold:#C08A2E;
  --gold-light:#E4B855;
  --gold-dark:#A97522;
  --silver:#9AA3A8;
  --bronze:#B4713B;
  --ribbon:#A62B26;
  --text:#1C1B19;
  --body:#3B3833;
  --muted:#6B6459;
  --line:#E3D8C6;
  --radius:16px;
  --radius-sm:10px;
  --radius-xs:8px;
  --shadow:0 6px 20px rgba(120,95,45,.10);
  --shadow-lg:0 14px 34px rgba(120,95,45,.18);
  --container:1200px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:88px}
body{
  margin:0;
  background:var(--bg);
  color:var(--body);
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size:16.5px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block;border:0}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
h1,h2,h3,h4,p,ul,ol{margin:0}
ul,ol{padding:0;list-style:none}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px}
::selection{background:rgba(192,138,46,.25)}
.num{font-family:Georgia,"Songti SC","Times New Roman",serif;font-variant-numeric:tabular-nums;letter-spacing:.01em}

/* ============ 容器 ============ */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px}
@media(min-width:1024px){.container{padding:0 32px}}

/* ============ 通用排版 ============ */
.section{padding:64px 0}
@media(min-width:768px){.section{padding:80px 0}}
@media(min-width:1024px){.section{padding:94px 0}}
.section-alt{background:var(--bg-2)}
.section-dark{background:var(--dark);color:#EFE7D8}
.section-dark h2,.section-dark h3{color:#FBF5E9}
.section-dark p{color:#C9C3B3}

.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12.5px;font-weight:700;letter-spacing:.18em;
  color:var(--gold-dark);text-transform:uppercase;
}
.section-dark .eyebrow{color:var(--gold-light)}
.eyebrow::before{content:"";width:24px;height:2px;background:currentColor;display:block;border-radius:2px}

.section-head{max-width:800px;margin-bottom:36px}
@media(min-width:1024px){.section-head{margin-bottom:48px}}
.section-head h2{
  font-size:26px;line-height:1.35;color:var(--text);
  margin:14px 0 0;font-weight:800;letter-spacing:-.01em;
}
@media(min-width:768px){.section-head h2{font-size:30px}}
@media(min-width:1024px){.section-head h2{font-size:33px}}
.section-head .lead{
  margin-top:16px;font-size:16.5px;line-height:1.85;color:var(--muted);
}
.section-dark .section-head .lead{color:#C2BCAC}

.seal{
  display:inline-grid;place-items:center;width:34px;height:34px;
  border:1.5px solid var(--gold);color:var(--gold-dark);
  font-size:15px;font-weight:800;border-radius:6px;line-height:1;
  background:rgba(192,138,46,.07);margin-right:10px;vertical-align:middle;
  font-family:Georgia,"Songti SC",serif;
}

/* ============ 按钮 ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 26px;border-radius:var(--radius-sm);
  font-size:15.5px;font-weight:700;line-height:1.2;
  border:1.5px solid transparent;cursor:pointer;
  transition:transform .2s ease,background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--gold);color:#fff;box-shadow:0 8px 20px rgba(192,138,46,.28)}
.btn-primary:hover{background:var(--gold-dark);transform:translateY(-1px);box-shadow:0 12px 26px rgba(169,117,34,.34)}
.btn-ghost{background:transparent;color:var(--gold-dark);border-color:rgba(192,138,46,.55)}
.btn-ghost:hover{background:rgba(192,138,46,.12);transform:translateY(-1px)}
.btn-dark{background:var(--dark);color:#FBF5E9}
.btn-dark:hover{background:#16261F;transform:translateY(-1px)}
.btn-ribbon{background:var(--ribbon);color:#fff;border-radius:999px;box-shadow:0 8px 20px rgba(166,43,38,.26)}
.btn-ribbon:hover{background:#8C221E;transform:translateY(-1px)}
.btn-sm{padding:9px 18px;font-size:14px}
.btn[disabled],.btn.is-disabled{opacity:.55;cursor:not-allowed;transform:none;box-shadow:none}

/* ============ 顶部导航 ============ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:72px;display:flex;align-items:center;
  background:rgba(250,246,239,.55);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid rgba(192,138,46,.28);
  transition:height .28s ease,background-color .28s ease,box-shadow .28s ease;
}
.site-header.scrolled{
  height:64px;background:rgba(250,246,239,.94);
  box-shadow:0 10px 26px rgba(120,95,45,.13);
}
.nav-inner{
  width:100%;max-width:var(--container);margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
@media(min-width:1024px){.nav-inner{padding:0 32px}}
.logo{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.logo-mark{
  position:relative;width:34px;height:34px;border-radius:50%;
  background:linear-gradient(160deg,var(--gold-light),var(--gold));
  display:grid;place-items:center;color:#fff;font-weight:800;
  font-family:Georgia,serif;font-size:15px;
  box-shadow:0 4px 12px rgba(120,95,45,.28);
}
.logo-mark::after{
  content:"";position:absolute;top:100%;left:50%;margin-top:-2px;
  transform:translateX(-50%);width:16px;height:11px;background:var(--gold);
  clip-path:polygon(0 0,100% 0,100% 100%,50% 60%,0 100%);
}
.logo-text{font-size:18px;font-weight:800;color:var(--text);letter-spacing:-.01em;line-height:1.15}
.logo-sub{display:block;font-size:10.5px;font-weight:600;letter-spacing:.14em;color:var(--gold-dark);margin-top:1px}

.nav-links{display:none;align-items:center;gap:26px}
@media(min-width:1024px){.nav-links{display:flex}}
.nav-links a{
  position:relative;padding:6px 0;font-size:15.5px;font-weight:600;color:var(--body);
  transition:color .2s ease;
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:0;width:0;height:2px;
  background:var(--gold);border-radius:2px;transition:width .26s ease;
}
.nav-links a:hover{color:var(--gold-dark)}
.nav-links a:hover::after{width:100%}
.nav-links a.active{color:var(--gold-dark)}
.nav-links a.active::after{width:100%}

.nav-right{display:flex;align-items:center;gap:12px;flex:0 0 auto}
.icon-btn{
  width:40px;height:40px;border-radius:50%;display:grid;place-items:center;
  border:1px solid rgba(192,138,46,.4);background:rgba(255,255,255,.5);
  color:var(--gold-dark);cursor:pointer;transition:background-color .2s,transform .2s;
}
.icon-btn:hover{background:rgba(192,138,46,.16);transform:translateY(-1px)}
.nav-cta{display:none}
@media(min-width:768px){.nav-cta{display:inline-flex}}
.burger{
  display:grid;place-items:center;width:42px;height:42px;border-radius:10px;
  border:1px solid rgba(192,138,46,.4);background:rgba(255,255,255,.5);
  cursor:pointer;gap:4px;
}
@media(min-width:1024px){.burger{display:none}}
.burger span{display:block;width:18px;height:2px;background:var(--gold-dark);border-radius:2px;transition:transform .25s,opacity .25s}

.drawer-mask{
  position:fixed;inset:0;background:rgba(31,50,44,.55);opacity:0;visibility:hidden;
  transition:opacity .3s ease,visibility .3s ease;z-index:190;
}
.drawer-mask.open{opacity:1;visibility:visible}
.drawer{
  position:fixed;top:0;right:0;bottom:0;width:78%;max-width:340px;z-index:200;
  background:var(--dark);color:#F1EADC;padding:88px 28px 40px;
  transform:translateX(102%);transition:transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
}
.drawer.open{transform:translateX(0)}
.drawer-close{
  position:absolute;top:22px;right:22px;width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(228,184,85,.4);background:transparent;color:var(--gold-light);
  font-size:20px;line-height:1;cursor:pointer;
}
.drawer nav{display:flex;flex-direction:column;gap:4px;margin-top:8px}
.drawer nav a{
  font-size:18px;font-weight:600;color:#EFE7D8;padding:14px 4px;
  border-bottom:1px solid rgba(228,184,85,.16);transition:color .2s,padding-left .2s;
}
.drawer nav a:hover{color:var(--gold-light);padding-left:10px}
.drawer .btn{margin-top:26px;width:100%}

/* ============ 首屏 ============ */
.hero{position:relative;padding:122px 0 64px;overflow:hidden;background:var(--bg)}
@media(min-width:1024px){.hero{padding:158px 0 96px}}
.hero-bg{
  position:absolute;inset:0;
  background-image:url('/assets/images/backpic/back-1.jpg');
  background-size:cover;background-position:center;
  opacity:.3;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(250,246,239,.70) 0%,rgba(250,246,239,.93) 62%,rgba(250,246,239,1) 100%);
}
.hero-inner{position:relative;z-index:2}
.hero-copy{max-width:860px}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:999px;
  background:rgba(166,43,38,.08);border:1px solid rgba(166,43,38,.28);
  color:var(--ribbon);font-size:13px;font-weight:700;letter-spacing:.04em;
}
.hero-tag i{width:7px;height:7px;border-radius:50%;background:var(--ribbon);display:block}
.hero h1{
  margin:22px 0 0;font-size:29px;line-height:1.3;font-weight:800;
  color:var(--text);letter-spacing:-.015em;
}
@media(min-width:768px){.hero h1{font-size:40px}}
@media(min-width:1024px){.hero h1{font-size:48px;line-height:1.22}}
.hero-lead{
  margin-top:20px;max-width:760px;font-size:16.5px;line-height:1.9;color:var(--body);
}
@media(min-width:768px){.hero-lead{font-size:17px}}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.hero-facts{
  display:flex;flex-wrap:wrap;gap:12px 30px;margin-top:30px;
  padding-top:22px;border-top:1px solid var(--line);
}
.hero-facts li{font-size:14px;color:var(--muted);display:flex;align-items:center;gap:8px}
.hero-facts b{font-family:Georgia,serif;font-size:19px;color:var(--gold-dark);font-variant-numeric:tabular-nums}

.podium-strip{
  display:grid;grid-template-columns:1fr;gap:14px;margin-top:44px;
}
@media(min-width:700px){.podium-strip{grid-template-columns:repeat(3,1fr);gap:18px;align-items:end}}
.podium-item{
  position:relative;padding:22px 18px 20px;border-radius:var(--radius);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);
  text-align:center;transition:transform .24s ease,box-shadow .24s ease;
}
.podium-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
@media(min-width:700px){.podium-item.p2{margin-bottom:0}.podium-item.p1{padding-top:30px;padding-bottom:28px}}
.podium-item.p1{border-color:rgba(192,138,46,.5);background:linear-gradient(180deg,#FFF9EC,#FFFFFF 70%)}
.podium-item.p2{border-color:rgba(154,163,168,.55)}
.podium-item.p3{border-color:rgba(180,113,59,.45)}
.podium-medal{display:flex;justify-content:center;margin-bottom:14px}
.podium-item h3{font-size:16px;font-weight:800;color:var(--text);line-height:1.4}
.podium-item .p-score{
  margin-top:10px;font-family:Georgia,serif;font-size:30px;font-weight:700;
  color:var(--gold-dark);font-variant-numeric:tabular-nums;line-height:1;
}
.podium-item.p2 .p-score{color:#7C868B}
.podium-item.p3 .p-score{color:var(--bronze)}
.podium-item .p-score span{font-size:13px;margin-left:2px;font-family:"PingFang SC",sans-serif}
.podium-item .p-note{margin-top:10px;font-size:13.5px;color:var(--muted);line-height:1.7}

/* ============ 奖牌徽章 ============ */
.medal{
  position:relative;width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;color:#fff;font-weight:800;
  font-family:Georgia,"Songti SC",serif;font-size:17px;
  background:linear-gradient(160deg,#E4B855,#C08A2E);
  box-shadow:0 5px 14px rgba(120,95,45,.30);
  --medal-color:#C08A2E;
  transition:transform .25s ease;
}
.medal::after{
  content:"";position:absolute;top:100%;left:50%;margin-top:-1px;
  transform:translateX(-50%);width:19px;height:12px;background:var(--medal-color);
  clip-path:polygon(0 0,100% 0,100% 100%,50% 62%,0 100%);
}
.medal:hover{transform:rotate(3deg)}
.medal.silver{background:linear-gradient(160deg,#C7CDD1,#9AA3A8);--medal-color:#9AA3A8}
.medal.bronze{background:linear-gradient(160deg,#CE8C50,#B4713B);--medal-color:#B4713B}
.medal.plain{background:linear-gradient(160deg,#EDE5D6,#DCD2BE);color:#6B6459;--medal-color:#DCD2BE;box-shadow:none}
.medal.lg{width:56px;height:56px;font-size:22px}
.medal.lg::after{width:25px;height:15px}
.medal.sm{width:34px;height:34px;font-size:14px}
.medal.sm::after{width:16px;height:10px}

/* ============ 评分刻度 ============ */
.score{display:inline-flex;gap:3px;align-items:center}
.score i{display:block;width:13px;height:5px;border-radius:2px;background:#E6DCC9}
.score i.on{background:var(--gold)}
.score i.sv{background:var(--silver)}
.score i.bz{background:var(--bronze)}
.stars{font-size:14px;letter-spacing:2px;color:var(--gold);line-height:1}

/* ============ 标签 ============ */
.pill{
  display:inline-flex;align-items:center;height:26px;padding:0 12px;
  border-radius:999px;background:#FCF8F0;border:1px solid rgba(192,138,46,.45);
  color:#4A453C;font-size:12.5px;font-weight:600;white-space:nowrap;
}
.pill.dark{background:rgba(228,184,85,.14);border-color:rgba(228,184,85,.4);color:#EBD9AF}
.tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}

/* ============ 分类入口板块 ============ */
.entry-wall{
  display:grid;grid-template-columns:1fr;gap:24px;align-items:center;
  padding:26px;border-radius:var(--radius);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow);
}
@media(min-width:900px){.entry-wall{grid-template-columns:1fr 380px;gap:34px;padding:32px 34px}}
.entry-wall-media{
  position:relative;aspect-ratio:16/10;border-radius:14px;overflow:hidden;
  background:var(--bg-3);
}
.entry-wall-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.entry-wall:hover .entry-wall-media img{transform:scale(1.03)}
.entry-wall h3{font-size:22px;font-weight:800;color:var(--text);line-height:1.4}
@media(min-width:768px){.entry-wall h3{font-size:25px}}
.entry-wall p{margin-top:14px;font-size:16px;color:var(--body);line-height:1.85}
.entry-wall .entry-stats{display:flex;flex-wrap:wrap;gap:10px 24px;margin-top:18px}
.entry-wall .entry-stats span{font-size:14px;color:var(--muted)}
.entry-wall .entry-stats b{font-family:Georgia,serif;color:var(--gold-dark);font-size:17px;margin-right:4px}
.entry-wall .btn{margin-top:24px}

/* ============ 维度矩阵 ============ */
.dim-grid{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:640px){.dim-grid{grid-template-columns:repeat(2,1fr);gap:18px}}
@media(min-width:1024px){.dim-grid{grid-template-columns:repeat(3,1fr);gap:20px}}
.dim-card{
  padding:26px 24px;border-radius:var(--radius);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}
.dim-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:rgba(192,138,46,.42)}
@media(min-width:1024px){
  .dim-card:nth-child(2){margin-top:26px}
  .dim-card:nth-child(5){margin-top:26px}
  .dim-card:nth-child(4){margin-top:-4px}
}
.dim-card .dim-idx{
  font-family:Georgia,serif;font-size:13px;font-weight:700;color:var(--gold);
  letter-spacing:.1em;font-variant-numeric:tabular-nums;
}
.dim-card h3{margin-top:10px;font-size:19px;font-weight:800;color:var(--text)}
.dim-card p{margin-top:10px;font-size:15px;line-height:1.8;color:var(--muted)}
.dim-card .dim-weight{
  margin-top:16px;padding-top:14px;border-top:1px dashed var(--line);
  display:flex;align-items:center;justify-content:space-between;font-size:13px;color:var(--muted);
}
.dim-card .dim-weight b{font-family:Georgia,serif;font-size:17px;color:var(--gold-dark)}

/* ============ 榜首聚焦 · 三列领奖台 ============ */
.focus-wrap{
  padding:26px;border-radius:var(--radius);
  border:1px solid rgba(192,138,46,.35);
  background:linear-gradient(180deg,#FFFCF4,#FDF9F1);
}
@media(min-width:768px){.focus-wrap{padding:34px}}
.focus-grid{display:grid;grid-template-columns:1fr;gap:18px;align-items:end}
@media(min-width:900px){.focus-grid{grid-template-columns:repeat(3,1fr)}}
.focus-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:24px 22px;box-shadow:var(--shadow);position:relative;
  transition:transform .24s ease,box-shadow .24s ease;
}
.focus-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
@media(min-width:900px){.focus-card.top{padding:30px 22px;border-color:rgba(192,138,46,.5)}}
.focus-card .fc-head{display:flex;align-items:flex-start;gap:12px}
.focus-card h3{font-size:18px;font-weight:800;color:var(--text);line-height:1.4}
.focus-card .fc-rank{font-size:12.5px;font-weight:700;color:var(--gold-dark);letter-spacing:.06em}
.focus-card ul{margin-top:16px;display:flex;flex-direction:column;gap:9px}
.focus-card ul li{position:relative;padding-left:16px;font-size:14.5px;color:var(--body);line-height:1.7}
.focus-card ul li::before{content:"";position:absolute;left:0;top:10px;width:6px;height:6px;border-radius:50%;background:var(--gold-light)}
.focus-card .fc-bar{margin-top:18px;padding-top:16px;border-top:1px solid var(--line)}
.focus-card .fc-bar .fc-bar-row{display:flex;align-items:center;justify-content:space-between;font-size:13px;color:var(--muted);margin-bottom:8px}
.focus-card .fc-bar .fc-bar-row b{font-family:Georgia,serif;font-size:18px;color:var(--gold-dark)}

/* ============ 优势数据带 ============ */
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px 18px}
@media(min-width:900px){.stats-grid{grid-template-columns:repeat(3,1fr);gap:34px 26px}}
.stat-item{padding:6px 0}
.stat-item .s-num{
  font-family:Georgia,"Songti SC",serif;font-size:34px;font-weight:700;
  color:var(--gold-light);line-height:1.05;font-variant-numeric:tabular-nums;
}
@media(min-width:768px){.stat-item .s-num{font-size:44px}}
.stat-item .s-num small{font-size:16px;margin-left:3px;font-family:"PingFang SC",sans-serif;color:#D9C79B}
.stat-item .s-label{margin-top:10px;font-size:15px;font-weight:700;color:#F6EFDF}
.stat-item .s-desc{margin-top:6px;font-size:13.5px;color:#A9A99B;line-height:1.7}

/* ============ 排行榜列表 ============ */
.rank-list{display:flex;flex-direction:column;gap:14px}
.rank-row{
  display:grid;grid-template-columns:52px 108px 1fr 138px;gap:18px;align-items:center;
  padding:18px 22px;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.rank-row:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:rgba(192,138,46,.4)}
.rank-row.is-top{border-color:rgba(192,138,46,.42);background:linear-gradient(120deg,#FFFDF6,#FFFFFF 60%)}
.rank-thumb{
  position:relative;aspect-ratio:16/10;border-radius:10px;overflow:hidden;background:var(--bg-3);
}
.rank-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.rank-row:hover .rank-thumb img{transform:scale(1.04)}
.rank-body h3{font-size:17px;font-weight:800;color:var(--text);line-height:1.45}
.rank-body h3 .rank-pos{color:var(--gold-dark);margin-right:6px}
.rank-body p{margin-top:7px;font-size:14.5px;color:var(--muted);line-height:1.7}
.rank-score{text-align:right}
.rank-score .rs-num{
  font-family:Georgia,serif;font-size:28px;font-weight:700;color:var(--gold-dark);
  line-height:1;font-variant-numeric:tabular-nums;
}
.rank-score .rs-num span{font-size:12.5px;margin-left:2px;font-family:"PingFang SC",sans-serif;color:var(--muted)}
.rank-score .stars{margin-top:8px;justify-content:flex-end}
.rank-score .score{margin-top:8px;justify-content:flex-end}
@media(max-width:860px){
  .rank-row{grid-template-columns:44px 1fr;grid-template-areas:"medal body" "thumb thumb" "score score";gap:12px 14px;padding:16px}
  .rank-row>.medal{grid-area:medal}
  .rank-thumb{grid-area:thumb;aspect-ratio:16/9}
  .rank-body{grid-area:body}
  .rank-score{grid-area:score;text-align:left;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
  .rank-score .stars,.rank-score .score{margin-top:0;justify-content:flex-start}
}

/* ============ 流程步骤 ============ */
.flow{display:grid;grid-template-columns:1fr;gap:18px;counter-reset:flow}
@media(min-width:768px){.flow{grid-template-columns:repeat(5,1fr);gap:16px}}
.flow-step{position:relative;padding:24px 20px;border-radius:var(--radius);background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.flow-step::before{
  content:"";position:absolute;top:34px;right:-16px;width:16px;height:2px;background:var(--line);
}
@media(max-width:767px){.flow-step::before{display:none}}
.flow-step:last-child::before{display:none}
.flow-dot{
  width:26px;height:26px;border-radius:50%;display:grid;place-items:center;
  font-family:Georgia,serif;font-size:13px;font-weight:700;color:#fff;
  background:linear-gradient(160deg,#E4B855,#C08A2E);margin-bottom:14px;
}
.flow-step:nth-child(2) .flow-dot{background:linear-gradient(160deg,#C7CDD1,#9AA3A8)}
.flow-step:nth-child(3) .flow-dot{background:linear-gradient(160deg,#CE8C50,#B4713B)}
.flow-step:nth-child(4) .flow-dot{background:linear-gradient(160deg,#4A6259,#1F322C)}
.flow-step:nth-child(5) .flow-dot{background:linear-gradient(160deg,#C0635E,#A62B26)}
.flow-step h3{font-size:16.5px;font-weight:800;color:var(--text);line-height:1.4}
.flow-step p{margin-top:9px;font-size:14px;color:var(--muted);line-height:1.75}

/* ============ 场景专题 ============ */
.scene-grid{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:640px){.scene-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.scene-grid{grid-template-columns:repeat(4,1fr)}}
.scene-card{
  padding:24px 22px;border-radius:var(--radius);background:var(--bg-3);
  border:1px solid var(--line);transition:background-color .24s,transform .24s,box-shadow .24s;
}
.scene-card:hover{background:#fff;transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.scene-card .sc-idx{font-family:Georgia,serif;font-size:12.5px;font-weight:700;color:var(--gold);letter-spacing:.12em}
.scene-card h3{margin-top:10px;font-size:17.5px;font-weight:800;color:var(--text)}
.scene-card p{margin-top:10px;font-size:14.5px;color:var(--muted);line-height:1.78}

/* ============ 案例墙 ============ */
.case-grid{display:grid;grid-template-columns:1fr;gap:20px}
@media(min-width:640px){.case-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.case-grid{grid-template-columns:repeat(3,1fr)}}
.case-card{
  border-radius:var(--radius);overflow:hidden;background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow);
  transition:transform .24s ease,box-shadow .24s ease;
}
.case-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.case-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--bg-3)}
.case-media img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.case-card:hover .case-media img{transform:scale(1.04)}
.case-media::after{
  content:"";position:absolute;inset:auto 0 0 0;height:46%;
  background:linear-gradient(180deg,rgba(31,50,44,0),rgba(31,50,44,.55));
}
.case-media .case-tag{
  position:absolute;left:14px;bottom:14px;z-index:2;
  padding:4px 12px;border-radius:999px;font-size:12.5px;font-weight:700;
  background:rgba(250,246,239,.9);color:#2C3A34;
}
.case-body{padding:20px 20px 22px}
.case-body h3{font-size:16.5px;font-weight:800;color:var(--text);line-height:1.45}
.case-body p{margin-top:9px;font-size:14.5px;color:var(--muted);line-height:1.75}

/* ============ 对照表 ============ */
.table-wrap{
  border-radius:12px;border:1px solid var(--line);overflow-x:auto;
  background:#fff;box-shadow:var(--shadow);
}
table.compare{border-collapse:separate;border-spacing:0;width:100%;min-width:900px;font-size:14.5px}
table.compare th,table.compare td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--line);white-space:nowrap}
table.compare thead th{
  background:var(--dark);color:#F4EEDF;font-weight:700;font-size:14.5px;
  position:sticky;top:0;border-bottom:0;
}
table.compare tbody th{
  background:#F7F1E6;font-weight:700;color:var(--text);position:sticky;left:0;z-index:2;
  border-right:1px solid var(--line);
}
table.compare tbody tr:nth-child(even) td{background:#FBF7EE}
table.compare tbody tr:hover td{background:#F5EDDD}
table.compare tbody tr:last-child th,table.compare tbody tr:last-child td{border-bottom:0}
.table-note{margin-top:12px;font-size:13.5px;color:var(--muted)}

/* ============ 资讯列表 ============ */
.news-list{display:flex;flex-direction:column;gap:18px}
.news-item{
  display:grid;grid-template-columns:1fr;gap:14px;
  padding:18px;border-radius:var(--radius);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
@media(min-width:700px){.news-item{grid-template-columns:230px 1fr;gap:22px;align-items:center}}
.news-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:rgba(192,138,46,.4)}
.news-media{position:relative;aspect-ratio:16/10;border-radius:12px;overflow:hidden;background:var(--bg-3)}
.news-media img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.news-item:hover .news-media img{transform:scale(1.03)}
.news-body h3{font-size:17.5px;font-weight:800;color:var(--text);line-height:1.45;transition:color .2s}
.news-item:hover .news-body h3{color:var(--gold-dark)}
.news-body p{margin-top:10px;font-size:14.5px;color:var(--muted);line-height:1.75;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-meta{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:14px;font-size:13px;color:#8C857A}

/* ============ 评审标准 ============ */
.judge-grid{display:grid;grid-template-columns:1fr;gap:30px;align-items:center}
@media(min-width:980px){.judge-grid{grid-template-columns:1.05fr .95fr;gap:44px}}
.judge-media{position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:16/11;box-shadow:var(--shadow-lg);background:var(--bg-3)}
.judge-media img{width:100%;height:100%;object-fit:cover}
.weight-list{display:flex;flex-direction:column;gap:16px;margin-top:26px}
.weight-row .wr-top{display:flex;justify-content:space-between;font-size:14.5px;font-weight:700;color:var(--text)}
.weight-row .wr-top span:last-child{font-family:Georgia,serif;color:var(--gold-dark)}
.weight-row .wr-bar{margin-top:8px;height:7px;border-radius:999px;background:#E8DFCC;overflow:hidden}
.weight-row .wr-bar i{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--gold-light),var(--gold))}
.judge-note{margin-top:24px;padding:18px 20px;border-left:3px solid var(--gold);background:#fff;border-radius:0 12px 12px 0;font-size:14.5px;color:var(--body);line-height:1.8;box-shadow:var(--shadow)}

/* ============ 用户反馈 ============ */
.feedback-grid{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:768px){.feedback-grid{grid-template-columns:repeat(3,1fr)}}
.feedback-card{
  position:relative;padding:26px 22px 22px;border-radius:var(--radius);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);
  transition:transform .24s ease,box-shadow .24s ease;
}
.feedback-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.feedback-card .fb-no{
  position:absolute;top:-14px;left:22px;width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;background:var(--dark);color:var(--gold-light);
  font-family:Georgia,serif;font-size:14px;font-weight:700;
}
.feedback-card p{margin-top:12px;font-size:14.8px;color:var(--body);line-height:1.8}
.feedback-card .fb-foot{margin-top:16px;padding-top:14px;border-top:1px dashed var(--line);display:flex;align-items:center;justify-content:space-between;gap:10px;font-size:13px;color:var(--muted)}

/* ============ 合作伙伴 ============ */
.partner-row{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(min-width:640px){.partner-row{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.partner-row{grid-template-columns:repeat(5,1fr);gap:18px}}
.partner-item{
  padding:20px 16px;border-radius:12px;text-align:center;
  background:#fff;border:1px solid var(--line);color:#8E877C;
  font-size:14.5px;font-weight:700;letter-spacing:.02em;
  filter:grayscale(1);opacity:.72;
  transition:filter .25s ease,opacity .25s ease,transform .25s ease,border-color .25s ease;
}
.partner-item:hover{filter:grayscale(0);opacity:1;transform:translateY(-2px);border-color:rgba(192,138,46,.45);color:var(--gold-dark)}
.partner-note{margin-top:20px;font-size:14px;color:var(--muted)}

/* ============ FAQ ============ */
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:#fff;border:1px solid var(--line);border-left:3px solid var(--gold);
  border-radius:0 12px 12px 0;box-shadow:var(--shadow);overflow:hidden;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.faq-item[open]{border-left-color:var(--gold-dark);box-shadow:var(--shadow-lg)}
.faq-item summary{
  list-style:none;cursor:pointer;padding:18px 54px 18px 22px;position:relative;
  font-size:16.5px;font-weight:700;color:var(--text);line-height:1.6;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"";position:absolute;right:22px;top:50%;width:14px;height:14px;
  transform:translateY(-50%) rotate(0deg);transition:transform .25s ease;
  background:
    linear-gradient(var(--gold) 0 0) center/14px 2px no-repeat,
    linear-gradient(var(--gold) 0 0) center/2px 14px no-repeat;
}
.faq-item[open] summary::after{transform:translateY(-50%) rotate(135deg)}
.faq-item .faq-answer{padding:0 22px 20px;font-size:15px;color:var(--muted);line-height:1.85}

/* ============ 保障条 + 反馈表单 ============ */
.assure-bar{
  display:grid;grid-template-columns:1fr;gap:20px;
  padding:26px;border-radius:var(--radius);
  background:var(--dark);color:#EFE7D8;border:1px solid #2E4A43;
}
@media(min-width:900px){.assure-bar{grid-template-columns:repeat(3,1fr);gap:26px;padding:32px 34px}}
.assure-item h3{font-size:16.5px;font-weight:800;color:#FBF5E9;display:flex;align-items:center;gap:9px}
.assure-item h3::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--gold-light);display:block;flex:0 0 auto}
.assure-item p{margin-top:9px;font-size:14.2px;color:#B9BDAC;line-height:1.78}

.entry-cta{
  margin-top:34px;display:grid;grid-template-columns:1fr;gap:28px;
  padding:28px;border-radius:var(--radius);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow);
}
@media(min-width:900px){.entry-cta{grid-template-columns:1fr 420px;gap:44px;padding:36px}}
.entry-cta h2{font-size:25px;font-weight:800;color:var(--text);line-height:1.4}
@media(min-width:768px){.entry-cta h2{font-size:29px}}
.entry-cta .cta-desc{margin-top:16px;font-size:16px;color:var(--body);line-height:1.85}
.entry-cta ul{margin-top:20px;display:flex;flex-direction:column;gap:10px}
.entry-cta ul li{position:relative;padding-left:18px;font-size:14.6px;color:var(--muted)}
.entry-cta ul li::before{content:"";position:absolute;left:0;top:10px;width:6px;height:6px;border-radius:50%;background:var(--gold-light)}

.form-grid{display:flex;flex-direction:column;gap:14px}
.form-field label{display:block;font-size:13.5px;font-weight:700;color:var(--text);margin-bottom:7px}
.form-field input,.form-field textarea{
  width:100%;padding:12px 14px;border-radius:var(--radius-sm);
  border:1px solid var(--line);background:#FCFAF5;color:var(--text);
  font-size:15px;transition:border-color .2s,box-shadow .2s,background-color .2s;
}
.form-field textarea{min-height:96px;resize:vertical;line-height:1.7}
.form-field input::placeholder,.form-field textarea::placeholder{color:#A79F91}
.form-field input:focus,.form-field textarea:focus{
  outline:none;border-color:var(--gold);background:#fff;
  box-shadow:0 0 0 2px rgba(192,138,46,.35);
}
.form-hint{font-size:12.8px;color:#8C857A;line-height:1.6}
.form-status{margin-top:6px;font-size:13.5px;color:var(--ribbon);background:rgba(166,43,38,.07);border-radius:8px;padding:10px 12px;display:none}
.form-status.show{display:block}

/* ============ 页脚 ============ */
.site-footer{background:var(--dark);color:#C4C4B5;padding:56px 0 0;margin-top:0}
@media(min-width:1024px){.site-footer{padding-top:72px}}
.footer-grid{display:grid;grid-template-columns:1fr;gap:32px}
@media(min-width:700px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:40px}}
.footer-brand .logo-text{color:#FBF5E9}
.footer-brand .logo-sub{color:var(--gold-light)}
.footer-brand p{margin-top:18px;font-size:14.3px;color:#A9AA9B;line-height:1.85;max-width:360px}
.footer-col h4{font-size:15px;font-weight:800;color:#FBF5E9;margin-bottom:16px;letter-spacing:.02em}
.footer-col ul{display:flex;flex-direction:column;gap:11px}
.footer-col ul li a{font-size:14.3px;color:#B9BDAC;position:relative;transition:color .2s ease}
.footer-col ul li a::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1px;
  background:var(--gold-light);transition:width .25s ease;
}
.footer-col ul li a:hover{color:var(--gold-light)}
.footer-col ul li a:hover::after{width:100%}
.footer-col p{font-size:14.3px;color:#A9AA9B;line-height:1.85}
.footer-bottom{
  margin-top:44px;padding:22px 0;border-top:1px solid rgba(228,184,85,.16);
  display:flex;flex-direction:column;gap:10px;justify-content:space-between;
  font-size:13.2px;color:#8F9484;
}
@media(min-width:768px){.footer-bottom{flex-direction:row;align-items:center}}
.footer-bottom a{color:#B9BDAC}
.footer-bottom a:hover{color:var(--gold-light)}

/* ============ 滚动淡入 ============ */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:translateY(0)}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
  *{animation-duration:.001ms !important;transition-duration:.001ms !important}
}

/* ============ 杂项 ============ */
.divider-gold{height:1px;background:linear-gradient(90deg,rgba(192,138,46,.5),rgba(192,138,46,0));margin:0}
.mt-24{margin-top:24px}
.mt-32{margin-top:32px}

/* roulang page: category1 */
/* ============ 设计系统 ============ */
:root{
  --bg:#FAF6EF;
  --bg-2:#F2EBDF;
  --bg-3:#F7F1E6;
  --dark:#1F322C;
  --dark-2:#25403A;
  --gold:#C08A2E;
  --gold-light:#E4B855;
  --gold-dark:#A97522;
  --silver:#9AA3A8;
  --bronze:#B4713B;
  --ribbon:#A62B26;
  --text:#1C1B19;
  --body:#3B3833;
  --muted:#6B6459;
  --line:#E3D8C6;
  --radius:16px;
  --radius-sm:10px;
  --radius-xs:8px;
  --shadow:0 6px 20px rgba(120,95,45,.10);
  --shadow-lg:0 14px 34px rgba(120,95,45,.18);
  --container:1200px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:96px}
body{
  margin:0;
  background:var(--bg);
  color:var(--body);
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size:16.5px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block;border:0}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
h1,h2,h3,h4{margin:0;color:var(--text);font-weight:800;line-height:1.35;letter-spacing:-.01em}
p{margin:0}
ul,ol{margin:0;padding:0;list-style:none}
table{border-collapse:collapse}
:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* ============ 容器与板块 ============ */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px}
.section{padding:56px 0}
.section-alt{background:var(--bg-2)}
.section-dark{background:var(--dark);color:#EFE7D8}
.section-dark h2,.section-dark h3{color:#FBF5E9}
.section-dark p{color:#C9C3B3}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12.5px;font-weight:700;letter-spacing:.18em;
  color:var(--gold-dark);text-transform:uppercase;
}
.eyebrow::before{content:"";width:24px;height:2px;background:currentColor;display:block;border-radius:2px}
.section-dark .eyebrow{color:var(--gold-light)}
.section-head{max-width:820px;margin-bottom:34px}
.section-head h2{font-size:25px;margin:14px 0 0}
.section-head .lead{margin-top:14px;font-size:16.5px;line-height:1.85;color:var(--muted)}
.section-dark .section-head .lead{color:#C2BCAC}

/* ============ 按钮 ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 26px;border-radius:var(--radius-sm);
  font-size:15.5px;font-weight:700;line-height:1.2;
  border:1.5px solid transparent;cursor:pointer;
  transition:transform .2s ease,background-color .2s ease,color .2s ease,box-shadow .2s ease,border-color .2s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--gold);color:#fff;box-shadow:0 8px 20px rgba(192,138,46,.28)}
.btn-primary:hover{background:var(--gold-dark);transform:translateY(-1px);box-shadow:0 12px 26px rgba(169,117,34,.34)}
.btn-ghost{background:transparent;color:var(--gold-dark);border-color:rgba(192,138,46,.55)}
.btn-ghost:hover{background:rgba(192,138,46,.12);transform:translateY(-1px)}
.btn-dark{background:var(--dark);color:#FBF5E9}
.btn-dark:hover{background:#16261F;transform:translateY(-1px)}
.btn-sm{padding:9px 18px;font-size:14px}
.btn[disabled],.btn.is-disabled{opacity:.55;cursor:not-allowed;transform:none;box-shadow:none}

/* ============ 顶部玻璃导航 ============ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:72px;display:flex;align-items:center;
  background:rgba(250,246,239,.55);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid rgba(192,138,46,.28);
  transition:height .28s ease,background-color .28s ease,box-shadow .28s ease;
}
.site-header.scrolled{height:64px;background:rgba(250,246,239,.94);box-shadow:0 10px 26px rgba(120,95,45,.13)}
.nav-inner{
  width:100%;max-width:var(--container);margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.logo{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.logo-mark{
  position:relative;width:34px;height:34px;border-radius:50%;
  background:linear-gradient(160deg,var(--gold-light),var(--gold));
  display:grid;place-items:center;color:#fff;font-weight:800;
  font-family:Georgia,"Songti SC",serif;font-size:15px;
  box-shadow:0 4px 12px rgba(120,95,45,.28);
}
.logo-mark::after{
  content:"";position:absolute;top:100%;left:50%;margin-top:-2px;transform:translateX(-50%);
  width:16px;height:11px;background:var(--gold);
  clip-path:polygon(0 0,100% 0,100% 100%,50% 60%,0 100%);
}
.logo-text{font-size:18px;font-weight:800;color:var(--text);letter-spacing:-.01em;line-height:1.15}
.logo-sub{display:block;font-size:10.5px;font-weight:600;letter-spacing:.14em;color:var(--gold-dark);margin-top:1px}
.nav-links{display:none;align-items:center;gap:26px}
.nav-links a{position:relative;padding:6px 0;font-size:15.5px;font-weight:600;color:var(--body);transition:color .2s ease}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--gold);border-radius:2px;transition:width .26s ease}
.nav-links a:hover{color:var(--gold-dark)}
.nav-links a:hover::after{width:100%}
.nav-links a.active{color:var(--gold-dark)}
.nav-links a.active::after{width:100%}
.nav-right{display:flex;align-items:center;gap:12px;flex:0 0 auto}
.icon-btn{
  width:40px;height:40px;border-radius:50%;display:grid;place-items:center;
  border:1px solid rgba(192,138,46,.4);background:rgba(255,255,255,.5);
  color:var(--gold-dark);cursor:pointer;transition:background-color .2s,transform .2s;
}
.icon-btn:hover{background:rgba(192,138,46,.16);transform:translateY(-1px)}
.nav-cta{display:none}
.burger{
  width:42px;height:38px;border-radius:var(--radius-xs);
  border:1px solid rgba(192,138,46,.4);background:rgba(255,255,255,.5);
  display:inline-flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;cursor:pointer;
}
.burger span{display:block;width:18px;height:2px;background:var(--gold-dark);border-radius:2px;transition:transform .25s ease,opacity .25s ease}
.drawer-mask{position:fixed;inset:0;background:rgba(31,50,44,.55);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;z-index:190}
.drawer-mask.open{opacity:1;visibility:visible}
.drawer{
  position:fixed;top:0;right:0;bottom:0;width:78%;max-width:340px;z-index:200;
  background:var(--dark);color:#F1EADC;padding:88px 28px 40px;
  transform:translateX(102%);transition:transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
}
.drawer.open{transform:translateX(0)}
.drawer-close{
  position:absolute;top:20px;right:20px;width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(228,184,85,.45);background:transparent;color:var(--gold-light);
  font-size:20px;line-height:1;cursor:pointer;display:grid;place-items:center;
}
.drawer a{display:block;font-size:18px;padding:14px 0;color:#EFE7D8;border-bottom:1px solid rgba(228,184,85,.16)}
.drawer a.active{color:var(--gold-light)}
.drawer .btn{margin-top:24px;width:100%}

/* ============ 分类页标题带 ============ */
.cat-hero{
  padding:132px 0 50px;
  background:
    radial-gradient(120% 90% at 82% 0%,rgba(228,184,85,.22),transparent 62%),
    repeating-linear-gradient(135deg,rgba(192,138,46,.055) 0 2px,transparent 2px 13px),
    var(--bg);
  border-bottom:1px solid var(--line);
}
.crumbs{display:flex;align-items:center;gap:8px;font-size:13.5px;color:var(--muted);margin-bottom:18px;flex-wrap:wrap}
.crumbs a:hover{color:var(--gold-dark)}
.crumbs span.sep{color:var(--line)}
.cat-hero h1{font-size:38px;line-height:1.25;margin:14px 0 0}
.cat-hero h1 em{font-style:normal;color:var(--gold-dark)}
.cat-lead{max-width:780px;margin-top:18px;font-size:16.5px;line-height:1.85;color:var(--body)}
.meta-row{display:flex;flex-wrap:wrap;gap:10px 14px;margin-top:26px}
.meta-item{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;border:1px solid var(--line);border-radius:999px;
  padding:7px 16px;font-size:13.5px;color:var(--muted);
}
.meta-item b{color:var(--text);font-weight:700;font-variant-numeric:tabular-nums}

/* ============ 筛选条 ============ */
.filter-wrap{
  position:sticky;top:72px;z-index:30;
  background:rgba(250,246,239,.94);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  padding:14px 0;
}
.filter-bar{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between}
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip{
  border:1px solid var(--line);background:#fff;color:var(--body);
  border-radius:999px;padding:7px 15px;font-size:13.5px;font-weight:600;cursor:pointer;
  transition:background-color .2s,border-color .2s,color .2s,transform .2s;
}
.chip:hover{border-color:rgba(192,138,46,.5);color:var(--gold-dark);transform:translateY(-1px)}
.chip.active{background:var(--gold);border-color:var(--gold);color:#fff}
.filter-tools{display:flex;gap:10px;flex-wrap:wrap}
.filter-tools select,.filter-tools input{
  border:1px solid var(--line);background:#fff;border-radius:var(--radius-sm);
  padding:9px 14px;font-size:14px;min-width:150px;
}
.filter-tools input{min-width:210px}
.filter-tools select:focus,.filter-tools input:focus{outline:2px solid var(--gold);outline-offset:1px}

/* ============ 榜单列表 ============ */
.rank-list{display:flex;flex-direction:column;gap:14px}
.rank-row{
  display:grid;
  grid-template-areas:"no thumb info score";
  grid-template-columns:56px 116px 1fr 156px;
  gap:18px;align-items:center;
  background:#fff;border:1px solid var(--line);border-radius:14px;
  padding:14px 18px;box-shadow:var(--shadow);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.rank-row:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:rgba(192,138,46,.45)}
.rank-no{
  grid-area:no;font-family:Georgia,"Songti SC",serif;font-size:28px;line-height:1;
  color:var(--gold-dark);font-variant-numeric:tabular-nums;text-align:center;
}
.rank-thumb{grid-area:thumb;aspect-ratio:16/10;border-radius:10px;overflow:hidden;background:var(--bg-2)}
.rank-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.rank-row:hover .rank-thumb img{transform:scale(1.03)}
.rank-info{grid-area:info;min-width:0}
.rank-title{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.rank-title h3{font-size:17px;line-height:1.4}
.rank-desc{font-size:14.5px;color:var(--muted);margin-top:6px}
.pills{display:flex;flex-wrap:wrap;gap:7px;margin-top:10px}
.pill{
  display:inline-flex;align-items:center;height:26px;padding:0 12px;
  border:1px solid rgba(192,138,46,.5);border-radius:999px;
  background:var(--bg-3);color:var(--dark);font-size:12.5px;font-weight:600;
}
.rank-score{grid-area:score;display:flex;flex-direction:column;align-items:flex-start;gap:7px}
.score-num{font-family:Georgia,"Songti SC",serif;font-size:26px;line-height:1;color:var(--text);font-variant-numeric:tabular-nums}
.score-note{font-size:12.5px;color:var(--muted)}
.rating{display:inline-flex;gap:4px}
.rating i{display:block;width:16px;height:6px;border-radius:2px;background:#E7DCC9}
.rating.r5 i:nth-child(1),.rating.r5 i:nth-child(2),.rating.r5 i:nth-child(3){background:var(--gold)}
.rating.r5 i:nth-child(4){background:var(--silver)}
.rating.r5 i:nth-child(5){background:var(--bronze)}
.rating.r4 i:nth-child(1),.rating.r4 i:nth-child(2),.rating.r4 i:nth-child(3){background:var(--gold)}
.rating.r4 i:nth-child(4){background:var(--silver)}
.rating.r3 i:nth-child(1),.rating.r3 i:nth-child(2){background:var(--gold)}
.rating.r3 i:nth-child(3){background:var(--bronze)}
.medal{
  position:relative;width:32px;height:32px;border-radius:50%;flex:0 0 auto;
  display:grid;place-items:center;color:#fff;font-family:Georgia,"Songti SC",serif;
  font-size:13px;font-weight:700;box-shadow:0 4px 10px rgba(120,95,45,.24);
}
.medal::after{
  content:"";position:absolute;top:100%;left:50%;transform:translateX(-50%);
  width:16px;height:10px;margin-top:-3px;
  clip-path:polygon(0 0,100% 0,100% 100%,50% 62%,0 100%);
}
.medal.gold{background:linear-gradient(160deg,var(--gold-light),var(--gold))}
.medal.gold::after{background:var(--gold)}
.medal.silver{background:linear-gradient(160deg,#C3CACE,var(--silver))}
.medal.silver::after{background:var(--silver)}
.medal.bronze{background:linear-gradient(160deg,#C98A57,var(--bronze))}
.medal.bronze::after{background:var(--bronze)}
.medal.lg{width:56px;height:56px;font-size:20px}
.medal.lg::after{width:26px;height:16px;margin-top:-5px}
.list-more{display:flex;justify-content:center;margin-top:30px}
.result-note{margin-top:16px;font-size:14px;color:var(--muted)}

/* ============ 前三名领奖台 ============ */
.podium{display:grid;grid-template-columns:1fr;gap:18px}
.podium-card{
  background:#fff;border:1px solid var(--line);border-radius:18px;
  padding:26px 24px;box-shadow:var(--shadow);
  transition:transform .22s ease,box-shadow .22s ease;
}
.podium-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.podium-card h3{font-size:19px;margin-top:16px}
.podium-badge{display:flex;align-items:center;gap:14px}
.podium-score{font-family:Georgia,"Songti SC",serif;font-size:34px;color:var(--gold-dark);line-height:1;font-variant-numeric:tabular-nums}
.podium-rank{font-size:12.5px;letter-spacing:.16em;color:var(--muted);font-weight:700}
.podium-list{margin-top:16px;display:flex;flex-direction:column;gap:9px}
.podium-list li{position:relative;padding-left:18px;font-size:14.5px;color:var(--muted)}
.podium-list li::before{content:"";position:absolute;left:0;top:11px;width:7px;height:7px;border-radius:50%;background:var(--gold-light)}
.compare-bar{height:8px;border-radius:999px;background:#EDE2CE;overflow:hidden;margin-top:18px}
.compare-bar span{display:block;height:100%;background:linear-gradient(90deg,var(--gold-light),var(--gold))}
.compare-label{display:flex;justify-content:space-between;font-size:12.5px;color:var(--muted);margin-top:7px}
.compare-note{margin-top:22px;font-size:15px;line-height:1.85;color:var(--muted);background:var(--bg-3);border-left:3px solid var(--gold);border-radius:0 12px 12px 0;padding:16px 20px}

/* ============ 维度表 ============ */
.dim-grid{display:grid;grid-template-columns:1fr;gap:30px}
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:12px;background:#fff;box-shadow:var(--shadow)}
table{width:100%;min-width:520px}
th{background:var(--dark);color:#FBF5E9;text-align:left;padding:14px 18px;font-size:14.5px;font-weight:700;white-space:nowrap}
td{padding:14px 18px;border-top:1px solid var(--line);font-size:15px;color:var(--body)}
tbody tr:nth-child(odd){background:var(--bg-3)}
td b{color:var(--text);font-variant-numeric:tabular-nums}
.dim-aside{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px 24px;box-shadow:var(--shadow)}
.dim-aside h3{font-size:19px;margin-bottom:14px}
.dim-aside p{font-size:15.5px;color:var(--muted)}
.dim-aside ul{margin-top:16px;display:flex;flex-direction:column;gap:10px}
.dim-aside li{font-size:14.5px;color:var(--muted);padding-left:16px;position:relative}
.dim-aside li::before{content:"";position:absolute;left:0;top:11px;width:6px;height:6px;border-radius:50%;background:var(--gold)}

/* ============ 使用注意 ============ */
.note-grid{display:grid;grid-template-columns:1fr;gap:26px}
.note-col{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px 24px;box-shadow:var(--shadow)}
.note-col h3{font-size:19px;margin-bottom:16px}
.note-col ol{counter-reset:n;display:flex;flex-direction:column;gap:14px}
.note-col ol li{counter-increment:n;position:relative;padding-left:38px;font-size:15px;color:var(--muted)}
.note-col ol li::before{
  content:counter(n,decimal-leading-zero);position:absolute;left:0;top:2px;
  width:26px;height:26px;border-radius:8px;display:grid;place-items:center;
  background:var(--bg-3);border:1px solid rgba(192,138,46,.45);
  color:var(--gold-dark);font-size:12px;font-weight:700;font-family:Georgia,serif;
}
.note-col ul{display:flex;flex-direction:column;gap:14px}
.note-col ul li{font-size:15px;color:var(--muted);padding-left:20px;position:relative}
.note-col ul li::before{content:"";position:absolute;left:0;top:11px;width:8px;height:2px;background:var(--ribbon);border-radius:2px}
.note-col li b{color:var(--text)}
.inline-link{color:var(--gold-dark);font-weight:700;border-bottom:1px solid rgba(192,138,46,.45)}
.inline-link:hover{border-bottom-color:var(--gold-dark)}

/* ============ 相关文章 ============ */
.post-list{display:grid;grid-template-columns:1fr;gap:16px}
.post-card{
  display:flex;gap:18px;align-items:center;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:16px;box-shadow:var(--shadow);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.post-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:rgba(192,138,46,.45)}
.post-thumb{flex:0 0 152px;aspect-ratio:16/10;border-radius:10px;overflow:hidden;background:var(--bg-2)}
.post-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.post-card:hover .post-thumb img{transform:scale(1.04)}
.post-body h3{font-size:17px;line-height:1.45}
.post-body p{font-size:14.5px;color:var(--muted);margin-top:8px}
.post-meta{display:flex;gap:14px;font-size:12.5px;color:var(--muted);margin-top:10px;flex-wrap:wrap}

/* ============ FAQ ============ */
.faq-list{display:flex;flex-direction:column;gap:14px;max-width:900px}
.faq-item{
  background:#fff;border:1px solid var(--line);border-left:4px solid var(--gold);
  border-radius:12px;padding:0 22px;box-shadow:var(--shadow);
}
.faq-item summary{
  cursor:pointer;list-style:none;padding:18px 0;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  font-size:16.5px;font-weight:700;color:var(--text);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:24px;line-height:1;color:var(--gold);transition:transform .25s ease}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{padding:0 0 20px;font-size:15.5px;color:var(--muted)}

/* ============ 更新与订阅 ============ */
.update-bar{
  background:
    linear-gradient(rgba(31,50,44,.9),rgba(31,50,44,.94)),
    url("/assets/images/backpic/back-3.jpg") center/cover no-repeat;
  color:#EFE7D8;padding:64px 0;
}
.update-inner{display:grid;grid-template-columns:1fr;gap:30px;align-items:center}
.update-bar h2{font-size:26px;color:#FBF5E9;margin-top:12px}
.update-bar p{color:#C9C3B3;margin-top:14px;font-size:15.5px}
.update-bar .eyebrow{color:var(--gold-light)}
.subscribe{background:rgba(250,246,239,.06);border:1px solid rgba(228,184,85,.32);border-radius:var(--radius);padding:24px}
.subscribe .row{display:flex;gap:10px;flex-wrap:wrap}
.subscribe input{
  flex:1 1 210px;min-width:0;border:1px solid rgba(228,184,85,.4);
  background:rgba(255,255,255,.94);border-radius:10px;padding:12px 15px;font-size:15px;color:var(--text);
}
.subscribe input::placeholder{color:#9A9284}
.subscribe input:focus{outline:2px solid var(--gold-light);outline-offset:1px}
.form-tip{font-size:13px;color:#B7B1A1;margin-top:12px}

/* ============ 页脚 ============ */
.site-footer{background:var(--dark);color:#C9C3B3;padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:32px}
.site-footer .logo-text{color:#FBF5E9}
.site-footer .logo-sub{color:var(--gold-light)}
.footer-brand p{margin-top:16px;font-size:14.5px;line-height:1.9;color:#B8B2A2}
.footer-col h4{color:#FBF5E9;font-size:16px;margin-bottom:16px}
.footer-col ul li{margin-bottom:10px}
.footer-col a{font-size:14.5px;position:relative;transition:color .2s ease}
.footer-col a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:1px;background:var(--gold-light);transition:width .24s ease}
.footer-col a:hover{color:var(--gold-light)}
.footer-col a:hover::after{width:100%}
.footer-col p{font-size:14.5px;line-height:1.9;color:#B8B2A2}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);margin-top:44px;padding:20px 0;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  font-size:13.5px;color:#9C9686;
}

/* ============ 响应式 ============ */
@media (min-width:640px){
  .podium{grid-template-columns:repeat(3,1fr)}
  .post-list{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .section{padding:72px 0}
}
@media (min-width:1025px){
  .container{padding:0 32px}
  .nav-links{display:flex}
  .nav-cta{display:inline-flex}
  .burger{display:none}
  .section{padding:92px 0}
  .section-head h2{font-size:30px}
  .cat-hero h1{font-size:44px}
  .cat-hero{padding:150px 0 64px}
  .dim-grid{grid-template-columns:1.35fr 1fr;align-items:start}
  .note-grid{grid-template-columns:1.05fr .95fr}
  .post-list{grid-template-columns:repeat(2,1fr)}
  .update-inner{grid-template-columns:1.15fr .85fr}
  .footer-grid{grid-template-columns:1.6fr 1fr 1fr 1.3fr}
  .filter-wrap{top:72px}
}
@media (min-width:1280px){
  :root{--container:1240px}
  .seed-hide{display:block}
}
@media (max-width:1024px){
  .filter-wrap{top:62px}
}
@media (max-width:768px){
  .site-header{height:60px}
  .cat-hero{padding:100px 0 38px}
  .cat-hero h1{font-size:28px}
  .cat-lead{font-size:16px}
  .rank-row{display:flex;flex-wrap:wrap;gap:12px;padding:14px}
  .rank-no{width:42px;font-size:23px;text-align:left}
  .rank-thumb{width:88px;flex:0 0 auto}
  .rank-info{flex:1 1 170px}
  .rank-score{flex:1 1 100%;border-top:1px dashed var(--line);padding-top:12px;flex-direction:row;align-items:center;gap:12px}
  .post-card{flex-direction:column;align-items:flex-start}
  .post-thumb{width:100%;flex:0 0 auto}
  .update-bar{padding:52px 0}
  .update-bar h2{font-size:22px}
}
@media (max-width:520px){
  body{font-size:16px}
  .cat-hero h1{font-size:26px}
  .nav-cta{display:none}
  .filter-tools{width:100%}
  .filter-tools select,.filter-tools input{width:100%;min-width:0}
  .subscribe .row .btn{width:100%}
  .footer-bottom{flex-direction:column}
}
@media (prefers-reduced-motion:reduce){
  *{transition-duration:.01ms !important;animation-duration:.01ms !important;scroll-behavior:auto !important}
}
