:root {
  --bx-bg: #f7f8fb;
  --bx-card: #ffffff;
  --bx-line: #e6e9f0;
  --bx-text: #1f2937;
  --bx-muted: #6b7280;
  --bx-brand: #c81e1e;
  --bx-brand-soft: #fff4f4;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  background: var(--bx-bg);
  color: var(--bx-text);
}
body.bx-menu-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
.bx-container { width: min(1120px, 92%); margin: 0 auto; }

.bx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(12px);
}
.bx-topbar {
  background: #fff1f2;
  color: #9f1239;
  font-size: 12px;
  border-bottom: 1px solid #ffd5db;
}
.bx-topbar-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bx-topbar-inner span:first-child {
  font-weight: 700;
}
.bx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.bx-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.bx-brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
.bx-nav { display: flex; gap: 8px; align-items: center; }
.bx-menu-toggle {
  display: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  width: 42px;
  height: 38px;
  border-radius: 10px;
  padding: 7px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 5;
}
.bx-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}
.bx-nav-item { position: relative; }
.bx-nav-link {
  color: #4b5563;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bx-nav-link:hover { color: var(--bx-brand); background: #fff5f5; }
.bx-nav-caret { font-size: 11px; line-height: 1; }
.bx-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  padding: 6px;
  display: none;
  z-index: 30;
}
.bx-nav-item:hover .bx-submenu,
.bx-nav-item:focus-within .bx-submenu { display: block; }
.bx-submenu-link {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: #4b5563;
  border-radius: 8px;
}
.bx-submenu-link:hover { background: #fff5f5; color: var(--bx-brand); }

.bx-btn {
  display: inline-block;
  border: 1px solid var(--bx-brand);
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bx-brand);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.bx-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(185, 28, 28, 0.15);
}
.bx-btn-primary { background: var(--bx-brand); color: #fff; }

.bx-main { min-height: calc(100vh - 120px); }
.bx-focus {
  background: radial-gradient(circle at 85% 15%, #ffe8e8 0%, #fff 40%),
    linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
  border-bottom: 1px solid #fde2e2;
  padding: 26px 0;
}
.bx-focus-carousel { position: relative; }
.bx-focus-main {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid #fde2e2;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.1);
}
.bx-focus-main.is-active { display: grid; }
.bx-focus-copy h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: 0.3px;
}
.bx-focus-copy p {
  margin: 0 0 14px;
  color: #475569;
  line-height: 1.8;
}
.bx-focus-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.bx-focus-tags span {
  font-size: 12px;
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  padding: 4px 8px;
  border-radius: 999px;
}
.bx-focus-cards {
  display: grid;
  gap: 10px;
}
.bx-focus-media {
  border-radius: 16px;
  border: 1px solid #f5d0d0;
  overflow: hidden;
  background: #fff;
  min-height: 320px;
}
.bx-focus-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.bx-focus-card {
  border: 1px solid #f1d5d5;
  border-radius: 12px;
  padding: 12px;
  background: #fffafa;
}
.bx-focus-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #9f1239;
}
.bx-focus-card p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.bx-focus-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.bx-focus-dot {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #ffe4e6;
  cursor: pointer;
  padding: 0;
}
.bx-focus-dot.is-active {
  background: var(--bx-brand);
  border-color: var(--bx-brand);
}
.bx-mobile-menu {
  display: none;
}
.bx-hero { padding: 16px 0 12px; background: linear-gradient(180deg, #fff, #f9fafb); }
.bx-hero h1 { margin: 0 0 10px; font-size: 34px; line-height: 1.3; color: #111827; }
.bx-sub { max-width: 760px; margin: 0; color: var(--bx-muted); }
.bx-hero-actions { display: flex; gap: 10px; margin-top: 18px; }
.bx-points {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #374151;
}

.bx-section { padding: 34px 0; }
.bx-section-tight { padding-top: 4px; }
.bx-section h2 { margin: 0 0 12px; font-size: 30px; font-weight: 800; }
.bx-desc { margin: 0 0 18px; color: var(--bx-muted); line-height: 1.8; }
.bx-grid { display: grid; gap: 14px; }
.bx-grid-2 { grid-template-columns: repeat(2, 1fr); }
.bx-grid-3 { grid-template-columns: repeat(3, 1fr); }
.bx-grid-4 { grid-template-columns: repeat(4, 1fr); }
.bx-card {
  background: var(--bx-card);
  border: 1px solid var(--bx-line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}
.bx-card h3 { margin: 0 0 8px; color: #111827; font-size: 18px; }
.bx-card p { margin: 0 0 6px; }
.bx-section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.bx-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
}

.bx-home-metrics .bx-metric-card {
  border: 0;
  background: linear-gradient(180deg, #ffffff, #fff6f6);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.08);
  position: relative;
  overflow: hidden;
}
.bx-home-metrics .bx-metric-card h3 {
  font-size: 30px;
  animation: metricGlow 2.8s ease-in-out infinite;
}
.bx-home-metrics .bx-metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.65) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: metricSweep 3.6s ease-in-out infinite;
}
@keyframes metricSweep {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}
@keyframes metricGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

.bx-home-services {
  background: linear-gradient(180deg, #ffffff, #fff9f9);
}
.bx-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.bx-service-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bx-home-services .bx-card {
  border: 1px solid #fee2e2;
  border-radius: 16px;
}
.bx-home-services .bx-card h3 {
  color: #991b1b;
}
.bx-service-card {
  display: block;
  padding: 0;
  overflow: hidden;
  min-height: 0;
  position: relative;
}
.bx-service-media {
  margin: 0;
  border-bottom: none;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}
.bx-service-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  display: block;
  padding: 8px;
  box-sizing: border-box;
}
.bx-service-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 16px 14px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: saturate(0.88) brightness(0.92);
  -webkit-backdrop-filter: saturate(0.88) brightness(0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .bx-service-card:hover .bx-service-overlay,
  .bx-service-mini-card:hover .bx-service-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (hover: none) {
  .bx-service-card .bx-service-overlay,
  .bx-service-mini-card .bx-service-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* /services 主营业务：分类导航 + 详情区 */
.bx-services-studio {
  padding-top: 8px;
  padding-bottom: 48px;
}
.bx-services-studio__grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px 32px;
  align-items: start;
}
.bx-services-studio__rail {
  position: sticky;
  top: 88px;
  align-self: start;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  padding: 14px 12px 16px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.bx-services-studio__rail-title {
  margin: 0 8px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
}
.bx-services-studio__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  padding-right: 2px;
}
.bx-services-studio__nav-item {
  display: block;
  text-decoration: none;
  color: #1e293b;
  padding: 12px 12px 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #f8fafc;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.bx-services-studio__nav-item:hover {
  background: #fff7f7;
  border-color: #fecaca;
}
.bx-services-studio__nav-item.is-active {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border-color: #fca5a5;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.08);
}
.bx-services-studio__nav-item-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: #7f1d1d;
}
.bx-services-studio__nav-item-desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bx-services-studio__stage {
  min-width: 0;
}
.bx-services-studio__panel {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
}
.bx-services-studio__panel[hidden] {
  display: none !important;
}
.bx-services-studio__panel-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  border-bottom: 1px solid #e8ecf1;
  padding: 12px 16px 14px;
}
/* 有配图：左侧固定 1:1 方格完整展示（contain），右侧标题与简介 */
.bx-services-studio__panel-head:not(.bx-services-studio__panel-head--solo) {
  grid-template-columns: clamp(104px, 20vw, 156px) minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 0;
  align-items: center;
}
.bx-services-studio__panel-head--solo {
  padding-top: 14px;
}
.bx-services-studio__panel-head--solo .bx-services-studio__panel-intro {
  padding: 0;
}
.bx-services-studio__panel-visual {
  margin: 0;
  position: relative;
  border-radius: 12px;
  border: 1px solid #e8ecf1;
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.bx-services-studio__panel-head:not(.bx-services-studio__panel-head--solo) .bx-services-studio__panel-visual {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 156px;
  justify-self: start;
}
.bx-services-studio__panel-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, transparent 45%, rgba(15, 23, 42, 0.04) 100%);
}
.bx-services-studio__panel-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.bx-services-studio__panel-intro {
  padding: 4px 0 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  background: transparent;
}
.bx-services-studio__panel-head:not(.bx-services-studio__panel-head--solo) .bx-services-studio__panel-intro {
  padding: 2px 0 0;
}
.bx-services-studio__panel-tag {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecdd3;
  padding: 3px 9px;
  border-radius: 999px;
}
.bx-services-studio__panel-title {
  margin: 0;
  width: 100%;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.bx-services-studio__panel-lead {
  margin: 0;
  width: 100%;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}
@media (max-width: 640px) {
  .bx-services-studio__panel-head:not(.bx-services-studio__panel-head--solo) {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 12px;
    padding-bottom: 16px;
  }
  .bx-services-studio__panel-head:not(.bx-services-studio__panel-head--solo) .bx-services-studio__panel-visual {
    max-width: min(220px, 72vw);
    justify-self: center;
  }
  .bx-services-studio__panel-head:not(.bx-services-studio__panel-head--solo) .bx-services-studio__panel-intro {
    align-items: center;
    text-align: center;
    padding-top: 0;
  }
}
.bx-services-studio__detail-sheet {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  padding: 14px 14px 22px;
  border-top: none;
}
.bx-services-studio__panel-body {
  margin: 0;
  padding: 22px 22px 26px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  max-width: 100%;
}
.bx-services-studio__panel-body > *:first-child {
  margin-top: 0;
}
.bx-services-studio__panel-body .bx-services-fallback {
  max-width: 52rem;
}
.bx-services-studio__panel-body .bx-services-fallback h3 {
  margin: 0 0 0.65em;
  padding-bottom: 0.45em;
  font-size: 1.2rem;
  font-weight: 800;
  color: #7f1d1d;
  letter-spacing: -0.02em;
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}
.bx-services-studio__panel-body .bx-services-fallback h4 {
  margin: 1.1em 0 0.4em;
  padding: 8px 12px 8px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(90deg, #fff7f7, #fff);
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  border-left: 4px solid #dc2626;
}
.bx-services-studio__panel-body .bx-services-fallback .bx-services-fallback-lead {
  margin: 0 0 1.1em;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}
.bx-services-studio__panel-body .bx-services-fallback p {
  margin: 0 0 0.85em;
  padding-left: 2px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
}
.bx-services-studio__panel-body .bx-services-fallback p:last-child {
  margin-bottom: 0;
}

/* 主营业务详情：后台可配的「主标题 + 副标题 + 红条小标题」结构化块 */
.bx-services-detail-structured {
  max-width: 52rem;
}
.bx-services-detail-structured__title {
  margin: 0 0 0.35em;
  font-size: 1.22rem;
  font-weight: 800;
  color: #7f1d1d;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.bx-services-detail-structured__subtitle {
  margin: 0 0 1.25em;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}
.bx-services-detail-structured__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bx-services-detail-structured__item {
  margin: 0;
  padding: 0;
}
.bx-services-detail-structured__item-hd {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  padding: 0 14px 0 0;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.bx-services-detail-structured__accent {
  align-self: stretch;
  width: 5px;
  min-width: 5px;
  background: linear-gradient(180deg, #b91c1c, #991b1b);
  border-radius: 12px 0 0 12px;
  margin-right: 12px;
}
.bx-services-detail-structured__item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.bx-services-detail-structured__item-body {
  margin: 8px 0 0;
  padding: 0 4px 0 17px;
  font-size: 14px;
  line-height: 1.75;
  color: #64748b;
}
.bx-services-detail-extra {
  margin-top: 1.35em;
  padding-top: 1.15em;
  border-top: 1px dashed #e2e8f0;
}
.bx-services-studio__detail-prose--after {
  margin-top: 1.25em;
}

.bx-services-studio__panel-body ul,
.bx-services-studio__panel-body ol {
  margin: 0.35em 0 1em;
  padding-left: 1.35em;
  color: #334155;
}
.bx-services-studio__panel-body li {
  margin: 0.3em 0;
  line-height: 1.75;
}
.bx-services-studio__panel-empty {
  margin: 0;
  padding: 24px 26px 32px;
  font-size: 14px;
}
@media (max-width: 960px) {
  .bx-services-studio__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .bx-services-studio__rail {
    position: static;
    max-height: none;
  }
  .bx-services-studio__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    max-height: none;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .bx-services-studio__nav-item {
    flex: 0 0 auto;
    max-width: 260px;
    min-width: 180px;
  }
  .bx-services-studio__detail-sheet {
    padding: 14px 12px 18px;
  }
  .bx-services-studio__panel-body {
    padding: 16px 14px 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  .bx-services-detail-structured__item-hd {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 10px;
    min-height: 0;
    padding: 10px 12px 10px 0;
  }
  .bx-services-detail-structured__accent {
    align-self: stretch;
    min-height: 36px;
    border-radius: 12px 0 0 12px;
  }
  .bx-services-detail-structured__item-title {
    flex: 1 1 calc(100% - 24px);
    min-width: 0;
  }
}

.bx-service-overlay--mini {
  gap: 8px;
  padding: 12px 10px;
}
.bx-service-marquee {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #fee2e2;
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}
.bx-service-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: slowMarquee 42s linear infinite;
}
.bx-service-marquee:hover .bx-service-track {
  animation-play-state: paused;
}
.bx-service-mini-card {
  flex: 0 0 auto;
  width: 190px;
  max-width: 190px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px !important;
  border: 1px solid #fee2e2 !important;
  box-shadow: 0 2px 10px rgba(127, 29, 29, 0.06);
  position: relative;
}
.bx-service-mini-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  border-radius: inherit;
}
.bx-service-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
  padding: 8px;
  box-sizing: border-box;
}
@keyframes slowMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bx-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bx-service-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fee2e2;
  color: #991b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.bx-service-tag {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fde2e2;
  color: #9f1239;
}
.bx-service-overlay strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.bx-service-overlay--mini strong {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}
.bx-service-overlay .bx-service-tag {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.bx-text-link {
  color: #b91c1c;
  font-size: 14px;
  font-weight: 700;
  white-space: normal;
  text-underline-offset: 3px;
}
.bx-text-link:hover {
  color: #991b1b;
  text-decoration: underline;
}
.bx-service-overlay .bx-text-link {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bx-service-overlay .bx-text-link:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}
@media (prefers-reduced-motion: reduce) {
  .bx-service-overlay {
    transition: none;
  }
}

.bx-home-process .bx-process-card {
  border-radius: 16px;
  border: 1px solid #fecaca;
  background: linear-gradient(180deg, #fff, #fff5f5);
  position: relative;
}
.bx-process-time {
  margin-top: 8px;
  font-size: 12px;
  color: #b91c1c;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  display: inline-block;
  padding: 3px 8px;
}
.bx-home-process .bx-process-card::before {
  content: "流程";
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 11px;
  color: #b91c1c;
  background: #fee2e2;
  border-radius: 999px;
  padding: 2px 8px;
}

.bx-home-certs {
  background: #fff;
}
.bx-home-certs .bx-cert-card {
  border-radius: 16px;
  border-color: #fed7d7;
}

.bx-home-stores .bx-card {
  border-radius: 18px;
  border-color: rgba(200, 30, 30, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px rgba(127, 29, 29, 0.06),
    0 4px 12px rgba(15, 23, 42, 0.04);
}
.bx-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bx-store-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-color: rgba(194, 154, 154, 0.55) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(127, 29, 29, 0.055),
    0 2px 8px rgba(15, 23, 42, 0.05) !important;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
@media (hover: hover) and (pointer: fine) {
  .bx-store-card:hover {
    border-color: rgba(200, 30, 30, 0.22) !important;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 18px 42px rgba(127, 29, 29, 0.09),
      0 6px 16px rgba(15, 23, 42, 0.06) !important;
    transform: translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bx-store-card {
    transition: none;
  }
  .bx-store-card:hover {
    transform: none;
  }
  .bx-store-panel-icon {
    transition: none;
  }
  .bx-store-card:hover .bx-store-panel-icon {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 4px 14px rgba(180, 83, 9, 0.32);
  }
}
.bx-store-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.bx-store-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c81e1e, #f59e0b, #ea580c, #c81e1e);
  background-size: 180% 100%;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  pointer-events: none;
  border-radius: 18px 18px 0 0;
}
@media (hover: hover) and (pointer: fine) {
  .bx-store-card:hover .bx-store-card-inner::before {
    transform: scaleX(1);
    animation: bx-store-accent-shift 3.5s ease-in-out infinite;
  }
}
@keyframes bx-store-accent-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .bx-store-card-inner::before {
    transition: none;
    animation: none !important;
    background-size: 100% 100%;
  }
  .bx-store-card:hover .bx-store-card-inner::before {
    transform: scaleX(1);
  }
}
.bx-store-panel-head {
  position: relative;
  padding: 17px 96px 13px 17px;
  min-height: 84px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 42%),
    linear-gradient(135deg, #fff7f7 0%, #ffffff 48%, #fff5f5 100%);
  border-bottom: 1px solid rgba(252, 231, 231, 0.95);
}
.bx-store-panel-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bx-store-panel-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(155deg, #fbbf24 0%, #ea580c 52%, #c2410c 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 4px 14px rgba(180, 83, 9, 0.32);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .bx-store-card:hover .bx-store-panel-icon {
    transform: scale(1.06);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.45) inset,
      0 6px 18px rgba(180, 83, 9, 0.38);
  }
}
.bx-store-panel-title h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #7f1d1d;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.bx-store-thumb {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 10px 22px rgba(15, 23, 42, 0.12);
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  transition: box-shadow 0.28s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.bx-store-card:hover .bx-store-thumb {
  box-shadow:
    0 0 0 1px rgba(200, 30, 30, 0.12),
    0 12px 26px rgba(15, 23, 42, 0.14);
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .bx-store-card:hover .bx-store-thumb {
    transform: none;
  }
}
.bx-store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bx-store-panel-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-left: 50px;
}
.bx-store-district {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 24px;
  font-size: 12px;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  padding: 0 8px;
}
.bx-store-panel-badges .bx-badge {
  min-width: 52px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8faf1;
  color: #047857;
  border: 1px solid #9de3c0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0 8px;
  font-size: 12px;
}
.bx-store-panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
  padding: 16px 17px 13px;
  background: linear-gradient(185deg, #fcfcfd 0%, #f7f9fb 55%, #f4f6f9 100%);
  border-bottom: 1px solid rgba(238, 242, 247, 0.95);
}
.bx-store-panel-rows {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.bx-store-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.bx-store-line-ico {
  flex: 0 0 20px;
  color: #b45309;
  margin-top: 2px;
}
.bx-store-line-text {
  font-size: 13px;
  line-height: 1.58;
  color: #4b5567;
  word-break: break-word;
  min-width: 0;
  flex: 1;
}
.bx-store-line-phone {
  gap: 5px;
  align-items: center;
}
.bx-store-line-phone .bx-store-line-ico {
  flex: 0 0 16px;
  margin-top: 0;
}
.bx-store-phone-line {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  word-break: normal;
  font-size: 9.5px;
  letter-spacing: -0.045em;
  line-height: 1.35;
}
.bx-store-phone-line a {
  white-space: nowrap;
  display: inline;
  font-size: inherit;
  letter-spacing: inherit;
  font-weight: 600;
}
.stores-page-phone {
  white-space: nowrap;
  overflow: hidden;
  font-size: 9.5px;
  letter-spacing: -0.045em;
  line-height: 1.4;
}
@media (min-width: 1100px) {
  .bx-store-phone-line,
  .bx-store-phone-line a {
    font-size: 11px;
    letter-spacing: -0.028em;
  }
  .stores-page-phone {
    font-size: 11px;
    letter-spacing: -0.028em;
  }
}
@media (max-width: 860px) {
  .bx-store-phone-line,
  .bx-store-phone-line a {
    font-size: 12px;
    letter-spacing: -0.02em;
  }
  .stores-page-phone {
    font-size: 12px;
    letter-spacing: -0.02em;
  }
}
.bx-store-line-text a {
  color: #0f766e;
  font-weight: 600;
}
.bx-store-line-text a:hover {
  color: var(--bx-brand);
}
.bx-store-panel-aside {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bx-store-qr-placeholder {
  width: 100%;
  max-width: 88px;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  border: 1px dashed rgba(148, 163, 184, 0.65);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 5px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(15, 23, 42, 0.05);
}
.bx-store-qr-cap {
  font-size: 11px;
  font-weight: 700;
  color: #334155;
}
.bx-store-qr-sub {
  font-size: 10px;
  color: #94a3b8;
}
.bx-store-qr-with-image {
  padding: 7px;
  gap: 6px;
  justify-content: space-between;
}
.bx-store-qr-with-image img {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
}
.bx-store-qr-caption {
  font-size: 9px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.25;
  flex-shrink: 0;
}
.bx-store-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-content: flex-start;
}
.bx-store-tags span {
  font-size: 12px;
  color: #6b7280;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 2px 8px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
@media (hover: hover) and (pointer: fine) {
  .bx-store-card:hover .bx-store-tags span {
    transform: translateY(-2px);
    border-color: #fecaca;
    box-shadow: 0 4px 10px rgba(127, 29, 29, 0.07);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bx-store-tags span {
    transition: none;
  }
  .bx-store-card:hover .bx-store-tags span {
    transform: none;
  }
}
.bx-store-tags-compact {
  margin: 0 17px 10px;
  padding-top: 6px;
}
.bx-store-panel-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 13px 17px 17px;
  margin-top: auto;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.bx-store-panel-foot-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bx-store-detail-link {
  display: block;
  text-align: center;
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.bx-store-detail-link:hover {
  color: var(--bx-brand);
}
.bx-store-btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 11px;
  border: 1px solid #14b8a6;
  color: #0f766e;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.bx-store-btn-map:hover {
  background: #f0fdfa;
  border-color: #0d9488;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.12);
}
.bx-store-btn-map:active,
.bx-store-btn-call:active {
  transform: scale(0.98);
}
@media (prefers-reduced-motion: reduce) {
  .bx-store-btn-map:active,
  .bx-store-btn-call:active {
    transform: none;
  }
}
.bx-store-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 11px;
  border: 1px solid #b91c1c;
  color: #fff;
  background: linear-gradient(175deg, #ef4444 0%, #c81e1e 48%, #991b1b 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 5px 14px rgba(200, 30, 30, 0.28);
  transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.bx-store-btn-call:hover {
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 7px 18px rgba(200, 30, 30, 0.32);
}
.bx-home-stores .bx-card h3 {
  color: #7f1d1d;
}

.bx-home-cases {
  background: linear-gradient(180deg, #fff8f8, #ffffff);
}
.bx-home-cases .bx-card {
  border-radius: 16px;
}
.bx-case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.bx-case-card h3 {
  min-height: 52px;
  line-height: 1.4;
}
.bx-case-card .bx-muted {
  min-height: 22px;
}
.bx-case-card > p:not(.bx-muted):not(.bx-case-result) {
  min-height: 72px;
  line-height: 1.7;
}
.bx-case-result {
  margin-top: 6px;
  color: #065f46;
  background: #ecfdf3;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
}

.bx-home-cta {
  border-top: 1px solid #fecaca;
  border-bottom: 1px solid #fecaca;
}
.bx-home-cta .bx-cta-inner {
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(127, 29, 29, 0.08);
}

.bx-home-news-video .bx-card,
.bx-home-faq .bx-faq-item,
.bx-home-links .bx-link-chip {
  border-radius: 14px;
}
.bx-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.bx-list-head h3 {
  margin-bottom: 0;
}
.bx-list-head a {
  font-size: 13px;
  color: #be123c;
  font-weight: 700;
}
.bx-metrics .bx-card { text-align: center; }
.bx-metric-card h3 {
  color: var(--bx-brand);
  font-size: 28px;
  margin-bottom: 2px;
}
.bx-metric-card p {
  color: var(--bx-muted);
  font-size: 14px;
}
.bx-muted { color: var(--bx-muted); }
.bx-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.bx-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.bx-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 8px;
}
.bx-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bx-list a {
  color: #1f2937;
}
.bx-list-cat {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 11px;
  color: #9f1239;
  border: 1px solid #fecdd3;
  background: #fff1f2;
  border-radius: 999px;
  padding: 1px 7px;
}
.bx-list a:hover {
  color: var(--bx-brand);
}
.bx-list span {
  color: #6b7280;
  font-size: 12px;
  white-space: nowrap;
}
.bx-media-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  align-items: start;
}
.bx-media-list img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.bx-media-list .bx-list-cat {
  margin-bottom: 3px;
}
.bx-badge {
  display: inline-block;
  background: #ecfdf3;
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}
.bx-cert-card {
  background: linear-gradient(180deg, #fff, #fffafa);
}
.bx-process-card h3 { color: #9f1239; }
.bx-cta-band {
  background: linear-gradient(180deg, #fff5f5, #fff);
  border-top: 1px solid #ffe4e6;
}
.bx-section-faq {
  background: #fff;
  border-top: 1px solid var(--bx-line);
}
.bx-section-links {
  background: linear-gradient(180deg, #fff7f7, #fff);
  border-top: 1px solid #ffe4e6;
}
.bx-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.bx-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fbcfe8;
  background: #fff;
  color: #831843;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  min-height: 42px;
  text-align: center;
}
.bx-link-chip:hover {
  background: #fff1f2;
  border-color: #f9a8d4;
}
.bx-faq {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bx-faq-item {
  border: 1px solid var(--bx-line);
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
}
.bx-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #111827;
}
.bx-faq-item p {
  margin: 10px 0 0;
  color: #4b5563;
  line-height: 1.7;
}
.bx-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.bx-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.bx-filter-item {
  border: 1px solid var(--bx-line);
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.bx-filter-item.is-active {
  border-color: var(--bx-brand);
  color: var(--bx-brand);
  background: #fff5f5;
}
.bx-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.bx-pagination a {
  min-width: 34px;
  text-align: center;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #475569;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
}
.bx-pagination a.is-active {
  border-color: #be123c;
  color: #be123c;
  background: #fff1f2;
}
.bx-news-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.bx-news-list {
  display: grid;
  gap: 14px;
}
.bx-news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 12px;
}
.bx-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bx-news-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.bx-news-copy a {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}
.bx-news-copy a:hover {
  color: #be123c;
}
.bx-news-copy p {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
}
.bx-news-side h3 {
  margin: 0 0 10px;
}
.bx-news-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}
.bx-news-search input {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 10px;
}
.bx-news-search button {
  border: 1px solid #be123c;
  background: #be123c;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
}
.bx-news-hot {
  display: grid;
  gap: 8px;
}
.bx-news-hot a {
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 8px;
}
.bx-news-hot a:last-child {
  border-bottom: none;
}
.bx-map-placeholder {
  min-height: 220px;
  border: 1px dashed #d1d5db;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  color: #6b7280;
}
.bx-map-placeholder small {
  display: block;
  margin-top: 6px;
}
.bx-map-placeholder--hint {
  text-align: left;
  place-content: start;
  padding: 22px 24px;
  max-width: 42rem;
}
.bx-map-placeholder--hint small {
  line-height: 1.65;
  color: #64748b;
}
.bx-map-placeholder--hint code {
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #f1f5f9;
}
.bx-map-placeholder--hint a {
  color: #be123c;
  font-weight: 600;
}
.bx-map-osm-note {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}
.bx-stores-map .leaflet-container {
  font-family: inherit;
}
.bx-stores-map {
  width: 100%;
  min-height: min(420px, 62vh);
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
@media (max-width: 640px) {
  .bx-stores-map {
    height: min(360px, 55vh);
    min-height: 280px;
  }
}
.bx-map-fallback-msg {
  margin: 0;
  padding: 24px;
  color: #64748b;
  font-size: 15px;
}
.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） */
.bx-store-map-marker-label {
  display: inline-block;
  max-width: 12rem;
  padding: 5px 10px;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  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 备用图常驻店名 */
.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;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  max-width: 12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leaflet-tooltip.bx-store-map-leaflet-label::before {
  display: none;
}
.leaflet-tooltip.bx-store-map-leaflet-label .leaflet-tooltip-tip {
  display: none;
}

.bx-form-wrap { max-width: 860px; }
.bx-form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: 14px;
  padding: 16px;
}
.bx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bx-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.bx-field span { font-size: 14px; color: #374151; }
.bx-field input,
.bx-field textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #111827;
  background: #fff;
}
.bx-form-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.bx-honey-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.bx-alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.bx-alert-success { background: #ecfdf3; border: 1px solid #a7f3d0; color: #047857; }
.bx-alert-error { background: #fff1f2; border: 1px solid #fecdd3; color: #be123c; }

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

.bx-article-card {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.bx-article-detail.bx-card {
  padding: clamp(20px, 4vw, 36px);
  border-radius: 18px;
  border: 1px solid #e8edf3;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}
.bx-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.bx-article-main {
  min-width: 0;
}
.bx-breadcrumb {
  margin-bottom: 18px;
  font-size: 13px;
  color: #64748b;
}
.bx-breadcrumb a {
  color: #475569;
}
.bx-breadcrumb a:hover {
  color: #be123c;
}
.bx-about-subnav {
  padding: 0 0 8px;
  margin-top: -6px;
}
.bx-about-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 12px 0 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}
.bx-about-subnav__link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.bx-about-subnav__link:hover {
  color: #be123c;
  background: rgba(190, 18, 60, 0.06);
}
.bx-about-subnav__link.is-active {
  color: #be123c;
  border-color: rgba(190, 18, 60, 0.35);
  background: #fff5f5;
}

/* 主营业务顶栏：双轨无缝自动横移（悬停暂停便于点击）；减少动画见系统设置 */
.bx-services-subnav--dense .bx-services-subnav__viewport {
  overflow: hidden;
  position: relative;
  padding: 10px 0 14px;
  margin: 0 -4px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.bx-services-subnav--dense .bx-services-subnav__marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: bxServicesSubnavMarquee 52s linear infinite;
}
.bx-services-subnav--dense:hover .bx-services-subnav__marquee,
.bx-services-subnav--dense:focus-within .bx-services-subnav__marquee {
  animation-play-state: paused;
}
.bx-services-subnav__segment {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 10px;
  padding-right: 28px;
}
.bx-services-subnav--dense .bx-about-subnav__link {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 13px;
  padding: 7px 12px;
}
@keyframes bxServicesSubnavMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bx-services-subnav--dense .bx-services-subnav__marquee {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
  .bx-services-subnav__segment {
    flex-wrap: wrap;
    padding-right: 0;
  }
  .bx-services-subnav--dense .bx-services-subnav__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .bx-services-subnav__segment[aria-hidden="true"] {
    display: none;
  }
}

/* 手机/窄屏：顶栏与「减少动画」一致，关闭无缝跑马灯，避免整页横向溢出与链接难点 */
@media (max-width: 768px) {
  .bx-services-subnav--dense .bx-services-subnav__marquee {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
  .bx-services-subnav__segment {
    flex-wrap: wrap;
    padding-right: 0;
    row-gap: 8px;
  }
  .bx-services-subnav--dense .bx-services-subnav__viewport {
    mask-image: none;
    -webkit-mask-image: none;
    margin: 0;
  }
  .bx-services-subnav--dense .bx-about-subnav__link {
    white-space: normal;
  }
  .bx-services-subnav__segment[aria-hidden="true"] {
    display: none;
  }
}

.bx-about-intro__prose,
.bx-about-qualification__prose {
  margin-top: 8px;
}
.bx-about-qualification__cards {
  margin-top: 28px;
}
.bx-article-head {
  margin-bottom: 0;
}
.bx-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 16px;
}
.bx-article-meta-time {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}
.bx-article-meta-time time {
  font-weight: 500;
  color: #475569;
}
.bx-article-meta-sep {
  margin: 0 6px;
  color: #cbd5e1;
}
.bx-article-duration {
  color: #64748b;
}
.bx-article-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: #0f172a;
}
.bx-article-cover {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}
.bx-article-cover img {
  width: 100%;
  display: block;
  max-height: min(460px, 52vh);
  object-fit: cover;
}
.bx-article-body {
  margin-top: clamp(26px, 4vw, 36px);
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}
.bx-article-prose {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.92;
}
.bx-article-body p {
  margin: 0 0 1.1em;
  line-height: inherit;
  color: #374151;
}
/* 后台富文本 HTML 正文 */
.bx-article-prose h2,
.bx-article-prose h3,
.bx-article-prose h4 {
  margin: 1.1em 0 0.5em;
  line-height: 1.35;
  color: #1e293b;
  font-weight: 700;
}
.bx-article-prose h2 {
  font-size: 1.25rem;
}
.bx-article-prose h3 {
  font-size: 1.1rem;
}
.bx-article-prose ul,
.bx-article-prose ol {
  margin: 0 0 12px;
  padding-left: 1.35em;
  color: #334155;
  line-height: 1.85;
}
.bx-article-prose blockquote {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-left: 4px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
}
.bx-article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 8px 0;
}
.bx-article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.bx-article-prose th,
.bx-article-prose td {
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
  text-align: left;
}
.bx-article-prose th {
  background: #f1f5f9;
}
.bx-article-prose pre {
  overflow-x: auto;
  padding: 12px;
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
}
.bx-article-prose a {
  color: #be123c;
  word-break: break-word;
}

/* 视频投稿正文结构（后台视频工作台生成） */
.bx-article-prose .bx-post-video {
  margin: 0 0 1.25rem;
}
.bx-article-prose .bx-post-video-shell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
}
.bx-article-prose .bx-post-video-shell video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: #000;
}
.bx-article-prose .bx-post-video-wm {
  position: absolute;
  right: 14px;
  bottom: 12px;
  max-width: 78%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.bx-article-prose .bx-post-video-caption {
  margin-top: 14px;
}
.bx-article-prose .bx-post-video-caption p:last-child {
  margin-bottom: 0;
}
.bx-article-prose .bx-post-video-location {
  font-size: 15px;
  color: #475569;
}
.bx-article-prose .bx-post-video-location strong {
  font-weight: 700;
  color: #334155;
}

/* 资讯详情 · 视频：宽屏原生播放器 / 窄屏手机壳（与 data-bx-poster-pc|wap 一致） */
.bx-article-video-embed {
  margin: 0 0 1.5rem;
}
.bx-article-video-desktop {
  display: none;
}
.bx-article-video-figure-desktop {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0e14;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}
.bx-article-video-desktop__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bx-article-video-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .bx-article-video-desktop {
    display: block;
  }
  .bx-article-video-mobile {
    display: none !important;
  }
}

/* 资讯详情 · 视频：手机壳 + 叠字 + 自定义控制条（对齐后台实时预览） */
.bx-article-phone-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bx-feed-phone {
  width: 100%;
  max-width: 272px;
  margin: 0 auto;
  padding: 11px;
  border-radius: 36px;
  background: linear-gradient(155deg, #f0f2f7 0%, #e2e6ef 42%, #eef0f6 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 14px 32px -8px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.bx-feed-phone__shell {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 24px rgba(0, 0, 0, 0.35);
}
.bx-feed-phone__island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 6;
  width: 54px;
  height: 9px;
  margin-left: -27px;
  border-radius: 999px;
  background: linear-gradient(180deg, #151b28 0%, #0a0d12 100%);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.bx-feed-phone__stage {
  background: #000;
}
.bx-feed-phone__feed {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.bx-feed-phone__poster {
  position: relative;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
  min-height: 0;
  background: #0f172a;
}
.bx-feed-phone__poster .bx-feed-phone__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bx-feed-phone__dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}
.bx-feed-phone__wm {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.bx-feed-phone__title_vid {
  font-weight: 800;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.bx-feed-phone__desc_vid {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.bx-feed-phone__chrome {
  flex-shrink: 0;
  padding: 8px 10px 10px;
  background: #12161d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bx-feed-phone__chrome-seek-wrap {
  display: block;
  margin: 0 0 8px;
}
.bx-feed-phone__seek {
  width: 100%;
  height: 6px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.bx-feed-phone__seek::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.5);
}
.bx-feed-phone__seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #38bdf8;
}
.bx-feed-phone__chrome-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bx-feed-phone__cbtn {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.bx-feed-phone__cbtn--txt {
  width: auto;
  min-width: 34px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
}
.bx-feed-phone__cbtn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.bx-feed-phone__time {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: #cbd5e1;
  letter-spacing: 0.02em;
}

.bx-article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
  padding: 14px 16px;
  background: linear-gradient(90deg, #fff7f8, #f8fafc);
  border: 1px solid #fde8ec;
  border-radius: 12px;
}
.bx-article-share strong {
  font-size: 14px;
  color: #334155;
}
.bx-article-share a {
  color: #be123c;
  font-size: 14px;
  font-weight: 600;
}
.bx-article-share a:hover {
  text-decoration: underline;
}
.bx-article-nav {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bx-article-nav > div {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bx-article-nav > div:hover {
  border-color: #fecdd3;
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.06);
}
.bx-article-nav strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  color: #94a3b8;
  text-transform: uppercase;
}
.bx-article-nav a {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.55;
}
.bx-article-nav a:hover {
  color: #be123c;
}
.bx-article-actions {
  margin-top: 24px;
}
.bx-article-aside {
  position: relative;
}
.bx-article-related {
  margin: 0;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid #e8edf3;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.bx-article-related-heading {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
}
.bx-article-related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bx-article-related-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  background: #fafbfc;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.bx-article-related-item:hover {
  background: #fff;
  border-color: #fde8ec;
}
.bx-article-related-item--no-thumb {
  grid-template-columns: 1fr;
}
.bx-article-related-item__thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
}
.bx-article-related-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bx-article-related-item__body {
  min-width: 0;
}
.bx-article-related-item__body .bx-list-cat {
  margin-bottom: 4px;
  display: inline-block;
}
.bx-article-related-item__body a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #0f172a;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.42;
  word-break: break-word;
}
.bx-hero-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.bx-hero--compact {
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(12px, 2vw, 20px);
}
.bx-focus-copy h1,
.bx-focus-copy .bx-focus-h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
}
.bx-article-related-item__body a:hover {
  color: #be123c;
}
@media (min-width: 1040px) {
  .bx-article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    gap: 28px;
  }
  .bx-article-aside {
    position: sticky;
    top: calc(24px + env(safe-area-inset-top));
  }
}

.bx-footer {
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #0b1730, #101827);
  color: #cbd5e1;
  padding: 0 0 14px;
  font-size: 13px;
}
.bx-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.82fr) minmax(0, 1.25fr);
  gap: 24px 28px;
  padding: 34px 0;
  align-items: start;
}
.bx-footer-col--hot {
  min-width: 0;
}
.bx-footer-col h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
}
.bx-footer-col p {
  margin: 0 0 8px;
  line-height: 1.7;
  color: #cbd5e1;
}
.bx-footer-col .bx-muted {
  color: #b6c2d9;
  line-height: 1.8;
}
.bx-footer-links {
  display: grid;
  gap: 8px;
}
.bx-footer-links a {
  color: #cbd5e1;
}
.bx-footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
/* 热门入口：多列紧凑排布（覆盖上方 .bx-footer-links 的单列 gap） */
.bx-footer-links.bx-footer-links--hot {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 6px;
  align-content: start;
}
@media (min-width: 1100px) {
  .bx-footer-links.bx-footer-links--hot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
  }
}
.bx-footer-links.bx-footer-links--hot a {
  font-size: 12.5px;
  line-height: 1.35;
  padding: 2px 0;
  word-break: break-word;
}
@media (max-width: 380px) {
  .bx-footer-links.bx-footer-links--hot {
    grid-template-columns: 1fr;
  }
}
.bx-footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 14px 0;
}
.bx-footer-bottom .bx-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.bx-footer-bottom p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.7;
}
.bx-footer-bottom a {
  color: #cbd5e1;
}
.bx-footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.bx-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: #fff;
  border-top: 1px solid var(--bx-line);
  grid-template-columns: repeat(3, 1fr);
}
.bx-mobile-bar a {
  text-align: center;
  padding: 12px 6px;
  font-size: 13px;
  color: #111827;
  border-right: 1px solid var(--bx-line);
}
.bx-mobile-bar a:last-child { border-right: none; }
.bx-mobile-bar a:first-child { color: var(--bx-brand); font-weight: 700; }

