/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-gray-50);
  overflow-x: hidden;
  padding-bottom: calc(20.8vw + env(safe-area-inset-bottom));
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* Image Containers */
.product-img-box {
  width: 100%;
  padding-top: 75%; /* 4:3 */
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-100);
}

.product-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-img-box {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-100);
}

.case-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-box {
  width: 100%;
  margin: 4.3vw 0;
}

.news-img-box {
  flex: 0 0 17.1vw;
  height: 17.1vw;
}

.hero-slide-img {
  position: relative;
  width: 100%;
  background-color: #0a1326;
}

.hero-slide-photo {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slide-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 46, 0.08) 0%, rgba(8, 20, 46, 0.22) 58%, rgba(6, 16, 38, 0.34) 100%),
    linear-gradient(120deg, rgba(9, 62, 137, 0.14) 0%, rgba(9, 62, 137, 0.04) 54%, rgba(10, 30, 72, 0.10) 100%);
}

.hero-slide-img::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  width: 100%;
  z-index: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(6, 16, 38, 0) 0%, rgba(6, 16, 38, 0.48) 100%);
}

.hero-slide-shell {
  position: relative;
  height: 100%;
  padding: 4.3vw 4.3vw 5.3vw;
}

.hero-content-card {
  position: absolute;
  left: 4.3vw;
  right: 4.3vw;
  bottom: 3.7vw;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 43, 91, 0.16);
  padding: 3.7vw 3.7vw 3.2vw;
  backdrop-filter: blur(3.2vw);
}

.hero-content-card--alt {
  background: rgba(247,250,255,0.96);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6vw;
  margin: 0 0 3.2vw;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 6.9vw;
  padding: 0 2.4vw;
  border-radius: 999px;
  background: #eef4ff;
  color: #315ea5;
  font-size: 2.9vw;
  font-weight: 600;
}

.hero-slide-img--preview {
  background-color: #0f2b5b;
}

.hero-slide-img--warm::before {
  background:
    linear-gradient(180deg, rgba(51, 30, 8, 0.06) 0%, rgba(51, 30, 8, 0.20) 58%, rgba(41, 23, 6, 0.30) 100%),
    linear-gradient(120deg, rgba(193, 94, 12, 0.10) 0%, rgba(193, 94, 12, 0.04) 54%, rgba(96, 41, 8, 0.08) 100%);
}

.hero-slide-img--cool::before {
  background:
    linear-gradient(180deg, rgba(7, 18, 46, 0.10) 0%, rgba(7, 18, 46, 0.24) 58%, rgba(7, 18, 46, 0.34) 100%),
    linear-gradient(120deg, rgba(23, 74, 158, 0.14) 0%, rgba(23, 74, 158, 0.05) 54%, rgba(10, 31, 72, 0.10) 100%);
}

/* Utilities */
.img-placeholder {
  background-color: var(--color-gray-300);
  position: relative;
  overflow: hidden;
}

.logo-placeholder {
  font-weight: 800;
  font-size: 5.3vw;
  color: white;
}

.logo-placeholder.dark {
  color: var(--color-primary-900);
}

/* Nav Bar */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 17.6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.7vw 0 2.1vw;
  z-index: 100;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
  flex-wrap: nowrap;
}

.nav-bar__left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nav-bar__left img {
  display: block;
  max-width: none;
  max-height: 44px;
  width: min(42vw, 180px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-bar__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 1.1vw;
  justify-content: flex-end;
  gap: 0.8vw;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-bar .icon-btn {
  color: var(--color-gray-900);
  margin-left: 0;
  flex: 0 0 auto;
  width: auto;
  min-width: 10.7vw;
  height: 10.7vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-bar .icon-btn--search {
  width: auto;
  min-width: 17.1vw;
  padding: 0 0.8vw;
  color: var(--color-gray-900);
  gap: 0.8vw;
}

.nav-bar .icon-btn__svg {
  flex: 0 0 auto;
}

.nav-bar .icon-btn--text {
  width: auto;
  max-width: none;
  min-width: 13.9vw;
  padding: 0 0.8vw;
  font-size: clamp(13px, 3.4vw, 16px);
  font-weight: 800;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 17.6vw;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.side-menu.active {
  visibility: visible;
  pointer-events: auto;
}

.side-menu__mask {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 56, 0.24);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.side-menu.active .side-menu__mask {
  opacity: 1;
}

.side-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 58vw;
  max-width: 66.1vw;
  height: 100%;
  max-height: calc(100vh - 17.6vw);
  background: linear-gradient(135deg, rgba(21,53,111,0.62) 0%, rgba(31,79,155,0.55) 100%);
  backdrop-filter: blur(4.3vw);
  -webkit-backdrop-filter: blur(4.3vw);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 6px 24px rgba(0,0,0,0.18);
  border-radius: 0 0 0 12px;
}

.side-menu.active .side-menu__panel {
  transform: translateX(0);
}

/* Side Menu Refinement */
.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.3vw 5.3vw;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: transparent;
}

.side-menu__header .close-btn {
  width: 8.5vw;
  height: 8.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
}

.side-menu__header > img {
  display: block;
  max-width: 48.0vw;
  max-height: 9.1vw;
  width: auto;
  height: auto;
}

.side-menu__logo-mark {
  width: 10.7vw;
  height: 10.7vw;
  flex: 0 0 10.7vw;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #edf2f7;
}

.side-menu__logo-mark img {
  display: block;
  width: auto !important;
  height: 7.5vw !important;
  max-width: none;
  max-height: none;
  transform: translateX(0);
}

.side-menu__nav {
  padding: 2.1vw 0 4.8vw;
}

.side-menu__nav > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-menu__nav > ul > li > a,
.menu-item-head {
  min-height: 13.3vw;
  padding: 0 5.3vw;
  font-size: 4.0vw;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.menu-item-head {
  cursor: pointer;
}

.menu-item-link {
  flex: 1 0 37vw;
  min-width: 37vw;
  line-height: 1.4;
  display: flex;
  align-items: center;
  min-height: 13.3vw;
}

.menu-item-toggle {
  width: 9.6vw;
  height: 9.6vw;
  margin-right: -2.1vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.menu-arrow {
  flex: 0 0 auto;
  color: #94a3b8;
  transition: transform 0.22s ease, color 0.22s ease;
}

.menu-item-head.open {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.side-menu__nav a.active,
.side-menu__nav a.is-current,
.menu-item-link.is-current {
  color: #fff;
}

.menu-item-head.open .menu-arrow {
  color: #fff;
  transform: rotate(180deg);
}

.sub-menu {
  display: none;
  padding: 1.6vw 0 2.7vw;
  background: rgba(0,0,0,0.15);
}

.sub-menu.active {
  display: block;
}

.sub-menu li a {
  display: block;
  padding: 2.4vw 5.3vw 2.4vw 9.6vw;
  font-size: 3.5vw;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
}

.sub-menu li a:hover,
.sub-menu li a:active,
.sub-menu li a.is-current {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Redesigned Best Sellers Card */
.product-card-vertical {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 43, 91, 0.08);
  margin-bottom: 6.4vw;
  border: 1px solid var(--color-gray-100);
  position: relative;
  animation: productCardIn 0.55s ease both;
  transform-origin: center bottom;
}

.product-card-vertical:nth-child(2n) {
  animation-delay: 0.08s;
}

.product-card-vertical:nth-child(3n) {
  animation-delay: 0.14s;
}

@keyframes productCardIn {
  from {
    opacity: 0;
    transform: translateY(4.8vw) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card-vertical .img-box {
  width: 100%;
  height: 58.7vw;
  position: relative;
  background-color: var(--color-gray-50);
  overflow: hidden;
  border-radius: 0;
}

.img-box-watermark {
  position: absolute;
  bottom: 1.6vw;
  right: 1.6vw;
  font-size: 2.1vw;
  color: rgba(255,255,255,0.48);
  pointer-events: none;
  z-index: 9;
  text-shadow: 0 1px 0.8vw rgba(0,0,0,0.6);
  letter-spacing: 0.0vw;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.28s ease;
  border-radius: 0;
}

.product-main-image.is-switching {
  opacity: 0.72;
  transform: scale(1.03);
}

.product-card-vertical .img-box::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 19.2vw;
  background: linear-gradient(180deg, rgba(9, 20, 42, 0) 0%, rgba(9, 20, 42, 0.14) 100%);
  pointer-events: none;
}

.product-gallery-thumbs {
  position: absolute;
  top: 2.7vw;
  right: 2.7vw;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8vw;
  width: 24.8vw;
  padding: 0.8vw;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 20, 42, 0.22);
  backdrop-filter: blur(1.6vw);
  box-shadow: 0 8px 18px rgba(10, 28, 58, 0.22);
}

.product-gallery-thumb {
  width: 11.2vw;
  height: 8.3vw;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(1.6vw);
  opacity: 0.76;
  position: relative;
  transition: transform 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
}

.product-gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 62%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-gallery-thumb:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.94;
  filter: saturate(1.08) brightness(1.04);
}

.product-gallery-thumb:hover::after {
  opacity: 1;
}

.product-gallery-thumb.active {
  transform: scale(1.03);
  opacity: 1;
  filter: saturate(1.08) brightness(1.03);
}

.product-gallery-thumb.active::after {
  opacity: 1;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-vertical .hot-rank {
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
  background: var(--gradient-cta);
  color: white;
  padding: 1.1vw 3.2vw;
  border-radius: 20px;
  font-size: 2.9vw;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.8vw;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.28);
}

.product-card-vertical .info-box {
  padding: 3.7vw 3.7vw 3.5vw;
}

.product-card-vertical .title {
  font-size: 4.5vw;
  font-weight: 800;
  margin-bottom: 1.9vw;
  color: var(--color-gray-900);
  line-height: 1.28;
}

.product-card-vertical .specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.9vw 2.7vw;
  margin-bottom: 2.7vw;
  background: var(--color-gray-50);
  padding: 2.4vw 2.7vw;
  border-radius: 12px;
}

.product-card-vertical .spec-item {
  font-size: 2.9vw;
  color: var(--color-gray-600);
  display: flex;
  align-items: center;
  gap: 0.8vw;
  line-height: 1.35;
}

.product-card-vertical .spec-item span {
  font-weight: 500;
}

.product-card-vertical .user-feedback {
  display: flex;
  align-items: flex-start;
  gap: 2.7vw;
  margin-bottom: 2.7vw;
  padding-bottom: 2.7vw;
  border-bottom: 1px dashed var(--color-gray-200);
  min-height: 18.1vw;
}

.product-card-vertical .stars {
  color: var(--color-accent-500);
  display: flex;
  font-size: 3.2vw;
  flex: 0 0 auto;
  padding-top: 0.8vw;
}

.reviews-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  height: 14.9vw;
  position: relative;
}

.reviews-marquee__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-marquee__track span {
  min-height: 14.9vw;
  font-size: 2.9vw;
  color: #7a8496;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-score {
  margin: 0 0 2.7vw;
  padding: 2.1vw 2.7vw 1.9vw;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%);
  border: 1px solid #e5eefb;
}

.product-score__head {
  margin-bottom: 1.6vw;
  font-size: 2.9vw;
  font-weight: 700;
  color: var(--color-primary-700);
  line-height: 1.2;
}

.product-score__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6vw 2.7vw;
}

