/* ==========================================================================
   西科创业官网 · 设计系统
   方向：设备实拍为主、选型导向。冷灰白底 + 深钢蓝 + 工业橙；型号与参数用等宽字体。
   移动优先；断点 480 / 768 / 1024 / 1280。
   ========================================================================== */

/* ---------- 1. 令牌 ---------- */
:root {
  --bg: #F3F5F7; --surface: #FFFFFF; --surface-2: #E9EDF1; --surface-3: #DEE3E8;
  --dark: #14181D; --dark-2: #1E242B; --on-dark: #E6EAEE; --on-dark-2: #9AA4AE;
  --ink: #0F1419; --ink-2: #2A3340; --ink-3: #4B5763; --muted: #6B7785; --line: #D9DFE6; --line-2: #EDF0F3;
  --primary: #1B3A5C; --primary-600: #234B77; --primary-100: #E4ECF5; --primary-050: #F1F5FA;
  --accent: #F05A28; --accent-600: #D4491B; --accent-100: #FDE9E1;
  --ok: #1E7F4F; --ok-bg: #E6F4EC; --warn: #B45309; --warn-bg: #FEF3E2; --err: #B42318; --err-bg: #FDECEC; --info: #1B3A5C; --info-bg: #E4ECF5;
  --sans: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", "Courier New", monospace;
  --fs-xs: .75rem; --fs-sm: .875rem; --fs-base: 1rem; --fs-lg: 1.125rem;
  --fs-xl: clamp(1.25rem, 1.1rem + .7vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  --fs-3xl: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem);
  --fs-4xl: clamp(1.9rem, 1.3rem + 2.2vw, 3rem);
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem; --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;
  --radius: 6px; --radius-lg: 10px; --container: 1280px; --measure: 68ch;
  --shadow-1: 0 1px 2px rgba(15, 20, 25, .06); --shadow-2: 0 8px 24px rgba(15, 20, 25, .10); --shadow-3: 0 16px 48px rgba(15, 20, 25, .16);
  --header-h: 64px;
}

/* ---------- 2. 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body { margin: 0; overflow-x: clip; font-family: var(--sans); font-size: var(--fs-base); line-height: 1.65; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent-600); }
h1, h2, h3, h4 { margin: 0 0 var(--sp-3); line-height: 1.25; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: var(--fs-3xl); } h2 { font-size: var(--fs-2xl); } h3 { font-size: var(--fs-lg); } h4 { font-size: var(--fs-base); }
p { margin: 0 0 var(--sp-4); } ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.3em; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; vertical-align: top; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: var(--sp-4); top: -60px; z-index: 200; background: var(--accent); color: #fff; padding: var(--sp-2) var(--sp-4); border-radius: var(--radius); }
.skip-link:focus { top: var(--sp-3); color: #fff; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.small { font-size: var(--fs-sm); } .muted { color: var(--muted); }
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-4); }
.narrow { max-width: 900px; }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--accent-600); margin-bottom: var(--sp-2); font-weight: 600; }
.lead { font-size: var(--fs-lg); color: var(--ink-2); max-width: var(--measure); }
.note { background: var(--surface-2); border-left: 3px solid var(--line); padding: var(--sp-3) var(--sp-4); border-radius: 0 var(--radius) var(--radius) 0; color: var(--ink-2); margin: var(--sp-4) 0; }
.note--info { background: var(--info-bg); border-color: var(--primary); }
.prose { max-width: var(--measure); }
.prose p { color: var(--ink-2); }
.prose h2 { font-size: var(--fs-xl); margin-top: var(--sp-6); }
.prose h3 { margin-top: var(--sp-5); }
.prose table { font-size: var(--fs-sm); }
.prose th, .prose td { padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--line); }
.prose th { background: var(--surface-2); }
.prose blockquote { margin: var(--sp-4) 0; padding: var(--sp-3) var(--sp-4); border-left: 3px solid var(--accent); background: var(--surface); }
.prose code { font-family: var(--mono); font-size: .9em; background: var(--surface-2); padding: .1em .35em; border-radius: 3px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 var(--sp-4); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.table-wrap table { margin: 0; }

/* ---------- 3. 布局 ---------- */
.section { padding: var(--sp-7) 0; }
.section-sm { padding: var(--sp-5) 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.section-dark { background: var(--dark); color: var(--on-dark); }
.section-dark h2, .section-dark h3, .section-dark .section-title { color: #fff; }
.section-dark .section-lead, .section-dark p { color: var(--on-dark-2); }
.section-dark a { color: #fff; } .section-dark a:hover { color: var(--accent); }
.grid { display: grid; gap: var(--sp-4); grid-template-columns: minmax(0, 1fr); }
.grid > *, .split > *, .product-main, .std-main, .article-body { min-width: 0; }
@media (min-width: 480px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.split { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .split--wide { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); } }
.side-stack { display: grid; gap: var(--sp-4); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.section-title { margin: 0; }
.section-lead { color: var(--ink-3); margin: var(--sp-2) 0 0; max-width: var(--measure); }
.section-link { white-space: nowrap; font-weight: 600; display: inline-flex; align-items: center; gap: var(--sp-1); }
.section-title-sm { font-size: var(--fs-lg); margin: var(--sp-4) 0 var(--sp-3); }
.link-arrow { display: inline-flex; align-items: center; gap: var(--sp-1); font-weight: 600; }
.jump-nav { display: flex; gap: var(--sp-2); flex-wrap: wrap; padding: var(--sp-3) 0; border-bottom: 1px solid var(--line); margin-bottom: var(--sp-2); }
.jump-nav a { font-size: var(--fs-sm); padding: var(--sp-1) var(--sp-3); border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); }
.jump-nav a:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- 4. 按钮 / 芯片 / 角标 ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2); padding: .6rem 1.1rem; border-radius: var(--radius); border: 1px solid transparent; font-weight: 600; font-size: var(--fs-sm); line-height: 1.2; white-space: nowrap; transition: background .15s, color .15s, border-color .15s; }
.btn-lg { padding: .8rem 1.4rem; font-size: var(--fs-base); }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-600); color: #fff; }
.btn-primary { background: var(--primary); color: #fff; } .btn-primary:hover { background: var(--primary-600); color: #fff; }
.btn-ghost { background: var(--surface); border-color: var(--line); color: var(--ink); } .btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.section-dark .btn-ghost, .cta-band .btn-ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-link { background: none; color: var(--primary); padding-left: 0; padding-right: 0; }
.btn-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin: var(--sp-4) 0; }
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip { display: inline-flex; align-items: center; gap: .35em; font-family: var(--mono); font-size: var(--fs-xs); padding: .3em .7em; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); line-height: 1.4; }
a.chip:hover, .chip--link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-050); }
.chip--link { border-color: var(--primary-100); background: var(--primary-050); color: var(--primary); }
.chip--plain { background: var(--surface-2); border-color: transparent; }
.chip--dark { background: var(--dark-2); border-color: rgba(255,255,255,.12); color: var(--on-dark); }
.chips--sm .chip { font-size: .7rem; padding: .2em .55em; }
.chips--lg .chip { font-family: var(--sans); font-size: var(--fs-sm); padding: .45em .9em; }
.chip .count { font-family: var(--mono); color: var(--muted); font-size: .85em; }
.filter-chips { margin-bottom: var(--sp-4); }
.filter-chips .chip { font-family: var(--sans); font-size: var(--fs-sm); padding: .45em .9em; cursor: pointer; }
.filter-chips .chip.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-chips .chip.is-active .count { color: rgba(255,255,255,.7); }
.badge { display: inline-block; font-size: var(--fs-xs); padding: .15em .55em; border-radius: 4px; background: var(--surface-2); color: var(--ink-3); font-weight: 600; line-height: 1.5; }
.badge-software { background: var(--primary-100); color: var(--primary); }
.badge-service, .badge-lab { background: var(--warn-bg); color: var(--warn); }
.badge-series { background: var(--surface-3); color: var(--ink-2); }
.count { font-family: var(--mono); font-size: var(--fs-xs); color: var(--muted); }

