:root {
  --sh-bg: #0a0a0c;
  --sh-bg-elevated: #141418;
  --sh-bg-card: #1a1a20;
  --sh-text: #ffffff;
  --sh-text-muted: rgba(255, 255, 255, 0.72);
  --sh-text-dim: rgba(255, 255, 255, 0.48);
  --sh-accent: #ff6a00;
  --sh-accent-hover: #ff8533;
  --sh-border: rgba(255, 255, 255, 0.1);
  --sh-max: 1280px;
  --sh-header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body.sh-body {
  margin: 0;
  background: var(--sh-bg);
  color: var(--sh-text);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.sh-container {
  width: min(100% - 40px, var(--sh-max));
  margin: 0 auto;
}

/* Fixed header 锚点不被挡住 */
#brand,
#solution,
#scenes,
#family,
#products,
#coop,
#news,
#stores,
#join {
  scroll-margin-top: calc(var(--sh-header-h) + 12px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.sh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--sh-header-h);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.sh-header.is-solid {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sh-border);
}

.sh-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sh-logo img {
  width: 28px;
  height: 28px;
}

.sh-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--sh-text-muted);
}

.sh-nav a:hover { color: var(--sh-text); }

.sh-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sh-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--sh-text);
}

.sh-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.sh-btn--primary {
  background: var(--sh-accent);
  color: #fff;
}

.sh-btn--primary:hover { background: var(--sh-accent-hover); }

.sh-btn--lg {
  height: 48px;
  padding: 0 28px;
  font-size: 15px;
}

/* Hero carousel */
.sh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--sh-header-h) + 48px) 0 96px;
  overflow: hidden;
}

.sh-hero__viewport {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sh-hero__track {
  position: absolute;
  inset: 0;
}

.sh-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.sh-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.sh-hero__slide img,
.sh-hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-hero__mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.25) 0%, rgba(10, 10, 12, 0.45) 40%, rgba(10, 10, 12, 0.88) 100%);
  pointer-events: none;
}

.sh-hero__content {
  position: relative;
  z-index: 3;
  animation: sh-fade-in 1s ease both;
}

.sh-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: #151515;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
}

.sh-hero__arrow:hover {
  opacity: 1;
  background: #222;
}

.sh-hero__arrow--prev { left: max(16px, calc(50% - 760px)); }
.sh-hero__arrow--next { right: max(16px, calc(50% - 760px)); }

.sh-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sh-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: hsla(0, 0%, 100%, 0.5);
  transition: width 0.3s, background 0.3s;
  padding: 0;
}

.sh-hero__dot.is-active {
  width: 21px;
  border-radius: 10.5px;
  background: #fff;
}