.product-score__item {
  display: grid;
  grid-template-columns: 12.3vw 1fr 7.5vw;
  align-items: center;
  gap: 1.3vw;
  min-width: 0;
}

.product-score__label {
  font-size: 2.6vw;
  color: var(--color-gray-600);
  white-space: nowrap;
}

.product-score__bar {
  position: relative;
  display: block;
  height: 1.3vw;
  border-radius: 999px;
  background: rgba(31, 79, 155, 0.12);
  overflow: hidden;
}

.product-score__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 48%, #ef4444 100%);
}

.product-score__value {
  font-size: 2.6vw;
  color: #2a426f;
  text-align: right;
  font-weight: 700;
}

.product-card-vertical .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2vw;
}

.product-card-vertical .price-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card-vertical .price-tag {
  font-size: 4.3vw;
  color: #d97706;
  font-weight: 700;
  line-height: 1.15;
}

.product-card-vertical .price-sub {
  font-size: 2.6vw;
  color: #8a93a3;
  line-height: 1.32;
}

.product-card-vertical .btn-action {
  background: var(--gradient-cta);
  color: white;
  padding: 2.4vw 4.8vw;
  border-radius: 25px;
  font-size: 3.5vw;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  border: none;
  white-space: nowrap;
}

.product-links {
  display: flex;
  gap: 2.7vw;
  margin: 0 0 2.7vw;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 7.5vw;
  padding: 0 2.9vw;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--color-primary-700);
  font-size: 2.9vw;
  font-weight: 700;
}

.product-link--manual {
  background: #fff7ed;
  color: #c2410c;
  border-color: rgba(194, 65, 12, 0.08);
}

.product-link,
.product-card-vertical .btn-action,
.product-gallery-thumb {
  touch-action: manipulation;
}

.products-more {
  padding: 0 4.3vw 1.6vw;
}

.products-more > summary {
  list-style: none;
}

.products-more > summary::-webkit-details-marker {
  display: none;
}

.products-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 11.2vw;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: var(--color-primary-600);
  font-size: 3.7vw;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.products-list-vertical--extra {
  padding-top: 4.3vw;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 17.6vw;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(21,53,111,0.62) 0%, rgba(31,79,155,0.55) 100%);
  backdrop-filter: blur(4.3vw);
  -webkit-backdrop-filter: blur(4.3vw);
  z-index: 500;
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 2.7vw 3.7vw 3.2vw;
  box-shadow: -4px 6px 24px rgba(0,0,0,0.18);
  border-radius: 0 0 0 12px;
}

.search-overlay.active {
  transform: translateX(0);
}

.search-overlay__form {
  margin: 0;
}

.search-overlay__header {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 2.1vw;
}

.search-overlay__tel {
  text-align: center;
  padding-top: 2.1vw;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 2.9vw;
  color: rgba(255,255,255,0.95);
}

.search-overlay__tel a {
  display: block;
  font-size: 4.8vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 2px;
}

.search-input-wrapper {
  flex: 1;
  height: 10.1vw;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 19px;
  display: flex;
  align-items: center;
  padding: 0 3.7vw;
}

.search-input-wrapper input {
  border: none;
  background: none;
  width: 100%;
  font-size: 3.5vw;
  outline: none;
  margin-left: 1.6vw;
  color: #fff;
}

.search-input-wrapper input::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-submit {
  min-width: 13.3vw;
  height: 10.1vw;
  border-radius: 18px;
  background: #fff;
  color: #15356f;
  font-size: 3.5vw;
  font-weight: 700;
  box-shadow: 0 1.6vw 4.3vw rgba(0,0,0,0.16);
}

.close-search {
  color: rgba(255,255,255,0.85);
  font-size: 3.7vw;
}

.search-history h4 {
  font-size: 3.5vw;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.1vw;
}

.history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  overflow: hidden;
  margin-top: 17.6vw;
}

.hero-banner__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.hero-banner__track::-webkit-scrollbar {
  display: none;
}

.hero-banner__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}

.hero-banner__slide::before {
  display: none;
}

/* ── Slide 内容层 ── */
.slide-content {
  position: absolute;
  z-index: 1;
  left: 0; right: 0; bottom: 0; height: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5.3vw 4.3vw;
  background: linear-gradient(to top, rgba(4,12,32,0.75) 0%, rgba(4,12,32,0.45) 70%, transparent 100%);
}

.slide-content--left {
  align-items: flex-start;
  text-align: left;
}

.slide-content--center {
  text-align: center;
  align-items: center;
}

.slide-content--side {
  left: 0; right: auto;
  width: 52%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 4.3vw 0 5.3vw;
  background: linear-gradient(to right, rgba(4,12,32,0.72) 0%, rgba(4,12,32,0.4) 70%, transparent 100%);
}

.slide-content--bar {
  left: 0; right: 0; bottom: 0;
  height: auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3.2vw 4.3vw;
  background: rgba(4,12,32,0.72);
  backdrop-filter: blur(1.1vw);
  gap: 3.2vw;
}

.slide-bar__left {
  flex: 1 0 37vw;
  min-width: 37vw;
}

.slide-bar__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6vw;
}

.btn--block {
  width: 21.3vw;
  justify-content: center;
}

.slide-service-pills--col {
  flex-direction: column;
  gap: 0.8vw;
}

