/* ============================================================
   99速贷网 PbootCMS 模板样式
   品牌色：深蓝 #1F4E79 / 金 #C9A063 / 浅蓝底 #F5F8FC
   响应式断点：375 / 768 / 1024 / 1280
   SEO 要点：无框架、轻量、首屏快
   ============================================================ */

:root {
  --brand: #1F4E79;
  --brand-dark: #16395C;
  --gold: #C9A063;
  --gold-light: #E8D5AC;
  --bg: #F5F8FC;
  --text: #22303F;
  --text-sub: #5B6B7C;
  --border: #E3E9F0;
  --white: #FFFFFF;
  --red: #C0392B;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(31, 78, 121, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--brand-dark); font-weight: 700; line-height: 1.4; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
[class*="col-"] { padding: 0 12px; width: 100%; }
.col-1 { width: 8.333%; } .col-2 { width: 16.667%; } .col-3 { width: 25%; }
.col-4 { width: 33.333%; } .col-5 { width: 41.667%; } .col-6 { width: 50%; }
.col-7 { width: 58.333%; } .col-8 { width: 66.667%; } .col-9 { width: 75%; }
.col-10 { width: 83.333%; } .col-11 { width: 91.667%; } .col-12 { width: 100%; }

/* ---------- 顶部条 ---------- */
.topbar { background: var(--brand-dark); color: #CFE0F2; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; }
.topbar a { color: #CFE0F2; }
.topbar a:hover { color: var(--gold); }
.topbar .tel { color: var(--gold); font-weight: 700; font-size: 15px; }
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-slogan { color: #9DB4CE; font-size: 12.5px; }

/* ====== 城市切换器（仿 66law.cn，定制沈阳站） ====== */
.city-switch { position: relative; }
.city-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #E3EEF8; padding: 5px 12px; border-radius: 4px;
  font-size: 13px; line-height: 1; cursor: pointer;
  transition: all .2s;
}
.city-btn:hover { background: rgba(201,160,99,.15); border-color: var(--gold); color: #fff; }
.city-icon { width: 14px; height: 14px; color: var(--gold); }
.city-current { font-weight: 600; letter-spacing: 0.5px; }
.city-current-en { font-size: 10.5px; color: #9DB4CE; letter-spacing: 1px; margin-left: -2px; }
.city-caret { width: 12px; height: 12px; margin-left: 2px; transition: transform .25s; }
.city-switch.open .city-caret { transform: rotate(180deg); }
.city-switch.open .city-btn { background: rgba(201,160,99,.18); border-color: var(--gold); }

/* 弹窗 */
.city-popup {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 300;
  width: 480px; background: var(--white); color: var(--text);
  border-radius: 8px; box-shadow: 0 12px 32px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.04);
  padding: 0; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  border-top: 3px solid var(--gold);
}
.city-switch.open .city-popup { opacity: 1; visibility: visible; transform: translateY(0); }
.city-popup-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: linear-gradient(135deg, #F4F8FC, #FBF6EE);
  border-bottom: 1px solid var(--border);
}
.city-popup-head span:first-child { font-size: 24px; }
.city-popup-head strong { display: block; font-size: 14px; color: var(--brand); }
.city-popup-head span:last-child { font-size: 12px; color: var(--text-sub); }

.city-popup dl { padding: 12px 18px; margin: 0; border-bottom: 1px solid var(--border); }
.city-popup dl:last-of-type { border-bottom: 0; }
.city-popup dt {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px dashed var(--border);
  letter-spacing: 0.5px;
}
.dl-num { background: var(--gold); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 3px; font-weight: 700; }

/* 10 区网格 */
.region-grid-popup { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.region-grid-popup a {
  display: block; text-align: center; padding: 8px 4px; font-size: 12.5px;
  color: var(--text); border: 1px solid var(--border); border-radius: 4px;
  background: var(--bg); text-decoration: none;
  transition: all .2s;
}
.region-grid-popup a:hover { border-color: var(--gold); color: var(--gold-deep, #A87D33); background: #fff; transform: translateY(-1px); }

/* 切换城市站 */
.city-hot { display: flex; flex-wrap: wrap; gap: 6px; }
.city-hot a, .city-hot .city-disabled {
  display: inline-block; padding: 6px 12px; font-size: 12.5px; border-radius: 4px;
  background: var(--bg); color: var(--text); border: 1px solid var(--border);
  text-decoration: none;
}
.city-hot a:hover { border-color: var(--gold); color: var(--gold-deep, #A87D33); }
.city-hot .cur { background: var(--brand); color: #fff; border-color: var(--brand); }
.city-hot .cur:hover { background: var(--brand); color: #fff; }
.city-hot .city-disabled { color: #B0BCC8; cursor: not-allowed; background: #F8F9FB; }
.city-hot .city-disabled::before { content: "🔒 "; font-size: 10px; }

/* 弹窗底部 */
.city-popup-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; background: #FAFBFC; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-sub); border-radius: 0 0 8px 8px;
}
.city-popup-foot a { color: var(--brand); font-weight: 600; }

/* 响应式 */
@media (max-width: 768px) {
  .city-switch .city-current-en { display: none; }
  .topbar-slogan { display: none; }
  .city-popup { width: 320px; right: 0; left: auto; }
  .region-grid-popup { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) and (max-height: 600px) {
  .topbar .container { flex-direction: column; gap: 4px; padding: 6px 12px; }
  .topbar-left { width: 100%; justify-content: space-between; }
}


/* IP 定位到的区县 → 金色高亮 */
.region-grid-popup a.loc {
  background: rgba(201,160,99,.14); border-color: var(--gold);
  color: var(--gold-deep, #A87D33); font-weight: 700;
  box-shadow: 0 0 0 1px rgba(201,160,99,.25) inset;
}
.region-grid-popup a.loc::after {
  content: " ✓"; font-size: 10px; color: var(--gold-deep, #A87D33);
}
.city-popup-head span.loc-hint { font-size: 11.5px; }

/* ====== UI 设计稿落地增强（v2.0 视觉升级） ====== */

/* 全站统一键盘焦点态（WCAG 2.4.7，键盘可达性） */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold, #C9A063);
  outline-offset: 2px;
  border-radius: 4px;
}
/* 尊重减弱动效偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* 区块交替底色：浅蓝底区块加细边框与微渐变，视觉层次更分明 */
.section.bg { background: linear-gradient(180deg, var(--bg, #F5F8FC), #EEF4FB); border-top: 1px solid rgba(31,78,121,.05); border-bottom: 1px solid rgba(31,78,121,.05); }

/* ---------- 头部导航 ---------- */
.header { position: sticky; top: 0; z-index: 999; background: var(--white); box-shadow: 0 1px 6px rgba(31,78,121,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 46px; width: auto; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--brand); line-height: 1.2; }
.logo-text small { display: block; font-size: 11px; font-weight: 400; color: var(--text-sub); letter-spacing: 1px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a { display: block; padding: 26px 14px; color: var(--text); font-size: 15px; font-weight: 500; }
.nav > li > a:hover, .nav > li.active > a { color: var(--brand); }
.nav > li.active > a::after { content: ""; display: block; height: 3px; background: var(--gold); margin-top: 2px; border-radius: 2px; }

.nav .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 180px;
  background: var(--white); box-shadow: var(--shadow); border-radius: var(--radius);
  padding: 8px 0; z-index: 100;
}
.nav > li:hover .dropdown-menu { display: block; }
.nav .dropdown-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text); }
.nav .dropdown-menu a:hover { background: var(--bg); color: var(--brand); }

.nav-cta { margin-left: 12px; }
.nav-cta .btn-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #D4A85E 0%, #C9A063 45%, #A87D33 100%);
  color: #2A1E0D;
  padding: 11px 26px;
  font-size: 15px;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(201,160,99,.40), inset 0 1px 0 rgba(255,255,255,.25), inset 0 -1px 0 rgba(0,0,0,.08);
}
.nav-cta .btn-gold::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: left .55s ease;
  pointer-events: none;
}
.nav-cta .btn-gold:hover {
  background: linear-gradient(135deg, #DCB266 0%, #D0A968 45%, #B58A3A 100%);
  color: #2A1E0D;
  box-shadow: 0 6px 22px rgba(201,160,99,.55), inset 0 1px 0 rgba(255,255,255,.30), inset 0 -1px 0 rgba(0,0,0,.10);
}
.nav-cta .btn-gold:hover::before { left: 130%; }
.nav-cta .btn-gold .arr { display: inline-block; margin-left: 6px; transition: transform .25s; vertical-align: -1px; }
.nav-cta .btn-gold:hover .arr { transform: translateX(3px); }
.btn {
  display: inline-block; padding: 10px 22px; border-radius: 24px; font-size: 14px;
  font-weight: 600; text-align: center; cursor: pointer; border: 0; transition: all .2s;
}
.btn-gold { background: linear-gradient(135deg,#D4A85E,var(--gold),#A87D33); color: #2A1E0D; }
.btn-gold:hover { background: linear-gradient(135deg,#E0BC78,var(--gold-light),#C9A063); color: #2A1E0D; transform: translateY(-1px); }
.btn-blue { background: var(--brand); color: var(--white); }
.btn-blue:hover { background: var(--brand-dark); color: var(--white); }
.btn-outline { border: 2px solid var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-lg { padding: 13px 34px; font-size: 16px; }
.btn-block { display: block; width: 100%; }

.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--brand); cursor: pointer; }

/* ---------- 主 Banner ---------- */
.hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #2D6DA3 100%); color: #fff; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(201,160,99,.15); }
.hero-inner { position: relative; z-index: 1; padding: 72px 0; max-width: 760px; }
.hero h1 { color: #fff; font-size: 38px; margin-bottom: 16px; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 17px; color: #D5E4F4; margin-bottom: 30px; line-height: 1.8; }
.hero .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .hero-meta { margin-top: 28px; display: flex; gap: 24px; font-size: 13px; color: #AFC7DF; flex-wrap: wrap; }
.hero .hero-meta b { color: var(--gold-light); font-size: 18px; }

/* ---------- 区块通用 ---------- */
.section { padding: 56px 0; }
.section.bg { background: var(--bg); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 28px; margin-bottom: 8px; }
.section-head .sub { color: var(--text-sub); font-size: 15px; }
.section-head .line { width: 52px; height: 3px; background: var(--gold); margin: 12px auto 0; border-radius: 2px; }

/* ---------- 产品卡片 ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; transition: all .25s; position: relative; overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.product-card .icon { width: 52px; height: 52px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 14px; }
.product-card h3 { font-size: 18px; margin-bottom: 8px; }
.product-card h3 a { color: var(--brand-dark); }
.product-card p { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; min-height: 40px; }
.product-card .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.product-card .tags span { font-size: 12px; background: var(--bg); color: var(--brand); border-radius: 4px; padding: 2px 8px; border: 1px solid var(--border); }
.product-card .more { font-size: 14px; color: var(--gold); font-weight: 600; }
.product-card .num { position: absolute; top: 14px; right: 16px; font-size: 42px; font-weight: 800; color: rgba(31,78,121,.08); }

/* ---------- 评估/工具区 ---------- */
.tool-strip { position: relative; z-index: 3; margin-top: -36px; }
.tool-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool-item { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg, 12px); padding: 20px 22px; box-shadow: var(--shadow-lg, 0 12px 32px rgba(22,57,92,.14)); transition: all .25s; }
.tool-item:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(22,57,92,.18); }
.tool-item .t-ico { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--brand), #2A5F8F); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.tool-item .t-info { flex: 1; }
.tool-item h3 { color: var(--brand); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.tool-item p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.tool-item .t-go { color: var(--gold-deep, #A87D33); font-size: 13px; font-weight: 700; white-space: nowrap; }
.tool-item .t-go:hover { color: var(--brand); }

/* ---------- 优势 ---------- */
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.advantage-item { text-align: center; padding: 26px 18px; }
.advantage-item .num { font-size: 34px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.advantage-item h3 { font-size: 17px; margin-bottom: 8px; }
.advantage-item p { font-size: 13px; color: var(--text-sub); }

/* ---------- 流程 ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-item { text-align: center; padding: 24px 14px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.step-item .step-no { width: 42px; height: 42px; line-height: 42px; margin: 0 auto 12px; background: var(--brand); color: #fff; font-size: 18px; font-weight: 700; border-radius: 50%; }
.step-item h3 { font-size: 16px; margin-bottom: 6px; }
.step-item p { font-size: 13px; color: var(--text-sub); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-item summary { padding: 16px 20px; font-weight: 600; color: var(--brand-dark); cursor: pointer; list-style: none; position: relative; padding-right: 40px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--gold); font-weight: 700; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--text-sub); }
.faq-item .faq-a p { margin-bottom: 8px; }

/* ---------- 顾问 ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; }
.team-card .avatar { width: 76px; height: 76px; border-radius: 50%; background: var(--bg); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--brand); }
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; }

/* ---------- 合规条 ---------- */
.compliance-bar { background: #FDF6EC; border-top: 1px solid var(--gold-light); padding: 14px 0; font-size: 13px; color: #7A5A20; text-align: center; }

/* ---------- 内容列表 ---------- */
.list-card { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--border); align-items: flex-start; }
.list-card .date { flex-shrink: 0; text-align: center; background: var(--bg); border-radius: var(--radius); padding: 8px 14px; }
.list-card .date b { display: block; font-size: 20px; color: var(--brand); line-height: 1.2; }
.list-card .date span { font-size: 12px; color: var(--text-sub); }
.list-card .body h3 { font-size: 17px; margin-bottom: 6px; }
.list-card .body h3 a { color: var(--brand-dark); }
.list-card .body h3 a:hover { color: var(--gold); }
.list-card .body p { font-size: 14px; color: var(--text-sub); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- 面包屑 ---------- */
.crumbs { font-size: 13px; color: var(--text-sub); padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.crumbs a { color: var(--text-sub); }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { margin: 0 8px; color: #B9C4D0; }

/* ---------- 内容页 ---------- */
.article { max-width: 860px; margin: 0 auto; }
.article h1 { font-size: 28px; margin-bottom: 14px; }
.article .meta { font-size: 13px; color: var(--text-sub); border-bottom: 1px solid var(--border); padding-bottom: 14px; margin-bottom: 22px; }
.article .content { font-size: 15.5px; line-height: 1.9; }
.article .content h2 { font-size: 21px; margin: 28px 0 12px; padding-left: 12px; border-left: 4px solid var(--gold); }
.article .content h3 { font-size: 18px; margin: 22px 0 10px; }
.article .content p { margin-bottom: 14px; }
.article .content ul, .article .content ol { margin: 0 0 14px 22px; }
.article .content ul li { list-style: disc; margin-bottom: 6px; }
.article .content ol li { list-style: decimal; margin-bottom: 6px; }
.article .content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.article .content table th, .article .content table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.article .content table th { background: var(--bg); color: var(--brand-dark); font-weight: 600; }
.article .content blockquote { border-left: 4px solid var(--gold); background: var(--bg); padding: 12px 18px; margin: 14px 0; color: var(--text-sub); }
.article .content img { margin: 14px auto; border-radius: var(--radius); }
.article .notice { background: #FDF6EC; border: 1px solid var(--gold-light); border-radius: var(--radius); padding: 14px 18px; font-size: 13.5px; color: #7A5A20; margin: 18px 0; }

/* ---------- 分页 ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 32px 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-block; min-width: 38px; height: 38px; line-height: 38px; padding: 0 12px; text-align: center; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; color: var(--text); background: var(--white); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- 产品速览卡 ---------- */
.spec-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.spec-card table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-card td { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.spec-card td:first-child { width: 120px; background: var(--bg); color: var(--brand-dark); font-weight: 600; }
.spec-card tr:last-child td { border-bottom: 0; }

/* ---------- 计算器 ---------- */
.calc-box { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin: 24px 0; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.calc-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.calc-box label { display: block; font-size: 14px; color: var(--brand-dark); font-weight: 600; margin: 14px 0 6px; }
.calc-box input, .calc-box select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 15px; background: var(--white); color: var(--text); outline: none;
  min-height: 48px; transition: border-color .2s, box-shadow .2s; font-variant-numeric: tabular-nums;
}
.calc-box input:focus, .calc-box select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,99,.15); }
.calc-box .calc-btn { width: 100%; margin-top: 18px; }
.calc-result { margin-top: 18px; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); border-radius: 12px; padding: 20px; color: #fff; position: relative; }
.calc-result::after { content: "¥"; position: absolute; right: 18px; bottom: 12px; font-size: 64px; font-weight: 800; color: rgba(255,255,255,.06); }
.calc-result .row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.calc-result .row:last-child { border-bottom: 0; }
.calc-result .row span { color: #AFC7DF; }
.calc-result .big { font-size: 26px; font-weight: 800; color: var(--gold-light); font-variant-numeric: tabular-nums; }

/* ---------- 表单 ---------- */
.form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; max-width: 560px; margin: 0 auto; box-shadow: var(--shadow); }
.form-box h2 { text-align: center; margin-bottom: 6px; }
.form-box .form-sub { text-align: center; color: var(--text-sub); font-size: 13px; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; color: var(--brand-dark); font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 15px; outline: none; font-family: inherit; background: var(--white);
  min-height: 46px; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,99,.15); }
.form-group .hint { font-size: 12px; color: var(--text-sub); margin-top: 4px; }
.form-tip { font-size: 12px; color: var(--text-sub); text-align: center; margin-top: 12px; line-height: 1.6; }
/* 信任承诺条（表单转化增强） */
.form-promise { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 14px 0 6px; }
.form-promise span { font-size: 12.5px; color: var(--success, #1E8E5A); background: rgba(30,142,90,.08); border: 1px solid rgba(30,142,90,.25); padding: 5px 12px; border-radius: 999px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .icon { font-size: 52px; margin-bottom: 12px; }
.form-success h3 { margin-bottom: 8px; }

/* ---------- 关于页 ---------- */
.page-head { background: var(--brand); color: #fff; padding: 44px 0; }
.page-head h1 { color: #fff; font-size: 30px; margin-bottom: 6px; }
.page-head p { color: #CFE0F2; font-size: 14px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.about-item { text-align: center; padding: 24px 16px; background: var(--bg); border-radius: var(--radius); }
.about-item b { display: block; font-size: 26px; color: var(--brand); margin-bottom: 6px; }
.about-item span { font-size: 13px; color: var(--text-sub); }

/* ---------- 页脚 ---------- */
.footer { background: linear-gradient(180deg, var(--brand-dark) 0%, #0F2A45 100%); color: #B8CCE0; padding: 56px 0 0; font-size: 14px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%); }
.footer h4 { color: #fff; font-size: 17px; margin-bottom: 22px; padding-bottom: 12px; position: relative; display: flex; align-items: center; gap: 8px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--gold); border-radius: 1px; }
.footer h4 .ico { display: inline-flex; width: 22px; height: 22px; border-radius: 5px; background: rgba(201,160,99,.18); color: var(--gold-light); font-size: 13px; align-items: center; justify-content: center; }
.footer a { color: #B8CCE0; transition: all .2s; }
.footer a:hover { color: var(--gold-light); }
.footer > .container > .row { gap: 0; row-gap: 32px; }
.footer > .container > .row > [class*="col-"] { padding: 0 18px; }
.footer ul li { margin-bottom: 10px; padding: 4px 0; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.footer ul li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: rgba(184,204,224,.32); flex-shrink: 0; transition: all .2s; }
.footer ul li:hover { transform: translateX(3px); }
.footer ul li:hover::before { background: var(--gold); box-shadow: 0 0 6px rgba(201,160,99,.5); }
.footer .nap { line-height: 2.1; }
.footer .nap li { padding: 5px 0; }
.footer .nap li::before { display: none; }
.footer .nap b { color: var(--gold-light); font-size: 16px; letter-spacing: .5px; }
.footer .nap .row-item { display: flex; align-items: flex-start; gap: 8px; }
.footer .nap .row-item .lbl { color: #7E9AB8; flex-shrink: 0; min-width: 78px; font-size: 13px; }
.footer .compliance-bar { background: rgba(15,42,69,.7); border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; font-size: 12.5px; color: #94A8BD; text-align: center; line-height: 1.7; margin-top: 36px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; text-align: center; font-size: 13px; color: #7E9AB8; background: rgba(0,0,0,.15); }
.footer-bottom a { color: #7E9AB8; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom .sep { margin: 0 10px; opacity: .5; }

/* ---------- 悬浮 CTA ---------- */
.float-cta { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 10px; z-index: 900; }
.float-cta a { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; box-shadow: var(--shadow); text-align: center; line-height: 1.2; }
.float-cta .call { background: var(--gold); }
.float-cta .apply { background: var(--brand); }

/* ---------- 手机底部导航 ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -2px 10px rgba(0,0,0,.08); z-index: 950; }
.mobile-bar .row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.mobile-bar a { display: block; text-align: center; padding: 12px 0; font-size: 13px; font-weight: 600; }
.mobile-bar .m-call { color: var(--brand); border-right: 1px solid var(--border); }
.mobile-bar .m-calc { color: #A87D33; background: rgba(201,160,99,.10); border-right: 1px solid var(--border); }
.mobile-bar .m-apply { background: var(--gold); color: #fff; }

/* ---------- 响应式 ---------- */
@media (min-width: 768px) {
  .col-md-1 { width: 8.333%; } .col-md-2 { width: 16.667%; } .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; } .col-md-5 { width: 41.667%; } .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333%; } .col-md-8 { width: 66.667%; } .col-md-9 { width: 75%; }
  .col-md-10 { width: 83.333%; } .col-md-11 { width: 91.667%; } .col-md-12 { width: 100%; }
}
@media (min-width: 1024px) {
  .col-lg-1 { width: 8.333%; } .col-lg-2 { width: 16.667%; } .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; } .col-lg-5 { width: 41.667%; } .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; } .col-lg-8 { width: 66.667%; } .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333%; } .col-lg-11 { width: 91.667%; } .col-lg-12 { width: 100%; }
}

@media (max-width: 1024px) {
  .product-grid, .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tool-strip .container { grid-template-columns: 1fr; }
  .team-grid, .about-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; box-shadow: 0 8px 16px rgba(0,0,0,.08); max-height: 80vh; overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav > li > a { padding: 14px 20px; border-bottom: 1px solid var(--bg); }
  .nav .dropdown-menu { display: none; position: static; box-shadow: none; padding-left: 20px; }
  .nav > li.open > .dropdown-menu { display: block; }
  .nav-cta { margin: 10px 20px 16px; }
  .nav-cta .btn { width: 100%; }
  .hero-inner { padding: 48px 0; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .section { padding: 40px 0; }
  .section-head h2 { font-size: 22px; }
  .product-grid, .advantage-grid, .steps, .team-grid, .about-grid { grid-template-columns: 1fr; }
  .col-sm-12 { width: 100%; }
  .float-cta { display: none; }
  .mobile-bar { display: block; }
  /* 底部悬浮栏补偿：内容不被遮挡（悬浮栏约 46px） */
  body { padding-bottom: 52px; }
  .footer { margin-bottom: 0; }
  .article h1 { font-size: 22px; }
  .calc-box { padding: 18px; }
  .form-box { padding: 20px; }
}

@media (min-width: 769px) {
  .mobile-bar { display: none; }
  .nav-region { display: none; }
}

/* ---------- 增强视觉细节 ---------- */
.section { padding: 64px 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: 30px; }
.section-head .sub { font-size: 16px; margin-top: 6px; }
.section-head .line { width: 60px; height: 3px; margin-top: 16px; }

.btn { letter-spacing: .5px; box-shadow: 0 2px 8px rgba(31,78,121,.06); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(31,78,121,.12); }
.btn-gold { box-shadow: 0 2px 10px rgba(201,160,99,.35); }
.btn-gold:hover { box-shadow: 0 4px 16px rgba(201,160,99,.5); }

.nav > li > a { transition: color .2s, transform .2s; }
.nav > li > a:hover { transform: translateY(-1px); }
.nav .dropdown-menu { border-top: 2px solid var(--gold); margin-top: -2px; }

.product-card { padding: 30px 24px; }
.product-card h3 { font-size: 19px; }
.product-card p { font-size: 14px; line-height: 1.7; }

.advantage-item { padding: 32px 18px; border-radius: var(--radius); transition: all .25s; }
.advantage-item:hover { background: var(--bg); transform: translateY(-3px); }
.advantage-item .num { font-size: 38px; }

.step-item { padding: 30px 18px; transition: all .25s; }
.step-item:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); }

.team-card { padding: 32px 22px; transition: all .25s; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }

.form-box { padding: 36px; border-radius: 12px; }
.crumbs { padding: 16px 0; margin-bottom: 28px; }

/* ---------- 工具类 ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-brand { color: var(--brand); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.hide { display: none; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }

/* ---------- 打印友好 ---------- */
@media print {
  .header, .footer, .mobile-bar, .float-cta, .crumbs { display: none !important; }
}

/* 产品卡图片（替代 emoji） */
.product-card .pimg {
  width: 100%; height: 150px; object-fit: cover; border-radius: 8px;
  margin-bottom: 16px; background: var(--bg);
}
/* Hero 背景图（右下角，半透明叠层） */
.hero-bg {
  position: absolute; right: -30px; bottom: 0; width: 480px; height: auto;
  opacity: .35; border-radius: 16px; z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
@media (max-width: 1024px) { .hero-bg { width: 360px; opacity: .25; } }
@media (max-width: 768px) { .hero-bg { display: none; } }

/* 产品卡角标（借鉴房银贷 em 角标模式，金色替代橙色） */
.product-card .badge {
  position: absolute; top: 12px; right: 46px; z-index: 2;
  background: linear-gradient(135deg, #D4A85E, #A87D33); color: #fff;
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px;
  box-shadow: 0 2px 6px rgba(168,125,51,.35); letter-spacing: .5px;
}
/* 顾问卡结构化元信息（服务区域/擅长领域） */
.team-card .t-meta { list-style: none; margin: 0 0 14px; text-align: left; }
.team-card .t-meta li { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px dashed var(--border); color: var(--text); }
.team-card .t-meta li:last-child { border-bottom: 0; }
.team-card .t-meta li span { color: var(--text-sub); font-size: 12.5px; }
.team-card .t-meta li span::after { content: "："; }


/* 沈阳本地问答墙（借鉴房银贷本地化长尾问题墙） */
.qa-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
.qa-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 18px; font-size: 14.5px; color: var(--text);
  transition: all .25s; text-decoration: none;
}
.qa-item::before { content: "❓"; font-size: 15px; flex-shrink: 0; }
.qa-item:hover { border-color: var(--gold); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.qa-item:hover::before { content: "→"; color: var(--gold); font-weight: 700; }
@media (max-width: 768px) { .qa-wall { grid-template-columns: 1fr; } }



/* 页面横幅本地化徽章（产品页等） */
.page-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,160,99,.16); border: 1px solid rgba(201,160,99,.4);
  color: var(--gold-light); font-size: 12px; padding: 4px 14px; border-radius: 999px;
  margin-bottom: 12px; letter-spacing: 1px;
}
.page-tag::before { content: "📍"; }



/* 导航区域入口（移动端） */
.nav-region { border-top: 1px solid var(--border); margin-top: 6px; }
.nav-region a { display: block; padding: 14px 20px; color: var(--brand); font-weight: 600; font-size: 14px; }
/* 区域卡片内 4 产品链接 */
.region-item .r-links { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; font-size: 12px; }
.region-item .r-links a { color: var(--brand); padding: 3px 8px; background: var(--bg); border-radius: 4px; line-height: 1.5; }
.region-item .r-links a:hover { color: var(--gold-deep, #A87D33); background: rgba(201,160,99,.12); }


/* ========== UI 设计稿落地增强（v2.0 视觉升级） ========== */
/* Logo 图标块 */
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; box-shadow: 0 2px 10px rgba(31,78,121,.25);
}
/* 按钮箭头 */
.btn .arr { display: inline-block; margin-left: 5px; transition: transform .25s; font-weight: 700; }
.btn:hover .arr { transform: translateX(3px); }
/* 幽灵按钮（浅色场景） */
.btn-ghost { border: 2px solid rgba(255,255,255,.75); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
/* Hero 品牌徽章 */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,160,99,.16); border: 1px solid rgba(201,160,99,.4);
  color: var(--gold-light); font-size: 13px; padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge::before { content: "✓"; font-weight: 800; }
/* Hero 装饰圆 */
.hero::before { content: ""; position: absolute; left: -100px; bottom: -160px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.05); }
/* 产品卡金额高亮 */
.product-card .amount {
  font-size: 20px; color: var(--gold-deep, #A87D33); font-weight: 800; margin-bottom: 4px;
  font-variant-numeric: tabular-nums; line-height: 1.3;
}
.product-card .amount small { font-size: 12px; color: var(--text-sub); font-weight: 400; margin-left: 4px; }
/* 区块标签（section-head 上方小标签） */
.section-head .tag {
  display: inline-block; font-size: 12px; color: #A87D33;
  background: rgba(201,160,99,.12); padding: 4px 14px; border-radius: 999px;
  margin-bottom: 12px; letter-spacing: 1px;
}
/* 中部 CTA 横幅 */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 16px; padding: 44px 40px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden; box-shadow: 0 12px 32px rgba(15,42,69,.18);
}
.cta-banner::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(201,160,99,.16); }
.cta-banner h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.cta-banner p { font-size: 14px; color: #D5E4F4; }
.cta-banner .btns { display: flex; gap: 14px; position: relative; z-index: 1; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-banner { padding: 32px 24px; text-align: center; justify-content: center; } .cta-banner .btns { justify-content: center; } }
/* 优势数字加粗金色（对齐设计稿） */
.advantage-item .num { font-size: 40px; }
/* 服务区域卡片 */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.region-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; text-align: center; transition: all .25s; }
.region-item:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.region-item .r-main { display: block; color: inherit; text-decoration: none; }
.region-item .ico { font-size: 26px; margin-bottom: 8px; }
.region-item h3 { font-size: 16px; margin-bottom: 4px; color: var(--brand-dark); }
.region-item .r-links { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; justify-content: center; font-size: 12px; }
.region-item .r-links a { color: var(--brand); padding: 3px 8px; background: var(--bg); border-radius: 4px; line-height: 1.5; text-decoration: none; }
.region-item .r-links a:hover { color: var(--gold-deep, #A87D33); background: rgba(201,160,99,.12); }
@media (max-width: 1024px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .region-grid { grid-template-columns: 1fr; } }

/* ============================================================
   v3 移动端专项（2026-08-15 落地，对齐移动端设计稿 v3）
   原则：白底+深蓝主色+品牌金点缀 · 专业克制 · WCAG AA+
   ============================================================ */
/* ---- SVG 图标尺寸（替换 emoji 后通用，PC/移动共用） ---- */
.tool-item .t-ico svg { width: 20px; height: 20px; }
.product-card .icon svg { width: 24px; height: 24px; }

/* ---- 移动端覆盖（≤767px） ---- */
@media (max-width: 767px) {

  /* ===== 顶部条：移动端只保留城市切换器（右侧热线隐藏，logo 区更纯净） ===== */
  .topbar .container { min-height: 36px; }
  .topbar .container { justify-content: flex-start; }
  .topbar-slogan { display: none; }
  .topbar .container > div:last-child { display: none; }
  .city-btn { padding: 5px 10px; font-size: 12.5px; }
  .city-current-en { display: none; }

  /* ===== 头部导航：紧凑 ===== */
  .header-inner { min-height: 56px; }
  .logo-mark { width: 34px; height: 34px; font-size: 15px; }
  .logo-text { font-size: 17px; }
  .logo-text small { font-size: 10px; letter-spacing: .5px; }
  .nav-toggle { font-size: 24px; }

  /* ===== Hero：信任优先 + 修复中文字体溢出 ===== */
  .hero-inner { padding: 26px 0 72px; max-width: 100%; }
  .hero-badge { font-size: 11.5px; padding: 5px 12px; margin-bottom: 12px; gap: 6px; }
  .hero h1 { font-size: 22px; line-height: 1.4; margin-bottom: 10px; letter-spacing: -0.3px; word-wrap: break-word; overflow-wrap: break-word; }
  .hero p { font-size: 13.5px; line-height: 1.7; margin-bottom: 18px; }
  .hero .hero-cta { gap: 8px; }
  .hero .hero-cta .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 13px 8px; font-size: 14px; border-radius: 10px; }
  .hero .hero-cta .btn-gold { color: #2A1E0D; }
  /* CTA 电话按钮：号码太长，移动端只显示"📞 电话咨询"（号码在 href） */
  .hero .hero-cta .btn-ghost { font-size: 0; padding: 13px 8px; }
  .hero .hero-cta .btn-ghost::before { content: "📞 电话咨询"; font-size: 13.5px; letter-spacing: 0; }
  .hero .hero-meta {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .hero .hero-meta span { font-size: 10.5px; color: #9DB8D4; text-align: center; line-height: 1.2; }
  .hero .hero-meta b {
    display: block; font-size: 18px; font-weight: 800;
    color: var(--gold-light); margin-bottom: 2px;
    font-variant-numeric: tabular-nums;
  }
  /* Hero 装饰圆移到非文字区，避免遮挡 */
  .hero::after { right: -160px; top: -100px; opacity: .65; }



  /* ===== 即时工具条：3 列竖排 + 图标浅底化（v3 轻盈感） ===== */
  .tool-strip { margin-top: -42px; padding: 0 12px; }
  .tool-strip .container { grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 0; }
  .tool-item { flex-direction: column; text-align: center; gap: 5px; padding: 12px 5px; border-radius: 11px; }
  .tool-item .t-ico {
    width: 36px; height: 36px; border-radius: 10px;
    background: #fff; color: var(--brand);
    box-shadow: 0 0 0 1px rgba(31,78,121,.12), 0 2px 6px rgba(15,42,69,.06);
  }
  .tool-item .t-info { flex: none; }
  .tool-item h3 { font-size: 12.5px; margin-bottom: 1px; }
  .tool-item p { font-size: 10px; line-height: 1.3; }
  .tool-item .t-go { display: none; }


  /* ===== 区块头：左对齐（v3 专业克制核心） + 紧凑 ===== */
  .section { padding: 36px 0; }
  .section-head { text-align: left; margin-bottom: 22px; }
  .section-head h2 { font-size: 21px; }
  .section-head .sub { font-size: 13px; margin-top: 5px; }
  .section-head .tag { font-size: 11px; padding: 3px 11px; margin-bottom: 10px; }
  .section-head .line { margin: 12px auto 0 0; }


  /* ===== 产品卡：2×2 网格，信息密度优化 ===== */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { padding: 16px 14px; border-radius: 12px; }
  .product-card .num { font-size: 28px; top: 10px; right: 12px; }
  .product-card .pimg { height: 82px; margin-bottom: 10px; border-radius: 8px; }
  .product-card .icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 10px; border-radius: 10px; }
  .product-card h3 { font-size: 15.5px; margin-bottom: 6px; }
  .product-card p { font-size: 12px; line-height: 1.5; margin-bottom: 8px; min-height: 0; }
  .product-card .amount { font-size: 19px; margin-bottom: 4px; }
  .product-card .amount small { font-size: 11px; }
  .product-card .tags { gap: 4px; margin-bottom: 10px; }
  .product-card .tags span { font-size: 10.5px; padding: 2px 6px; }
  .product-card .more { font-size: 13px; }
  .product-card .badge { top: 10px; right: 34px; font-size: 10.5px; padding: 2px 8px; }

  /* ===== 测评区：2×2 ===== */
  .section.bg .product-grid { gap: 10px; }
  .section.bg .product-card { padding: 18px 14px; }
  .section.bg .product-card .btn { display: block; width: 100%; font-size: 13.5px; padding: 9px 10px; border-radius: 8px; }

  /* ===== 流程：垂直时间线 ===== */
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step-item {
    display: flex; align-items: flex-start; gap: 14px;
    text-align: left; padding: 16px 14px;
    border-radius: 12px; position: relative;
  }
  .step-item .step-no {
    margin: 0; flex-shrink: 0;
    width: 38px; height: 38px; line-height: 38px; font-size: 16px;
    box-shadow: 0 0 0 4px var(--bg);
  }
  .step-item h3 { font-size: 15.5px; margin-bottom: 3px; }
  .step-item p { font-size: 13px; margin-bottom: 0; }
  .step-item:not(:last-child)::after {
    content: ""; position: absolute;
    left: 32px; top: 46px; bottom: -8px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--border) 0 6px, transparent 6px 10px);
  }

  /* ===== 优势：2×2 ===== */
  .advantage-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .advantage-item { padding: 20px 12px; }
  .advantage-item .num { font-size: 30px; margin-bottom: 6px; }
  .advantage-item h3 { font-size: 15.5px; margin-bottom: 6px; }
  .advantage-item p { font-size: 12px; line-height: 1.55; }

  /* ===== 区域：2 列卡片，核心区金色强调 ===== */
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .region-item { padding: 14px 10px; border-radius: 12px; position: relative; }
  .region-item .ico { font-size: 20px; margin-bottom: 6px; }
  .region-item h3 { font-size: 15px; }
  .region-item .r-links { gap: 4px; margin-top: 8px; }
  .region-item .r-links a { font-size: 11px; padding: 2px 7px; }
  .region-item.core { border-color: var(--gold); background: #FFFDF6; }
  .region-item.core .r-main h3 { color: var(--gold-deep); }
  .region-item.core .r-main h3::after {
    content: "核心"; display: inline-block;
    font-size: 9.5px; font-weight: 700; color: var(--brand);
    background: var(--brand-soft, #E8F0F8);
    border-radius: 4px; padding: 1px 5px; margin-left: 5px;
    vertical-align: 1px;
  }

  /* ===== 中部 CTA 横幅 ===== */
  .cta-banner { padding: 26px 18px !important; border-radius: 14px; }
  .cta-banner h3 { font-size: 19px; }
  .cta-banner p { font-size: 12.5px; line-height: 1.6; }
  .cta-banner .btns .btn { font-size: 14px; padding: 11px 18px; border-radius: 10px; }

  /* ===== 底部悬浮导航：主按钮更醒目（v3 转化优先） ===== */
  .mobile-bar { border-top: 1px solid rgba(31,78,121,.08); }
  .mobile-bar a { padding: 10px 0; font-size: 11.5px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; line-height: 1.1; }
  .mobile-bar a svg { width: 18px; height: 18px; }
  .mobile-bar .m-apply { font-size: 16px; font-weight: 800; letter-spacing: 2px; padding: 0; }
  .mobile-bar .m-apply svg { display: none; }
  .mobile-bar .m-call { color: var(--brand); }
  .mobile-bar .m-calc { color: var(--gold-deep); background: rgba(201,160,99,.08); }
  body { padding-bottom: 56px; }


  /* ===== 问答墙：单列更易读 ===== */
  .qa-wall { grid-template-columns: 1fr; }
  .qa-item { font-size: 14px; padding: 12px 14px; }
}

/* ============================================================
   产品内链（首页产品卡下方具体产品链接）2026-08-15
   ============================================================ */
.product-card .prod-links {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 10px;
}
.product-card .prod-links a {
  font-size: 11px; color: var(--brand);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 7px;
  line-height: 1.6;
  transition: all .15s;
  text-decoration: none;
}
.product-card .prod-links a:hover {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
