﻿/* 首页模块样式 — cdddh.com */

.bx-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 28px;
}

.bx-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bx-section-head__eyebrow {
  width: 100%;
  margin: 0;
  font-size: 13px;
  color: var(--bx-red);
  letter-spacing: 0.06em;
}

.bx-section-head--center .bx-section-head__eyebrow {
  width: auto;
}

.bx-section-head__title {
  margin: 4px 0 0;
  font-family: var(--bx-font-serif);
  font-weight: 700;
  /* 笔记本封顶 1.75rem；大屏用 --bx-title-scale 抬高上限，避免卡片变宽后标题仍是 28px */
  font-size: clamp(1.35rem, 3vw, calc(1.75rem * var(--bx-title-scale, 1)));
  color: var(--bx-title);
  line-height: 1.35;
}

.bx-section-head__sub {
  margin: 8px 0 0;
  width: 100%;
  color: var(--bx-muted);
  font-size: 14px;
}

.bx-section-head--center .bx-section-head__sub {
  width: auto;
}

.bx-section-head__more {
  font-size: 14px;
  color: var(--bx-red);
  text-decoration: none;
  white-space: nowrap;
}

.bx-section-head__more:hover {
  text-decoration: underline;
}

.bx-text-link {
  color: var(--bx-red);
  text-decoration: none;
  font-size: 14px;
}

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

/* ── 焦点：左图右文（图框锁定 2277×800，与制作稿一致） ── */
.bx-focus {
  background:
    radial-gradient(circle at 88% 8%, rgba(200, 16, 46, 0.1) 0%, transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(212, 175, 55, 0.14) 0%, transparent 38%),
    linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  border-bottom: 0;
  padding: 28px 0 18px;
}

.bx-focus .bx-container {
  max-width: var(--bx-focus-max, 1280px);
}

.bx-focus__carousel {
  position: relative;
}

.bx-focus__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.bx-focus__main {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(240px, 0.72fr);
  gap: 0 28px;
  align-items: stretch;
  padding: 18px 18px 10px;
  background: #fff;
  border: 1px solid #f0d4d8;
  border-radius: 18px;
  box-shadow:
    0 18px 42px rgba(185, 28, 28, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.05s cubic-bezier(0.33, 0.1, 0.2, 1);
  z-index: 0;
  will-change: opacity;
}

.bx-focus__main.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.bx-focus__carousel:has(> .bx-focus__pager) .bx-focus__main {
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: none;
}

.bx-focus__visual {
  min-width: 0;
  display: flex;
}

.bx-focus__media {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 2277 / 800;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1214;
}

.bx-focus__media picture,
.bx-focus__media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.bx-focus__media img {
  width: 100%;
  height: 100%;
  /* cover：等比铺满，绝不横向/纵向拉伸；与裁切比例一致时等同完整显示 */
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.bx-focus__main.is-active .bx-focus__media > picture img,
.bx-focus__main.is-active .bx-focus__media > img {
  animation: bx-focus-ken 14s ease-in-out infinite;
}

.bx-focus__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2a1a1e, #1a1214);
}

.bx-focus__fallback-logo {
  width: min(220px, 56%);
  height: auto;
  opacity: 0.85;
}

.bx-focus__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 10px 12px 14px;
  background: #fff;
  border: 1px solid #f0d4d8;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 42px rgba(185, 28, 28, 0.09);
  position: relative;
  z-index: 2;
}

.bx-focus__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bx-focus__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 16px;
  margin: 0;
  padding: 0 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bx-focus__dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8c4b0;
  transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.bx-focus__tab:hover .bx-focus__dot {
  background: #b8946a;
}

.bx-focus__tab.is-active .bx-focus__dot {
  width: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bx-gold), var(--bx-red));
}

.bx-focus__arrow {
  position: static;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.bx-focus__arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-left: 1.5px solid #6b4e3a;
  border-bottom: 1.5px solid #6b4e3a;
}

.bx-focus__arrow--prev::before {
  transform: rotate(45deg);
  margin-left: 4px;
}

.bx-focus__arrow--next::before {
  transform: rotate(-135deg);
  margin-right: 4px;
}

.bx-focus__arrow:hover {
  opacity: 1;
}

.bx-focus__arrow:hover::before {
  border-color: var(--bx-red);
}

.bx-focus__copy {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 4px 2px 4px 0;
}

.bx-focus__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--bx-gold) 0%, var(--bx-red) 100%);
}

.bx-focus__watermark {
  position: absolute;
  right: -2px;
  top: 4%;
  font-family: var(--bx-font-serif);
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(200, 16, 46, 0.045);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.bx-focus__copy-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 6px 8px 6px 22px;
  box-sizing: border-box;
}

.bx-focus__main.is-active .bx-focus__copy-inner {
  animation: none;
}

.bx-focus__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.bx-focus__index {
  flex-shrink: 0;
  font-family: var(--bx-font-serif);
  font-size: calc(13px * var(--bx-text-scale, 1));
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bx-gold);
}

.bx-focus__eyebrow {
  margin: 0;
  font-size: calc(13px * var(--bx-text-scale, 1));
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--bx-red);
}

.bx-focus__title {
  margin: 14px 0 0;
  font-family: var(--bx-font-serif);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.15vw, calc(1.95rem * var(--bx-title-scale, 1)));
  line-height: 1.35;
  color: var(--bx-title);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.bx-focus__rule {
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px 0 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bx-gold), var(--bx-red));
  flex-shrink: 0;
}

/* 摘要/标签 与 卖点：固定高度槽 + 裁切，绝不压到按钮 */
.bx-focus__rotator {
  position: relative;
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  height: 8em;
  max-height: 8em;
  margin: 0;
  overflow: hidden;
}

.bx-focus__roto {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  height: 100%;
  overflow: hidden;
}