.sh-hero__eyebrow {
  color: var(--sh-accent);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.sh-hero__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.sh-hero__subtitle {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.sh-hero__desc {
  margin: 0 0 36px;
  max-width: 640px;
  color: var(--sh-text-muted);
  font-size: 15px;
}

.sh-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@keyframes sh-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections shared */
.sh-section {
  padding: 96px 0;
}

.sh-section--alt {
  background: linear-gradient(180deg, #0d0d10 0%, #0a0a0c 100%);
}

.sh-section__head {
  margin-bottom: 48px;
}

.sh-section__eyebrow {
  color: var(--sh-accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.sh-section__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #e8dfd0;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.sh-section__desc {
  margin: 0;
  color: var(--sh-text-muted);
  max-width: 640px;
}

.sh-section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sh-section__head--center .sh-section__title {
  display: inline-block;
}

.sh-section__head--center .sh-section__desc {
  margin-left: auto;
  margin-right: auto;
}

.sh-brand__logo {
  height: 34px;
  width: auto;
  margin: 20px auto 18px;
}

.sh-brand__intro {
  max-width: 860px;
  margin: 0 auto 40px;
  color: var(--sh-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.sh-brand__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sh-brand__card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  min-height: 140px;
}

.sh-brand__card h3 {
  margin: 0 0 10px;
  color: var(--sh-accent);
  font-size: 22px;
}

.sh-brand__card p {
  margin: 0;
  color: var(--sh-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.sh-solution__badge {
  margin: 8px 0 20px;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--sh-accent);
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.sh-solution__desc {
  max-width: 920px !important;
  margin-bottom: 48px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--sh-text-muted);
}

.sh-solution__pics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 36px);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.sh-solution__item {
  margin: 0;
}

.sh-solution__pics img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Scenes as card grid */
.sh-scenes__panel {
  display: none;
  animation: sh-fade-in 0.35s ease both;
}

.sh-scenes__panel.is-active {
  display: block;
}

.sh-scene-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sh-scene-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.sh-scene-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.35);
}

.sh-scene-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sh-scene-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 16px;
  font-weight: 600;
}

.sh-family {
  padding: 72px 0 0;
}

.sh-family__banner {
  margin-top: 24px;
  width: 100%;
  overflow: hidden;
}

.sh-family__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.sh-section__head--center .sh-solution__badge {
  display: block;
  text-align: center;
}

.sh-section__head--center .sh-section__desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sh-coop__banner {
  margin-top: 12px;
  padding: 28px;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  text-align: center;
}

.sh-coop__banner img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.sh-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .sh-brand__grid { grid-template-columns: repeat(2, 1fr); }
  .sh-solution__pics { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .sh-scene-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sh-brand__grid { grid-template-columns: 1fr; }
  .sh-news__grid { grid-template-columns: 1fr; }
}

/* Scenes tabs */
.sh-scenes__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--sh-border);
  padding-bottom: 16px;
}

.sh-scenes__tabs button {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--sh-text-muted);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.sh-scenes__tabs button:hover { color: var(--sh-text); }

.sh-scenes__tabs button.is-active {
  background: rgba(255, 106, 0, 0.15);
  color: var(--sh-accent);
}

/* News */
.sh-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.sh-news__head .sh-section__title {
  margin-bottom: 0;
}

.sh-news__more {
  color: var(--sh-accent);
  font-size: 14px;
  white-space: nowrap;
}

.sh-news__more:hover { color: var(--sh-accent-hover); }

.sh-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sh-news-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.sh-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.sh-news-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.sh-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-news-card__body {
  padding: 20px;
}

.sh-news-card__body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.sh-news-card__body p {
  margin: 0;
  color: var(--sh-text-muted);
  font-size: 13px;
}

/* Products */
.sh-products {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.sh-products__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sh-border);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--sh-text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sh-products__nav:hover {
  color: var(--sh-text);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.sh-products__viewport {
  overflow: hidden;
}

.sh-products__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
}

.sh-products__track::-webkit-scrollbar { display: none; }

.sh-product-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}

.sh-product-card:hover { transform: translateY(-4px); }

.sh-product-card__img {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #1c1c24, #101014);
  display: grid;
  place-items: center;
  padding: 24px;
}

.sh-product-card__img img {
  max-height: 180px;
  width: auto;
  margin: 0 auto;
}

.sh-product-card__body {
  padding: 18px 20px 22px;
}

.sh-product-card__body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.sh-product-card__body p {
  margin: 0;
  color: var(--sh-text-muted);
  font-size: 13px;
}

/* Stores — AMap overlay panel (aligned with Aligenie homepage) */
.sh-stores-sec {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 48px 0 80px;
  background: var(--sh-bg);
}

.sh-map-wrap {
  position: relative;
  width: min(95%, 1440px);
  min-width: 0;
}

.sh-map-box {
  width: 100%;
  height: min(40.52vw, 778px);
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #2a2a2e;
}

#mapContainer .amap-info-content {
  padding: 20px 30px 20px 20px;
  background-color: #121216;
  border-radius: 20px;
  box-shadow: none;
}

#mapContainer .amap-info-close {
  top: 15px !important;
  right: 15px !important;
  color: #fff !important;
}

#mapContainer .bottom-center .amap-info-sharp {
  border-top: 8px solid #121216;
}