/* ---------- 5. 页头 ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--surface); border-bottom: 1px solid var(--line); }
.site-header.is-scrolled { box-shadow: var(--shadow-2); }
.header-row { display: flex; align-items: center; gap: var(--sp-3); height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--ink); flex: none; }
.logo img { width: 36px; height: 36px; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; }
.logo-sub { font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.logo--light { color: #fff; } .logo--light .logo-sub { color: var(--on-dark-2); }
.main-nav { display: none; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.main-nav { position: relative; }
.main-nav li { position: static; }
.main-nav li > a { display: inline-flex; align-items: center; gap: 2px; white-space: nowrap; padding: 0 .55rem; height: var(--header-h); color: var(--ink-2); font-weight: 600; font-size: var(--fs-sm); border-bottom: 3px solid transparent; }
.main-nav li > a:hover, .main-nav li.is-current > a { color: var(--primary); border-bottom-color: var(--accent); }
.nav-caret { transform: rotate(90deg); color: var(--muted); }
.search-box { position: relative; display: none; align-items: center; margin-left: auto; }
.search-box input { width: 170px; height: 40px; padding: 0 40px 0 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); transition: width .2s; }
.search-box input:focus { width: 170px; background: var(--surface); border-color: var(--primary); outline: none; }
.search-box button { position: absolute; right: 4px; top: 4px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: transparent; color: var(--ink-3); display: inline-flex; align-items: center; justify-content: center; }
.search-box button:hover { background: var(--surface-2); }
.header-phone { display: none; flex-direction: column; line-height: 1.15; color: var(--ink); text-align: right; }
.header-phone-label { font-size: .65rem; color: var(--muted); letter-spacing: .06em; }
.header-phone-num { font-family: var(--mono); font-weight: 700; font-size: 1.05rem; }
.header-cta { display: none; }
.lang-switch { display: inline-flex; align-items: center; gap: 4px; font-size: var(--fs-xs); font-weight: 600; color: var(--ink-3); padding: .35rem .5rem; border: 1px solid var(--line); border-radius: 999px; }
.nav-toggle { margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--surface); max-height: calc(100vh - var(--header-h)); overflow-y: auto; padding: var(--sp-4); }
.mobile-nav[hidden] { display: none; }
.search-box--mobile { display: flex; margin: 0 0 var(--sp-4); }
.search-box--mobile input { width: 100%; }
.search-box--mobile input:focus { width: 100%; }
.mobile-list { list-style: none; margin: 0; padding: 0; }
.mobile-list > li > a { display: block; padding: var(--sp-3) 0; font-weight: 700; font-size: var(--fs-lg); border-bottom: 1px solid var(--line-2); color: var(--ink); }
.mobile-sub { list-style: none; margin: 0 0 var(--sp-2); padding: var(--sp-2) 0 var(--sp-2) var(--sp-3); display: grid; grid-template-columns: 1fr 1fr; gap: 2px var(--sp-3); }
.mobile-sub a { display: flex; justify-content: space-between; gap: var(--sp-2); padding: .4rem 0; color: var(--ink-2); font-size: var(--fs-sm); }
.mobile-contact { display: grid; gap: var(--sp-2); padding-top: var(--sp-4); }
.mobile-contact a { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--ink-2); }
html.nav-open { overflow: hidden; }
@media (min-width: 1600px) {
  .main-nav { display: block; }
  .search-box { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}
@media (min-width: 1440px) { .header-phone { display: flex; } }
@media (min-width: 1600px) { .header-row { max-width: 1600px; } }
@media (min-width: 1680px) { .header-cta { display: inline-flex; } }
/* 大型菜单 */
.mega { display: none; position: absolute; left: 0; top: 100%; width: 940px; max-width: calc(100vw - 2rem); background: var(--surface); border: 1px solid var(--line); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-3); padding: var(--sp-5); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s; z-index: 50; }
.has-mega:hover .mega, .has-mega:focus-within .mega { display: block; opacity: 1; visibility: visible; transform: none; animation: mega-in .15s ease-out; }
@keyframes mega-in { from { opacity: 0; transform: translateY(6px); } }
.mega-inner { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .7fr); gap: var(--sp-5); }
.mega-title { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-2); padding-bottom: var(--sp-2); border-bottom: 1px solid var(--line-2); }
.mega-list { list-style: none; margin: 0; padding: 0; }
.mega-list a { display: flex; align-items: center; gap: var(--sp-2); padding: .3rem .4rem; border-radius: var(--radius); color: var(--ink-2); font-size: var(--fs-sm); }
.mega-list a:hover { background: var(--primary-050); color: var(--primary); }
.mega-thumb { flex: none; width: 40px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: var(--surface-2); border-radius: 4px; overflow: hidden; color: var(--muted); }
.mega-thumb img { width: 100%; height: 100%; object-fit: contain; }
.mega-text { display: flex; flex-direction: column; line-height: 1.25; }
.mega-count { font-family: var(--mono); font-size: .65rem; color: var(--muted); }
.mega-aside { display: flex; flex-direction: column; gap: var(--sp-2); border-left: 1px solid var(--line-2); padding-left: var(--sp-4); }
.mega-all { font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.mega-link { color: var(--ink-2); font-size: var(--fs-sm); }

/* 搜索下拉 */
.search-drop { position: absolute; top: calc(100% + 6px); left: 0; right: 0; min-width: 340px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-3); z-index: 60; overflow: hidden; }
.search-drop[hidden] { display: none; }
.sr-item { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-2) var(--sp-3); color: var(--ink); border-bottom: 1px solid var(--line-2); }
.sr-item:hover, .sr-item.is-active { background: var(--primary-050); color: var(--primary); }
.sr-thumb { flex: none; width: 48px; height: 48px; background: var(--surface-2); border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; }
.sr-thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.sr-type { font-family: var(--mono); font-size: .6rem; color: var(--muted); text-align: center; padding: 2px; }
.sr-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.sr-title { font-size: var(--fs-sm); } .sr-title b { font-family: var(--mono); color: var(--primary); }
.sr-meta { font-size: var(--fs-xs); color: var(--muted); }
.sr-more, .sr-empty, .sr-count { display: block; padding: var(--sp-2) var(--sp-3); font-size: var(--fs-sm); }
.sr-more { font-weight: 600; background: var(--surface-2); }
.search-results { margin: var(--sp-4) 0 var(--sp-6); }
.sr-item--page { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: var(--sp-2); background: var(--surface); }
.search-page-form { margin-bottom: var(--sp-4); }