.bx-focus__rotator.is-swap .bx-focus__roto {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
  overflow: hidden;
}

.bx-focus__rotator.is-swap .bx-focus__roto.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.bx-focus__desc {
  margin: 0 0 10px;
  color: #555;
  font-size: calc(14px * var(--bx-text-scale, 1));
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-focus__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bx-focus__tags li {
  position: relative;
  font-size: calc(13px * var(--bx-text-scale, 1));
  letter-spacing: 0.08em;
  color: #8a6a2b;
  padding: 0 14px 0 0;
  margin: 0 14px 6px 0;
  background: none;
  border: none;
  border-radius: 0;
}

.bx-focus__tags li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--bx-gold);
  transform: translateY(-50%);
}

.bx-focus__points {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  overflow: hidden;
}

.bx-focus__points li {
  display: grid;
  gap: 1px;
  padding: 0 0 5px;
  background: none;
  border: none;
  border-bottom: 1px solid #f0e4e6;
  border-radius: 0;
}

.bx-focus__points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bx-focus__points strong {
  font-size: calc(13px * var(--bx-text-scale, 1));
  font-weight: 600;
  color: #7a1b2c;
  line-height: 1.3;
}

.bx-focus__points span {
  font-size: calc(12px * var(--bx-text-scale, 1));
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-focus__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: auto;
  padding-top: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 28%);
}

.bx-focus__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  text-decoration: none;
  font-size: calc(14px * var(--bx-text-scale, 1));
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.bx-focus__btn--ghost {
  padding: 0;
  min-height: 0;
  color: var(--bx-title);
  background: none;
  box-shadow: none;
}

.bx-focus__btn--ghost::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg) translateY(-2px);
}

.bx-focus__btn--ghost:hover {
  color: var(--bx-red);
}

@keyframes bx-focus-copy-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 框内等比呼吸：缓慢放大再缓慢缩回，无限循环（避免跳回原尺寸） */
@keyframes bx-focus-ken {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@media (prefers-reduced-motion: reduce) {
  .bx-focus__main,
  .bx-focus__tab .bx-focus__dot,
  .bx-focus__arrow,
  .bx-focus__rotator.is-swap .bx-focus__roto {
    transition: none;
  }

  .bx-focus__main.is-active .bx-focus__copy-inner,
  .bx-focus__main.is-active .bx-focus__media img {
    animation: none;
  }

  .bx-home-trust__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bx-home-trust.is-marquee .bx-home-trust__track {
    animation: none;
  }

  .bx-home-trust.is-multi .bx-home-trust__item,
  .bx-home-trust.is-card-shine .bx-home-trust__item,
  .bx-home-trust.is-pulse .bx-home-trust__item,
  .bx-home-trust.is-waterfall-rain .bx-home-trust__fall-rail {
    animation: none !important;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .bx-home-trust.is-card-shine .bx-home-trust__item::after {
    animation: none !important;
    display: none;
  }

  .bx-home-trust__media img,
  .bx-home-trust__badge,
  .bx-home-trust__title,
  .bx-home-trust__desc {
    transition: none;
  }
}

/* 首屏信任条：多卡特效（一屏约 3 张） */
.bx-home-trust {
  padding: 12px 0 26px;
  background: linear-gradient(180deg, #fff7f7 0%, #fff 55%);
  border-bottom: 1px solid #f3e4e6;
}

.bx-home-trust__frame {
  max-width: var(--bx-focus-max, 1280px);
}

.bx-home-trust__stage {
  position: relative;
}

.bx-home-trust__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
}

.bx-home-trust__track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.bx-home-trust__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 12%;
  max-width: 96px;
  min-width: 48px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.bx-home-trust__edge--prev {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 247, 247, 0.92), transparent);
}

.bx-home-trust__edge--next {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 247, 247, 0.92), transparent);
}

.bx-home-trust__stage:hover .bx-home-trust__edge,
.bx-home-trust__edge:focus-visible {
  opacity: 1;
}

.bx-home-trust__edge:hover,
.bx-home-trust__edge:focus-visible {
  outline: none;
}

.bx-home-trust__edge--prev::after,
.bx-home-trust__edge--next::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(200, 16, 46, 0.7);
  border-right: 2px solid rgba(200, 16, 46, 0.7);
  transform: translateY(-50%) rotate(-135deg);
}

.bx-home-trust__edge--prev::after {
  left: 18px;
}

