﻿:root {
  --bx-red: #C8102E;
  --bx-red-dark: #9e0c24;
  --bx-gold: #D4AF37;
  --bx-gold-light: #e8c96a;
  --bx-title: #1A1A1A;
  --bx-text: #333333;
  --bx-muted: #666666;
  --bx-bg: #FFFFFF;
  --bx-section: #F7F8FA;
  --bx-border: #e8eaed;
  --bx-container: 1200px;
  --bx-focus-max: 1280px;
  --bx-topbar-h: 32px;
  --bx-header-stack: calc(var(--bx-topbar-h) + var(--bx-header-main-h));
  --bx-focus-h: clamp(380px, calc(100svh - var(--bx-header-stack)), 480px);
  --bx-trust-bar-h: 56px;
  --bx-mobile-bar-h: 48px;
  --bx-shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --bx-shadow-md: 0 8px 32px rgba(26, 26, 26, 0.08);
  --bx-radius: 6px;
  --bx-font-serif: "Noto Serif SC", "Source Han Serif SC", serif;
  --bx-font-sans: "Noto Sans SC", "Source Han Sans SC", system-ui, sans-serif;
  --bx-text-scale: 1;
  --bx-title-scale: 1;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.bx-cdddh {
  margin: 0;
  font-family: var(--bx-font-sans);
  color: var(--bx-text);
  background: var(--bx-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

@media (max-width: 960px) {
  html,
  body.bx-cdddh {
    overflow-x: clip;
    max-width: 100%;
    overscroll-behavior-x: none;
  }

  body.bx-cdddh {
    width: 100%;
    position: relative;
    touch-action: pan-y pinch-zoom;
  }

  .bx-main,
  .bx-footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .bx-trust-bar__scroll,
  .bx-footer-stores__tabs,
  .bx-footer__legal-inner {
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }
}

html.is-trust-bar-hidden body.bx-cdddh,
body.bx-cdddh.is-trust-bar-hidden {
  padding-bottom: 0;
}

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

/* 方案 A：13–15 寸保持 1200；≥1500 流体放大，4K / 带鱼屏封顶 1920
   标题/正文字号必须用无单位系数。calc(1.75rem * 1920px / 1200px) 非法（长度不能相乘），浏览器会整条丢弃。 */
@media (min-width: 1500px) {
  :root {
    --bx-container: clamp(1280px, 80vw, 1920px);
    --bx-focus-max: clamp(1360px, 84vw, 1920px);
    --bx-text-scale: 1.12;
    --bx-title-scale: 1.22;
  }
}
@media (min-width: 1680px) {
  :root {
    --bx-text-scale: 1.22;
    --bx-title-scale: 1.36;
  }
}
@media (min-width: 1920px) {
  :root {
    --bx-text-scale: 1.32;
    --bx-title-scale: 1.5;
  }
}
@media (min-width: 2240px) {
  :root {
    --bx-text-scale: 1.42;
    --bx-title-scale: 1.66;
  }
}
@media (min-width: 2560px) {
  :root {
    --bx-text-scale: 1.5;
    --bx-title-scale: 1.82;
  }
}
@media (min-width: 3200px) {
  :root {
    --bx-text-scale: 1.55;
    --bx-title-scale: 1.95;
  }
}

/* ── Header ── */
.bx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: #fff;
  box-shadow: var(--bx-shadow-sm);
}

.bx-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bx-icon {
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
}

/* 顶部工具条：日期时间天气 + 营业时间 + 图标 */
.bx-topbar {
  position: relative;
  z-index: 40;
  background: var(--bx-red);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  overflow: visible;
}

.bx-topbar__inner {
  min-height: var(--bx-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
}

.bx-topbar-live {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bx-topbar-live__date {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.bx-topbar-live__date-short { display: none; }

.bx-topbar-live__week {
  opacity: 0.88;
  font-weight: 400;
}

.bx-topbar-live__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.bx-topbar-live__time {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.bx-topbar-weather.is-pending .bx-topbar-live__weather {
  opacity: 0.72;
}

.bx-topbar-live__weather {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 2px 8px 2px 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.bx-topbar-live__weather:hover,
.bx-topbar-live__weather:focus-visible,
.bx-topbar-weather.is-open .bx-topbar-live__weather {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.bx-topbar-live__weather:hover {
  transform: translateY(-0.5px);
}

.bx-topbar-live__wtext {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.bx-topbar-live__city { opacity: 0.9; }
.bx-topbar-live__temp-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.bx-topbar-live__temp { font-weight: 700; letter-spacing: 0; }
.bx-topbar-live__range {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.82;
  letter-spacing: 0;
}

.bx-weather-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bx-weather-ico svg,
.bx-weather-ico .bx-weather-svg {
  display: block;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.bx-weather-ico--sm svg,
.bx-weather-ico--sm .bx-weather-svg {
  width: 18px;
  height: 18px;
}

.bx-topbar-live__caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.2s;
}

.bx-topbar-weather.is-open .bx-topbar-live__caret {
  transform: rotate(180deg);
}

.bx-weather-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  min-width: 240px;
  padding: 12px 14px 10px;
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.16);
  animation: bx-weather-in 0.18s ease;
}

.bx-weather-panel[hidden] { display: none; }

@keyframes bx-weather-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.bx-weather-panel__now {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bx-red);
}

.bx-weather-panel__meta {
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.bx-weather-panel__casts {
  list-style: none;
  margin: 10px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid #eee;
}

.bx-weather-panel__casts li {
  display: grid;
  grid-template-columns: 40px 18px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 12px;
}

.bx-weather-panel__casts .bx-weather-ico {
  color: var(--bx-red, #c8102e);
}

.bx-weather-panel__d { color: #666; }
.bx-weather-panel__t { font-variant-numeric: tabular-nums; color: #333; font-weight: 600; }

.bx-weather-panel__tip {
  margin: 8px 0 0;
  font-size: 11px;
  color: #999;
}

.bx-topbar__slogan {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bx-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.bx-topbar__hours {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.92;
  white-space: nowrap;
}

.bx-topbar__icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bx-topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.bx-topbar__icon:hover {
  background: rgba(255, 255, 255, 0.28);
}

.bx-header-main {
  overflow: visible;
}

.bx-header-main__inner {
  min-height: 68px;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.bx-logo {
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  align-self: center;
}

.bx-logo--mobile { display: none; }

.bx-logo--pc img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(240px, 38vw);
  object-fit: contain;
}

.bx-logo--mobile img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.bx-logo__text {
  font-family: var(--bx-font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--bx-title);
}

.bx-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
}

.bx-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.bx-nav__item.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 2px;
  z-index: 31;
  pointer-events: none;
}

.bx-nav__item.has-children:hover::after,
.bx-nav__item.has-children:focus-within::after,
.bx-nav__item.has-children.is-open::after {
  pointer-events: auto;
}

.bx-nav__item.has-children:hover .bx-nav__submenu,
.bx-nav__item.has-children:focus-within .bx-nav__submenu,
.bx-nav__item.has-children.is-open .bx-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bx-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bx-title);
  text-decoration: none;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.bx-nav__label {
  line-height: 1.3;
}

.bx-nav__caret {
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.45;
  transition: transform 0.2s;
}

.bx-nav__item.has-children:hover .bx-nav__caret,
.bx-nav__item.has-children:focus-within .bx-nav__caret,
.bx-nav__item.has-children.is-open .bx-nav__caret {
  transform: rotate(180deg);
}

.bx-nav__link:hover,
.bx-nav__link.is-active {
  color: var(--bx-red);
  background: rgba(200, 16, 46, 0.05);
}

.bx-nav__link.is-active {
  font-weight: 600;
}

.bx-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 100%;
  width: max-content;
  max-width: min(320px, 90vw);
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.12s ease, visibility 0.12s;
  z-index: 30;
}

.bx-nav__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 8px;
}

.bx-nav__submenu-inner {
  padding: 6px 0;
  max-height: 380px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--bx-border);
  border-top: 2px solid var(--bx-red);
  border-radius: 0 0 var(--bx-radius) var(--bx-radius);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.1);
}

.bx-nav__submenu--cols .bx-nav__submenu-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 0;
  padding: 8px 4px;
}

.bx-nav__submenu--cols {
  min-width: 320px;
  max-width: min(480px, 94vw);
}

.bx-nav__sublink {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--bx-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.bx-nav__submenu--cols .bx-nav__sublink {
  padding: 8px 12px;
  border-radius: 4px;
  margin: 0 4px;
  white-space: normal;
}

.bx-nav__sublink:hover {
  background: rgba(200, 16, 46, 0.06);
  color: var(--bx-red);
}

/* 末项下拉防溢出 */
.bx-nav__item:nth-last-child(-n+2) .bx-nav__submenu {
  left: auto;
  right: 0;
  transform: none;
}

.bx-nav__item:nth-last-child(-n+2).has-children:hover .bx-nav__submenu,
.bx-nav__item:nth-last-child(-n+2).has-children:focus-within .bx-nav__submenu,
.bx-nav__item:nth-last-child(-n+2).has-children.is-open .bx-nav__submenu {
  transform: none;
}

.bx-header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: center;
  gap: 12px;
}

.bx-header-actions__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.25;
}

.bx-header-actions__phone-label {
  font-size: 11px;
  color: var(--bx-muted);
}

.bx-header-actions__phone strong {
  font-size: 17px;
  color: var(--bx-red);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bx-header-actions__cta {
  margin: 0;
}

.bx-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-radius);
  background: #fff;
  cursor: pointer;
}

.bx-nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--bx-title);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.bx-header.is-nav-open .bx-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bx-header.is-nav-open .bx-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.bx-header.is-nav-open .bx-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.bx-nav-drawer {
  pointer-events: none;
  visibility: hidden;
}

