/* 3v.gg 弱电智能搜索与配单平台 */
:root {
  --nav-bg: #111111;
  --nav-h: 60px;
  --nav-hover: #c4b5fd;
  --footer-bg: #202427;
  --primary: #5d21d1;
  --primary-dark: #431995;
  --primary-light: #7c3ff2;
  --text: #212529;
  --muted: #86868b;
  --border: rgba(0, 0, 0, 0.08);
  --card: #fff;
  --surface: #f5f5f7;
  --radius: 12px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --hero-bg: linear-gradient(135deg, #2d1065 0%, #431995 38%, #5d21d1 72%, #7c3ff2 100%);
  --purple-bg: var(--hero-bg);
  --design-accent: #1cb9dc;
  --design-cta: #ff8c2a;
  --warning: #d97706;
  --success: #059669;
  --content-max: min(1400px, calc(100vw - 48px));
  --font-body: "Red Hat Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-heading: "Encode Sans Semi Condensed", "Red Hat Display", "PingFang SC", sans-serif;
  --font-nav: Arial, Verdana, Tahoma, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid rgba(124, 63, 242, .7); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }

.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
}
.site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-family: var(--font-heading);
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  box-shadow: 0 8px 18px rgba(93,33,209,.28);
  font-size: 13px;
}
.brand-text { color: #111827 !important; font-size: 17px; }
.site-nav .links {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(249,250,251,.9);
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 8px 24px rgba(17,24,39,.04);
}
.site-nav .links a {
  color: #374151;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--font-nav);
  white-space: nowrap;
}
.site-nav .links a:hover,
.site-nav .links a.active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(93,33,209,.12);
}
.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.nav-right a {
  color: #4b5563;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-right a:hover { color: var(--primary-dark); background: rgba(93,33,209,.06); }
.nav-right .nav-login {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  box-shadow: 0 10px 20px rgba(93,33,209,.22);
}

.page-wrap { padding-top: 0; min-height: 100vh; display: flex; flex-direction: column; }
@media (max-width: 900px) {
  .site-nav {
    height: auto;
    min-height: 72px;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
    padding: 12px 16px;
  }
  .site-nav .links { justify-self: stretch; overflow-x: auto; justify-content: flex-start; }
  .nav-right { justify-self: stretch; overflow-x: auto; }
}
main { flex: 1; max-width: 1100px; margin: 0 auto; width: 100%; padding: 32px 20px 48px; }
main.page-home {
  max-width: none;
  margin: 0;
  padding: 0;
}
main.page-sub {
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-hero {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  background: var(--hero-bg);
  padding: 56px 24px 64px;
  min-height: 240px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/inner-header-banner.png);
  background-repeat: no-repeat;
  background-position: 85% 100%;
  background-size: min(560px, 50vw);
  opacity: 0.55;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero-sub {
  opacity: 0.92;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
.page-hero .search-box { margin-top: 8px; }
.page-hero--compact {
  min-height: 200px;
  padding: 44px 24px 52px;
}

.page-body {
  background: var(--surface);
  padding: 28px 0 48px;
  flex: 1;
}
.page-body-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.page-body-inner--narrow {
  max-width: 640px;
}

.panel-empty {
  text-align: center;
  padding: 48px 24px;
}
.panel-empty p { color: var(--muted); margin-bottom: 8px; line-height: 1.6; }

.panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 20px;
}
.panel h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 20px; border: none; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: var(--font-heading);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(93,33,209,.35); }
.btn-primary:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-secondary {
  background: #f0f0f5; color: var(--text);
}
.btn-secondary:hover { background: #e8e8ed; }

.site-footer {
  background: var(--footer-bg);
  color: #aaa;
  padding: 32px 24px;
  font-size: 13px;
}
.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #ccc; }
.footer-links a:hover { color: #fff; }

.empty { text-align: center; color: var(--muted); padding: 24px; }
.loading { color: var(--muted); font-size: 14px; }

.alert-error {
  background: #fef2f2; color: #b91c1c; padding: 12px 14px;
  border-radius: 10px; font-size: 14px; margin-top: 12px;
}

.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 20px; }

.hero {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(135deg, #1b0b3d 0%, #431995 34%, #5d21d1 68%, #7c3ff2 100%);
  padding: 80px 24px 0;
  min-height: 520px;
  overflow: hidden;
}
.hero--premium::after {
  content: "";
  position: absolute;
  inset: auto 10% -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0) 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/inner-header-banner.png);
  background-repeat: no-repeat;
  background-position: 80% 100%;
  background-size: min(700px, 55vw);
  opacity: 0.34;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-bottom: 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
}
.hero-copy { padding-top: 12px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  letter-spacing: .02em;
  backdrop-filter: blur(6px);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 16px;
}
.hero .sub {
  opacity: 0.92;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  max-width: 720px;
  margin: 0 0 28px;
  line-height: 1.5;
}
.hero-card {
  align-self: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(17, 12, 46, .25);
}
.hero-card-head { display:flex; justify-content:space-between; gap:12px; align-items:end; margin-bottom: 16px; }
.hero-card-head span { font-size: 12px; opacity: .78; text-transform: uppercase; letter-spacing: .12em; }
.hero-card-head strong { font-size: 18px; }
.hero-pill-list { display:grid; gap: 10px; }
.hero-pill-item { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.hero-pill-item strong { display:block; font-size: 14px; margin-bottom: 4px; }
.hero-pill-item span { font-size: 13px; opacity: .82; }
.hero-card-foot { margin-top: 14px; font-size: 13px; line-height: 1.6; opacity: .82; }

.search-box {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,.08);
}
.search-box input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  outline: none;
  min-width: 0;
}
.search-box button {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.search-box button:hover { background: var(--primary-light); }
.search-box--page { margin: 0 0 20px; box-shadow: var(--shadow-card); }
.search-box--hero { max-width: 720px; margin: 0; }

.search-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.search-tabs button {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}
.search-tabs button.active,
.search-tabs button:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.hot-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.hot-tags button {
  border: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}
.hot-tags button:hover { background: rgba(255,255,255,.32); }

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 28px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero .stats-bar {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 32px 24px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: none;
  backdrop-filter: blur(6px);
}
.hero .stats-bar .loading { color: rgba(255, 255, 255, 0.85); }
.stat-item { text-align: center; min-width: 100px; }
.stat-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}
.hero .stat-item strong { color: #fff; font-size: 28px; }
.stat-item span { font-size: 13px; color: var(--muted); }
.hero .stat-item span { color: rgba(255, 255, 255, 0.78); }

.capabilities { padding: 48px 0 56px; background: var(--surface); }
main.page-home .capabilities-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.capabilities {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(245,245,247,1) 100%),
    var(--surface);
}
.capabilities-header { text-align: center; margin-bottom: 36px; }
.capabilities-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.capabilities-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}
.capabilities-desc { color: var(--muted); max-width: 520px; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(93, 33, 209, 0.2);
}
.feature-card:focus-visible,
.feature-card:hover {
  outline: none;
  box-shadow: 0 14px 32px rgba(17, 12, 46, .10);
}
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin: 12px 0 8px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(93, 33, 209, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: rgba(93, 33, 209, 0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
}

.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
}
.filter-bar select,
.filter-bar input[type="text"] {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
}

