/* ============================================
   UI15 政务规范风 · 色板变量
   ============================================ */
:root {
  --c-primary: #1A237E;
  --c-primary-light: #283593;
  --c-cta: #283593;
  --c-cta-hover: #1A237E;
  --c-bg: #FAFAFA;
  --c-bg-alt: #F0F2F8;
  --c-text: #212121;
  --c-text-light: #546E7A;
  --c-text-muted: #78909C;
  --c-border: #CFD8DC;
  --c-white: #FFFFFF;
  --c-accent: #C62828;
  --c-success: #2E7D32;
  --nav-h: 52px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(26,35,126,.08);
  --shadow-lg: 0 6px 24px rgba(26,35,126,.12);
  --max-w: 480px;
}

/* ============================================
   全局
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }

/* ============================================
   F1 · 导航栏
   ============================================ */
.navbar {
  display: block !important;
  padding: 0 !important;
  position: sticky; top: 0; z-index: 100;
  background: var(--c-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.nav-inner {
  display: flex; align-items: center; gap: 8px;
  height: var(--nav-h); padding: 0 14px;
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  flex: 1; color: var(--c-white); font-weight: 700; font-size: 15px;
}
.logo-icon {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.logo-text { white-space: nowrap; }
.nav-links {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
  flex-direction: column;
  background: var(--c-primary); border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.nav-links.open { display: flex; }
.nav-links a {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; color: rgba(255,255,255,.85);
  font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a:focus { background: rgba(255,255,255,.08); color: #fff; }
.nav-links a i { width: 16px; text-align: center; font-size: 13px; opacity: .7; }
.btn-cta-nav {
  flex-shrink: 0; padding: 7px 14px; border-radius: 6px;
  background: var(--c-accent); color: #fff; font-size: 13px; font-weight: 700;
  white-space: nowrap; transition: background .2s;
}
.btn-cta-nav:hover { background: #B71C1C; color: #fff; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 4px;
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  padding: 6px 4px; width: 32px;
}
.nav-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 481px) {
  .nav-inner { max-width: 640px; }
  .nav-logo { flex: 0 0 auto; }
  .nav-links {
    display: flex !important;
    position: static; flex: 1; flex-direction: row;
    justify-content: center; align-items: center; gap: 4px;
    background: none; border: none; box-shadow: none; z-index: auto;
  }
  .nav-links a {
    padding: 6px 12px; border-bottom: none; border-radius: 6px;
    font-size: 13px;
  }
  .nav-links a i { display: none; }
  .nav-toggle { display: none; }
}

/* ============================================
   F2 · 合规条
   ============================================ */
.compliance-bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,.88);
  font-size: 11px; padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
}
.compliance-bar > span { flex: 1; line-height: 1.5; }
.compliance-bar i { margin-right: 5px; color: #FFB300; }
.compliance-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.65); font-size: 18px;
  line-height: 1; padding: 2px 4px; flex-shrink: 0;
  transition: color .15s;
}
.compliance-close:hover { color: #fff; }

/* ============================================
   M1 · 英雄区
   ============================================ */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-content {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,35,126,.82) 0%, rgba(26,35,126,.6) 100%);
}
.hero-body {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 5;
  padding: 80px 18px 40px; max-width: var(--max-w); margin: 0 auto; width: 100%;
}

/* M1 · 卖点标签 */
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.hero-tag {
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.92);
  font-size: 12px; font-weight: 600; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
}
.hero-tag i { margin-right: 4px; font-size: 10px; }

/* M1 · 标题 */
.hero-title {
  font-size: clamp(28px, 6vw, 48px); font-weight: 900;
  color: #fff; line-height: 1.2; margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: 14px; color: rgba(255,255,255,.8);
  margin: 0 0 20px; line-height: 1.6;
}

/* M1 · 金额区间选择 */
.hero-amount-box {
  background: rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 14px; margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.1);
}
.amount-label {
  font-size: 13px; color: rgba(255,255,255,.85); margin: 0 0 10px;
  font-weight: 600;
}
.amount-label i { margin-right: 6px; color: #FFD54F; }
.amount-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.amount-opt {
  display: block;
  padding: 10px 8px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.75);
  font-size: 13px; font-weight: 600; text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  cursor: pointer; transition: all .2s;
}
.amount-opt:hover, .amount-opt.active {
  background: rgba(255,255,255,.18); color: #fff;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 12px rgba(255,255,255,.1);
}

/* M1 · 联系卡片 */
.hero-contact-card {
  background: rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 16px; margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.hcc-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.hcc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}