.bx-home-trust__edge--next::after {
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.bx-home-trust__item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
  width: min(380px, 78vw);
  min-height: 108px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #f0d4d8;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(185, 28, 28, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.bx-home-trust__item:hover,
.bx-home-trust__item:focus-visible {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 14px 28px rgba(185, 28, 28, 0.12);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  outline: none;
}

/* 多卡并排基座：精确 3 列，不露半张 */
.bx-home-trust.is-multi .bx-home-trust__viewport {
  mask-image: none;
  -webkit-mask-image: none;
  overflow: hidden;
}

.bx-home-trust.is-multi .bx-home-trust__track {
  --bx-trust-gap: 14px;
  --bx-trust-cols: 3;
  gap: var(--bx-trust-gap);
  padding: 10px 0 6px;
  width: max-content;
}

.bx-home-trust.is-multi .bx-home-trust__item {
  /* JS 按视口精确写入宽度；此处作无 JS 时的兜底 */
  flex: 0 0 calc((100% - (var(--bx-trust-cols) - 1) * var(--bx-trust-gap)) / var(--bx-trust-cols));
  width: calc((100% - (var(--bx-trust-cols) - 1) * var(--bx-trust-gap)) / var(--bx-trust-cols));
  min-width: 0;
  max-width: none;
  position: relative;
  overflow: hidden;
}

.bx-home-trust.is-multi .bx-home-trust__track {
  transform: translate3d(0, 0, 0);
}

/* 错落上浮 */
.bx-home-trust.is-stagger-rise .bx-home-trust__item.is-enter {
  animation: bx-trust-stagger-rise 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: calc(var(--bx-i, 0) * 0.12s);
}

@keyframes bx-trust-stagger-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 依次飞入 */
.bx-home-trust.is-cascade-fly .bx-home-trust__item.is-enter {
  animation: bx-trust-cascade-fly 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: calc(var(--bx-i, 0) * 0.11s);
}

@keyframes bx-trust-cascade-fly {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 缩放错落 */
.bx-home-trust.is-zoom-stagger .bx-home-trust__item.is-enter {
  animation: bx-trust-zoom-stagger 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: calc(var(--bx-i, 0) * 0.1s);
}

@keyframes bx-trust-zoom-stagger {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}

/* 依次翻转 */
.bx-home-trust.is-flip-cascade .bx-home-trust__item.is-enter {
  animation: bx-trust-flip-cascade 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: calc(var(--bx-i, 0) * 0.12s);
  transform-style: preserve-3d;
}

@keyframes bx-trust-flip-cascade {
  from { opacity: 0; transform: perspective(700px) rotateY(-68deg); }
  to { opacity: 1; transform: perspective(700px) rotateY(0deg); }
}

/* 卡片扫光（对齐 zgddh metricSweep） */
.bx-home-trust.is-card-shine .bx-home-trust__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  border-radius: inherit;
}

.bx-home-trust.is-card-shine .bx-home-trust__item.is-shine::after {
  animation: bx-trust-metric-sweep 1.2s ease-in-out both;
  animation-delay: calc(var(--bx-i, 0) * 0.18s);
}

@keyframes bx-trust-metric-sweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* 依次高亮传递 */
.bx-home-trust.is-pulse .bx-home-trust__item {
  opacity: 0.72;
  transform: scale(0.96);
  filter: saturate(0.85);
}

.bx-home-trust.is-pulse .bx-home-trust__item.is-lit {
  opacity: 1;
  transform: scale(1.03);
  filter: none;
  border-color: rgba(200, 16, 46, 0.34);
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.14);
  z-index: 1;
}

/* 三卡整组滑动 */
.bx-home-trust.is-step-slide .bx-home-trust__edge {
  opacity: 0.85;
}

/* 瀑布雨：保持单行信任条高度，多列卡片持续下落，从左到右错开落差 */
.bx-home-trust.is-waterfall-rain .bx-home-trust__viewport {
  overflow: hidden;
  height: var(--bx-trust-row-h, 108px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.bx-home-trust.is-waterfall-rain .bx-home-trust__track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
  transform: none;
  will-change: auto;
}

.bx-home-trust.is-waterfall-rain .bx-home-trust__fall-col {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}

.bx-home-trust.is-waterfall-rain .bx-home-trust__fall-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

.bx-home-trust.is-waterfall-rain .bx-home-trust__fall-set {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bx-home-trust.is-waterfall-rain .bx-home-trust__item {
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.bx-home-trust.is-waterfall-rain .bx-home-trust__dots {
  display: none;
}

@media (max-width: 860px) {
  .bx-home-trust.is-waterfall-rain .bx-home-trust__track {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .bx-home-trust.is-waterfall-rain .bx-home-trust__item {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

.bx-home-trust__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.bx-home-trust__dots[hidden] {
  display: none !important;
}

.bx-home-trust__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e4c8cc;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.bx-home-trust__dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: #c8102e;
}

.bx-home-trust__media {
  position: relative;
  width: 108px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #faf5f2, #efe6df);
  flex-shrink: 0;
}

.bx-home-trust__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.bx-home-trust__item:hover .bx-home-trust__media img,
.bx-home-trust__item:focus-visible .bx-home-trust__media img,
.bx-home-trust.is-pulse .bx-home-trust__item.is-lit .bx-home-trust__media img {
  transform: scale(1.06);
}

.bx-home-trust__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--bx-font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(200, 16, 46, 0.35);
}

.bx-home-trust__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bx-home-trust__badge {
  align-self: flex-start;
  max-width: 100%;
  padding: 2px 9px;
  font-size: calc(11px * var(--bx-text-scale, 1));
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--bx-red);
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.16);
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bx-home-trust__title {
  margin: 0;
  font-family: var(--bx-font-serif);
  font-size: calc(0.98rem * var(--bx-text-scale, 1));
  font-weight: 700;
  line-height: 1.35;
  color: #5c1a24;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-home-trust__points {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bx-home-trust__points li {
  position: relative;
  padding-left: 1.1em;
  font-size: calc(12px * var(--bx-text-scale, 1));
  line-height: 1.45;
  color: #5b6470;
  white-space: nowrap;
}

.bx-home-trust__points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: calc(11px * var(--bx-text-scale, 1));
  line-height: 1.45;
  color: #c8102e;
  font-weight: 700;
}

.bx-home-trust__desc {
  margin: 0;
  font-size: calc(12.5px * var(--bx-text-scale, 1));
  line-height: 1.55;
  color: var(--bx-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-home-trust__item:hover .bx-home-trust__title,
.bx-home-trust__item:focus-visible .bx-home-trust__title {
  color: var(--bx-red);
}

.bx-home-trust.is-static .bx-home-trust__viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  mask-image: none;
  -webkit-mask-image: none;
}

.bx-home-trust.is-static .bx-home-trust__edge {
  display: none;
}

/* 企业实力 */
.bx-home-strength__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bx-strength-card {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 3px solid var(--bx-red);
  border-radius: 4px;
}

.bx-strength-card__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--bx-section);
  border: 1px solid #e8e8e8;
}

.bx-strength-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--bx-title);
}

.bx-strength-card__desc {
  margin: 0;
  font-size: 13px;
  color: var(--bx-muted);
  line-height: 1.6;
}