.sh-info-window {
  width: 360px;
  max-width: 70vw;
}

.sh-info-window__name {
  color: #fff;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
}

.sh-info-window__addr {
  padding: 2px 10px;
  font-size: 16px;
  color: #8e8e8e;
}

.sh-info-window__btn {
  display: block;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  margin: 10px auto 0;
}

.sh-map-panel {
  width: 498px;
  height: 574px;
  position: absolute;
  top: 50%;
  right: max(24px, calc(50% - 640px));
  transform: translateY(-50%);
  background: #000;
  z-index: 199;
  padding: 40px 52px;
  box-sizing: border-box;
}

.sh-map-panel__title {
  margin: 0 0 24px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e8dfd0;
}

.sh-map-panel__selects {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sh-map-select-wrap {
  position: relative;
}

.sh-map-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  padding: 0 14px 0 20px;
  background: #f1f1f1;
  color: #000;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-align: left;
}

.sh-map-select__arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #c5c5c5;
  transition: transform 0.25s ease;
}

.sh-map-select.is-open .sh-map-select__arrow {
  transform: rotate(180deg);
}

.sh-map-select__options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.sh-map-select__options li {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #334155;
}

.sh-map-select__options li:hover,
.sh-map-select__options li.is-selected {
  background: #eef2ff;
  color: #6366f1;
}

.sh-map-panel__list {
  margin-top: 28px;
  height: 195px;
  overflow: auto;
}

.sh-map-store {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 0 9px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.sh-map-store__name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.sh-map-store__addr {
  margin-top: 8px;
  font-size: 15px;
  color: #8e8e8e;
  line-height: 1.5;
}

.sh-map-store.is-active .sh-map-store__name {
  color: var(--sh-accent);
}

.sh-map-panel__btn {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 40px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-size: 14px;
}

.sh-map-panel__btn:hover {
  background: #f3f3f3;
}

.sh-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  background: rgba(10, 10, 12, 0.92);
  color: var(--sh-text-muted);
  border-radius: 30px;
  font-size: 14px;
  line-height: 1.7;
}

.sh-map-fallback[hidden] { display: none !important; }

.sh-map-fallback code {
  color: var(--sh-accent);
  font-size: 12px;
}

/* Partner */
.sh-partner {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(255, 106, 0, 0.18), transparent 60%),
    var(--sh-bg);
}

.sh-partner h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
}

.sh-partner p {
  margin: 0 0 28px;
  color: var(--sh-text-muted);
}

/* Footer */
.sh-footer {
  border-top: 1px solid var(--sh-border);
  padding: 36px 0 48px;
  color: var(--sh-text-dim);
  font-size: 13px;
}

.sh-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.sh-footer a:hover { color: var(--sh-text-muted); }

/* Responsive */
@media (max-width: 960px) {
  .sh-nav { display: none; }
  .sh-news__grid { grid-template-columns: 1fr; }

  .sh-map-box {
    min-height: 520px;
    height: 70vh;
    border-radius: 20px;
  }

  .sh-map-panel {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: -40px;
    padding: 28px 24px 100px;
    border-radius: 16px;
  }

  .sh-map-panel__list {
    height: 220px;
  }

  .sh-map-panel__btn {
    left: 24px;
    right: 24px;
  }

  .sh-map-wrap {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .sh-header__actions .sh-btn--ghost { display: none; }
  .sh-hero {
    padding-bottom: 72px;
    align-items: center;
  }
  .sh-hero__arrow { display: none; }
  .sh-section { padding: 64px 0; }
  .sh-products { grid-template-columns: 1fr; }
  .sh-products__nav { display: none; }
  .sh-map-box { min-height: 360px; }
  .sh-product-detail__grid { grid-template-columns: 1fr; }
  .sh-product-grid { grid-template-columns: 1fr; }
}

/* Inner pages */
.sh-body--inner .sh-header,
.sh-header--solid {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
}

.sh-nav a.is-active {
  color: var(--sh-text);
}

.sh-page {
  padding: calc(var(--sh-header-h) + 48px) 0 96px;
  min-height: 70vh;
}

.sh-page__head {
  margin-bottom: 40px;
}

.sh-news-card__date {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--sh-text-dim);
}