/* 版权右上角 */
.slide-copyright {
  position: absolute;
  bottom: 1.6vw;
  right: 2.7vw;
  z-index: 2;
  font-size: 1.6vw;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1vw;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  font-size: 2.4vw;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.slide-tag::before {
  content: '';
  display: inline-block;
  width: 0.6vw;
  height: 2.8vw;
  background: #ffd84d;
  border-radius: 2px;
  flex-shrink: 0;
}

.slide-title-lg {
  font-size: 5.8vw;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.6vw;
  text-shadow: 0 2px 3.2vw rgba(0,0,0,0.45);
  letter-spacing: -0.02em;
}

.slide-title-accent {
  color: #ffd84d;
}

.slide-seo-summary {
  margin: 0.4vw 0 1.6vw;
  max-width: 75vw;
  font-size: 2.2vw;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 1.6vw rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-service-pills {
  display: flex;
  gap: 0.8vw;
  margin-bottom: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.slide-service-pills .pill-text {
  background: none;
  color: #ffd84d;
  padding: 0 0.8vw;
  border-radius: 0;
  height: auto;
  font-weight: 600;
  font-size: 2.4vw;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.slide-service-pills span {
  background: none;
  color: #ffd84d;
  padding: 0 0.8vw;
  border-radius: 0;
  height: auto;
  font-weight: 600;
  font-size: 2.4vw;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.slide-desc {
  font-size: 2.2vw;
  color: rgba(255,255,255,0.95);
  margin-bottom: 3.2vw;
  letter-spacing: 0.1vw;
}

/* ── Slide 2: 居中 + 数据卡片 ── */
.slide-badge {
  display: inline-block;
  font-size: 2.1vw;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6b00, #ff3d00);
  color: #fff;
  padding: 0.8vw 2.7vw;
  border-radius: 20px;
  margin-bottom: 1.6vw;
  letter-spacing: 0.1vw;
  box-shadow: 0 2px 8px rgba(255,60,0,0.4);
}

.slide-stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 2.7vw;
  background: #ffd84d;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  backdrop-filter: blur(1.6vw);
  overflow: hidden;
  width: 100%;
}

.slide-stats-row span {
  flex: 1;
  font-size: 3.7vw;
  font-weight: 800;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.3vw 1.1vw;
  line-height: 1.1;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.slide-stats-row span:last-child {
  border-right: none;
}

.slide-stats-row em {
  font-style: normal;
  font-size: 2.1vw;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}


.slide-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8vw;
  width: 100%;
}

.slide-bottom-row--right {
  flex-direction: row-reverse;
}
.cta-group--left {
  justify-content: flex-start;
}

.cta-group--right {
  justify-content: flex-end;
}

.slide-content--right {
  align-items: flex-end;
  text-align: right;
}


.cta-group {
  display: flex;
  gap: 1.6vw;
  justify-content: center;
  flex-wrap: nowrap;
}

.btn {
  height: 5.8vw;
  padding: 0 2.4vw;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2.6vw;
  white-space: nowrap;
  transition: transform 0.1s;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn--outline {
  border: none;
  background: #ffd84d;
  color: #0d1f3c;
}

.hero-banner__indicators {
  position: absolute;
  bottom: 3.7vw;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.9vw;
  z-index: 3;
}

.hero-banner__indicators span {
  width: 1.9vw;
  height: 1.9vw;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.26s ease;
  cursor: pointer;
  touch-action: manipulation;
}

.hero-banner__indicators span::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,216,77,0.92));
}

.hero-banner__indicators span.active {
  width: 4.8vw;
  background: linear-gradient(90deg, #ffffff 0%, #ffd84d 100%);
  box-shadow: 0 3px 10px rgba(255, 216, 77, 0.36);
}

.hero-banner__indicators span.active::after {
  animation: heroIndicatorProgress 5s linear forwards;
}

@keyframes heroIndicatorProgress {
  from {
    width: 0;
    opacity: 0.55;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* Trust Stats */
.trust-stats {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-50);
  min-height: 16.0vw;
}

.trust-stats__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.38s ease;
}

.trust-stats__page {
  min-height: 16.0vw;
  flex: 0 0 auto;
  padding: 1.1vw var(--spacing-page) 3.5vw;
}

.trust-stats__page--metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
  min-height: 100%;
  text-align: center;
}

.trust-stats__page--metrics-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1vw 0;
  overflow: hidden;
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1vw 2px;
  text-align: center;
}

.trust-metrics-grid .stat-item .number {
  font-size: 3.5vw;
  line-height: 1.2;
}

.trust-metrics-grid .stat-item .label {
  font-size: 2.4vw;
  line-height: 1.2;
}

.trust-stats__page--message {
  display: flex;
  align-items: center;
}

.trust-copy {
  width: 100%;
  text-align: center;
}

.trust-copy__eyebrow {
  font-size: 3.2vw;
  letter-spacing: 0.08em;
  color: var(--color-primary-700);
  margin-bottom: 1.6vw;
  font-weight: 700;
}

.trust-copy h3 {
  font-size: 4.5vw;
  line-height: 1.34;
  color: var(--color-primary-900);
  margin: 0 0 1.3vw;
  font-weight: 800;
}

.trust-copy p {
  margin: 0;
  font-size: 3.5vw;
  line-height: 1.56;
  color: #667085;
}

.trust-stats__page--entry .trust-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-copy__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35.2vw;
  height: 7.5vw;
  margin-top: 2.1vw;
  padding: 0 3.2vw;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
  color: #fff;
  font-size: 2.7vw;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(31, 79, 155, 0.14);
}

.trust-copy__link::after {
  content: '>';
  margin-left: 1.6vw;
  font-size: 2.6vw;
  opacity: 0.9;
}

.trust-stats__page--alert .trust-copy__eyebrow {
  color: var(--color-accent-500);
}

.trust-stats__dots {
  position: absolute;
  right: 3.7vw;
  bottom: 0.8vw;
  display: flex;
  gap: 1.6vw;
}

.trust-stats__dots span {
  width: 1.9vw;
  height: 1.9vw;
  border-radius: 999px;
  background: rgba(31, 79, 155, 0.22);
  box-shadow: inset 0 0 0 1px rgba(31, 79, 155, 0.08);
  transition: all 0.22s ease;
}

.trust-stats__dots span.active {
  width: 4.8vw;
  background: linear-gradient(90deg, var(--color-primary-500), var(--color-primary-700));
  box-shadow: 0 4px 10px rgba(31, 79, 155, 0.18);
  animation: trustDotPulse 1.8s ease-in-out infinite;
}

.faq-section {
  padding: 4.8vw var(--spacing-page) 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.faq-list {
  display: grid;
  gap: 0.8vw;
  padding-bottom: 2px;
}

.faq-card {
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #e3ecfb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  padding: 2.7vw 3.2vw 2.4vw;
}

.faq-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 5.9vw;
  padding: 0 2.1vw;
  margin-bottom: 1.6vw;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 2.7vw;
  font-weight: 800;
}

.faq-card h3 {
  margin: 0 0 1.1vw;
  font-size: 3.5vw;
  line-height: 1.38;
  font-weight: 800;
  color: var(--color-gray-900);
}

.faq-card p {
  margin: 0;
  font-size: 3.2vw;
  line-height: 1.56;
  color: var(--color-gray-600);
}

.faq-card a {
  color: var(--color-primary-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes trustDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(31, 79, 155, 0.18);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 6px 14px rgba(31, 79, 155, 0.24);
  }
}

.stat-item .number {
  font-size: clamp(2.9vw, 3.2vw, 3.7vw);
  font-weight: 700;
  color: #2a426f;
  line-height: 1.08;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-item .label {
  font-size: clamp(2.1vw, 2.4vw, 2.7vw);
  color: #7a8496;
  margin-top: 0.8vw;
  line-height: 1.28;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot-tags {
  display: flex;
  align-items: flex-start;
}

.hot-tags .prefix {
  font-size: 3.2vw;
  color: var(--color-gray-500);
  margin-top: 1.1vw;
  flex-shrink: 0;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
}

.tag {
  font-size: 3.2vw;
  color: var(--color-primary-600);
  background: var(--color-primary-100);
  padding: 1.1vw 3.2vw;
  border-radius: var(--radius-tag);
}

/* Product Quick Entry */
.product-quick-entry {
  padding: 5.9vw 0 3.7vw;
  margin-top: 3.7vw;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.product-quick-entry__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.1vw 1.6vw;
  padding: 3.7vw var(--spacing-page) 0;
}

.quick-category-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-category-card:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.quick-category-card__media {
  position: relative;
  aspect-ratio: 1 / 0.78;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, #ffffff 0%, #eef5ff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.quick-category-card__media img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.quick-category-card__body {
  padding: 2.1vw 1.6vw 2.7vw;
}

.quick-category-card__body h3 {
  margin: 0;
  font-size: 2.8vw;
  line-height: 1.2;
  color: var(--color-gray-900);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.7vw;
  padding: 0 var(--spacing-page);
  gap: 3.2vw;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  left: var(--spacing-page);
  right: var(--spacing-page);
  bottom: -2.7vw;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 79, 155, 0.16) 0%, rgba(31, 79, 155, 0.06) 46%, rgba(31, 79, 155, 0) 100%);
}