.bx-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bx-nav-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  border: none;
  background: rgba(26, 26, 26, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
  cursor: pointer;
}

.bx-nav-drawer.is-open .bx-nav-drawer__backdrop {
  opacity: 1;
}

.bx-nav-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 16px 20px calc(24px + var(--bx-mobile-bar-h, 48px) + env(safe-area-inset-bottom, 0));
  overflow-y: auto;
}

.bx-nav-drawer.is-open .bx-nav-drawer__panel {
  transform: translateX(0);
}

.bx-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bx-border);
}

.bx-nav-drawer__title {
  font-weight: 600;
  color: var(--bx-title);
}

.bx-nav-drawer__close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--bx-muted);
  cursor: pointer;
  padding: 0 4px;
}

.bx-nav-drawer__tree {
  flex: 1;
  overflow-y: auto;
}

.bx-nav-drawer__group {
  border-bottom: 1px solid #f0f0f0;
}

.bx-nav-drawer__link {
  display: block;
  text-decoration: none;
  color: var(--bx-title);
}

.bx-nav-drawer__link--main {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
}

.bx-nav-drawer__link--main.is-active {
  color: var(--bx-red);
}

.bx-nav-drawer__children {
  padding-bottom: 10px;
}

.bx-nav-drawer__link--sub {
  padding: 8px 0 8px 14px;
  font-size: 13px;
  color: var(--bx-muted);
  border-left: 2px solid var(--bx-border);
  margin-left: 4px;
  margin-bottom: 2px;
}

.bx-nav-drawer__link--sub:hover {
  color: var(--bx-red);
  border-left-color: var(--bx-red);
}

.bx-nav-drawer__tel {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

/* ── Buttons ── */
.bx-btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--bx-radius);
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.bx-btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.bx-btn--primary {
  background: var(--bx-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.25);
}

.bx-btn--primary:hover {
  background: var(--bx-red-dark);
  transform: translateY(-1px);
}

.bx-btn--ghost {
  background: transparent;
  border: 1px solid var(--bx-red);
  color: var(--bx-red);
}

.bx-btn--ghost:hover {
  background: rgba(200, 16, 46, 0.06);
}

.bx-btn--on-dark.bx-btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.bx-btn--on-dark.bx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Sections ── */
.bx-main { min-height: 50vh; }

.bx-section {
  padding: 64px 0;
}

.bx-section--muted {
  background: var(--bx-section);
}

.bx-muted { color: var(--bx-muted); }

.bx-compliance {
  font-size: 13px;
  color: var(--bx-muted);
  border-left: 3px solid var(--bx-gold);
  padding-left: 12px;
}

/* ── Footer（浅色，与首页区块统一） ── */
.bx-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  color: var(--bx-muted);
  padding: 40px 0 0;
  font-size: 13px;
  margin-bottom: 0;
  padding-bottom: calc(var(--bx-trust-bar-h) + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--bx-border);
}

html.is-trust-bar-hidden .bx-footer,
body.is-trust-bar-hidden .bx-footer {
  padding-bottom: 0;
}

.bx-footer__wrap {
  padding-bottom: 20px;
}

.bx-footer__shell {
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid var(--bx-border);
  background: #fff;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.05);
}

.bx-footer a:not(.bx-footer__phone):not(.bx-btn) {
  color: var(--bx-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bx-footer a:not(.bx-footer__phone):not(.bx-btn):hover {
  color: var(--bx-red);
}

.bx-footer__grid {
  display: grid;
  gap: 22px 28px;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.2fr);
  align-items: start;
}

.bx-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.bx-footer__logo-link {
  display: inline-block;
  line-height: 0;
}

.bx-footer__logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
}

.bx-footer__company {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bx-title);
  line-height: 1.4;
}

.bx-footer__slogan {
  margin: 6px 0 0;
  color: var(--bx-muted);
  font-size: 12px;
  line-height: 1.55;
}

.bx-footer__tags {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bx-footer__tags li {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--bx-border);
  font-size: 11px;
  color: var(--bx-muted);
  line-height: 1.4;
}

.bx-footer__intro {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--bx-muted);
  text-align: justify;
}

.bx-footer__brand .bx-footer__intro {
  margin-top: 0;
}

.bx-footer__hotline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 12px;
}

.bx-footer__hotline-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--bx-muted);
}

.bx-footer__phone {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff5f5;
  border: 1px solid rgba(200, 16, 46, 0.28);
  color: var(--bx-red);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bx-footer a.bx-footer__phone:hover,
.bx-footer a.bx-footer__phone:focus-visible,
.bx-footer a.bx-footer__phone:active {
  color: var(--bx-red);
  background: #ffe4e6;
  border-color: var(--bx-red);
  box-shadow: 0 2px 10px rgba(200, 16, 46, 0.12);
}

.bx-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bx-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}