/* ---------- 6. 面包屑 / 页面标题 ---------- */
.crumbs { background: var(--surface); border-bottom: 1px solid var(--line-2); font-size: var(--fs-sm); }
.crumbs ol { list-style: none; margin: 0; padding: var(--sp-2) 0; display: flex; flex-wrap: wrap; gap: var(--sp-1); color: var(--muted); }
.crumbs li + li::before { content: "/"; margin: 0 var(--sp-2); color: var(--line); }
.crumbs li[aria-current] { color: var(--ink-2); font-weight: 600; }
.page-header { background: var(--surface); border-bottom: 1px solid var(--line); padding: var(--sp-6) 0; }
.page-header-inner { display: grid; gap: var(--sp-5); align-items: center; }
.page-header h1 { margin-bottom: var(--sp-3); }
.page-header .lead { margin-bottom: 0; }
.page-header-img { max-width: 380px; }
@media (min-width: 1024px) { .page-header-inner { grid-template-columns: 1fr auto; } .page-header-aside { justify-self: end; } }

/* ---------- 7. 图片盒与卡片 ---------- */
.ph { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; display: block; }
.ph img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.ph-4x3 { aspect-ratio: 4 / 3; } .ph-1x1 { aspect-ratio: 1 / 1; } .ph-16x9 { aspect-ratio: 16 / 9; }
.ph-empty { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-2); color: var(--muted); font-size: var(--fs-xs); background: repeating-linear-gradient(45deg, var(--surface-2) 0 8px, var(--bg) 8px 16px); }
.ph--failed img { visibility: hidden; }
.ph--failed::after { content: ""; position: absolute; inset: 0; background: var(--surface-2); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s, border-color .15s; }
.card:hover { box-shadow: var(--shadow-2); border-color: var(--surface-3); }
.card-media { border-bottom: 1px solid var(--line-2); border-radius: 0; }
.card-brand { position: absolute; left: 8px; top: 8px; font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; padding: .2em .5em; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 3px; color: var(--ink-3); }
.card-body { padding: var(--sp-3) var(--sp-4) var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.card-meta { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.model { font-family: var(--mono); font-weight: 700; color: var(--primary); font-size: var(--fs-sm); }
.card-cat { font-size: var(--fs-xs); color: var(--muted); }
.card-title { font-size: var(--fs-base); margin: 0; line-height: 1.35; }
.card-title a { color: var(--ink); } .card-title a:hover { color: var(--primary); }
.card-title a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card .chips, .card .card-foot, .card .btn { position: relative; z-index: 1; }
.card-desc { color: var(--ink-3); font-size: var(--fs-sm); margin: 0; }
.card-params { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin: 0; font-size: var(--fs-xs); }
.card-params dt { color: var(--muted); } .card-params dd { margin: 0; font-family: var(--mono); color: var(--ink); font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; gap: var(--sp-3); align-items: baseline; font-size: var(--fs-xs); }
.card-foot .count { white-space: nowrap; }
.card-models { font-family: var(--mono); color: var(--ink-3); text-align: right; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card--service .card-media, .card--lab .card-media { background: var(--surface-2); }
.solution-card { padding: var(--sp-4); gap: var(--sp-2); color: var(--ink); }
.solution-card:hover { color: var(--ink); }
.solution-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--primary-100); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.solution-card .card-title { margin-top: var(--sp-1); }
.solution-card .chips { margin-top: auto; }
.area-card { padding: var(--sp-4); gap: var(--sp-2); color: var(--ink); }
.area-icon { color: var(--accent); }
.doc-card { padding: var(--sp-4); gap: var(--sp-2); }
.doc-icon { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--primary); font-family: var(--mono); font-size: var(--fs-xs); }
.doc-card .btn { margin-top: auto; align-self: flex-start; }
.cat-group + .cat-group { margin-top: var(--sp-6); }
.cat-group-title { font-size: var(--fs-base); color: var(--ink-3); margin-bottom: var(--sp-3); padding-bottom: var(--sp-2); border-bottom: 1px solid var(--line); }

/* ---------- 8. 首页 ---------- */
.hero { background: var(--surface); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; gap: var(--sp-5); padding-top: var(--sp-6); padding-bottom: var(--sp-6); align-items: center; }
.hero h1 { font-size: var(--fs-4xl); margin-bottom: var(--sp-3); letter-spacing: -.02em; }
.hero .lead { margin-bottom: var(--sp-5); }
.hero-search { position: relative; display: flex; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 4px 4px 4px 14px; max-width: 620px; }
.hero-search:focus-within { border-color: var(--primary); background: var(--surface); box-shadow: 0 0 0 4px var(--primary-100); }
.hero-search-icon { color: var(--muted); flex: none; }
.hero-search input { flex: 1; min-width: 0; height: 44px; border: 0; background: transparent; padding: 0 var(--sp-3); }
.hero-search input:focus { outline: none; }
.hero-search .btn { border-radius: 999px; }
.hero-search .search-drop { left: 0; right: 0; top: calc(100% + 8px); }
.hero-entries { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin-top: var(--sp-4); }
.hero-entries a { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 600; color: var(--ink-2); padding: var(--sp-2) 0; }
.hero-entries a:hover { color: var(--primary); }
.hero-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 1fr; gap: var(--sp-3); }
.hero-tile { border: 1px solid var(--line); aspect-ratio: auto; min-height: 120px; }
.hero-tile { aspect-ratio: 3 / 4; padding-bottom: 64px; }
.hero-tile img { height: 100%; object-fit: contain; }
.hero-brand { font-size: .65rem; font-weight: 700; color: var(--muted); }
.hero-tile-label { position: absolute; left: 10px; bottom: 8px; display: flex; flex-direction: column; line-height: 1.2; font-size: var(--fs-xs); color: var(--ink-3); background: rgba(255,255,255,.88); padding: 4px 8px; border-radius: 4px; }
.hero-tile-label b { font-family: var(--mono); color: var(--primary); }
.stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); padding-top: var(--sp-4); padding-bottom: var(--sp-5); border-top: 1px solid var(--line-2); }
.stat-strip div { display: flex; flex-direction: column; line-height: 1.2; }
.stat-strip b { font-family: var(--mono); font-size: var(--fs-2xl); color: var(--primary); }
.stat-strip span { font-size: var(--fs-sm); color: var(--muted); }
@media (min-width: 768px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; padding-top: var(--sp-8); padding-bottom: var(--sp-7); } .hero-media { min-height: 420px; } }
.std-groups { display: grid; gap: var(--sp-4); }
.std-group { display: grid; gap: var(--sp-2); padding: var(--sp-3) 0; border-bottom: 1px solid var(--line-2); }
.std-group-name { font-weight: 700; color: var(--ink-2); font-size: var(--fs-sm); }
@media (min-width: 768px) { .std-group { grid-template-columns: 220px 1fr; align-items: start; } }
.brand-rows { display: grid; gap: var(--sp-5); }
.brand-row { display: grid; gap: var(--sp-4); padding: var(--sp-5); background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); }
.brand-logo { display: inline-block; margin-bottom: var(--sp-3); }
.brand-logo img { height: 40px; width: auto; }
.brand-logo--light img { filter: none; }
.brand-row .brand-logo img[src$=".png"] { background: #fff; padding: 6px 10px; border-radius: 4px; }
.brand-wordmark { font-weight: 800; font-size: var(--fs-xl); }
.brand-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.brand-thumbs .ph { border: 1px solid var(--line); }
.brand-thumbs span { position: absolute; left: 6px; bottom: 6px; font-family: var(--mono); font-size: .65rem; background: rgba(255,255,255,.9); color: var(--primary); padding: 2px 6px; border-radius: 3px; font-weight: 700; }
.brand-thumbs--light .ph { border-color: var(--line); }
@media (min-width: 768px) { .brand-row { grid-template-columns: 1fr 1fr; align-items: center; } }
.value-grid .value-item { padding: var(--sp-4); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); color: var(--ink-2); }
.value-item svg { color: var(--accent); margin-bottom: var(--sp-3); }
.value-item h3 { font-size: var(--fs-base); }
.value-item p { font-size: var(--fs-sm); margin: 0; color: var(--ink-3); }
.post-list { display: grid; gap: 0; }
.post-item { display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); }
.post-date { display: flex; flex-direction: column; line-height: 1.1; color: var(--muted); font-family: var(--mono); font-size: var(--fs-xs); }
.post-date b { font-size: var(--fs-xl); color: var(--primary); }
.post-title { font-size: var(--fs-lg); margin: 0 0 var(--sp-1); } .post-title a { color: var(--ink); } .post-title a:hover { color: var(--primary); }
.post-summary { color: var(--ink-3); font-size: var(--fs-sm); margin-bottom: var(--sp-2); }