.section-title {
  font-size: 5.3vw;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  padding-left: 1px;
}

.more-link {
  margin-top: 5.9vw;
  font-size: 2.9vw;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-primary-600);
  white-space: nowrap;
}

/* Entry Grid (4-box menu) */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.7vw;
  padding: 4.8vw var(--spacing-page);
  background: white;
  margin-top: 3.7vw;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.entry-card {
  position: relative;
  height: 22.4vw;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4.3vw;
  color: white;
}

.entry-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.entry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 1;
}

.entry-card .title {
  position: relative;
  z-index: 2;
  font-size: 4.3vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 0.8vw 2.7vw rgba(0, 0, 0, 0.22);
}

.entry-card .desc {
  position: relative;
  z-index: 2;
  font-size: 2.9vw;
  opacity: 0.92;
  text-shadow: 0 2px 2.1vw rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.entry-card .desc--tight {
  font-size: 2.7vw;
}

/* Enhanced Product Card */
.product-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-info {
  padding: 3.2vw;
  flex: 1;
}

.product-title {
  font-size: 3.7vw;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 2.1vw;
  line-height: 1.4;
  height: 10.7vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
  margin-bottom: 3.2vw;
}

.spec-tag {
  font-size: 2.6vw;
  color: var(--color-gray-500);
  background: var(--color-gray-50);
  padding: 2px 1.6vw;
  border-radius: 4px;
}

.product-badge {
  position: absolute;
  bottom: 1.6vw;
  right: 2.1vw;
  background: var(--color-primary-600);
  color: white;
  font-size: 2.6vw;
  padding: 2px 1.6vw;
  border-radius: 4px;
  z-index: 1;
}

.product-badge.accent {
  background: var(--color-accent-500);
}

.product-card .img-placeholder {
  width: 100%;
  padding-top: 75%; /* 4:3 */
}

.product-info {
  padding: 3.2vw;
}

.product-title {
  font-size: 3.7vw;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1.1vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.product-params {
  font-size: 3.2vw;
  color: var(--color-gray-500);
  margin-bottom: 2.7vw;
}

.btn-inquiry {
  width: 100%;
  height: 8.5vw;
  background: var(--color-accent-500);
  color: white;
  border-radius: var(--radius-button-sm);
  font-size: 3.5vw;
  font-weight: 500;
}

.btn-more-products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-primary-600);
  color: var(--color-primary-600);
  border-radius: var(--radius-button-lg);
  font-weight: 600;
  background: white;
}

/* Cases Section */
.cases-section {
  padding: 6.9vw var(--spacing-page);
  margin-top: 3.7vw;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cases-spotlight {
  display: grid;
  gap: 3.7vw;
  align-items: start;
}

.case-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.case-card:active {
  transform: scale(0.985);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09);
}

.case-card--hero .case-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe7ff 0%, #eef4ff 100%);
}

.case-card__media img,
.case-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(5, 16, 42, 0) 0%, rgba(5, 16, 42, 0.58) 100%);
}

.case-watermark {
  z-index: 3;
}

.case-watermark--small {
  right: 1.6vw;
  bottom: 1.6vw;
  font-size: 1.7vw;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.0vw;
}

.case-badge {
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 5.9vw;
  padding: 0 2.4vw;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 2.7vw;
  font-weight: 800;
}

.case-card__body {
  padding: 3.7vw 3.7vw 4.0vw;
}

.case-kicker {
  margin: 0 0 1.6vw;
  font-size: 2.9vw;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-primary-600);
}

.case-title {
  margin: 0 0 1.6vw;
  font-size: 4.3vw;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-gray-900);
}

.case-meta {
  margin: 0 0 2.7vw;
  font-size: 2.9vw;
  line-height: 1.42;
  color: #7a8496;
}

.case-summary {
  display: none;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
  margin-top: 3.2vw;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  height: 6.4vw;
  padding: 0 2.4vw;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 2.7vw;
  font-weight: 700;
}

.cases-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.7vw;
}

.case-card--compact {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.case-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe7ff 0%, #eef4ff 100%);
  flex: 0 0 auto;
}

.case-card--compact .case-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.6vw;
  min-height: 31.5vw;
  padding: 3.2vw 3.7vw 3.2vw;
}

.case-card--compact .case-title {
  width: 100%;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.42;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card--compact .case-meta {
  margin-bottom: 0;
  font-size: 2.7vw;
  line-height: 1.2;
  color: #8a93a3;
}

.case-card--compact .case-kicker,
.case-card--compact .case-summary {
  display: none;
}

.case-card--compact .case-card__thumb img,
.case-card--hero .case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card--video .case-card__thumb {
  position: relative;
}

.case-card--video .case-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card--video .case-card__thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 8.5vw;
  height: 8.5vw;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f2b5b'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
  background-size: 3.7vw 3.7vw;
  background-repeat: no-repeat;
  background-position: 52% 50%;
}

.case-summary--compact {
  display: none;
}

/* About Section */
.about-section {
  padding: 6.9vw var(--spacing-page);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  margin-top: 3.7vw;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.about-hero-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.about-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef4ff;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  display: block;
}

.about-img-box::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 19.2vw;
  background: linear-gradient(180deg, rgba(10, 28, 58, 0) 0%, rgba(10, 28, 58, 0.26) 100%);
}

.about-content {
  padding: 3.7vw 3.7vw 4.3vw;
}

.about-kicker {
  margin: 0 0 1.6vw;
  font-size: 2.9vw;
  font-weight: 700;
  color: var(--color-primary-600);
  letter-spacing: 0.04em;
}

.company-name {
  font-size: 4.3vw;
  font-weight: 700;
  margin-bottom: 2.1vw;
  color: var(--color-gray-900);
}

.company-desc {
  font-size: 3.5vw;
  color: #5b667a;
  line-height: 1.68;
  margin-bottom: 3.2vw;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  height: 6.4vw;
  padding: 0 2.4vw;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 2.7vw;
  font-weight: 700;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8vw;
  margin-top: 3.2vw;
}

.about-mini-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 15.5vw;
  padding: 2.1vw 2.7vw;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.about-mini-stats strong {
  font-size: 4.3vw;
  line-height: 1.08;
  color: #2a426f;
  font-weight: 700;
}

.about-mini-stats span {
  margin-top: 1.1vw;
  font-size: 2.9vw;
  line-height: 1.32;
  color: #7a8496;
}

.about-mini-stats span em {
  display: block;
  margin-top: 0.5vw;
  font-size: 2vw;
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: #9aa6b8;
}

.founder-card {
  display: block;
  margin-top: 3.7vw;
}

.founder-card--portrait {
  --founder-visual-width: clamp(29.9vw, 34vw, 36.3vw);
  --founder-visual-height: clamp(37.9vw, 42vw, 44.3vw);
  --founder-frame-width: clamp(21.9vw, 25vw, 26.7vw);
  --founder-frame-height: clamp(30.9vw, 35vw, 36.8vw);
  --founder-portrait-width: clamp(27.7vw, 31vw, 33.1vw);
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 22px;
  padding: 3.7vw 3.7vw 3.2vw;
  background:
    radial-gradient(circle at top right, rgba(120, 119, 255, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(150deg, #102b5f 0%, #163874 52%, #214b8e 100%);
  box-shadow: 0 14px 26px rgba(15, 43, 91, 0.13);
}

.founder-card--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 48, 0.08) 0%, rgba(8, 21, 48, 0) 30%, rgba(8, 21, 48, 0) 100%);
  pointer-events: none;
}

.founder-card__content {
  position: relative;
  z-index: 2;
  width: calc(100% - var(--founder-visual-width) + 1.6vw);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.6vw;
}

.founder-card__headline {
  max-width: 100%;
}