.btn-sm, .btn-primary-sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}
.btn-primary.btn-sm,
a.btn-primary.btn-sm,
.btn-primary-sm {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important;
  border-color: var(--primary);
}
.btn-secondary.btn-sm,
a.btn-secondary.btn-sm {
  background: #f0f0f5;
  color: var(--text) !important;
  border-color: var(--border);
}
.btn-block { width: 100%; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .img {
  height: 160px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card .body { padding: 14px 16px 16px; }
.product-card .title {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
}
.product-card .brand { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.product-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #e11d48;
  margin-bottom: 12px;
}
.product-card .price.na { color: var(--muted); font-size: 14px; font-weight: 400; }
.product-card .actions { display: flex; gap: 8px; flex-wrap: wrap; }

main.page-search .filter-bar { background: #fff; border-color: rgba(0,0,0,.06); }
main.page-sub .filter-bar,
main.page-search .filter-bar { background: #fff; border-color: rgba(0,0,0,.06); }
main.page-sub .product-card,
main.page-search .product-card {
  background: #fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: none;
}
main.page-sub .product-card:hover,
main.page-search .product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  border-color: rgba(93,33,209,.15);
}
main.page-sub .product-card .img,
main.page-sub .product-card .body,
main.page-search .product-card .img,
main.page-search .product-card .body { background: #fff; }

.hs-list { display: flex; flex-direction: column; gap: 10px; }
.hs-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
@media (max-width: 640px) {
  .hs-row { grid-template-columns: 1fr; }
}
.hs-code {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}
.hs-name { font-size: 14px; }
.hs-meta { font-size: 12px; color: var(--muted); white-space: nowrap; }

.hs-panel { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 20px; }
.hs-candidate {
  display: block;
  padding: 12px 14px;
  background: #f8f5ff;
  border: 1px solid rgba(93,33,209,.15);
  border-radius: 8px;
  color: var(--text);
}
.panel-hint { padding: 12px; background: #fffbeb; border-radius: 8px; font-size: 14px; color: #92400e; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 32px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-img {
  background: #fff;
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.detail-img img { max-width: 100%; max-height: 320px; object-fit: contain; }

/* 商品详情：多图画廊 + 规格组合（对齐后台） */
.product-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}
@media (max-width: 768px) { .product-gallery { grid-template-columns: 1fr; } }
.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
}
@media (max-width: 768px) {
  .product-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  }
}
.product-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.15s;
}
.product-thumbs img.active { border-color: var(--primary); }
.product-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-hero img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  cursor: zoom-in;
}
.detail-section-title,
.section-block,
h4.section-block {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prop-group { margin-bottom: 12px; }
.prop-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.prop-select { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.prop-select .opt {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  min-height: 40px;
  transition: all 0.15s;
}
.prop-select .opt:hover { border-color: rgba(93, 33, 209, 0.35); }
.prop-select .opt.active {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(93, 33, 209, 0.08);
  box-shadow: inset 0 0 0 1px rgba(93, 33, 209, 0.25);
}
.prop-select .opt.disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

/* 多规格 SKU 选择面板（浅色，与详情页一致） */
.product-spec-panel {
  margin: 16px 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.product-spec-panel .section-block {
  color: var(--muted);
  margin: 0 0 12px;
}
.product-spec-panel .prop-label {
  color: var(--muted);
}
.product-spec-panel .prop-select .opt {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  min-height: 40px;
}
.product-spec-panel .prop-select .opt:hover:not(.disabled) {
  border-color: rgba(93, 33, 209, 0.35);
}
.product-spec-panel .prop-select .opt.active {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(93, 33, 209, 0.08);
  box-shadow: inset 0 0 0 1px rgba(93, 33, 209, 0.25);
}
.product-spec-panel .prop-select .opt.disabled {
  opacity: 0.4;
  color: var(--muted);
}
.product-spec-panel .current-sku-info {
  color: var(--muted);
  margin-top: 12px;
}
.product-spec-panel .current-sku-info code {
  background: var(--surface);
  color: var(--text);
}
.product-spec-panel .tier-box {
  margin-top: 12px;
  margin-bottom: 0;
  padding: 16px;
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.06), #fff);
}
.product-spec-panel .tier-item {
  min-width: 140px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.product-spec-panel .tier-item .tier-label {
  color: var(--muted);
}
.product-spec-panel .tier-item .tier-price {
  color: #ea580c;
  font-size: 24px;
  font-family: ui-monospace, "JetBrains Mono", monospace;
}
.product-spec-panel .tier-item .tier-sub {
  color: var(--muted);
}
.product-spec-panel .detail-meta {
  color: var(--muted);
}
.detail-info-col .product-spec-panel + .support-tags {
  margin-top: 4px;
}
.current-sku-info,
.product-sku-info {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0;
  line-height: 1.6;
}
.current-sku-info code,
.product-sku-info code {
  font-size: 12px;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
}
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}
.support-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 8px 0 16px;
}
.service-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
}
.service-item .service-name { font-weight: 600; color: var(--text); }
.service-item .service-price {
  color: #16a34a;
  margin-top: 6px;
  font-weight: 600;
}
.service-item .service-desc {
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
}
.detail-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.detail-source { font-size: 13px; margin: 8px 0; }
.detail-source a { color: var(--primary); font-weight: 500; }
.detail-hs-row { margin: 10px 0 12px; }
.detail-hs-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  font-weight: 500;
  text-decoration: none;
}
.detail-hs-pill:hover { background: rgba(22, 163, 74, 0.16); color: #166534; }
.detail-info-col .section-block:first-of-type { margin-top: 4px; }
.detail-info-col #tierPriceBox { margin-top: 4px; }
.spec-params-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 12px 0;
}
.spec-params-grid .cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
}
.spec-params-grid .cell .k {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.spec-params-grid .cell--html {
  grid-column: 1 / -1;
}
.spec-params-grid .spec-value-html {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: auto;
}
.spec-params-grid .spec-value-html table {
  width: 100%;
  border-collapse: collapse;
}
.spec-params-grid .spec-value-html td,
.spec-params-grid .spec-value-html th {
  border: none;
  padding: 4px 0;
  font-size: 13px;
  vertical-align: top;
}
.spec-params-grid .spec-value-html img {
  max-width: 100%;
  height: auto;
}
.package-detail {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-top: 8px;
}
.detail-html {
  margin-top: 4px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.65;
  overflow: hidden;
}
.detail-html img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 8px 0;
  border-radius: 8px;
}
.detail-html table { max-width: 100%; border-collapse: collapse; }
.detail-html td, .detail-html th {
  border: 1px solid var(--border);
  padding: 6px 8px;
  font-size: 13px;
}
.tier-box {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
  padding: 16px;
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.06), #fff);
}
.tier-item {
  min-width: 130px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.tier-item .tier-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tier-item .tier-price {
  font-size: 22px;
  font-weight: 700;
  color: #ea580c;
  margin: 6px 0;
}
.tier-item .tier-sub { font-size: 12px; color: var(--muted); }
.sku-full-table th { white-space: nowrap; }
.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}
.product-lightbox.open { display: flex; }
.product-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.product-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.detail-price { font-size: 28px; font-weight: 700; color: #e11d48; margin: 12px 0; }
.detail-meta { font-size: 13px; color: var(--muted); line-height: 1.6; }

.tabs-inline {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  overflow-x: auto;
}
.tabs-inline button {
  border: none;
  background: none;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.tabs-inline button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.design-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) { .design-layout { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.bom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 12px;
}
.bom-table th,
.bom-table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}
.bom-table th { background: #f8f9fa; font-weight: 600; }
.bom-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.bom-total {
  margin-top: 16px;
  padding: 16px;
  background: #f8f5ff;
  border-radius: var(--radius);
  font-size: 15px;
}
.bom-subtotal { font-size: 14px; color: var(--muted); margin-bottom: 6px; }

/* ========== AI 配单页（参考 ysaiw 工作台布局 + 3v 紫色品牌） ========== */
.design-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.design-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.design-hero-tags .bi { font-size: 15px; opacity: 0.95; }

.design-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .design-steps { grid-template-columns: repeat(2, 1fr); }
}
.design-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.design-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-step strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}
.design-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.design-step.is-active {
  border-color: rgba(93, 33, 209, 0.35);
  background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
}
.design-step.is-done .design-step-num {
  background: var(--success);
}

