/* ============================================================
   jingdezhen_design_qinghua — 青花瓷韵
   主色 #1e4fa1 青花钴蓝 / 辅色 #6ea8d8 天青釉蓝 / 底色 #f6f9fd 瓷白
   图形母题：青花缠枝纹曲线（全站 ≥3 处）
   ============================================================ */
:root {
  --brand: #1e4fa1;
  --brand-dark: #143770;
  --accent: #6ea8d8;
  --bg: #f6f9fd;
  --surface: #ffffff;
  --text: #1c2733;
  --text-soft: #3d4a5a;
  --text-light: #64748b;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --border: #dbe4ee;
  --radius: 8px;
  --shadow: 0 6px 24px rgba(20, 55, 112, 0.08);
  --shadow-lg: 0 14px 44px rgba(20, 55, 112, 0.16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.7; overflow-x: clip; }
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== 涟漪 ===== */
.btn, .biz-card, .quad-card { position: relative; overflow: hidden; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.35); transform: scale(0); animation: rippleGrow .65s ease-out forwards; pointer-events: none; }
@keyframes rippleGrow { to { transform: scale(2.4); opacity: 0; } }

/* ===== 导航（B 透明叠 hero，滚动变实色）===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: transparent; transition: background .35s, box-shadow .35s; }
.site-header.is-solid { background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 18px rgba(20, 55, 112, 0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: #fff; transition: color .3s; }
.site-header.is-solid .logo { color: var(--text); }
.logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-size: 18px; font-weight: 700; box-shadow: 0 3px 12px rgba(30, 79, 161, 0.35); }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; padding: 10px 16px; font-size: 15px; color: rgba(255, 255, 255, 0.92); text-decoration: none; border-radius: 8px; transition: color .25s, background .25s; position: relative; }
.nav-item > a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 5px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-item > a:hover::after { transform: scaleX(1); }
.site-header.is-solid .nav-item > a { color: var(--text); }
.site-header.is-solid .nav-item.is-active > a, .nav-item.is-active > a { color: #fff; }
.nav-item.is-active > a { background: rgba(110, 168, 216, 0.28); }
.site-header.is-solid .nav-item.is-active > a { background: var(--brand); }
.nav-caret { font-size: 10px; opacity: .7; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 180px; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: all .22s; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 9px 14px; font-size: 14px; color: var(--text); border-radius: 6px; }
.dropdown a:hover { background: rgba(30, 79, 161, 0.07); color: var(--brand); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: background .3s; }
.site-header.is-solid .nav-toggle span { background: var(--text); }

/* ===== Hero（E 深色底+青花粒子，grid 叠放）===== */
.hero { position: relative; display: grid; background: radial-gradient(1200px 600px at 70% 20%, #1d3f7e 0%, var(--brand-dark) 45%, #0d1f45 100%); color: #fff; overflow: hidden; }
#qinghuaParticles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-slides { display: grid; position: relative; z-index: 2; will-change: transform; }
.hero-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s; display: flex; }
.hero-slide.is-on { opacity: 1; visibility: visible; }
.hero-slide-inner { flex-direction: column; display: flex; justify-content: center; align-items: center; text-align: center; gap: 18px; width: 100%; max-width: 880px; margin: 0 auto; padding: 150px 24px 150px; }
.hero-eyebrow { font-size: 14px; letter-spacing: 4px; color: rgba(198, 224, 248, 0.85); border: 1px solid rgba(110, 168, 216, 0.5); border-radius: 999px; padding: 6px 18px; animation: riseIn .8s ease both; }
.hero-slide h1 { font-size: 44px; line-height: 1.3; color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); animation: riseIn 1s ease both; }
.hero-sub { font-size: 18px; color: rgba(214, 232, 250, 0.9); animation: riseIn 1.2s ease both; }
.hero-btns { display: flex; gap: 16px; margin-top: 8px; animation: riseIn 1.4s ease both; }
.hero-dots { position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: all .25s; }
.hero-dot.is-on { width: 26px; background: var(--accent); }
/* 青花缠枝纹母题（hero 底部） */
.hero-motif { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); color: rgba(110, 168, 216, 0.4); pointer-events: none; z-index: 1; }
.hero-motif path { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: vineDraw 3.2s ease forwards .4s; }
@keyframes vineDraw { to { stroke-dashoffset: 0; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* ===== 按钮（光斑滑过 + 涟漪）===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: transform .22s, box-shadow .22s, background .22s, color .22s; border: 0; cursor: pointer; }
.btn::before { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.3), transparent); transform: skewX(-20deg); transition: left .5s ease; z-index: 1; }
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(120deg, var(--brand), #2f6bc9); color: #fff; }
.btn-primary:hover { box-shadow: 0 10px 26px rgba(30, 79, 161, 0.45); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn > * { position: relative; z-index: 2; }
.btn span, .btn { z-index: 2; }

/* ===== 通用 section ===== */
.section { padding: 80px 0; }
.alt-bg { background: #eef3fa; }
/* 斜切分隔（B） */
.cut-sep { display: block; width: 100%; height: 56px; }
.cut-sep polygon { fill: var(--surface); }
.cut-sep.flip polygon { fill: var(--bg); }
.section-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 44px; }
.section-index { font-size: 44px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--accent); line-height: 1; letter-spacing: 1px; }
.section-title { font-size: 32px; color: var(--text); position: relative; padding-left: 18px; }
.section-title::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 5px; border-radius: 3px; background: linear-gradient(180deg, var(--brand), var(--accent)); }
.section-aside { font-size: 14px; color: var(--text-light); margin-left: auto; }
.section-aside a { color: var(--brand); }