.founder-card__kicker {
  margin: 0 0 1.1vw;
  font-size: 2.7vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-card__name {
  margin: 0 0 0.8vw;
  font-size: 4.8vw;
  line-height: 1.04;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.founder-card__role {
  margin: 0;
  font-size: 2.7vw;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

.founder-card__quote {
  position: relative;
  margin: 1.1vw 0 0;
  display: block;
  padding: 2px 5.3vw 1.1vw 4.8vw;
  max-width: 100%;
  isolation: isolate;
}

.founder-card__quote-mark {
  position: absolute;
  font-size: 6.4vw;
  line-height: 1;
  color: rgba(255, 214, 88, 0.9);
  font-weight: 900;
  pointer-events: none;
}

.founder-card__quote-mark--open {
  left: 0;
  top: 0;
}

.founder-card__quote-mark--close {
  right: 0;
  bottom: 0;
}

.founder-card__quote p {
  margin: 0;
  display: block;
  font-size: clamp(3.2vw, 3.8vw, 3.5vw);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  text-wrap: balance;
  word-break: break-word;
}

.founder-card__desc {
  margin: 1px 0 0;
  padding-right: 2px;
  font-size: clamp(2.4vw, 2.9vw, 2.7vw);
  line-height: 1.62;
  color: rgba(232, 240, 255, 0.8);
}

.founder-card__quote-source {
  display: block;
  margin-top: 1.6vw;
  font-size: 2.4vw;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.56);
}

.founder-card__footer {
  display: flex;
  align-items: center;
  gap: 1.6vw;
  margin-top: 1px;
}

.founder-card__footer--compact {
  align-items: center;
}

.founder-card__wechat-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.7vw;
  min-width: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2.7vw);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.founder-card__wechat-trigger--icon {
  flex: 0 0 9.1vw;
  width: 9.1vw;
  height: 9.1vw;
  padding: 0;
  border-radius: 12px;
}

.founder-card__wechat-icon {
  width: 6.9vw;
  height: 6.9vw;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 4.0vw;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.founder-card__wechat-meta strong {
  display: block;
  font-size: 2.9vw;
  line-height: 1.25;
  color: #fff;
}

.founder-card__wechat-meta span {
  display: block;
  margin-top: 2px;
  font-size: 2.4vw;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.founder-card__more {
  font-size: 2.9vw;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.founder-card__visual {
  position: absolute;
  right: -1.6vw;
  bottom: 0;
  width: var(--founder-visual-width);
  height: var(--founder-visual-height);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.founder-card__halo {
  position: absolute;
  right: -2.7vw;
  bottom: 4.8vw;
  width: calc(var(--founder-visual-width) - 4.8vw);
  height: calc(var(--founder-visual-width) - 4.8vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 162, 255, 0.36) 0%, rgba(125, 162, 255, 0) 74%);
  filter: blur(1.3vw);
}

.founder-card__frame {
  position: absolute;
  right: 3.7vw;
  bottom: 0;
  width: var(--founder-frame-width);
  height: var(--founder-frame-height);
  border-radius: 18px 18px 10px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.founder-card__portrait {
  position: relative;
  z-index: 2;
  width: var(--founder-portrait-width);
  max-width: none;
  display: block;
  filter: drop-shadow(0 2.1vw 4.3vw rgba(8, 16, 34, 0.2));
}

@media (max-width: 104.0vw) {
  .founder-card--portrait {
    --founder-visual-width: clamp(27.7vw, 31vw, 31.5vw);
    --founder-visual-height: clamp(35.7vw, 39vw, 40.0vw);
    --founder-frame-width: clamp(20.8vw, 23vw, 23.5vw);
    --founder-frame-height: clamp(28.8vw, 32vw, 33.6vw);
    --founder-portrait-width: clamp(25.6vw, 28vw, 29.3vw);
    padding: 3.5vw 3.2vw 2.9vw;
  }

  .founder-card__content {
    width: calc(100% - var(--founder-visual-width) + 2px);
    gap: 1.3vw;
  }

  .founder-card__name {
    font-size: 4.3vw;
  }

  .founder-card__role {
    font-size: 2.4vw;
  }

  .founder-card__quote {
    padding: 1px 4.3vw 0.8vw 4.3vw;
  }

  .founder-card__quote-mark {
    font-size: 5.9vw;
  }

  .founder-card__quote-mark--open {
    top: 0;
  }

  .founder-card__quote-mark--close {
    bottom: 0;
  }

  .founder-card__quote p {
    font-size: 3.2vw;
    line-height: 1.48;
  }

  .founder-card__desc {
    font-size: 2.4vw;
    line-height: 1.56;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .founder-card__footer {
    gap: 0.8vw;
    margin-top: 0;
  }

  .founder-card__wechat-trigger--icon {
    flex-basis: 8.0vw;
    width: 8.0vw;
    height: 8.0vw;
    border-radius: 11px;
  }

  .founder-card__wechat-icon {
    width: 5.9vw;
    height: 5.9vw;
    border-radius: 8px;
    font-size: 3.5vw;
  }

  .founder-card__more {
    font-size: 2.4vw;
    line-height: 1.1;
  }

  .founder-card__visual {
    right: -1.1vw;
    bottom: -1.6vw;
  }

  .founder-card__frame {
    right: 3.2vw;
    bottom: 2px;
  }

  .founder-card__portrait {
    transform: translateY(1.6vw);
  }
}

.founder-wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.founder-wechat-modal.active {
  display: block;
}

.founder-wechat-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 38, 0.62);
  backdrop-filter: blur(1.6vw);
}

.founder-wechat-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 14.9vw);
  max-width: 85.3vw;
  transform: translate(-50%, -50%);
  padding: 5.9vw 4.8vw 4.8vw;
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 43, 91, 0.2);
}

.founder-wechat-modal__close {
  position: absolute;
  top: 2.7vw;
  right: 3.2vw;
  width: auto;
  min-width: 10.7vw;
  height: 10.7vw;
  border: none;
  background: transparent;
  color: #5b6475;
  font-size: 6.4vw;
  line-height: 1;
  cursor: pointer;
}

.founder-wechat-modal__panel h3 {
  margin: 0;
  font-size: 4.8vw;
  color: #173e7b;
}

.founder-wechat-modal__panel p {
  margin: 2.1vw 0 3.7vw;
  font-size: 3.5vw;
  line-height: 1.6;
  color: #64748b;
}

.founder-wechat-modal__panel img {
  width: 50.1vw;
  height: 50.1vw;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 43, 91, 0.08);
}

.about-content .more-btn,
.about-links .more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 9.6vw;
  padding: 0 4.3vw;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 3.2vw;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.16);
}

.about-links .more-btn--ghost {
  background: #eef4ff;
  color: var(--color-primary-600);
  box-shadow: none;
}

/* News Section */
.news-section {
  padding: 6.4vw var(--spacing-page);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  margin-top: 3.7vw;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.section-kicker {
  margin: 0 0 1.6vw;
  font-size: 2.1vw;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(77, 111, 174, 0.66);
}

.news-brief {
  margin-top: 3.7vw;
  padding: 3.2vw;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.news-brief__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6vw 3.2vw;
  padding-bottom: 2.7vw;
  margin-bottom: 2.7vw;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.news-brief__brand {
  font-size: 3.2vw;
  font-weight: 800;
  color: var(--color-primary-700);
}

.news-brief__desc {
  font-size: 2.9vw;
  color: var(--color-gray-500);
}

.news-focus-card {
  display: block;
  padding: 3.2vw 3.2vw 2.9vw;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #e3ecfb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.news-focus-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.7vw;
  margin-bottom: 1.6vw;
}

.news-focus-card__tag {
  display: inline-flex;
  align-items: center;
  height: 5.9vw;
  padding: 0 2.4vw;
  border-radius: 999px;
  background: #1f4f9b;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 2.7vw;
  font-weight: 800;
}

.news-focus-card__date {
  font-size: 2.9vw;
  color: #7a8496;
  font-weight: 700;
}

.news-focus-card__title {
  margin: 0 0 1.3vw;
  font-size: 3.7vw;
  line-height: 1.45;
  font-weight: 800;
  color: var(--color-gray-900);
}

.news-focus-card__summary {
  margin: 0;
  font-size: 3.2vw;
  line-height: 1.62;
  color: var(--color-gray-600);
}

.news-compact-list {
  display: grid;
  gap: 0.8vw;
  margin-top: 2.7vw;
}

.news-compact-item {
  display: grid;
  grid-template-columns: 19.2vw minmax(0, 1fr) 11.2vw;
  gap: 2.7vw;
  align-items: start;
  padding: 2.7vw 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.news-compact-item:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.news-compact-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.9vw;
  padding: 0 2.1vw;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 2.7vw;
  font-weight: 800;
}

.news-compact-item__body h3 {
  margin: 0 0 1.1vw;
  font-size: 3.3vw;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-gray-900);
}

.news-compact-item__body p {
  margin: 0;
  font-size: 2.9vw;
  line-height: 1.55;
  color: var(--color-gray-500);
}

.news-compact-item__date {
  font-size: 2.9vw;
  font-weight: 700;
  color: #7a8496;
  text-align: right;
  white-space: nowrap;
}

.news-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8vw;
  margin-top: 2.7vw;
}

.news-channel-card {
  display: block;
  padding: 3.2vw 2.7vw;
  border-radius: 16px;
  background: linear-gradient(180deg, #123a78 0%, #1f4f9b 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 43, 91, 0.12);
}

.news-channel-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.1vw;
}

.news-channel-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 5.9vw;
  padding: 0 2.1vw;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 2.7vw;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.86);
}