.bx-footer__nav-title {
  display: block;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(200, 16, 46, 0.12);
  color: var(--bx-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bx-footer__nav-grid a {
  font-size: 13px;
  line-height: 1.5;
}

.bx-footer__stores {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bx-footer-stores__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.bx-footer-stores__head .bx-footer__nav-title {
  margin: 0;
  padding: 0;
  border: 0;
}

.bx-footer-stores__switch {
  display: flex;
  gap: 4px;
}

.bx-footer-stores__arrow {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--bx-border);
  background: #fff;
  color: var(--bx-title);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.bx-footer-stores__arrow:hover,
.bx-footer-stores__arrow:focus-visible {
  border-color: var(--bx-red);
  color: var(--bx-red);
  background: #fff5f5;
  outline: none;
}

.bx-footer-stores__tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  margin-bottom: 2px;
}

.bx-footer-stores__tabs::-webkit-scrollbar {
  display: none;
}

.bx-footer-stores__tab {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--bx-border);
  background: #f8fafc;
  color: var(--bx-muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bx-footer-stores__tab:hover,
.bx-footer-stores__tab.is-active {
  background: #fff5f5;
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--bx-red);
}

.bx-footer-stores__viewport {
  position: relative;
}

.bx-footer-stores__panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 10px 12px;
  align-items: center;
  min-height: 96px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--bx-border);
  background: linear-gradient(160deg, #fff 0%, #fff8f8 100%);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.bx-footer-stores__panel.is-active {
  display: grid;
}

.bx-footer-stores__panel:hover {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.08);
}

.bx-footer-stores__info {
  min-width: 0;
}

.bx-footer-stores__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 0 6px;
}

.bx-footer-stores__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--bx-red);
  line-height: 1.3;
}

.bx-footer-stores__area {
  margin: 0;
  font-size: 12px;
  color: var(--bx-muted);
  line-height: 1.3;
}

.bx-footer-stores__phone {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--bx-title);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.bx-footer-stores__phone + .bx-footer-stores__phone {
  margin-top: 2px;
}

.bx-footer-stores__phone--mobile {
  font-size: 14px;
  font-weight: 600;
}

a.bx-footer-stores__phone:hover {
  color: var(--bx-red);
}

.bx-footer-stores__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bx-footer-stores__qr img,
.bx-footer-stores__qr-ph {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 1px solid var(--bx-border);
  background: #fff;
  object-fit: cover;
}

.bx-footer-stores__qr-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bx-red);
  background: #fff5f5;
}

.bx-footer-stores__qr-cap {
  font-size: 10px;
  color: var(--bx-muted);
  letter-spacing: 0.04em;
}

.bx-footer__store-more {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bx-red);
}

.bx-footer__legal {
  border-top: 1px solid var(--bx-border);
  background: #f8fafc;
  font-size: 11px;
  color: var(--bx-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.bx-footer__legal-inner {
  max-width: var(--bx-container);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.bx-footer__legal-inner::-webkit-scrollbar {
  display: none;
}

.bx-footer__legal-inner a {
  color: var(--bx-muted);
  text-decoration: none;
  white-space: nowrap;
}

.bx-footer__legal-inner a:hover {
  color: var(--bx-red);
}

.bx-footer__legal-text {
  white-space: nowrap;
}

.bx-footer__legal-sep {
  opacity: 0.35;
  user-select: none;
}

/* ── 底部固定荣誉条 ── */
.bx-trust-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  min-height: var(--bx-trust-bar-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  color: #f6efe3;
  background:
    linear-gradient(180deg, #4a1620 0%, #2d0d14 100%);
  box-shadow:
    0 -10px 28px rgba(26, 10, 12, 0.22),
    inset 0 1px 0 rgba(232, 201, 106, 0.38);
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.32s ease,
    visibility 0.38s;
  visibility: visible;
  will-change: transform, opacity;
}

.bx-trust-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8c96a 18%, #f3e2a8 50%, #e8c96a 82%, transparent);
}

.bx-trust-bar.is-closing {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

html.is-trust-bar-hidden .bx-trust-bar,
body.is-trust-bar-hidden .bx-trust-bar,
.bx-trust-bar.is-hidden {
  display: none;
}

.bx-trust-bar__inner {
  position: relative;
  min-height: var(--bx-trust-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6px 44px 6px 12px;
  font-size: 12px;
  color: #f6efe3;
}

.bx-trust-bar__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: calc(100% - 28px);
  padding: 0;
}

.bx-trust-bar__scroll::-webkit-scrollbar {
  display: none;
}

.bx-trust-bar__rule {
  width: 1px;
  height: 28px;
  margin: 0 18px;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(232, 201, 106, 0.55), transparent);
}

.bx-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px;
  border: 0;
  background: none;
  color: #f3ece3;
  text-decoration: none;
  white-space: nowrap;
}

.bx-trust-bar__item:hover,
.bx-trust-bar__item:focus-visible {
  color: #fff4c8;
}

.bx-trust-bar__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
}

.bx-trust-bar__svg {
  display: block;
  width: 38px;
  height: 38px;
}

.bx-trust-bar__item--grade .bx-trust-bar__svg {
  width: 34px;
  height: 38px;
}

.bx-trust-bar__copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.bx-trust-bar__org {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #d8c48a;
}

.bx-trust-bar__name {
  font-family: var(--bx-font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #f8f1e6;
}

.bx-trust-bar__item:hover .bx-trust-bar__name,
.bx-trust-bar__item:focus-visible .bx-trust-bar__name {
  color: #ffe9a6;
}

.bx-trust-bar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(243, 226, 168, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #e8c96a;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-trust-bar__close:hover {
  background: rgba(232, 201, 106, 0.14);
  border-color: rgba(243, 226, 168, 0.55);
  color: #fff4c8;
  transform: translateY(-50%) rotate(90deg) scale(1.06);
}

.bx-trust-bar__close-icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.bx-trust-bar__close-icon::before,
.bx-trust-bar__close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-trust-bar__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bx-trust-bar__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bx-trust-bar__close:hover .bx-trust-bar__close-icon::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

.bx-trust-bar__close:hover .bx-trust-bar__close-icon::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.bx-text-link:hover {
  text-decoration: underline;
}

.bx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--bx-muted);
}

.bx-breadcrumb a {
  color: var(--bx-muted);
  text-decoration: none;
}

.bx-breadcrumb a:hover {
  color: var(--bx-red);
}

/* ── Mobile bar ── */
.bx-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--bx-trust-bar-h) + env(safe-area-inset-bottom, 0));
  z-index: 90;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--bx-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