.hcc-info { display: flex; flex-direction: column; gap: 3px; }
.hcc-info strong { color: #fff; font-size: 14px; }
.hcc-badge { font-size: 11px; color: rgba(255,255,255,.65); }
.hcc-badge i { color: #4CAF50; margin-right: 3px; }
.hcc-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; margin-bottom: 6px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); color: #fff; font-size: 14px;
  transition: background .2s;
}
.hcc-row:hover { background: rgba(255,255,255,.12); color: #fff; }
.hcc-row > i { font-size: 16px; width: 20px; text-align: center; }
.hcc-row > span:nth-child(2) { flex: 1; font-weight: 600; }
.hcc-action {
  padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 700;
  background: var(--c-accent); color: #fff; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.hcc-action:hover { background: #B71C1C; }
.hcc-phone { text-decoration: none; }
.hcc-wx > i { color: #4CAF50; }
.hcc-time {
  text-align: center; font-size: 12px; color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.hcc-time i { margin-right: 4px; }

/* M1 · 数据统计行 */
.hero-stats {
  display: flex; gap: 4px; text-align: center;
}
.hero-stat {
  flex: 1; padding: 10px 6px; border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.hs-num {
  display: block; font-size: 20px; font-weight: 900; color: #FFD54F;
  line-height: 1.2;
}
.hs-label { font-size: 11px; color: rgba(255,255,255,.6); }

/* ============================================
   通用 Section
   ============================================ */
section { padding: 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 36px 16px; }
.section-title {
  font-size: clamp(20px, 5vw, 28px); font-weight: 800;
  color: var(--c-primary); text-align: center;
  margin-bottom: 6px; line-height: 1.3;
}
.section-subtitle {
  font-size: 13px; color: var(--c-text-muted); text-align: center;
  margin-bottom: 24px;
}
.section-divider {
  width: 40px; height: 3px; background: var(--c-cta);
  margin: 0 auto 20px; border-radius: 2px;
}

/* ============================================
   F3-A · 底部悬浮条
   ============================================ */
.float-bottom {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; max-width: var(--max-w); margin: 0 auto;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.float-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; font-size: 14px; font-weight: 700; color: #fff;
  transition: filter .2s;
}
.float-btn:hover { filter: brightness(1.1); color: #fff; }
.float-call { background: var(--c-primary); }
.float-wechat { background: var(--c-success); }
.float-icon { font-size: 18px; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(46,125,50,.4); }
  70% { box-shadow: 0 0 0 8px rgba(46,125,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}
.pulse-ico { animation: pulse-ring 2s infinite; border-radius: 50%; }

/* ============================================
   F4 · 一键到底按钮
   ============================================ */
.btn-to-bottom {
  position: fixed; right: 14px; bottom: 80px; z-index: 101;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-primary); color: #fff; border: 2px solid rgba(255,255,255,.3);
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(26,35,126,.25);
  transition: transform .2s, background .2s;
  opacity: 0; pointer-events: none;
}
.btn-to-bottom.visible { opacity: 1; pointer-events: auto; }
.btn-to-bottom:hover { transform: scale(1.1); background: var(--c-cta); }

/* ============================================
   M3 · 信任背书
   ============================================ */
.section-trust { position: relative; overflow: hidden; }
.trust-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.trust-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,35,126,.88) 0%, rgba(26,35,126,.92) 100%);
}
.trust-inner { position: relative; z-index: 2; }
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px;
}
.trust-card {
  background: rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 18px 10px; text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s;
}
.trust-card:hover { transform: translateY(-2px); }
.tc-icon {
  display: block; font-size: 22px; color: #FFD54F; margin-bottom: 8px;
}
.tc-num {
  display: block; font-size: 26px; font-weight: 900; color: #fff; line-height: 1.2;
}
.tc-label {
  display: block; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px;
}
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.tb {
  padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
}
.tb i { margin-right: 4px; color: #FFD54F; font-size: 11px; }

/* ============================================
   M7 · 安全保障
   ============================================ */
.section-security { background: var(--c-white); }
.sec-img-box {
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.sec-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.sec-list { display: flex; flex-direction: column; gap: 12px; }
.sec-item {
  display: flex; gap: 14px; padding: 14px;
  background: var(--c-bg-alt); border-radius: var(--radius);
  border-left: 3px solid var(--c-primary);
  transition: box-shadow .2s;
}
.sec-item:hover { box-shadow: var(--shadow); }
.sec-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.sec-body strong {
  display: block; font-size: 14px; color: var(--c-primary); margin-bottom: 4px;
}
.sec-body p {
  margin: 0; font-size: 12px; color: var(--c-text-light); line-height: 1.5;
}

/* ============================================
   M9 · 平台简介
   ============================================ */
.section-about { background: var(--c-bg-alt); }
.about-card {
  background: var(--c-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.about-img-box { overflow: hidden; }
.about-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.about-text {
  padding: 18px 16px 10px;
}
.about-text p {
  font-size: 13px; color: var(--c-text-light); line-height: 1.7;
  margin: 0 0 10px; text-indent: 2em;
}
.about-highlights {
  display: flex; gap: 1px; background: var(--c-border);
  border-top: 1px solid var(--c-border);
}
.ah-item {
  flex: 1; display: flex; align-items: center; gap: 8px;
  padding: 14px 10px; background: var(--c-white);
}
.ah-item i {
  font-size: 18px; color: var(--c-primary); flex-shrink: 0;
}
.ah-item strong { display: block; font-size: 12px; color: var(--c-text); }
.ah-item span { font-size: 11px; color: var(--c-text-muted); }

/* ============================================
   M5 · 服务项目 C27 图标+描述列表
   ============================================ */
.section-services { background: var(--c-white); }
.svc-list { display: flex; flex-direction: column; gap: 12px; }
.svc-row {
  display: flex; gap: 14px; padding: 14px;
  background: var(--c-bg); border-radius: var(--radius);
  border: 1px solid var(--c-border);
  transition: box-shadow .2s, transform .15s;
}
.svc-row:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.svc-icon-box { width: 80px; flex-shrink: 0; }
.svc-thumb {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 6px; display: block;
}
.svc-detail { flex: 1; min-width: 0; }
.svc-detail h3 {
  font-size: 15px; font-weight: 700; color: var(--c-primary);
  margin: 0 0 6px;
}
.svc-detail p {
  font-size: 12px; color: var(--c-text-light); margin: 0 0 8px;
  line-height: 1.6;
}
.svc-tag {
  display: inline-block; padding: 2px 10px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
  background: var(--c-bg-alt); color: var(--c-primary);
  border: 1px solid var(--c-border);
}
.svc-tag.hot {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
}

/* ============================================
   M6 · 流程
   ============================================ */
.section-process { background: var(--c-bg-alt); }
.proc-steps { display: flex; flex-direction: column; gap: 0; }
.proc-step {
  display: flex; gap: 16px; position: relative;
  padding-bottom: 8px;
}
.proc-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 2;
}
.proc-circle.done { background: var(--c-success); }
.proc-num { font-size: 18px; font-weight: 800; }
.proc-line {
  position: absolute; left: 21px; top: 44px;
  width: 2px; height: calc(100% - 36px);
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-border) 100%);
  z-index: 1;
}
.proc-step:last-child .proc-line { display: none; }
.proc-content {
  flex: 1; padding: 6px 0 20px;
}
.proc-content h4 {
  font-size: 15px; font-weight: 700; color: var(--c-primary);
  margin: 0 0 6px;
}
.proc-content p {
  font-size: 13px; color: var(--c-text-light); margin: 0 0 6px;
  line-height: 1.6;
}
.proc-time {
  font-size: 11px; color: var(--c-text-muted);
}
.proc-time i { margin-right: 4px; }

/* ============================================
   M2 · 跑马灯
   ============================================ */
.section-ticker {
  background: var(--c-primary); color: #fff; overflow: hidden;
  padding: 14px 0;
}
.ticker-header {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px 10px; font-size: 13px; font-weight: 700;
  max-width: var(--max-w); margin: 0 auto;
}
.ticker-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #F44336;
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.ticker-live {
  padding: 2px 8px; border-radius: 4px;
  background: #F44336; font-size: 10px; font-weight: 800;
  letter-spacing: 1px;
}
.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker-track {
  display: inline-flex; gap: 0;
  animation: tickerScroll 40s linear infinite;
}
.ticker-item {
  display: inline-block; padding: 0 40px;
  font-size: 13px; color: rgba(255,255,255,.85);
  white-space: nowrap;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   M4 · 口碑
   ============================================ */
.section-reviews { background: var(--c-white); }
.rv-grid { display: flex; flex-direction: column; gap: 12px; }
.rv-card {
  background: var(--c-bg); border-radius: var(--radius);
  padding: 16px; border: 1px solid var(--c-border);
  transition: box-shadow .2s;
}
.rv-card:hover { box-shadow: var(--shadow); }
.rv-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.rv-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.rv-head > div { flex: 1; }
.rv-head strong { display: block; font-size: 14px; color: var(--c-text); }
.rv-city { font-size: 11px; color: var(--c-text-muted); }
.rv-amount {
  padding: 3px 10px; border-radius: 10px;
  background: rgba(26,35,126,.08); color: var(--c-primary);
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.rv-stars {
  color: #FFB300; font-size: 12px; letter-spacing: 2px; margin-bottom: 6px;
}
.rv-text {
  font-size: 13px; color: var(--c-text-light); line-height: 1.7; margin: 0;
}

/* ============================================
   M12 · 数据看板
   ============================================ */
.section-dashboard { background: var(--c-bg-alt); }
.dash-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 14px;
}
.dash-card {
  background: var(--c-white); border-radius: var(--radius);
  padding: 18px 12px; text-align: center; position: relative;
  border: 1px solid var(--c-border); overflow: hidden;
}
.dc-num {
  display: block; font-size: 26px; font-weight: 900; color: var(--c-primary);
  line-height: 1.2;
}
.dc-label {
  display: block; font-size: 12px; color: var(--c-text-muted); margin-top: 4px;
}
.dc-icon {
  position: absolute; top: 10px; right: 10px;
  font-size: 20px; color: rgba(26,35,126,.08);
}
.dash-note {
  text-align: center; font-size: 11px; color: var(--c-text-muted); margin: 0;
}
.dash-note i { margin-right: 4px; }

/* ============================================
   M8 · FAQ
   ============================================ */
.section-faq { background: var(--c-white); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--c-bg); border-radius: var(--radius);
  border: 1px solid var(--c-border); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; font-size: 14px; font-weight: 600;
  color: var(--c-text); cursor: pointer;
  transition: background .15s;
}
.faq-q:hover { background: rgba(26,35,126,.03); }
.faq-q > i { color: var(--c-primary); font-size: 14px; flex-shrink: 0; }
.faq-arrow {
  margin-left: auto; font-size: 12px; color: var(--c-text-muted);
  transition: transform .25s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
  font-size: 13px; color: var(--c-text-light); line-height: 1.7;
  padding: 0 16px;
}
.faq-item.open .faq-a {
  max-height: 300px; padding: 0 16px 16px;
}

/* ============================================
   M13 · 条件说明
   ============================================ */
.section-conditions { background: var(--c-bg-alt); }
.cond-card {
  background: var(--c-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.cond-img-box { overflow: hidden; }
.cond-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.cond-list {
  list-style: none; padding: 18px 16px 8px; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cond-ok {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--c-text); line-height: 1.5;
}
.cond-ok i { color: var(--c-success); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.cond-tip {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 8px 16px 16px; padding: 12px;
  background: #FFF8E1; border-radius: var(--radius);
  font-size: 12px; color: #E65100; line-height: 1.6;
  border: 1px solid #FFE082;
}
.cond-tip i { color: #FFB300; font-size: 14px; flex-shrink: 0; margin-top: 2px; }

/* ============================================
   M10 · 联系方式
   ============================================ */
.section-contact { background: var(--c-white); }
.ct-card {
  background: var(--c-bg); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
}
.ct-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 16px; background: var(--c-primary); color: #fff;
}
.ct-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ct-head strong { display: block; font-size: 15px; }
.ct-badge { font-size: 11px; opacity: .75; }
.ct-badge i { color: #4CAF50; margin-right: 3px; }
.ct-rows { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.ct-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--radius);
  background: var(--c-white); border: 1px solid var(--c-border);
  color: inherit; transition: box-shadow .2s;
}
.ct-row:hover { box-shadow: var(--shadow); color: inherit; }
.ct-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.ct-icon.wx { background: #07C160; }
.ct-info { flex: 1; }
.ct-label { display: block; font-size: 11px; color: var(--c-text-muted); }
.ct-info strong { font-size: 15px; color: var(--c-text); }
.ct-action {
  padding: 6px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.ct-action.call { background: var(--c-primary); color: #fff; }
.ct-action.call:hover { background: var(--c-primary-light); }
.ct-action.wx { background: #07C160; color: #fff; }
.ct-action.wx:hover { background: #06AD56; }
.ct-meta {
  padding: 0 16px 12px; display: flex; flex-direction: column; gap: 6px;
}
.ct-meta span { font-size: 12px; color: var(--c-text-muted); }
.ct-meta i { margin-right: 6px; color: var(--c-primary); }
.ct-cta {
  display: block; text-align: center; padding: 16px;
  background: var(--c-accent); color: #fff;
  font-size: 16px; font-weight: 800;
  transition: background .2s;
}
.ct-cta:hover { background: #B71C1C; color: #fff; }
.ct-cta i { margin-right: 8px; }

/* ============================================
   M11 · 页脚
   ============================================ */
.site-footer {
  background: var(--c-primary); color: rgba(255,255,255,.7);
  font-size: 12px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 28px 16px 20px; text-align: center;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 14px;
}
.footer-logo {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
}
.footer-name { font-size: 14px; font-weight: 700; color: #fff; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
  margin-bottom: 16px;
}
.footer-links a {
  color: rgba(255,255,255,.6); font-size: 12px;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
  padding: 12px; margin-bottom: 12px;
  background: rgba(0,0,0,.15); border-radius: var(--radius);
}
.footer-disclaimer p {
  margin: 0; font-size: 11px; line-height: 1.7;
  color: rgba(255,255,255,.5);
}
.footer-copy p {
  margin: 0 0 4px; font-size: 11px; color: rgba(255,255,255,.4);
}
.footer-tech {
  margin: 10px 0 0; font-size: 11px; color: rgba(255,255,255,.35);
}