.design-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .design-stats { grid-template-columns: 1fr; }
}
.design-stat {
  text-align: center;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.design-stat strong {
  display: block;
  font-size: 22px;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 4px;
}
.design-stat span {
  font-size: 13px;
  color: var(--muted);
}

.design-workbench {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
@media (max-width: 960px) {
  .design-workbench { grid-template-columns: 1fr; }
}

.design-entry-card,
.design-result-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.design-entry-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 6px;
}
.design-entry-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.design-tab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .design-tab-cards { grid-template-columns: 1fr; }
}
.design-tab-cards button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.design-tab-cards button .bi {
  font-size: 20px;
  color: var(--design-accent);
}
.design-tab-cards button.active {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f8f5ff 0%, #fff 100%);
  color: var(--primary-dark);
  box-shadow: 0 0 0 1px rgba(93, 33, 209, 0.12);
}
.design-tab-cards button:hover:not(.active) {
  border-color: rgba(93, 33, 209, 0.25);
  background: #fff;
}

.design-nl-wrap { position: relative; }
.design-char-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  color: var(--muted);
  pointer-events: none;
}

.design-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 16px 0;
}

.design-cta {
  margin-top: 8px;
  padding: 14px 20px !important;
  font-size: 16px !important;
  background: linear-gradient(135deg, #ff7a18, var(--design-cta)) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(255, 140, 42, 0.35);
}
.design-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 140, 42, 0.4);
}
.design-cta .bi { margin-right: 6px; }

