:root {
  --bg-deep: #0a1628;
  --bg-dark: #0f1d32;
  --bg-card: #151f35;
  --bg-section: #f8f9fa;
  --gold: #c5a55a;
  --gold-light: #d4b96a;
  --gold-dark: #a8893d;
  --gold-pale: #f0e6d0;
  --gold-soft: rgba(197, 165, 90, 0.15);
  --text-white: #e8e8e8;
  --text-light: #b0b8c4;
  --text-muted: #7a8494;
  --text-dark: #1a1a1a;
  --text-body: #3a3a3a;
  --text-heading: #0f1d32;
  --white: #ffffff;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(197, 165, 90, 0.2);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.25);
  --shadow-card-hover: 0 14px 40px rgba(0, 0, 0, 0.14);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', sans-serif;
  --max-width: 1680px;
  --nav-height: 72px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0
}
fieldset, img {
  border: 0;
  max-width: 100%;
  height: auto
}
:focus {
  outline: 0
}
address, caption, cite, code, dfn, em, th, var, optgroup {
  font-style: normal;
  font-weight: normal
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal
}
abbr, acronym {
  border: 0;
  font-variant: normal
}
input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit
}
code, kbd, samp, tt {
  font-size: 100%
}
input, button, textarea, select {
  *font-size: 100%
}
body {
  line-height: 1.5
}
ol, ul {
  list-style: none
}
table {
  border-collapse: collapse;
  border-spacing: 0
}
caption, th {
  text-align: left
}
sup, sub {
  font-size: 100%;
  vertical-align: baseline
}
:link, :visited, ins {
  text-decoration: none
}
blockquote, q {
  quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
/* ======  fonts  ====== */
body {
  font: 13px/1.231 arial, helvetica, clean, sans-serif;
  *font-size: small;
  *font: x-small;
}
table {
  font-size: inherit;
  font: 100%;
}
pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h1, .h1 {
  font-size: 32px;
}
h2, .h2 {
  font-size: 26px;
}
h3, .h3 {
  font-size: 24px;
}
h4, .h4 {
  font-size: 22px;
}
h5, .h5 {
  font-size: 18px;
}
h6, .h6 {
  font-size: 14px;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb {
  background: #c5a55a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8893d;
}
body{-webkit-text-size-adjust: 100% !important;
text-size-adjust: 100% !important;
-moz-text-size-adjust: 100% !important;}
/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.not-animated {
    opacity: 0;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(197, 165, 90, 0.25);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #0a1628;
  letter-spacing: 0;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  display: block;
  padding: 15px 2rem;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 20px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a.active {
  color: var(--gold-light);
  font-weight: 600;
}
/* 下拉菜单 */
.nav-links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  margin-left: 2px;
  opacity: 0.7;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(15, 29, 50, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 160px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1001;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.nav-links .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-links .dropdown-menu li a {
  padding: 10px 22px;
  font-size: 0.82rem;
  color: var(--text-light);
  border-radius: 0;
  white-space: nowrap;
  display: block;
  text-align: center;
  transition: var(--transition);
  background: transparent;
}
.nav-links .dropdown-menu li a:hover {
  color: #ffffff;
  background: rgba(197, 165, 90, 0.15);
}
.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff !important;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  box-shadow: 0 2px 12px rgba(197, 165, 90, 0.2);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 165, 90, 0.4);
  filter: brightness(1.1);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
  width: 30px;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.nav-mobile-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile-bg.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-bg a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  font-family: var(--font-heading);
  display: block;
}
.nav-mobile-bg a:hover {
  color: var(--gold-light);
}
.nav-mobile-bg .nav-cta {
  margin-top: 10px;
  font-size: 1rem;
  padding: 14px 34px;
}
/* 移动端下拉菜单 */
.nav-mobile-bg .has-dropdown-mobile {
  position: relative;
  text-align: center;
}
.nav-mobile-bg .has-dropdown-mobile .mobile-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  font-family: var(--font-heading);
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-bg .has-dropdown-mobile .mobile-dropdown-toggle:hover {
  color: var(--gold-light);
}
.nav-mobile-bg .has-dropdown-mobile .mobile-dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.9rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-mobile-bg .has-dropdown-mobile.open .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}
.nav-mobile-bg .mobile-submenu {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.nav-mobile-bg .has-dropdown-mobile.open .mobile-submenu {
  display: flex;
}
.nav-mobile-bg .mobile-submenu li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  padding: 6px 0;
}
.nav-mobile-bg .mobile-submenu li a:hover {
  color: #ffffff;
}
/* ============ HERO SWIPER ============ */
.hero-swiper-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-deep);
  padding-top: var(--nav-height);
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
}
.slide-bg-pattern.slide-1 {
  background: radial-gradient(ellipse at 20% 30%, rgba(197, 165, 90, 0.22) 0%, transparent 55%), radial-gradient(ellipse at 75% 60%, rgba(197, 165, 90, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}
.slide-bg-pattern.slide-2 {
  background: radial-gradient(ellipse at 70% 25%, rgba(197, 165, 90, 0.2) 0%, transparent 55%), radial-gradient(ellipse at 25% 65%, rgba(197, 165, 90, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 40% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}
.slide-bg-pattern.slide-3 {
  background: radial-gradient(ellipse at 50% 20%, rgba(197, 165, 90, 0.24) 0%, transparent 55%), radial-gradient(ellipse at 30% 70%, rgba(197, 165, 90, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 60% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}
.slide-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.slide-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 28px;
  max-width: 1260px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(197, 165, 90, 0.45);
  border-radius: 24px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(197, 165, 90, 0.06);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% {
    border-color: rgba(197, 165, 90, 0.45);
  }
  50% {
    border-color: rgba(197, 165, 90, 0.75);
  }
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 20px;
}
.hero-title .gold {
  color: var(--gold-light);
  position: relative;
  display: inline-block;
}
.hero-title .gold::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  
  margin: 0 auto 36px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  border: none;
  white-space: nowrap;
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(197, 165, 90, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(197, 165, 90, 0.5);
  filter: brightness(1.08);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(197, 165, 90, 0.08);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 44px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat {
  text-align: center;
  transition: var(--transition);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
}
.swiper-button-prev, .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: rgba(197, 165, 90, 0.3);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}
.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 1.2rem;
  font-weight: bold;
}
.swiper-button-prev {
  left: 22px;
}
.swiper-button-next {
  right: 22px;
}
.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(197, 165, 90, 0.6);
  width: 30px;
  border-radius: 6px;
}
.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.6);
}
.swiper-pagination {
  bottom: 30px;
}
/* ============ 服务优势模块 ============ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.advantage-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  border: 1px solid #e8ecf1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-card);
}
.advantage-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-dark);
}
.advantage-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.advantage-card p {
  font-size: 0.9rem;
  color: #6a7078;
  line-height: 1.6;
}
/* ============ SECTIONS COMMON ============ */
.section {
  padding: 90px 28px;
  position: relative;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6a7078;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.section-dark {
  background: var(--bg-deep);
  color: var(--text-white);
}
.section-dark .section-title {
  color: #ffffff;
}
.section-dark .section-subtitle {
  color: var(--text-light);
}
.section-dark .section-label {
  color: var(--gold-light);
}
.section-gray {
  background: var(--bg-section);
}
/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius:10px;
  background: linear-gradient(145deg, #0f1d32 0%, #1a2d48 50%, #0f1d32 100%);
  padding: 15px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.about-visual-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-visual-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #0a1628;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(197, 165, 90, 0.3);
}
.about-visual-years {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.about-visual-sub {
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-body);
  letter-spacing: 0.02em;
}
.about-highlight-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 2px;
}
/* ============ GARAGE ============ */
.garage-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.garage-tab {
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
  border: 1px solid #dde2e8;
  color: var(--text-body);
  font-family: var(--font-body);
  white-space: nowrap;
  outline: none;
}
.garage-tab.active, .garage-tab:hover {
  background: var(--bg-deep);
  color: #ffffff;
  border-color: var(--bg-deep);
}
.garage-tab.active {
  background: var(--bg-deep);
  box-shadow: var(--shadow-md);
}
.garage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 核心：4等分列，一排4个 */
  gap: 30px;
}
.garage-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e8ecf1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.garage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-card);
}
.garage-card-visual {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.garage-card-visual.luxury {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.garage-card-visual.business {
  background: linear-gradient(135deg, #1a2436 0%, #1e3048 50%, #1a2436 100%);
}
.garage-card-visual.bus {
  background: linear-gradient(135deg, #1e2a38 0%, #243447 50%, #1e2a38 100%);
}
.garage-card-visual.newenergy {
  background: linear-gradient(135deg, #1a2e24 0%, #1e3a2f 50%, #1a2e24 100%);
}
.garage-card-visual-icon {
  font-size: 60px;
  opacity: 0.75;
  filter: grayscale(30%);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.garage-card:hover .garage-card-visual-icon {
  opacity: 0.9;
  transform: scale(1.08);
}
.garage-card-body {
  padding: 22px 20px 20px;
  flex-direction: column;
}
.garage-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 4px;
  align-self: flex-start;
}

/* 居中版金色渐变按钮 */
.center-cta {
  /* 核心样式：完全沿用你的 .nav-cta 风格 */
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff !important;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  box-shadow: 0 2px 12px rgba(197, 165, 90, 0.2);

  /* 新增：让按钮自身居中 + 块级化 */
  display: block;
  margin: 30px auto; /* 上下间距 + 水平居中 */
  text-align: center;
  width: fit-content; /* 宽度自适应文字，不会撑满整行 */
}

/* 悬停效果：和你原样式完全一样 */
.center-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 165, 90, 0.4);
  filter: brightness(1.1);
}
.garage-card-sub-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6a7078;
  background: #f0f2f5;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-left: 6px;
  align-self: flex-start;
  border: 1px solid #e0e4e8;
}
.garage-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-heading);
  letter-spacing: 0.02em;
  margin: 6px 0;
}
.garage-card-desc {
  font-size: 0.85rem;
  color: #6a7078;
  letter-spacing: 0.02em;
  line-height: 1.5;
  flex: 1;
}
.garage-card-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f2f5;
}
/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 桌面端：一排4个 */
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 165, 90, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: rgba(197, 165, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--gold-light);
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: rgba(197, 165, 90, 0.28);
  transform: scale(1.05);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.08rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.service-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-card-glow {
  opacity: 1;
}
/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}
.faq-item {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  border-color: #d0d5dd;
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 50px 18px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-heading);
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition);
  line-height: 1.4;
  outline: none;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 400;
  transition: var(--transition);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-pale);
}
.faq-item.open .faq-question::after {
  content: '−';
  background: var(--bg-deep);
  color: var(--gold-light);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 22px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: #5a6068;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-white);
}
.contact-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-light);
  transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon {
  background: rgba(197, 165, 90, 0.3);
  transform: scale(1.05);
}
.contact-info-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.contact-info-text span {
  font-size: 0.88rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form select {
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c5a55a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form select option {
  background: #1a2d48;
  color: #ffffff;
}
.contact-form button {
  align-self: flex-start;
  padding: 14px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  outline: none;
  box-shadow: 0 3px 14px rgba(197, 165, 90, 0.3);
}
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(197, 165, 90, 0.45);
  filter: brightness(1.08);
}
/* ============ FOOTER ============ */
.footer {
  background: #060f1c;
  padding: 40px 28px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.footer-text a {
  font-size: 0.82rem;
  color: var(--text-muted) !important;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.footer-text strong {
  color: var(--text-light);
  font-weight: 600;
}

/* ============ NAVIGATION ============ */

/* ============ CAR SELECTOR ============ */
.car-selector-wrap {
  background: #ffffff;
  border-bottom: 1px solid #e8ecf1;
  padding: 14px 0;

  
  z-index: 50;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.car-selector {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.car-selector::-webkit-scrollbar {
  display: none;
}
.car-selector .car-opt {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  background: #f5f6f8;
  border: 1px solid #e0e4e8;
  color: #5a6068;
  white-space: nowrap;
  font-family: var(--font-body);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.car-selector .car-opt:hover {
  background: #e8ecf1;
  color: #1a1a1a;
}
.car-selector .car-opt.active {
  background: var(--bg-deep);
  color: #ffffff;
  border-color: var(--bg-deep);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ============ MAIN CONTENT ============ */
.detail-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 40px;
  /* 移动端优先：单列布局 */
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

/* 桌面端布局 */
@media (min-width: 992px) {
  .detail-main {
    display: grid;
    grid-template-columns: 1fr 650px;
    gap: 36px;
  }
}

/* Swiper */
.detail-swiper-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--bg-deep);
  width: 100%;
  /* 固定比例，不拉伸 */
  aspect-ratio: 16 / 9;
  min-height: 240px;
}
.detail-swiper-wrap .swiper {
  width: 100%;
  height: 100%;
}
.detail-swiper-wrap .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.detail-swiper-wrap .swiper-slide .slide-emoji {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.detail-swiper-wrap .swiper-slide.swiper-slide-active .slide-emoji {
  transform: scale(1.05);
}
.detail-swiper-wrap .slide-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.detail-swiper-wrap .swiper-button-prev, 
.detail-swiper-wrap .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.detail-swiper-wrap .swiper-button-prev:hover, 
.detail-swiper-wrap .swiper-button-next:hover {
  background: rgba(197, 165, 90, 0.4);
  border-color: var(--gold-light);
}
.detail-swiper-wrap .swiper-button-prev:after, 
.detail-swiper-wrap .swiper-button-next:after {
  font-size: 1rem;
  font-weight: bold;
}
.detail-swiper-wrap .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.detail-swiper-wrap .swiper-pagination-bullet-active {
  background: var(--gold-light);
  width: 22px;
  border-radius: 4px;
}

/* Info panel */
.detail-info {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e8ecf1;
  width: 100%;
}
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.detail-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 5px 12px;
  border-radius: 12px;
}
.detail-sub-badge {
  font-size: 0.68rem;
  color: #6a7078;
  background: #f0f2f5;
  padding: 5px 12px;
  border-radius: 12px;
  border: 1px solid #e0e4e8;
}
.detail-info h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-heading);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.detail-info .car-tagline {
  font-size: 0.9rem;
  color: #6a7078;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f2f5;
}
.detail-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.detail-param {
  background: #f8f9fa;
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
}
.detail-param .val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-heading);
  line-height: 1;
}
.detail-param .lbl {
  font-size: 0.68rem;
  color: #7a8494;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.detail-scenes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.detail-scenes span {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.detail-info .btn-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  border: none;
  box-shadow: 0 3px 14px rgba(197, 165, 90, 0.3);
  -webkit-tap-highlight-color: transparent;
}
.detail-info .btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(197, 165, 90, 0.45);
  filter: brightness(1.06);
}
.detail-info .btn-outline-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: 26px;
  background: transparent;
  border: 2px solid #dde2e8;
  color: #4a5058;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  margin-top: 10px;
  -webkit-tap-highlight-color: transparent;
}
.detail-info .btn-outline-full:hover {
  border-color: var(--bg-deep);
  color: var(--text-heading);
  background: #f8f9fa;
}

