/* ============ 设计变量：浅红清新风（参考 cxtzinfo.com 线上版） ============ */
:root {
  --primary:        #c41e3a;          /* 主红 */
  --primary-light:  #dc2626;          /* 偏亮红 */
  --primary-lighter:#ef4444;          /* 最亮红（hover） */
  --primary-bg:     #fef2f2;          /* 浅红底 */
  --primary-bg-2:   #fee2e2;          /* 中浅红 */
  --primary-bg-3:   #fecaca;          /* 浅红最深 */
  --gold:           #d4a017;          /* 金 */
  --gold-soft:      #e5b93f;          /* 浅金 */
  --text-dark:      #0f172a;          /* 标题深色 */
  --text-body:      #334155;          /* 正文 */
  --text-muted:     #64748b;          /* 弱化 */
  --border:         #e2e8f0;          /* 浅边框 */
  --bg-page:        #f8fafc;          /* 页面底 */
  --bg-card:        #ffffff;          /* 卡片白 */
  --deep-red:       #7f1d1d;          /* 深枣红（页脚 / CTA 强色块） */
  --radius:         8px;
  --radius-lg:      12px;
  --maxw:           1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Font Awesome 图标基础（继承父级颜色） */
.fa-solid, .fa-regular, .fa-brands { flex: none; line-height: 1; }

/* ============ 顶部导航 ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 54px; gap: 20px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-logo {
  width: 38px; height: 38px; border-radius: var(--radius); flex: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.navbar-brand-text { line-height: 1.25; }
.navbar-brand-text strong { font-size: 17px; color: var(--text-dark); font-weight: 700; }
.navbar-brand-text > div { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: .5px; }
.navbar-nav { display: flex; align-items: center; gap: 2px; }
.navbar-nav a {
  display: block; padding: 8px 13px; border-radius: var(--radius);
  font-size: 14px; color: var(--text-body); white-space: nowrap; transition: .2s;
}
.navbar-nav a:hover { color: var(--primary); background: var(--primary-bg); }
.navbar-nav a.active { color: #fff; background: var(--primary); font-weight: 600; }
.navbar-consult {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px; flex: none;
  background: var(--primary); color: #fff !important; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(196,30,58,.22); transition: .2s;
}
.navbar-consult:hover { background: var(--primary-light); transform: translateY(-1px); }

/* ============ Hero（浅红渐变 + 深色字） ============ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-2) 50%, var(--primary-bg-3) 100%);
  color: var(--text-dark);
}
.hero::before { /* 右上金色光晕 */
  content: ""; position: absolute; top: -120px; right: -80px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(196,30,58,.18), transparent 65%); border-radius: 50%;
}
.hero::after { /* 左下白晕 */
  content: ""; position: absolute; bottom: -140px; left: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 60%); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 40px 24px 48px; max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.hero h1 { font-size: 34px; line-height: 1.18; margin: 12px 0 14px; font-weight: 800; letter-spacing: 1px; color: var(--text-dark); }
.hero h1 .accent { display: inline; color: var(--primary); }
.hero-sub { font-size: 15px; color: var(--text-muted); max-width: 680px; margin: 0 auto 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s;
}
.btn em { font-size: 16px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(196,30,58,.28); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(196,30,58,.36); }
.btn-outline { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary-bg); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #3c2b06; box-shadow: 0 6px 18px rgba(212,160,23,.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,160,23,.4); }

/* ============ 通用版块（紧凑） ============ */
.section { padding: 52px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 2px;
}
.section-head .kicker::before, .section-head .kicker::after { content: ""; width: 22px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: 27px; color: var(--text-dark); margin: 10px 0 8px; font-weight: 800; }
.section-head p { color: var(--text-muted); font-size: 15px; }
.accent-bar { width: 52px; height: 3px; margin: 16px auto 0; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 3px; }