/* ===== 母题叙事带（γ 顺序专用）===== */
.story-band { background: linear-gradient(120deg, var(--brand-dark), var(--brand) 60%, #2f6bc9); color: #fff; text-align: center; padding: 58px 20px; position: relative; overflow: hidden; }
.story-band p { font-size: 24px; font-weight: 600; color: #fff; letter-spacing: 2px; }
.story-band small { display: block; margin-top: 10px; font-size: 14px; color: rgba(198, 224, 248, 0.8); letter-spacing: 4px; }
.story-motif { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); color: rgba(255, 255, 255, 0.18); }
.story-motif path { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: vineDraw 3s ease forwards .6s; }

/* ===== 业务卡（E 实色底+白字，交替双蓝）===== */
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.biz-card { background: linear-gradient(150deg, var(--brand), var(--brand-dark)); color: #fff; border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-lg); transition: transform .25s, box-shadow .25s; will-change: transform; }
.biz-card:nth-child(even) { background: linear-gradient(150deg, #2f6bc9, var(--brand)); }
.biz-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30, 79, 161, 0.35); }
.biz-card h3 { font-size: 19px; color: #fff; }
.biz-card p { font-size: 14px; color: rgba(255, 255, 255, 0.82); flex: 1; }
.biz-card-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(255, 255, 255, 0.14); color: #cfe4fa; transition: transform .3s; }
.biz-card:hover .biz-card-icon { transform: scale(1.1) rotate(4deg); }
.biz-more { color: #a8d0f5; font-size: 14px; font-weight: 600; transition: transform .2s; }
.biz-card:hover .biz-more { transform: translateX(4px); }
/* 卡面浮光 */
.biz-card::after { content: ""; position: absolute; top: -60%; right: -40%; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%); animation: floatOrb 5s ease-in-out infinite; }
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-18px, 14px); } }

/* ===== 流程 2×2 象限卡（D）===== */
.quad-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quad-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; will-change: transform; }
.quad-card:hover { box-shadow: var(--shadow-lg); }
.quad-num { flex: none; width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--accent)); animation: breathe 2.8s ease-in-out infinite; }
.quad-card:nth-child(2) .quad-num { animation-delay: .5s; }
.quad-card:nth-child(3) .quad-num { animation-delay: 1s; }
.quad-card:nth-child(4) .quad-num { animation-delay: 1.5s; }
@keyframes breathe { 0%, 100% { box-shadow: 0 0 0 0 rgba(30, 79, 161, 0.35); } 50% { box-shadow: 0 0 0 12px rgba(30, 79, 161, 0); } }
.quad-card:hover .quad-num { animation-play-state: paused; }
.quad-card h4 { font-size: 18px; margin-bottom: 6px; }
.quad-card p { font-size: 14px; color: var(--text-light); }