/* 业务卡片（旧网格，services_showcase 另有独立样式） */
.bx-home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bx-service-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  min-height: 140px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bx-service-card:hover {
  border-color: var(--bx-red);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.08);
}

.bx-service-card__tag {
  align-self: flex-start;
  font-size: 12px;
  color: var(--bx-gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.bx-service-card__title {
  margin: 0 0 auto;
  font-size: 1.05rem;
  color: var(--bx-title);
  font-weight: 600;
}

.bx-service-card__link {
  margin-top: 16px;
  font-size: 13px;
  color: var(--bx-red);
}

.bx-home-services__more {
  margin: 24px 0 0;
  text-align: center;
}

/* 科普卡片 */
.bx-home-news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bx-news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.bx-news-card:hover {
  border-color: var(--bx-red);
}

.bx-news-card__thumb {
  aspect-ratio: 4 / 3;
  background: var(--bx-section);
  overflow: hidden;
}

.bx-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bx-news-card__thumb--placeholder {
  background: linear-gradient(145deg, #f7f8fa, #eceef2);
}

.bx-news-card__body {
  padding: 14px 16px 18px;
  flex: 1;
}

.bx-news-card__cat {
  font-size: 12px;
  color: var(--bx-gold);
}

.bx-news-card__title {
  margin: 6px 0 8px;
  font-size: 15px;
  color: var(--bx-title);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-news-card__summary {
  margin: 0;
  font-size: 13px;
  color: var(--bx-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-home-news__empty {
  padding: 32px;
  text-align: center;
  background: var(--bx-section);
  border-radius: 4px;
}

/* 流程模块样式见 home_flow.css */

/* FAQ：壳层 + 双栏网格 */
.bx-home-faq {
  background:
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding-bottom: 48px;
}

.bx-home-faq__head {
  margin-bottom: 8px;
}

.bx-home-faq__shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e8eaed;
  background: #fff;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
}

.bx-home-faq__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.bx-home-faq__bottom {
  padding-top: 4px;
}

.bx-home-faq__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #fff8f8 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.04);
}

.bx-home-faq__cta-text {
  min-width: 0;
}

.bx-home-faq__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.bx-home-faq__topics {
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e8eaed;
}

.bx-home-faq__hot {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #fff8f8 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  color: var(--bx-title);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.04);
}

.bx-home-faq__hot-title {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--bx-title);
}

.bx-home-faq__hot-desc {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--bx-muted);
}

.bx-home-faq__hot-btn {
  display: inline-flex;
  margin: 4px 6px 0 0;
}

.bx-home-faq__topics-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bx-muted);
}

.bx-home-faq__chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bx-home-faq__chip {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--bx-title);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

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

.bx-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.bx-faq-card {
  background: #f8fafc;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.bx-faq-card:hover,
.bx-faq-card:focus-within {
  border-color: rgba(200, 16, 46, 0.38);
  background: #fff;
  box-shadow: 0 10px 26px rgba(185, 28, 28, 0.1);
  transform: translateY(-2px);
}

.bx-faq-card[open] {
  border-color: rgba(200, 16, 46, 0.42);
  background: #fff;
  box-shadow: 0 10px 28px rgba(185, 28, 28, 0.12);
}

.bx-faq-card summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: start;
  padding: 14px 14px;
  font-weight: 600;
  color: var(--bx-title);
  transition: color 0.2s ease;
}

.bx-faq-card summary:hover .bx-faq-card__q,
.bx-faq-card[open] .bx-faq-card__q {
  color: var(--bx-red);
}

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

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

.bx-faq-card[open] .bx-faq-card__idx,
.bx-faq-card:hover .bx-faq-card__idx,
.bx-faq-card:focus-within .bx-faq-card__idx {
  background: var(--bx-red);
  color: #fff;
}

.bx-faq-card__q {
  font-size: calc(14px * var(--bx-text-scale, 1));
  line-height: 1.45;
}

.bx-faq-card__toggle {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-top: 6px;
}

.bx-faq-card__toggle::before,
.bx-faq-card__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: -1px -6px;
  background: var(--bx-red);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.bx-faq-card__toggle::after {
  transform: rotate(90deg);
}

.bx-faq-card[open] .bx-faq-card__toggle::after {
  transform: rotate(0deg);
  opacity: 0;
}

.bx-faq-card__body {
  padding: 0 14px 14px 58px;
}

.bx-faq-card__body p {
  margin: 0;
  color: var(--bx-muted);
  font-size: 13px;
  line-height: 1.75;
}

.bx-home-faq__empty {
  text-align: center;
}

.bx-home-links__empty {
  text-align: center;
}

/* 图文 + 视频 */
.bx-home-media__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bx-media-panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 18px 8px;
}

.bx-media-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bx-media-panel__title {
  margin: 0;
  font-size: 17px;
  color: var(--bx-title);
}

.bx-media-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bx-media-list__item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #f2f2f2;
}

.bx-media-list__item:first-child {
  border-top: 0;
}

.bx-media-list__thumb {
  display: block;
  width: 88px;
  height: 62px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bx-section);
  position: relative;
}

.bx-media-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bx-media-list__thumb--placeholder {
  background: linear-gradient(145deg, #f7f8fa, #eceef2);
}

.bx-media-list__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-40%, -50%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.bx-media-list__body {
  min-width: 0;
}

.bx-media-list__cat {
  display: inline-block;
  font-size: 12px;
  color: var(--bx-gold);
  margin-bottom: 2px;
}

.bx-media-list__link {
  display: -webkit-box;
  color: var(--bx-title);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-media-list__link:hover {
  color: var(--bx-red);
}

.bx-media-list__date {
  font-size: 12px;
  color: var(--bx-muted);
  white-space: nowrap;
}

/* 友情链接 */
.bx-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bx-link-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #e8eaed;
  border-radius: 999px;
  background: #fff;
  color: var(--bx-text);
  text-decoration: none;
  font-size: 13px;
}

.bx-link-chip:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
}