.sh-back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--sh-text-muted);
  font-size: 14px;
}

.sh-back:hover { color: var(--sh-accent); }

.sh-article__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #e8dfd0;
  letter-spacing: 0.06em;
}

.sh-article__meta {
  margin: 0 0 28px;
  color: var(--sh-text-dim);
  font-size: 14px;
}

.sh-article__cover {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
}

.sh-article__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.sh-article__body p {
  color: var(--sh-text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 1.1em;
}

.sh-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sh-product-grid .sh-product-card {
  flex: none;
  width: auto;
}

/* 产品中心：封面铺满卡片图区 */
.sh-product-grid .sh-product-card__img {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
}

.sh-product-grid .sh-product-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.sh-product-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.sh-product-card--link:hover {
  transform: translateY(-4px);
}

.sh-product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sh-product-detail__media {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.sh-product-detail__media > img,
.sh-product-detail__mainimg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sh-product-detail__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
}

.sh-product-detail__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.sh-product-detail__thumb.is-active {
  border-color: var(--sh-accent);
}

.sh-product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-product-detail__eyebrow {
  margin: 0 0 8px;
  color: var(--sh-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.sh-product-detail__tagline {
  color: var(--sh-accent);
  margin: 0 0 20px;
  font-size: 18px;
}

.sh-product-detail__highlights {
  margin: 0 0 24px;
  padding-left: 1.2em;
  color: var(--sh-text-muted);
}

.sh-product-detail__highlights li { margin-bottom: 8px; }

.sh-product-detail__intro {
  color: var(--sh-text-muted);
  line-height: 1.8;
  margin: 0 0 28px;
  font-size: 15px;
}

.sh-product-detail__info .sh-article__title {
  margin: 0 0 12px;
}

.sh-form-wrap {
  max-width: 560px;
}

.sh-form-success {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: #ffd2b3;
}

.sh-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sh-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--sh-text-muted);
  font-size: 14px;
}

.sh-form__field em {
  color: var(--sh-accent);
  font-style: normal;
}

.sh-form__field input,
.sh-form__field select,
.sh-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-card);
  color: var(--sh-text);
  font: inherit;
}

.sh-form__field input:focus,
.sh-form__field select:focus,
.sh-form__field textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.55);
}