/* ---------- 9. 产品详情 ---------- */
.product-hero { background: var(--surface); border-bottom: 1px solid var(--line); padding: var(--sp-5) 0; }
.product-hero-grid { display: grid; gap: var(--sp-5); }
.product-media { border: 1px solid var(--line); max-width: 560px; }
.product-kicker { font-size: var(--fs-sm); color: var(--muted); display: flex; gap: var(--sp-2); align-items: center; flex-wrap: wrap; margin-bottom: var(--sp-2); }
.product-model { font-family: var(--mono); font-weight: 800; font-size: var(--fs-2xl); color: var(--primary); letter-spacing: -.01em; }
.product-summary h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }
.key-params { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2) var(--sp-4); margin: var(--sp-4) 0; padding: var(--sp-4); background: var(--bg); border-radius: var(--radius-lg); }
.key-params dt { font-size: var(--fs-xs); color: var(--muted); }
.key-params dd { margin: 0; font-family: var(--mono); font-weight: 700; font-size: var(--fs-lg); color: var(--ink); line-height: 1.3; }
.product-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; margin: var(--sp-4) 0; }
.product-standards { display: flex; gap: var(--sp-2); align-items: baseline; flex-wrap: wrap; margin-bottom: var(--sp-3); }
.product-standards .label { font-size: var(--fs-xs); color: var(--muted); white-space: nowrap; }
.product-brandline { color: var(--muted); margin: 0; }
@media (min-width: 1024px) { .product-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); align-items: start; } .key-params { grid-template-columns: repeat(4, 1fr); } }
.anchor-nav { position: sticky; top: var(--header-h); z-index: 40; background: var(--surface); border-bottom: 1px solid var(--line); }
.anchor-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.anchor-nav a { display: block; padding: var(--sp-3) var(--sp-3); font-size: var(--fs-sm); font-weight: 600; color: var(--ink-3); white-space: nowrap; border-bottom: 3px solid transparent; }
.anchor-nav a.is-active, .anchor-nav a:hover { color: var(--primary); border-bottom-color: var(--accent); }
.product-layout, .std-layout, .article-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-6); padding-top: var(--sp-6); padding-bottom: var(--sp-6); align-items: start; }
@media (min-width: 1024px) { .product-layout, .std-layout, .article-layout { grid-template-columns: minmax(0, 1fr) 320px; } .product-side, .article-side { position: sticky; top: calc(var(--header-h) + 56px); } }
.block { margin-bottom: var(--sp-7); }
.block h2 { font-size: var(--fs-xl); padding-bottom: var(--sp-2); border-bottom: 2px solid var(--line); margin-bottom: var(--sp-4); }
.block-inquiry { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-5); }
.block-inquiry h2 { border: 0; margin-bottom: var(--sp-1); }
.check-list { list-style: none; padding: 0; display: grid; gap: var(--sp-2); }
.check-list li { position: relative; padding-left: 1.5em; color: var(--ink-2); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: .8em; height: .8em; border-radius: 50%; background: var(--accent-100); border: 2px solid var(--accent); }
.app-grid { list-style: none; padding: 0; display: grid; gap: var(--sp-2); grid-template-columns: 1fr; }
.app-grid li { padding: var(--sp-3) var(--sp-4); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-2); font-size: var(--fs-sm); }
@media (min-width: 640px) { .app-grid { grid-template-columns: 1fr 1fr; } }
.spec-table th { width: 36%; background: var(--surface-2); font-weight: 600; color: var(--ink-2); }
.spec-table th, .spec-table td { padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--line-2); font-size: var(--fs-sm); }
.spec-table td { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.compare-table { font-size: var(--fs-sm); min-width: 640px; }
.compare-table th, .compare-table td { padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--line-2); white-space: nowrap; }
.compare-table thead th { background: var(--surface-2); color: var(--ink-2); font-weight: 600; position: sticky; top: 0; }
.compare-table tbody th { font-family: var(--mono); font-weight: 700; background: var(--surface); position: sticky; left: 0; z-index: 1; box-shadow: 1px 0 0 var(--line); }
.compare-table td { font-family: var(--mono); font-variant-numeric: tabular-nums; max-width: 260px; white-space: normal; }
.compare-table tr.is-current th, .compare-table tr.is-current td { background: var(--accent-100); }
.compare-group th { background: var(--primary-050) !important; color: var(--primary); font-family: var(--sans) !important; font-weight: 700; position: static !important; }
.tag-current { display: inline-block; margin-left: .4em; font-family: var(--sans); font-size: .65rem; font-weight: 600; color: var(--accent-600); background: #fff; border: 1px solid var(--accent); padding: 0 .4em; border-radius: 3px; vertical-align: middle; }
.scroll-hint { display: inline-flex; align-items: center; gap: 4px; color: var(--muted); margin: var(--sp-2) 0 0; }
.scroll-hint[hidden] { display: none; }
.std-table th, .std-table td, .matrix-table th, .matrix-table td { padding: var(--sp-3); border-bottom: 1px solid var(--line-2); font-size: var(--fs-sm); }
.std-table thead th, .matrix-table thead th { background: var(--surface-2); font-weight: 600; }
.std-table tbody th, .matrix-table tbody th { font-family: var(--mono); white-space: nowrap; font-weight: 700; }
.std-table tbody th .small, .matrix-table tbody th .small { font-family: var(--sans); font-weight: 400; }
.matrix-table { min-width: 720px; }
.model-link { display: inline-block; font-family: var(--mono); font-weight: 600; margin: 0 .6em .2em 0; }
.std-equipment { margin-bottom: var(--sp-5); }
.std-equipment h3 { margin-bottom: var(--sp-3); }
.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-4); }
.side-card h2, .side-card h3 { font-size: var(--fs-base); margin-bottom: var(--sp-3); }
.side-card p { font-size: var(--fs-sm); color: var(--ink-2); }
.side-list { list-style: none; padding: 0; margin: 0 0 var(--sp-3); display: grid; gap: 2px; }
.side-list a { display: block; padding: .35rem 0; border-bottom: 1px solid var(--line-2); font-size: var(--fs-sm); color: var(--ink-2); }
.side-list a:hover { color: var(--primary); }
.side-list b { font-family: var(--mono); color: var(--primary); }
.contact-card { background: var(--primary); color: #fff; border-color: var(--primary); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card p { color: rgba(255,255,255,.85); }
.contact-list { margin: 0 0 var(--sp-4); display: grid; gap: var(--sp-2); }
.contact-list div { display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-2); font-size: var(--sp-4); }
.contact-list dt { font-size: var(--fs-xs); opacity: .8; padding-top: .15em; }
.contact-list dd { margin: 0; font-family: var(--mono); font-weight: 600; word-break: break-all; }
.contact-list a { color: inherit; }
.contact-card--primary .contact-list dd { color: #fff; }
.contact-card .btn-accent { margin-top: var(--sp-2); }
.qr-card img { border: 1px solid var(--line); border-radius: var(--radius); }
.office-list { list-style: none; padding: 0; margin: 0; }
.office-list li { display: flex; justify-content: space-between; gap: var(--sp-3); padding: .4rem 0; border-bottom: 1px solid var(--line-2); font-size: var(--fs-sm); }
.office-list a { font-family: var(--mono); }
.intro-prose { padding: var(--sp-5) 0 0; }
.guide-list, .pain-list { list-style: none; padding: 0; display: grid; gap: var(--sp-3); counter-reset: g; }
.guide-list li, .pain-list li { display: grid; grid-template-columns: 36px 1fr; gap: var(--sp-3); align-items: start; padding: var(--sp-3) var(--sp-4); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.guide-list p, .pain-list p { margin: 0; color: var(--ink-2); }
.guide-num { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--mono); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-size: var(--fs-sm); }
.lab-block { margin-top: var(--sp-6); }

/* ---------- 10. FAQ / CTA / 表单 ---------- */
.faq-list { display: grid; gap: var(--sp-2); }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; }
.faq-item summary { cursor: pointer; padding: var(--sp-3) var(--sp-4); font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: var(--sp-3); align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--mono); color: var(--muted); font-size: 1.2em; flex: none; }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--primary); }
.faq-body { padding: 0 var(--sp-4) var(--sp-4); color: var(--ink-2); font-size: var(--fs-sm); }
.faq-body p:last-child { margin-bottom: 0; }
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, #0F2440 100%); color: #fff; padding: var(--sp-7) 0; }
.cta-inner { display: grid; gap: var(--sp-4); align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: var(--measure); }
.cta-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1fr auto; } }
.inquiry-form { display: grid; gap: var(--sp-3); }
.field { display: grid; gap: var(--sp-1); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); }
.req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; padding: .65rem .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px var(--primary-100); }
.field input[readonly] { background: var(--surface-2); font-family: var(--mono); }
.field-row { display: grid; gap: var(--sp-3); }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); }
.form-result { margin: 0; padding: var(--sp-2) var(--sp-3); border-radius: var(--radius); border-left: 3px solid; font-size: var(--fs-sm); flex: 1; }
.form-result[hidden] { display: none; }
.form-result.is-ok { background: var(--ok-bg); border-color: var(--ok); color: var(--ok); }
.form-result.is-warn { background: var(--warn-bg); border-color: var(--warn); color: var(--warn); }
.form-result.is-info { background: var(--info-bg); border-color: var(--info); color: var(--info); }
.form-result-link { font-weight: 700; text-decoration: underline; color: inherit; }