html.is-trust-bar-hidden .bx-mobile-bar,
body.is-trust-bar-hidden .bx-mobile-bar {
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bx-mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.bx-mobile-bar__btn--tel {
  background: var(--bx-red);
  color: #fff;
}

.bx-mobile-bar__btn--wx {
  color: var(--bx-red);
  border-left: 1px solid var(--bx-border);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bx-nav__link {
    padding: 8px 8px;
    font-size: 13px;
  }

  .bx-header-actions__phone {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --bx-header-main-h: 58px;
    --bx-focus-h: min(468px, calc(100svh - var(--bx-header-stack)));
  }

  .bx-container {
    padding: 0 16px;
  }

  .bx-topbar__inner {
    padding: 0 16px;
  }

  .bx-topbar__hours,
  .bx-topbar__icons {
    display: none;
  }

  .bx-topbar-live {
    gap: 6px;
    font-size: 11px;
  }

  .bx-topbar-live__date-full { display: none; }
  .bx-topbar-live__date-short { display: inline; }
  .bx-topbar-live__city { display: none; }
  .bx-topbar-live__time { letter-spacing: 0.03em; }

  .bx-weather-panel {
    left: 0;
    right: auto;
    min-width: min(260px, calc(100vw - 32px));
  }

  .bx-header-main__inner {
    min-height: 58px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }

  .bx-logo--pc { display: none; }
  .bx-logo--mobile {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .bx-logo--mobile img {
    height: 36px;
    max-width: min(168px, 46vw);
  }

  .bx-nav { display: none; }

  .bx-header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0;
  }

  .bx-header-actions__phone,
  .bx-header-actions__cta { display: none; }

  .bx-nav-toggle {
    display: flex;
    margin-left: 4px;
    margin-right: -4px;
  }

  .bx-mobile-bar { display: grid; }

  body.bx-cdddh:has(.bx-mobile-bar):not(.is-trust-bar-hidden) .bx-footer,
  html:not(.is-trust-bar-hidden) body.bx-cdddh:has(.bx-mobile-bar) .bx-footer {
    padding-bottom: calc(var(--bx-trust-bar-h) + var(--bx-mobile-bar-h) + env(safe-area-inset-bottom, 0));
  }

  html.is-trust-bar-hidden body.bx-cdddh:has(.bx-mobile-bar) .bx-footer,
  body.bx-cdddh.is-trust-bar-hidden:has(.bx-mobile-bar) .bx-footer {
    padding-bottom: calc(var(--bx-mobile-bar-h) + env(safe-area-inset-bottom, 0));
  }

  .bx-footer__shell {
    padding: 20px 16px;
  }

  .bx-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .bx-footer__brand {
    grid-column: 1 / -1;
  }

  .bx-footer__stores {
    grid-column: 1 / -1;
  }

  .bx-footer__nav-grid {
    grid-template-columns: 1fr;
  }

  .bx-section {
    padding: 48px 0;
  }

  .bx-trust-bar__inner {
    font-size: 11px;
    padding: 5px 0;
    justify-content: flex-start;
    overflow: hidden;
  }

  .bx-trust-bar__inner.bx-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .bx-trust-bar__scroll {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 2px 40px 2px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x;
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 8px,
      #000 calc(100% - 28px),
      transparent 100%
    );
  }

  .bx-trust-bar__item {
    scroll-snap-align: start;
    flex-shrink: 0;
    gap: 8px;
  }

  .bx-trust-bar__mark,
  .bx-trust-bar__svg {
    width: 34px;
    height: 34px;
  }

  .bx-trust-bar__item--grade .bx-trust-bar__svg {
    width: 30px;
    height: 34px;
  }

  .bx-trust-bar__org {
    font-size: 9px;
  }

  .bx-trust-bar__name {
    font-size: 12px;
  }

  .bx-trust-bar__rule {
    margin: 0 12px;
    height: 24px;
  }

  .bx-trust-bar__close {
    right: 6px;
  }

  .bx-footer__legal-inner {
    font-size: 10px;
    gap: 4px 6px;
    padding: 8px 10px;
  }
}

/* ── 内页通用 ── */
.bx-page-hero {
  position: relative;
  overflow: hidden;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--bx-border, #e8e4de);
  background:
    linear-gradient(90deg, rgba(200, 16, 46, 0.05) 0%, rgba(200, 16, 46, 0) 50%),
    linear-gradient(180deg, #f7f1ea 0%, #fff 100%);
}

.bx-page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(200, 16, 46, 0.04) 18px 19px
    );
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 72%);
}

.bx-page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bx-red, #c8102e), #d4af37);
}

.bx-page-hero__inner {
  position: relative;
  z-index: 1;
}

.bx-page-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  flex-wrap: wrap;
}

.bx-page-hero__copy {
  min-width: 0;
  flex: 0 1 auto;
}

.bx-page-hero .bx-breadcrumb {
  margin-bottom: 4px;
}

.bx-page-hero .bx-breadcrumb a,
.bx-page-hero .bx-breadcrumb span {
  font-size: 12px;
}

.bx-breadcrumb__sep {
  opacity: 0.45;
}

.bx-page-hero__eyebrow {
  display: none;
}

.bx-page-hero__title {
  font-family: var(--bx-font-serif, 'Noto Serif SC', serif);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 700;
  color: var(--bx-title, #1a1a1a);
  margin: 0;
  line-height: 1.3;
  max-width: 22em;
}

.bx-page-hero__title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--bx-red, #c8102e), #d4af37);
  border-radius: 2px;
}

.bx-page-hero__sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--bx-muted, #666);
  max-width: 52em;
  line-height: 1.55;
}

.bx-page-hero--tabs {
  padding: 8px 0 10px;
}

.bx-page-hero--tabs .bx-page-hero__title::after,
.bx-page-hero--compact .bx-page-hero__title::after {
  display: none;
}

.bx-page-hero--compact {
  padding: 8px 0 8px;
}

.bx-page-hero--compact .bx-page-hero__title {
  font-size: 1rem;
  font-weight: 600;
}

.bx-page-hero__aside,
.bx-page-hero__seal,
.bx-page-hero__aside-label {
  display: none;
}

.bx-page-body {
  padding-top: 18px;
  padding-bottom: 48px;
}

.bx-page-body__inner {
  max-width: var(--bx-container);
}