.design-result-card {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  min-height: 360px;
}
.design-result-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}
.design-result-empty .bi {
  font-size: 48px;
  color: var(--design-accent);
  opacity: 0.6;
  display: block;
  margin-bottom: 16px;
}
.design-result-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.design-result-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0;
}
.design-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #ecfdf5;
  color: var(--success);
}
.bom-section-title {
  font-family: var(--font-heading);
  font-size: 15px;
  margin: 16px 0 8px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bom-section-title::before {
  content: "";
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: var(--primary);
}
.labor-row td { background: #fffbf5; }
.bom-total {
  margin-top: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8f5ff, #faf8ff);
  border: 1px solid rgba(93, 33, 209, 0.15);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

.design-benefits,
.quote-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .design-benefits,
  .quote-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .design-benefits,
  .quote-benefits { grid-template-columns: 1fr; }
}
.design-benefit,
.quote-benefit {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.design-benefit .bi,
.quote-benefit .bi {
  font-size: 24px;
  color: var(--design-accent);
  margin-bottom: 10px;
  display: block;
}
.design-benefit h4,
.quote-benefit h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 8px;
}
.design-benefit p,
.quote-benefit p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.quote-workbench {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 960px) { .quote-workbench { grid-template-columns: 1fr; } }
.quote-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.quote-eyebrow {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.quote-header h2,
.quote-result-head h3 { font-family: var(--font-heading); margin: 0; }
.quote-desc { color: var(--muted); margin-top: 10px; line-height: 1.6; }
.quote-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 10px;
  min-width: min(100%, 320px);
}
.quote-metrics div,
.quote-summary-card {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #faf8ff);
  border: 1px solid var(--border);
}
.quote-metrics strong,
.quote-summary-card strong {
  display: block;
  font-size: 20px;
  font-family: var(--font-heading);
  color: var(--primary-dark);
}
.quote-metrics span,
.quote-summary-card span { font-size: 12px; color: var(--muted); }
.quote-tabs { display:flex; gap:8px; margin: 18px 0; }
.quote-tabs button {
  border: 1px solid var(--border); background:#fafafa; color:var(--muted);
  padding: 10px 16px; border-radius: 999px; cursor:pointer;
}
.quote-tabs button.active { background: var(--primary); color:#fff; border-color: var(--primary); }
.quote-progress { margin: 16px 0 18px; }
.quote-flow { display:grid; gap:10px; }
.quote-flow-step {
  display:flex; gap:12px; align-items:flex-start; padding:12px 14px; border-radius: 12px; border:1px solid var(--border); background:#fff;
}
.quote-flow-step span {
  width:28px; height:28px; border-radius: 999px; display:flex; align-items:center; justify-content:center; font-weight:700;
  background:#eef2ff; color:var(--primary-dark); flex: none;
}
.quote-flow-step.active { border-color: rgba(93,33,209,.3); background: #fbf9ff; }
.quote-flow-step.done span { background: var(--success); color:#fff; }
.quote-flow-step p { font-size:12px; color:var(--muted); margin-top:3px; }
.quote-preview { margin-top:12px; }
.quote-result-head { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:flex-start; margin-bottom:16px; }
.quote-result-actions { display:flex; gap:8px; flex-wrap:wrap; }
.quote-summary-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:10px; margin: 14px 0; }
@media (max-width: 700px) { .quote-summary-grid { grid-template-columns: repeat(2,1fr); } }
.quote-system-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 16px; }
.quote-system-tags span { padding:6px 10px; border-radius:999px; background:#f4f1ff; color:var(--primary-dark); font-size:12px; }
.quote-line-table { overflow:auto; }

.kb-doc-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
@media (max-width: 640px) { .kb-doc-row { grid-template-columns: 1fr; } }
.kb-doc-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
}
.kb-doc-title { font-weight: 600; font-size: 14px; }
.kb-doc-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.kb-doc-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.kb-doc-actions .btn { min-width: 64px; }
.kb-badge-md {
  font-size: 11px;
  background: #dcfce7;
  color: #166534;
  padding: 2px 6px;
  border-radius: 4px;
}
.kb-md-preview {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  font-size: 13px;
  overflow-x: auto;
  white-space: pre-wrap;
  max-height: 400px;
  overflow-y: auto;
}

.compare-table { width: 100%; overflow-x: auto; }
.compare-table table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th, .compare-table td {
  border: 1px solid var(--border);
  padding: 10px;
  vertical-align: top;
}
.compare-table th { background: #f8f9fa; }
.compare-table td.lowest { color: var(--primary); font-weight: 700; }

.detail-tabs-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px 24px;
}

.attach-list { list-style: none; padding: 0; }
.attach-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}
.modal h3 { margin-bottom: 16px; }
.modal .actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }

.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  box-shadow: var(--shadow);
  animation: toast-in .25s ease;
}
.toast--info { background: #334155; }
.toast--success { background: #16a34a; }
.toast--warn { background: #d97706; }
.toast--error { background: #dc2626; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pagination {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pagination-info { font-size: 13px; color: var(--muted); }
.pagination-info strong { color: var(--text); font-weight: 600; }
.pagination-list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.pagination-item:hover:not(.is-disabled):not(.is-active) {
  border-color: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(93,33,209,.1);
}
.pagination-item.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.pagination-item.is-disabled {
  color: #c4c4c4;
  border-color: rgba(0,0,0,.05);
  background: #fafafa;
  cursor: default;
  user-select: none;
}
@media (max-width: 640px) {
  .hero {
    min-height: 460px;
    padding-top: 56px;
  }
  .hero::before {
    background-size: min(420px, 90vw);
    background-position: 50% 100%;
    opacity: 0.35;
  }
  .page-hero {
    min-height: 200px;
    padding: 40px 16px 48px;
  }
  .page-hero::before {
    background-size: min(360px, 85vw);
    background-position: 50% 100%;
    opacity: 0.3;
  }
  .hero-inner { padding-bottom: 32px; }
  .hero .stats-bar { padding: 24px 16px 32px; gap: 16px; }
  .hero .stat-item strong { font-size: 22px; }
  .pagination { flex-direction: column; align-items: stretch; }
  .pagination-info { text-align: center; }
  .pagination-list { justify-content: center; }
}

.hidden { display: none !important; }
/* HS detail cards */
.hs-rate-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:12px; }
.rate-card { background:#f8f9fc; border:1px solid #eef0f4; border-radius:8px; padding:14px 12px; text-align:center; }
.rate-card .rate-val { font-size:20px; font-weight:700; color:var(--primary); display:block; margin-bottom:4px; }
.rate-card .rate-label { font-size:12px; color:#888; }
.hs-description { font-size:14px; color:#666; line-height:1.6; margin-top:4px; padding:12px 16px; background:#f0f4ff; border-radius:8px; border-left:3px solid var(--primary-light); }
.fta-grid { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.fta-tag { display:inline-flex; flex-direction:column; background:#f0f4ff; border:1px solid #e2e8f0; border-radius:6px; padding:8px 14px; font-size:13px; min-width:100px; text-align:center; }
.fta-tag strong { font-size:13px; color:#333; margin-bottom:2px; }
.decl-elems { font-size:14px; line-height:1.8; color:#555; padding:12px 16px; background:#f9fafb; border-radius:8px; margin-top:10px; }
.ciq-list { list-style:none; padding:0; margin:10px 0 0; }
.ciq-list li { padding:8px 12px; border-bottom:1px solid #f0f0f0; font-size:13px; color:#555; line-height:1.5; }
.ciq-list li:last-child { border-bottom:none; }

/* ---- HS 详情：申报要素标签网格 ---- */
.decl-elems-grid { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.decl-elem-tag { display:inline-flex; align-items:center; background:#f0f7ff; border:1px solid #dbeafe; border-radius:20px; padding:6px 14px; font-size:13px; color:#1e40af; line-height:1.4; transition:all .15s; }
.decl-elem-tag:hover { background:#dbeafe; border-color:#93c5fd; }

/* ---- HS 首页：热门编码 ---- */
.popular-hs-section { margin-top:24px; }
.popular-hs-section h4 { font-size:15px; font-weight:600; color:#333; margin-bottom:12px; display:flex; align-items:center; gap:6px; }
.popular-hs-section h4::before { content:'🔥'; font-size:16px; }
.popular-hs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:10px; }
.popular-hs-card { display:flex; flex-direction:column; background:#fafbfc; border:1px solid #eef0f4; border-radius:8px; padding:12px 14px; text-decoration:none; transition:all .2s; }
.popular-hs-card:hover { background:#f0f4ff; border-color:#c7d2fe; transform:translateY(-1px); box-shadow:0 2px 8px rgba(0,0,0,.06); }
.popular-hs-card strong { font-size:14px; color:var(--primary); font-family:monospace; letter-spacing:.5px; }
.popular-hs-card span { font-size:12px; color:#666; margin-top:3px; line-height:1.4; }

/* ---- HS 详情：置信度过滤提示 ---- */
.confidence-note { font-size:12px; color:#999; margin:-8px 0 12px; padding:0; }

/* ===== 知识库首页 ===== */
.kb-home-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:12px; margin-bottom:24px; }
.kb-home-stats .stat-card { background:#f8f9fc; border:1px solid #eef0f4; border-radius:10px; padding:16px; text-align:center; }
.kb-home-stats .stat-card strong { display:block; font-size:24px; font-weight:700; color:var(--primary); }
.kb-home-stats .stat-card span { font-size:13px; color:#888; }
.kb-section { margin-top:28px; }
.kb-section h4 { font-size:15px; font-weight:600; color:#333; margin-bottom:12px; display:flex; align-items:center; gap:6px; }
.kb-section h4::after { content:''; flex:1; height:1px; background:#eef0f4; margin-left:10px; }
.kb-type-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); gap:10px; }
.kb-type-card { background:#fafbfc; border:1px solid #eef0f4; border-radius:8px; padding:14px; text-align:center; cursor:pointer; transition:all .2s; }
.kb-type-card:hover { background:#f0f4ff; border-color:#c7d2fe; transform:translateY(-1px); }
.kb-type-card strong { display:block; font-size:20px; font-weight:700; color:var(--primary); margin-bottom:4px; }
.kb-type-card span { font-size:12px; color:#888; }
.kb-brand-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:10px; }
.kb-brand-card { display:flex; flex-direction:column; background:#fafbfc; border:1px solid #eef0f4; border-radius:8px; padding:14px; text-decoration:none; transition:all .2s; }
.kb-brand-card:hover { background:#f0f4ff; border-color:#c7d2fe; transform:translateY(-1px); box-shadow:0 2px 8px rgba(0,0,0,.06); }
.kb-brand-card strong { font-size:15px; font-weight:600; color:#333; }
.kb-brand-card span { font-size:12px; color:#999; margin-top:4px; }
.kb-latest-list { display:flex; flex-direction:column; gap:8px; }
.kb-latest-item { display:flex; align-items:center; gap:12px; padding:10px 14px; background:#fafbfc; border:1px solid #eef0f4; border-radius:8px; text-decoration:none; transition:all .2s; }
.kb-latest-item:hover { background:#f5f7fa; border-color:#dde0e6; }
.kb-latest-item img { width:44px; height:44px; object-fit:cover; border-radius:6px; flex-shrink:0; background:#f0f0f0; }
.kb-doc-icon { width:44px; height:44px; display:flex; align-items:center; justify-content:center; background:var(--primary-light); color:var(--primary); border-radius:6px; font-weight:700; font-size:16px; flex-shrink:0; }
.kb-latest-body { min-width:0; flex:1; }
.kb-latest-title { font-size:14px; font-weight:500; color:#333; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.kb-latest-meta { font-size:12px; color:#999; margin-top:2px; }
.kb-product-brand-tags { display:flex; flex-wrap:wrap; gap:8px; }
.kb-pbrand-tag { display:inline-flex; align-items:center; gap:4px; padding:6px 14px; background:#f5f7fa; border:1px solid #eef0f4; border-radius:20px; text-decoration:none; font-size:13px; color:#555; transition:all .2s; }
.kb-pbrand-tag:hover { background:#edf2ff; border-color:#c7d2fe; color:var(--primary); }
.kb-pbrand-tag span { font-size:11px; color:#aaa; font-weight:500; }

/* ===== 视觉识别KB内容样式 ===== */
.kb-md-body {
  background: #fafbfc;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 16px;
  line-height: 1.7;
}
.kb-md-body h5.kb-mdh {
  font-size: 15px;
  font-weight: 700;
  color: #2d3748;
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}
.kb-md-body h5.kb-mdh:first-child { margin-top: 0; }
.kb-md-body p.kb-mdp {
  margin: 8px 0;
  font-size: 13.5px;
  color: #3d4a5c;
}
.kb-md-body ul.kb-mdul {
  margin: 8px 0;
  padding-left: 20px;
}
.kb-md-body ul.kb-mdul li.kb-mdli {
  font-size: 13.5px;
  color: #3d4a5c;
  margin: 4px 0;
  list-style: disc;
}
.kb-md-body strong { color: #1a202c; font-weight: 600; }
.kb-md-body hr.kb-sep {
  border: none;
  border-top: 1px dashed #d4d8dd;
  margin: 16px 0;
}

/* 产品详情页 视觉识别卡片 */
.kb-vision-card {
  background: #f8faff;
  border: 1px solid #dde5f5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: box-shadow .2s;
}
.kb-vision-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.kb-vision-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f0f4ff;
  border-bottom: 1px solid #dde5f5;
}
.kb-vision-header strong {
  font-size: 14px;
  color: #2d3748;
}
.kb-vision-body {
  padding: 12px 16px;
  max-height: 220px;
  overflow-y: auto;
}
.kb-vision-body .kb-md-body {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.kb-vision-footer {
  padding: 10px 16px;
  background: #fafbfc;
  border-top: 1px solid #eef0f4;
  text-align: right;
}
.kb-vision-badge { 
  display: inline-block;
  flex-shrink: 0;
}
/* ===== 知识库详情 Premium UI/UX Pro Max ===== */
.kb-premium-doc {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.kb-premium-header {
  background: linear-gradient(145deg, #faf8ff 0%, #f0f4ff 100%);
  border-bottom: 1px solid rgba(93,33,209,0.08);
  padding: 32px 32px 28px;
}

.kb-premium-title-row { margin-bottom: 16px; }
.kb-premium-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.kb-premium-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.kb-premium-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(93,33,209,0.12);
  border-radius: 20px;
  font-size: 13px;
  color: #4a4a6a;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(93,33,209,0.04);
}
.kb-premium-meta-chip .bi { font-size: 14px; color: var(--primary-light); }
.kb-premium-product-link {
  margin-bottom: 12px;
  font-size: 14px;
}
.kb-premium-product-link .bi { color: var(--primary); margin-right: 6px; }
.kb-premium-product-link a { font-weight: 600; }
.kb-premium-summary {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(93,33,209,0.04);
  border-left: 3px solid var(--primary-light);
  border-radius: 8px;
  font-size: 14px;
  color: #4a4a6a;
  line-height: 1.6;
}
.kb-premium-extract-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px;
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 10px;
  font-size: 13px;
  color: #92400e;
}
.kb-premium-extract-hint--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

/* Premium body sections */
.kb-premium-body { padding: 8px 0; }

.kb-premium-section {
  margin: 0 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.kb-premium-section:last-child { border-bottom: none; }

.kb-premium-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.kb-premium-section-header .bi {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
}
.kb-premium-section-header span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

/* Product ID Chips */
.kb-premium-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.kb-premium-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  background: #f8f9fc;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  min-width: 140px;
  transition: all 0.2s;
}
.kb-premium-chip:hover {
  border-color: rgba(93,33,209,0.2);
  box-shadow: 0 4px 12px rgba(93,33,209,0.06);
}
.kb-premium-chip-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #999;
}
.kb-premium-chip-value {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Spec Grid (Apple-style) */
.kb-premium-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  overflow: hidden;
}
.kb-premium-spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f4;
  align-items: start;
}
.kb-premium-spec-row:last-child { border-bottom: none; }
.kb-premium-spec-row:nth-child(even) { background: #fafbfc; }
.kb-premium-spec-label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  padding-top: 1px;
}
.kb-premium-spec-value {
  font-size: 14px;
  color: #1a1a2e;
  line-height: 1.5;
}
.kb-premium-spec-empty {
  padding: 24px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* Feature Cards */
.kb-premium-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.kb-premium-feature-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: #f8f9fc;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  transition: all 0.2s;
}
.kb-premium-feature-card:hover {
  border-color: rgba(93,33,209,0.15);
  box-shadow: 0 4px 12px rgba(93,33,209,0.04);
}
.kb-premium-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
}
.kb-premium-feature-content { min-width: 0; }
.kb-premium-feature-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.kb-premium-feature-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Notes section */
.kb-premium-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kb-premium-note-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: #fafbfc;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  font-size: 13px;
  color: #4a4a6a;
  line-height: 1.5;
}
.kb-premium-note-item .bi { color: var(--primary-light); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* Generic section fallback */
.kb-premium-generic pre {
  font-size: 13px;
  color: #4a4a6a;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
  background: #f8f9fc;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
}

/* Actions bar */
.kb-premium-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 32px 32px;
  background: #fafbfc;
  border-top: 1px solid rgba(0,0,0,0.04);
}

@media (max-width: 640px) {
  .kb-premium-header { padding: 24px 20px 20px; }
  .kb-premium-section { margin: 0 20px; padding: 20px 0; }
  .kb-premium-actions { padding: 20px; }
  .kb-premium-spec-row { grid-template-columns: 1fr; gap: 4px; }
  .kb-premium-features { grid-template-columns: 1fr; }
  .kb-premium-title { font-size: 18px; }
}

/* ====== HS增强 ====== */
.hs-hero-stats{display:flex;flex-wrap:wrap;justify-content:center;gap:28px;margin-bottom:24px}
.hs-hero-stat{text-align:center;min-width:90px}
.hs-hero-stat strong{display:block;font-size:28px;font-weight:700;font-family:var(--font-heading);color:#fff;line-height:1.1}
.hs-hero-stat span{font-size:12px;opacity:.78;letter-spacing:.04em;text-transform:uppercase}
.hs-chapter-filters{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:16px 0 20px}
.hs-filter-label{font-size:13px;color:var(--muted);font-weight:600;margin-right:4px}
.hs-filter-chip{border:1.5px solid #e2e8f0;background:#fff;color:#4b5563;padding:7px 16px;border-radius:999px;font-size:13px;font-weight:500;cursor:pointer;transition:all .18s}
.hs-filter-chip:hover{border-color:var(--primary-light);color:var(--primary);background:#f5f3ff;transform:translateY(-1px);box-shadow:0 2px 8px rgba(93,33,209,.1)}
.hs-filter-chip.active{background:linear-gradient(135deg,var(--primary),var(--primary-light));color:#fff;border-color:transparent;box-shadow:0 4px 12px rgba(93,33,209,.25)}
.hs-result-card{display:block;background:var(--card);border:1px solid #eef0f4;border-radius:12px;padding:18px 20px;text-decoration:none;transition:all .2s;color:var(--text)}
.hs-result-card:hover{border-color:#c7d2fe;box-shadow:0 4px 20px rgba(93,33,209,.08);transform:translateY(-2px)}
.hs-result-top{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.hs-result-code{font-size:15px;font-weight:700;color:var(--primary);font-family:monospace;letter-spacing:.5px}
.hs-chapter-badge{display:inline-flex;align-items:center;padding:3px 10px;border-radius:999px;font-size:11px;font-weight:600;background:#f0f4ff;color:#6366f1;border:1px solid #e0e7ff}
.hs-result-name{font-size:15px;font-weight:600;line-height:1.4;margin-bottom:6px}
.hs-result-desc{font-size:13px;color:#6b7280;line-height:1.5;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hs-result-rates{display:flex;flex-wrap:wrap;gap:8px}
.hs-rate-tag{display:inline-flex;align-items:center;padding:4px 10px;border-radius:6px;font-size:12px;font-weight:500;background:#f8fafc;color:#475569;border:1px solid #e2e8f0}
.popular-hs-card-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px}
.hs-detail-header{background:var(--card);border-radius:16px;padding:28px 28px 24px;margin-bottom:24px;box-shadow:var(--shadow-card);border:1px solid #eef0f4}
.hs-detail-code-row{display:flex;align-items:center;gap:14px;margin-bottom:12px;flex-wrap:wrap}
.hs-detail-code{font-size:28px;font-weight:700;color:var(--primary-dark);font-family:monospace;letter-spacing:1px}
.hs-detail-status{display:inline-flex;align-items:center;gap:4px;padding:5px 14px;border-radius:999px;font-size:12px;font-weight:600}
.hs-detail-status.active{background:#ecfdf5;color:#059669;border:1px solid #a7f3d0}
.hs-detail-status.expired{background:#fef2f2;color:#dc2626;border:1px solid #fecaca}
.hs-detail-name{font-size:20px;font-weight:600;line-height:1.4;color:#1f2937;margin-bottom:8px}
.hs-hierarchy-nav{display:flex;flex-wrap:wrap;align-items:center;gap:6px;font-size:13px;margin-bottom:14px;color:var(--muted)}
.hs-hierarchy-nav a{color:var(--primary);font-weight:500;padding:4px 10px;border-radius:6px;background:#f5f3ff}
.hs-description-block{background:linear-gradient(135deg,#f5f3ff,#faf9ff);border:1px solid #e0e7ff;border-radius:12px;padding:18px 20px;margin-top:16px;font-size:14px;color:#4338ca;line-height:1.65}
.hs-description-block .hs-desc-label{display:block;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:#7c3aed;margin-bottom:6px}
.hs-rates-section{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px;margin-bottom:24px}
.hs-rate-card-enhanced{background:var(--card);border:1px solid #eef0f4;border-radius:12px;padding:18px 16px;text-align:center;transition:all .2s}
.hs-rate-card-enhanced.rate-high{border-left:3px solid #ef4444}
.hs-rate-card-enhanced.rate-mid{border-left:3px solid #f59e0b}
.hs-rate-card-enhanced.rate-low{border-left:3px solid #10b981}
.hs-rate-card-enhanced.rate-info{border-left:3px solid #6366f1}
.hs-rate-val-enhanced{font-size:26px;font-weight:700;display:block;margin-bottom:2px;font-family:var(--font-heading)}
.rate-high .hs-rate-val-enhanced{color:#ef4444}
.rate-mid .hs-rate-val-enhanced{color:#f59e0b}
.rate-low .hs-rate-val-enhanced{color:#10b981}
.rate-info .hs-rate-val-enhanced{color:#6366f1}
.hs-rate-label-enhanced{font-size:12px;color:#6b7280;font-weight:500}
.hs-rate-sub{font-size:11px;color:#9ca3af;margin-top:2px}
.hs-section-header{display:flex;align-items:center;gap:10px;margin-bottom:14px;font-size:16px;font-weight:700;font-family:var(--font-heading);color:#1f2937}
.hs-section-icon{width:32px;height:32px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;font-size:15px}
.hs-section-icon.decl{background:#eff6ff;color:#3b82f6}
.hs-section-icon.fta{background:#f0fdf4;color:#16a34a}
.hs-section-icon.ciq{background:#fefce8;color:#ca8a04}
.hs-section-icon.prod{background:#fdf2f8;color:#db2777}
.fta-grid-enhanced{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:10px}
.fta-card{background:#f0fdf4;border:1px solid #bbf7d0;border-radius:10px;padding:12px 14px;text-align:center}
.fta-card strong{display:block;font-size:13px;color:#166534;margin-bottom:2px}
.fta-card span{font-size:16px;font-weight:700;color:#15803d}
@media(max-width:768px){.hs-hero-stats{gap:18px}.hs-hero-stat strong{font-size:22px}.hs-rates-section{grid-template-columns:repeat(2,1fr)}.hs-detail-code{font-size:22px}.hs-detail-name{font-size:17px}}