.sh-form .sh-btn {
  align-self: flex-start;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

/* ===== 云学精舍审核站主题 ===== */
.yx-body {
  --yx-ink: #1a3c34;
  --yx-ink-soft: #2f4f3e;
  --yx-paper: #f7f2e8;
  --yx-paper-2: #efe6d6;
  --yx-gold: #c4a574;
  --yx-text: #24302c;
  --sh-bg: var(--yx-paper);
  --sh-bg-elevated: #fff;
  --sh-bg-card: #fff;
  --sh-text: var(--yx-text);
  --sh-text-muted: #5c6b64;
  --sh-text-dim: #7a8780;
  --sh-accent: var(--yx-ink);
  --sh-accent-hover: #24564a;
  --sh-border: rgba(26, 60, 52, 0.12);
  background: var(--yx-paper);
  color: var(--yx-text);
}
.yx-body .sh-header--solid,
.yx-body .yx-header,
.yx-body.sh-body--inner .sh-header {
  background: rgba(247, 242, 232, 0.96) !important;
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  backdrop-filter: blur(8px);
  color: var(--yx-text);
}
.yx-body .sh-logo { color: var(--yx-ink); font-weight: 700; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 10px; }
.yx-logo-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; display: block; flex: 0 0 auto;
  box-shadow: 0 1px 4px rgba(26,60,52,0.15);
}
.yx-about-logo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; margin: 0.75rem auto 1rem;
  box-shadow: 0 8px 24px rgba(26,60,52,0.12);
  display: block;
}
.yx-footer__brand { margin: 0 0 0.5rem; color: #fff; display: flex; align-items: center; gap: 10px; }
.yx-footer__logo { border-radius: 50%; object-fit: cover; }
.yx-body .sh-nav a { color: var(--yx-ink-soft); }
.yx-body .sh-nav a.is-active,
.yx-body .sh-nav a:hover { color: var(--yx-ink); }
.yx-body .sh-btn--primary {
  background: var(--yx-ink);
  border-color: var(--yx-ink);
  color: #fff;
}
.yx-body .sh-btn--ghost {
  border-color: rgba(26, 60, 52, 0.35);
  color: var(--yx-ink);
  background: transparent;
}
.yx-hero .sh-hero__mask {
  background: linear-gradient(90deg, rgba(15, 36, 31, 0.72), rgba(15, 36, 31, 0.28));
}
.yx-hero .sh-hero__content { color: #fff; }
.yx-hero .sh-hero__eyebrow { color: var(--yx-gold); }
.yx-hero .sh-hero__title,
.yx-hero .sh-hero__subtitle { color: #fff; }
.yx-hero .sh-hero__desc { color: rgba(255,255,255,0.88); }
.yx-hero .sh-btn--ghost {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.yx-hero__fallback { min-height: 70vh; background: linear-gradient(135deg, #1a3c34, #0f241f); }
.yx-body .sh-section { background: transparent; }
.yx-body .sh-section--alt { background: var(--yx-paper-2); }
.yx-body .sh-section__title { color: var(--yx-ink); }
.yx-body .sh-section__desc,
.yx-body .sh-brand__intro { color: var(--sh-text-muted); }
.yx-body .yx-points.sh-brand__grid,
.yx-body .sh-brand__grid.yx-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.yx-points .sh-brand__item {
  background: #fff;
  border: 1px solid rgba(26,60,52,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  min-height: 140px;
}
.yx-points .sh-brand__item h3 {
  margin: 0 0 8px;
  color: var(--yx-ink);
  font-size: 1.05rem;
}
.yx-points .sh-brand__item p {
  margin: 0;
  color: var(--sh-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.yx-body .sh-product-card,
.yx-body .sh-news-card {
  background: #fff;
  border: 1px solid rgba(26,60,52,0.1);
  color: var(--yx-text);
  border-radius: 12px;
  overflow: hidden;
}
.yx-body .sh-product-card__img {
  background: var(--yx-paper-2);
  padding: 0;
}
.yx-body .sh-product-grid .sh-product-card__img img,
.yx-body .sh-product-card__img img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.yx-body .sh-product-card__body h3,
.yx-body .sh-news-card__body h3,
.yx-body .sh-article__title { color: var(--yx-ink); }
.yx-body .sh-product-card__body p,
.yx-body .sh-news-card__body p,
.yx-body .sh-article__meta,
.yx-body .sh-back { color: var(--sh-text-muted); }
.yx-body .sh-news-card__img { background: var(--yx-paper-2); aspect-ratio: 16/10; }
.yx-body .sh-news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.yx-body .sh-news-grid,
.yx-body .sh-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.yx-body .sh-page { color: var(--yx-text); }
.yx-body .sh-article__body,
.yx-body .sh-article__body p { color: var(--yx-text); line-height: 1.8; }
.yx-body .sh-product-detail__eyebrow,
.yx-body .sh-product-detail__tagline { color: var(--yx-ink-soft); }
.yx-body .sh-product-detail__intro,
.yx-body .sh-product-detail__highlights { color: var(--yx-text); }
.yx-price { color: #8b3a2b; font-weight: 700; margin-top: 0.5rem; }
.yx-price--lg { font-size: 1.75rem; margin: 0.75rem 0; }
.yx-hint { color: #66716c; font-size: 0.92rem; margin: 0.5rem 0 1rem; }
.yx-tag {
  display: inline-block; font-size: 12px; padding: 2px 8px; border-radius: 4px;
  background: rgba(26, 60, 52, 0.08); color: var(--yx-ink); margin-bottom: 6px;
}
.yx-tabs { display: flex; gap: 12px; margin-top: 1rem; flex-wrap: wrap; }
.yx-tabs a {
  padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(26,60,52,0.2);
  color: var(--yx-ink-soft); text-decoration: none;
}
.yx-tabs a.is-active { background: var(--yx-ink); color: #fff; border-color: var(--yx-ink); }
.yx-section-more { margin-top: 1.5rem; text-align: right; }
.yx-section-more a { color: var(--yx-ink); text-decoration: none; font-weight: 600; }
.yx-footer { background: var(--yx-ink); color: #e8dcc8; padding: 2.5rem 0; }
.yx-footer a { color: #e8dcc8; text-decoration: none; margin-right: 1rem; }
.yx-footer__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.yx-footer__brand { margin: 0 0 0.5rem; color: #fff; }
.yx-footer__company { opacity: 0.85; }
.yx-buy-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 1.25rem; }
.yx-buy-form input[type=number] { width: 72px; padding: 8px; }
.yx-cart__row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1rem; align-items: center;
  background: #fff; border-radius: 12px; padding: 1rem; margin-bottom: 0.75rem;
  border: 1px solid rgba(26,60,52,0.08);
}
.yx-cart__row img { width: 96px; height: 96px; object-fit: cover; border-radius: 8px; }
.yx-cart__row--compact { grid-template-columns: 72px 1fr; }
.yx-cart__row--compact img { width: 72px; height: 72px; }
.yx-cart__footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(26,60,52,0.12);
}
.yx-checkout__form label { display: block; margin: 0.75rem 0; }
.yx-checkout__form input[type=text],
.yx-checkout__form input[type=tel],
.yx-checkout__form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px 12px;
  border: 1px solid rgba(26,60,52,0.2); border-radius: 8px; background: #fff;
}
.yx-pay-methods { display: flex; gap: 1.5rem; margin: 0.75rem 0 1rem; }
.yx-agree { font-size: 0.95rem; }
.yx-paywait { max-width: 640px; }
.yx-paywait__card {
  background: #fff; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(26,60,52,0.1); box-shadow: 0 10px 30px rgba(26,60,52,0.06);
}
.yx-paywait__note {
  background: var(--yx-paper-2); border-radius: 12px; padding: 1rem 1.25rem; margin: 1.25rem 0;
  line-height: 1.7;
}
.yx-paywait__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.yx-pay-merchant { color: #66716c; font-size: 0.92rem; margin: 0 0 0.5rem; }
.yx-pay-amount {
  font-size: 2.4rem; line-height: 1.2; color: var(--yx-ink); margin: 0.5rem 0 1rem;
  font-weight: 700; letter-spacing: 0.02em;
}
.yx-pay-amount strong { font-size: 1em; }
.yx-pay-ok {
  display: inline-block; color: #1a7a4c; font-weight: 700; margin: 0 0 0.5rem;
}
.yx-pay-form { margin: 1.25rem 0 0.5rem; }
.yx-pay-btn { width: 100%; justify-content: center; }
.yx-order-items {
  list-style: none; padding: 0; margin: 1rem 0;
  border-top: 1px solid rgba(26,60,52,0.1);
}
.yx-order-items li {
  padding: 0.65rem 0; border-bottom: 1px solid rgba(26,60,52,0.08);
  color: #44524c;
}
.yx-query-list { margin-top: 1.5rem; }
.yx-trust {
  margin-top: var(--sh-header-h);
  background: transparent;
  border-bottom: 1px solid var(--sh-border);
  font-size: 0.86rem;
}
.yx-trust__inner {
  display: flex; flex-wrap: wrap; gap: 6px 0;
  align-items: center; padding: 12px 0; color: #55635d;
}
.yx-trust__inner span + span::before,
.yx-trust__inner a::before {
  content: "";
  display: inline-block;
  width: 1px; height: 0.8em;
  margin: 0 12px;
  background: var(--sh-border);
  vertical-align: -0.1em;
}
.yx-trust__inner a { color: var(--yx-ink); font-weight: 600; text-decoration: none; }
.yx-legal { max-width: 820px; }
.yx-legal__meta { color: #66716c; font-size: 0.92rem; margin: -0.5rem 0 1rem; }
.yx-legal__body { background: #fff; padding: 1.5rem 1.75rem; border-radius: 12px; line-height: 1.8; }
.yx-legal__body h2 { font-size: 1.1rem; color: var(--yx-ink); margin: 1.25rem 0 0.5rem; }
.yx-legal__nav {
  display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid rgba(26,60,52,0.12);
}
.yx-legal__nav a { color: var(--yx-ink); text-decoration: none; font-weight: 600; }
.yx-nav-toggle {
  display: none;
  border: 1px solid rgba(26,60,52,0.25);
  background: #fff;
  color: var(--yx-ink);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}
.yx-mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid rgba(26,60,52,0.08);
  padding: 12px 20px 16px;
}
.yx-mobile-nav a {
  display: block;
  padding: 10px 0;
  color: var(--yx-ink);
  border-bottom: 1px solid rgba(26,60,52,0.06);
  text-decoration: none;
}
.yx-mobile-nav.is-open { display: block; }
@media (max-width: 960px) {
  .yx-body .sh-news-grid,
  .yx-body .sh-news__grid,
  .yx-body .yx-points.sh-brand__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .yx-cart__row { grid-template-columns: 72px 1fr; }
  .yx-cart__actions { grid-column: 1 / -1; }
  .yx-body .sh-nav { display: none; }
  .yx-nav-toggle { display: inline-flex; }
  .yx-body .sh-news-grid,
  .yx-body .sh-news__grid,
  .yx-body .yx-points.sh-brand__grid { grid-template-columns: 1fr; }
}

/* ===== 目录式混排 ===== */
.yx-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  background: var(--yx-paper);
}
.yx-split__copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 56px 48px;
}
.yx-split__inner { width: min(520px, 100%); }
.yx-kicker {
  margin: 0 0 12px;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--yx-ink-soft);
  font-style: normal;
}
.yx-split h1 {
  margin: 0;
  font-style: normal;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--yx-ink);
  overflow-wrap: anywhere;
}
.yx-split__sub { margin: 16px 0 0; font-size: 18px; color: var(--yx-ink); }
.yx-split__desc { margin: 12px 0 0; color: var(--sh-text-muted); max-width: 36em; }
.yx-split__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.yx-split__media { min-height: 360px; background: var(--yx-paper-2); }
.yx-split__media img,
.yx-split__fallback { width: 100%; height: 100%; object-fit: cover; min-height: 360px; display: block; }
.yx-split__fallback { background: var(--yx-paper-2); }

.yx-rail { border-bottom: 1px solid var(--sh-border); }
.yx-rail__track {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding: 8px 0 16px;
}
.yx-rail__item {
  flex: 1 0 0;
  min-width: 180px;
  padding: 18px 20px;
  border-left: 1px solid var(--sh-border);
}
.yx-rail__item:first-child { border-left: 0; padding-left: 0; }
.yx-rail__item h2 {
  margin: 0 0 6px;
  font-size: 16px;
  font-style: normal;
  color: var(--yx-ink);
}
.yx-rail__item p { margin: 0; color: var(--sh-text-muted); font-size: 14px; line-height: 1.5; }

.yx-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}
.yx-feature__hero { color: inherit; text-decoration: none; display: block; }
.yx-feature__hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--yx-paper-2);
}
.yx-feature__hero h3 {
  margin: 14px 0 6px;
  font-size: 22px;
  font-style: normal;
  color: var(--yx-ink);
}
.yx-feature__hero p { margin: 0 0 6px; color: var(--sh-text-muted); }
.yx-feature__list { min-width: 0; }
.yx-feature__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sh-border);
  color: inherit;
  text-decoration: none;
}
.yx-feature__row img { width: 64px; height: 64px; object-fit: cover; }
.yx-more { margin: 16px 0 0; }
.yx-more a { color: var(--yx-ink); font-weight: 600; text-decoration: none; }

.yx-band { background: var(--yx-paper-2); }
.yx-headrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.yx-headrow a { color: var(--yx-ink); font-weight: 600; text-decoration: none; white-space: nowrap; }
.yx-hscroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scroll-snap-type: x mandatory;
}
.yx-hcard {
  flex: 0 0 220px;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.yx-hcard img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}
.yx-hcard span, .yx-hcard strong { display: block; margin-top: 8px; }
.yx-hcard span {
  color: var(--yx-ink);
  overflow-wrap: anywhere;
}

.yx-lead {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 12px;
  color: inherit;
  text-decoration: none;
}
.yx-lead img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.yx-lead time, .yx-leadlines time { color: var(--sh-text-muted); font-size: 14px; }
.yx-lead h3 {
  margin: 8px 0;
  font-size: 28px;
  font-style: normal;
  color: var(--yx-ink);
  overflow-wrap: anywhere;
}
.yx-lead p { margin: 0; color: var(--sh-text-muted); }
.yx-leadlines { list-style: none; margin: 8px 0 0; padding: 0; }
.yx-leadlines li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--sh-border);
}
.yx-leadlines a { color: var(--yx-ink); font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }

.yx-plist__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--sh-border);
  color: inherit;
  text-decoration: none;
}
.yx-plist__row img { width: 88px; height: 88px; object-fit: cover; }
.yx-plist__body h3 { margin: 4px 0; font-size: 18px; font-style: normal; color: var(--yx-ink); }
.yx-plist__body p { margin: 0; color: var(--sh-text-muted); }
.yx-plist__price { margin: 0; white-space: nowrap; }