/* ===== 信任条（D 深色）===== */
.trust-section { position: relative; background: linear-gradient(130deg, #0d1f45, var(--brand-dark)); padding: 60px 0; overflow: hidden; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; position: relative; z-index: 2; }
.trust-item { display: flex; flex-direction: column; gap: 4px; transition: transform .25s; }
.trust-item:hover { transform: translateY(-5px); }
.stat-num { color: #fff !important; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); font-size: 40px; font-weight: 800; font-variant-numeric: tabular-nums; }
.trust-label { color: rgba(214, 232, 250, 0.75); font-size: 14px; }
.trust-motif { position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%); color: rgba(110, 168, 216, 0.28); }

/* ===== 资讯双栏混合（D：置顶 1 条 + 小卡）===== */
.news-mixed { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.news-featured { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.news-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-featured h3 { font-size: 22px; line-height: 1.5; }
.news-featured h3 a { color: var(--text); }
.news-featured h3 a:hover { color: var(--brand); }
.news-flag { position: absolute; top: 0; right: 0; background: linear-gradient(120deg, var(--brand), var(--accent)); color: #fff; font-size: 12px; padding: 4px 16px; border-radius: 0 0 0 10px; }
.news-featured p { font-size: 14px; color: var(--text-light); flex: 1; }
.news-side { display: grid; gap: 14px; }
.news-side .card { padding: 20px 22px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; gap: 8px; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 16px; line-height: 1.5; }
.card h3 a { color: var(--text); }
.card h3 a:hover { color: var(--brand); }
.card p { font-size: 13px; color: var(--text-light); flex: 1; }
.card-meta { font-size: 13px; color: var(--gray); }

/* ===== CTA（C 数字背书式）===== */
.cta-section { position: relative; background: linear-gradient(125deg, #0d1f45, var(--brand) 60%, #2f6bc9); padding: 76px 0; overflow: hidden; animation: ctaBreath 7s ease-in-out infinite; }
@keyframes ctaBreath { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.1); } }
.cta-inner { text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.cta-inner h2 { color: #fff; font-size: 30px; }
.cta-inner p { color: rgba(214, 232, 250, 0.85); }
.cta-nums { display: flex; gap: 48px; margin: 10px 0 6px; flex-wrap: wrap; justify-content: center; }
.cta-nums .stat-num { font-size: 34px; }
.cta-btns { display: flex; gap: 16px; margin-top: 6px; }

/* ===== 页头（内页）===== */
.page-header { background: linear-gradient(125deg, var(--brand-dark), var(--brand) 60%, #2f6bc9); padding: 120px 0 56px; position: relative; overflow: hidden; }
.page-header h1 { color: #fff; font-size: 32px; }
.breadcrumb { margin-top: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.breadcrumb a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.page-header .hero-motif { bottom: -6px; opacity: .5; }
.page-header .hero-motif path { animation: none; stroke-dashoffset: 0; }

/* ===== 列表 / 通用布局 ===== */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.side-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 92px; }
.side-panel h4 { font-size: 16px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.side-panel ul li a { display: block; padding: 9px 12px; font-size: 14px; color: var(--text-soft); border-radius: 6px; }
.side-panel ul li a:hover, .side-panel ul li a.is-active { background: rgba(30, 79, 161, 0.07); color: var(--brand); }
.side-panel .btn { margin-top: 16px; width: 100%; justify-content: center; }
.article-card { display: grid; gap: 18px; }
.pagination { display: flex; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 16px; border-radius: 8px; font-size: 14px; border: 1px solid var(--border); color: var(--text-soft); background: var(--surface); }
.pagination .is-current, .pagination span.is-current { background: var(--brand); border-color: var(--brand); color: #fff; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-light); }

/* ===== 详情页 ===== */
.detail__content { font-size: 16px; line-height: 1.9; color: var(--text); }
.detail__content h2, .detail__content h3 { margin: 26px 0 12px; }
.detail__content p { margin-bottom: 14px; }
.detail__content table, .page-content table { display: block; max-width: 100%; overflow-x: auto; }
.detail__content img, .page-content img { max-width: 100%; height: auto; }
.detail__content pre, .page-content pre { overflow-x: auto; }
.detail__content, .page-content { overflow-wrap: break-word; }
.detail-meta { display: flex; gap: 20px; font-size: 14px; color: var(--text-light); margin: 14px 0 28px; }
.related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }

/* ===== 表单 ===== */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label { font-size: 14px; font-weight: 600; }
.form-field input, .form-field textarea { padding: 12px 16px; border: 1px solid var(--gray-light); border-radius: 8px; font-size: 15px; background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(30, 79, 161, 0.12); }
.flash-ok { background: rgba(7, 193, 96, 0.1); border: 1px solid rgba(7, 193, 96, 0.4); color: #1c7c3d; border-radius: 8px; padding: 12px 16px; margin-bottom: 18px; }
.flash-err { background: rgba(30, 79, 161, 0.08); border: 1px solid rgba(30, 79, 161, 0.35); color: var(--brand-dark); border-radius: 8px; padding: 12px 16px; margin-bottom: 18px; }

/* ===== 案例 ===== */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.case-filter a { padding: 8px 20px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; color: var(--text-soft); background: var(--surface); transition: all .2s; }
.case-filter a:hover, .case-filter a.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.case-card .case-cover { height: 160px; border-radius: 6px; background: linear-gradient(135deg, rgba(30, 79, 161, 0.12), rgba(110, 168, 216, 0.18)); margin: -6px -6px 14px; display: flex; align-items: center; justify-content: center; color: var(--brand); }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.case-tags span { font-size: 12px; background: rgba(110, 168, 216, 0.16); color: var(--brand); border-radius: 999px; padding: 3px 12px; }

/* ===== 页脚（A 4 列）===== */
.site-footer { background: #0d1f45; color: rgba(255, 255, 255, 0.8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 56px 20px 40px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; margin-bottom: 12px; }
.footer-desc { font-size: 14px; color: rgba(255, 255, 255, 0.62); margin-bottom: 14px; }
.footer-contact li, .footer-col li { margin-bottom: 10px; font-size: 14px; }
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; display: inline; transition: color .2s; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; }
.footer-bottom-inner { display: flex; }
.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.footer-bottom a { display: inline; margin: 0; color: rgba(255, 255, 255, 0.6); }

/* ===== 滚动条防护 ===== */
.drawer-nav-scroll { scrollbar-width: none; -ms-overflow-style: none; }
.drawer-nav-scroll::-webkit-scrollbar { display: none; }

/* ===== 滚动入场 ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero-slide { opacity: 1; visibility: visible; }
html.no-js .hero-slide:not(:first-child) { display: none; }

/* ===== zfkf 悬浮客服（统一标准组件）===== */
.zfkf-float { position: fixed; right: 20px; bottom: 120px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.zfkf-item { position: relative; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18); transition: all .25s; cursor: pointer; }
.zfkf-item:hover { transform: scale(1.08); color: #fff; }
.zfkf-phone { background: #2563eb; }
.zfkf-wechat { background: #07c160; }
.zfkf-consult { background: #f59e0b; }
.zfkf-top { background: #334155; }
.zfkf-tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); white-space: nowrap; background: rgba(0, 0, 0, 0.78); color: #fff; font-size: 12px; padding: 5px 10px; border-radius: 6px; opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 10001; }
.zfkf-item:hover .zfkf-tip { opacity: 1; }
.zfkf-wechat-mask { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 10000; display: none; align-items: center; justify-content: center; }
.zfkf-wechat-mask.zfkf-show { display: flex; }
.zfkf-wechat-box { background: #fff; border-radius: 12px; padding: 24px; text-align: center; position: relative; max-width: 80vw; }
.zfkf-wechat-box img { width: 180px; height: 180px; object-fit: contain; border: 1px solid #eee; border-radius: 8px; }
.zfkf-wechat-noimg { width: 180px; height: 80px; display: flex; align-items: center; justify-content: center; background: #f6f7f9; border-radius: 8px; font-size: 16px; color: #07c160; font-weight: 600; }
.zfkf-wechat-box p { margin: 12px 0 0; font-size: 14px; color: #333; }
.zfkf-wechat-close { position: absolute; top: 8px; right: 12px; font-size: 22px; color: #666; cursor: pointer; line-height: 1; }
@media (max-width: 768px) { .zfkf-float { right: 10px; bottom: 100px; } .zfkf-item { width: 42px; height: 42px; } .zfkf-tip { display: none; } }

/* ===== 404 ===== */
.nf-wrap { text-align: center; padding: 160px 20px 100px; }
.nf-wrap h1 { font-size: 90px; color: var(--brand); }
.nf-wrap p { color: var(--text-light); margin: 12px 0 26px; }

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
  .biz-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .related-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slide h1 { font-size: 32px; }
  .news-mixed { grid-template-columns: 1fr; }
  .quad-grid { grid-template-columns: 1fr; }
  .section-index { font-size: 34px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 68px 0 auto 0; background: #fff; box-shadow: var(--shadow-lg); max-height: 0; overflow: hidden; transition: max-height .3s; z-index: 890; }
  body.nav-open .main-nav { max-height: 70vh; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 12px 20px 20px; gap: 2px; }
  .nav-item > a { color: var(--text) !important; border-radius: 6px; }
  .nav-item > a::after { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 6px 16px; display: none; }
  .nav-item:hover .dropdown { display: block; }
  .section { padding: 56px 0; }
  .section-title { font-size: 25px; }
  .section-head { flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .section-aside { margin-left: 0; width: 100%; }
  .biz-grid, .case-grid, .related-list { grid-template-columns: 1fr; }
  .hero-slide-inner { padding: 120px 20px 120px; }
  .hero-btns, .cta-btns { flex-direction: column; width: 100%; max-width: 320px; }
}
@media (max-width: 560px) {
  .trust-row, .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== tz-rich-text typography (auto-appended) ===== */
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article)>:first-child{margin-top:0}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article)>:last-child{margin-bottom:0}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) p{margin:0 0 1.05em;line-height:1.9}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h1,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h2{margin:1.6em 0 .7em;line-height:1.4;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h1{font-size:1.6em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h2{font-size:1.4em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h3{margin:1.4em 0 .6em;font-size:1.2em;line-height:1.45;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h4{margin:1.2em 0 .5em;font-size:1.08em;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h5,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h6{margin:1.1em 0 .5em;font-size:1em;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) ul,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) ol{margin:0 0 1.05em;padding-left:1.7em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) li{margin:.35em 0;line-height:1.8}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) img{max-width:100%;height:auto;border-radius:8px}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) figure{margin:1.2em 0}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) figcaption{margin-top:.5em;font-size:.85em;opacity:.7;text-align:center}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) blockquote{margin:1.2em 0;padding:.2em 0 .2em 1em;border-left:3px solid currentColor;opacity:.85}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) table{width:100%;border-collapse:collapse;margin:1.2em 0;font-size:.96em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) th,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) td{border:1px solid rgba(127,127,127,.3);padding:.5em .75em;text-align:left}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) th{font-weight:700;background:rgba(127,127,127,.06)}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) hr{margin:1.6em 0;border:0;border-top:1px solid rgba(127,127,127,.28)}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) pre{overflow:auto;padding:.8em 1em;border-radius:8px;background:rgba(127,127,127,.1);font-size:.92em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) code{font-size:.94em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) strong,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) b{font-weight:700}
:where(.rich-text) ul{list-style:disc}
:where(.rich-text) ol{list-style:decimal}
:where(.rich-text) a{text-decoration:underline;text-underline-offset:3px}

/* ===== tz-footer-legal (auto-appended) ===== */
.zf-legal-line a{color:inherit;text-decoration:none;opacity:.92}
.zf-legal-line a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px}
.zf-legal-line .zf-legal-all{font-weight:600}
.zf-legal-line .zf-legal-copy{opacity:.95}
.zf-legal-line .zf-legal-addr{opacity:.82}
.zf-legal-line .zf-legal-police{text-decoration:none}
@media (max-width:640px){.zf-legal-line{column-gap:.55em;line-height:1.7}}