.news-channel-card__arrow {
  font-size: 3.7vw;
  font-weight: 800;
  color: rgba(255,255,255,0.34);
}

.news-channel-card h3 {
  margin: 0 0 1.1vw;
  font-size: 3.5vw;
  line-height: 1.35;
  font-weight: 800;
}

.news-channel-card p {
  margin: 0;
  font-size: 2.7vw;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.news-channel-card h3 {
  margin: 0 0 1.1vw;
  font-size: 3.5vw;
  line-height: 1.35;
  font-weight: 800;
}

.news-channel-card p {
  margin: 0;
  font-size: 2.7vw;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  color: var(--color-gray-900);
  padding: 4.8vw var(--spacing-page) 5.3vw;
}

.site-footer__card {
  border: 1px solid rgba(207, 224, 245, 0.95);
  border-radius: 18px;
  padding: 3.2vw;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,255,0.98) 100%);
  box-shadow: 0 10px 20px rgba(28, 73, 136, 0.06);
}

.site-footer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8vw;
  margin-bottom: 2.1vw;
}

.site-footer__cta {
  min-height: 10.7vw;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2vw;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-footer__cta--primary {
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(31, 79, 155, 0.22);
}

.site-footer__cta--ghost {
  border: 1px solid #cfdef4;
  background: #f2f7ff;
  color: #1f4f9b;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3vw;
  align-items: stretch;
  margin-bottom: 3.2vw;
}

.site-footer__qr-trigger,
.site-footer__contact {
  box-sizing: border-box;
}

.site-footer__qr-trigger {
  min-height: 12.8vw;
  border: 1px solid rgba(7, 193, 96, 0.18);
  border-radius: 18px;
  padding: 2.7vw 4vw;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.2vw;
  color: #07c160;
  background:
    radial-gradient(circle at 34% 20%, rgba(7, 193, 96, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2fbf7 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 8px 20px rgba(22, 90, 62, 0.05);
}

.site-footer__qr-trigger svg {
  width: 6vw;
  height: 6vw;
  filter: drop-shadow(0 1.4vw 2.4vw rgba(7, 193, 96, 0.18));
}

.site-footer__qr-trigger span {
  font-size: 3.6vw;
  line-height: 1;
  color: #38516f;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.site-footer__contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2vw;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 79, 155, 0.14);
  border-radius: 24px;
  padding: 3.2vw;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.24), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(105, 170, 255, 0.28), transparent 36%),
    linear-gradient(145deg, #123b78 0%, #1f5bb4 56%, #2b73d2 100%);
  box-shadow: 0 16px 32px rgba(31, 79, 155, 0.18);
}

.site-footer__contact:before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,0.16);
  pointer-events: none;
}

.site-footer__contact .tel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3vw;
  min-width: 0;
  min-height: 13vw;
  padding: 2.6vw 3.2vw;
  border-radius: 18px;
  color: #fff;
  text-align: left;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}

.site-footer__contact .tel:first-child {
  min-height: 14vw;
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.76);
  box-shadow: 0 10px 22px rgba(8, 30, 66, 0.14), inset 0 1px 0 rgba(255,255,255,0.9);
}

.site-footer__contact .tel span {
  display: block;
  min-width: 0;
  color: rgba(255,255,255,0.78);
  font-size: 3.15vw;
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
  letter-spacing: 0.01em;
}

.site-footer__contact .tel:first-child span {
  color: #1f4f9b;
}