.yx-newslist { list-style: none; margin: 0; padding: 0; }
.yx-newslist li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sh-border);
}
.yx-newslist time { color: var(--sh-text-muted); }
.yx-newslist a { color: inherit; text-decoration: none; min-width: 0; }
.yx-newslist strong, .yx-newslist span { display: block; }
.yx-newslist strong { color: var(--yx-ink); font-size: 18px; font-style: normal; overflow-wrap: anywhere; }
.yx-newslist span { color: var(--sh-text-muted); margin-top: 4px; }
.yx-newslist__empty { display: block; }

.yx-spec { margin: 16px 0; }
.yx-spec > div {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--sh-border);
}
.yx-spec dt { color: var(--sh-text-muted); }
.yx-spec dd { margin: 0; }

.yx-slip { width: min(100% - 40px, 720px); }
.yx-slip.yx-paywait .yx-paywait__card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  padding: 0;
}
.yx-kv { margin: 12px 0 0; }
.yx-kv > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--sh-border);
}
.yx-kv dt { color: var(--sh-text-muted); }
.yx-kv dd { margin: 0; font-weight: 600; text-align: right; }

.yx-legal.yx-legal--split {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.yx-legal--split .yx-legal__nav {
  position: sticky;
  top: calc(var(--sh-header-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}
.yx-legal--split .yx-legal__nav a { white-space: nowrap; font-weight: 600; }

.yx-body .sh-section__title { font-style: normal; }

@media (max-width: 768px) {
  .yx-split { grid-template-columns: 1fr; min-height: 0; }
  .yx-split__media { order: 2; }
  .yx-split__copy { justify-content: flex-start; padding: 32px 20px 24px; }
  .yx-rail__item { flex: 0 0 220px; }
  .yx-feature,
  .yx-lead,
  .yx-legal.yx-legal--split { grid-template-columns: 1fr; }
  .yx-legal--split .yx-legal__nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .yx-plist__row { grid-template-columns: 72px minmax(0, 1fr); }
  .yx-plist__row img { width: 72px; height: 72px; }
  .yx-plist__price { grid-column: 2; }
  .yx-leadlines li,
  .yx-newslist li { grid-template-columns: 1fr; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .yx-hscroll { scroll-behavior: auto; }
}