/* ============ 产品矩阵 ============ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; transition: .25s; overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(196,30,58,.1); border-color: var(--primary); }
.product-card.featured {
  border: 1.5px solid var(--primary);
  background: linear-gradient(180deg, #fff, var(--primary-bg));
}
.badge-recommend {
  position: absolute; top: 0; right: 0; padding: 5px 14px;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; border-bottom-left-radius: 10px;
}
.product-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.product-icon {
  width: 50px; height: 50px; border-radius: var(--radius); flex: none;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.product-icon em { font-size: 25px; }
.product-head h3 { font-size: 17px; color: var(--text-dark); line-height: 1.4; font-weight: 700; }
.product-card p { font-size: 14px; color: var(--text-body); margin-bottom: 20px; flex: 1; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary);
}
.product-link em { font-size: 13px; transition: .2s; }
.product-card:hover .product-link em { transform: translateX(4px); }

/* ============ 单机版下载区（浅红底 + 深色字） ============ */
.download-section {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-2) 100%);
  position: relative; overflow: hidden;
}
.download-section::before {
  content: ""; position: absolute; top: -100px; right: -60px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(196,30,58,.12), transparent 65%); border-radius: 50%;
}
.download-inner { position: relative; z-index: 2; }
.download-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.download-copy { color: var(--text-dark); }
.download-copy .kicker { color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 2px; }
.download-copy h2 { font-size: 30px; margin: 12px 0 14px; font-weight: 800; color: var(--text-dark); }
.download-copy p { color: var(--text-body); font-size: 15px; max-width: 520px; }
.download-copy .points { list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
.download-copy .points li { display: flex; align-items: center; gap: 10px; color: var(--text-body); font-size: 14.5px; }
.download-copy .points em { font-size: 16px; color: var(--primary); }
.download-panel {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 8px 24px rgba(196,30,58,.08); border: 1px solid var(--border);
}
.download-panel h3 { font-size: 19px; color: var(--text-dark); margin-bottom: 6px; font-weight: 800; }
.download-panel .dp-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; }
.download-panel .dp-btns { display: flex; flex-direction: column; gap: 12px; }
.dp-btn {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-radius: var(--radius); border: 1px solid var(--border); background: #fff; transition: .2s;
}
.dp-btn:hover { border-color: var(--primary); background: var(--primary-bg); }
.dp-btn .ic { width: 40px; height: 40px; border-radius: var(--radius); flex: none; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; }
.dp-btn .ic.alt { background: var(--gold); color: #3c2b06; }
.dp-btn .ic em { font-size: 20px; }
.dp-btn strong { display: block; font-size: 15px; color: var(--text-dark); }
.dp-btn strong + div { font-size: 12.5px; color: var(--text-muted); }
.dp-btn .arr { margin-left: auto; color: var(--text-muted); }
.dp-btn .arr em { font-size: 15px; }
.dp-link { display: block; text-align: center; margin-top: 16px; font-size: 13px; color: var(--primary); }
.dp-link:hover { text-decoration: underline; }

/* ============ 新闻资讯 ============ */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.news-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; min-height: 400px; }
.news-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.news-head h3 { display: flex; align-items: center; gap: 9px; font-size: 17px; color: var(--text-dark); font-weight: 700; }
.news-head h3 em { font-size: 18px; color: var(--primary); }
.news-head .more { font-size: 13px; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.news-head .more em { font-size: 13px; }
.news-list { list-style: none; padding: 6px 22px; }
.news-list li { padding: 13px 0; border-bottom: 1px dashed var(--border); }
.news-list li:last-child { border-bottom: none; }
.news-list a { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-body); transition: .2s; line-height: 1.5; }
.news-list a:hover { color: var(--primary); }
.news-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex: none; }
.news-list .news-tx { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-list .date { margin-left: auto; font-size: 12px; color: var(--text-muted); flex: none; }

/* ============ 服务与支持（4 色分色图标） ============ */
.support-section { background: #fff; }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.support-card {
  background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 22px; text-align: center; transition: .22s; display: block;
}
.support-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(15,23,42,.08); border-color: var(--primary); }
.support-icon {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.support-icon.phone    { background: rgba(196,30,58,.1);  color: var(--primary); }
.support-icon.time     { background: rgba(16,185,129,.1); color: #10b981; }
.support-icon.mail     { background: rgba(245,158,11,.1); color: #f59e0b; }
.support-icon.chat     { background: rgba(212,160,23,.1); color: var(--gold); }
.support-icon em { font-size: 25px; }
.support-card h4 { font-size: 15px; color: var(--text-dark); font-weight: 700; margin-bottom: 8px; }
.support-value { font-size: 20px; color: var(--primary); font-weight: 800; }
.support-value.phone-num { font-size: 21px; letter-spacing: 1px; }
.support-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }

/* ============ 新媒体矩阵（3 色分色） ============ */
.social-divider { text-align: center; margin: 44px 0 26px; }
.social-divider > div { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }
.social-divider em { font-size: 15px; color: var(--primary); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card { text-align: center; padding: 26px 18px; background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.social-icon {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-icon.wechat      { background: #e2f4e6; color: #1aad19; }
.social-icon.video       { background: #fff1d6; color: #e0851a; }
.social-icon.xiaohongshu { background: #ffe3e6; color: #f04a5c; }
.social-icon em { font-size: 22px; }
.social-card h5 { font-size: 16px; color: var(--text-dark); font-weight: 700; }
.social-desc { font-size: 12.5px; color: var(--text-muted); margin: 6px 0 16px; }
.social-card img { width: 130px; height: 130px; margin: 0 auto; border-radius: 10px; border: 1px solid var(--border); }

/* ============ 咨询 CTA（深红强色块，强转化） ============ */
.cta-sec {
  background: linear-gradient(135deg, var(--deep-red), var(--primary));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ""; position: absolute; top: -80px; right: -40px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,160,23,.25), transparent 65%); border-radius: 50%;
}
.cta-sec .container { position: relative; z-index: 2; }
.cta-sec h2 { font-size: 28px; font-weight: 800; }
.cta-sec p { color: rgba(255,255,255,.85); max-width: 640px; margin: 14px auto 28px; font-size: 15px; }
.cta-sec .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-sec .btn-white { background: #fff; color: var(--primary); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.cta-sec .btn-white:hover { transform: translateY(-2px); }

/* ============ 页脚（深红品牌底） ============ */
.footer { background: var(--deep-red); color: rgba(255,255,255,.78); }
.footer-top { padding: 50px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; font-weight: 700; }
.footer .f-about { font-size: 13.5px; line-height: 1.9; }
.footer-list { list-style: none; display: grid; gap: 11px; font-size: 13.5px; }
.footer-list li, .footer-list a { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); transition: .2s; }
.footer-list a:hover { color: var(--gold-soft); }
.footer-list em { font-size: 14px; color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0;
  text-align: center; font-size: 12.5px; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============ 右侧浮动栏（联系与服务 + 新媒体 + 回到顶部） ============ */
.floater {
  position: fixed; right: 14px; top: 50%; transform: translateY(-50%);
  z-index: 999; width: 56px; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15,23,42,.10);
  transition: width .25s ease;
  overflow: visible;
}
.floater:hover { width: 230px; }
.floater-head {
  display: flex; align-items: center; justify-content: center;
  height: 42px; border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--primary); font-weight: 700; letter-spacing: 1px;
  background: linear-gradient(180deg, var(--primary-bg), #fff);
  border-radius: 14px 14px 0 0;
}
.floater-head em { font-size: 16px; margin-right: 6px; }
.floater-head-text { display: none; }
.floater:hover .floater-head-text { display: inline; }
.floater-body { padding: 6px 0; }
.floater-item {
  position: relative; display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; cursor: pointer; color: var(--text-body);
  text-decoration: none; transition: background .2s;
  white-space: nowrap;
}
.floater-item + .floater-item { border-top: 1px dashed var(--border); }
.floater-item:hover { background: var(--primary-bg); color: var(--text-dark); }
.floater-item.fl-top { cursor: pointer; }
.floater-ic {
  width: 32px; height: 32px; border-radius: 8px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-bg); color: var(--primary);
}
.floater-ic em { font-size: 18px; }
.floater-ic.phone { background: rgba(196,30,58,.10); color: #c41e3a; }
.floater-ic.time  { background: rgba(34,197,94,.10);  color: #16a34a; }
.floater-ic.mail  { background: rgba(245,158,11,.10); color: #f59e0b; }
.floater-ic.chat  { background: rgba(212,160,23,.14); color: #b88a0e; }
.floater-ic.wechat    { background: rgba(7,193,96,.12);   color: #07c160; }
.floater-ic.video     { background: rgba(250,157,59,.14); color: #fa9d3b; }
.floater-ic.xiaohongshu { background: rgba(254,108,92,.12); color: #fe6c5c; }
.floater-ic.top       { background: var(--primary-bg); color: var(--primary); }
.floater-label { display: none; line-height: 1.25; }
.floater-label strong { display: block; font-size: 13px; color: var(--text-dark); font-weight: 700; }
.floater-label > div { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.floater:hover .floater-label { display: block; }
.floater-divider { height: 1px; background: var(--border); margin: 2px 8px; }
/* 二维码弹窗：浮动栏在右，弹窗向左 */
.floater-popup {
  position: absolute; right: calc(100% + 8px); top: 50%; transform: translateY(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 6px 22px rgba(15,23,42,.12);
  padding: 12px; text-align: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  width: 140px;
}
.floater-popup::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: #fff; border-right: 1px solid var(--border); border-top: 1px solid var(--border);
}
.floater-popup img { width: 120px; height: 120px; display: block; border-radius: 6px; }
.floater-popup div { display: block; font-size: 12px; color: var(--text-body); margin-top: 8px; }
.floater-qr:hover .floater-popup { opacity: 1; pointer-events: auto; }

/* ============ 响应式 ============ */
@media (max-width: 992px) {
  .hero h1 { font-size: 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .download-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .navbar-nav { display: none; }
  .navbar-brand-text > div { display: none; }
  .navbar-inner { height: 56px; }
  .hero-inner { padding: 32px 20px 40px; }
  .hero h1 { font-size: 24px; }
  .floater { display: none; }
  .hero-sub { font-size: 15px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .section { padding: 40px 0; }
  .section-head h2, .download-copy h2 { font-size: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .support-value.phone-num { font-size: 17px; }
  .social-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ 页面标题区（新闻列表页 / 新闻详情页新增） ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-2) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: -80px; right: -60px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(196,30,58,.15), transparent 65%); border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 2; padding: 36px 24px; text-align: center; }
.page-hero h1 { font-size: 30px; color: var(--text-dark); font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: var(--text-muted); font-size: 14px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--primary); }

/* ============ 列表页主体布局 ============ */
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

/* 新闻列表 */
.news-list-panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px;
}
.news-item {
  padding: 18px 0; border-bottom: 1px dashed var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: .2s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover .news-title { color: var(--primary); }
.news-title { font-size: 15.5px; color: var(--text-dark); line-height: 1.6; font-weight: 500; flex: 1; }
.news-desc { font-size: 13px; color: var(--text-muted); margin-top: 6px; line-height: 1.6; }
.news-cate { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 12px; line-height: 1.5; color: var(--primary); background: var(--primary-bg); border: 1px solid var(--border); border-radius: 999px; padding: 2px 10px; }
.news-cate em { font-size: 11px; }
.news-date { font-size: 12.5px; color: var(--text-muted); flex-shrink: 0; }

/* 分页（SDCMS 引擎输出 <li>/<li class="active">，首尾“总数/x-y”为无链接项） */
.pagination {
  list-style: none; display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px; margin-top: 28px; padding: 0;
}
.pagination li { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; transition: .2s; }
.pagination li:hover { border-color: var(--primary); }
.pagination li a { display: block; padding: 7px 13px; font-size: 13.5px; color: var(--text-body); text-decoration: none; transition: .2s; }
.pagination li:hover a { color: var(--primary); background: var(--primary-bg); }
.pagination li.active { border-color: var(--primary); background: var(--primary); }
.pagination li.active a { color: #fff; background: var(--primary); }
.pagination li:has(a:not([href])) { display: none; }

/* 侧边栏 */
.side-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 20px; overflow: hidden;
}
.side-card-title {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 700; color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
}
.side-card-title em { color: var(--primary); font-size: 17px; }
.side-list { list-style: none; padding: 8px 20px; }
.side-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.side-list li:last-child { border-bottom: none; }
.side-list a { transition: .2s; display: flex; align-items: center; gap: 8px; }
.side-list a:hover { color: var(--primary); }
.side-list .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex: none; }

/* ============ 详情页主体布局 ============ */
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

/* 文章主体 */
.article-panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px;
}
.article-header { text-align: center; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.article-title { font-size: 26px; color: var(--text-dark); font-weight: 800; line-height: 1.4; margin-bottom: 14px; }
.article-meta {
  font-size: 13px; color: var(--text-muted);
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

.article-content { font-size: 15.5px; line-height: 1.85; color: var(--text-body); }
.article-content p { margin-bottom: 18px; text-indent: 2em; }
.article-content h3 {
  font-size: 18px; color: var(--text-dark); margin: 26px 0 12px;
  font-weight: 700; padding-left: 10px; border-left: 3px solid var(--primary);
}
.article-content h4 { font-size: 16px; color: var(--text-dark); margin: 20px 0 10px; font-weight: 600; }
.article-content ul, .article-content ol { margin: 12px 0 18px 2em; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--text-dark); }
.article-tip {
  background: var(--primary-bg); border-left: 3px solid var(--primary);
  padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0; font-size: 14.5px;
}

/* 上下篇 */
.article-turn {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border);
  display: grid; gap: 10px;
}
.article-turn div { font-size: 14px; color: var(--text-muted); }
.article-turn a { color: var(--text-body); transition: .2s; }
.article-turn a:hover { color: var(--primary); }

/* ============ 新闻列表/详情页响应式补全（由参考页媒体查询去重合并而来） ============ */
@media (max-width: 992px) {
  .news-layout { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero h1 { font-size: 24px; }
  .news-list-panel { padding: 18px; }
  .news-title { font-size: 15px; }
  .article-panel { padding: 20px; }
  .article-title { font-size: 20px; }
}

/* ========== 移动端增强（汉堡导航 / 回顶，本站新增） ========== */
.navbar-toggle {
  display: none;
  flex: 0 0 auto;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
}
.m-backtop {
  display: none;
  position: fixed; right: 14px; bottom: 24px; z-index: 90;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--primary); color: #fff;
  box-shadow: 0 6px 16px rgba(196,30,58,.25);
  cursor: pointer; font-size: 16px;
  border: none;
}
@media (max-width: 992px) {
  .navbar-toggle { display: inline-flex; }
  .navbar-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
    padding: 8px 16px 14px; gap: 2px;
    z-index: 99;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: var(--radius);
  }
}
@media (max-width: 640px) {
  .m-backtop { display: flex; }
  .navbar-brand-text > div { display: none; }
  .navbar-consult { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }
  .navbar-consult em { margin: 0; font-size: 17px; }
  .navbar-consult .nav-consult-text { display: none; }
  .floater { display: none !important; }
}
@media (max-width: 640px) {
  /* 服务与支持：手机端 2 列挤压会导致电话/邮箱长内容错位溢出，改单列纵向布局 */
  .support-grid { grid-template-columns: 1fr; gap: 12px; }
  .support-card { padding: 18px 16px; }
  .support-value { font-size: 17px; overflow-wrap: anywhere; }
  .support-value.phone-num { font-size: 18px; letter-spacing: .5px; }
  .support-sub { font-size: 12px; line-height: 1.5; }
}
@media (max-width: 400px) {
  .support-card { padding: 16px 12px; }
  .support-icon { width: 46px; height: 46px; margin-bottom: 10px; }
}

/* ========== 页脚·手机端视觉优化（本站追加） ========== */
@media (max-width: 768px) {
  .footer-top { padding: 36px 0 24px; }
}
@media (max-width: 640px) {
  .footer-top { padding: 30px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .footer-grid > div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-grid > div:first-child { padding-top: 0; }
  .footer-grid > div:last-child { border-bottom: none; padding-bottom: 2px; }
  .footer h4 { font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
  .footer h4::after {
    content: ""; display: block; width: 28px; height: 2px; margin: 8px auto 0;
    background: linear-gradient(90deg, var(--gold-soft), transparent); border-radius: 2px;
  }
  .footer .f-about { font-size: 13px; line-height: 1.9; max-width: 430px; margin: 0 auto; }
  .footer-list { gap: 10px; font-size: 13px; justify-items: center; }
  .footer-list li, .footer-list a { justify-content: center; }
  .footer-list em { font-size: 13px; }
  .footer-bottom { padding: 16px 14px 20px; font-size: 11.5px; line-height: 1.9; }
  .footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; column-gap: 8px; }
}
