:root {
  --brand: #16212B;
  --brand-2: #233742;
  --accent: #0C7C86;
  --accent-2: #B84A35;
  --porcelain: #D8E7E3;
  --bg: #F5F2EA;
  --surface: #FFFFFF;
  --text: #16212B;
  --text-soft: #475569;
  --text-light: #64748B;
  --gray: #94A3B8;
  --gray-light: #CBD5E1;
  --border: #CBD5E1;
  --radius: 0px;
  --shadow: 0 16px 34px rgba(22, 33, 43, .12);
  --shadow-soft: 0 6px 18px rgba(22, 33, 43, .08);
  --container: 1200px;
}
* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif; font-size: 16px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.muted { color: var(--text-soft); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245,242,234,.86); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; backdrop-filter: blur(16px); }
.site-header.is-scrolled { background: rgba(255,255,255,.96); border-color: var(--gray-light); box-shadow: 0 4px 18px rgba(22,33,43,.06); }
.header-inner { display: flex; align-items: center; min-height: 78px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 210px; color: var(--brand); }
.brand-mark, .footer-mark { display: grid; place-items: center; color: var(--accent-2); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 17px; letter-spacing: .04em; }
.brand-copy small { margin-top: 4px; color: var(--text-light); font-size: 10px; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-size: 14px; padding: 26px 13px; transition: color .2s, background .2s; }
.nav-link:hover, .nav-link.is-active { color: var(--accent-2); }
.nav-link.is-active { background: rgba(12,124,134,.08); }
.nav-item { position: relative; }
.nav-caret { font-size: 12px; line-height: 1; transition: transform .2s; }
.nav-item:hover .nav-caret, .nav-item.is-open .nav-caret { transform: rotate(180deg); }
.nav-menu { position: absolute; left: 0; top: calc(100% - 1px); width: 230px; padding: 10px; background: var(--surface); border: 1px solid var(--gray-light); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-item:hover .nav-menu, .nav-item.is-open .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: flex; flex-direction: column; gap: 1px; padding: 11px 12px; color: var(--brand); font-size: 14px; }
.nav-menu a:hover { background: var(--porcelain); color: var(--accent); }
.nav-menu small { color: var(--text-light); font-size: 11px; }
.nav-menu-small { width: 190px; }
.nav-menu-small a { display: block; }
.header-call { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-2); font-size: 13px; font-weight: 700; white-space: nowrap; }
.header-call svg { transition: transform .2s; }
.header-call:hover svg { transform: rotate(-12deg) scale(1.1); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--brand); padding: 8px; }
.hero { position: relative; overflow: hidden; background: var(--brand); color: #fff; }
.hero-slides { display: grid; }
.hero-slide { grid-area: 1 / 1; min-width: 0; opacity: 0; visibility: hidden; z-index: 0; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-inner { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 50px; align-items: center; min-height: 580px; padding: 86px 0 98px; }
.hero-copy { position: relative; z-index: 2; max-width: 590px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; color: #B8D8D6; font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.hero-kicker::before { content: ""; width: 30px; height: 2px; background: var(--accent-2); }
.hero h1 { margin: 20px 0 18px; max-width: 590px; color: #fff; font-size: clamp(38px, 5vw, 72px); line-height: 1.08; letter-spacing: 0; }
.hero-lead { margin: 0; max-width: 520px; color: rgba(255,255,255,.78); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; overflow: hidden; border: 1px solid transparent; font-size: 14px; font-weight: 800; transition: transform .22s, background .22s, color .22s, border-color .22s; }
.btn::after { content: ""; position: absolute; top: 0; left: -80%; width: 42%; height: 100%; background: rgba(255,255,255,.3); transform: skewX(-20deg); transition: left .5s; }
.btn:hover::after { left: 140%; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--accent-2); color: #fff; }
.btn-primary:hover { background: #D36048; color: #fff; }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: var(--porcelain); color: var(--brand); }
.btn-outline { border-color: currentColor; color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(4px); }
.hero-visual { position: relative; min-height: 360px; }
.hero-visual::before { content: ""; position: absolute; inset: 5% 6% 5% 8%; border: 1px solid rgba(216,231,227,.34); transform: rotate(-5deg); }
.hero-visual::after { content: ""; position: absolute; top: 16%; right: 3%; width: 140px; height: 140px; border: 1px solid var(--accent-2); border-radius: 50%; box-shadow: 0 0 0 18px rgba(184,74,53,.11), 0 0 0 36px rgba(184,74,53,.06); animation: orbitPulse 5s ease-in-out infinite; }
.visual-grid { position: absolute; inset: 10% 12% 8% 10%; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1.1fr; gap: 12px; transform: rotate(4deg); }
.visual-panel { position: relative; overflow: hidden; background: #20333C; border: 1px solid rgba(216,231,227,.32); }
.visual-panel.large { grid-row: 1 / 3; background: #0C7C86; }
.visual-panel::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.28); }
.visual-panel.large::after { content: ""; position: absolute; left: 19%; top: 12%; width: 55%; height: 78%; border-radius: 50% 50% 42% 42%; background: var(--porcelain); box-shadow: inset 18px -8px 0 rgba(255,255,255,.32); transform: rotate(-12deg); }
.visual-panel.small-one { background: var(--accent-2); }
.visual-panel.small-one::after { content: ""; position: absolute; left: 20%; bottom: 16%; width: 64%; height: 28%; background: #16212B; transform: skewX(-26deg); box-shadow: 0 -18px 0 #233742; }
.visual-panel.small-two { background: #D3954B; }
.visual-panel.small-two::after { content: ""; position: absolute; width: 65px; height: 65px; border: 11px solid #16212B; border-radius: 50%; top: 25%; left: 34%; }
.hero-stamp { position: absolute; left: -20px; bottom: 5%; display: grid; place-items: center; width: 112px; height: 112px; border: 1px solid rgba(255,255,255,.45); color: #fff; font-size: 11px; text-align: center; letter-spacing: .12em; transform: rotate(-9deg); }
.hero-stamp strong { display: block; color: #F3C99A; font-size: 20px; letter-spacing: .04em; }
.hero-controls { position: absolute; bottom: 30px; left: 50%; z-index: 4; display: flex; align-items: center; gap: 8px; transform: translateX(-50%); }
.hero-control { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.36); background: transparent; color: #fff; transition: background .2s, transform .2s; }
.hero-control:hover { background: var(--accent-2); transform: translateY(-2px); }
.hero-dots { display: flex; gap: 6px; margin: 0 10px; }
.hero-dot { width: 24px; height: 3px; border: 0; background: rgba(255,255,255,.34); padding: 0; }
.hero-dot.is-active { background: #fff; }
.motif-line { height: 14px; background: var(--bg); position: relative; overflow: hidden; }
.motif-line::before { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 2px; background: repeating-linear-gradient(100deg, var(--accent) 0 44px, transparent 44px 68px, var(--accent-2) 68px 76px, transparent 76px 110px); opacity: .85; }
.narrative { padding: 56px 0; background: var(--bg); }
.narrative-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: end; }
.narrative h2 { margin: 12px 0 0; font-size: clamp(28px, 4vw, 50px); line-height: 1.15; letter-spacing: 0; }
.narrative-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.narrative-copy p { margin: 0; color: var(--text-soft); }
.narrative-note { display: flex; align-items: center; gap: 12px; color: var(--accent); font-size: 13px; font-weight: 800; }
.narrative-note::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.section { padding: 78px 0; }
.section-tight { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-head h2 { margin: 8px 0 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.12; letter-spacing: 0; }
.section-head p { max-width: 380px; margin: 0; color: var(--text-soft); font-size: 14px; }
.motif-title { display: inline-flex; align-items: center; gap: 10px; }
.motif-title::after { content: ""; width: 56px; height: 5px; background: var(--accent-2); }
.biz-grid { display: grid; grid-template-columns: 1.14fr .86fr .86fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.biz-card { position: relative; display: flex; flex-direction: column; min-height: 230px; padding: 26px; background: var(--surface); border: 1px solid var(--gray-light); transition: transform .25s, box-shadow .25s, border-color .25s; }
.biz-card:first-child { grid-row: 1 / 3; background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(24px); }
.biz-card--all { border-style: dashed; background: rgba(12,124,134,.05); }
.biz-card--all .biz-icon { background: rgba(12,124,134,.1); color: var(--accent); }
.biz-card:nth-child(3) { transform: translateY(24px); }
.biz-card:hover { transform: translateY(-7px) !important; border-color: var(--accent); box-shadow: var(--shadow); }
.biz-card:first-child:hover { box-shadow: 0 20px 42px rgba(12,124,134,.26); }
.biz-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; background: var(--porcelain); color: var(--accent); transition: transform .25s; }
.biz-card:first-child .biz-icon { background: rgba(216,231,227,.14); color: #B8D8D6; }
.biz-card:hover .biz-icon { transform: rotate(-8deg) scale(1.12); }
.biz-card h3 { margin: 0 0 8px; font-size: 21px; }
.biz-card p { margin: 0; color: var(--text-soft); font-size: 14px; }
.biz-card:first-child p { color: rgba(255,255,255,.72); }
.biz-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--accent-2); font-size: 13px; font-weight: 800; }
.biz-card:first-child .biz-link { color: #F3C99A; }
.biz-link svg { transition: transform .2s; }
.biz-link:hover svg { transform: translateX(5px); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { padding: 3px 8px; background: rgba(12,124,134,.09); color: var(--accent); font-size: 12px; }
.biz-card:first-child .chip { background: rgba(255,255,255,.11); color: #D8E7E3; }
.process-section { background: #E8EDE8; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { position: relative; min-height: 220px; padding: 24px; background: #fff; border-top: 4px solid var(--accent); transition: transform .25s, box-shadow .25s; }
.process-card:nth-child(2) { border-color: var(--accent-2); }
.process-card:nth-child(3) { border-color: #D3954B; }
.process-card:nth-child(4) { border-color: var(--brand); }
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.process-number { color: var(--gray-light); font-size: 52px; font-weight: 900; line-height: 1; }
.process-card h3 { margin: 18px 0 8px; font-size: 19px; }
.process-card p { margin: 0; color: var(--text-soft); font-size: 13px; }
.process-node { position: absolute; top: 18px; right: 18px; width: 9px; height: 9px; background: var(--accent); box-shadow: 0 0 0 8px rgba(12,124,134,.12); animation: nodePulse 2.4s ease-in-out infinite; }
.process-card:nth-child(2) .process-node { background: var(--accent-2); box-shadow: 0 0 0 8px rgba(184,74,53,.12); }
.stats-section { padding: 30px 0; background: var(--brand); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 112px; padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.24); transition: transform .2s, background .2s; }
.stat:last-child { border-right: 0; }
.stat:hover { transform: translateY(-4px); background: rgba(12,124,134,.22); }
.stat svg { color: #F3C99A; }
.stat strong { display: block; color: #fff !important; font-size: 32px; line-height: 1.1; }
.stat span { display: block; color: rgba(255,255,255,.72); font-size: 12px; }
.stat-num { color: #fff !important; text-shadow: 0 1px 0 rgba(0,0,0,.25); }
.news-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.news-feature { grid-row: 1 / 3; min-height: 360px; }
.news-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 22px; background: var(--surface); border: 1px solid var(--gray-light); transition: transform .22s, border-color .22s, box-shadow .22s; }
.news-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-soft); }
.news-date { color: var(--accent-2); font-size: 12px; font-weight: 800; }
.news-card h3 { margin: 12px 0 8px; font-size: 17px; line-height: 1.4; }
.news-card p { margin: 0; color: var(--text-soft); font-size: 13px; }
.news-card .biz-link { margin-top: auto; }
.news-feature h3 { font-size: 27px; }
.news-tag { display: inline-flex; width: fit-content; margin-bottom: auto; padding: 5px 9px; background: var(--brand); color: #fff; font-size: 11px; letter-spacing: .08em; }
.cta-section { position: relative; overflow: hidden; padding: 64px 0; background: var(--accent); color: #fff; }
.cta-section::before { content: ""; position: absolute; right: -50px; top: -80px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255,255,255,.08), 0 0 0 44px rgba(255,255,255,.05); animation: orbitPulse 6s ease-in-out infinite; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { margin: 8px 0; color: #fff; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.8); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.page-hero { padding: 72px 0 68px; background: var(--brand); color: #fff; }
.page-hero h1 { margin: 18px 0 0; color: #fff; font-size: clamp(36px, 5vw, 66px); line-height: 1.1; }
.page-hero p { max-width: 680px; margin: 16px 0 0; color: rgba(255,255,255,.76); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.78); font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }
.breadcrumb .sep { color: rgba(255,255,255,.5); }
.page-content { padding: 70px 0; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 42px; align-items: start; }
.rich-content { max-width: 820px; color: var(--text-soft); }
.rich-content h2, .rich-content h3 { color: var(--brand); line-height: 1.3; }
.rich-content h2 { margin: 0 0 18px; font-size: 30px; }
.rich-content h3 { margin: 30px 0 10px; font-size: 20px; }
.rich-content p { margin: 0 0 16px; }
.rich-content ul { padding-left: 20px; }
.rich-content table, .page-content table, .detail__content table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.rich-content img, .page-content img, .detail__content img { max-width: 100%; height: auto; }
.rich-content pre, .page-content pre, .detail__content pre { overflow-x: auto; }
.rich-content, .page-content, .detail__content { overflow-wrap: break-word; }
.side-panel { padding: 22px; background: #E8EDE8; border-top: 4px solid var(--accent); }
.side-panel h3 { margin: 0 0 15px; font-size: 18px; }
.side-panel a { display: block; padding: 9px 0; border-bottom: 1px solid var(--gray-light); color: var(--text-soft); font-size: 13px; }
.side-panel a:hover { color: var(--accent-2); }
.service-list { display: grid; gap: 18px; }
.service-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: start; padding: 26px; background: #fff; border: 1px solid var(--gray-light); transition: transform .22s, box-shadow .22s; }
.service-row:hover { transform: translateX(7px); box-shadow: var(--shadow-soft); }
.service-index { color: var(--accent-2); font-size: 34px; font-weight: 900; line-height: 1; }
.service-row h3 { margin: 0 0 8px; font-size: 24px; }
.service-row p { margin: 0; color: var(--text-soft); font-size: 14px; }
.list-grid, .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card, .case-card { min-width: 0; padding: 22px; background: #fff; border: 1px solid var(--gray-light); transition: transform .22s, box-shadow .22s, border-color .22s; }
.article-card:hover, .case-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-soft); }
.article-card h3, .case-card h3 { margin: 10px 0 8px; font-size: 18px; line-height: 1.45; }
.article-card p, .case-card p { margin: 0; color: var(--text-soft); font-size: 13px; }
.case-visual { display: grid; place-items: center; min-height: 160px; margin: -22px -22px 18px; background: var(--brand); color: var(--porcelain); }
.case-card:nth-child(2n) .case-visual { background: var(--accent-2); color: #fff; }
.case-card:nth-child(3n) .case-visual { background: #D3954B; color: var(--brand); }
.case-visual svg { transition: transform .25s; }
.case-card:hover .case-visual svg { transform: scale(1.13) rotate(4deg); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-link { padding: 8px 13px; border: 1px solid var(--gray-light); color: var(--text-soft); font-size: 13px; }
.filter-link:hover, .filter-link.is-active { border-color: var(--accent); background: var(--accent); color: #fff; }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.pagination a, .pagination span { display: grid; place-items: center; min-width: 38px; min-height: 38px; border: 1px solid var(--gray-light); font-size: 13px; }
.pagination a:hover, .pagination .is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.detail-shell { max-width: 880px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 16px; padding-bottom: 17px; border-bottom: 1px solid var(--gray-light); color: var(--text-light); font-size: 13px; }
.detail-title { margin: 20px 0 15px; font-size: clamp(30px, 4vw, 50px); line-height: 1.2; }
.detail__content { padding-top: 28px; color: var(--text-soft); }
.detail__content h2, .detail__content h3 { color: var(--brand); }
.detail__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0 0; min-width: 0; }
.detail__nav-cell { display: block; min-width: 0; padding: 16px; border: 1px solid var(--gray-light); }
.detail__nav-cell:hover { border-color: var(--accent); background: #fff; }
.detail__nav-cell small { color: var(--text-light); }
.detail__nav-cell strong { display: block; min-width: 0; margin-top: 5px; overflow: hidden; color: var(--brand); font-size: 14px; white-space: nowrap; text-overflow: ellipsis; }
.process-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.process-page-card { padding: 30px; background: #fff; border-left: 5px solid var(--accent); transition: transform .2s, box-shadow .2s; }
.process-page-card:nth-child(2) { border-color: var(--accent-2); }
.process-page-card:nth-child(3) { border-color: #D3954B; }
.process-page-card:nth-child(4) { border-color: var(--brand); }
.process-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.process-page-card .process-number { color: var(--accent); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; }
.contact-details { padding: 28px; background: var(--brand); color: #fff; }
.contact-details h2 { margin-top: 0; color: #fff; }
.contact-details p { color: rgba(255,255,255,.75); }
.contact-detail-item { display: flex; gap: 12px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-detail-item svg { flex: 0 0 auto; color: #F3C99A; }
.contact-form { padding: 28px; background: #fff; border: 1px solid var(--gray-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-field { display: grid; gap: 7px; margin-bottom: 16px; }
.form-field label { color: var(--brand); font-size: 13px; font-weight: 700; }
.form-field input, .form-field textarea, .search-box input { width: 100%; padding: 12px 14px; border: 1px solid var(--gray); background: #fff; color: var(--text); outline: none; }
.form-field input:focus, .form-field textarea:focus, .search-box input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(12,124,134,.12); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-feedback { margin-bottom: 16px; padding: 11px 13px; background: #E8EDE8; color: var(--accent); font-size: 13px; }
.search-box { display: flex; max-width: 720px; margin-bottom: 28px; }
.search-box input { flex: 1; }
.search-box .btn { min-width: 110px; }
.empty-state { padding: 48px 24px; background: #fff; border: 1px dashed var(--gray); text-align: center; color: var(--text-soft); }
.sitemap-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sitemap-group { padding: 24px; background: #fff; border-top: 4px solid var(--accent); }
.sitemap-group h3 { margin: 0 0 12px; }
.sitemap-group a { display: block; padding: 7px 0; color: var(--text-soft); font-size: 14px; }
.sitemap-group a:hover { color: var(--accent-2); }
.site-footer { padding: 68px 0 24px; background: var(--brand); color: #fff; }
.dark-section, .dark-section a, .dark-section p, .dark-section h3, .dark-section svg { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 42px; }
.footer-brand strong { display: block; margin-top: 10px; font-size: 18px; }
.footer-brand p, .footer-note p { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-phone { display: inline-block; margin-top: 14px; color: #F3C99A !important; font-weight: 800; }
.footer-links h3 { margin: 0 0 12px; color: #F3C99A; font-size: 14px; }
.footer-links a { display: block; padding: 5px 0; color: rgba(255,255,255,.75); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-note { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.22); }
.footer-note .eyebrow { color: #B8D8D6; }
.footer-motif { display: flex; align-items: end; gap: 8px; height: 54px; margin-top: 20px; }
.footer-motif span { display: block; width: 24px; background: var(--accent-2); animation: barFloat 3s ease-in-out infinite; }
.footer-motif span:nth-child(1) { height: 20px; }.footer-motif span:nth-child(2) { height: 38px; animation-delay: .2s; }.footer-motif span:nth-child(3) { height: 28px; animation-delay: .4s; }.footer-motif span:nth-child(4) { height: 48px; animation-delay: .6s; background: #D3954B; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.65); font-size: 12px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.65); }
.beian-police { display: inline-block; margin-left: 8px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 14px; }
.legal-links a { color: rgba(255,255,255,.75); }
.zfkf-float { position: fixed; right: 20px; bottom: 120px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.zfkf-item { position: relative; display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; color: #fff !important; text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: transform .25s; cursor: pointer; }
.zfkf-item:hover { transform: scale(1.08); color: #fff !important; }
.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,.78); color: #fff !important; 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,.5); z-index: 10000; display: none; align-items: center; justify-content: center; }
.zfkf-wechat-mask.zfkf-show { display: flex; }
.zfkf-wechat-box { position: relative; max-width: 80vw; padding: 24px; background: #fff; border-radius: 12px; color: var(--brand); text-align: center; }
.zfkf-wechat-box img { width: 180px; height: 180px; object-fit: contain; border: 1px solid #CBD5E1; border-radius: 8px; }
.zfkf-wechat-noimg { display: flex; align-items: center; justify-content: center; width: 180px; height: 80px; background: #F6F7F9; border-radius: 8px; color: #07C160; font-size: 16px; font-weight: 700; }
.zfkf-wechat-box p { margin: 12px 0 0; color: var(--brand); font-size: 14px; }.zfkf-wechat-close { position: absolute; top: 8px; right: 12px; color: var(--text-light); font-size: 22px; cursor: pointer; line-height: 1; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }.reveal.is-visible { opacity: 1; transform: none; }
.no-js .hero-slide { opacity: 1; visibility: visible; position: relative; }.no-js .hero-slide ~ .hero-slide { display: none; }.no-js .reveal { opacity: 1; transform: none; }
@keyframes nodePulse { 0%,100% { box-shadow: 0 0 0 8px rgba(12,124,134,.12); } 50% { box-shadow: 0 0 0 14px rgba(12,124,134,.02); } }
@keyframes orbitPulse { 0%,100% { transform: scale(1) rotate(0); opacity: .7; } 50% { transform: scale(1.08) rotate(7deg); opacity: 1; } }
@keyframes barFloat { 0%,100% { transform: scaleY(1); transform-origin: bottom; } 50% { transform: scaleY(.72); transform-origin: bottom; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }
@media (max-width: 1100px) { .header-inner { gap: 12px; }.brand { min-width: 185px; }.nav-link { padding-left: 8px; padding-right: 8px; font-size: 13px; }.header-call span { display: none; }.hero-slide-inner { grid-template-columns: 1fr .9fr; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-note { padding-left: 0; border-left: 0; } }
@media (max-width: 900px) { .nav-toggle { display: grid; margin-left: auto; }.header-call { display: none; }.main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; max-height: calc(100vh - 78px); overflow-y: auto; overflow-x: hidden; scrollbar-width: none; -ms-overflow-style: none; background: #fff; border-bottom: 1px solid var(--gray-light); box-shadow: var(--shadow); }.main-nav::-webkit-scrollbar { display: none; }.main-nav.is-open { display: flex; }.nav-link { justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid #E2E8F0; }.nav-item { width: 100%; }.nav-menu { position: static; display: none; width: 100%; padding: 0 14px 8px; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: #F5F2EA; }.nav-item:hover .nav-menu { display: none; }.nav-item.is-open .nav-menu { display: block; }.nav-menu a { padding: 10px 14px; }.hero-slide-inner { grid-template-columns: 1fr; min-height: 0; padding: 70px 0 100px; }.hero-copy { max-width: none; }.hero-visual { min-height: 270px; }.hero h1 { max-width: 700px; }.narrative-grid, .contact-grid, .content-layout { grid-template-columns: 1fr; }.biz-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }.biz-card:first-child { grid-row: auto; }.biz-card:first-child, .biz-card:nth-child(3) { transform: none; }.process-grid, .list-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }.news-grid { grid-template-columns: repeat(2, 1fr); }.news-feature { grid-row: auto; }.sitemap-groups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .container { width: min(var(--container), calc(100% - 32px)); }.header-inner { min-height: 66px; }.brand-copy strong { font-size: 15px; }.hero-slide-inner { padding-top: 56px; }.hero h1 { font-size: 38px; }.hero-lead { font-size: 16px; }.hero-visual { min-height: 220px; }.hero-stamp { width: 82px; height: 82px; left: -8px; font-size: 9px; }.hero-stamp strong { font-size: 15px; }.narrative, .section, .page-content { padding: 54px 0; }.narrative-copy, .section-head, .cta-inner { grid-template-columns: 1fr; display: grid; align-items: start; }.section-head { gap: 14px; }.biz-grid, .process-grid, .list-grid, .case-grid, .news-grid, .process-page-grid, .sitemap-groups { grid-template-columns: 1fr; }.biz-card:first-child { grid-row: auto; }.stats-grid { grid-template-columns: 1fr 1fr; }.stat { min-height: 100px; padding: 12px 8px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.24); }.stat:nth-child(2) { border-right: 0; }.stat strong { font-size: 24px; }.stat svg { width: 24px; height: 24px; }.service-row { grid-template-columns: 48px 1fr; gap: 14px; }.service-row .btn { grid-column: 2; justify-self: start; }.form-row { grid-template-columns: 1fr; gap: 0; }.detail__nav { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }.footer-brand, .footer-note { grid-column: 1 / -1; }.footer-bottom { display: grid; margin-top: 32px; }.zfkf-float { right: 10px; bottom: 100px; }.zfkf-item { width: 42px; height: 42px; }.zfkf-tip { display: none; } }

/* ===== 内容页侧边栏（detail layout + aside） ===== */
.detail-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:34px;align-items:start}
.detail-main{min-width:0}
.detail-shell{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:34px;box-shadow:var(--shadow-soft)}
.detail-meta{display:flex;gap:16px;color:var(--text-soft);font-size:13px;margin-bottom:20px;padding-bottom:14px;border-bottom:1px solid var(--gray-light)}
.detail__content{font-size:15.5px;line-height:1.9;color:var(--text);overflow-wrap:break-word}
.detail__content img{max-width:100%;height:auto}
.detail__content h2{font-size:22px;margin:26px 0 12px}
.detail__content h3{font-size:18px;margin:22px 0 10px}
.detail__content p{margin:0 0 14px}
.detail__nav{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:30px;padding-top:20px;border-top:1px solid var(--gray-light)}
.detail__nav-cell{display:flex;flex-direction:column;gap:5px;padding:14px 16px;background:var(--bg,#F7F6F0);border:1px solid var(--border);border-radius:var(--radius);text-decoration:none;color:var(--text);transition:border-color .2s,transform .2s}
.detail__nav-cell:hover{border-color:var(--accent,var(--teal,var(--brick,var(--blue,#123B5D))));transform:translateY(-2px)}
.detail__nav-cell small{color:var(--text-soft);font-size:12px}
.detail__nav-cell strong{font-size:14px;line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.detail-aside{position:sticky;top:96px;display:flex;flex-direction:column;gap:20px}
.aside-box{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow-soft)}
.aside-box h3{margin:0 0 14px;font-size:16px;color:var(--text);padding-left:10px;border-left:3px solid var(--accent,var(--teal,var(--brick,var(--blue,#123B5D))))}
.aside-biz{display:flex;flex-direction:column;gap:10px}
.aside-biz__item{display:flex;flex-direction:column;gap:3px;padding:12px 14px;background:var(--bg,#F7F6F0);border:1px solid var(--border);border-radius:var(--radius);text-decoration:none;transition:border-color .2s,transform .2s}
.aside-biz__item:hover{border-color:var(--accent,var(--teal,var(--brick,var(--blue,#123B5D))));transform:translateX(3px)}
.aside-biz__item strong{font-size:14.5px;color:var(--text)}
.aside-biz__item span{font-size:12px;color:var(--text-soft);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.aside-news{display:flex;flex-direction:column}
.aside-news__item{display:flex;flex-direction:column;gap:3px;padding:11px 2px;border-bottom:1px dashed var(--gray-light);text-decoration:none}
.aside-news__item:last-child{border-bottom:0}
.aside-news__item strong{font-size:13.5px;font-weight:500;color:var(--text);line-height:1.55;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.aside-news__item time{font-size:12px;color:var(--text-soft)}
.aside-news__item:hover strong{color:var(--accent,var(--teal,var(--brick,var(--blue,#123B5D))))}
@media (max-width:1024px){.detail-layout{grid-template-columns:1fr}.detail-aside{position:static;flex-direction:row;flex-wrap:wrap}.detail-aside .aside-box{flex:1 1 280px}}

/* ===== 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}}