.site-footer__contact .tel b {
  display: block;
  color: #fff;
  font-size: clamp(18px, 5vw, 23px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.site-footer__contact .tel:first-child b {
  color: #1f4f9b;
  text-shadow: none;
}

.copyright {
  padding-top: 2.1vw;
  border-top: 1px solid #e3edf9;
  font-size: 2.7vw;
  color: #7c8da6;
  text-align: center;
  line-height: 1.55;
}

.copyright p + p {
  margin-top: 2px;
}

.copyright a {
  color: inherit !important;
}

.site-footer__about {
  margin-top: 3.2vw;
  padding-top: 3.2vw;
  border-top: 1px solid #e3edf9;
  color: #63758f;
  font-size: 2.85vw;
  line-height: 1.8;
  text-align: left;
}

.site-footer__about p {
  margin: 0;
}

/* Bottom Bar */
.bottom-bar {
  position: fixed;
  left: 3.2vw;
  right: 3.2vw;
  bottom: 3.2vw;
  min-height: 15.5vw;
  background: rgba(255,255,255,0.96);
  display: grid;
  grid-template-columns: minmax(42px, 0.88fr) minmax(48px, 0.96fr) minmax(178px, 2.5fr) minmax(50px, 1fr);
  align-items: center;
  gap: 0.6vw;
  border-radius: 18px;
  border: 1px solid rgba(207, 224, 245, 0.95);
  box-shadow: 0 10px 22px rgba(28, 73, 136, 0.1);
  z-index: 150;
  padding: 1.1vw 1.1vw calc(1.1vw + env(safe-area-inset-bottom));
  backdrop-filter: blur(3.2vw);
}

.bar-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #6d7f98;
  gap: 2px;
  border-radius: 12px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.bar-item svg {
  width: clamp(16px, 4.3vw, 19px);
  height: clamp(16px, 4.3vw, 19px);
  margin-bottom: 0;
  flex: 0 0 auto;
}

.bar-item span {
  max-width: 100%;
  font-size: clamp(10px, 2.45vw, 12px);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.bar-item.active {
  color: #1f4f9b;
  background: transparent;
}

.bar-item--phone {
  color: #1f4f9b;
}

.bar-item--product {
  position: relative;
  color: #e53935;
}


.bar-item--product svg {
  width: clamp(22px, 6vw, 26px);
  height: clamp(22px, 6vw, 26px);
  color: #e53935;
  filter: drop-shadow(0 0.8vw 1.8vw rgba(229, 57, 53, 0.22));
}

.bar-item--product span {
  color: #e53935;
  font-size: clamp(10px, 2.55vw, 12px);
  font-weight: 900;
}


.bar-cta {
  flex: none;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 0 1.0vw;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  box-shadow: 0 10px 20px rgba(31, 79, 155, 0.22);
  white-space: nowrap;
  overflow: hidden;
}

.bar-item--phone span {
  font-size: clamp(9px, 2.2vw, 11px);
  font-weight: 800;
}

.bar-cta__badge {
  flex: 0 0 auto;
  min-width: 48px;
  height: 4.8vw;
  padding: 0 0.8vw;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, 2.25vw, 11px);
  font-weight: 800;
}

.bar-cta__title {
  flex: 0 0 auto;
  min-width: 0;
  font-size: clamp(11px, 2.72vw, 13px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  visibility: hidden;
}

.qr-modal.active {
  visibility: visible;
}

.qr-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 46, 0.52);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.qr-modal.active .qr-modal__mask {
  opacity: 1;
}

.qr-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60.8vw;
  padding: 3.7vw;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dbe7f7;
  transform: translate(-50%, -46%);
  opacity: 0;
  box-shadow: 0 18px 40px rgba(28, 73, 136, 0.18);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.qr-modal.active .qr-modal__panel {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.qr-modal__panel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e6eef9;
}

.qr-modal__close {
  position: absolute;
  top: 1.6vw;
  right: 2.1vw;
  width: auto;
  min-width: 10.7vw;
  height: 10.7vw;
  border-radius: 999px;
  color: #7c8da6;
  font-size: 5.3vw;
  line-height: 7.5vw;
}

.floating-consult {
  position: fixed;
  right: 3.2vw;
  bottom: 28.8vw;
  z-index: 420;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.7vw;
  display: none;
}

.floating-consult__panel {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  padding: 2.7vw;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(207, 224, 245, 0.95);
  box-shadow: 0 12px 26px rgba(28, 73, 136, 0.12);
  backdrop-filter: blur(3.2vw);
  opacity: 0;
  transform: translateY(2.1vw) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-consult.active .floating-consult__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-consult__item {
  display: inline-flex;
  align-items: center;
  gap: 2.4vw;
  min-width: 29.9vw;
  height: 10.1vw;
  padding: 0 3.2vw;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: #1f4f9b;
  font-size: 3.2vw;
  font-weight: 700;
}

.floating-consult__item--wechat {
  background: linear-gradient(180deg, #f5fffa 0%, #eefbf4 100%);
  border-color: rgba(34, 197, 94, 0.14);
  color: #166534;
}

.floating-consult__icon {
  width: 5.9vw;
  height: 5.9vw;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.9vw;
  font-weight: 800;
  flex: 0 0 5.9vw;
}

.floating-consult__item--wechat .floating-consult__icon,
.floating-consult__toggle--wechat {
  background: linear-gradient(135deg, #19c15f 0%, #14a34a 100%);
}

.floating-consult__text {
  line-height: 1;
  white-space: nowrap;
}

.floating-consult__toggle {
  width: 16.0vw;
  height: 16.0vw;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(31, 79, 155, 0.28);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.floating-consult__toggle-badge {
  font-size: 2.9vw;
  font-weight: 800;
  line-height: 1;
}

.floating-consult__toggle-icon {
  width: 6.4vw;
  height: 6.4vw;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2vw;
  font-weight: 900;
  line-height: 1;
}

.site-footer__cta:active,
.bar-item:active,
.bar-cta:active {
  transform: translateY(1px);
}

@media (hover: hover) {
  .site-footer__cta:hover,
  .bar-item:hover,
  .bar-cta:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 96.0vw) {
  .site-footer__actions {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__contact .tel {
    padding: 2.5vw 2.8vw;
  }

  .site-footer__contact .tel span {
    font-size: 3vw;
  }

  .bottom-bar {
    left: 2.1vw;
    right: 2.1vw;
    bottom: 2.1vw;
    grid-template-columns: minmax(40px, 0.86fr) minmax(46px, 0.94fr) minmax(176px, 2.55fr) minmax(48px, 1fr);
    gap: 0.8vw;
    padding-left: 1.3vw;
    padding-right: 1.3vw;
  }

  .bar-item {
    flex-basis: 11.7vw;
  }

  .bar-item--product span {
    font-size: 3vw;
  }

  .bar-cta {
    padding: 0 0.8vw;
    gap: 0.6vw;
  }

  .bar-cta__title {
    font-size: clamp(11px, 2.62vw, 12px);
  }
}

@media (max-width: 360px) {
  .bottom-bar {
    gap: 0.5vw;
    grid-template-columns: minmax(38px, 0.84fr) minmax(44px, 0.92fr) minmax(164px, 2.55fr) minmax(46px, 1fr);
    padding-left: 0.8vw;
    padding-right: 0.8vw;
  }

  .bar-item {
    flex-basis: 10.5vw;
  }

  .bar-cta {
    min-width: 0;
  }

  .bar-cta__badge {
    display: none;
  }

  .bar-cta__title {
    font-size: clamp(10px, 3vw, 11px);
  }
}

/* Inquiry Modal */
.inquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  visibility: hidden;
}

.inquiry-modal.active {
  visibility: visible;
}

.modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inquiry-modal.active .modal-mask {
  opacity: 1;
}

.modal-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-radius: var(--radius-modal) var(--radius-modal) 0 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 3.2vw 5.3vw calc(6.4vw + env(safe-area-inset-bottom));
}

.inquiry-modal.active .modal-panel {
  transform: translateY(0);
}

.modal-drag-bar {
  width: 10.7vw;
  height: 1.1vw;
  background: var(--color-gray-300);
  border-radius: 2px;
  margin: 0 auto 4.3vw;
}

.modal-header {
  text-align: center;
  margin-bottom: 6.4vw;
  position: relative;
}

.modal-title {
  font-size: 4.8vw;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 3.5vw;
  color: var(--color-gray-500);
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--color-gray-500);
}

.inquiry-form .form-group {
  margin-bottom: 3.2vw;
}

.form-group--wechat {
  display: none;
}

.inquiry-form.is-manual .form-group--wechat {
  display: block;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  height: 12.8vw;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: 8px;
  padding: 0 4.3vw;
  font-size: 4.0vw;
  outline: none;
}

.inquiry-form input:focus {
  border-color: var(--color-primary-600);
  background: white;
}

.btn-submit {
  width: 100%;
  height: 12.8vw;
  background: var(--gradient-cta);
  color: white;
  border-radius: 24px;
  font-size: 4.3vw;
  font-weight: 600;
  margin-top: 3.2vw;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.form-footer {
  text-align: center;
  margin-top: 4.3vw;
  font-size: 3.5vw;
  color: var(--color-gray-500);
  display: flex;
  gap: 3.2vw;
  justify-content: center;
  align-items: center;
}

.form-footer a, .form-footer__tel {
  color: var(--color-accent-500);
  font-weight: 600;
  text-decoration: none;
}

.form-footer__wechat {
  color: #07c160;
  font-weight: 600;
  font-size: 3.5vw;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 96.0vw) {
  .floating-consult {
    right: 2.7vw;
    bottom: 27.7vw;
  }
}

/* 首页产品搜索栏 */
.index-search-bar { padding: 4vw var(--spacing-page); background: #f5f7fa; }
.index-search-bar__form { display: flex; gap: 2vw; }
.index-search-bar__form input { flex: 1; padding: 2.8vw 3.5vw; border: 1.5px solid rgba(21,53,111,.18); border-radius: 999px; font-size: 3.6vw; background: #fff; outline: none; }
.index-search-bar__form button { flex: 0 0 auto; padding: 2.8vw 5vw; background: var(--color-primary-700); color: #fff; border: none; border-radius: 999px; font-size: 3.6vw; font-weight: 700; }

/* 底部网站介绍 */
/* 本地双站合并：移动端保留 WAP 顶部，只隐藏 PC 横向导航，避免挤压 logo 与按钮。 */
.pc-nav {
  display: none;
}

@media (min-width: 1200px) {
  .pc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
  }
}

/* 双站合并移动端兜底：底部快捷栏必须固定显示在移动视口底部。 */
.bottom-bar {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1200 !important;
}

/* 移动端首页信任/核验入口：固定高度，避免多页轮播内容把区块纵向撑开。 */
.wap-home-page .trust-stats {
  height: clamp(132px, 36vw, 156px) !important;
  min-height: 0 !important;
  overflow: hidden !important;
}
.wap-home-page .trust-stats__track {
  height: 100% !important;
}
.wap-home-page .trust-stats__page {
  height: clamp(132px, 36vw, 156px) !important;
  min-height: 0 !important;
  padding: 12px var(--spacing-page) 22px !important;
  box-sizing: border-box !important;
}
.wap-home-page .trust-copy__eyebrow {
  margin-bottom: 4px !important;
  font-size: 12px !important;
}
.wap-home-page .trust-copy h3 {
  margin-bottom: 5px !important;
  font-size: clamp(18px, 4.6vw, 22px) !important;
  line-height: 1.18 !important;
}
.wap-home-page .trust-copy p {
  font-size: clamp(13px, 3.45vw, 15px) !important;
  line-height: 1.42 !important;
}
.wap-home-page .trust-copy__link {
  height: 32px !important;
  min-width: 128px !important;
  margin-top: 8px !important;
  font-size: 13px !important;
}
.wap-home-page .trust-stats__dots {
  right: 22px !important;
  bottom: 10px !important;
}

/* 信任/核验入口防换行保护：窄屏不再因为转行撑高或裁切核心按钮。 */
.wap-home-page .trust-copy h3 {
  max-width: 92vw !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.wap-home-page .trust-copy p {
  max-width: 92vw !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.wap-home-page .trust-metrics-grid .stat-item .number,
.wap-home-page .trust-stats__page--metrics .number {
  white-space: nowrap !important;
}
.wap-home-page .trust-metrics-grid .stat-item .label,
.wap-home-page .trust-stats__page--metrics .label {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
@media (max-width: 360px) {
  .wap-home-page .trust-stats,
  .wap-home-page .trust-stats__page {
    height: 132px !important;
  }
  .wap-home-page .trust-copy h3 {
    font-size: 17px !important;
  }
  .wap-home-page .trust-copy p {
    font-size: 12.5px !important;
  }
}

/* 移动首页 banner/statusbar 按移动端首屏常用横幅比例优化。 */
.wap-home-page .hero-banner {
  margin-top: 0 !important;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #0a1e45;
}

.wap-home-page .hero-banner__track,
.wap-home-page .hero-banner__slide,
.wap-home-page .hero-slide-img {
  height: 100%;
  min-height: 0;
}

.wap-home-page .hero-slide-img {
  position: relative;
  overflow: hidden;
  background: #0a1e45;
  aspect-ratio: 16 / 9;
}

.wap-home-page .hero-slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.wap-home-page .hero-slide-img::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,30,69,0.82) 0%, rgba(10,30,69,0.52) 52%, rgba(10,30,69,0.22) 100%),
    linear-gradient(180deg, rgba(10,30,69,0.16) 0%, rgba(10,30,69,0.62) 100%);
}

.wap-home-page .hero-slide-img::after {
  display: block;
  content: '';
  position: absolute;
  left: 5.3vw;
  right: 5.3vw;
  bottom: 10px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(229,57,53,0.78), rgba(255,255,255,0.16), transparent);
}

.wap-home-page .slide-content,
.wap-home-page .slide-content--left,
.wap-home-page .slide-content--right,
.wap-home-page .slide-content--center,
.wap-home-page .slide-content--side,
.wap-home-page .slide-content--bar {
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  top: 0 !important;
  width: auto !important;
  height: 100% !important;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  text-align: left !important;
  gap: 0;
  padding: 16px 5.3vw 26px !important;
  background: transparent !important;
  box-sizing: border-box;
}

.wap-home-page .slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 88vw;
  margin: 0 0 5px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-family);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.wap-home-page .slide-tag::before {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e53935;
}

.wap-home-page .slide-title-lg {
  max-width: 66vw;
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(19px, 5.3vw, 26px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.wap-home-page .slide-title-accent {
  color: #e53935;
}

.wap-home-page .slide-seo-summary {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 70vw;
  margin: 0 0 5px;
  color: rgba(255,255,255,0.86);
  font-size: 9px;
  line-height: 1.28;
  text-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

.wap-home-page .slide-bottom-row,
.wap-home-page .slide-bottom-row--right {
  display: flex;
  width: 100%;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 6px;
}

.wap-home-page .slide-service-pills,
.wap-home-page .slide-service-pills--col {
  display: flex;
  width: 100%;
  max-width: 66vw;
  flex-wrap: wrap;
  gap: 5px;
  overflow: visible;
}

.wap-home-page .slide-service-pills span,
.wap-home-page .slide-service-pills .pill-text {
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
}

.wap-home-page .cta-group,
.wap-home-page .cta-group--left,
.wap-home-page .cta-group--right {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
}

.wap-home-page .hero-banner .btn {
  height: 28px;
  min-width: 72px;
  padding: 0 10px;
  border-radius: 8px !important;
  font-size: 11px;
  font-weight: 900;
  box-sizing: border-box;
}

.wap-home-page .hero-banner .btn--primary {
  background: #e53935 !important;
  border-color: #e53935 !important;
  box-shadow: 0 12px 28px rgba(229,57,53,0.34);
}

.wap-home-page .hero-banner .btn--outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.wap-home-page .slide-copyright {
  bottom: 3px;
  left: 5.3vw;
  right: 5.3vw;
  z-index: 2;
  color: rgba(255,255,255,0.42);
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.08em;
}

.wap-home-page .hero-banner__indicators {
  bottom: 8px;
  gap: 6px;
}

.wap-home-page .hero-banner__indicators span {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.34);
}

.wap-home-page .hero-banner__indicators span::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.3), #e53935);
}

.wap-home-page .hero-banner__indicators span.active {
  width: 22px;
  background: #e53935;
  box-shadow: 0 4px 14px rgba(229,57,53,0.36);
}

.wap-home-page .trust-stats {
  z-index: 5;
  width: 100%;
  height: clamp(92px, 25vw, 116px) !important;
  margin: 0;
  border-radius: 0;
  background: #fff !important;
  box-shadow: 0 28px 58px rgba(10,30,69,0.2);
}

.wap-home-page .trust-stats__page {
  height: clamp(92px, 25vw, 116px) !important;
  padding: 15px var(--spacing-page) 20px !important;
}

.wap-home-page .trust-stats__track {
  flex-direction: row !important;
  height: 100% !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  transform: none !important;
}

.wap-home-page .trust-stats__track::-webkit-scrollbar {
  display: none;
}

.wap-home-page .trust-stats__page {
  flex: 0 0 100% !important;
  scroll-snap-align: start;
}

.wap-home-page .trust-stats__page--metrics,
.wap-home-page .trust-stats__page--metrics-grid {
  align-content: center;
  justify-content: center;
}

.wap-home-page .trust-stats__page--metrics .stat-item,
.wap-home-page .trust-metrics-grid .stat-item {
  position: relative;
  min-width: 0;
  padding: 0 3px;
}

.wap-home-page .trust-stats__page--metrics .stat-item + .stat-item::before,
.wap-home-page .trust-metrics-grid .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  width: 1px;
  height: 72%;
  background: #e6eaf2;
}

.wap-home-page .trust-stats__page--metrics .number,
.wap-home-page .trust-metrics-grid .stat-item .number {
  color: #15356f;
  font-family: var(--font-num);
  font-size: clamp(27px, 7.2vw, 35px) !important;
  font-weight: 400;
  line-height: 1.05;
  overflow: visible !important;
  text-overflow: clip !important;
}

.wap-home-page .trust-stats__page--metrics .number::after,
.wap-home-page .trust-metrics-grid .stat-item .number::after {
  color: #e53935;
}

.wap-home-page .trust-stats__page--metrics .label,
.wap-home-page .trust-metrics-grid .stat-item .label {
  margin-top: 5px;
  color: #15356f;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.wap-home-page .trust-stats__page--message {
  justify-content: center;
  background: #15356f;
}

.wap-home-page .trust-stats__page--alert {
  background: #b71c1c;
}

.wap-home-page .trust-copy {
  text-align: left;
}

.wap-home-page .trust-copy__eyebrow {
  color: #e53935 !important;
  font-size: 9px !important;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wap-home-page .trust-copy h3 {
  max-width: 100% !important;
  color: #fff !important;
  font-size: clamp(14px, 3.7vw, 17px) !important;
  line-height: 1.18 !important;
}

.wap-home-page .trust-copy p {
  max-width: 100% !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
}

.wap-home-page .trust-copy__link {
  height: 24px !important;
  min-width: 98px !important;
  margin-top: 6px !important;
  padding: 0 10px !important;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: transparent !important;
  color: #fff !important;
  font-size: 10px !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.wap-home-page .trust-stats__page--entry {
  align-items: center;
}

.wap-home-page .trust-stats__page--entry .trust-copy {
  gap: 0;
}

.wap-home-page .trust-stats__page--entry .trust-copy__eyebrow {
  margin-bottom: 2px !important;
  font-size: 8px !important;
  line-height: 1.1 !important;
}

.wap-home-page .trust-stats__page--entry .trust-copy h3 {
  margin-bottom: 2px !important;
  font-size: clamp(12px, 3.25vw, 15px) !important;
  line-height: 1.12 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.wap-home-page .trust-stats__page--entry .trust-copy p {
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  margin: 0 !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  overflow: hidden !important;
}

.wap-home-page .trust-stats__page--entry .trust-copy__link {
  height: 22px !important;
  min-width: 108px !important;
  margin-top: 4px !important;
  font-size: 9px !important;
}

.wap-home-page .trust-stats__dots {
  right: 16px !important;
  bottom: 6px !important;
}

.wap-home-page .trust-stats__dots span.active {
  background: #e53935;
  box-shadow: 0 4px 12px rgba(229,57,53,0.28);
}

/* 统一分页 */
.site-pagination,
.npage .site-pagination,
.wap-page-nav .site-pagination {
  width: 100%;
  margin: 0;
  padding: 3.2vw 3.2vw 3.2vw 4.3vw;
  display: flex;
  flex-direction: column;
  gap: 2.4vw;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 53, 111, .12);
  border-radius: 4.3vw;
  background: #fff;
  box-shadow: 0 3.2vw 9vw rgba(10, 30, 69, 0.09);
}
.site-pagination__summary {
  display: flex;
  justify-content: center;
  gap: 2vw;
  flex-wrap: wrap;
  color: #63758f;
  font-size: 3vw;
  font-weight: 800;
}
.site-pagination__summary span {
  display: inline-flex;
  align-items: center;
  min-height: 7.2vw;
  padding: 0 3vw;
  border-radius: 999px;
  background: #f4f7fc;
  color: #15356f;
}
.site-pagination__summary b {
  margin: 0 0.8vw;
  color: #e53935;
  font-weight: 900;
}
.site-pagination__links {
  display: flex;
  justify-content: center;
  gap: 1.6vw;
  flex-wrap: wrap;
}
.site-pagination__links a,
.site-pagination__links span,
.site-pagination a,
.site-pagination .currents1 {
  min-width: 8.8vw;
  height: 8.8vw;
  margin: 0;
  padding: 0 3vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e5f5;
  border-radius: 3.2vw;
  background: #fdfefe;
  color: #1d2b42;
  font-size: 3.15vw;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 1.4vw 3.5vw rgba(21, 53, 111, 0.06);
}
.site-pagination__links .currents1,
.site-pagination .currents1 {
  border-color: #15356f;
  background: linear-gradient(135deg, #15356f, #0a1e45);
  color: #fff;
  box-shadow: 0 1.8vw 4.8vw rgba(21, 53, 111, 0.18);
}