@media (max-width: 860px) {
  .bx-nav { display: none; }
  .bx-header-inner > .bx-btn { display: none; }
  .bx-menu-toggle { display: inline-flex; }
  .bx-topbar-inner { justify-content: center; }
  .bx-topbar-inner span:last-child { display: none; }
  .bx-focus-main.is-active { grid-template-columns: 1fr; padding: 16px; gap: 14px; }
  .bx-focus-copy h2 { font-size: 24px; }
  .bx-focus-copy p { line-height: 1.65; }
  .bx-focus-media { min-height: 190px; }
  .bx-focus-media img { min-height: 190px; }
  .bx-hero h1 { font-size: 26px; }
  .bx-brand-logo { height: 42px; max-width: 230px; }
  .bx-grid-3,
  .bx-grid-4,
  .bx-grid-2 { grid-template-columns: 1fr; }
  .bx-service-grid-featured {
    grid-template-columns: 1fr;
  }
  .bx-service-grid,
  .bx-store-grid,
  .bx-links {
    grid-template-columns: 1fr;
  }
  .bx-store-panel-title h3 {
    font-size: 15px;
  }
  .bx-store-thumb {
    width: 64px;
    height: 64px;
    top: 10px;
    right: 10px;
  }
  .bx-store-panel-head {
    padding-right: 84px;
    padding-left: 14px;
    padding-top: 14px;
  }
  .bx-store-panel-badges {
    padding-left: 46px;
  }
  .bx-store-panel-body {
    grid-template-columns: 1fr;
  }
  .bx-store-panel-aside {
    justify-content: flex-start;
  }
  .bx-store-qr-placeholder {
    max-width: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    aspect-ratio: auto;
    min-height: 52px;
  }
  .bx-store-qr-placeholder.bx-store-qr-with-image {
    flex-direction: column;
    aspect-ratio: 1;
    max-width: 200px;
    margin: 0 auto;
    min-height: 0;
  }
  .bx-store-tags-compact {
    margin-bottom: 6px;
  }
  .bx-faq {
    grid-template-columns: 1fr;
  }
  .bx-news-layout {
    grid-template-columns: 1fr;
  }
  .bx-news-item {
    grid-template-columns: 1fr;
  }
  .bx-news-item img {
    height: 180px;
  }
  .bx-section { padding: 22px 0; }
  .bx-section h2 { font-size: 24px; margin-bottom: 10px; }
  .bx-desc { margin-bottom: 14px; line-height: 1.7; }
  .bx-home-cta .bx-cta-inner {
    padding: 16px;
  }
  .bx-footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 0;
  }
  .bx-footer-links.bx-footer-links--hot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bx-list li {
    flex-direction: column;
    gap: 4px;
  }
  .bx-media-list li {
    grid-template-columns: 56px 1fr;
  }
  .bx-media-list li > span {
    grid-column: 2 / 3;
  }
  .bx-service-card h3,
  .bx-service-card p,
  .bx-case-card h3,
  .bx-case-card > p:not(.bx-muted):not(.bx-case-result) {
    min-height: auto;
  }
  .bx-service-card .bx-service-overlay,
  .bx-service-mini-card .bx-service-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .bx-form-grid { grid-template-columns: 1fr; }
  .bx-hero-actions { flex-direction: column; align-items: flex-start; }
  .bx-cta-inner { flex-direction: column; align-items: flex-start; }
  .bx-mobile-bar { display: grid; }
  .bx-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 120;
  }
  .bx-mobile-menu:not(.is-open) * {
    pointer-events: none !important;
  }
  .bx-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .bx-mobile-menu .bx-container {
    margin: 0;
    width: 86%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    padding: 14px;
    overflow: auto;
    box-shadow: 12px 0 30px rgba(0, 0, 0, 0.18);
  }
  .bx-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .bx-mobile-menu-close {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    padding: 6px 9px;
    color: #374151;
  }
  .bx-mobile-nav-item {
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    margin-bottom: 8px;
    background: #fff;
  }
  .bx-mobile-nav-item summary {
    list-style: none;
    padding: 10px 12px;
    font-weight: 700;
  }
  .bx-mobile-nav-item summary::-webkit-details-marker {
    display: none;
  }
  .bx-mobile-nav-item summary a {
    color: #111827;
  }
  .bx-mobile-submenu {
    border-top: 1px solid #f1f5f9;
    display: grid;
    padding: 8px 10px;
    gap: 6px;
  }
  .bx-mobile-submenu a {
    color: #475569;
    padding: 6px 8px;
    border-radius: 8px;
  }
  .bx-mobile-submenu a:active {
    background: #fff1f2;
    color: #be123c;
  }
  .bx-mobile-menu-actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .bx-article-nav {
    grid-template-columns: 1fr;
  }
  .bx-article-share {
    flex-wrap: wrap;
  }
  .bx-article-cover img {
    max-height: 220px;
  }
  .bx-article-related-item {
    grid-template-columns: 72px 1fr;
  }
}