/* 门店：全景条 + 高级悬浮 */
.bx-home-stores {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 16, 46, 0.04), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.bx-home-stores__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.bx-store-luxe {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(26, 26, 26, 0.02),
    0 16px 32px rgba(26, 26, 26, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.35s ease;
}

.bx-store-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(200, 16, 46, 0.35), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.bx-store-luxe:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(26, 26, 26, 0.04),
    0 20px 40px rgba(26, 26, 26, 0.08);
  border-color: rgba(200, 16, 46, 0.18);
}

.bx-store-luxe:hover::before {
  opacity: 1;
}

.bx-store-luxe__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 0;
  align-items: start;
  border-bottom: 1px solid #eef0f3;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.bx-store-luxe__top-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 8px 10px 14px;
  min-width: 0;
}

.bx-store-luxe__mid {
  padding: 12px 16px;
  border-bottom: 1px solid #eef0f3;
  background: #fff;
  flex: 1;
}

.bx-store-luxe__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px 14px;
  background: #fff;
}

.bx-store-luxe__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 132px);
  gap: 0;
  border-bottom: 1px solid #e8eaed;
}

.bx-store-luxe__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px 14px 16px;
  min-width: 0;
}

.bx-store-luxe__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bx-store-luxe__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.bx-store-luxe__status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

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

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

.bx-store-luxe__district {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--bx-red);
  font-size: 11px;
  font-weight: 700;
}

.bx-store-luxe__lead {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--bx-muted);
}

.bx-store-luxe__thumb {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  margin: 12px 12px 12px 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f1f5f9;
  overflow: hidden;
  cursor: pointer;
}

.bx-store-luxe__thumb:disabled {
  cursor: default;
}

.bx-store-luxe__thumb-inner {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.bx-store-luxe__thumb-inner img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.bx-store-luxe__panorama {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 10px 14px;
  border-bottom: 1px solid #e8eaed;
}

.bx-store-luxe__panorama-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  max-height: 92px;
  overflow: hidden;
}

.bx-store-luxe__panorama-inner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.35s ease;
  filter: none;
}

.bx-store-luxe:hover .bx-store-luxe__panorama-inner img {
  transform: scale(1.04);
  filter: none;
}

.bx-store-luxe__thumb-inner .bx-store-luxe__panorama-ph {
  width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
}

.bx-store-luxe__panorama-ph {
  display: block;
  width: 100%;
  min-height: 72px;
  max-height: 88px;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 16, 46, 0.08), transparent 50%),
    linear-gradient(135deg, #e8eaed, #f1f5f9);
}

.bx-store-luxe__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.bx-store-luxe:hover .bx-store-luxe__shine {
  transform: translateX(120%);
}

.bx-store-luxe__panorama-hint {
  position: absolute;
  left: 12px;
  bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bx-red);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(200, 16, 46, 0.15);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.08);
}

.bx-store-luxe:hover .bx-store-luxe__panorama-hint {
  opacity: 1;
  transform: translateY(0);
}

.bx-store-luxe__badge {
  position: absolute;
  right: 12px;
  top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--bx-red);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.35s ease;
}

.bx-store-luxe:hover .bx-store-luxe__badge {
  transform: scale(1.05);
}

.bx-store-luxe__body {
  display: none;
}

.bx-store-luxe__name {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bx-store-luxe__shop {
  font-size: calc(14px * var(--bx-text-scale, 1));
  font-weight: 700;
  line-height: 1.3;
  color: var(--bx-red);
}

.bx-store-luxe__company {
  font-size: calc(15px * var(--bx-text-scale, 1));
  font-weight: 700;
  line-height: 1.35;
  color: var(--bx-title);
}

.bx-store-luxe__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.bx-store-luxe__fact {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bx-muted);
}

.bx-store-luxe__ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff1f2;
  position: relative;
}

.bx-store-luxe__fact--phone .bx-store-luxe__ico::after {
  content: "";
  position: absolute;
  inset: 6px 5px 5px 6px;
  border: 2px solid var(--bx-red);
  border-radius: 3px;
  border-top: none;
}

.bx-store-luxe__fact--addr .bx-store-luxe__ico::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--bx-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.bx-store-luxe__fact--time .bx-store-luxe__ico::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--bx-red);
  border-radius: 50%;
  box-sizing: border-box;
}

.bx-store-luxe__fact-text {
  min-width: 0;
}

.bx-store-luxe__fact--time .bx-store-luxe__fact-text {
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.25em;
}

.bx-store-luxe__fact a {
  color: var(--bx-title);
  text-decoration: none;
  font-weight: 600;
}

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

.bx-store-luxe__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bx-store-luxe__tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fafafa, #f4f4f5);
  border: 1px solid #e8eaed;
  font-size: 11px;
  color: var(--bx-muted);
}

.bx-store-luxe__foot {
  display: flex;
  gap: 8px;
  margin-top: 0;
}

.bx-store-luxe__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bx-store-luxe__btn--map {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: var(--bx-title);
}

.bx-store-luxe__btn--call {
  background: linear-gradient(135deg, #d4183a, #c8102e);
  border: 1px solid #c8102e;
  color: #fff;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.25);
}

.bx-store-luxe__btn--map:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
}

.bx-store-luxe__btn--call:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.bx-home-stores__more {
  margin: 28px 0 0;
  text-align: center;
}

/* 门店环境实景 */
.bx-home-env {
  background: linear-gradient(180deg, #fff 0%, #faf7f5 100%);
}

.bx-home-env__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bx-home-env__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: #1a1214;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
}

.bx-home-env__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bx-home-env__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.bx-home-env__card:hover .bx-home-env__media img,
.bx-home-env__card:focus-visible .bx-home-env__media img {
  transform: scale(1.05);
}