/* ---------- 11. 服务 / 文章 / 区域 / 品牌 ---------- */
.service-list { display: grid; gap: var(--sp-5); }
.service-item { display: grid; gap: var(--sp-3); padding: var(--sp-5); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); scroll-margin-top: calc(var(--header-h) + 12px); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--primary-100); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.service-body h2 { font-size: var(--fs-xl); }
.small-title { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: var(--sp-4); }
@media (min-width: 768px) { .service-item { grid-template-columns: 56px 1fr; gap: var(--sp-5); } }
.article-head { padding-top: var(--sp-6); }
.article-head h1 { font-size: var(--fs-3xl); }
.article-meta { color: var(--muted); font-size: var(--fs-sm); }
.article-body { max-width: 760px; font-size: 1.0625rem; }
.article-body h2 { scroll-margin-top: calc(var(--header-h) + 16px); }
.toc ol { padding-left: 1.2em; margin: 0; font-size: var(--fs-sm); }
.toc li { margin-bottom: .3em; }
.article-pager { display: flex; justify-content: space-between; gap: var(--sp-4); padding-bottom: var(--sp-6); font-size: var(--fs-sm); }
.post-list--full .post-title { font-size: var(--fs-xl); }
.office-grid .office { display: flex; flex-direction: column; gap: 2px; padding: var(--sp-4); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.office b { font-size: var(--fs-lg); } .office span { color: var(--muted); font-size: var(--fs-sm); } .office a { font-family: var(--mono); font-weight: 600; }
.brand-cards { display: grid; gap: var(--sp-5); }
.brand-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-5); display: grid; gap: var(--sp-3); }
.brand-card-head { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.brand-card .brand-logo img { height: 44px; }
.brand-logo--light img[src$=".svg"] { filter: invert(1) brightness(.2); }
.brand-hero-logo { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
.brand-hero-logo img { height: 48px; width: auto; }
.brand-hero-logo img[src$=".svg"] { filter: invert(1) brightness(.2); }
@media (min-width: 1024px) { .brand-cards { grid-template-columns: 1fr 1fr; } }
.sitemap-cols { display: grid; gap: var(--sp-5); }
@media (min-width: 768px) { .sitemap-cols { grid-template-columns: repeat(3, 1fr); } }
.sitemap-list { list-style: none; padding: 0; font-size: var(--fs-sm); columns: 1; }
.sitemap-list li { padding: .2rem 0; }
.notfound { text-align: left; padding: var(--sp-8) 0; }
.notfound .hero-search { margin: var(--sp-4) 0; }

/* ---------- 12. 页脚 / 移动底栏 / 弹层 ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-2); margin-top: var(--sp-6); padding-bottom: 72px; }
.footer-grid { display: grid; gap: var(--sp-5); padding-top: var(--sp-7); padding-bottom: var(--sp-5); }
.footer-about p { font-size: var(--fs-sm); margin: var(--sp-3) 0; }
.footer-contact { margin: 0; display: grid; gap: var(--sp-2); font-size: var(--fs-sm); }
.footer-contact div { display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-2); }
.footer-contact dt { color: var(--muted); } .footer-contact dd { margin: 0; color: var(--on-dark); font-family: var(--mono); }
.site-footer a { color: var(--on-dark); } .site-footer a:hover { color: var(--accent); }
.footer-col h3 { color: #fff; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--sp-3); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; font-size: var(--fs-sm); }
.qr-box { width: 120px; height: 120px; background: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.qr-placeholder { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--primary); font-size: var(--fs-xs); text-align: center; line-height: 1.3; }
.qr-placeholder--lg { width: 200px; height: 200px; justify-content: center; background: var(--surface-2); border-radius: var(--radius); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); padding: var(--sp-4) var(--sp-4); border-top: 1px solid rgba(255,255,255,.1); font-size: var(--fs-xs); color: var(--muted); }
.footer-brands { margin-left: auto; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } .footer-about { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr .8fr; } .footer-about { grid-column: auto; } .site-footer { padding-bottom: 0; } }
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(15,20,25,.08); padding-bottom: env(safe-area-inset-bottom); }
.mobile-bar-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 8px 4px; font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); border: 0; background: transparent; }
.mobile-bar-primary { color: var(--accent-600); }
@media (min-width: 1024px) { .mobile-bar { display: none; } }
.wechat-dialog { position: fixed; inset: 0; z-index: 150; background: rgba(15,20,25,.6); display: flex; align-items: center; justify-content: center; padding: var(--sp-4); }
.wechat-dialog[hidden] { display: none; }
.wechat-card { position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: var(--sp-5); text-align: center; max-width: 320px; width: 100%; }
.wechat-card img { margin: 0 auto var(--sp-3); }
.wechat-close { position: absolute; right: 8px; top: 8px; border: 0; background: transparent; padding: 6px; color: var(--muted); }
html.dialog-open { overflow: hidden; }

/* ---------- 13. 打印 ---------- */
@media print {
  .site-header, .crumbs, .anchor-nav, .cta-band, .mobile-bar, .site-footer, .product-side, .block-inquiry, .hero-search, .search-box, .jump-nav, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; font-size: 10.5pt; }
  .product-hero-grid, .product-layout { grid-template-columns: 1fr; }
  .product-media { max-width: 300px; }
  .spec-table th { background: #eee !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a { color: inherit; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }

/* User supplied company and partner marks; preserve their original artwork. */
.header-brands { display: flex; align-items: center; gap: 12px; flex: none; }
.company-logo img { width: 168px; height: 56px; object-fit: contain; border-radius: 0; }
.partner-logo { display: inline-flex; flex: none; }
.partner-logo img { width: 88px; height: auto; }
.footer-company-logo { background: white; padding: 4px 12px; border-radius: 6px; }
.footer-company-logo img { width: 216px; height: 72px; }
.solution-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.solution-photo { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; }
.solution-heading .card-title { margin: 0; }
@media (max-width: 1599px) { .header-row { gap: 8px; } .header-brands { gap: 8px; } .lang-switch { margin-left: auto; } .nav-toggle { margin-left: 0; flex: none; } }
@media (min-width: 640px) and (max-width: 1599px) { .header-brands .company-logo img { width: 180px; height: 60px; } .partner-logo img { width: 110px; } }
@media (max-width: 639px) { .header-brands .company-logo img { width: 126px; height: 42px; } .partner-logo img { width: 72px; } }
@media (max-width: 359px) { .header-brands .company-logo img { width: 100px; height: 36px; } .partner-logo img { width: 56px; } .header-row { gap: 6px; } .lang-switch { font-size: 10px; padding: 4px; } }

@media (max-width: 639px) { :root { --header-h: 88px; } .header-brands { display: grid; grid-template-columns: auto auto; row-gap: 0; } .header-brands .company-logo { grid-column: 1 / -1; } }

/* 两位微信联系人：原图完整显示，可点开原尺寸二维码。 */
.wechat-contacts { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wechat-contact { margin: 0; min-width: 0; text-align: center; }
.wechat-qr-link { display: flex; aspect-ratio: 1; background: #fff; padding: 8px; border-radius: var(--radius); align-items: center; justify-content: center; }
.wechat-qr-link img { display: block; width: 100%; height: 100%; object-fit: contain; margin: 0; }
.wechat-contact figcaption { margin-top: 6px; font: 600 13px/1.5 var(--mono); white-space: nowrap; }
.footer-wechat .wechat-contacts { grid-template-columns: 144px; }
.wechat-card { max-width: 460px; max-height: calc(100dvh - 32px); overflow-y: auto; }
.wechat-card h3 { margin-bottom: 16px; }
.qr-card .wechat-contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 1023px) { .footer-wechat { grid-column: 1 / -1; } .footer-wechat .wechat-contacts { grid-template-columns: repeat(2, minmax(0, 144px)); } }