.bx-page-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bx-subnav {
  border-bottom: 1px solid var(--bx-border, #e8e4de);
  background: #f7f8fa;
}

.bx-subnav__inner,
.bx-subnav__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin: 8px auto 10px;
  padding: 6px 0;
  background: #fff;
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-radius);
  box-shadow: 0 10px 32px rgba(26, 26, 26, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.bx-page-hero .bx-subnav--hero {
  margin-top: 0;
  padding: 0;
  border: none;
  background: transparent;
  flex: 1 1 220px;
  min-width: 0;
}

.bx-subnav--hero .bx-subnav__row {
  margin: 0;
  padding: 0;
  gap: 4px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  justify-content: flex-end;
}

.bx-subnav__inner::-webkit-scrollbar,
.bx-subnav__row::-webkit-scrollbar {
  display: none;
}

.bx-subnav__home,
.bx-subnav__link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--bx-text, #333);
  text-decoration: none;
  padding: 9px 16px;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.bx-subnav__link:hover,
.bx-subnav__home:hover {
  color: var(--bx-red, #c8102e);
  background: rgba(200, 16, 46, 0.06);
}

.bx-subnav__link.is-active,
.bx-subnav__home.is-active {
  color: var(--bx-red, #c8102e);
  font-weight: 600;
  background: rgba(200, 16, 46, 0.06);
}

.bx-subnav--hero .bx-subnav__link,
.bx-subnav--hero .bx-subnav__home {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.55);
  color: var(--bx-muted, #666);
}

.bx-subnav--hero .bx-subnav__link:hover,
.bx-subnav--hero .bx-subnav__home:hover {
  color: var(--bx-red, #c8102e);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(200, 16, 46, 0.22);
}

.bx-subnav--hero .bx-subnav__link.is-active,
.bx-subnav--hero .bx-subnav__home.is-active {
  color: #fff;
  background: var(--bx-red, #c8102e);
  border-color: var(--bx-red, #c8102e);
  font-weight: 600;
}

.bx-faq-list {
  display: grid;
  gap: 10px;
}

.bx-faq-item {
  border: 1px solid var(--bx-border, #e8eaed);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.bx-faq-item[open] {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.06);
}

.bx-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  font-weight: 600;
}

.bx-faq-item summary::-webkit-details-marker {
  display: none;
}

.bx-faq-item__idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff1f2;
  color: var(--bx-red, #c8102e);
  font-size: 12px;
  font-weight: 700;
}

.bx-faq-item[open] .bx-faq-item__idx {
  background: var(--bx-red, #c8102e);
  color: #fff;
}

.bx-faq-item__a {
  padding: 0 16px 16px 62px;
}

.bx-faq-item__a p {
  margin: 0;
  color: var(--bx-muted, #666);
  font-size: 14px;
  line-height: 1.75;
}

.bx-prose {
  font-size: 15px;
  line-height: 1.75;
  color: var(--bx-text, #333);
}

.bx-prose p {
  margin: 0 0 1em;
}

.bx-prose h2,
.bx-prose h3 {
  font-family: var(--bx-font-serif, 'Noto Serif SC', serif);
  margin: 1.5em 0 0.75em;
  line-height: 1.35;
}

.bx-prose ul,
.bx-prose ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.bx-prose img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.bx-prose figure {
  margin: 16px 0;
}

.bx-wx-rich,
.bx-wx-rich *,
.bx-wx-rich *::before,
.bx-wx-rich *::after {
  box-sizing: content-box;
}

.bx-wx-rich .bx-wx-row,
.bx-wx-rich .bx-wx-row *,
.bx-wx-rich .bx-wx-photos,
.bx-wx-rich .bx-wx-photos * {
  box-sizing: border-box;
}

.bx-wx-rich .bx-wx-block,
.bx-wx-rich section,
.bx-wx-rich table {
  max-width: 100%;
}

/* 仅灰底/色块上的负 margin：取消叠到蓝条上；拼图行不匹配此选择器 */
.bx-wx-rich [style*="background"][style*="margin-top:-"],
.bx-wx-rich [style*="background"][style*="margin-top: -"],
.bx-wx-rich [style*="background-color"][style*="margin-top:-"],
.bx-wx-rich [style*="background-color"][style*="margin-top: -"],
.bx-wx-rich section[style*="margin-top:-"],
.bx-wx-rich section[style*="margin-top: -"] {
  margin-top: 10px !important;
}

.bx-prose.bx-wx-rich,
.bx-article-prose .bx-wx-rich,
.bx-wx-rich {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Microsoft Yahei", "PingFang SC", var(--bx-font-sans, sans-serif);
  font-size: 15px;
  line-height: 1.75;
  color: #1a202c;
  overflow: visible;
}

.bx-prose.bx-wx-rich p,
.bx-prose.bx-wx-rich h1,
.bx-prose.bx-wx-rich h2,
.bx-prose.bx-wx-rich h3,
.bx-prose.bx-wx-rich h4,
.bx-article-prose .bx-wx-rich p,
.bx-article-prose .bx-wx-rich h2,
.bx-article-prose .bx-wx-rich h3,
.bx-wx-rich p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
}

.bx-wx-rich img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.bx-wx-rich .bx-wx-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

.bx-wx-rich .bx-wx-row > * {
  min-width: 0;
  box-sizing: border-box;
}

.bx-wx-rich .bx-wx-row img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.bx-wx-rich .bx-wx-photos {
  align-items: stretch;
  gap: 3px;
}

.bx-wx-rich .bx-wx-photos > * {
  min-width: 0;
  box-sizing: border-box;
}

.bx-wx-rich .bx-wx-photos img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 4px;
}

.bx-article-prose .bx-wx-rich img,
.bx-prose.bx-wx-rich img {
  display: inline-block;
  margin: 0;
  border-radius: 0;
}

.bx-article-prose .bx-wx-rich .bx-wx-photos img,
.bx-prose.bx-wx-rich .bx-wx-photos img {
  display: block;
  margin: 0;
}

.bx-about-qualification {
  padding-top: 8px;
}

.bx-about-qualification__title {
  font-family: var(--bx-font-serif, 'Noto Serif SC', serif);
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--bx-text, #1a1a1a);
}

.bx-link-cards {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.bx-link-cards a {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--bx-border, #e8e4de);
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.bx-link-cards a:hover {
  border-color: var(--bx-accent, #c41e3a);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bx-link-cards strong {
  display: block;
  font-size: 16px;
  color: var(--bx-text, #1a1a1a);
  margin-bottom: 4px;
}

.bx-link-cards span {
  font-size: 13px;
  color: var(--bx-text-muted, #666);
}

.bx-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.bx-metrics__item {
  padding: 16px;
  border-radius: 10px;
  background: #faf8f5;
  text-align: center;
}

.bx-metrics__item strong {
  display: block;
  font-size: 20px;
  color: var(--bx-accent, #c41e3a);
  margin-bottom: 4px;
}

.bx-metrics__item span {
  font-size: 13px;
  color: var(--bx-text-muted, #666);
}

.bx-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.bx-card-lite {
  padding: 20px;
  border: 1px solid var(--bx-border, #e8e4de);
  border-radius: 10px;
  background: #fff;
}

.bx-card-lite h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

.bx-card-lite p {
  font-size: 14px;
  color: var(--bx-text-muted, #666);
  margin: 0;
  line-height: 1.6;
}

.bx-credentials-gallery__img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
  display: block;
}

.bx-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

.bx-news-feed {
  display: grid;
  gap: 0;
}

.bx-news-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px dashed var(--bx-border, #e8e4de);
}

.bx-news-item:first-child {
  padding-top: 0;
}

.bx-news-item__media {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f0ea;
  aspect-ratio: 16 / 10;
}

.bx-news-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bx-news-item:hover .bx-news-item__media img,
.bx-news-item:focus-within .bx-news-item__media img {
  transform: scale(1.05);
}

.bx-news-item__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  color: #9a8f86;
}

.bx-news-item__copy {
  min-width: 0;
  max-height: 125px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bx-news-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--bx-muted, #888);
}

.bx-news-item__cat {
  color: var(--bx-red, #c8102e);
  font-weight: 600;
}

.bx-news-item__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  min-width: 0;
}

.bx-news-item__title a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: inherit;
  text-decoration: none;
}

.bx-news-item__title a:hover,
.bx-news-item:hover .bx-news-item__title a,
.bx-news-item:focus-within .bx-news-item__title a {
  color: var(--bx-red, #c8102e);
}

.bx-news-item__excerpt {
  margin: 3px 0 0;
  font-size: 14px;
  color: var(--bx-muted, #666);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  transition: color 0.2s ease;
}

.bx-news-item:hover .bx-news-item__excerpt,
.bx-news-item:focus-within .bx-news-item__excerpt {
  color: #3d3d3d;
}

.bx-news-side {
  padding: 0;
  border: none;
  background: transparent;
  display: grid;
  gap: 14px;
}

.bx-news-side__block {
  padding: 18px 18px 20px;
  border: 1px solid var(--bx-border, #e8e4de);
  border-radius: 14px;
  background: #fff;
}

.bx-news-side__block:last-child {
  border-bottom: 1px solid var(--bx-border, #e8e4de);
}

.bx-news-side h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bx-news-search {
  margin: 0;
}

.bx-news-search__bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.bx-news-search__field {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid #e5e0d8;
  border-radius: 10px;
  background: #faf8f5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bx-news-search__field:focus-within {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
  background: #fff;
}

.bx-news-search__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  color: #9a8f86;
}

.bx-news-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 12px 10px 0;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}

.bx-news-search button {
  width: 100%;
  height: 42px;
  border: 0;
  background: var(--bx-red, #c8102e);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
}

.bx-news-search button:hover {
  filter: brightness(1.05);
}

.bx-news-side__tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7f7;
  border: 1px solid rgba(200, 16, 46, 0.14);
  text-decoration: none;
  color: inherit;
}

.bx-news-side__tel span {
  font-size: 12px;
  color: var(--bx-muted, #666);
}

.bx-news-side__tel strong {
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--bx-red, #c8102e);
}

.bx-news-hot {
  display: grid;
  gap: 0;
}

.bx-news-hot__item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
  border-bottom: 1px dashed #eee8e0;
  padding: 10px 0;
  text-decoration: none;
}

.bx-news-hot__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bx-news-hot__item:first-child {
  padding-top: 0;
}

.bx-news-hot__n {
  font-weight: 700;
  color: var(--bx-red, #c8102e);
  font-variant-numeric: tabular-nums;
}

.bx-news-hot__item:nth-child(n + 4) .bx-news-hot__n {
  color: #9a8f86;
}

.bx-news-hot__item:hover {
  color: var(--bx-red, #c8102e);
}

@media (max-width: 1100px) {
  .bx-news-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
  }

  .bx-news-item {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 16px;
  }

  .bx-news-item__copy {
    max-height: 105px;
  }
}

.bx-article-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px);
  border-radius: 16px;
  border: 1px solid #e8edf3;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.bx-article-head {
  margin-bottom: 8px;
}

.bx-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.bx-article-cat {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--bx-red, #c8102e);
  font-size: 12px;
  font-weight: 600;
}

.bx-article-meta-time {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.bx-article-meta-sep {
  margin: 0 6px;
  color: #cbd5e1;
}

.bx-article-title {
  margin: 0;
  font-family: var(--bx-font-serif, 'Noto Serif SC', serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  color: #1a1a1a;
}

.bx-article-cover {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.bx-article-cover img {
  width: 100%;
  display: block;
  max-height: min(420px, 52vh);
  object-fit: cover;
}

.bx-article-video {
  margin: 22px 0 0;
}
.bx-article-video__figure {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.bx-article-video__player {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: #111;
}
.bx-article-video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(10, 8, 10, 0.28);
  color: #fff;
  cursor: pointer;
}
.bx-article-video.is-ready .bx-article-video__play {
  display: none;
}
.bx-article-video.is-loading .bx-article-video__play {
  cursor: wait;
  pointer-events: auto;
}
.bx-article-video.is-ready .bx-article-video__player {
  position: relative;
  z-index: 3;
}
.bx-article-video.is-loading .bx-article-video__play-ico {
  opacity: 0.35;
}
.bx-article-video__load {
  display: none;
  width: min(220px, 72vw);
  height: 4px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}
.bx-article-video.is-loading .bx-article-video__load {
  display: block;
}
.bx-article-video__load > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--bx-gold), var(--bx-red));
}
.bx-article-video__skip {
  display: none;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.bx-article-video.is-loading .bx-article-video__skip:not([hidden]) {
  display: inline;
}
.bx-article-video__play-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bx-red), #9e0c24);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  position: relative;
}
.bx-article-video__play-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}
.bx-article-video__play-txt {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.bx-article-video__wm {
  margin: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.bx-wx-rich .bx-post-video,
.bx-wx-rich .bx-post-video-shell {
  margin: 0 0 1rem;
}
.bx-wx-rich video,
.bx-wx-rich .bx-post-video video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  border-radius: 12px;
  background: #111;
}

.bx-article-body {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eef1f4;
}

.bx-article-prose {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
}

.bx-article-prose p {
  margin: 0 0 1.05em;
}

.bx-article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bx-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.bx-article-nav > div {
  padding: 12px 14px;
  border: 1px solid var(--bx-border, #e8e4de);
  border-radius: 10px;
  background: #faf8f5;
}

.bx-article-nav strong {
  display: block;
  font-size: 12px;
  color: var(--bx-muted, #888);
  margin-bottom: 4px;
}

.bx-article-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.bx-article-nav a:hover {
  color: var(--bx-red, #c8102e);
}

.bx-article-related {
  margin-top: 28px;
}

.bx-article-related h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.bx-article-related__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bx-article-related__card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.bx-article-related__media,
.bx-article-related__ph {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #eeeae3;
  aspect-ratio: 16 / 10;
}

.bx-article-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bx-article-related__body strong {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.bx-article-related__body time {
  font-size: 12px;
  color: var(--bx-muted, #888);
}

/* 惠民列表样式见 huimin.css */

.bx-svc-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.bx-svc-stage__media {
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  background: #1a1a1a;
}

.bx-svc-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bx-svc-stage__ph {
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.15), rgba(26, 26, 26, 0.92)),
    repeating-linear-gradient(-18deg, transparent 0 16px, rgba(255, 255, 255, 0.04) 16px 17px);
}

.bx-svc-stage__ph span {
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.bx-svc-stage__ph strong {
  font-size: 22px;
  margin-top: 8px;
}

.bx-svc-stage__copy {
  padding: 8px 4px 0;
}

.bx-svc-stage__tag {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bx-red, #c8102e);
}

.bx-svc-stage__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}

.bx-svc-stage__points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.bx-svc-stage__points li {
  padding: 10px 12px;
  border-radius: 8px;
  background: #faf8f5;
  border: 1px solid var(--bx-border, #e8e4de);
  font-size: 14px;
}

.bx-svc-stage__actions {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bx-svc-notice {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff8e8;
  color: #7a5a12;
  font-size: 13px;
}

.bx-svc-prose {
  margin-top: 8px;
}

.bx-svc-related {
  margin-top: 32px;
}

.bx-svc-related h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.bx-svc-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bx-svc-related__list a {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--bx-border, #e8e4de);
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
}

.bx-svc-related__list a:hover {
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--bx-red, #c8102e);
}

.bx-svc-detail-struct {
  margin-top: 8px;
}

.bx-svc-detail-struct__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bx-stores-page__intro {
  max-width: 52em;
  margin-bottom: 8px;
}

.bx-stores-page__heading {
  font-family: var(--bx-font-serif, 'Noto Serif SC', serif);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 8px 0 0;
  padding-bottom: 8px;
  display: inline-block;
  position: relative;
}

.bx-stores-page__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
}

.bx-stores-map-section .bx-desc {
  margin: 8px 0 16px;
  color: var(--bx-text-muted, #666);
  font-size: 14px;
  line-height: 1.6;
}

.bx-stores-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 960px) {
  .bx-stores-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bx-stores-page__grid {
    grid-template-columns: 1fr;
  }
}

.bx-stores-page__card {
  padding: 20px;
  border: 1px solid var(--bx-border, #e8e4de);
  border-radius: 12px;
  background: #fff;
}

.bx-stores-page__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.bx-stores-page__head-main {
  min-width: 0;
  flex: 1;
}

.bx-stores-page__shop {
  font-size: 16px;
  margin: 0;
  color: var(--bx-accent, #c41e3a);
}

.bx-stores-page__company {
  font-size: 14px;
  margin: 4px 0 8px;
  color: var(--bx-text, #333);
}

.bx-stores-page__addr,
.bx-stores-page__hours,
.bx-stores-page__phone {
  font-size: 14px;
  color: var(--bx-text-muted, #666);
  margin: 0 0 8px;
  line-height: 1.5;
}

.bx-stores-page__phone a {
  color: var(--bx-accent, #c41e3a);
  text-decoration: none;
  font-weight: 600;
}

.bx-stores-page__album {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--bx-accent, #c41e3a);
  text-align: center;
}

.bx-stores-page__album-pic {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid var(--bx-border, #e8e4de);
  cursor: pointer;
}

.bx-stores-page__album-pic img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
}

.bx-stores-page__album-txt {
  display: block;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--bx-accent, #c41e3a);
  white-space: nowrap;
  text-decoration: none;
}

.bx-stores-page__album-txt:hover {
  text-decoration: underline;
}

/* 门头 / 环境图：拦截右键另存为（透明层接住菜单，图片本身不可点） */
.bx-store-luxe__thumb,
.bx-stores-page__album,
.bx-stores-page__album-pic,
.bx-store-env-block__shot,
.bx-env-lb {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.bx-store-luxe__thumb img,
.bx-stores-page__album-pic img,
.bx-store-env-block__shot img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.bx-stores-page__foot {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bx-stores-page__card .bx-store-luxe__status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

.bx-stores-page__card .bx-store-luxe__status.is-open {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.bx-stores-page__card .bx-store-luxe__status.is-closed {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.bx-stores-page__card .bx-store-luxe__status.is-holiday {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.bx-contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1040px;
}

.bx-contact-aside__title {
  font-size: 16px;
  margin: 0 0 12px;
}

.bx-contact-aside__stores .bx-stores-page__grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.bx-form {
  position: relative;
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.bx-form__field span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.bx-form__field input,
.bx-form__field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--bx-border, #ddd);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
}

.bx-form__field input:focus,
.bx-form__field textarea:focus {
  outline: none;
  border-color: var(--bx-accent, #c41e3a);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.bx-form__honeypot,
.bx-form__hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.bx-form [data-lead-submit][disabled] {
  opacity: 0.65;
  cursor: wait;
}

.bx-form__captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bx-form__captcha-q {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff7f7;
  border: 1px solid #f0d4d8;
  color: var(--bx-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.bx-form__captcha-row input {
  flex: 1 1 96px;
  max-width: 140px;
}

.bx-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.bx-alert--ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.bx-alert--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.bx-svc-detail-wrap .bx-svc-detail-struct {
  margin-top: 24px;
}

.bx-svc-detail-struct__title {
  font-size: 18px;
  margin: 0 0 8px;
}

.bx-svc-detail-struct__sub {
  color: var(--bx-text-muted, #666);
  margin: 0 0 16px;
}

.bx-svc-detail-struct__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bx-svc-detail-struct__list li {
  padding: 14px 16px;
  border: 1px solid var(--bx-border, #e8e4de);
  border-radius: 8px;
  background: #faf8f5;
}

.bx-svc-detail-struct__list strong {
  display: block;
  margin-bottom: 4px;
}

.bx-svc-detail-struct__list span {
  font-size: 14px;
  color: var(--bx-text-muted, #666);
}

@media (max-width: 768px) {
  .bx-contact-layout {
    grid-template-columns: 1fr;
  }

  .bx-page-hero {
    padding: 8px 0 10px;
  }

  .bx-page-hero__inner {
    display: block;
  }

  .bx-page-hero__aside {
    display: none;
  }

  .bx-page-hero__row {
    align-items: flex-start;
  }

  .bx-subnav--hero .bx-subnav__row {
    justify-content: flex-start;
  }

  .bx-news-layout,
  .bx-news-item,
  .bx-svc-stage,
  .bx-huimin-grid,
  .bx-article-nav,
  .bx-article-related__grid,
  .bx-svc-detail-struct__list {
    grid-template-columns: 1fr;
  }

  .bx-news-item__media {
    max-width: 100%;
  }

  .bx-news-item__copy {
    max-height: none;
  }
}

.bx-stores-map-wrap {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #e8eef5;
}

.bx-stores-map {
  width: 100%;
  min-height: 420px;
  height: 420px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #e8eef5;
}

.bx-stores-map .amap-container,
.bx-stores-map .amap-container *,
.bx-stores-map .amap-container *::before,
.bx-stores-map .amap-container *::after {
  box-sizing: content-box;
}

.bx-stores-map img,
.bx-stores-map canvas {
  max-width: none !important;
}

@media (max-width: 640px) {
  .bx-stores-map {
    height: min(340px, 52vh);
    min-height: 260px;
  }
}

.bx-map-osm-note,
.bx-map-fallback-msg {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
}

.bx-map-placeholder {
  padding: 24px;
  border: 1px dashed #d6d3d1;
  border-radius: 12px;
  background: #fafaf9;
  color: #57534e;
}

.bx-map-placeholder small {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.bx-amap-info {
  padding: 6px 4px 2px;
  min-width: 200px;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

.bx-amap-info strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

.bx-amap-info p {
  margin: 0 0 8px;
}

.bx-amap-info a {
  color: #be123c;
  font-weight: 600;
}

.bx-store-map-marker-label {
  display: inline-block;
  max-width: 12rem;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.leaflet-tooltip.bx-store-map-leaflet-label {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  max-width: 12rem;
}

.leaflet-tooltip.bx-store-map-leaflet-label::before {
  display: none;
}

/* 发展历程：左文右轴（同屏同滚，密度统一） */
.bx-history {
  --hx-line: #ead9c0;
  --hx-red: var(--bx-red, #c8102e);
  --hx-ink: #3a3a3a;
  overflow: hidden;
}

.bx-history__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #efe6d8;
}

.bx-history__kicker {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--bx-gold, #c9a227);
  font-weight: 600;
}

.bx-history__title {
  margin: 0;
  font-family: var(--bx-font-serif, "Noto Serif SC", serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--bx-title, #1a1a1a);
}

.bx-history__span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  font-family: var(--bx-font-serif, "Noto Serif SC", serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--hx-red);
  letter-spacing: 0.03em;
}

.bx-history__span i {
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--hx-red), var(--bx-gold, #c9a227));
}

.bx-history__span em {
  font-style: normal;
  font-family: var(--bx-font-sans, sans-serif);
  font-size: 12px;
  font-weight: 500;
  color: var(--bx-muted, #666);
  letter-spacing: 0;
  width: 100%;
  text-align: right;
}

.bx-history__split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 0 28px;
  align-items: start;
}

.bx-history__copycol {
  min-width: 0;
  padding-right: 22px;
  border-right: 1px solid #efe6d8;
}

.bx-history__timecol {
  min-width: 0;
  padding-left: 4px;
}

.bx-history__prose {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--hx-ink);
}

.bx-history__prose p,
.bx-history__prose div,
.bx-history__prose li {
  margin: 0 0 0.55em;
  font-size: inherit;
  line-height: inherit;
}

.bx-history__prose h1,
.bx-history__prose h2,
.bx-history__prose h3 {
  margin: 0 0 0.65em;
  font-size: 14px;
  font-weight: 700;
  color: var(--bx-title, #1a1a1a);
}

.bx-history__axis {
  list-style: none;
  margin: 0;
  padding: 2px 0 4px;
  position: relative;
}

.bx-history__axis::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 4px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--hx-red), var(--hx-line) 10%, var(--hx-line) 90%, transparent);
}

.bx-history__item {
  display: grid;
  grid-template-columns: 48px 18px 1fr;
  gap: 8px;
  align-items: start;
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(12px);
}

.bx-history__item.is-in {
  animation: bx-history-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.03s);
}

@keyframes bx-history-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.bx-history__year {
  margin: 3px 0 0;
  text-align: right;
  font-family: var(--bx-font-serif, "Noto Serif SC", serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--hx-red);
  line-height: 1.2;
}

.bx-history__year--ghost {
  visibility: hidden;
}

.bx-history__node {
  width: 10px;
  height: 10px;
  margin: 7px auto 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--hx-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
  z-index: 1;
  position: relative;
}

.bx-history__item.is-in .bx-history__node {
  animation: bx-history-pulse 1.6s ease-out 0.15s;
}

@keyframes bx-history-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.3); }
  100% { box-shadow: 0 0 0 8px rgba(200, 16, 46, 0); }
}

.bx-history__card {
  background: #fff;
  border: 1px solid #f0e8dc;
  border-radius: 8px;
  padding: 8px 11px 9px;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bx-history__card:hover {
  border-color: #e2c48a;
  background: #fffdf9;
}

.bx-history__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.bx-history__meta time {
  font-size: 12px;
  font-weight: 700;
  color: var(--hx-red);
  letter-spacing: 0.03em;
}

.bx-history__tag {
  font-size: 10px;
  font-weight: 600;
  color: #8a6a2a;
  background: #f7f0e4;
  border-radius: 999px;
  padding: 1px 6px;
}

.bx-history__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--hx-ink);
}

@media (prefers-reduced-motion: reduce) {
  .bx-history__item {
    opacity: 1;
    transform: none;
  }
  .bx-history__item.is-in {
    animation: none;
  }
  .bx-history__item.is-in .bx-history__node {
    animation: none;
  }
}

@media (max-width: 980px) {
  .bx-history__split {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .bx-history__copycol {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #efe6d8;
  }
  .bx-history__span,
  .bx-history__span em {
    text-align: left;
    justify-content: flex-start;
  }
}

.bx-store-env-block {
  margin: 0 0 28px;
  scroll-margin-top: calc(var(--bx-header-stack, 90px) + 16px);
}

#store-env {
  scroll-margin-top: calc(var(--bx-header-stack, 90px) + 12px);
}

.bx-store-env-block__title {
  margin: 0 0 12px;
  font-family: var(--bx-font-serif);
  font-size: calc(1.15rem * var(--bx-title-scale, 1));
  color: var(--bx-title);
}

.bx-store-env-block__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bx-store-env-block__shot {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1214;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.bx-store-env-block__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bx-store-env-block__shot:hover img {
  transform: scale(1.04);
}

.bx-env-lb {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 8, 10, 0.88);
  padding: 24px 16px;
}

.bx-env-lb.is-open {
  display: flex;
}

.bx-env-lb__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  cursor: pointer;
}

.bx-env-lb__img {
  display: block;
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.bx-env-lb__shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
}

.bx-env-lb__cap {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.bx-env-lb__btn {
  position: absolute;
  z-index: 3;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.bx-env-lb__btn--prev { left: 18px; }
.bx-env-lb__btn--next { right: 18px; }
.bx-env-lb__btn--close { top: 16px; right: 16px; width: auto; padding: 0 14px; border-radius: 999px; font-size: 14px; }

@media (max-width: 860px) {
  .bx-store-env-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bx-history__axis::before { left: 14px; }
  .bx-history__item {
    grid-template-columns: 18px 1fr;
    gap: 8px;
  }
  .bx-history__year,
  .bx-history__year--ghost {
    display: none;
  }
  .bx-history__item > .bx-history__node { grid-column: 1; }
  .bx-history__card { grid-column: 2; }
}

.bx-pawn-query__note {
  margin: 0 0 18px;
  padding: 12px 14px;
  background: #f8fafc;
  border-left: 3px solid var(--bx-red);
  line-height: 1.7;
}

.bx-pawn-query__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 20px;
}

.bx-pawn-query__label {
  font-weight: 650;
}

.bx-pawn-query__input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-radius);
  font-size: 15px;
  background: #fff;
}

.bx-pawn-query__table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  border: 1px solid var(--bx-border);
  border-radius: 8px;
}

.bx-pawn-query__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bx-pawn-query__table caption {
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  background: #f7f8fa;
  border-bottom: 1px solid var(--bx-border);
}

.bx-pawn-query__table th,
.bx-pawn-query__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--bx-border);
  vertical-align: top;
}

.bx-pawn-query__table thead th {
  white-space: nowrap;
  background: #fafbfc;
  font-weight: 650;
}

.bx-pawn-query__table tbody tr {
  background: #fff8f8;
}

.bx-pawn-query__src {
  margin: 0 0 20px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .bx-pawn-query__table th,
  .bx-pawn-query__table td {
    font-size: 12px;
    padding: 8px;
  }
}

/* ── Page scroll nav ── */
.bx-main > section {
  scroll-margin-top: calc(var(--bx-header-stack, 90px) + 12px);
}

.bx-page-nav {
  position: fixed;
  right: 18px;
  bottom: calc(var(--bx-trust-bar-h) + 20px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bx-page-nav[hidden] {
  display: none;
}

html.is-trust-bar-hidden .bx-page-nav,
body.is-trust-bar-hidden .bx-page-nav {
  bottom: 20px;
}

.bx-page-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(200, 16, 46, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--bx-red);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.1);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.bx-page-nav__btn[hidden] {
  display: none;
}

.bx-page-nav__btn:hover,
.bx-page-nav__btn:focus-visible {
  border-color: var(--bx-red);
  background: #fff;
  color: var(--bx-red-dark);
}

.bx-page-nav__ico {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.bx-page-nav__ico--up {
  transform: rotate(-135deg) translateY(-2px);
}

@media (max-width: 860px) {
  .bx-page-nav {
    right: 12px;
    bottom: calc(var(--bx-trust-bar-h) + var(--bx-mobile-bar-h) + env(safe-area-inset-bottom, 0) + 12px);
  }

  html.is-trust-bar-hidden .bx-page-nav,
  body.is-trust-bar-hidden .bx-page-nav {
    bottom: calc(var(--bx-mobile-bar-h) + env(safe-area-inset-bottom, 0) + 12px);
  }

  .bx-page-nav__btn {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bx-page-nav__btn {
    transition: none;
  }
}

/* ── 404 ── */
.bx-notfound {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  min-height: calc(100svh - var(--bx-header-stack, 90px) - var(--bx-trust-bar-h, 56px) - 80px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, #f7f1ea 0%, #fff 42%, #fff 100%);
}

.bx-notfound__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 16, 46, 0.07), transparent 62%),
    repeating-linear-gradient(-18deg, transparent 0 22px, rgba(200, 16, 46, 0.035) 22px 23px);
}

.bx-notfound__wrap {
  position: relative;
  width: 100%;
}

.bx-notfound__panel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 36px 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 16, 46, 0.1);
  box-shadow:
    0 18px 48px rgba(42, 12, 18, 0.08),
    inset 0 1px 0 #fff;
}

.bx-notfound__panel::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8102e 18%, #d4af37 50%, #c8102e 82%, transparent);
}

.bx-notfound__num {
  display: block;
  margin: 0 0 8px;
  font-family: var(--bx-font-serif);
  font-size: clamp(56px, 12vw, 88px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: rgba(200, 16, 46, 0.1);
}

.bx-notfound__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  margin: 0 auto 14px;
}

.bx-notfound__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
  color: #9a6b00;
}

.bx-notfound__title {
  margin: 0 0 12px;
  font-family: var(--bx-font-serif);
  font-size: calc(1.7rem * var(--bx-title-scale, 1));
  font-weight: 700;
  color: var(--bx-title);
}

.bx-notfound__lead {
  margin: 0 auto 22px;
  max-width: 34em;
  font-size: 14px;
  line-height: 1.75;
  color: var(--bx-muted);
}

.bx-notfound__lead strong {
  color: var(--bx-title);
  font-weight: 650;
}

.bx-notfound__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.bx-notfound__tel {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--bx-muted);
}

.bx-notfound__tel a {
  margin-left: 6px;
  color: var(--bx-red);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.bx-notfound__tel a:hover {
  text-decoration: underline;
}

.bx-notfound__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(200, 16, 46, 0.08);
  font-size: 13px;
}

.bx-notfound__links a {
  color: var(--bx-muted);
  text-decoration: none;
}

.bx-notfound__links a:hover {
  color: var(--bx-red);
}

@media (max-width: 720px) {
  .bx-notfound {
    padding: 28px 0 48px;
  }

  .bx-notfound__panel {
    padding: 28px 18px 24px;
  }

  .bx-notfound__logo {
    height: 36px;
  }

  .bx-notfound__actions .bx-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}