.bx-home-env__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  font-family: var(--bx-font-serif);
  font-size: calc(1.6rem * var(--bx-title-scale, 1));
  color: rgba(255, 255, 255, 0.35);
}

.bx-home-env__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 36px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 12, 14, 0.78) 100%);
}

.bx-home-env__meta strong {
  font-family: var(--bx-font-serif);
  font-size: calc(1.05rem * var(--bx-text-scale, 1));
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bx-home-env__meta em {
  font-style: normal;
  font-size: calc(13px * var(--bx-text-scale, 1));
  opacity: 0.88;
}

@media (max-width: 960px) {
  .bx-focus {
    padding: 16px 0 20px;
  }

  .bx-focus__main,
  .bx-focus__main.is-active {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 14px 8px;
  }

  .bx-focus__carousel:has(> .bx-focus__pager) .bx-focus__main {
    border-radius: 16px 16px 0 0;
  }

  .bx-focus__rotator {
    height: 8em;
    max-height: 8em;
    min-height: 0;
  }

  .bx-focus__media {
    min-height: 0;
    aspect-ratio: 2277 / 800;
    height: auto;
  }

  .bx-focus__copy {
    align-self: stretch;
    padding: 2px 0 4px;
  }

  .bx-focus__copy-inner {
    height: auto;
    min-height: 0;
    padding: 4px 4px 4px 18px;
  }

  .bx-focus__copy::before {
    top: 6%;
    bottom: 6%;
  }

  .bx-focus__watermark {
    font-size: 3.6rem;
    top: 0;
  }

  .bx-focus__title {
    font-size: 1.45rem;
    margin-top: 10px;
  }

  .bx-focus__rule {
    margin: 12px 0 14px;
  }

  .bx-focus__desc {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .bx-focus__tags {
    margin-bottom: 16px;
  }

  .bx-focus__actions {
    padding-top: 12px;
  }

  .bx-focus__pager {
    justify-content: center;
    border-radius: 0 0 16px 16px;
    padding: 8px 12px 12px;
  }

  .bx-home-trust__item {
    width: min(340px, 86vw);
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .bx-home-trust__media {
    width: 92px;
  }

  .bx-home-trust__points {
    gap: 2px 8px;
  }

  .bx-home-strength__grid,
  .bx-home-services__grid,
  .bx-home-news__grid,
  .bx-home-media__grid,
  .bx-home-stores__grid,
  .bx-home-env__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .bx-home-faq__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .bx-store-luxe__top {
    grid-template-columns: minmax(0, 1fr) 64px;
  }

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

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

@media (max-width: 560px) {
  .bx-home-strength__grid,
  .bx-home-services__grid,
  .bx-home-news__grid,
  .bx-home-media__grid,
  .bx-home-stores__grid,
  .bx-home-env__grid {
    grid-template-columns: 1fr;
  }

  .bx-home-env__meta em {
    display: none;
  }

  .bx-faq-card__body {
    padding-left: 14px;
  }

  .bx-media-list__item {
    grid-template-columns: 72px 1fr;
  }

  .bx-media-list__thumb {
    width: 72px;
    height: 52px;
  }

  .bx-media-list__date {
    grid-column: 2;
  }
}

/* ── 宽屏：焦点卡片随版心等比变大（方案 A，白卡片保留） ── */
@media (min-width: 1500px) {
  .bx-focus {
    padding: clamp(28px, 2.2vw, 48px) 0 clamp(18px, 1.4vw, 32px);
  }

  .bx-focus__main {
    padding: clamp(18px, 1.4vw, 28px) clamp(18px, 1.4vw, 28px) clamp(10px, 1vw, 18px);
    gap: 0 clamp(28px, 2vw, 42px);
    grid-template-columns: minmax(0, 2.3fr) minmax(260px, 0.68fr);
  }

  /* 模块标题随 --bx-title-scale 放大（须乘无单位系数，不可乘 px） */
  .bx-section-head__title {
    font-size: calc(1.75rem * var(--bx-title-scale, 1));
  }

  .bx-focus__title {
    font-size: calc(1.95rem * var(--bx-title-scale, 1));
  }

  .bx-store-luxe__shop {
    font-size: calc(16px * var(--bx-title-scale, 1));
  }

  .bx-store-luxe__company {
    font-size: calc(17px * var(--bx-title-scale, 1));
  }

  .bx-svc-featured-card__title {
    font-size: calc(1.06rem * var(--bx-title-scale, 1));
  }

  .bx-svc-featured-card__desc {
    font-size: calc(12.5px * var(--bx-text-scale, 1));
  }

  .bx-home-trust.is-multi .bx-home-trust__item {
    min-height: calc(108px * var(--bx-text-scale, 1));
  }
}

/* ── 问题 2：首页模块头只留一行大字 ── */
body.bx-page-home .bx-section-head__eyebrow,
body.bx-page-home .bx-section-head__sub {
  display: none;
}

body.bx-page-home .bx-section-head__title {
  margin-top: 0;
}

.bx-home-faq__hot-desc,
.bx-home-faq__topics {
  display: none;
}

/* ── 问题 3：手机端收字，突出电话 / 门店 / 业务 ── */
@media (max-width: 960px) {
  .bx-focus__desc,
  .bx-focus__tags,
  .bx-focus__points,
  .bx-focus__rotator,
  .bx-focus__watermark,
  .bx-focus__rule {
    display: none;
  }

  .bx-focus__title {
    font-size: 1.7rem;
    margin-top: 8px;
  }

  .bx-focus__copy-inner {
    justify-content: center;
  }

  .bx-focus__actions {
    padding-top: 16px;
  }

  .bx-home-trust__item {
    min-height: 88px;
  }

  .bx-home-faq .bx-faq-card:nth-child(n+4),
  .bx-home-media .bx-media-list__item:nth-child(n+4),
  .bx-home-media .bx-media-list__cat,
  .bx-home-media .bx-media-list__date,
  .bx-home-seo-index__more {
    display: none;
  }

  .bx-home-faq__cta-text p {
    display: none;
  }

  .bx-store-luxe__tags,
  .bx-store-luxe__fact--time {
    display: none;
  }
}

/* ── 通栏 bleed：满宽矮图 + 图上翻页 + 下方文字横铺 ── */
.bx-focus--bleed {
  --bx-bleed-img-h: calc(400px * var(--bx-title-scale, 1));
  padding: 0 0 6px;
  background: #fff;
  border-bottom: 0;
}

.bx-focus--bleed .bx-focus__carousel {
  position: relative;
  width: 100%;
}

.bx-focus--bleed .bx-focus__main,
.bx-focus--bleed .bx-focus__main.is-active,
.bx-focus--bleed .bx-focus__carousel:has(> .bx-focus__pager) .bx-focus__main {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.bx-focus--bleed .bx-focus__visual {
  display: block;
  width: 100%;
}

.bx-focus--bleed .bx-focus__media {
  width: 100%;
  height: var(--bx-bleed-img-h);
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
}

.bx-focus--bleed .bx-focus__media picture,
.bx-focus--bleed .bx-focus__media > img,
.bx-focus--bleed .bx-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bx-focus--bleed .bx-focus__copy {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 8px clamp(16px, 3vw, 40px) 6px;
  min-height: 0;
  align-items: center;
  overflow: visible;
}

.bx-focus--bleed .bx-focus__copy::before,
.bx-focus--bleed .bx-focus__watermark,
.bx-focus--bleed .bx-focus__rule {
  display: none;
}

.bx-focus--bleed .bx-focus__copy-inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.4fr) auto;
  grid-template-areas:
    "kicker mid actions"
    "title mid actions";
  align-items: center;
  gap: 2px 28px;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  height: auto;
  min-height: 0;
  padding: 0;
}

.bx-focus--bleed .bx-focus__kicker {
  grid-area: kicker;
  margin: 0;
}

.bx-focus--bleed .bx-focus__title {
  grid-area: title;
  margin: 0;
  padding-top: 0;
  font-size: calc(1.28rem * var(--bx-title-scale, 1));
  line-height: 1.25;
}

.bx-focus--bleed .bx-focus__rotator {
  grid-area: mid;
  flex: none;
  height: auto;
  max-height: none;
  min-height: 0;
  overflow: hidden;
}

.bx-focus--bleed .bx-focus__rotator.is-swap .bx-focus__roto {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.bx-focus--bleed .bx-focus__rotator.is-swap .bx-focus__roto:not(.is-active) {
  display: none;
}

.bx-focus--bleed .bx-focus__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.bx-focus--bleed .bx-focus__tags {
  margin: 4px 0 0;
}

.bx-focus--bleed .bx-focus__points {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
}

.bx-focus--bleed .bx-focus__points li {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.bx-focus--bleed .bx-focus__actions {
  grid-area: actions;
  margin: 0;
  padding: 0;
  background: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.bx-focus--bleed .bx-focus__pager {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  max-width: none;
  height: var(--bx-bleed-img-h);
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.bx-focus--bleed .bx-focus__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 72px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.9;
  pointer-events: auto;
  transform: translateY(-50%);
}

.bx-focus--bleed .bx-focus__arrow--prev {
  left: clamp(8px, 1.2vw, 20px);
}

.bx-focus--bleed .bx-focus__arrow--next {
  right: clamp(8px, 1.2vw, 20px);
}

.bx-focus--bleed .bx-focus__arrow::before {
  width: 14px;
  height: 14px;
  border-width: 2.5px;
  border-color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
}

.bx-focus--bleed .bx-focus__arrow:hover {
  background: transparent;
  opacity: 1;
}

.bx-focus--bleed .bx-focus__arrow:hover::before {
  border-color: #fff;
}

.bx-focus--bleed .bx-focus__tabs {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 6;
  transform: translateX(-50%);
  pointer-events: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.bx-focus--bleed .bx-focus__dot {
  background: rgba(255, 255, 255, 0.55);
}

.bx-focus--bleed .bx-focus__tab.is-active .bx-focus__dot {
  background: linear-gradient(90deg, var(--bx-gold), var(--bx-red));
}

@media (max-width: 1100px) {
  .bx-focus--bleed .bx-focus__copy-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "kicker actions"
      "title actions"
      "mid actions";
    gap: 4px 16px;
  }
}

@media (max-width: 960px) {
  .bx-focus--bleed {
    --bx-bleed-img-h: min(56.25vw, 450px);
    padding: 0 0 6px;
  }

  .bx-focus--bleed .bx-focus__main,
  .bx-focus--bleed .bx-focus__main.is-active {
    padding: 0;
    gap: 0;
    border-radius: 0;
  }

  .bx-focus--bleed .bx-focus__carousel:has(> .bx-focus__pager) .bx-focus__main {
    border-radius: 0;
  }

  .bx-focus--bleed .bx-focus__media {
    height: var(--bx-bleed-img-h);
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .bx-focus--bleed .bx-focus__copy {
    padding: 12px 16px 6px;
  }

  .bx-focus--bleed .bx-focus__copy-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
  }

  .bx-focus--bleed .bx-focus__title {
    padding-top: 0;
    font-size: 1.35rem;
  }

  .bx-focus--bleed .bx-focus__pager {
    height: var(--bx-bleed-img-h);
    border-radius: 0;
    padding: 0;
  }

  .bx-focus--bleed .bx-focus__arrow {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1500px) {
  .bx-focus--bleed {
    padding: 0 0 8px;
  }

  .bx-focus--bleed .bx-focus__main,
  .bx-focus--bleed .bx-focus__main.is-active {
    padding: 0;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .bx-focus--bleed .bx-focus__copy {
    padding-top: 12px;
  }
}

/* 惠民：桌面不占位，手机首页展示 */
.bx-home-huimin {
  display: none;
}

.bx-home-huimin__head {
  margin: 0 0 18px;
  text-align: center;
}

.bx-home-huimin__eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--bx-red);
  font-weight: 600;
}

.bx-home-huimin__title {
  margin: 6px 0 0;
  font-family: var(--bx-font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--bx-title);
  line-height: 1.3;
}

.bx-home-huimin__sub {
  margin: 8px 0 0;
  color: var(--bx-muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.bx-home-hmcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(200, 16, 46, 0.08);
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.05);
  text-decoration: none;
  color: inherit;
}

.bx-home-hmcard__face {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #ffd8df 0%, #c8102e 100%);
}

.bx-home-hmcard__face.is-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bx-home-hmcard__ico,
.bx-home-hmcard__ico svg {
  display: block;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.bx-home-hmcard__no {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bx-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bx-home-hmcard--wine .bx-home-hmcard__face { background: linear-gradient(145deg, #5c2438, #2a1220); }
.bx-home-hmcard--slate .bx-home-hmcard__face { background: linear-gradient(145deg, #64748b, #334155); }
.bx-home-hmcard--blush .bx-home-hmcard__face { background: linear-gradient(145deg, #fce7f3, #db7093); }
.bx-home-hmcard--gold .bx-home-hmcard__face { background: linear-gradient(145deg, #fde68a, #b45309); }
.bx-home-hmcard--amber .bx-home-hmcard__face { background: linear-gradient(145deg, #fcd34d, #d97706); }
.bx-home-hmcard--navy .bx-home-hmcard__face { background: linear-gradient(145deg, #475569, #1e293b); }
.bx-home-hmcard--cocoa .bx-home-hmcard__face { background: linear-gradient(145deg, #a68a64, #5c4033); }
.bx-home-hmcard--red .bx-home-hmcard__face { background: linear-gradient(145deg, #fca5a5, #c8102e); }

.bx-home-hmcard__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px 12px;
}

.bx-home-hmcard__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bx-title);
}

.bx-home-hmcard__tag {
  font-size: 12px;
  line-height: 1.45;
  color: var(--bx-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-home-huimin__more {
  margin: 18px 0 0;
  text-align: center;
}

.bx-home-huimin__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(200, 16, 46, 0.22);
  background: #fff;
  color: var(--bx-red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 960px) {
  /* 手机：焦点一律通栏整图，文字不展示 */
  body.bx-page-home .bx-focus,
  body.bx-page-home .bx-focus--frame,
  body.bx-page-home .bx-focus--bleed {
    --bx-bleed-img-h: auto;
    padding: 0;
    background: #111;
    border-bottom: 0;
  }

  body.bx-page-home .bx-focus .bx-container {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  body.bx-page-home .bx-focus__carousel {
    width: 100%;
    overflow: hidden;
  }

  body.bx-page-home .bx-focus__main,
  body.bx-page-home .bx-focus__main.is-active,
  body.bx-page-home .bx-focus__carousel:has(> .bx-focus__pager) .bx-focus__main {
    display: block;
    padding: 0;
    gap: 0;
    background: #111;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.bx-page-home .bx-focus__visual,
  body.bx-page-home .bx-focus__media {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    overflow: hidden;
    background: #111;
  }

  body.bx-page-home .bx-focus__media picture,
  body.bx-page-home .bx-focus__media > img,
  body.bx-page-home .bx-focus__media img,
  body.bx-page-home .bx-focus--bleed .bx-focus__media picture,
  body.bx-page-home .bx-focus--bleed .bx-focus__media > img,
  body.bx-page-home .bx-focus--bleed .bx-focus__media img {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    animation: none;
    transform: none;
  }

  body.bx-page-home .bx-focus__copy,
  body.bx-page-home .bx-focus--bleed .bx-focus__copy {
    display: none;
  }

  body.bx-page-home .bx-focus__pager,
  body.bx-page-home .bx-focus--bleed .bx-focus__pager {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
  }

  body.bx-page-home .bx-focus__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 48px;
    margin: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0.9;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  body.bx-page-home .bx-focus__arrow--prev { left: 6px; }
  body.bx-page-home .bx-focus__arrow--next { right: 6px; }

  body.bx-page-home .bx-focus__arrow::before {
    width: 12px;
    height: 12px;
    border-width: 2.5px;
    border-color: #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
  }

  body.bx-page-home .bx-focus__tabs {
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 6;
    transform: translateX(-50%);
    pointer-events: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  body.bx-page-home .bx-focus__dot {
    background: rgba(255, 255, 255, 0.55);
  }

  body.bx-page-home .bx-focus__tab.is-active .bx-focus__dot {
    background: linear-gradient(90deg, var(--bx-gold), var(--bx-red));
  }

  /* 手机顺序：焦点 / 信任条 / 主营 / 惠民 / 门店 / 资讯；其余仅隐藏、HTML 保留 */
  body.bx-page-home .bx-home-huimin {
    display: block;
  }

  body.bx-page-home .bx-home-flow,
  body.bx-page-home .bx-home-faq,
  body.bx-page-home .bx-home-seo-index,
  body.bx-page-home .bx-home-links {
    display: none;
  }

  body.bx-page-home .bx-home-trust,
  body.bx-page-home .bx-home-trust__stage,
  body.bx-page-home .bx-svc-showcase,
  body.bx-page-home .bx-svc-marquee,
  body.bx-page-home .bx-home-stores,
  body.bx-page-home .bx-home-media {
    max-width: 100%;
    overflow-x: clip;
  }

  body.bx-page-home .bx-home-trust__viewport,
  body.bx-page-home .bx-svc-marquee__viewport {
    overflow: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  .bx-home-huimin__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