/* ============ DETAIL DESCRIPTION SECTION ============ */
.detail-desc-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 50px;
}
.desc-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8ecf1;
}
.desc-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-heading);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
  display: inline-block;
}
.desc-card .desc-text {
  font-size: 0.93rem;
  color: #4a5058;
  line-height: 1.85;
  margin-bottom: 18px;
}
.desc-card .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.desc-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #3a3a3a;
  letter-spacing: 0.02em;
}
.desc-card .feature-list li::before {
  content: '✦';
  color: var(--gold-dark);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    
    .about-visual {
    min-height: 200px;

}
    
  .nav-links {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-cta-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-mobile-bg {
    display: flex;
  }
  .section {
    padding: 36px 15px !important;
  }
  .hero-swiper-wrap {
    height: auto;
    min-height: auto;
  }
  .swiper-slide {
    min-height: 100%;
  }
  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .hero-desc {
    font-size: 0.95rem;
  }
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 一行两个，平分宽度 */
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
}
  .hero-stat-num {
    font-size: 1.5rem;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .garage-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .garage-tabs {
    gap: 6px;
  }
  .garage-tab {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .contact-form {
    padding: 22px 16px;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 44px 16px 16px;
  }
  .btn {
    padding: 12px 22px;
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 38px;
    height: 38px;
  }
  .swiper-button-prev {
    left: 6px;
  }
  .swiper-button-next {
    right: 6px;
  }
  .swiper-pagination {
    bottom: 18px;
  }
    .detail-main {
    padding: 18px 16px 30px;
    gap: 20px;
  }
  .detail-swiper-wrap {
    aspect-ratio: 4/3;
    min-height: 220px;
    border-radius: var(--radius-lg);
  }
  .detail-swiper-wrap .swiper-slide .slide-emoji {
    font-size: 3.5rem;
  }
  .detail-info {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }
  .detail-info h1 {
    font-size: 1.35rem;
  }
  .car-selector {
    padding: 0 16px;    gap: 15px;
  }
  .car-selector .car-opt {
    padding: 10px 20px;
  }
  .detail-params {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .detail-desc-section {
    padding: 0 16px 30px;
  }
  .desc-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }
  .desc-card h3 {
    font-size: 1.05rem;
  }
  .desc-card .feature-list {
    grid-template-columns: 1fr;
  }
  .detail-swiper-wrap .swiper-button-prev, 
  .detail-swiper-wrap .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .detail-swiper-wrap .swiper-button-prev:after, 
  .detail-swiper-wrap .swiper-button-next:after {
    font-size: 0.8rem;
  }
}

/* 分页 - 统一高端金色渐变风格 */
/*分页*/
/*分页*/
.pager {text-align: center; margin: 20px 0;}
.pager ul {display: flex; flex-wrap: wrap; justify-content: center}
.pager ul li {display: inline-block;}
.pager ul li a {padding: 5px 15px; border: #dddddd solid 1px; margin-left: -1px; display: inline-block;}
.pager ul li a:hover {border-color: var(--gold); background-color: var(--gold); color: #FFF}
.pager ul .active a {border: var(--gold-dark) solid 1px; display: inline-block; background-color: var(--gold-dark); color: #fff;}
