/* ═══════════════════════════════════════════════════════════
   瀚银国际 · 汽车出口网站  主样式
   配色（文档 §8）：主色·深蓝 #0F2B46(~60%) / 强调·金 #C9A24B(~10%)
                    / 辅助·银灰 #C4C9CF(~30%)
   ═══════════════════════════════════════════════════════════ */
:root {
  --color-primary: #0F2B46;   /* 深蓝：导航、页面背景、大标题 */
  --color-accent:  #C9A24B;   /* 金：按钮、CTA、重要数据高亮 */
  --color-silver:  #C4C9CF;   /* 银灰：卡片背景、分割线 */
  --color-bg:      #ffffff;
  --color-text:    #1a1a1a;
  --color-text-inv:#ffffff;
  --radius: 8px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
               "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 1000;
  color: var(--color-text-inv); pointer-events: none;
}
.header-inner {
  position: relative; display: flex; align-items: center; gap: 24px;
  min-height: 58px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px;
  background: rgba(5, 25, 43, .65); box-shadow: 0 12px 38px rgba(0,0,0,.16);
  backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
}
.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--color-text-inv); font-weight: 700; font-size: 1.15rem; }
.brand-logo { width: 33px; height: 33px; object-fit: contain; }
.brand-wordmark { display: grid; gap: 1px; line-height: 1; }.brand-wordmark strong { font-size: 1rem; }.brand-wordmark small { color: rgba(226,237,243,.62); font-size: .58rem; font-weight: 400; letter-spacing: .04em; }
.brand:hover { color: var(--color-accent); }
.main-nav { display: flex; gap: 20px; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.main-nav a { color: var(--color-text-inv); }
.main-nav a:hover { color: var(--color-accent); }
.customer-session { color: var(--color-silver); font-size: .85rem; }
.customer-logout-nav, .customer-logout { color: #fff; border: 1px solid var(--color-accent); border-radius: 6px; padding: 5px 10px; }
.customer-logout-nav:hover, .customer-logout:hover { background: var(--color-accent); color: var(--color-primary); }
.lang-switch { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.lang-switch a, .lang-switch .lang-current {
  color: var(--color-text-inv); font-size: .85rem; padding: 2px 6px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 4px;
}
.lang-switch .lang-current { color: var(--color-accent); border-color: var(--color-accent); background: transparent; }
.site-main { padding-top: 86px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--color-primary), #123a5e);
  color: var(--color-text-inv);
  padding: 72px 0;
}
.hero h1 { font-size: 2rem; margin: 0 0 12px; }
.hero-sub { color: var(--color-silver); font-size: 1.1rem; }

/* ── Entry cards ──────────────────────────────────────────── */
.entries { padding: 48px 20px; }
.entry-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.entry-card {
  background: var(--color-silver);
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
}
.entry-card h3 { margin: 0; color: var(--color-primary); }

/* ── CTA / buttons ────────────────────────────────────────── */
.btn { display: inline-block; padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; border: none; }
.btn-cta { background: var(--color-accent); color: var(--color-primary); }
.btn-cta:hover { filter: brightness(1.05); color: var(--color-primary); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary); color: var(--color-silver);
  padding: 28px 0; margin-top: 0;
}

/* ── 三通道悬浮咨询组件 ───────────────────────────────────── */
.contact-widget {
  position: fixed; right: 16px; bottom: 16px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px;
}
.cw-item {
  position: relative;
  background: var(--color-accent); color: var(--color-primary);
  padding: 10px 14px; border-radius: 24px; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.25); text-align: center;
}
.cw-item:hover { color: var(--color-primary); filter: brightness(1.05); }
.cw-wechat { cursor: pointer; }
.cw-qr-popup {
  display: none; position: absolute; right: 0; bottom: 110%;
  background: #fff; padding: 8px; border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.cw-qr-popup img { width: 140px; height: 140px; display: block; }
.cw-wechat:hover .cw-qr-popup { display: block; }

/* ── 响应式 ───────────────────────────────────────────────── */
@media (max-width: 720px) {
  .site-header { top: 8px; }
  .header-inner { gap: 10px; min-height: 50px; border-radius: 13px; }
  .brand { font-size: 1rem; }
  .main-nav { display: none; }
  .customer-session { margin-left: 0; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 1.5rem; }
  .site-main { padding-top: 70px; }
}

/* 卡片网格（列表/首页） */
.listing-section { padding: 32px 20px; }
.card-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  display: block; background: #fff; border: 1px solid var(--color-silver);
  border-radius: var(--radius); overflow: hidden; color: var(--color-text);
}
.card:hover { box-shadow: 0 4px 16px rgba(15,43,70,.12); }
.card-img { aspect-ratio: 4/3; background: var(--color-silver); }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); font-weight: 700; font-size: 1.1rem;
}
.card-img-placeholder.large { min-height: 320px; }
.card-body { padding: 14px 16px; }
.card-body h3 { margin: 0 0 6px; font-size: 1rem; color: var(--color-primary); }
.card-meta { margin: 0; color: #667; font-size: .85rem; }

/* 过滤条 */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.filter-bar a {
  padding: 6px 14px; border: 1px solid var(--color-silver); border-radius: 20px;
  font-size: .85rem;
}
.filter-bar a.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* 面包屑 */
.breadcrumb { padding: 12px 20px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; font-size: .85rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: #99a; }

/* 详情页 */
.detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; padding: 24px 20px; }
.detail-gallery img { width: 100%; border-radius: var(--radius); margin-bottom: 12px; }
.detail-info h1 { color: var(--color-primary); margin-top: 0; }
.spec-list { list-style: none; padding: 0; margin: 16px 0; }
.spec-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--color-silver); }
.spec-list span { color: #667; }
.detail-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.detail-body { grid-column: 1 / -1; }
.btn-outline { background: transparent; border: 1px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
@media (max-width: 720px) { .detail { grid-template-columns: 1fr; } }

/* 表单 */
.form-narrow { max-width: 560px; padding: 32px 20px; }
.stack-form label { display: block; margin-bottom: 14px; font-weight: 600; }
.stack-form input, .stack-form select, .stack-form textarea {
  width: 100%; padding: 10px; margin-top: 6px; border: 1px solid var(--color-silver);
  border-radius: 6px; font: inherit; font-weight: 400;
}
.form-note { color: #667; }
.form-error { color: #b00020; background: #fde; padding: 10px 14px; border-radius: 6px; }
/* 蜜罐字段：视觉隐藏但不用 display:none（部分 bot 会跳过 none）*/
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.inline-form { display: flex; gap: 10px; margin: 16px 0 24px; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 200px; padding: 10px; border: 1px solid var(--color-silver); border-radius: 6px; }

/* 博客/内容列表 */
.post-list { list-style: none; padding: 0; }
.post-list li { padding: 12px 0; border-bottom: 1px solid var(--color-silver); display: flex; justify-content: space-between; gap: 12px; }
.post-date { color: #99a; font-size: .85rem; }
.content-page { max-width: 800px; padding: 24px 20px; }

/* ── 关于我们：Product Design 选定的港口 / 全球网络叙事 ─────── */
.about-page { overflow: hidden; color: #edf3f6; background: #041a2c; }.about-hero { min-height: 690px; display: flex; align-items: center; background: #041a2c url("../img/about/about-hero-port-network.png") center / cover no-repeat; }.about-hero-inner { width: min(1320px, calc(100% - 64px)); padding: 142px 0 76px; }.about-eyebrow { margin: 0 0 18px; color: #edc35d; font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }.about-hero h1 { max-width: 610px; margin: 0; color: #fff; font-size: clamp(3rem, 5vw, 5.2rem); line-height: 1.02; letter-spacing: -.045em; }.about-intro { max-width: 630px; margin: 24px 0 0; color: rgba(238,245,248,.83); font-size: 1.06rem; line-height: 1.9; }.about-promises { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 720px; gap: 26px; margin-top: 36px; }.about-promises article { padding-top: 14px; border-top: 1px solid rgba(234,241,245,.28); }.about-promises p { margin: 0 0 9px; color: #f0c667; font-size: .92rem; font-weight: 700; }.about-promises span { display: block; color: rgba(234,241,245,.67); font-size: .81rem; line-height: 1.65; }.about-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }.about-actions .btn { min-width: 172px; padding: 13px 22px; border-radius: 4px; text-align: center; }.about-outline-btn { color: #fff; border: 1px solid rgba(234,241,245,.5); background: rgba(4,26,44,.25); }.about-outline-btn:hover { color: #082238; border-color: #edc35d; background: #edc35d; }.about-network { padding: 74px 0 92px; background: #061d31; }.about-network-heading { width: min(1320px, calc(100% - 64px)); }.about-network-heading h2 { max-width: 600px; margin: 0; color: #fff; font-size: clamp(2.05rem, 3vw, 3.25rem); line-height: 1.12; letter-spacing: -.035em; }.about-network-heading > p:last-child { max-width: 530px; margin: 18px 0 30px; color: rgba(236,244,247,.7); line-height: 1.75; }.about-map-wrap { position: relative; width: min(1320px, calc(100% - 64px)); overflow: hidden; border: 1px solid rgba(228,239,245,.12); }.about-map-wrap > img { display: block; width: 100%; min-height: 280px; object-fit: cover; }.about-map-label { position: absolute; color: #fff; font-size: .92rem; font-weight: 700; text-shadow: 0 2px 10px #041a2c; }.about-map-russia { top: 31%; left: 68%; }.about-map-belarus { top: 43%; left: 54%; }.about-map-africa { top: 73%; left: 54%; }.about-extra { width: min(960px, calc(100% - 64px)); padding: 72px 0; }.about-extra-body { color: rgba(237,243,246,.78); line-height: 1.8; }.about-extra-body > :first-child { margin-top: 0; }.about-extra-body h2, .about-extra-body h3 { color: #fff; }
.about-promises article { display: flex; align-items: flex-start; gap: 14px; padding-top: 0; border-top: 0; }.about-promises article > svg { flex: 0 0 34px; width: 34px; height: 34px; margin-top: 1px; fill: none; stroke: #edc35d; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }.about-promises article > div { min-width: 0; }
@media (max-width: 820px) { .about-hero { min-height: auto; }.about-hero-inner { width: calc(100% - 40px); padding: 126px 0 58px; }.about-hero h1 { max-width: 480px; }.about-promises { gap: 16px; }.about-network-heading, .about-map-wrap { width: calc(100% - 40px); }.about-map-wrap > img { min-height: 230px; }.about-map-russia { left: 68%; }.about-map-belarus { left: 51%; }.about-map-africa { left: 48%; } }
@media (max-width: 560px) { .about-hero { background-position: 59% center; }.about-hero-inner { width: calc(100% - 32px); padding-top: 108px; }.about-hero h1 { font-size: 2.75rem; }.about-intro { font-size: .95rem; line-height: 1.8; }.about-promises { grid-template-columns: 1fr; gap: 13px; margin-top: 27px; }.about-promises article { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding-top: 11px; }.about-promises p { margin: 0; }.about-actions { display: grid; grid-template-columns: 1fr; margin-top: 27px; }.about-actions .btn { width: 100%; }.about-network { padding: 55px 0 64px; }.about-network-heading, .about-map-wrap, .about-extra { width: calc(100% - 32px); }.about-network-heading h2 { font-size: 2.15rem; }.about-map-wrap > img { min-height: 180px; }.about-map-label { font-size: .66rem; }.about-map-russia { top: 27%; left: 68%; }.about-map-belarus { top: 43%; left: 49%; }.about-map-africa { top: 72%; left: 47%; } }

/* 车辆状态面板（7 维度并列） */
.track-header { display: flex; justify-content: space-between; align-items: baseline; }
.status-panel { background: #fff; border: 1px solid var(--color-silver); border-radius: var(--radius); padding: 20px; margin: 20px 0; }
.status-panel h2 { color: var(--color-primary); margin: 0 0 6px; }
.vehicle-ids { color: #667; font-size: .9rem; display: flex; gap: 18px; flex-wrap: wrap; }
.dim-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); margin-top: 16px; }
.dim-card { border: 1px solid var(--color-silver); border-radius: 6px; padding: 14px; }
.dim-label { font-size: .8rem; color: #667; margin-bottom: 6px; }
.dim-value { font-weight: 700; color: var(--color-primary); }
.dim-value.is-empty { color: #aab; font-weight: 400; }
.dim-note { font-size: .85rem; color: #556; margin-top: 6px; }
.dim-time { font-size: .75rem; color: #99a; margin-top: 6px; }
.link-muted { color: var(--color-silver); font-size: .9rem; }
.empty { color: #99a; padding: 32px 0; }

/* ── 首页：五屏沉浸式叙事 ────────────────────────────────── */
.home-story { margin-top: -86px; overflow: clip; background: #061c30; color: #fff; }
.home-panel { position: relative; min-height: 100svh; display: grid; align-items: center; isolation: isolate; overflow: hidden; }
.home-panel-inner { width: min(1240px, calc(100% - 80px)); margin: 0 auto; position: relative; z-index: 2; }
.home-hero { min-height: 100svh; background: #071e33; }
.home-hero-backdrop { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(90deg, rgba(4,22,39,.96) 0%, rgba(4,22,39,.7) 40%, rgba(4,22,39,.08) 75%), linear-gradient(0deg, rgba(3,17,30,.58), transparent 45%), var(--hero-image, radial-gradient(circle at 70% 45%, #526b7d 0 12%, transparent 31%), linear-gradient(120deg, #102d49, #061927)); background-position: center; background-size: cover; }
.home-hero-video { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; animation: hero-fade-in 1.2s ease both; }
.home-hero::after { content: none; }
.home-hero-inner { padding: 160px 0 100px; max-width: 1240px; }
.eyebrow { margin: 0 0 16px; color: #e6bf67; font-size: .72rem; letter-spacing: .16em; font-weight: 700; }
.home-hero h1 { width: min(640px, 68vw); margin: 0; font-size: clamp(2.7rem, 5.8vw, 5.7rem); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
.home-hero .hero-sub { width: min(470px, 80vw); margin: 24px 0 32px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.45vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { border-radius: 999px; padding: 11px 20px; transition: transform .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.65); background: rgba(7,29,48,.18); }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.15); }
.scroll-cue { position: absolute; bottom: 38px; left: 50%; width: 30px; height: 52px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.6); border-radius: 20px; }
.scroll-cue span { display: block; width: 5px; height: 9px; border-radius: 4px; margin: 9px auto; background: var(--color-accent); animation: scroll-cue 1.65s infinite; }
.home-panel-count { position: absolute; right: max(22px, 5vw); top: 45%; display: grid; gap: 8px; color: #e4b750; font-size: 1.15rem; font-weight: 700; letter-spacing: .08em; }
.home-panel-count i { display: block; width: 1px; height: 58px; margin-left: 12px; background: linear-gradient(var(--color-accent), transparent); }

.home-vehicles { background: radial-gradient(circle at 76% 40%, #163d59, transparent 36%), #061d31; }
.home-used { background: radial-gradient(circle at 30% 54%, #274456, transparent 40%), #0a2131; }
.home-vehicles::before, .home-parts::before, .home-network::before, .home-process::before, .home-videos::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .24; background: url("../img/home/home-section-pattern.webp") center / 900px 900px repeat; }
.home-used::before, .home-network::before, .home-videos::before { background-position: 34% 22%; }
.home-vehicles .home-panel-inner { display: grid; grid-template-columns: .72fr 1.7fr; gap: 48px; align-items: center; }
.section-intro h2 { margin: 0; color: #fff; font-size: clamp(2.1rem, 4vw, 4.5rem); line-height: 1.05; letter-spacing: -.045em; }
.section-intro > p:not(.eyebrow) { max-width: 360px; color: rgba(231,239,244,.7); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #e8c265; font-weight: 700; }
.text-link:hover { color: #fff; }
.text-link span { font-size: 1.25rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.feature-rail { display: grid; grid-template-columns: repeat(2, minmax(290px, 1fr)); align-items: stretch; gap: 16px; }
.feature-vehicle { min-width: 0; display: grid; grid-template-columns: minmax(145px, 1.18fr) minmax(132px, .82fr); color: #fff; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.feature-vehicle.is-featured { border-color: rgba(211,172,82,.8); box-shadow: 0 18px 42px rgba(0,0,0,.24); }
.feature-vehicle:hover { color: #fff; transform: translateY(-10px); border-color: #d9b663; }
.feature-vehicle-image { min-height: 154px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #426579, #112d43); }
.feature-vehicle-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.feature-vehicle:hover img { transform: scale(1.06); }
.feature-vehicle-copy { display: grid; align-content: center; padding: 16px 13px; }
.feature-vehicle-copy small { color: #dcb85e; text-transform: uppercase; letter-spacing: .08em; }
.feature-vehicle-copy h3 { margin: 4px 0; font-size: .98rem; line-height: 1.28; }
.feature-vehicle-copy p { margin: 0; color: rgba(255,255,255,.58); font-size: .8rem; }
.home-empty { padding: 42px; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; }

.home-parts { background: radial-gradient(circle at 50% 52%, rgba(22,56,79,.45), transparent 48%), #061827; }
.home-parts-inner { display: grid; grid-template-columns: .74fr 1.75fr; gap: 56px; align-items: center; }
.parts-mosaic { display: grid; grid-template: repeat(2, minmax(176px, 1fr)) / 1.34fr 1fr 1.03fr; gap: 7px; min-height: 460px; box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.parts-tile { position: relative; overflow: hidden; display: grid; align-content: end; padding: 16px; min-height: 0; color: #fff; background: #123046; }
.parts-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,15,25,.92), rgba(3,15,25,.1) 68%); pointer-events: none; }
.parts-tile > * { position: relative; z-index: 1; }.parts-tile img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.parts-tile:hover { color: #fff; }.parts-tile:hover img { transform: scale(1.08); filter: saturate(1.05) contrast(1.08); }.parts-tile span { font-size: .61rem; letter-spacing: .15em; color: #ebc66d; }.parts-tile strong { margin-top: 5px; font-size: .94rem; }
.parts-tile-1 { grid-area: 1 / 1 / 3 / 2; }.parts-tile-2 { grid-area: 1 / 2 / 2 / 4; }.parts-tile-3 { grid-area: 2 / 2 / 3 / 3; }.parts-tile-4 { grid-area: 2 / 3 / 3 / 4; }

.home-network { background: radial-gradient(ellipse at 56% 50%, #13334c, transparent 57%), #041a2c; }
.network-inner { display: grid; grid-template-columns: .68fr 1.5fr; gap: 44px; align-items: center; }
.network-disclaimer { font-size: .8rem; color: rgba(232,194,101,.78) !important; }
.network-map { position: relative; min-height: 540px; border: 1px solid rgba(226,187,93,.48); border-radius: 16px; overflow: hidden; background: radial-gradient(circle at 58% 45%, rgba(207,164,72,.25), transparent 28%), #041728; box-shadow: inset 0 0 80px rgba(0,0,0,.48), 0 24px 70px rgba(0,0,0,.28), 0 0 0 7px rgba(255,255,255,.025); }
.network-map::before, .network-map::after { content: ""; position: absolute; z-index: 3; width: 38px; height: 38px; pointer-events: none; }.network-map::before { left: 15px; top: 15px; border-left: 2px solid #e7bd59; border-top: 2px solid #e7bd59; }.network-map::after { right: 15px; bottom: 15px; border-right: 2px solid #e7bd59; border-bottom: 2px solid #e7bd59; }
.network-map-chrome { position: absolute; z-index: 4; left: 22px; right: 22px; top: 18px; display: flex; justify-content: space-between; color: rgba(226,237,243,.56); font: 700 .6rem/1 monospace; letter-spacing: .15em; }.network-map-chrome span:nth-child(2) { color: #e7bd59; }
.world-map { position: absolute; inset: 7% 0 1%; z-index: 0; width: 100%; height: 91%; object-fit: contain; opacity: .28; filter: invert(1) sepia(.22) saturate(.65) hue-rotate(151deg) brightness(.88); transition: transform .72s cubic-bezier(.2,.8,.2,1), opacity .4s ease; }
.map-route { position: absolute; z-index: 1; display: block; height: 120px; border-top: 2px dashed rgba(226,180,71,.72); border-radius: 50%; filter: drop-shadow(0 0 5px rgba(238,193,83,.8)); transform-origin: left center; animation: route-flow 5s linear infinite; transition: opacity .3s ease, transform .5s ease; }
.map-route-cn-ru { width: 29%; left: 50%; top: 28%; transform: rotate(-17deg); }.map-route-cn-by { width: 18%; left: 46%; top: 34%; transform: rotate(142deg); }.map-route-cn-za { width: 36%; left: 51%; top: 37%; transform: rotate(77deg); }.map-route-russia { width: 22%; left: 61%; top: 27%; transform: rotate(15deg); opacity: .72; animation-direction: reverse; }
.network-radar { position: absolute; z-index: 1; left: 44%; top: 27%; width: 130px; height: 130px; border: 1px solid rgba(226,188,92,.25); border-radius: 50%; transform: translate(-50%, -50%); transition: opacity .25s ease; }.network-radar i { position: absolute; inset: 14px; border: 1px solid rgba(226,188,92,.18); border-radius: 50%; }.network-radar i:nth-child(2) { inset: 34px; }.network-radar i:nth-child(3) { inset: 0; border-color: transparent; border-top-color: rgba(239,196,95,.8); animation: radar-spin 4s linear infinite; }
.network-telemetry { position: absolute; z-index: 4; left: 22px; bottom: 23px; display: grid; gap: 3px; padding: 11px 13px; min-width: 138px; border-left: 2px solid #e6bd59; background: rgba(4,25,43,.7); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; transition: opacity .25s ease; }.network-telemetry span, .network-telemetry small { color: rgba(232,240,244,.6); font-size: .59rem; letter-spacing: .1em; }.network-telemetry strong { color: #e8c366; font-size: .78rem; }
.map-node { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 7px; border: 0; color: #fff; background: transparent; font: inherit; font-size: .82rem; cursor: pointer; transition: opacity .25s ease; }
.map-node span { width: 12px; height: 12px; border-radius: 50%; background: #efc662; box-shadow: 0 0 0 5px rgba(239,198,98,.15), 0 0 22px #eac15c; transition: transform .25s ease; }
.map-node:hover span, .map-node[aria-pressed="true"] span { transform: scale(1.45); }
.node-russia { top: 27%; left: 64%; }.node-belarus { top: 39%; left: 55%; }.node-south-africa { top: 72%; left: 57%; }
.russia-detail-view { position: absolute; inset: 54px 22px 22px; z-index: 5; overflow: hidden; opacity: 0; pointer-events: none; transform: scale(.93); background: radial-gradient(circle at 77% 54%, rgba(232,192,87,.19), transparent 22%), linear-gradient(135deg, rgba(5,27,46,.98), rgba(3,18,31,.98)); transition: opacity .4s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.russia-detail-view::before { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(227,190,94,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(227,190,94,.07) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(90deg, #000 15%, transparent 96%); }
.russia-detail-map { position: absolute; z-index: 0; inset: 5% 5% 4%; width: 90%; height: 91%; object-fit: contain; opacity: .58; filter: invert(1) sepia(.33) saturate(.75) hue-rotate(151deg) brightness(.88); transform: scale(.96); transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .4s ease; }
.russia-detail-heading { position: absolute; z-index: 2; left: 22px; top: 18px; display: grid; gap: 4px; }.russia-detail-heading span { color: rgba(235,240,244,.58); font: 700 .57rem/1 ui-monospace, Consolas, monospace; letter-spacing: .14em; }.russia-detail-heading strong { color: #f0c75f; font-size: 1rem; }
.detail-city { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: .75rem; font-weight: 700; text-shadow: 0 1px 7px #031321; }.detail-city::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #f1c75d; box-shadow: 0 0 0 6px rgba(241,199,93,.14), 0 0 16px rgba(241,199,93,.95); }.detail-city-moscow { left: 22%; top: 45%; }.detail-city-blag { left: 70%; top: 49%; }.detail-city-uss { left: 81%; top: 64%; }.detail-city-vlad { left: 83%; top: 72%; }
.map-credit { position: absolute; z-index: 4; left: 17px; bottom: 15px; color: rgba(229,236,240,.58); font-size: .57rem; }.map-credit:hover { color: #f0c75f; }
.map-return { position: absolute; z-index: 4; right: 17px; bottom: 15px; padding: 7px 10px; border: 1px solid rgba(231,191,91,.55); color: #f4cf70; background: rgba(2,18,31,.72); font: 700 .62rem/1 ui-monospace, Consolas, monospace; letter-spacing: .06em; cursor: pointer; }
.network-map[data-region="russia"] .world-map { transform: scale(1.65) translate(-13%, 8%); opacity: 0; }.network-map[data-region="russia"] .map-route, .network-map[data-region="russia"] .network-radar, .network-map[data-region="russia"] .network-telemetry, .network-map[data-region="russia"] .map-node { opacity: 0; pointer-events: none; }.network-map[data-region="russia"] .russia-detail-view { opacity: 1; pointer-events: auto; transform: none; }.network-map[data-region="russia"] .russia-detail-map { transform: scale(1); opacity: .72; }.network-map[data-region="belarus"] .world-map { transform: scale(1.15) translate(10%, 12%); opacity: .4; }.network-map[data-region="south-africa"] .world-map { transform: scale(1.12) translate(-7%, -11%); opacity: .4; }

.home-process { min-height: 100svh; background: linear-gradient(90deg, rgba(3,19,34,.98), rgba(3,21,37,.78)), var(--process-image, linear-gradient(140deg, #082039, #0c2d46)); background-position: center; background-size: cover; }
.home-process::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(3,17,30,.75), transparent 46%); }.home-process .home-panel-inner { display: grid; gap: 31px; padding: 105px 0 46px; }
.process-line { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; list-style: none; padding: 32px 0 0; margin: 0; }.process-line li { position: relative; min-width: 0; padding-top: 31px; border-top: 2px solid rgba(229,190,91,.84); }.process-line li:not(:last-child)::after { content: ""; position: absolute; top: -6px; right: -7px; width: 10px; height: 10px; border: 2px solid #e5be5b; border-radius: 50%; background: #09243a; }.process-line b { position: absolute; top: -23px; left: 0; display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid #e5be5b; border-radius: 50%; color: #e7bf5a; background: #082039; font-size: .54rem; }.process-line span { display: block; min-height: 35px; color: #fff; font-weight: 700; font-size: .87rem; }.process-image { position: relative; height: 130px; margin-top: 10px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.08); }.process-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,23,40,.4), transparent); }.process-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.05); transition: transform .5s ease; }.process-line li:hover img { transform: scale(1.08); }
.process-benefits { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(221,181,80,.38); border-radius: 5px; background: rgba(4,24,41,.72); }.process-benefits > div { display: flex; gap: 10px; align-items: center; padding: 13px 15px; border-right: 1px solid rgba(221,181,80,.25); }.process-benefits > div:last-child { border-right: 0; }.process-benefits b { color: #e9bf5c; font: 700 .72rem/1 ui-monospace, Consolas, monospace; }.process-benefits span { display: grid; gap: 3px; }.process-benefits strong { color: #fff; font-size: .74rem; }.process-benefits small { color: rgba(231,239,244,.57); font-size: .61rem; }.process-bottom { display: flex; align-items: center; justify-content: center; gap: 28px; }.process-bottom .btn { background: #d1a53e; color: #fff; }.process-bottom .btn span { margin-left: 13px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: none; }.feature-rail.reveal { transition-delay: .12s; }.parts-mosaic.reveal, .network-map.reveal { transition-delay: .12s; }
@keyframes scroll-cue { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: .1; } }@keyframes route-flow { to { stroke-dashoffset: -96; } }@keyframes radar-spin { to { transform: rotate(360deg); } }@keyframes node-pulse { 0%, 100% { stroke-width: 5; opacity: 1; } 50% { stroke-width: 17; opacity: .35; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; } }
@media (max-width: 960px) { .home-panel-inner { width: min(100% - 40px, 760px); }.home-vehicles .home-panel-inner, .home-parts-inner, .network-inner { grid-template-columns: 1fr; gap: 28px; padding: 110px 0 64px; }.home-panel { min-height: auto; }.home-hero { min-height: 100svh; }.feature-rail { grid-template-columns: repeat(2, minmax(140px, 1fr)); max-width: 680px; }.feature-vehicle, .feature-vehicle.is-featured { transform: none; }.parts-mosaic { min-height: 360px; }.network-map { min-height: 450px; }.home-process .home-panel-inner { padding: 100px 0 60px; gap: 45px; }.process-line { grid-template-columns: repeat(3, 1fr); row-gap: 46px; }.process-line li:nth-child(3)::after { display: none; }.process-benefits { grid-template-columns: repeat(3, 1fr); }.process-benefits > div:nth-child(3) { border-right: 0; } }
@media (max-width: 560px) { .home-story { margin-top: -70px; }.home-panel-inner { width: calc(100% - 32px); }.home-hero-inner { padding: 125px 0 74px; }.home-hero h1 { width: 100%; font-size: clamp(2.45rem, 12vw, 3.7rem); }.home-panel-count { display: none; }.section-intro h2 { font-size: 2.5rem; }.home-vehicles .home-panel-inner, .home-parts-inner, .network-inner { padding: 86px 0 52px; }.feature-rail { grid-template-columns: 1fr; gap: 10px; }.feature-vehicle { grid-template-columns: 1.18fr .82fr; }.feature-vehicle-image { min-height: 135px; }.feature-vehicle-copy { padding: 10px; }.feature-vehicle-copy h3 { font-size: .84rem; }.feature-vehicle-copy p { font-size: .72rem; }.parts-mosaic { min-height: 330px; gap: 7px; }.parts-tile { padding: 10px; }.parts-tile strong { font-size: .78rem; }.network-map { min-height: 400px; }.network-telemetry { left: 12px; bottom: 12px; }.network-map-chrome { left: 14px; right: 14px; }.network-map-chrome span:nth-child(2) { display: none; }.node-russia { top: 27%; left: 55%; }.node-belarus { top: 37%; left: 45%; }.node-south-africa { top: 75%; left: 58%; }.russia-detail-view { inset: 48px 12px 12px; }.russia-detail-heading { left: 14px; top: 14px; }.detail-city { font-size: .61rem; }.detail-city::before { width: 6px; height: 6px; }.detail-city-moscow { left: 17%; top: 44%; }.detail-city-blag { left: 63%; top: 49%; }.detail-city-uss { left: 73%; top: 63%; }.detail-city-vlad { left: 74%; top: 71%; }.map-credit { left: 8px; bottom: 9px; font-size: .5rem; }.map-return { right: 8px; bottom: 8px; font-size: .54rem; }.process-line { grid-template-columns: repeat(2, 1fr); gap: 42px 13px; }.process-line li:nth-child(3)::after { display: block; }.process-line li:nth-child(2)::after, .process-line li:nth-child(4)::after { display: none; }.process-image { height: 105px; }.process-benefits { grid-template-columns: 1fr; }.process-benefits > div { border-right: 0; border-bottom: 1px solid rgba(221,181,80,.25); }.process-benefits > div:last-child { border-bottom: 0; }.process-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }.scroll-cue { bottom: 20px; } }

/* ── 导航、页脚与首页新增屏幕 ────────────────────────────── */
.nav-dropdown { position: relative; }.nav-dropdown button { border: 0; padding: 0; color: #fff; background: transparent; font: inherit; cursor: pointer; }.nav-dropdown button:hover { color: var(--color-accent); }.nav-dropdown-menu { position: absolute; top: calc(100% + 13px); left: 50%; display: grid; min-width: 132px; padding: 9px; gap: 4px; opacity: 0; visibility: hidden; transform: translate(-50%, -7px); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(5,25,43,.96); transition: .2s ease; }.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }.nav-dropdown-menu a { padding: 5px 7px; border-radius: 5px; }.nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); }.header-contact { display: flex; gap: 7px; margin-left: auto; }.header-contact a, .header-contact button { display: grid; place-items: center; width: 25px; height: 25px; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }.header-contact img { width: 18px; height: 18px; }.header-contact a:hover, .header-contact button:hover { background: rgba(255,255,255,.14); }.lang-switch { margin-left: 0; }
.home-videos { background: radial-gradient(circle at 79% 35%, rgba(54,100,126,.42), transparent 34%), #061b2c; }.home-videos .home-panel-inner { display: grid; grid-template-columns: .62fr 1.7fr; align-items: center; gap: 50px; }.home-video-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }.home-video-rail a { display: grid; min-height: 230px; align-content: end; overflow: hidden; padding: 17px; color: #fff; border: 1px solid rgba(255,255,255,.16); background: #14334b; position: relative; }.home-video-rail a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,30,.92), transparent 65%); }.home-video-rail img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }.home-video-rail a:hover img { transform: scale(1.06); }.home-video-rail span, .home-video-rail strong { position: relative; z-index: 1; }.home-video-rail span { color: #e5bd58; font-size: .64rem; letter-spacing: .12em; }.home-video-rail strong { margin-top: 6px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 36px; padding: 56px 20px 36px; }.footer-brand { color: #fff; font-size: 1.1rem; }.site-footer h2 { margin: 0 0 10px; color: #e4bd5d; font-size: .76rem; letter-spacing: .1em; }.site-footer h2 a { display: inline; margin: 0; color: inherit; font-size: inherit; letter-spacing: inherit; }.site-footer p { margin: 7px 0; font-size: .86rem; }.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); font-size: .86rem; }.site-footer a:hover { color: #e4bd5d; }.footer-bottom { display: flex; gap: 18px; flex-wrap: wrap; padding: 15px 20px 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }.cw-item { display: flex; align-items: center; justify-content: center; gap: 7px; }.cw-item img { width: 18px; height: 18px; }.cw-qr-popup.is-open { display: block; }
.home-feature-fields { margin: 12px 0; padding: 12px; border: 1px solid var(--s); border-radius: 6px; }.home-feature-fields label { margin-bottom: 8px; }.home-feature-fields input[type="checkbox"], .home-feature-fields input[type="radio"] { width: auto; margin-right: 6px; }.home-feature-fields span { display: block; margin: 8px 0 4px; font-size: .85rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }.video-card { overflow: hidden; border: 1px solid var(--color-silver); border-radius: 10px; background: #fff; }.video-card > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }.video-card > div { padding: 18px; }.video-card h2 { margin: 5px 0; font-size: 1.15rem; }.video-card small { color: #9c7422; letter-spacing: .1em; }.page-eyebrow { color: #9d7623; }.page-intro { max-width: 520px; color: #667; }
@keyframes hero-fade-in { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: none; } }
@media (max-width: 960px) { .home-videos .home-panel-inner { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: repeat(2, 1fr); }.main-nav { gap: 13px; font-size: .87rem; } }
@media (max-width: 720px) { .header-contact { margin-left: auto; }.header-contact a, .header-contact button { width: 23px; height: 23px; }.footer-grid { grid-template-columns: 1fr; gap: 20px; }.home-video-rail { grid-template-columns: 1fr; }.home-video-rail a { min-height: 190px; } }
@media (max-width: 560px) { .contact-widget { right: 8px; bottom: 8px; flex-direction: row; gap: 7px; }.contact-widget .cw-item { width: 42px; height: 42px; padding: 0; border-radius: 50%; }.contact-widget .cw-label { display: none; } }

/* ── 车辆展示：Product Design 目录页与详情页 ─────────────── */
.vehicle-catalog, .vehicle-detail-page { margin-top: -86px; background: #041a2c; color: #f4f7f8; min-height: 100vh; }
.vehicle-catalog { min-height: 0; padding: 0 0 62px; }.vehicle-catalog-hero { position: relative; min-height: 330px; overflow: hidden; display: grid; align-items: start; background-color: #061d31; background-image: linear-gradient(90deg, rgba(3,19,34,.97) 0%, rgba(3,19,34,.8) 42%, rgba(3,19,34,.22) 78%), linear-gradient(0deg, #041a2c 0%, transparent 46%), var(--catalog-hero-image); background-position: center; background-size: cover; }.vehicle-catalog-hero-inner { width: min(1320px, calc(100% - 64px)); padding: 104px 0 20px; }
.vehicle-crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 35px; color: rgba(239,244,246,.62); font-size: .82rem; }.vehicle-crumbs a { color: rgba(239,244,246,.82); }.vehicle-crumbs a:hover { color: #e9bf59; }.vehicle-eyebrow { margin: 0 0 9px; color: #e8bd5b; font-size: .66rem; font-weight: 700; letter-spacing: .16em; }.vehicle-catalog h1 { max-width: 640px; margin: 0; color: #fff; font-size: clamp(2.45rem, 3.55vw, 3.5rem); line-height: 1.04; letter-spacing: -.04em; }.vehicle-catalog-hero p:last-child { max-width: 430px; margin: 12px 0 0; color: rgba(239,244,246,.72); font-size: 1rem; }
.vehicle-catalog-hero-inner, .vehicle-catalog-body, .vehicle-detail-shell { max-width: none; padding-right: 0; padding-left: 0; }.vehicle-catalog-body { width: min(1320px, calc(100% - 64px)); padding-top: 26px; }.vehicle-catalog-controls { max-width: 100%; margin-top: 18px; }.vehicle-catalog-types { display: flex; gap: 12px; padding-bottom: 13px; }.vehicle-catalog-types a { position: relative; padding: 8px 20px; color: rgba(245,248,249,.72); border: 1px solid rgba(220,235,242,.2); font-size: .9rem; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease; }.vehicle-catalog-types a:hover, .vehicle-catalog-types a.is-active { color: #082238; border-color: #e8bd5b; background: #e8bd5b; }
.vehicle-brand-filter { display: flex; flex-wrap: wrap; gap: 8px 25px; padding: 13px 0 14px; border-top: 1px solid rgba(220,235,242,.18); border-bottom: 1px solid rgba(220,235,242,.11); }.vehicle-brand-filter a { color: rgba(234,241,244,.62); font-size: .86rem; white-space: nowrap; }.vehicle-brand-filter a:hover, .vehicle-brand-filter a.is-active { color: #f0c667; }.vehicle-brand-filter a.is-active { font-weight: 700; }
.vehicle-catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding-top: 26px; }.vehicle-catalog-card { min-width: 0; overflow: hidden; display: block; border: 1px solid rgba(222,234,240,.14); color: #fff; background: #08233a; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }.vehicle-catalog-card.is-featured { border-color: rgba(231,188,88,.8); }.vehicle-catalog-card:hover { color: #fff; border-color: rgba(231,188,88,.82); transform: translateY(-5px); box-shadow: 0 18px 42px rgba(0,0,0,.23); }.vehicle-catalog-card-image { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #16364b; }.vehicle-catalog-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }.vehicle-catalog-card:hover .vehicle-catalog-card-image img { transform: scale(1.05); }.vehicle-catalog-card-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(255,255,255,.75); font-size: 1.1rem; font-weight: 700; }.vehicle-catalog-badge { position: absolute; top: 0; left: 0; padding: 6px 10px; color: #072036; background: #eac05e; font-size: .68rem; font-weight: 700; }.vehicle-catalog-card-copy { padding: 12px 16px 13px; }.vehicle-catalog-card-copy p { margin: 0 0 4px; color: #e5ba58; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.vehicle-catalog-card-copy h2 { margin: 0; color: #fff; font-size: 1.04rem; line-height: 1.3; }.vehicle-catalog-card-meta { display: flex; flex-wrap: wrap; gap: 0; margin: 9px 0 10px; color: rgba(233,241,245,.59); font-size: .76rem; }.vehicle-catalog-card-meta span:not(:last-child)::after { content: "|"; margin: 0 8px; color: rgba(233,241,245,.28); }.vehicle-catalog-card-copy strong { color: #e9bf5b; font-size: .8rem; }.vehicle-catalog-empty { padding: 64px 0; color: rgba(239,244,246,.68); }
.vehicle-detail-page { padding: 112px 0 88px; background: radial-gradient(circle at 78% 17%, rgba(38,74,101,.38), transparent 29%), #041a2c; }.vehicle-detail-shell { width: min(1360px, calc(100% - 64px)); }.vehicle-detail-crumbs { margin-bottom: 24px; }.vehicle-detail-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 40px; align-items: start; }.vehicle-detail-gallery { display: flex; flex-direction: column; gap: 14px; }.vehicle-gallery-thumbs { display: flex; flex-wrap: nowrap; align-content: start; gap: 10px; order: 2; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(237,195,93,.55) rgba(255,255,255,.08); padding-bottom: 4px; }.vehicle-gallery-thumbs::-webkit-scrollbar { height: 6px; }.vehicle-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(237,195,93,.55); border-radius: 3px; }.vehicle-gallery-thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }.vehicle-gallery-thumb { flex: 0 0 84px; width: 84px; overflow: hidden; aspect-ratio: 1 / 1; padding: 0; border: 1px solid rgba(238,244,247,.2); background: #0c2c42; cursor: pointer; opacity: .6; transition: opacity .2s ease, border-color .2s ease, transform .2s ease; }.vehicle-gallery-thumb:hover, .vehicle-gallery-thumb.is-active { opacity: 1; border-color: #edc35d; transform: translateY(-2px); }.vehicle-gallery-thumb:focus-visible { outline: 2px solid #edc35d; outline-offset: 3px; }.vehicle-gallery-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }.vehicle-gallery-stage { position: relative; aspect-ratio: 4 / 3; min-height: 0; margin: 0; overflow: hidden; background: #0b2c43; }.vehicle-gallery-stage > img { width: 100%; height: 100%; display: block; object-fit: cover; }.vehicle-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 44px; height: 44px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(8,30,48,.55); cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; z-index: 2; }.vehicle-gallery-nav:hover { color: #092137; border-color: #e8bd5b; background: #e8bd5b; }.vehicle-gallery-nav:focus-visible { outline: 2px solid #edc35d; outline-offset: 3px; }.vehicle-gallery-nav svg { width: 22px; height: 22px; display: block; }.vehicle-gallery-prev { left: 14px; }.vehicle-gallery-next { right: 14px; }.vehicle-gallery-empty { display: grid; place-items: center; color: rgba(255,255,255,.72); font-size: 1.3rem; font-weight: 700; }
.vehicle-detail-info { padding-top: 16px; }.vehicle-detail-brand { margin: 0 0 7px; color: #ebc05e; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.vehicle-detail-info h1 { margin: 0; color: #fff; font-size: clamp(2rem, 2.15vw, 2.25rem); line-height: 1.08; letter-spacing: -.035em; }.vehicle-detail-model { margin: 10px 0 24px; color: rgba(240,246,248,.62); font-size: 1.04rem; }.vehicle-spec-grid { margin: 0; border-top: 1px solid rgba(231,241,246,.22); }.vehicle-spec-grid > div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(231,241,246,.16); }.vehicle-spec-grid dt { color: rgba(232,241,246,.62); }.vehicle-spec-grid dd { margin: 0; color: #fff; text-align: right; }.vehicle-spec-grid > .vehicle-spec-wide { display: grid; grid-template-columns: minmax(110px, .65fr) 1fr; }.vehicle-spec-wide dd { white-space: pre-line; text-align: right; }.vehicle-detail-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }.vehicle-detail-cta .btn { display: grid; min-height: 49px; place-items: center; padding: 11px 14px; text-align: center; }.vehicle-primary-cta { grid-column: 1 / -1; border: 1px solid #e8bd5b; color: #092137; background: #e8bd5b; }.vehicle-secondary-cta { border-color: rgba(234,241,245,.55); color: #fff; }.vehicle-secondary-cta:hover { border-color: #e8bd5b; color: #092137; background: #e8bd5b; }.vehicle-parameters-cta { border-color: rgba(232,189,91,.72); color: #edc35d; }.vehicle-parameters-cta:hover { border-color: #e8bd5b; color: #092137; background: #e8bd5b; }.vehicle-detail-note { margin: 15px 0 0; color: rgba(232,241,246,.54); font-size: .75rem; }.vehicle-detail-overview { max-width: 860px; margin-top: 57px; padding-top: 32px; border-top: 1px solid rgba(232,241,246,.18); }.vehicle-detail-overview h2 { margin: 0 0 17px; color: #fff; font-size: 1.66rem; }.vehicle-detail-body { color: rgba(237,243,246,.76); }.vehicle-detail-body > :first-child { margin-top: 0; }.vehicle-detail-body a { color: #edc35d; }
@media (max-width: 960px) { .vehicle-catalog-hero-inner, .vehicle-catalog-body, .vehicle-detail-shell { width: min(100% - 40px, 820px); }.vehicle-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.vehicle-detail-layout { grid-template-columns: 1fr; }.vehicle-detail-info { max-width: 620px; padding-top: 0; }.vehicle-gallery-stage { min-height: 0; } }
@media (max-width: 620px) { .vehicle-catalog, .vehicle-detail-page { margin-top: -70px; }.vehicle-catalog { padding-top: 70px; }.vehicle-catalog-hero { min-height: 282px; }.vehicle-catalog-hero-inner, .vehicle-catalog-body, .vehicle-detail-shell { width: calc(100% - 32px); }.vehicle-catalog-hero-inner { padding: 95px 0 31px; }.vehicle-crumbs { margin-bottom: 27px; font-size: .73rem; }.vehicle-catalog h1 { font-size: 2.65rem; }.vehicle-catalog-types { gap: 22px; }.vehicle-brand-filter { gap: 10px 17px; }.vehicle-catalog-grid { grid-template-columns: 1fr; gap: 13px; }.vehicle-catalog-card-copy h2 { min-height: auto; }.vehicle-detail-page { padding-top: 94px; }.vehicle-detail-layout { gap: 26px; }.vehicle-gallery-thumb { flex: 0 0 calc(25% - 8px); width: auto; }.vehicle-gallery-thumb:hover, .vehicle-gallery-thumb.is-active { transform: translateY(-2px); }.vehicle-gallery-stage { min-height: 0; aspect-ratio: 4 / 3; }.vehicle-detail-info h1 { font-size: 2.75rem; }.vehicle-detail-cta { grid-template-columns: 1fr; }.vehicle-detail-overview { margin-top: 40px; }.vehicle-spec-grid > div { padding: 11px 0; } }

/* ── 车辆目录：按选定设计稿的细节校正 ────────────────────── */
.main-nav > a, .nav-dropdown > button { position: relative; }
.nav-dropdown > button.is-active { color: #e8bd5b; }
.nav-dropdown > button.is-active::after { content: ""; position: absolute; right: 0; bottom: -17px; left: 0; height: 2px; background: #e8bd5b; }
.lang-switch a, .lang-switch .lang-current { border-radius: 3px; }
.vehicle-catalog-types a { border-radius: 3px; }
.vehicle-catalog-card-copy { padding: 12px 16px 14px; }
.vehicle-catalog-card-title { display: flex; min-width: 0; align-items: baseline; gap: 8px; }
.vehicle-catalog-card-title p { flex: 0 0 auto; margin: 0; color: #e5ba58; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-catalog-card-title h2 { min-width: 0; margin: 0; overflow: hidden; color: #fff; font-size: 1.04rem; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.vehicle-catalog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; }
.vehicle-catalog-card-footer .vehicle-catalog-card-meta { min-width: 0; margin: 0; }
.vehicle-catalog-card-footer strong { flex: 0 0 auto; color: #e9bf5b; font-size: .8rem; white-space: nowrap; }
@media (max-width: 620px) { .vehicle-catalog-card-title { display: block; }.vehicle-catalog-card-title h2 { overflow: visible; white-space: normal; }.vehicle-catalog-card-footer { align-items: flex-end; } }

/* ── 内页导航：非跟随式，按车辆展示设计稿 ────────────────── */
.site-header-inner { position: absolute; top: 6px; right: 0; left: 0; z-index: 100; }
.site-header-inner .header-inner { min-height: 48px; border-color: rgba(255,255,255,.08); border-radius: 8px 8px 0 0; background: rgba(4,22,39,.94); box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header-inner .brand-logo { width: 25px; height: 25px; }
.site-header-inner .main-nav { gap: 31px; font-size: .78rem; }
.site-header-inner .lang-switch { gap: 9px; }
.site-header-inner .lang-switch a, .site-header-inner .lang-switch .lang-current { padding: 4px 8px; border-radius: 3px; }
.site-header-inner .nav-dropdown > button.is-active::after { bottom: -16px; }
@media (max-width: 720px) { .site-header-inner { top: 8px; }.site-header-inner .header-inner { min-height: 50px; border-radius: 8px; }.site-header-inner .brand-logo { width: 24px; height: 24px; }.site-header-inner .brand-wordmark small { display: none; } }

/* ── 首页导航：Product Design 大标志玻璃导航 ─────────────── */
@media (min-width: 721px) {
  /* 关于我们、车辆与配件页统一使用首屏内悬浮的玻璃导航。 */
  body.page-inner:has(.about-page, .parts-catalog-page, .part-detail-page) .site-main { padding-top: 0; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner { top: 16px; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .header-inner {
    width: calc(100% - 48px);
    max-width: 1500px;
    min-height: 60px;
    padding-right: 20px;
    padding-left: 20px;
    border-color: rgba(185, 210, 225, .24);
    border-radius: 17px;
    background: rgba(4, 23, 41, .72);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .brand-logo { width: 36px; height: 36px; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .main-nav { gap: 28px; font-size: .84rem; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .lang-switch a,
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .lang-switch .lang-current { border-radius: 4px; }

  .site-header-home { top: 38px; }
  .site-header-home .header-inner { width: calc(100% - 72px); max-width: 1500px; min-height: 86px; padding-right: 30px; padding-left: 30px; border-radius: 22px; border-color: rgba(185,210,225,.28); background: rgba(4,23,41,.73); box-shadow: 0 18px 48px rgba(0,0,0,.2); backdrop-filter: blur(18px) saturate(145%); -webkit-backdrop-filter: blur(18px) saturate(145%); }
  .site-header-home .brand { gap: 13px; margin-left: 4px; }
  .site-header-home .brand-logo { width: 108px; height: 108px; margin: -24px 0; filter: drop-shadow(0 7px 15px rgba(0,0,0,.22)); }
  .site-header-home .brand-wordmark { gap: 4px; }
  .site-header-home .brand-wordmark strong { font-size: 1.34rem; }
  .site-header-home .brand-wordmark small { font-size: .72rem; letter-spacing: .08em; }
  .site-header-home .main-nav { gap: 34px; font-size: .92rem; }
  .site-header-home .lang-switch { gap: 13px; }
  .site-header-home .lang-switch a, .site-header-home .lang-switch .lang-current { padding: 6px 10px; }
}
@media (min-width: 721px) and (max-width: 900px) {
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .header-inner { gap: 12px; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .brand-wordmark { display: none; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .main-nav { gap: 7px; font-size: .66rem; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .lang-switch { gap: 4px; }
}
@media (min-width: 721px) and (max-width: 1100px) {
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .header-contact { display: none; }
  body.page-inner:has(.about-page, .vehicle-catalog, .vehicle-detail-page, .parts-catalog-page, .part-detail-page) .site-header-inner .lang-switch { margin-left: auto; }
}
@media (min-width: 721px) and (max-width: 1490px) {
  .site-header-home { top: 16px; }
  .site-header-home .header-inner { min-height: 60px; gap: 18px; padding-right: 20px; padding-left: 20px; border-radius: 17px; }
  .site-header-home .brand { gap: 8px; margin-left: 0; }
  .site-header-home .brand-logo { width: 36px; height: 36px; margin: 0; }
  .site-header-home .brand-wordmark { gap: 1px; }
  .site-header-home .brand-wordmark strong { font-size: 1rem; }
  .site-header-home .brand-wordmark small { font-size: .58rem; letter-spacing: .04em; }
  .site-header-home .main-nav { position: static; gap: 18px; margin-left: auto; font-size: .76rem; transform: none; }
  .site-header-home .header-contact { margin-left: 0; }
  .site-header-home .lang-switch { gap: 9px; }
  .site-header-home .lang-switch a, .site-header-home .lang-switch .lang-current { padding: 4px 8px; }
}
@media (min-width: 721px) and (max-width: 900px) {
  .site-header-home .header-inner { gap: 12px; }
  .site-header-home .brand-wordmark { display: none; }
  .site-header-home .main-nav { gap: 6px; font-size: .64rem; }
  .site-header-home .lang-switch { gap: 4px; }
  .site-header-home .lang-switch a, .site-header-home .lang-switch .lang-current { padding: 3px 5px; font-size: .7rem; }
}
@media (max-width: 720px) { .site-header-home .brand-logo { width: 40px; height: 40px; }.site-header-home .brand-wordmark small { display: none; } }

/* ── 配件目录：Product Design 选定的 Compatibility Matrix ─── */
.main-nav a.is-active { position: relative; color: #edc35d; }.main-nav a.is-active::after { content: ""; position: absolute; right: 0; bottom: -17px; left: 0; height: 2px; background: #edc35d; }
.parts-catalog-page { overflow: hidden; color: #edf3f6; background: #041a2c; }.parts-catalog-hero { min-height: 426px; display: flex; align-items: center; background: #041a2c url("../img/parts/parts-catalog-hero.png") center / cover no-repeat; }.parts-catalog-hero-inner { width: min(1320px, calc(100% - 64px)); padding: 62px 0 58px; }.parts-catalog-hero h1 { max-width: 430px; margin: 0; padding-left: 22px; border-left: 4px solid #edc35d; color: #fff; font-size: clamp(3rem, 5vw, 5rem); line-height: 1.05; letter-spacing: -.05em; }.parts-catalog-hero p { margin: 16px 0 0 26px; color: rgba(238,245,248,.83); font-size: 1.06rem; letter-spacing: .06em; }.parts-catalog-content { padding: 0 0 76px; background: #061d31; }.parts-filter-flow { display: grid; grid-template-columns: 1fr 1fr 1.16fr; overflow: hidden; border: 1px solid rgba(199,218,228,.18); border-radius: 0 0 12px 12px; background: rgba(3,20,35,.72); }.parts-filter-group { min-width: 0; padding: 18px 22px 20px; border-right: 1px solid rgba(199,218,228,.16); }.parts-filter-group:last-child { border-right: 0; }.parts-filter-group > p { display: flex; align-items: baseline; gap: 11px; margin: 0 0 12px; color: #f3f6f7; font-size: .88rem; font-weight: 700; }.parts-filter-group > p b { color: #edc35d; font-size: 1.7rem; line-height: 1; }.parts-filter-options { display: flex; flex-wrap: wrap; gap: 7px; }.parts-filter-option { display: inline-flex; min-height: 31px; align-items: center; padding: 6px 10px; border: 1px solid rgba(198,216,226,.17); border-radius: 4px; color: rgba(236,244,247,.75); font-size: .73rem; line-height: 1.1; }.parts-filter-option:hover, .parts-filter-option.is-active { border-color: #edc35d; background: #edc35d; color: #092238; }.parts-results { display: grid; grid-template-columns: 1.7fr 1fr 1fr; grid-auto-rows: minmax(170px, auto); gap: 12px; margin-top: 12px; }.parts-result-card { display: grid; grid-template-columns: .95fr 1.05fr; min-width: 0; overflow: hidden; border: 1px solid rgba(198,216,226,.17); border-radius: 7px; background: #08263d; color: #fff; transition: border-color .25s ease, transform .25s ease; }.parts-result-card:hover { border-color: rgba(237,195,93,.8); color: #fff; transform: translateY(-3px); }.parts-result-featured { grid-row: span 2; grid-template-columns: 1.06fr .94fr; }.parts-result-image { min-width: 0; overflow: hidden; background: #0d2b40; }.parts-result-image img { display: block; width: 100%; height: 100%; min-height: 170px; object-fit: cover; transition: transform .5s ease; }.parts-result-card:hover .parts-result-image img { transform: scale(1.04); }.parts-result-featured .parts-result-image img { min-height: 0; }.parts-result-placeholder { display: grid; min-height: 170px; place-items: center; color: rgba(238,245,248,.6); }.parts-result-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 18px; }.parts-result-kicker { align-self: flex-start; margin-bottom: 13px; padding: 4px 7px; border: 1px solid rgba(237,195,93,.45); color: #edc35d; font-size: .67rem; letter-spacing: .08em; }.parts-result-copy h2 { margin: 0; color: #fff; font-size: clamp(.95rem, 1.3vw, 1.25rem); line-height: 1.35; }.parts-result-copy p { margin: 9px 0 0; color: rgba(236,244,247,.63); font-size: .76rem; line-height: 1.65; }.parts-result-action { margin-top: 16px; color: #edc35d; font-size: .78rem; font-weight: 700; }.parts-empty { padding: 68px 28px; margin-top: 12px; border: 1px solid rgba(198,216,226,.17); background: #08263d; text-align: center; }.parts-empty h2 { margin: 0; color: #fff; }.parts-empty p { color: rgba(236,244,247,.68); }.parts-assurance { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 18px; border: 1px solid rgba(237,195,93,.3); border-radius: 7px; background: rgba(3,20,35,.56); }.parts-assurance > div { display: grid; gap: 4px; padding: 18px 22px; border-right: 1px solid rgba(237,195,93,.22); }.parts-assurance > div:last-child { border-right: 0; }.parts-assurance strong { color: #edc35d; font-size: .83rem; }.parts-assurance span { color: rgba(236,244,247,.66); font-size: .76rem; line-height: 1.6; }
@media (max-width: 920px) { .parts-catalog-hero { min-height: 360px; }.parts-filter-flow { grid-template-columns: 1fr; }.parts-filter-group { border-right: 0; border-bottom: 1px solid rgba(199,218,228,.16); }.parts-filter-group:last-child { border-bottom: 0; }.parts-results { grid-template-columns: 1fr 1fr; }.parts-result-featured { grid-row: span 1; grid-column: span 2; grid-template-columns: 1.1fr .9fr; }.parts-result-featured .parts-result-image img { min-height: 250px; }.parts-assurance { grid-template-columns: 1fr; }.parts-assurance > div { border-right: 0; border-bottom: 1px solid rgba(237,195,93,.22); }.parts-assurance > div:last-child { border-bottom: 0; } }
@media (max-width: 560px) { .parts-catalog-hero { min-height: 330px; background-position: 62% center; }.parts-catalog-hero-inner { width: calc(100% - 32px); padding: 104px 0 48px; }.parts-catalog-hero h1 { padding-left: 14px; border-left-width: 3px; font-size: 2.8rem; }.parts-catalog-hero p { margin-left: 17px; font-size: .88rem; }.parts-catalog-content { padding: 16px 0 52px; }.parts-filter-group { padding: 15px; }.parts-results { grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }.parts-result-card, .parts-result-featured { grid-column: auto; grid-template-columns: .92fr 1.08fr; }.parts-result-featured .parts-result-image img, .parts-result-image img { min-height: 156px; }.parts-result-copy { padding: 14px; }.parts-result-kicker { display: none; }.parts-result-action { margin-top: 12px; }.parts-assurance { margin-top: 12px; }.parts-assurance > div { padding: 16px; } }

/* ── 配件详情：深蓝金色画廊与咨询转化 ─────────────────────── */
body.page-inner:has(.part-detail-page) .site-main { padding-top: 0; }
.part-detail-page { min-height: 100vh; overflow: hidden; color: #edf3f6; background: #041a2c; }
.part-detail-shell { width: min(1407px, calc(100% - 80px)); margin: 0 auto; padding: 111px 0 42px; }
.part-detail-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 36px; color: rgba(231,239,243,.51); font-size: .76rem; }
.part-detail-breadcrumb a { color: rgba(231,239,243,.64); }.part-detail-breadcrumb a:hover { color: #edc35d; }.part-detail-breadcrumb span[aria-hidden] { color: rgba(231,239,243,.31); }
.part-detail-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); align-items: start; gap: 32px; }
.part-detail-gallery { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.part-gallery-thumbs { display: flex; flex-wrap: nowrap; gap: 10px; order: 2; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(237,195,93,.55) rgba(255,255,255,.08); padding-bottom: 4px; }
.part-gallery-thumbs::-webkit-scrollbar { height: 6px; }
.part-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(237,195,93,.55); border-radius: 3px; }
.part-gallery-thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
.part-gallery-thumb { flex: 0 0 84px; width: 84px; aspect-ratio: 1 / 1; overflow: hidden; padding: 0; border: 1px solid rgba(205,220,228,.23); border-radius: 6px; background: #0d2b40; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease; }
.part-gallery-thumb:hover, .part-gallery-thumb.is-active { border-color: #edc35d; box-shadow: 0 0 0 1px #edc35d; }
.part-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.part-gallery-stage { position: relative; aspect-ratio: 4 / 3; min-height: 0; overflow: hidden; margin: 0; border: 1px solid rgba(205,220,228,.24); border-radius: 6px; background: #0d2b40; }
.part-gallery-stage > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.part-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 44px; height: 44px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(8,30,48,.55); cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; z-index: 2; }
.part-gallery-nav:hover { color: #092137; border-color: #e8bd5b; background: #e8bd5b; }
.part-gallery-nav:focus-visible { outline: 2px solid #edc35d; outline-offset: 3px; }
.part-gallery-nav svg { width: 22px; height: 22px; display: block; }
.part-gallery-prev { left: 14px; }
.part-gallery-next { right: 14px; }
.part-gallery-empty { display: grid; place-items: center; color: rgba(232,241,244,.55); font-size: 1.1rem; font-weight: 700; }
.part-detail-info { min-width: 0; padding-top: 1px; }
.part-detail-category { margin: 0 0 14px; color: #edc35d; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.part-detail-info h1 { max-width: 520px; margin: 0; color: #fff; font-size: clamp(2.05rem, 3.15vw, 3.4rem); line-height: 1.08; letter-spacing: -.035em; overflow-wrap: anywhere; }
.part-detail-specs { margin: 32px 0 0; }
.part-detail-specs > div { display: flex; align-items: baseline; justify-content: space-between; gap: 28px; padding: 13px 0; border-bottom: 1px solid rgba(205,220,228,.18); }
.part-detail-specs dt { color: rgba(229,238,242,.58); font-size: .92rem; }.part-detail-specs dd { margin: 0; color: #f7f9fa; font-size: .93rem; font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.part-detail-actions { display: grid; grid-template-columns: 1fr 1.12fr; gap: 12px; margin-top: 28px; }
.part-action { min-width: 0; min-height: 55px; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 11px 16px; border: 1px solid #d9ad42; border-radius: 7px; font-size: .88rem; font-weight: 700; text-align: center; }
.part-action img { flex: 0 0 22px; width: 22px; height: 22px; object-fit: contain; }.part-action-primary img { filter: brightness(0) saturate(100%) invert(12%) sepia(19%) saturate(2354%) hue-rotate(159deg) brightness(91%) contrast(97%); }.part-action-form-icon { filter: brightness(0) invert(1); }
.part-action-primary { grid-column: 1 / -1; color: #082238; background: #f0c34f; }.part-action-primary:hover { color: #082238; background: #f7cd64; }
.part-action-secondary { color: #fff; background: transparent; }.part-action-secondary:hover { color: #082238; background: #edc35d; }.part-action-secondary:hover img { filter: brightness(0) saturate(100%) invert(12%) sepia(19%) saturate(2354%) hue-rotate(159deg) brightness(91%) contrast(97%); }
.part-detail-overview { margin-top: 51px; padding-top: 29px; border-top: 1px solid rgba(205,220,228,.23); }
.part-detail-overview h2 { margin: 0 0 14px; color: #fff; font-size: clamp(1.55rem, 2.2vw, 2.15rem); line-height: 1.2; }
.part-detail-body { max-width: 1130px; color: rgba(230,239,243,.67); font-size: .91rem; line-height: 1.78; }.part-detail-body > :first-child { margin-top: 0; }.part-detail-body > :last-child { margin-bottom: 0; }.part-detail-body h2, .part-detail-body h3, .part-detail-body strong { color: #f5f8f9; }.part-detail-body a { color: #edc35d; }.part-detail-body img { max-width: 100%; height: auto; }
.part-detail-assurance { display: grid; grid-template-columns: auto max-content 1fr; align-items: center; gap: 18px; margin-top: 31px; padding: 17px 27px; border: 1px solid rgba(199,218,228,.09); border-radius: 7px; background: #08243a; }
.part-detail-assurance img { width: 35px; height: 35px; object-fit: contain; filter: brightness(0) saturate(100%) invert(82%) sepia(67%) saturate(672%) hue-rotate(347deg) brightness(97%) contrast(91%); }.part-detail-assurance strong { padding-right: 25px; border-right: 1px solid rgba(205,220,228,.23); color: #edc35d; font-size: .9rem; }.part-detail-assurance span { color: rgba(230,239,243,.62); font-size: .8rem; line-height: 1.6; }
@media (max-width: 960px) { .part-detail-shell { width: min(100% - 40px, 820px); }.part-detail-layout { grid-template-columns: 1fr; gap: 34px; }.part-gallery-stage { min-height: 0; }.part-detail-info { max-width: none; }.part-detail-actions { max-width: 620px; } }
@media (max-width: 620px) { .part-detail-shell { width: calc(100% - 28px); padding: 88px 0 30px; }.part-detail-breadcrumb { gap: 7px; margin-bottom: 24px; font-size: .69rem; }.part-detail-layout { gap: 27px; }.part-detail-gallery { gap: 10px; }.part-gallery-stage { min-height: 0; aspect-ratio: 4 / 3; }.part-gallery-thumb { flex-basis: 72px; width: 72px; }.part-detail-category { margin-bottom: 10px; }.part-detail-info h1 { font-size: 2.18rem; }.part-detail-specs { margin-top: 23px; }.part-detail-specs > div { gap: 16px; padding: 11px 0; }.part-detail-actions { grid-template-columns: 1fr; gap: 9px; margin-top: 22px; }.part-action-primary { grid-column: auto; }.part-detail-overview { margin-top: 37px; padding-top: 23px; }.part-detail-overview h2 { font-size: 1.55rem; }.part-detail-assurance { grid-template-columns: auto 1fr; gap: 12px 14px; padding: 16px; }.part-detail-assurance strong { padding-right: 0; border-right: 0; }.part-detail-assurance span { grid-column: 1 / -1; } body:has(.part-detail-page) .contact-widget { right: 8px; bottom: 8px; flex-direction: row; gap: 7px; } body:has(.part-detail-page) .contact-widget .cw-item { width: 42px; height: 42px; padding: 0; border-radius: 50%; } body:has(.part-detail-page) .contact-widget .cw-label { display: none; } }

/* ── 车辆查询：选定的客户状态中枢 ───────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.track-page { margin-top: -70px; padding: 104px 0 76px; color: #edf4f6; background: radial-gradient(circle at 78% 8%, rgba(39,86,114,.3), transparent 28%), linear-gradient(135deg, rgba(3,18,31,.9), rgba(3,20,35,.96)), #041a2c; }
.track-shell { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }.track-session-bar { display: flex; align-items: center; justify-content: flex-end; gap: 18px; padding: 0 2px 17px; color: rgba(233,242,246,.72); font-size: .84rem; border-bottom: 1px solid rgba(207,224,233,.15); }.track-logout { padding: 7px 13px; border: 1px solid rgba(237,195,93,.66); border-radius: 4px; color: #edc35d; font-weight: 700; transition: .2s ease; }.track-logout:hover { color: #081f32; background: #edc35d; }.track-header { display: block; margin-top: 36px; }.track-kicker, .video-centre-kicker { margin: 0 0 9px; color: #edc35d; font-size: .69rem; font-weight: 700; letter-spacing: .15em; }.track-header h1, .video-centre-heading h1 { margin: 0; padding-left: 17px; border-left: 4px solid #edc35d; color: #fff; font-size: clamp(2.2rem, 3.65vw, 3.75rem); line-height: 1.04; letter-spacing: -.045em; }.track-header > p:last-child, .video-centre-heading > p:last-child { max-width: 550px; margin: 14px 0 0; color: rgba(231,241,246,.68); font-size: .98rem; line-height: 1.75; }.track-search-form { display: grid; grid-template-columns: minmax(0, 1fr) 128px; gap: 0; max-width: 820px; margin: 26px 0 27px; }.track-search-form input { min-width: 0; height: 54px; padding: 0 19px; border: 1px solid rgba(214,230,238,.2); border-right: 0; border-radius: 5px 0 0 5px; outline: 0; color: #fff; background: rgba(7,33,51,.78); font: inherit; }.track-search-form input::placeholder { color: rgba(229,240,245,.5); }.track-search-form input:focus { border-color: #edc35d; box-shadow: inset 0 0 0 1px #edc35d; }.track-search-button { min-height: 54px; border: 1px solid #edc35d; border-radius: 0 5px 5px 0; color: #092238; background: #edc35d; font-weight: 700; }.track-search-button:hover { color: #fff; background: #b78828; border-color: #b78828; }
.tracking-vehicle-card { display: grid; grid-template-columns: minmax(220px, .68fr) 1fr; overflow: hidden; max-width: 820px; border: 1px solid rgba(199,220,230,.16); border-radius: 8px; background: rgba(8,35,55,.77); }.tracking-vehicle-card > img { width: 100%; height: 100%; min-height: 182px; object-fit: cover; }.tracking-vehicle-summary { padding: 22px 25px; }.tracking-selected { margin: 0 0 8px; color: #edc35d; font-size: .69rem; font-weight: 700; letter-spacing: .1em; }.tracking-vehicle-summary h2 { margin: 0; color: #fff; font-size: clamp(1.28rem, 2vw, 1.75rem); }.tracking-vehicle-summary dl { display: flex; flex-wrap: wrap; gap: 12px 34px; margin: 18px 0 0; }.tracking-vehicle-summary dl > div { display: grid; gap: 4px; }.tracking-vehicle-summary dt { color: rgba(229,240,245,.55); font-size: .73rem; }.tracking-vehicle-summary dd { margin: 0; color: #e9f0f3; font-size: .83rem; }
.tracking-statuses { max-width: 1060px; margin-top: 22px; padding: 20px; border: 1px solid rgba(199,220,230,.16); border-radius: 8px; background: rgba(5,26,43,.71); }.tracking-status-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 16px; }.tracking-status-head h2 { margin: 0; color: #fff; font-size: 1.08rem; }.tracking-status-head span { color: rgba(229,240,245,.55); font-size: .72rem; }.tracking-status-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }.tracking-status-item { display: grid; grid-template-columns: auto 1fr; gap: 10px; min-height: 130px; padding: 16px 14px; border: 1px solid rgba(201,221,231,.15); border-radius: 6px; background: rgba(11,41,62,.74); }.tracking-status-item:nth-child(n+5) { grid-column: span 1; }.tracking-status-number { color: #edc35d; font-size: .68rem; font-weight: 700; letter-spacing: .05em; }.tracking-status-item p { margin: 0 0 7px; color: rgba(234,243,247,.66); font-size: .78rem; line-height: 1.35; }.tracking-status-item strong { display: block; color: #fff; font-size: .9rem; }.tracking-status-item.is-empty strong { color: rgba(234,243,247,.43); font-weight: 500; }.tracking-status-note { display: block; margin-top: 7px; color: rgba(235,244,247,.55); font-size: .7rem; line-height: 1.45; }.tracking-status-item time { display: block; margin-top: 10px; color: rgba(230,241,246,.47); font-size: .67rem; line-height: 1.45; }.tracking-empty { display: grid; gap: 8px; max-width: 820px; padding: 42px; border: 1px solid rgba(199,220,230,.16); border-radius: 8px; background: rgba(8,35,55,.74); color: rgba(232,242,246,.66); }.tracking-empty strong { color: #fff; font-size: 1.12rem; }

/* ── 视频专区：选定的外部平台视频画廊 ───────────────────── */
.video-centre-page { margin-top: -70px; padding: 112px 0 78px; color: #edf4f6; background: radial-gradient(circle at 74% 12%, rgba(35,81,108,.28), transparent 27%), #041a2c; }.video-centre-shell { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }.video-centre-heading { margin-bottom: 28px; }.video-featured { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .72fr); overflow: hidden; border: 1px solid rgba(201,222,232,.18); border-radius: 8px; background: rgba(7,31,49,.8); }.video-featured-image { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; color: #fff; background: #0b2c43; }.video-featured-image::after, .video-story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,14,24,.5), transparent 54%); transition: background .25s ease; }.video-featured-image:hover::after, .video-story-image:hover::after { background: linear-gradient(0deg, rgba(1,14,24,.66), rgba(1,14,24,.06) 68%); }.video-featured-image img, .video-story-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }.video-featured-image:hover img, .video-story-image:hover img { transform: scale(1.045); }.video-play-mark, .video-story-play { position: absolute; z-index: 1; display: grid; place-items: center; border: 1px solid rgba(250,230,178,.88); border-radius: 50%; color: #fff; background: rgba(8,31,47,.7); font-weight: 700; letter-spacing: .04em; }.video-play-mark { top: 50%; left: 50%; width: 72px; height: 72px; transform: translate(-50%, -50%); font-size: .74rem; }.video-story-play { top: 50%; left: 50%; width: 45px; height: 45px; transform: translate(-50%, -50%); font-size: .62rem; }.video-platform-chip { position: absolute; z-index: 1; bottom: 13px; left: 13px; padding: 5px 8px; border: 1px solid rgba(242,247,249,.36); border-radius: 3px; color: #fff; background: rgba(3,18,30,.74); font-size: .64rem; font-weight: 700; letter-spacing: .08em; }.video-featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 4vw, 48px); }.video-featured-kicker { margin: 0 0 12px; color: #edc35d; font-size: .69rem; font-weight: 700; letter-spacing: .12em; }.video-featured-copy h2 { margin: 0; color: #fff; font-size: clamp(1.55rem, 2.3vw, 2.5rem); line-height: 1.17; }.video-featured-copy > p:not(.video-featured-kicker) { margin: 17px 0 0; color: rgba(232,242,246,.65); font-size: .88rem; line-height: 1.85; }.video-external-link { align-self: flex-start; margin-top: 27px; padding-bottom: 7px; border-bottom: 1px solid #edc35d; color: #edc35d; font-size: .84rem; font-weight: 700; }.video-external-link:hover, .video-story-copy a:hover { color: #fff; border-color: #fff; }.video-platform-filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 17px; }.video-platform-filter a { min-width: 67px; padding: 8px 13px; border: 1px solid rgba(202,222,231,.19); border-radius: 4px; color: rgba(232,242,246,.75); font-size: .76rem; text-align: center; }.video-platform-filter a:hover, .video-platform-filter a.is-active { color: #092238; border-color: #edc35d; background: #edc35d; }.video-story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }.video-story-card { overflow: hidden; border: 1px solid rgba(201,222,232,.16); border-radius: 6px; background: #08243a; }.video-story-image { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #0b2c43; }.video-story-copy { padding: 15px 16px 17px; }.video-story-copy h2 { margin: 0; color: #fff; font-size: 1rem; line-height: 1.35; }.video-story-copy p { display: -webkit-box; overflow: hidden; margin: 8px 0 0; color: rgba(232,242,246,.58); font-size: .75rem; line-height: 1.6; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.video-story-copy a { display: inline-block; margin-top: 14px; padding-bottom: 4px; border-bottom: 1px solid rgba(237,195,93,.78); color: #edc35d; font-size: .76rem; font-weight: 700; }.video-assurance { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border: 1px solid rgba(237,195,93,.3); border-radius: 7px; background: rgba(3,20,35,.56); }.video-assurance > div { display: grid; gap: 4px; padding: 17px 19px; border-right: 1px solid rgba(237,195,93,.22); }.video-assurance > div:last-child { border-right: 0; }.video-assurance strong { color: #edc35d; font-size: .82rem; }.video-assurance span { color: rgba(236,244,247,.66); font-size: .73rem; line-height: 1.55; }.video-centre-empty { display: grid; grid-template-columns: minmax(0, 1.18fr) 1fr; overflow: hidden; border: 1px solid rgba(201,222,232,.16); border-radius: 8px; background: #08243a; }.video-centre-empty img { width: 100%; height: 320px; object-fit: cover; }.video-centre-empty > div { align-self: center; padding: 36px; }.video-centre-empty strong { color: #fff; font-size: 1.35rem; }.video-centre-empty p { color: rgba(232,242,246,.64); line-height: 1.8; }
@media (min-width: 930px) { body.page-inner:has(.track-page, .video-centre-page) .site-main { padding-top: 0; } body.page-inner:has(.track-page, .video-centre-page) .site-header-inner { top: 16px; } body.page-inner:has(.track-page, .video-centre-page) .site-header-inner .header-inner { min-height: 60px; padding-right: 20px; padding-left: 20px; border-color: rgba(185,210,225,.24); border-radius: 17px; background: rgba(4,23,41,.72); box-shadow: 0 14px 36px rgba(0,0,0,.18); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); } body.page-inner:has(.track-page, .video-centre-page) .site-header-inner .brand-logo { width: 36px; height: 36px; } body.page-inner:has(.track-page, .video-centre-page) .site-header-inner .main-nav { gap: 28px; font-size: .84rem; } }
@media (max-width: 860px) { .track-shell, .video-centre-shell { width: min(100% - 40px, 760px); }.tracking-status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.video-featured { grid-template-columns: 1fr; }.video-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.video-assurance { grid-template-columns: repeat(2, 1fr); }.video-assurance > div:nth-child(2) { border-right: 0; }.video-assurance > div:nth-child(-n+2) { border-bottom: 1px solid rgba(237,195,93,.22); } }
@media (max-width: 560px) { .track-page, .video-centre-page { margin-top: -70px; padding-top: 95px; }.track-shell, .video-centre-shell { width: calc(100% - 32px); }.track-session-bar { padding-bottom: 13px; font-size: .77rem; }.track-header { margin-top: 28px; }.track-header h1, .video-centre-heading h1 { padding-left: 13px; border-left-width: 3px; font-size: 2.55rem; }.track-search-form { grid-template-columns: 1fr; gap: 8px; }.track-search-form input { border-right: 1px solid rgba(214,230,238,.2); border-radius: 5px; }.track-search-button { border-radius: 5px; }.tracking-vehicle-card { grid-template-columns: 1fr; }.tracking-vehicle-card > img { min-height: 195px; }.tracking-vehicle-summary { padding: 19px; }.tracking-statuses { padding: 13px; }.tracking-status-head { display: block; }.tracking-status-head span { display: block; margin-top: 6px; }.tracking-status-grid { grid-template-columns: 1fr; }.tracking-status-item { min-height: 0; }.video-featured-copy { padding: 23px 19px 25px; }.video-story-grid, .video-assurance { grid-template-columns: 1fr; }.video-assurance > div, .video-assurance > div:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(237,195,93,.22); }.video-assurance > div:last-child { border-bottom: 0; }.video-centre-empty { grid-template-columns: 1fr; }.video-centre-empty img { height: 215px; }.video-centre-empty > div { padding: 24px 19px; } }

@media (min-width: 861px) { .video-story-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 861px) { .tracking-status-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }.tracking-status-item { grid-column: span 3; }.tracking-status-item:nth-child(n+5) { grid-column: span 4; } }

/* ── 车辆查询 V2：车辆折叠列表 ───────────────────────────── */
body.page-inner:has(.track-page) { background: #031a2b; }
body.page-inner:has(.track-page) .site-footer { padding: 0; background: #0d2c48; }
body.page-inner:has(.track-page) .footer-grid { padding-top: 20px; padding-bottom: 16px; }
.track-page {
  min-height: 870px;
  margin-top: 0;
  padding: 102px 0 32px;
  background: #031a2b;
}

/* ── 客户车辆查询登录页 ───────────────────────────────────── */
body.page-customer-login {
  min-height: 100vh;
  color: #0b2741;
  background: #faf8f6;
}
body.page-customer-login .site-header-inner {
  position: relative;
  top: 0;
  color: #0b2741;
  background: #faf8f6;
  border-bottom: 1px solid #d9dde0;
}
body.page-customer-login .site-header-inner .header-inner {
  width: 100%;
  max-width: none;
  min-height: 88px;
  gap: 40px;
  padding: 0 clamp(36px, 3vw, 45px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.page-customer-login .site-header-inner .brand {
  gap: 11px;
  color: #0b2741;
}
body.page-customer-login .site-header-inner .brand:hover { color: #b8872d; }
body.page-customer-login .site-header-inner .brand-logo {
  width: 60px;
  height: 60px;
}
body.page-customer-login .site-header-inner .brand-wordmark { gap: 3px; }
body.page-customer-login .site-header-inner .brand-wordmark strong {
  font-size: 1.52rem;
  letter-spacing: .01em;
}
body.page-customer-login .site-header-inner .brand-wordmark small {
  color: #687480;
  font-size: .82rem;
  letter-spacing: .02em;
}
body.page-customer-login .site-header-inner .main-nav {
  gap: 43px;
  color: #0b2741;
  font-size: .99rem;
}
body.page-customer-login .site-header-inner .main-nav a,
body.page-customer-login .site-header-inner .nav-dropdown > button {
  color: #0b2741;
}
body.page-customer-login .site-header-inner .main-nav a:hover,
body.page-customer-login .site-header-inner .nav-dropdown > button:hover,
body.page-customer-login .site-header-inner .main-nav a.is-active:hover {
  color: #b8872d;
}
body.page-customer-login .site-header-inner .main-nav a.is-active { color: #0b2741; }
body.page-customer-login .site-header-inner .main-nav a.is-active::after { display: none; }
body.page-customer-login .site-header-inner .header-contact { gap: 17px; }
body.page-customer-login .site-header-inner .header-contact a,
body.page-customer-login .site-header-inner .header-contact button {
  width: 34px;
  height: 34px;
  border: 1px solid #b7c0c8;
}
body.page-customer-login .site-header-inner .header-contact img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(1597%) hue-rotate(167deg) brightness(92%) contrast(98%);
}
body.page-customer-login .site-header-inner .header-contact a:hover,
body.page-customer-login .site-header-inner .header-contact button:hover {
  border-color: #b8872d;
  background: rgba(184, 135, 45, .08);
}
body.page-customer-login .site-header-inner .lang-switch { gap: 10px; }
body.page-customer-login .site-header-inner .lang-switch a,
body.page-customer-login .site-header-inner .lang-switch .lang-current {
  min-width: 43px;
  padding: 7px 10px;
  border-color: #b7c0c8;
  border-radius: 4px;
  color: #0b2741;
  font-size: .92rem;
  line-height: 1.35;
  text-align: center;
}
body.page-customer-login .site-header-inner .lang-switch .lang-current {
  border-color: #0b2741;
  color: #fff;
  background: #0b2741;
}
body.page-customer-login .site-main { padding-top: 0; }
body.page-customer-login .contact-widget { display: none; }

.customer-login-page {
  display: grid;
  grid-template-columns: 575px minmax(0, 1fr);
  /* The approved desktop composition is 88px header + 887px content + 83px footer.
     Keep that canvas as a floor so short browser viewports scroll instead of clipping
     the form behind a fixed footer. */
  min-height: max(887px, calc(100svh - 171px));
  background: #faf8f6;
}
.customer-login-visual {
  position: relative;
  z-index: 1;
  min-height: 650px;
  overflow: hidden;
  background: #071d32;
}
.customer-login-visual picture,
.customer-login-visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.customer-login-visual img {
  object-fit: cover;
  object-position: center;
}
.customer-login-content {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  padding: 118px clamp(50px, 8vw, 130px) 40px clamp(84px, 6.45vw, 96px);
}
.customer-login-panel {
  width: min(100%, 540px);
  margin: 0;
  transform: none;
}
.customer-login-eyebrow {
  display: grid;
  width: max-content;
  gap: 10px;
  margin: 0 0 25px;
  color: #bd8d35;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.customer-login-eyebrow::after {
  width: 46px;
  height: 2px;
  content: "";
  background: #bd8d35;
}
.customer-login-panel h1 {
  max-width: 590px;
  margin: 0;
  color: #0a2742;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.72rem, 3.7vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.customer-login-intro {
  max-width: 555px;
  margin: 13px 0 0;
  color: #6f767d;
  font-size: .92rem;
  line-height: 1.65;
}
.customer-login-progress {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  margin: 34px 0 26px;
}
.customer-login-progress strong {
  color: #bd8d35;
  font-size: .72rem;
  white-space: nowrap;
}
.customer-login-progress ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.customer-login-progress ol::before {
  position: absolute;
  right: 4px;
  left: 4px;
  height: 1px;
  content: "";
  background: #cbd0d4;
}
.customer-login-progress li {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 8px;
  height: 8px;
  border: 1px solid #bfc5ca;
  border-radius: 50%;
  background: #f7f5f0;
}
.customer-login-progress li.is-current {
  border-color: #bd8d35;
  background: #bd8d35;
}
.customer-login-error {
  margin: -10px 0 20px;
  padding: 11px 13px;
  border-left: 3px solid #a93c37;
  color: #7f2723;
  background: #f5e9e7;
  font-size: .82rem;
}
.customer-login-form { display: grid; }
.customer-login-form > label {
  margin: 0 0 8px;
  color: #23384a;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.25;
}
.customer-login-form > label:not(:first-of-type) { margin-top: 18px; }
.customer-login-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid #c4cbd0;
  border-radius: 4px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.customer-login-field:focus-within {
  border-color: #bd8d35;
  box-shadow: 0 0 0 3px rgba(189, 141, 53, .12);
}
.customer-login-field > img {
  width: 22px;
  height: 22px;
  margin-left: 18px;
  color: #6a7680;
  opacity: .82;
}
.customer-login-field input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 48px 0 15px;
  border: 0;
  outline: 0;
  color: #0b2741;
  background: transparent;
  font: inherit;
  font-size: .94rem;
}
.customer-login-field input::placeholder { color: #7d858d; }
.customer-login-field input:-webkit-autofill,
.customer-login-field input:-webkit-autofill:hover,
.customer-login-field input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #0b2741;
  transition: background-color 9999s ease-out;
}
.customer-password-toggle {
  position: absolute;
  right: 9px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #63717c;
  background: transparent;
  cursor: pointer;
}
.customer-password-toggle:hover { background: #eef1f2; }
.customer-password-toggle:focus-visible { outline: 2px solid #bd8d35; outline-offset: 1px; }
.customer-password-toggle img { width: 18px; height: 18px; }
.customer-login-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 51px;
  margin-top: 21px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  color: #d9aa4e;
  background: #082743;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.customer-login-submit img {
  position: absolute;
  right: 20px;
  width: 18px;
  height: 18px;
  filter: invert(71%) sepia(43%) saturate(719%) hue-rotate(359deg) brightness(90%) contrast(91%);
}
.customer-login-submit:hover { background: #0d3558; }
.customer-login-submit:active { transform: translateY(1px); }
.customer-login-submit:focus-visible { outline: 3px solid rgba(189,141,53,.38); outline-offset: 2px; }
.customer-login-account-note,
.customer-login-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a858e;
  font-size: .79rem;
}
.customer-login-account-note { margin: 13px 0 0; }
.customer-login-account-note img,
.customer-login-secure img,
.customer-login-support > img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: .75;
}
.customer-login-support {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding-top: 26px;
  border-top: 1px solid rgba(189,141,53,.65);
}
.customer-login-support p {
  margin: 0;
  color: #263d50;
  font-size: .86rem;
}
.customer-login-support a {
  color: #24588a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.customer-login-secure { margin: 20px 0 0; }
.customer-login-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 83px;
  padding: 0 87px 0 68px;
  border-top: 1px solid #d9dde0;
  color: #737d85;
  background: #faf8f5;
  font-size: .8rem;
}
.customer-login-footer nav { display: flex; gap: 60px; }
.customer-login-footer a,
.customer-login-footer nav span { color: #68747e; }
.customer-login-footer a:hover { color: #b8872d; }

@media (max-width: 1180px) {
  body.page-customer-login .site-header-inner .brand-wordmark { display: none; }
  body.page-customer-login .site-header-inner .main-nav { position: static; margin-left: auto; transform: none; }
  .customer-login-page { grid-template-columns: minmax(390px, 40vw) minmax(0, 1fr); }
  .customer-login-content { align-items: center; padding: 48px 55px 48px 62px; }
  .customer-login-panel { margin: 0 auto; }
  .customer-login-visual img {
    content: url("../img/customer/customer-login-hero.webp");
    object-position: center;
    transform: scale(1.15) translate(3.5%, -5.5%);
    transform-origin: center 60%;
  }
}
@media (max-width: 920px) {
  body.page-customer-login .site-header-inner .header-inner { min-height: 72px; padding-right: 24px; padding-left: 24px; }
  body.page-customer-login .site-header-inner .brand-logo { width: 44px; height: 44px; }
  body.page-customer-login .site-header-inner .main-nav { display: none; }
  .customer-login-page { grid-template-columns: minmax(300px, 36vw) minmax(0, 1fr); min-height: calc(100svh - 148px); }
  .customer-login-content { padding: 48px 36px 48px 44px; }
  .customer-login-panel h1 { font-size: 2.5rem; }
  .customer-login-footer { min-height: 76px; }
}
@media (max-width: 680px) {
  body.page-customer-login .site-header-inner .header-inner { gap: 10px; min-height: 68px; padding: 0 14px; }
  body.page-customer-login .site-header-inner .brand-logo { width: 40px; height: 40px; }
  body.page-customer-login .site-header-inner .header-contact { display: none; }
  body.page-customer-login .site-header-inner .lang-switch { gap: 5px; }
  body.page-customer-login .site-header-inner .lang-switch a,
  body.page-customer-login .site-header-inner .lang-switch .lang-current { min-width: 34px; padding: 5px 6px; font-size: .72rem; }
  .customer-login-page { grid-template-columns: 1fr; min-height: auto; }
  .customer-login-visual { height: 230px; min-height: 230px; clip-path: none; }
  .customer-login-visual img { object-position: center 69%; }
  .customer-login-content { padding: 38px 22px 45px; }
  .customer-login-panel { max-width: 520px; transform: none; }
  .customer-login-eyebrow { margin-bottom: 19px; }
  .customer-login-panel h1 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .customer-login-intro { margin-top: 17px; }
  .customer-login-progress { grid-template-columns: 1fr; gap: 12px; margin: 25px 0; }
  .customer-login-submit img { right: 24px; }
  .customer-login-footer { display: grid; gap: 12px; padding: 20px 22px; }
  .customer-login-footer nav { flex-wrap: wrap; gap: 8px 24px; }
}
.track-shell { width: min(1280px, calc(100% - 136px)); }
.track-header { margin: 0; }
.track-header h1 {
  padding: 0;
  border: 0;
  font-size: clamp(1.75rem, 2.3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}
.track-header > p:last-child {
  max-width: none;
  margin: 5px 0 0;
  font-size: .78rem;
  line-height: 1.55;
}
.track-search-form {
  grid-template-columns: minmax(0, 1fr) 110px;
  max-width: none;
  margin: 20px 0 19px;
}
.track-search-form input { height: 47px; }
.track-search-button { min-height: 47px; }
.tracking-fleet > h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.3;
}
.tracking-vehicle-list { display: grid; gap: 10px; }
.tracking-vehicle-item {
  overflow: hidden;
  border: 1px solid rgba(181, 207, 222, .18);
  border-radius: 10px;
  background: #08243a;
  transition: border-color .2s ease, background .2s ease;
}
.tracking-vehicle-item[open] {
  border-color: #e4b83f;
  background: #08263e;
}
.tracking-vehicle-row {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 116px;
  gap: 30px;
  padding: 12px 17px;
  cursor: pointer;
  list-style: none;
}
.tracking-vehicle-row::-webkit-details-marker { display: none; }
.tracking-vehicle-row:focus-visible {
  outline: 2px solid #edc35d;
  outline-offset: -3px;
}
.tracking-vehicle-row > img {
  display: block;
  width: 176px;
  height: 92px;
  border-radius: 5px;
  object-fit: cover;
}
.tracking-vehicle-identity { min-width: 0; }
.tracking-vehicle-identity h3 {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.tracking-vehicle-identity dl {
  display: grid;
  gap: 2px;
  margin: 9px 0 0;
}
.tracking-vehicle-identity dl > div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 7px;
  align-items: baseline;
}
.tracking-vehicle-identity dt {
  color: rgba(226, 238, 244, .62);
  font-size: .79rem;
}
.tracking-vehicle-identity dd {
  overflow: hidden;
  margin: 0;
  color: #dce8ee;
  font-size: .8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tracking-row-actions {
  display: grid;
  justify-items: end;
  gap: 13px;
  min-width: 82px;
}
.tracking-current-label {
  padding: 4px 9px;
  border-radius: 4px;
  color: #092238;
  background: #edc35d;
  font-size: .7rem;
  font-weight: 700;
}
.tracking-complete-label {
  padding: 4px 9px;
  border: 1px solid rgba(119, 224, 154, .42);
  border-radius: 4px;
  color: #b9f4ca;
  background: rgba(52, 122, 69, .22);
  font-size: .7rem;
  font-weight: 700;
}
.tracking-toggle-label {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(208, 226, 235, .24);
  border-radius: 50%;
}
.tracking-toggle-label img { width: 14px; height: 14px; opacity: .72; filter: brightness(0) invert(1); }
.tracking-toggle-close { display: none; }
.tracking-vehicle-item[open] .tracking-toggle-open { display: none; }
.tracking-vehicle-item[open] .tracking-toggle-close { display: inline; }
.tracking-statuses {
  max-width: none;
  margin: 0 16px 17px;
  padding: 13px 0 0;
  border: 0;
  border-top: 1px solid rgba(197, 218, 229, .14);
  border-radius: 0;
  background: transparent;
}
.tracking-status-head { margin-bottom: 10px; }
.tracking-status-head h3 {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
}
.tracking-status-grid { gap: 10px; }
.tracking-status-item {
  min-height: 106px;
  gap: 13px;
  padding: 14px 15px;
  border-color: rgba(190, 214, 226, .16);
  border-radius: 7px;
  background: #0b2b43;
}
.tracking-status-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(209, 225, 233, .3);
  border-radius: 50%;
}
.tracking-status-icon img {
  width: 23px;
  height: 23px;
  opacity: .82;
  filter: brightness(0) invert(1);
}
.tracking-status-number {
  margin-right: 11px;
  color: #edc35d;
  font-size: .78rem;
  font-weight: 700;
}
.tracking-status-item p {
  margin-bottom: 5px;
  color: #d9e6ec;
  font-size: .78rem;
}
.tracking-status-item strong { color: #edc35d; font-size: .82rem; }
.tracking-status-item.is-empty strong { color: rgba(226, 237, 243, .46); }
.tracking-status-note { margin-top: 4px; }
.tracking-status-item time { margin-top: 4px; }
.tracking-empty { max-width: none; }

@media (min-width: 930px) {
  body.page-inner:has(.track-page) .site-header-inner { top: 10px; }
  body.page-inner:has(.track-page) .site-header-inner .header-inner { max-width: 1280px; }
  body.page-inner:has(.track-page) .site-footer .container { max-width: 1270px; }
}
@media (max-width: 920px) {
  .track-shell { width: min(100% - 40px, 820px); }
  .tracking-vehicle-row { grid-template-columns: 145px minmax(0, 1fr) auto; gap: 20px; }
  .tracking-vehicle-row > img { width: 145px; }
}
@media (max-width: 620px) {
  .track-page { padding: 96px 0 28px; }
  .track-shell { width: calc(100% - 28px); }
  .track-header h1 { font-size: 2rem; }
  .track-search-form { grid-template-columns: 1fr; gap: 8px; }
  .track-search-form input,
  .track-search-button { border: 1px solid rgba(214,230,238,.2); border-radius: 5px; }
  .tracking-vehicle-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
    min-height: 106px;
    padding: 10px;
  }
  .tracking-vehicle-row > img { width: 96px; height: 79px; }
  .tracking-vehicle-identity h3 { font-size: .98rem; }
  .tracking-vehicle-identity dl { margin-top: 7px; }
  .tracking-vehicle-identity dl > div { grid-template-columns: 43px minmax(0, 1fr); gap: 4px; }
  .tracking-vehicle-identity dt,
  .tracking-vehicle-identity dd { font-size: .66rem; }
  .tracking-row-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .tracking-statuses { margin: 0 10px 12px; }
  .tracking-status-head { display: flex; align-items: baseline; }
  .tracking-status-head span { margin: 0; }
  .tracking-status-grid { grid-template-columns: 1fr; }
}

/* ── 视频专区 V2：站内播放器与已选画廊版式 ─────────────── */
body.page-inner:has(.video-centre-page) { background: #031a2b; }
body.page-inner:has(.video-centre-page) .site-main { padding-top: 0; }
.video-centre-page {
  min-height: 900px;
  margin-top: 0;
  padding: 108px 0 58px;
  background: radial-gradient(circle at 72% 10%, rgba(32, 76, 103, .22), transparent 28%), #031a2b;
}
.video-centre-shell { width: min(1280px, calc(100% - 80px)); }
.video-centre-heading { margin: 0 0 23px; }
.video-centre-heading h1 {
  padding-left: 16px;
  border-left: 4px solid #edc35d;
  font-size: clamp(2.2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
}
.video-featured {
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .66fr);
  border-radius: 10px;
  background: #08243a;
  scroll-margin-top: 94px;
}
.video-featured-image,
.video-story-image { position: relative; isolation: isolate; }
.video-featured-image { aspect-ratio: 16 / 9; }
.video-featured-image::after,
.video-story-image::after { pointer-events: none; z-index: 1; }
.video-featured-image.is-playing::after,
.video-story-image.is-playing::after { display: none; }
.video-featured-image iframe,
.video-story-image iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #020d16;
}
.video-play-control,
.video-story-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #edc35d;
  border-radius: 999px;
  color: #071f32;
  background: rgba(237, 195, 93, .93);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}
.video-play-control { width: 86px; height: 86px; }
.video-play-control span { position: absolute; top: calc(100% + 10px); width: 90px; color: #fff; font-size: .73rem; text-shadow: 0 2px 8px #000; }
.video-play-control img { width: 30px; height: 30px; object-fit: contain; }
.video-story-play { width: 52px; height: 52px; }
.video-story-play img { width: 22px; height: 22px; object-fit: contain; }
.video-play-control:hover,
.video-story-play:hover { color: #071f32; background: #f7d77d; transform: translate(-50%, -50%) scale(1.06); }
.video-platform-chip { z-index: 3; }
.video-embed-missing {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  padding: 8px 12px;
  border: 1px solid rgba(230, 240, 245, .35);
  border-radius: 5px;
  color: rgba(239, 245, 248, .82);
  background: rgba(2, 19, 32, .78);
  font-size: .76rem;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.video-embed-missing-small { font-size: .66rem; }
.video-featured-copy { padding: clamp(30px, 4vw, 54px); }
.video-featured-copy h2 { font-size: clamp(1.75rem, 2.45vw, 2.65rem); }
.video-onsite-note { color: #edc35d !important; font-size: .74rem !important; }
.video-external-link,
.video-story-actions a,
.video-story-actions button { display: inline-flex; align-items: center; gap: 7px; }
.video-external-link img,
.video-story-actions img { width: 14px; height: 14px; object-fit: contain; }
.video-platform-filter { margin: 24px 0 17px; }
.video-platform-filter a { min-width: 78px; border-radius: 5px; }
.video-story-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.video-story-card { display: flex; min-width: 0; flex-direction: column; border-radius: 7px; }
.video-story-image { flex: 0 0 auto; }
.video-story-copy { display: flex; min-height: 155px; flex: 1; flex-direction: column; }
.video-story-copy h2 { font-size: 1.02rem; }
.video-story-actions { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 13px; }
.video-story-actions button,
.video-story-actions a {
  margin: 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(237, 195, 93, .78);
  border-radius: 0;
  color: #edc35d;
  background: transparent;
  font: inherit;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
}
.video-assurance { border-radius: 8px; }

@media (max-width: 920px) {
  .video-centre-page { padding-top: 110px; }
  .video-centre-shell { width: min(100% - 40px, 820px); }
}
@media (min-width: 681px) and (max-width: 920px) {
  .video-featured { grid-template-columns: minmax(0, 1.28fr) minmax(230px, .72fr); }
  .video-featured-image { aspect-ratio: 4 / 3; }
  .video-featured-copy { padding: 24px; }
  .video-featured-copy h2 { font-size: 1.42rem; }
  .video-story-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .video-story-image { aspect-ratio: 4 / 3; }
  .video-platform-filter { margin-top: 40px; }
  .video-story-copy { min-height: 192px; padding: 12px; }
  .video-story-copy h2 { font-size: .84rem; }
  .video-story-copy p { font-size: .68rem; }
  .video-story-actions { gap: 9px; }
  .video-story-actions button,
  .video-story-actions a { font-size: .67rem; }
}
@media (max-width: 680px) {
  .video-featured { grid-template-columns: 1fr; }
  .video-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .video-centre-page { min-height: 0; margin-top: 0; padding: 88px 0 44px; }
  .video-centre-shell { width: calc(100% - 28px); }
  .video-centre-heading { margin-bottom: 18px; }
  .video-centre-heading h1 { padding-left: 12px; font-size: 2.35rem; }
  .video-featured-copy { padding: 24px 19px 27px; }
  .video-story-grid { grid-template-columns: 1fr; }
  .video-story-copy { min-height: 0; }
  .video-play-control { width: 70px; height: 70px; }
}
