:root {
  --ds-color-browser: #dde6f1;
  --ds-color-bg: #f5f7fb;
  --ds-color-surface: #ffffff;
  --ds-color-surface-soft: #f8fafc;
  --ds-color-surface-quiet: #eef3f9;
  --ds-color-border: #dfe6ef;
  --ds-color-border-strong: #cfd8e4;
  --ds-color-text: #1d2733;
  --ds-color-text-strong: #090d14;
  --ds-color-text-muted: #5f6b78;
  --ds-color-text-subtle: #6c7683;
  --ds-color-primary: #206fd8;
  --ds-color-primary-strong: #165ec6;
  --ds-color-primary-soft: #eaf2ff;
  --ds-color-primary-soft-strong: #d8e8ff;
  --ds-color-success: #0b7a50;
  --ds-color-success-soft: #e5f7ef;
  --ds-color-warning: #a16207;
  --ds-color-warning-soft: #fff4d8;
  --ds-color-danger: #d92d20;
  --ds-color-danger-soft: #fdecef;
  --ds-color-overlay: rgba(9, 13, 20, 0.56);
  --ds-color-focus: #1c70ff;
  --ds-space-0: 0;
  --ds-space-1: 4px;
  --ds-space-2: 8px;
  --ds-space-3: 12px;
  --ds-space-4: 16px;
  --ds-space-5: 20px;
  --ds-space-6: 24px;
  --ds-space-7: 28px;
  --ds-space-8: 32px;
  --ds-space-9: 36px;
  --ds-space-10: 40px;
  --ds-space-12: 48px;
  --ds-space-14: 56px;
  --ds-space-16: 64px;
  --ds-radius-xs: 4px;
  --ds-radius-sm: 6px;
  --ds-radius-md: 8px;
  --ds-radius-lg: 10px;
  --ds-radius-xl: 12px;
  --ds-radius-2xl: 14px;
  --ds-radius-control: var(--ds-radius-md);
  --ds-radius-card-sm: var(--ds-radius-lg);
  --ds-radius-card: var(--ds-radius-xl);
  --ds-radius-media: var(--ds-radius-2xl);
  --ds-radius-icon: var(--ds-radius-lg);
  --ds-radius-icon-sm: var(--ds-radius-md);
  --ds-radius-sheet: var(--ds-radius-2xl);
  --ds-radius-pill: 999px;
  --ds-shadow-xs: 0 1px 2px rgba(29, 39, 51, 0.035);
  --ds-shadow-sm: 0 3px 8px rgba(29, 39, 51, 0.04);
  --ds-shadow-md: 0 6px 16px rgba(29, 39, 51, 0.055);
  --ds-shadow-lg: 0 14px 34px rgba(29, 39, 51, 0.09);
  --ds-font-xs: 12px;
  --ds-font-sm: 14px;
  --ds-font-md: 16px;
  --ds-font-lg: 18px;
  --ds-font-xl: 20px;
  --ds-font-2xl: 24px;
  --ds-font-3xl: 28px;
  --ds-font-4xl: 32px;
  --ds-line-tight: 1.12;
  --ds-line-normal: 1.42;
  --ds-line-loose: 1.6;
  --ds-control-h-sm: 36px;
  --ds-control-h-md: 44px;
  --ds-control-h-lg: 52px;
  --ds-touch-target: 44px;
  --ds-icon-xs: 13px;
  --ds-icon-sm: 18px;
  --ds-icon-md: 22px;
  --ds-icon-lg: 26px;
  --ds-icon-xl: 48px;
  --ds-icon-empty: 52px;
  --ds-icon-stroke: 1.85;
  --ds-page-w: 430px;
  --ds-page-pad: 14px;
  --ds-section-gap: 10px;
  --ds-section-title-gap: 6px;
  --ds-cell-h: 52px;
  --ds-cell-h-compact: 48px;
  --ds-cell-pad-x: 12px;
  --ds-cell-icon: 32px;
  --ds-cell-icon-compact: 30px;
  --ds-nav-h: 72px;
  --ds-motion-fast: 120ms;
  --ds-motion-base: 180ms;
  --ds-motion-slow: 260ms;

  --bg: var(--ds-color-bg);
  --surface: var(--ds-color-surface);
  --surface-soft: var(--ds-color-surface-soft);
  --surface-quiet: var(--ds-color-surface-quiet);
  --line: var(--ds-color-border);
  --line-strong: var(--ds-color-border-strong);
  --text: var(--ds-color-text);
  --muted: var(--ds-color-text-muted);
  --subtle: var(--ds-color-text-subtle);
  --blue: var(--ds-color-primary);
  --blue-2: #5a8ff1;
  --blue-soft: var(--ds-color-primary-soft);
  --green: var(--ds-color-success);
  --green-soft: var(--ds-color-success-soft);
  --red: var(--ds-color-danger);
  --red-soft: var(--ds-color-danger-soft);
  --amber: var(--ds-color-warning);
  --amber-soft: var(--ds-color-warning-soft);
  --shadow: var(--ds-shadow-md);
  --shadow-soft: var(--ds-shadow-sm);
  --radius-sm: var(--ds-radius-md);
  --radius-md: var(--ds-radius-lg);
  --radius-lg: var(--ds-radius-xl);
  --radius-xl: var(--ds-radius-2xl);
  --page-pad: var(--ds-page-pad);
  --nav-h: var(--ds-nav-h);
  --page-w: var(--ds-page-w);
  --font-s: var(--ds-font-xs);
  --font-m: var(--ds-font-sm);
  --font-l: var(--ds-font-md);
  --font-xl: var(--ds-font-xl);
  --font-xxl: var(--ds-font-2xl);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--ds-color-browser);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

body.desktop-preview {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 0 24px;
  overflow: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

:where(button, a, input, textarea, select):focus-visible {
  outline: 3px solid rgba(28, 112, 255, 0.72);
  outline-offset: 2px;
}

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

#app {
  width: min(100vw, var(--page-w));
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

body.desktop-preview #app.anchor-app,
body.desktop-preview #app.mobile-preview-app,
body.desktop-preview #app.design-system-app {
  zoom: var(--desktop-preview-scale, 1);
}

body.scaled-mobile-preview {
  min-height: var(--preview-frame-height, 100vh);
  overflow-x: hidden;
}

body.scaled-mobile-preview #app.anchor-app,
body.scaled-mobile-preview #app.mobile-preview-app,
body.scaled-mobile-preview #app.design-system-app {
  position: absolute;
  top: 0;
  left: var(--preview-frame-left, 0);
  margin: 0;
  transform: scale(var(--desktop-preview-scale, 1));
  transform-origin: top left;
}

body.desktop-preview #app {
  margin: 0;
}

body.desktop-preview #app.mobile-preview-app,
body.desktop-preview #app.design-system-app {
  width: 430px;
  height: 860px;
}

body.desktop-preview #app.anchor-app {
  width: 864px;
  height: 1728px;
}

.source-screen {
  width: min(100vw, var(--page-w));
  min-height: 100vh;
  margin: 0 auto;
  background: #e5edf7;
  position: relative;
}

#app.is-loading-assets > * {
  visibility: hidden;
}

#app.is-loading-assets::before {
  content: "";
  position: absolute;
  inset: 0;
  min-height: 100vh;
  background: var(--bg);
  z-index: 30;
}

#app.is-loading-assets::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 31;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(36, 107, 214, 0.16);
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: routeAssetSpin 0.72s linear infinite;
}

@keyframes routeAssetSpin {
  to {
    transform: rotate(360deg);
  }
}

.source-phone {
  position: relative;
  width: 100%;
}

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

.hotspot {
  position: absolute;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.selection-marker {
  position: absolute;
  border: 2px solid rgba(14, 105, 255, 0.78);
  border-radius: 12px;
  background: rgba(14, 105, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 0 0 2px rgba(14, 105, 255, 0.12);
  pointer-events: none;
}

.counter-marker {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.upload-mask {
  position: absolute;
  left: 9%;
  top: 24.6%;
  width: 78%;
  height: 11.3%;
  border-radius: 16px;
  background: #fff;
  pointer-events: none;
}

.single-upload-card {
  position: absolute;
  left: 11%;
  top: 25.8%;
  width: 18%;
  height: 9.3%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px dashed #d4d8de;
  border-radius: 10px;
  background: #f7f8fa;
  color: #7f8790;
  font-size: 14px;
  pointer-events: none;
}

.dynamic-station-badge {
  position: absolute;
  left: 3.8%;
  top: 1.78%;
  width: 28.8%;
  height: 3.9%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #2674df;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(60, 117, 174, 0.14);
  pointer-events: none;
}

.station-badge-pin {
  width: 19px;
  height: 19px;
  position: relative;
  flex: none;
}

.station-badge-pin::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid #2674df;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.station-badge-pin::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #2674df;
}

.upload-icon {
  width: 24px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.upload-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.upload-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 3px;
  bottom: 3px;
  height: 9px;
  background: linear-gradient(135deg, transparent 35%, currentColor 36% 48%, transparent 49%),
    linear-gradient(45deg, transparent 42%, currentColor 43% 54%, transparent 55%);
  opacity: 0.7;
}

.custom-station-screen {
  background: #f2f6fb;
  padding-bottom: env(safe-area-inset-bottom);
}

.custom-topbar {
  height: 54px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  padding: 0 10px;
  background: #fff;
  border-bottom: 1px solid rgba(223, 230, 239, 0.95);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}

.station-back-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-pill);
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--text);
}

.station-back-button .icon {
  width: 19px;
  height: 19px;
}

.station-select-intro {
  padding: 16px 14px 8px;
  display: grid;
  gap: 4px;
}

.station-select-intro p,
.station-select-intro h1,
.station-select-intro span {
  margin: 0;
}

.station-select-intro p {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.station-select-intro h1 {
  color: var(--text);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 850;
}

.station-select-intro span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.station-carousel {
  display: flex;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 14px 14px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 28px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.station-carousel::-webkit-scrollbar {
  display: none;
}

.station-grid-source {
  padding: 10px 14px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y proximity;
  scroll-padding-top: 10px;
  scrollbar-width: none;
}

.station-grid-source::-webkit-scrollbar {
  display: none;
}

.station-grid-source.is-preparing {
  visibility: hidden;
}

.station-select-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.station-slide {
  position: relative;
  flex: 0 0 82%;
  min-height: 356px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-media);
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 39, 51, 0.075);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  text-align: center;
  color: var(--text);
  transition: transform var(--ds-motion-base), border-color var(--ds-motion-base), box-shadow var(--ds-motion-base);
}

.station-slide.active {
  border-color: rgba(32, 111, 216, 0.42);
  box-shadow: 0 14px 34px rgba(32, 111, 216, 0.16);
}

.station-slide-media {
  position: relative;
  min-height: 248px;
  border-radius: var(--ds-radius-card);
  overflow: hidden;
  display: block;
  background: #d8e8ff;
}

.station-slide-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.station-slide-icon {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 74px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(29, 39, 51, 0.12);
  color: #1f63c3;
}

.station-slide-icon .icon {
  width: 62px;
  height: 28px;
}

.station-slide-copy {
  min-height: 54px;
  display: grid;
  justify-items: start;
  gap: 3px;
  text-align: left;
  padding: 0 2px;
}

.station-slide-copy strong {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  color: #111;
}

.station-slide-copy em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
}

.station-slide-check {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: var(--ds-radius-pill);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 14px rgba(32, 111, 216, 0.22);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity var(--ds-motion-fast), transform var(--ds-motion-fast);
}

.station-slide.active .station-slide-check {
  opacity: 1;
  transform: scale(1);
}

.station-slide-check .icon {
  width: 15px;
  height: 15px;
}

.station-select-grid .station-slide {
  flex: initial;
  min-width: 0;
  min-height: 238px;
  padding: 10px;
  border-radius: var(--ds-radius-media);
  grid-template-rows: auto 1fr;
  gap: 9px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  box-shadow: 0 8px 20px rgba(29, 39, 51, 0.065);
}

.station-select-grid .station-slide.active {
  box-shadow: 0 10px 22px rgba(32, 111, 216, 0.13);
}

.station-select-grid .station-slide-media {
  min-height: 0;
  aspect-ratio: 16 / 8.4;
  border-radius: var(--ds-radius-card);
}

.station-select-grid .station-slide-icon {
  left: 12px;
  bottom: 12px;
  width: 68px;
  height: 42px;
  border-radius: 10px;
}

.station-select-grid .station-slide-icon .icon {
  width: 56px;
  height: 26px;
}

.station-select-grid .station-slide-copy {
  min-height: 0;
  gap: 3px;
  padding: 0 4px 2px;
}

.station-select-grid .station-slide-copy strong {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.station-select-grid .station-slide-copy em {
  font-size: 13px;
  line-height: 1.35;
}

.station-select-grid .station-slide-check {
  right: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
}

.station-select-grid .station-slide-check .icon {
  width: 13px;
  height: 13px;
}

.station-horizontal-screen .station-carousel {
  padding-top: 14px;
  padding-bottom: 22px;
  scroll-snap-type: x mandatory;
}

.station-horizontal-screen .station-slide {
  flex-basis: 78%;
  max-width: 336px;
  min-height: 414px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.station-horizontal-screen .station-slide-media {
  min-height: 302px;
}

.station-selected-summary {
  margin: 0 14px 10px;
  min-height: 52px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.station-selected-summary span,
.station-selected-summary em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.station-selected-summary strong {
  min-width: 0;
  font-size: 16px;
  font-weight: 850;
  color: var(--text);
}

.selected-station-name {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-top: 4px;
}

.confirm-bar {
  padding: 10px 14px calc(18px + env(safe-area-inset-bottom));
  background: #f2f6fb;
  border-top: 1px solid rgba(223, 230, 239, 0.7);
}

.confirm-button {
  width: 100%;
  height: 48px;
  border-radius: var(--ds-radius-control);
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  box-shadow: 0 10px 20px rgba(32, 111, 216, 0.2);
}

.screen {
  min-height: 100vh;
  padding-bottom: calc(var(--nav-h) + 18px);
}

.screen.no-nav {
  padding-bottom: 20px;
}

.page {
  padding: 0 var(--page-pad) 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 var(--page-pad);
  background: var(--surface);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
}

.topbar.filled {
  background: var(--blue);
  color: #fff;
  border-bottom-color: transparent;
}

.topbar.green {
  background: var(--green);
  color: #fff;
}

.topbar.red {
  background: var(--red);
  color: #fff;
}

.topbar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: inherit;
}

.icon {
  width: var(--ds-icon-md);
  height: var(--ds-icon-md);
  stroke: currentColor;
  fill: none;
  stroke-width: var(--ds-icon-stroke, 1.85);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  flex: none;
}

.icon[data-icon="search"],
.anchor-icon[data-icon="search"] {
  transform: translateX(1px);
}

.icon[data-icon="car"],
.anchor-icon[data-icon="car"] {
  transform: scale(1.18);
}

.icon.sm {
  width: var(--ds-icon-sm);
  height: var(--ds-icon-sm);
}

.icon.lg {
  width: var(--ds-icon-lg);
  height: var(--ds-icon-lg);
}

.section {
  margin-top: 16px;
}

.section:first-child {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}

.section-head .more {
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  box-shadow: var(--shadow-soft);
}

.card.padded {
  padding: 14px;
}

.soft-card {
  background: var(--surface-soft);
  border: 1px solid rgba(223, 230, 239, 0.8);
  border-radius: var(--ds-radius-card);
}

.chip-row,
.tabs,
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip,
.tab,
.pill {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 14px;
  font-size: var(--font-m);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.chip {
  background: var(--surface-soft);
  color: var(--muted);
}

.chip.active,
.tab.active,
.pill.active {
  background: #fff;
  border-color: transparent;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(32, 111, 216, 0.16);
}

.tab {
  background: rgba(255, 255, 255, 0.78);
  color: #526071;
}

.tab.active {
  color: var(--blue);
}

.pill {
  background: #f1f4f8;
  color: var(--muted);
}

.pill.active {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.button,
.button-secondary,
.button-ghost {
  min-height: var(--ds-touch-target);
  height: var(--ds-control-h-md);
  border-radius: var(--ds-radius-pill);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--font-m);
  font-weight: 800;
  transition: background-color var(--ds-motion-fast), border-color var(--ds-motion-fast), color var(--ds-motion-fast), box-shadow var(--ds-motion-fast);
}

.button {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(32, 111, 216, 0.16);
}

.button.secondary,
.button-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.button.ghost,
.button-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(32, 111, 216, 0.16);
}

.button.green {
  background: var(--green);
}

.button.red {
  background: var(--red);
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stack {
  display: grid;
  gap: 12px;
}

.muted {
  color: var(--muted);
}

.subtle {
  color: var(--subtle);
}

.tiny {
  font-size: var(--font-s);
}

.body {
  font-size: var(--font-m);
  line-height: 1.5;
}

.strong {
  font-weight: 800;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

.ds-page {
  background:
    linear-gradient(180deg, rgba(32, 111, 216, 0.06), transparent 220px),
    var(--bg);
}

.ds-shell {
  padding-top: 18px;
}

.ds-section {
  display: grid;
  gap: 12px;
}

.ds-section + .ds-section {
  margin-top: 22px;
}

.ds-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ds-section-title h2 {
  margin: 0;
  min-width: 0;
  font-size: 18px;
  line-height: var(--ds-line-tight);
  font-weight: 850;
}

.ds-section-title span {
  color: var(--muted);
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
}

.ds-token-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ds-swatch {
  min-height: 94px;
  padding: 12px;
  display: grid;
  align-content: space-between;
  gap: 10px;
}

.ds-swatch-chip {
  height: 34px;
  border-radius: var(--ds-radius-card-sm);
  border: 1px solid rgba(29, 39, 51, 0.08);
  background: var(--swatch);
}

.ds-swatch-chip.shadow {
  border-color: rgba(29, 39, 51, 0.06);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: 0 12px 20px rgba(29, 39, 51, 0.14), inset 0 0 0 1px rgba(29, 39, 51, 0.04);
}

.ds-swatch strong,
.ds-swatch code {
  display: block;
}

.ds-swatch strong {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 850;
}

.ds-swatch code {
  margin-top: 4px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.ds-radius-grid {
  display: grid;
  gap: 10px;
}

.ds-radius-sample {
  min-height: 58px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.ds-radius-sample span {
  width: 64px;
  height: 42px;
  border-radius: var(--sample-radius);
  border: 1px solid var(--ds-color-primary-soft-strong);
  background: var(--blue-soft);
}

.ds-radius-sample strong,
.ds-radius-sample code {
  display: block;
}

.ds-radius-sample strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
}

.ds-radius-sample code {
  margin-top: 4px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.ds-type-card {
  display: grid;
  gap: 8px;
}

.ds-type-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.ds-type-line:last-child {
  border-bottom: 0;
}

.ds-type-line strong {
  color: var(--text);
}

.ds-type-line span {
  color: var(--muted);
  font-size: 12px;
}

.ds-component-panel {
  display: grid;
  gap: 12px;
}

.ds-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ds-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ds-badge {
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--ds-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.ds-badge.primary {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: var(--ds-color-primary-soft-strong);
}

.ds-badge.success {
  color: var(--green);
  background: var(--green-soft);
  border-color: #bfdfcf;
}

.ds-badge.warning {
  color: var(--amber);
  background: var(--amber-soft);
  border-color: #ead5a6;
}

.ds-badge.danger {
  color: var(--red);
  background: var(--red-soft);
  border-color: #f5c5c1;
}

.ds-list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  overflow: hidden;
}

.ds-list-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
}

.ds-list-row:last-child {
  border-bottom: 0;
}

.ds-list-row-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.ds-list-row-icon .icon {
  width: 20px;
  height: 20px;
}

.ds-list-row strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.ds-list-row em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.ds-list-row i {
  color: var(--subtle);
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.ds-icon-panel {
  display: grid;
  gap: 12px;
}

.ds-icon-panel + .ds-icon-panel {
  margin-top: 10px;
}

.ds-icon-panel-title {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.ds-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ds-icon-sample {
  min-width: 0;
  min-height: 86px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface-soft);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.ds-icon-sample > span {
  width: 38px;
  height: 38px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.ds-icon-sample .icon {
  width: 24px;
  height: 24px;
}

.ds-icon-sample .icon[data-icon^="station_"] {
  width: 30px;
  height: 18px;
}

.ds-icon-sample strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.ds-field {
  min-height: 52px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-control);
  background: var(--surface);
  color: var(--muted);
}

.ds-field .icon {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

.ds-field span {
  font-size: 14px;
  font-weight: 650;
}

.ds-textarea-box {
  min-height: 104px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card-sm);
  background: var(--surface);
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.5;
}

.ds-callout {
  min-height: 92px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--ds-radius-card);
  border: 1px solid var(--ds-color-primary-soft-strong);
  background: linear-gradient(180deg, #f6faff, #eef6ff);
}

.ds-callout-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
}

.ds-callout h3 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.2;
}

.ds-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100vw, var(--page-w));
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(223, 230, 239, 0.95);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 30;
}

.bottom-nav.five {
  grid-template-columns: repeat(5, 1fr);
}

.nav-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  color: #7a8794;
  font-size: 11px;
  font-weight: 700;
}

.nav-item.active {
  color: var(--blue);
}

.nav-item .icon {
  width: 24px;
  height: 24px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.portal-hero {
  position: relative;
  padding: 14px 16px 18px;
  background: #4b91e6;
  color: #fff;
}

.portal-hero .weather {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  font-size: 15px;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 18px;
}

.portal-greeting {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 14px;
}

.portal-search {
  height: 40px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #7d8795;
  margin-bottom: 16px;
}

.portal-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shortcut {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.shortcut .glyph {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
}

.portal-tools {
  padding: 16px;
}

.portal-tools .tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 10px;
  padding-top: 6px;
}

.tool {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.tool .glyph {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--blue);
  border: 1px solid rgba(223, 230, 239, 0.75);
}

.promo-banner {
  margin: 16px 16px 0;
  border-radius: var(--radius-lg);
  background: #ecf8ff;
  border: 1px solid #d4e7ff;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 92px;
}

.promo-banner .copy {
  padding: 16px;
}

.promo-banner .copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #0f5fa8;
}

.promo-banner .copy p {
  margin: 0;
  color: #3b6d99;
  font-size: 13px;
}

.promo-banner .image {
  min-width: 110px;
  background: #d7ebff;
  display: grid;
  place-items: end center;
  padding: 8px 10px 0;
}

.promo-banner .image .badge {
  width: 72px;
  height: 72px;
  border-radius: 18px 18px 0 0;
  background: #ffffff;
  border: 1px solid rgba(32, 111, 216, 0.15);
}

.entry-card {
  margin: 16px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.entry-card .title {
  font-size: 18px;
  font-weight: 800;
}

.entry-card .meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.entry-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.entry-row {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.entry-row .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.entry-row .label {
  font-size: 15px;
  font-weight: 800;
}

.entry-row .desc {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.entry-row .action {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.illustration-box {
  border-radius: var(--radius-lg);
  background: #e8f1fd;
  border: 1px solid #d7e2f5;
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.illustration-box.green {
  background: #daf2e6;
  border-color: #c8e9d8;
}

.illustration-box.red {
  background: #fdeaea;
  border-color: #f6d2d5;
}

.station-preview {
  display: grid;
  place-items: center;
  gap: 8px;
  color: #124f9b;
}

.station-preview img {
  width: 170px;
  height: 108px;
  object-fit: contain;
  filter: saturate(0.98);
}

.station-preview .name {
  font-size: 18px;
  font-weight: 800;
  color: #114a90;
}

.station-preview .sub {
  font-size: 13px;
  color: #5d7190;
}

.search-field {
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--muted);
}

.search-field input {
  border: 0;
  outline: none;
  background: transparent;
  flex: 1;
  color: inherit;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  margin-top: 14px;
}

.station-card {
  border-radius: 16px;
  background: #4d90e7;
  color: #fff;
  box-shadow: var(--shadow);
  padding: 10px 10px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.station-card.active {
  outline: 3px solid rgba(32, 111, 216, 0.18);
  transform: translateY(-1px);
}

.station-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: #3f82d7;
}

.station-card .name {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
}

.station-switch-footer {
  position: sticky;
  bottom: 0;
  margin-top: 16px;
  padding: 14px 0 18px;
  background: var(--bg);
  border-top: 1px solid rgba(223, 230, 239, 0.7);
}

.station-switch-footer .button {
  width: 100%;
}

.page-hero {
  padding: 14px 16px 16px;
  background: var(--blue);
  color: #fff;
}

.page-hero.green {
  background: var(--green);
}

.page-hero.red {
  background: var(--red);
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero-topline .station-chip,
.hero-topline .action-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.hero-search {
  margin-bottom: 14px;
}

.hero-search .search-field {
  background: rgba(255, 255, 255, 0.94);
  border-color: transparent;
}

.hero-summary {
  display: grid;
  gap: 12px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  min-height: 72px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.stat-card .value {
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.stat-card .label {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.92;
}

.hero-visual {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12px;
  align-items: center;
}

.hero-visual .visual-card {
  min-height: 164px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  padding: 14px;
}

.hero-visual .visual-card img {
  width: 100%;
  max-width: 190px;
  object-fit: contain;
}

.hero-visual .hero-copy {
  font-size: 14px;
  line-height: 1.7;
}

.hero-visual .hero-copy .flow {
  font-size: 28px;
  font-weight: 900;
  margin-top: 8px;
}

.hero-visual .hero-copy .weather {
  color: #f3ff99;
}

.announcements {
  padding: 16px;
}

.notice-banner {
  border-radius: 18px;
  background: #fff3f4;
  border: 1px solid #f3ccd0;
  color: #ca2e3a;
  padding: 12px 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.notice-banner .sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #dd5e69;
}

.announcement-list,
.station-list,
.queue-list,
.feedback-list,
.record-list,
.menu-list,
.parking-list,
.ride-list,
.traffic-list,
.food-list,
.redeem-grid {
  display: grid;
  gap: 12px;
}

.list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.list-card.clickable {
  cursor: pointer;
}

.list-card .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.tag.red {
  color: var(--red);
  background: var(--red-soft);
}

.tag.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.tag.green {
  color: var(--green);
  background: var(--green-soft);
}

.tag.amber {
  color: var(--amber);
  background: var(--amber-soft);
}

.tag.gray {
  color: var(--muted);
  background: #eff2f5;
}

.card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.card-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--subtle);
  font-size: 12px;
  margin-top: 8px;
}

.bottom-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 12px 0 0;
}

.traffic-shell,
.parking-shell,
.feedback-shell,
.driver-shell,
.taxi-house-shell {
  padding: 16px 16px 0;
}

.tab-strip {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 12px 0 16px;
}

.tab-strip .tab {
  flex: 1;
  text-align: center;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  padding: 12px 10px;
  border-radius: 16px;
  background: #f3f6fa;
  border: 1px solid var(--line);
  text-align: center;
}

.metric .big {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.metric .small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.meter {
  height: 8px;
  border-radius: 999px;
  background: #ecf0f4;
  overflow: hidden;
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.meter.red > span {
  background: var(--red);
}

.meter.blue > span {
  background: var(--blue);
}

.banner-soft {
  border-radius: 16px;
  background: #fff8df;
  border: 1px solid #f3df9d;
  padding: 12px 14px;
  color: #b56f00;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 12px 14px;
}

.route-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.route-card .head .title {
  font-size: 16px;
  font-weight: 800;
}

.route-card .price {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.route-card .desc {
  color: var(--muted);
  font-size: 13px;
}

.route-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.map-shell {
  border-radius: var(--radius-lg);
  background: #edf4ff;
  border: 1px solid #dbe8ff;
  min-height: 220px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.map-shell .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(32, 111, 216, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(32, 111, 216, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
  pointer-events: none;
}

.map-shell .center {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: grid;
  place-items: center;
  gap: 10px;
}

.map-shell .center .badge {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.map-shell .center .label {
  font-size: 18px;
  font-weight: 800;
}

.queue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.queue-box {
  background: #f3f6fa;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  text-align: center;
}

.queue-box .num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.queue-box .text {
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.badge-pill.green {
  color: var(--green);
  background: var(--green-soft);
}

.badge-pill.red {
  color: var(--red);
  background: var(--red-soft);
}

.badge-pill.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.badge-pill.gray {
  color: var(--muted);
  background: #eff2f5;
}

.form-field {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.input,
.textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
}

.textarea {
  min-height: 110px;
  resize: none;
}

.counter {
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.upload-tile {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1px dashed #c8d4e2;
  background: #fbfcfe;
  display: grid;
  place-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.feedback-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.feedback-summary .summary {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px 10px;
  text-align: center;
}

.feedback-summary .summary .num {
  font-size: 22px;
  font-weight: 900;
}

.feedback-summary .summary .label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.reply-box {
  border-radius: 14px;
  background: #eef5ff;
  border: 1px solid #d8e6ff;
  padding: 10px 12px;
  color: #4c658f;
  margin-top: 10px;
}

.profile-header {
  background: #3a78dd;
  color: #fff;
  padding: 16px;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  color: #fff;
}

.profile-card .name {
  font-size: 22px;
  font-weight: 900;
}

.profile-card .meta {
  margin-top: 6px;
  opacity: 0.92;
  font-size: 12px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.profile-stats .stat {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}

.profile-stats .stat .num {
  font-size: 22px;
  font-weight: 900;
}

.profile-stats .stat .label {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.9;
}

.menu-list .menu-row {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.menu-list .menu-row:last-child {
  border-bottom: 0;
}

.menu-list .menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-list .menu-left .glyph {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--blue);
}

.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 12px 0 0;
}

.splash-shell {
  min-height: 100vh;
  background: #eef5ff;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.splash-card {
  width: 100%;
  max-width: 398px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.splash-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: #dfeeff;
  position: relative;
}

/* no background orbs */

.splash-visual.green {
  background: #d9f2e7;
}

.splash-visual .inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.splash-visual .brand {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  color: #0f57a2;
}

.splash-visual .sub {
  margin-top: 6px;
  color: #4f6f93;
  font-size: 14px;
  font-weight: 700;
}

.splash-visual img {
  width: min(80%, 280px);
  object-fit: contain;
  margin-top: 22px;
}

.splash-copy {
  padding: 18px 16px 20px;
}

.splash-copy .title {
  font-size: 20px;
  font-weight: 900;
}

.splash-copy .desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.splash-actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.splash-shell {
  min-height: 100vh;
  background: #dff0ff;
  display: block;
  padding: 0;
}

.splash-trigger {
  display: block;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  text-align: left;
  background: #dff0ff;
}

.splash-full-image {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.station-home-screen {
  background: #f4f7fb;
  padding-bottom: calc(var(--nav-h) + 18px);
}

.station-home-hero {
  position: relative;
  min-height: 298px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(48, 120, 221, 0.12) 0%, rgba(48, 120, 221, 0.16) 46%, rgba(48, 120, 221, 0.05) 100%),
    var(--station-hero-image) center center / cover no-repeat;
}

.station-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(73, 140, 220, 0.05), rgba(255, 255, 255, 0.2) 68%, rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.station-home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.66));
  pointer-events: none;
}

.station-home-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 14px 16px 18px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.station-home-hero .hero-topline {
  margin: 0;
  gap: 10px;
  align-items: center;
}

.station-chip {
  min-width: 112px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  color: #2874df;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  box-shadow: 0 2px 10px rgba(39, 112, 202, 0.12);
  font-size: 18px;
  font-weight: 800;
}

.station-chip-pin {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: #2874df;
}

.station-chip-pin .icon {
  width: 18px;
  height: 18px;
}

.hero-search {
  flex: 1;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #a8afba;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 700;
  min-width: 0;
}

.hero-search .icon {
  width: 20px;
  height: 20px;
  color: #b0b6c1;
  flex: none;
}

.hero-search span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-badge {
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.23);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero-badge.small {
  min-width: 38px;
  padding: 0 12px;
}

.hero-badge.icon-only {
  width: 38px;
}

.station-home-hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px 4px;
}

.station-home-flow {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.station-home-flow span {
  color: #e7ff42;
}

.station-home-weather {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
  color: #f2ea00;
}

.station-home-weather strong {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
}

.station-home-weather span {
  font-size: 24px;
  font-weight: 800;
  padding-bottom: 10px;
}

.section-head {
  padding: 0 16px;
}

.section-head-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 900;
}

.section-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

.section-icon .icon {
  width: 26px;
  height: 26px;
}

.station-home-screen .announcements {
  padding: 14px 0 0;
}

.announcement-list {
  padding: 0 16px;
}

.announcement-card {
  width: 100%;
  text-align: left;
}

.announcement-card .row {
  align-items: center;
}

.announcement-text {
  flex: 1;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.station-services {
  margin-top: 14px;
}

.station-service-card {
  margin: 0 16px;
  padding: 14px 14px 12px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.station-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 8px;
}

.station-service-item {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  min-width: 0;
}

.station-service-item .glyph {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--tile-bg, #eaf2ff);
  color: var(--tile-fg, var(--blue));
}

.station-service-item .glyph .icon {
  width: 32px;
  height: 32px;
}

.station-service-item .label {
  line-height: 1.35;
}

.station-home-screen .bottom-nav {
  background: rgba(255, 255, 255, 0.98);
}

.services-shell {
  min-height: 100vh;
  background: #fff;
  color: var(--text);
}

#app.mobile-preview-app .services-shell {
  height: 100%;
  overflow-y: auto;
}

#app.mobile-preview-app .services-layout {
  min-height: 0;
}

#app.mobile-preview-app .source-screen {
  width: 100%;
  height: 100%;
  min-height: 0;
}


.services-header {
  position: sticky;
  top: 0;
  z-index: 22;
  height: 54px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #d62b2f;
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: 0 2px 8px rgba(117, 18, 22, 0.12);
  flex-shrink: 0;
}

.services-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.services-back {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.services-search {
  flex: 1;
  min-width: 0;
  height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #93a0ad;
  font-size: 15px;
  font-weight: 700;
}

.services-search .icon {
  width: 18px;
  height: 18px;
  color: #c1c7d0;
  flex: none;
}

.services-search span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.services-actions {
  flex: none;
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #4a4f57;
}

.services-action {
  display: grid;
  place-items: center;
  flex: none;
  color: inherit;
}

.services-action .icon {
  width: 18px;
  height: 18px;
}

.services-action.ring {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.services-title-band {
  padding: 14px 16px 12px;
  background: #fff;
  border-bottom: 1px solid rgba(223, 230, 239, 0.92);
}

.services-title-band h1 {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.1;
}

.services-layout {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  align-items: start;
  min-height: calc(100vh - 114px);
}

.services-sidebar {
  background: #f5f7f9;
  border-right: 1px solid rgba(223, 230, 239, 0.95);
}

.services-sidebar-item {
  width: 100%;
  min-height: 58px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #2e3540;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid rgba(223, 230, 239, 0.58);
}

.services-sidebar-item span {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.services-sidebar-item.active {
  color: var(--red);
  background: #fff0f2;
  border-left: 4px solid var(--red);
  padding-left: 10px;
}

.services-main {
  padding: 10px 16px 22px 14px;
  background: #fff;
}

.services-section + .services-section {
  margin-top: 18px;
}

.services-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #20252b;
}

.services-section-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.services-section-bar {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--red);
  flex: none;
}

.services-link-list {
  display: grid;
  gap: 18px;
}

.services-link {
  text-align: left;
  color: #6a7280;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.services-link:active {
  color: var(--blue);
}

.modal-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
}

.modal-root.open {
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 34, 47, 0.42);
}

.modal-panel {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(calc(100vw - 20px), var(--page-w));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.modal-panel .modal-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.modal-panel .modal-meta {
  color: var(--muted);
  font-size: 12px;
}

.modal-panel .modal-body {
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--ds-nav-h) + 34px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(31, 39, 51, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  z-index: 60;
  box-shadow: var(--shadow);
}

.station-list .station-row,
.queue-list .station-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.station-list .left,
.queue-list .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.station-list .thumb,
.queue-list .thumb {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex: none;
}

.station-list .station-title,
.queue-list .station-title {
  font-size: 17px;
  font-weight: 800;
}

.station-list .station-meta,
.queue-list .station-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.queue-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.queue-stat-card {
  background: #f2f5fa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}

.queue-stat-card .label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.queue-stat-card .big {
  font-size: 22px;
  font-weight: 900;
}

.note-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.station-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.station-mini {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.station-mini .head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.station-mini .station {
  font-size: 16px;
  font-weight: 800;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.slot {
  min-height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f6f8fb;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.slot.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.slot.muted {
  color: #b0b8c0;
  background: #f1f3f5;
}

.price-table {
  display: grid;
  gap: 10px;
}

.price-row {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.price-row .left .title {
  font-size: 16px;
  font-weight: 800;
}

.price-row .left .sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.price-row .right {
  text-align: right;
}

.price-row .right .num {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
}

.price-row .right .sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.food-item,
.redeem-item {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.food-item .title,
.redeem-item .title {
  font-size: 17px;
  font-weight: 800;
}

.food-item .sub,
.redeem-item .sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f4f8;
  color: var(--muted);
}

.counter-value {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
}

.success-strip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-soft);
  padding: 5px 9px;
  border-radius: 999px;
}

.muted-strip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  background: #eff2f5;
  padding: 5px 9px;
  border-radius: 999px;
}

.top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.top-actions .badge-pill {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.floating-button {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
}

.align-center {
  text-align: center;
}

.spacer-8 {
  height: 8px;
}

.spacer-12 {
  height: 12px;
}

.spacer-16 {
  height: 16px;
}

.spacer-20 {
  height: 20px;
}

#app.anchor-app {
  --page-w: 864px;
  width: min(100vw, var(--page-w));
  height: min(200vw, calc(var(--page-w) + var(--page-w)));
  min-height: 0;
  background: #f5f7fb;
  overflow: hidden;
  aspect-ratio: 1 / 2;
}

#app.anchor-app .anchor-page {
  height: 100%;
  min-height: 0;
}

#app.mobile-preview-app {
  --page-w: 430px;
  width: 430px;
  height: var(--preview-layout-height, 860px);
  min-height: 0;
  background: var(--ds-color-bg);
  overflow: hidden;
  aspect-ratio: 1 / 2;
}

#app.design-system-app {
  --page-w: 430px;
  width: 430px;
  height: var(--preview-layout-height, 860px);
  min-height: 0;
  background: var(--ds-color-bg);
  overflow: hidden;
  aspect-ratio: 1 / 2;
}

#app.design-system-app .screen {
  height: 100%;
  min-height: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#app.design-system-app .page {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

#app.design-system-app .page::-webkit-scrollbar {
  display: none;
}

#app.mobile-preview-app .ab-page {
  height: 100%;
  min-height: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#app.mobile-preview-app .ab-page-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

#app.mobile-preview-app .ab-page-body::-webkit-scrollbar {
  display: none;
}

#app.mobile-preview-app .ab-bottom-nav {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  flex-shrink: 0;
}

#app.mobile-preview-app .ab-page-footer {
  flex-shrink: 0;
}

#app.mobile-preview-app .splash-shell {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #dff0ff;
}

#app.mobile-preview-app .splash-trigger {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #dff0ff;
}

#app.mobile-preview-app .splash-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#app.mobile-preview-app .source-screen.custom-station-screen {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#app.mobile-preview-app .station-grid-source {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

#app.mobile-preview-app .station-carousel {
  flex: 1 1 auto;
  min-height: 0;
}

#app.mobile-preview-app .confirm-bar {
  flex-shrink: 0;
  position: static;
}

#app.mobile-preview-app .source-screen.custom-station-screen .station-carousel {
  padding-bottom: 16px;
}

#app.mobile-preview-app .source-screen.custom-station-screen .station-grid-source {
  padding-bottom: 16px;
}

.anchor-page {
  --a-bg: #f5f7fb;
  --a-surface: #ffffff;
  --a-line: #dfe4ec;
  --a-line-strong: #d7dde6;
  --a-text: #090d14;
  --a-muted: #6d7480;
  --a-soft: #9aa2ad;
  --a-blue: #2676e8;
  --a-blue-dark: #155fd4;
  --a-blue-soft: #eaf2ff;
  --a-green: #179b61;
  --a-green-soft: #eaf8f1;
  --a-amber: #ff8b10;
  --a-amber-soft: #fff4e5;
  --a-red: #f03028;
  --a-red-soft: #fff0f0;
  --a-radius-card: 24px;
  --a-radius-control: 17px;
  --a-shadow-card: 0 8px 22px rgba(21, 34, 52, 0.06);
  --a-shadow-soft: 0 4px 14px rgba(21, 34, 52, 0.05);
  min-height: 100vh;
  background: var(--a-bg);
  color: var(--a-text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.anchor-page.anchor-detail-page {
  font-family: "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.anchor-list-page .anchor-topbar h1 {
  font-size: 34px;
}

.anchor-list-page .anchor-search-box {
  font-size: 28px;
}

.anchor-list-page .anchor-status-filter {
  font-size: 25px;
}

.anchor-list-page .anchor-segment {
  font-size: 27px;
}

.anchor-list-page .anchor-table-head {
  font-size: 24px;
}

.anchor-list-page .anchor-queue-row strong {
  font-size: 25px;
}

.anchor-list-page .anchor-queue-row > span:not(.anchor-station-icon):not(.anchor-status):not(.anchor-chevron) {
  font-size: 20px;
}

.anchor-list-page .anchor-status {
  font-size: 19px;
}

.anchor-page.with-nav {
  padding-bottom: 122px;
}

.anchor-icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: var(--ds-icon-stroke, 1.85);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  flex: none;
}

.anchor-topbar {
  height: 118px;
  display: grid;
  grid-template-columns: 130px 1fr 170px;
  align-items: center;
  padding: 0 34px;
  background: #fff;
  border-bottom: 1px solid rgba(219, 224, 232, 0.86);
}

.anchor-topbar h1 {
  margin: 0;
  text-align: center;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.anchor-back,
.detail-back {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #11151b;
  font-size: 54px;
}

.anchor-refresh {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--a-blue);
  font-size: 26px;
  font-weight: 700;
}

.anchor-refresh .anchor-icon {
  font-size: 38px;
}

.anchor-settings {
  justify-self: end;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #12161c;
  font-size: 48px;
}

.anchor-search-box {
  height: 82px;
  margin: 0 28px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  border: 1px solid var(--a-line-strong);
  border-radius: 18px;
  background: #fff;
  color: #9298a2;
  font-size: 31px;
  box-shadow: 0 1px 2px rgba(12, 24, 39, 0.02);
}

.anchor-search-box .anchor-icon {
  font-size: 42px;
  color: #7d828a;
}

.anchor-status-grid,
.anchor-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 28px 36px;
}

.anchor-status-filter {
  height: 75px;
  border-radius: 19px;
  border: 1px solid var(--a-line-strong);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 600;
  box-shadow: var(--a-shadow-soft);
}

.anchor-status-filter .anchor-icon {
  font-size: 43px;
}

.anchor-status-filter.green .anchor-icon {
  color: var(--a-green);
}

.anchor-status-filter.amber .anchor-icon {
  color: var(--a-amber);
}

.anchor-status-filter.red .anchor-icon {
  color: var(--a-red);
}

.anchor-segment-grid {
  margin-bottom: 32px;
}

.anchor-segment {
  height: 64px;
  border-radius: 17px;
  background: #f0f2f6;
  color: #6f7783;
  font-size: 31px;
  font-weight: 600;
  box-shadow: inset 0 1px 5px rgba(16, 32, 48, 0.04);
}

.anchor-segment.active {
  background: linear-gradient(90deg, #2377e9, #246bdd);
  color: #fff;
  box-shadow: 0 8px 18px rgba(34, 108, 224, 0.18);
}

.anchor-table-head {
  height: 54px;
  margin: 0 31px 11px;
  display: grid;
  grid-template-columns: 1.56fr 0.76fr 0.88fr 0.8fr;
  align-items: center;
  color: #737b87;
  font-size: 28px;
  line-height: 1;
}

.anchor-table-head strong {
  color: #616975;
  font-size: 29px;
  font-weight: 400;
}

.anchor-table-head span {
  text-align: center;
  font-weight: 500;
}

.anchor-list-card {
  margin: 0 24px;
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 18px;
  box-shadow: var(--a-shadow-card);
  overflow: hidden;
}

.anchor-queue-row {
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 46px 1.05fr 0.7fr 0.9fr 0.95fr 0.78fr 22px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #fff;
  color: #15191f;
  text-align: left;
  border-bottom: 1px solid #e6e9ee;
}

.anchor-queue-row:last-child {
  border-bottom: 0;
}

.anchor-station-icon {
  display: grid;
  place-items: center;
  color: var(--a-blue);
  font-size: 42px;
}

.anchor-queue-row strong {
  font-size: 30px;
  font-weight: 800;
}

.anchor-status {
  height: 42px;
  min-width: 74px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 700;
  border: 1px solid currentColor;
}

.anchor-status.green {
  color: var(--a-green);
  background: var(--a-green-soft);
  border-color: #b9e4cd;
}

.anchor-status.amber {
  color: var(--a-amber);
  background: var(--a-amber-soft);
  border-color: #ffd1a1;
}

.anchor-status.red {
  color: var(--a-red);
  background: var(--a-red-soft);
  border-color: #ffc9ca;
}

.anchor-queue-row > span:not(.anchor-station-icon):not(.anchor-status):not(.anchor-chevron) {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
}

.anchor-chevron {
  color: #707782;
  font-size: 50px;
  line-height: 1;
}

.anchor-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100vw, var(--page-w));
  height: 122px;
  display: grid;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #dce1e8;
  z-index: 40;
}

#app.anchor-app .anchor-bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  width: 100%;
}

.anchor-bottom-nav.four {
  grid-template-columns: repeat(4, 1fr);
}

.anchor-bottom-nav.five {
  grid-template-columns: repeat(5, 1fr);
}

.anchor-nav-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #666b73;
  font-size: 25px;
  font-weight: 450;
}

.anchor-nav-item .anchor-icon {
  font-size: 45px;
}

.anchor-nav-item.active {
  color: var(--a-blue);
  font-weight: 650;
}

.anchor-detail-hero {
  position: relative;
  height: 280px;
  padding: 0;
  background: #f8fafc;
}

.anchor-detail-hero h1 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.anchor-detail-hero p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #535b66;
  font-size: 24px;
}

.anchor-detail-hero p .anchor-icon {
  font-size: 31px;
  color: #717984;
}

.anchor-nav-button {
  position: absolute;
  right: 37px;
  top: 172px;
  height: 68px;
  width: 167px;
  border: 1px solid #c8d0dc;
  border-radius: 18px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #20252c;
  font-size: 27px;
  font-weight: 750;
}

.anchor-nav-button .anchor-icon {
  color: var(--a-blue);
  font-size: 38px;
  fill: var(--a-blue);
  stroke-width: 1.6;
}

.anchor-detail-hero .detail-back {
  position: absolute;
  left: 37px;
  top: 41px;
}

.anchor-detail-hero > div {
  position: absolute;
  left: 37px;
  top: 127px;
}

.anchor-stat-card {
  height: 214px;
  margin: 0 37px 32px;
  border-radius: 22px;
  border: 1px solid #e0e5ec;
  background: #fff;
  box-shadow: var(--a-shadow-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.anchor-stat-item {
  position: relative;
  display: grid;
  grid-template-rows: 56px 1fr;
  align-content: center;
  row-gap: 12px;
  padding: 30px 24px 26px;
}

.anchor-stat-item + .anchor-stat-item {
  border-left: 1px solid #dfe4ea;
}

.anchor-stat-head {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #4d5662;
  font-size: 26px;
  font-weight: 500;
}

.anchor-stat-head .anchor-icon {
  font-size: 32px;
}

.anchor-stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.anchor-stat-value strong {
  color: currentColor;
  font-size: 56px;
  font-weight: 800;
}

.anchor-stat-value em {
  font-style: normal;
  color: #20252b;
  font-size: 23px;
}

.anchor-stat-item.blue {
  color: var(--a-blue);
}

.anchor-stat-item.green {
  color: #2da260;
}

.anchor-stat-item.amber {
  color: var(--a-amber);
}

.anchor-tabs-card {
  margin: 0 37px;
  border-radius: 18px 18px 0 0;
  background: #fff;
  border: 1px solid #e2e6ed;
  box-shadow: var(--a-shadow-card);
  overflow: hidden;
}

.anchor-large-tabs {
  height: 97px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #e0e5ec;
}

.anchor-large-tabs button {
  position: relative;
  font-size: 34px;
  font-weight: 800;
  color: #5b626d;
}

.anchor-large-tabs button.active {
  color: var(--a-blue);
}

.anchor-large-tabs button.active::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  background: var(--a-blue);
}

.anchor-yard-list {
  padding: 23px 20px 20px;
  display: grid;
  gap: 21px;
}

.anchor-yard-card {
  width: 100%;
  min-height: 242px;
  padding: 24px 24px 20px;
  border-radius: 22px;
  border: 1px solid #e2e7ee;
  background: #fff;
  box-shadow: var(--a-shadow-card);
  text-align: left;
}

.anchor-yard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.anchor-yard-top h3 {
  margin: 0 0 12px;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
}

.anchor-yard-top p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #31506d;
  font-size: 21px;
}

.anchor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.anchor-dot.green {
  color: var(--a-green);
}

.anchor-dot.amber {
  color: var(--a-amber);
}

.anchor-yard-metric {
  min-width: 178px;
  text-align: center;
}

.anchor-yard-metric strong {
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
}

.anchor-yard-metric span {
  margin-left: 6px;
  font-size: 21px;
  color: #15191f;
}

.anchor-yard-metric small {
  display: block;
  margin-top: 10px;
  color: #737b87;
  font-size: 18px;
  font-weight: 500;
}

.anchor-yard-metric.green {
  color: var(--a-green);
}

.anchor-yard-metric.amber {
  color: var(--a-amber);
}

.anchor-car-meter {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 46px repeat(12, 34px);
  align-items: center;
  gap: 9px;
}

.anchor-car-meter::before {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 6h10l2 5v8h-2v-2H7v2H5v-8l2-5Zm1.5 2-1 3h9l-1-3h-7ZM8 15.5A1.5 1.5 0 1 0 8 12.5a1.5 1.5 0 0 0 0 3Zm8 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.anchor-car-meter span {
  height: 28px;
  border-radius: 7px;
  background: #e7e9ed;
}

.anchor-car-meter span.filled {
  background: currentColor;
}

.anchor-car-meter.green {
  color: var(--a-green);
}

.anchor-car-meter.amber {
  color: var(--a-amber);
}

.anchor-yard-foot {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0 1fr 25px;
  align-items: center;
  color: #555d68;
  font-size: 23px;
}

.anchor-yard-foot span {
  opacity: 0;
}

.anchor-yard-foot p {
  margin: 0;
}

.anchor-yard-foot strong {
  color: #6a7079;
  font-size: 54px;
  line-height: 0.6;
}

.anchor-booking-banner {
  min-height: 142px;
  border-radius: 18px;
  border: 1px solid #b9d6ff;
  background: #f7fbff;
  display: grid;
  grid-template-columns: 88px 1fr 183px 30px;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  text-align: left;
}

.anchor-calendar-badge {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 2px solid #68a0f4;
  color: var(--a-blue);
  background: #f1f6ff;
  font-size: 52px;
}

.anchor-booking-banner strong,
.anchor-house-row strong {
  display: block;
  color: #11151b;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 800;
}

.anchor-booking-banner em,
.anchor-house-row em {
  display: block;
  margin-top: 8px;
  color: #69717d;
  font-style: normal;
  font-size: 19px;
}

.anchor-booking-banner b {
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(90deg, #2d83f2, #1e6be0);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 800;
}

.anchor-booking-banner i,
.anchor-house-row i {
  color: #fff;
  font-style: normal;
  font-size: 60px;
  line-height: 1;
}

.anchor-house-row {
  min-height: 122px;
  border-radius: 18px;
  border: 1px solid #e2e7ee;
  background: #fff;
  display: grid;
  grid-template-columns: 88px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  text-align: left;
  box-shadow: var(--a-shadow-soft);
}

.anchor-house-row > span:first-child {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--a-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.anchor-house-row i {
  color: #6f7681;
}

.anchor-form-page {
  background: #f5f7fb;
}

.anchor-two-tabs {
  height: 80px;
  margin: 27px 28px 33px;
  border-radius: 9px 9px 0 0;
  background: #fff;
  border-bottom: 1px solid #e0e5ec;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

.anchor-two-tabs button {
  position: relative;
  color: #7a808a;
  font-size: 34px;
  font-weight: 800;
}

.anchor-two-tabs button.active {
  color: var(--a-blue);
}

.anchor-two-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--a-blue);
}

.anchor-form-card {
  margin: 0 28px;
  padding: 29px 29px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e1e6ed;
  box-shadow: var(--a-shadow-card);
}

.anchor-form-block {
  padding-bottom: 36px;
  margin-bottom: 29px;
  border-bottom: 1px solid #e1e5eb;
}

.anchor-form-block h2,
.anchor-upload-head h2 {
  margin: 0 0 29px;
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
}

.anchor-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}

.anchor-type-grid button {
  height: 94px;
  border-radius: 15px;
  border: 1px solid #dfe4ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #666d78;
  font-size: 31px;
  font-weight: 650;
}

.anchor-type-grid button .anchor-icon {
  color: #9aa1ac;
  font-size: 42px;
}

.anchor-type-grid button.active {
  border-color: var(--a-blue);
  color: var(--a-blue);
  box-shadow: inset 0 0 0 1px var(--a-blue);
}

.anchor-type-grid button.active .anchor-icon {
  color: var(--a-blue);
}

.anchor-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.anchor-category-grid button {
  height: 66px;
  border-radius: 14px;
  border: 1px solid #dfe4ec;
  color: #5e6672;
  font-size: 29px;
  font-weight: 550;
  background: #fff;
}

.anchor-category-grid button.active {
  color: var(--a-blue);
  border-color: var(--a-blue);
  box-shadow: inset 0 0 0 1px var(--a-blue);
  font-weight: 800;
}

.anchor-textarea {
  height: 226px;
  border-radius: 14px;
  border: 1px solid #dfe4ec;
  background: #fff;
  position: relative;
  padding: 27px 24px;
  color: #9aa1ac;
  font-size: 26px;
}

.anchor-textarea em {
  position: absolute;
  right: 24px;
  bottom: 25px;
  color: #969da8;
  font-style: normal;
  font-size: 27px;
}

.anchor-upload-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anchor-upload-head h2 {
  margin: 0;
}

.anchor-upload-head span {
  color: #8d949f;
  font-size: 27px;
}

.anchor-upload-box {
  width: 182px;
  height: 174px;
  margin-top: 28px;
  border-radius: 13px;
  border: 1px dashed #cfd6df;
  background: #fff;
  color: #6c727b;
  font-size: 77px;
  font-weight: 300;
}

.anchor-submit-button {
  position: fixed;
  left: 50%;
  bottom: 199px;
  transform: translateX(-50%);
  width: min(calc(100vw - 56px), 808px);
  height: 84px;
  border-radius: 13px;
  background: linear-gradient(90deg, #2b7eee, #2070e5);
  color: #fff;
  font-size: 34px;
  font-weight: 850;
  box-shadow: 0 9px 18px rgba(31, 110, 226, 0.17);
}

#app.anchor-app .anchor-submit-button {
  position: absolute;
  left: 28px;
  right: 28px;
  transform: none;
  width: auto;
}

.anchor-success-page {
  background: #f6f8fb;
}

.anchor-success-card {
  position: absolute;
  left: 55px;
  right: 55px;
  top: 264px;
  min-height: 956px;
  padding: 86px 50px 52px;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(22, 33, 48, 0.06);
  text-align: center;
}

.anchor-success-icon {
  width: 103px;
  height: 103px;
  margin: 0 auto 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--a-green);
  color: #fff;
  font-size: 77px;
}

.anchor-success-card h1 {
  margin: 0 0 54px;
  font-size: 49px;
  line-height: 1;
  font-weight: 900;
}

.anchor-success-list {
  border: 1px solid #dfe5ec;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}

.anchor-success-list button {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 84px 1fr 32px;
  align-items: center;
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid #e5e9ef;
  font-size: 34px;
  font-weight: 650;
}

.anchor-success-list button:last-child {
  border-bottom: 0;
}

.anchor-success-list .anchor-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  box-sizing: content-box;
  border-radius: 50%;
  color: var(--a-blue);
  background: #eaf2ff;
}

.anchor-success-list i {
  color: #6c737d;
  font-style: normal;
  font-size: 58px;
}

.anchor-consume {
  margin: 44px 0 70px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #676f7a;
  font-size: 29px;
}

.anchor-consume .anchor-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 5px;
  color: #fff;
  background: var(--a-green);
}

.anchor-success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.anchor-success-actions button {
  height: 94px;
  border-radius: 11px;
  font-size: 34px;
  font-weight: 850;
}

.anchor-success-actions .outline {
  color: var(--a-blue);
  border: 2px solid var(--a-blue);
  background: #fff;
}

.anchor-success-actions .primary {
  color: #fff;
  background: linear-gradient(90deg, #2679ed, #1e6be0);
}

.anchor-loading-page {
  background: #f7f9fc;
}

.anchor-loader-brand {
  padding-top: 113px;
  text-align: center;
}

.anchor-app-logo {
  width: 159px;
  height: 152px;
  margin: 0 auto 31px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #2d84f2, #206ee1);
  box-shadow: 0 8px 18px rgba(36, 112, 226, 0.16);
  position: relative;
}

.anchor-app-logo .anchor-icon {
  position: absolute;
}

.anchor-app-logo .anchor-icon:first-child {
  top: 34px;
  left: 57px;
  font-size: 63px;
  transform: rotate(-6deg);
}

.anchor-app-logo .anchor-icon:last-child {
  bottom: 28px;
  left: 42px;
  font-size: 77px;
}

.anchor-loader-brand h1 {
  margin: 0;
  font-size: 49px;
  line-height: 1;
  font-weight: 900;
  color: #1a2330;
}

.anchor-loader-brand p {
  margin: 21px 0 53px;
  color: #7d8590;
  font-size: 31px;
  font-weight: 600;
}

.anchor-loading-state {
  display: inline-grid;
  grid-template-columns: 55px 120px;
  grid-template-rows: 38px 38px;
  align-items: center;
  column-gap: 18px;
  color: #1f252d;
}

.anchor-loading-state span {
  grid-row: 1 / span 2;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 6px solid #d8e2ef;
  border-left-color: var(--a-blue);
}

.anchor-loading-state strong {
  font-size: 31px;
  line-height: 1;
}

.anchor-loading-state em {
  color: #6f7782;
  font-style: normal;
  font-size: 26px;
  line-height: 1;
}

.anchor-skeleton-card {
  height: 951px;
  margin: 70px 62px 0;
  padding: 39px 32px 28px;
  border-radius: 22px;
  border: 1px solid #e0e5ec;
  background: #fff;
  box-shadow: var(--a-shadow-card);
}

.sk-line,
.sk-mini,
.sk-banner,
.sk-title,
.sk-row span,
.sk-row i,
.sk-row b,
.sk-mini span,
.sk-mini i,
.sk-mini b,
.sk-banner span,
.sk-banner i,
.sk-banner b,
.sk-foot {
  background: linear-gradient(90deg, #eef1f5, #e5e8ed);
}

.sk-line.long {
  height: 57px;
  border-radius: 999px;
}

.sk-mini-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

.sk-mini {
  height: 154px;
  border-radius: 17px;
  position: relative;
}

.sk-mini span {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.sk-mini i,
.sk-mini b {
  position: absolute;
  left: 23px;
  right: 23px;
  height: 14px;
  border-radius: 999px;
}

.sk-mini i {
  bottom: 44px;
}

.sk-mini b {
  bottom: 24px;
}

.sk-banner {
  height: 126px;
  margin-top: 33px;
  border-radius: 18px;
  position: relative;
}

.sk-banner span,
.sk-banner i {
  position: absolute;
  left: 31px;
  height: 22px;
  border-radius: 999px;
}

.sk-banner span {
  top: 30px;
  width: 348px;
}

.sk-banner i {
  top: 66px;
  width: 257px;
}

.sk-banner b {
  position: absolute;
  right: 31px;
  top: 22px;
  width: 96px;
  height: 87px;
  border-radius: 12px;
}

.sk-title {
  width: 176px;
  height: 18px;
  margin-top: 48px;
  border-radius: 999px;
}

.sk-list {
  margin-top: 33px;
}

.sk-row {
  height: 122px;
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 25px;
  align-items: center;
  border-bottom: 1px solid #eceff3;
  position: relative;
}

.sk-row span {
  grid-row: 1 / span 2;
  width: 96px;
  height: 84px;
  border-radius: 12px;
}

.sk-row i,
.sk-row b {
  height: 15px;
  border-radius: 999px;
}

.sk-row i {
  width: 240px;
  align-self: end;
  margin-bottom: 13px;
}

.sk-row b {
  width: 145px;
  align-self: start;
  margin-top: 13px;
}

.sk-foot {
  width: 138px;
  height: 15px;
  margin: 44px auto 0;
  border-radius: 999px;
}

.anchor-profile-page {
  background: #f6f8fb;
}

.anchor-profile-page .anchor-topbar {
  height: 142px;
  background: #fff;
  border-bottom: 0;
}

.anchor-profile-page .anchor-topbar h1 {
  font-size: 42px;
}

.anchor-user-card {
  width: calc(100% - 64px);
  height: 190px;
  margin: 0 32px 30px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 130px 1fr 40px;
  align-items: center;
  gap: 25px;
  border: 1px solid #dfe4ec;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--a-shadow-soft);
  text-align: left;
}

.anchor-avatar {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 37%, #fff 0 21px, transparent 22px),
    radial-gradient(circle at 50% 96%, #fff 0 49px, transparent 50px),
    #d8dde5;
}

.anchor-user-card strong {
  display: block;
  font-size: 39px;
  line-height: 1;
  font-weight: 900;
}

.anchor-user-card em {
  display: block;
  margin-top: 18px;
  color: #4d545e;
  font-style: normal;
  font-size: 29px;
}

.anchor-user-card i,
.anchor-menu-right i {
  color: #151a21;
  font-style: normal;
  font-size: 58px;
  line-height: 1;
}

.anchor-menu-card {
  margin: 0 32px 30px;
  border: 1px solid #dfe4ec;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--a-shadow-soft);
}

.anchor-menu-card h2 {
  height: 82px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 31px;
  border-bottom: 1px solid #dfe4ec;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.anchor-menu-row {
  width: 100%;
  height: 107px;
  padding: 0 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-bottom: 1px solid #dfe4ec;
}

.anchor-menu-row:last-child {
  border-bottom: 0;
}

.anchor-menu-left {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  color: var(--a-blue);
}

.anchor-menu-left .anchor-icon {
  font-size: 49px;
}

.anchor-menu-left b {
  color: #15191f;
  font-size: 32px;
  font-weight: 650;
}

.anchor-menu-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6c737d;
}

.anchor-menu-right em {
  color: #676e79;
  font-style: normal;
  font-size: 28px;
}

.anchor-logout {
  width: calc(100% - 64px);
  height: 86px;
  margin: 0 32px;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--a-red);
  font-size: 31px;
  font-weight: 700;
  box-shadow: var(--a-shadow-soft);
}

.anchor-logout .anchor-icon {
  font-size: 42px;
}

.anchor-version {
  margin: 30px 0 0;
  text-align: center;
  color: #787f8a;
  font-size: 24px;
  line-height: 1.55;
}

.anchor-modal-page {
  min-height: 100vh;
  background: #f5f7fb;
}

.anchor-modal-underlay {
  position: absolute;
  inset: 0;
  padding: 46px 39px;
  color: #11161d;
  filter: grayscale(0.1);
}

.anchor-modal-underlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 3;
}

.anchor-modal-underlay header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.anchor-modal-underlay h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.anchor-modal-underlay header button {
  height: 64px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #dbe1ea;
  border-radius: 999px;
  background: #fff;
  color: #20262d;
  font-size: 27px;
}

.anchor-modal-underlay header button .anchor-icon {
  color: var(--a-blue);
  font-size: 34px;
}

.anchor-modal-search {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 28px;
}

.anchor-modal-search > span,
.anchor-modal-search button {
  height: 106px;
  border: 1px solid #dbe1ea;
  border-radius: 16px;
  background: #fff;
}

.anchor-modal-search > span {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  color: #8a9099;
  font-size: 28px;
}

.anchor-modal-search .anchor-icon {
  font-size: 44px;
}

.anchor-modal-search button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: #22272f;
  font-size: 24px;
  font-weight: 600;
}

.anchor-modal-search button .anchor-icon {
  color: var(--a-blue);
}

.anchor-modal-shortcuts {
  margin-top: 38px;
  height: 228px;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.anchor-modal-shortcuts span {
  display: grid;
  justify-items: center;
  gap: 26px;
  font-size: 28px;
  font-weight: 650;
}

.anchor-modal-shortcuts .anchor-icon {
  font-size: 80px;
}

.anchor-modal-shortcuts span:nth-child(1) .anchor-icon {
  color: #1f63c3;
  fill: rgba(31, 99, 195, 0.14);
}

.anchor-modal-shortcuts span:nth-child(2) .anchor-icon {
  color: #07875b;
}

.anchor-modal-shortcuts span:nth-child(3) .anchor-icon {
  color: #b88900;
}

.anchor-modal-shortcuts span:nth-child(4) .anchor-icon {
  color: #087aa0;
}

.anchor-modal-recommend {
  margin-top: 34px;
  min-height: 320px;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 25px 18px;
  padding: 32px 29px;
}

.anchor-modal-recommend h2 {
  margin: 0;
  font-size: 33px;
  font-weight: 900;
}

.anchor-modal-recommend > span {
  color: #666e7a;
  font-size: 25px;
}

.anchor-modal-recommend div {
  height: 135px;
  border-radius: 14px;
  background: #eef4ff;
}

.anchor-modal-recommend div:nth-of-type(2) {
  background: #f0f7f2;
}

.anchor-modal-recommend div:nth-of-type(3) {
  background: #fff4df;
}

.anchor-station-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 1005px;
  padding: 27px 46px 38px;
  border-radius: 22px 22px 0 0;
  background: #fff;
  box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.anchor-sheet-handle {
  width: 92px;
  height: 9px;
  border-radius: 999px;
  background: #d4d4d4;
  display: block;
  margin: 0 auto 43px;
}

.anchor-station-sheet h1 {
  margin: 0 0 37px;
  text-align: center;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.anchor-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 39px;
}

.anchor-sheet-grid button {
  position: relative;
  height: 96px;
  padding: 0 31px;
  border: 1px solid #dfe4ec;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  color: #11161d;
  font-size: 30px;
  font-weight: 500;
  text-align: left;
}

.anchor-sheet-grid button .anchor-icon {
  color: var(--a-blue);
  font-size: 48px;
}

.anchor-sheet-grid button.active {
  border-color: var(--a-blue);
  box-shadow: inset 0 0 0 1px var(--a-blue);
}

.anchor-sheet-grid button i {
  position: absolute;
  right: -10px;
  top: -9px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--a-blue);
  color: #fff;
  font-size: 27px;
  font-style: normal;
}

.anchor-sheet-confirm,
.anchor-sheet-cancel {
  width: 100%;
  height: 86px;
  border-radius: 9px;
  font-size: 32px;
  font-weight: 850;
}

.anchor-sheet-confirm {
  margin-top: 35px;
  background: linear-gradient(90deg, #2579ee, #1e6ee4);
  color: #fff;
}

.anchor-sheet-cancel {
  margin-top: 24px;
  border: 1px solid #dfe4ec;
  background: #fff;
  color: #7a808a;
}

.ab-page {
  min-height: 100vh;
  padding-bottom: calc(var(--ds-nav-h) + 14px);
  background: var(--ds-color-bg);
  color: var(--text);
}

.ab-page-body {
  display: grid;
  align-content: start;
  gap: var(--ds-section-gap);
  padding: 10px var(--ds-page-pad) 14px;
}

.ab-home-page .ab-page-body {
  padding-top: 0;
}

.ab-page-section {
  display: grid;
  gap: var(--ds-section-title-gap);
}

.ab-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ab-section-title h2 {
  margin: 0;
  min-width: 0;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.ab-section-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.ab-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 54px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(223, 230, 239, 0.95);
  flex-shrink: 0;
}

.ab-topbar-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: center;
}

.ab-topbar-copy h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.ab-topbar-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.ab-topbar-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 36px;
}

.ab-topbar-action {
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--ds-radius-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.ab-topbar-action {
  display: none;
}

.ab-topbar-spacer {
  display: block;
  width: 34px;
  height: 34px;
}

.ab-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--ds-radius-pill);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.ab-icon-btn--soft {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.92);
  color: #2e63b8;
  box-shadow: 0 3px 10px rgba(43, 88, 159, 0.08);
}

.ab-icon-btn .icon {
  width: 19px;
  height: 19px;
}

.ab-home-hero {
  margin: 0;
  padding: 10px 0 0;
}

.ab-home-hero-card {
  border-radius: var(--ds-radius-media);
  overflow: hidden;
  background: #d8e8ff;
  border: 0;
  box-shadow: 0 10px 26px rgba(29, 39, 51, 0.08);
}

.ab-home-hero-cover {
  min-height: 232px;
  padding: 12px 14px 14px;
  display: grid;
  gap: 12px;
  align-content: space-between;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.68), rgba(5, 13, 24, 0.48) 34%, rgba(8, 18, 31, 0.12) 68%, rgba(8, 18, 31, 0)),
    linear-gradient(180deg, rgba(30, 83, 157, 0.1), rgba(15, 54, 111, 0.14) 42%, rgba(9, 13, 20, 0.62)),
    var(--ab-home-image) center var(--ab-home-position-y, bottom) / cover no-repeat;
}

.ab-home-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.ab-home-hero-actions {
  display: inline-flex;
  gap: 8px;
}

.ab-station-chip {
  min-height: 36px;
  padding: 0 12px 0 10px;
  border-radius: var(--ds-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.97);
  color: #2674df;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 3px 10px rgba(39, 112, 202, 0.12);
}

.ab-station-chip-pin {
  display: inline-grid;
  place-items: center;
}

.ab-station-chip-pin .icon {
  width: 20px;
  height: 20px;
}

.ab-home-hero-copy {
  display: grid;
  gap: 4px;
}

.ab-home-hero-copy p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.ab-home-hero-copy h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 900;
}

.ab-home-hero-flow {
  font-size: 14px;
  line-height: 1.45;
}

.ab-home-hero-flow strong {
  color: #f3ff99;
}

.ab-home-hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.ab-home-weather {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
}

.ab-home-weather strong {
  font-size: 40px;
  font-weight: 900;
}

.ab-home-weather span {
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
}

.ab-home-badge {
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--ds-radius-pill);
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.ab-info-list {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ab-info-row {
  min-height: var(--ds-cell-h);
  padding: 9px var(--ds-cell-pad-x) 7px;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.ab-info-row + .ab-info-row {
  border-top: 0;
}

.ab-info-row,
.ab-preview-card,
.ab-action-tile,
.ab-record-card,
.ab-profile-card {
  transition: transform var(--ds-motion-fast), box-shadow var(--ds-motion-fast), border-color var(--ds-motion-fast);
}

.ab-info-row:hover,
.ab-preview-card:hover,
.ab-action-tile:hover,
.ab-record-card:hover,
.ab-profile-card:hover {
  transform: translateY(-1px);
}

.ab-info-list .ab-info-row:hover {
  transform: none;
  background: var(--surface-soft);
}

.ab-info-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ab-info-icon {
  width: var(--ds-cell-icon);
  height: var(--ds-cell-icon);
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  flex: none;
  background: var(--blue-soft);
  color: var(--blue);
}

.ab-info-icon .icon {
  width: 18px;
  height: 18px;
}

.ab-info-icon.tag {
  min-width: 42px;
  width: auto;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--ds-radius-control);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ab-info-icon.tag.primary {
  background: var(--blue);
}

.ab-info-icon.tag.success {
  background: var(--green);
}

.ab-info-icon.tag.warning {
  background: var(--amber);
}

.ab-info-icon.tag.danger {
  background: var(--red);
}

.ab-announcement-list .ab-info-icon.tag {
  min-width: 34px;
  height: 18px;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1;
}

.ab-info-row strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.ab-announcement-row .ab-info-row-left > span:last-child {
  min-width: 0;
}

.ab-announcement-row .ab-info-row-left strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-info-row em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  font-style: normal;
}

.ab-info-row-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
  justify-self: end;
  white-space: nowrap;
}

.ab-info-row-right b {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.ab-info-row-right i {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.ab-info-list.compact .ab-info-row {
  min-height: var(--ds-cell-h-compact);
  padding-top: 8px;
  padding-bottom: 6px;
}

.ab-home-page .ab-announcement-list.compact .ab-info-row {
  min-height: 47px;
  padding-top: 7px;
  padding-bottom: 6px;
}

.ab-home-page .ab-announcement-list.compact .ab-info-icon.tag {
  min-width: 40px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--ds-radius-control);
  font-size: 12px;
  line-height: 1;
}

.ab-info-list.compact .ab-info-icon {
  width: var(--ds-cell-icon-compact);
  height: var(--ds-cell-icon-compact);
}

.ab-info-list.compact .ab-info-icon .icon {
  width: 18px;
  height: 18px;
}

.ab-announcement-list.compact .ab-info-icon.tag {
  width: auto;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  white-space: nowrap;
}

.ab-info-list.loose {
  display: grid;
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ab-info-list.loose .ab-info-row {
  min-height: var(--ds-cell-h);
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  box-shadow: var(--shadow-soft);
}

.ab-info-list.loose .ab-info-row + .ab-info-row {
  border-top: 0;
}

.ab-action-grid {
  display: grid;
  gap: 7px;
}

.ab-action-grid.ab-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ab-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ab-service-card .ab-action-grid.ab-service-grid {
  gap: 0;
}

.ab-service-card .ab-action-tile {
  min-height: 84px;
  padding: 11px 7px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 7px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.ab-service-card .ab-action-tile:hover {
  transform: none;
  background: var(--surface-soft);
}

.ab-service-card .ab-action-tile:nth-child(-n + 4) {
  border-bottom: 0;
}

.ab-service-card .ab-action-tile:not(:nth-child(4n)) {
  border-right: 0;
}

.ab-service-card .ab-action-tile-icon {
  width: 36px;
  height: 32px;
  background: transparent;
  color: var(--ab-tile-fg, var(--ds-color-primary));
}

.ab-service-card .ab-action-tile-icon .icon {
  width: 28px;
  height: 28px;
}

.ab-service-card .ab-action-tile strong {
  font-size: 13.5px;
  line-height: 1.22;
}

.ab-service-card .ab-action-tile em {
  font-size: 12px;
  line-height: 1.3;
}

.ab-action-grid.ab-driver-quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ab-action-grid.ab-station-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.ab-station-service-grid .ab-action-tile {
  min-height: 98px;
  align-content: center;
}

.ab-station-service-grid .ab-action-tile-icon {
  background: transparent;
  color: var(--blue);
}

.ab-station-service-grid .ab-action-tile-icon .icon {
  width: 30px;
  height: 30px;
}

.ab-action-tile {
  min-height: 88px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 7px;
  align-content: start;
  text-align: left;
}

.ab-action-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: var(--ab-tile-bg, var(--blue-soft));
  color: var(--ab-tile-fg, var(--blue));
}

.ab-action-tile-icon .icon {
  width: 22px;
  height: 22px;
}

.ab-action-tile strong {
  font-size: 14px;
  line-height: 1.28;
  font-weight: 800;
}

.ab-action-tile em {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  font-style: normal;
}

.ab-traffic-preview {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ab-preview-card {
  min-height: 58px;
  padding: 10px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title arrow"
    "icon meta arrow";
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
}

.ab-preview-card + .ab-preview-card {
  border-top: 0;
}

.ab-preview-card:hover {
  transform: none;
  background: var(--surface-soft);
}

.ab-preview-card::after {
  content: "›";
  grid-area: arrow;
  align-self: center;
  color: var(--subtle);
  font-size: 20px;
  line-height: 1;
}

.ab-preview-card-icon {
  grid-area: icon;
  width: 34px;
  height: 34px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--blue);
}

.ab-preview-card-icon .icon {
  width: 30px;
  height: 30px;
}

.ab-preview-card strong {
  grid-area: title;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.ab-preview-card em {
  grid-area: meta;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-panel {
  padding: 11px 10px 9px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
}

.ab-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.ab-panel-head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.ab-panel-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ab-panel-body {
  display: grid;
  gap: 8px;
}

.ab-select-grid {
  display: grid;
  gap: 8px;
}

.ab-select-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ab-select-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ab-select-chip {
  min-height: 40px;
  padding: 8px 7px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-control);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.ab-select-chip .icon {
  width: 16px;
  height: 16px;
}

.ab-select-chip.active {
  background: var(--blue-soft);
  border-color: var(--ds-color-primary-soft-strong);
  color: var(--blue);
  box-shadow: none;
}

.ab-tab-row {
  gap: 0;
  min-height: 52px;
  align-items: stretch;
  margin: 0 calc(var(--ds-page-pad) * -1);
  padding: 0 var(--ds-page-pad);
  border-top: 0;
  border-bottom: 1px solid rgba(223, 230, 239, 0.92);
  background: #fff;
}

.ab-page-section:first-child .ab-tab-row {
  margin-top: -10px;
}

.ab-tab-row .ab-select-chip {
  position: relative;
  min-height: 52px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3f4d5f;
  gap: 5px;
  font-size: 15px;
  font-weight: 800;
}

.ab-tab-row .ab-select-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: var(--ds-radius-pill);
  background: transparent;
  transform: translateX(-50%);
}

.ab-tab-row .ab-select-chip.active {
  background: transparent;
  border-color: transparent;
  color: var(--blue);
  box-shadow: none;
}

.ab-tab-row .ab-select-chip.active::after {
  background: var(--blue);
}

.ab-tab-badge {
  min-width: 17px;
  height: 17px;
  margin-left: 1px;
  padding: 0 4px;
  border-radius: var(--ds-radius-pill);
  display: inline-grid;
  place-items: center;
  background: #ef4444;
  color: #fff;
  font-size: 10.5px;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}

.ab-textarea-field {
  display: grid;
  gap: 6px;
}

.ab-field-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ab-textarea-box {
  min-height: 104px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card-sm);
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.45;
}

.ab-textarea-box em {
  align-self: flex-end;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.ab-upload-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.ab-upload-tile {
  min-height: 82px;
  border-radius: var(--ds-radius-card);
  border: 1px dashed #c8d4e2;
  background: #fbfcfe;
  display: grid;
  place-items: center;
  gap: 6px;
  color: var(--muted);
}

.ab-upload-plus {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.ab-tip-card {
  padding: 13px 12px 11px;
  border-radius: var(--ds-radius-card);
  border: 1px solid var(--ds-color-primary-soft-strong);
  background: linear-gradient(180deg, #f6faff, #eef6ff);
  display: grid;
  gap: 5px;
}

.ab-tip-card.soft {
  border-color: var(--line);
  background: var(--surface);
}

.ab-tip-card strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.ab-tip-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.ab-record-list {
  display: grid;
  gap: 8px;
}

.ab-record-card {
  padding: 13px 12px 11px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: grid;
  gap: 8px;
}

.ab-record-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.ab-record-head strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.ab-record-head i {
  color: var(--subtle);
  font-style: normal;
  font-size: 22px;
  line-height: 1;
}

.ab-record-tag {
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--ds-radius-control);
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ab-record-tag.primary {
  background: var(--blue);
}

.ab-record-tag.success {
  background: var(--green);
}

.ab-record-tag.warning {
  background: var(--amber);
}

.ab-record-tag.danger {
  background: var(--red);
}

.ab-record-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ab-record-reply {
  padding: 10px 12px;
  border-radius: var(--ds-radius-card-sm);
  background: #f4f8ff;
  border: 1px solid #d8e6ff;
  color: #4c658f;
  font-size: 13px;
  line-height: 1.5;
}

.ab-profile-hero {
  display: grid;
  gap: 10px;
}

.ab-profile-card {
  min-height: 78px;
  padding: 13px 12px 11px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.ab-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #dceeff, #f4f9ff);
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.ab-avatar--driver {
  background: linear-gradient(180deg, #e7f7ef, #f7fffb);
  color: var(--green);
}

.ab-profile-card-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.ab-profile-card-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-style: normal;
}

.ab-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 8px;
}

.ab-stat-card {
  min-height: 72px;
  padding: 11px 8px 9px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: space-between;
  gap: 6px;
  text-align: center;
}

.ab-stat-card strong {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.ab-stat-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
}

.ab-stat-card.primary strong {
  color: var(--blue);
}

.ab-stat-card.success strong {
  color: var(--green);
}

.ab-stat-card.warning strong {
  color: var(--amber);
}

.ab-stat-card.danger strong {
  color: var(--red);
}

.ab-segment-strip {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 calc(var(--ds-page-pad) * -1);
  padding-inline: var(--ds-page-pad);
  border-top: 0;
  border-bottom: 1px solid rgba(223, 230, 239, 0.92);
  background: #fff;
}

.ab-segment {
  position: relative;
  min-height: 52px;
  border-radius: 0;
  background: transparent;
  color: #3f4d5f;
  font-size: 15px;
  font-weight: 800;
}

.ab-segment::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: var(--ds-radius-pill);
  background: transparent;
  transform: translateX(-50%);
}

.ab-segment.active {
  color: var(--blue);
  box-shadow: none;
}

.ab-segment.active::after {
  background: var(--blue);
}

.ab-page-footer {
  padding: 4px var(--ds-page-pad) 10px;
}

.ab-primary-button,
.ab-danger-button {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--ds-radius-control);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 850;
}

.ab-primary-button {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 20px rgba(32, 111, 216, 0.16);
}

.ab-danger-button {
  border: 1px solid #f5c5c1;
  background: var(--red-soft);
  color: var(--red);
}

.ab-profile-page .ab-danger-button {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.ab-footer-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.ab-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100vw, var(--page-w));
  height: var(--ds-nav-h);
  background: rgba(255, 255, 255, 0.98);
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  z-index: 60;
  box-shadow: 0 -8px 20px rgba(29, 39, 51, 0.06);
}

.ab-bottom-nav.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ab-bottom-nav-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  color: #7a8794;
  font-size: 11px;
  font-weight: 700;
}

.ab-bottom-nav-item.active {
  color: var(--blue);
}

.ab-bottom-nav-item .icon {
  width: 24px;
  height: 24px;
}

.ab-select-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ab-select-grid.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ab-select-chip.disabled {
  color: #aeb7c3;
  background: var(--surface-soft);
  box-shadow: none;
}

.ab-select-chip.disabled .icon {
  color: #c0c7d1;
}

.ab-status-pill {
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--ds-radius-control);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.ab-status-pill.primary {
  color: var(--blue);
  background: var(--blue-soft);
}

.ab-status-pill.success {
  color: var(--green);
  background: var(--green-soft);
}

.ab-status-pill.warning {
  color: var(--amber);
  background: var(--amber-soft);
}

.ab-status-pill.danger {
  color: var(--red);
  background: var(--red-soft);
}

.ab-status-pill.muted {
  color: var(--subtle);
  background: #eff2f5;
}

.ab-small-badge {
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--ds-radius-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ab-progress {
  height: 8px;
  border-radius: var(--ds-radius-pill);
  background: #edf1f6;
  overflow: hidden;
}

.ab-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.ab-progress.success span {
  background: var(--green);
}

.ab-progress.warning span {
  background: var(--amber);
}

.ab-progress.danger span {
  background: var(--red);
}

.ab-tip-card--alert {
  border-color: #f5c5c1;
  background: #fff4f4;
}

.ab-tip-card--warn {
  border-color: #f7dba5;
  background: #fffaf0;
}

.ab-tip-card--green {
  border-color: #cbe8da;
  background: linear-gradient(180deg, #f4fbf7, #edf9f2);
}

.ab-note-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  display: grid;
  gap: 4px;
}

.ab-map-shell,
.ab-traffic-stop-card,
.ab-traffic-ride-card,
.ab-traffic-metro-card,
.ab-traffic-bus-card,
.ab-traffic-plan-card,
.ab-parking-card,
.ab-queue-station-card,
.ab-station-area-card,
.ab-short-haul-choice-card,
.ab-target-card,
.ab-meal-card,
.ab-reward-card,
.ab-journey-card,
.ab-review-card,
.ab-station-banner,
.ab-station-house,
.ab-route-plan-card {
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ab-map-shell {
  position: relative;
  min-height: 198px;
  padding: 14px;
  overflow: hidden;
  background: #edf4ff;
  border-color: #dbe8ff;
}

.ab-map-shell-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(32, 111, 216, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(32, 111, 216, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.8;
}

.ab-map-shell-main {
  position: relative;
  z-index: 1;
  min-height: 146px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
}

.ab-map-shell-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--blue);
  box-shadow: none;
  font-size: 30px;
}

.ab-map-shell-icon .icon[data-icon^="station_"] {
  width: 46px;
  height: 46px;
  transform: scale(1.18);
  transform-origin: center;
}

.ab-map-shell-main strong {
  font-size: 18px;
  font-weight: 850;
}

.ab-map-shell-main em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.ab-map-shell-tags {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ab-map-shell-tags span {
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--ds-radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.ab-nav-search {
  min-height: 44px;
  padding: 0 8px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-control);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.ab-announcement-filter-section {
  margin: -10px calc(var(--ds-page-pad) * -1) 0;
  padding: 10px var(--ds-page-pad) 2px;
  border-bottom: 1px solid rgba(223, 230, 239, 0.92);
  background: #fff;
  gap: 12px;
}

.ab-announcement-search {
  min-height: 42px;
  box-shadow: none;
  background: #f8fbff;
}

.ab-tab-row--plain {
  margin: 0 calc(var(--ds-page-pad) * -1);
  padding: 0;
  border-bottom: 0;
  background: #fff;
}

.ab-navigation-page .ab-nav-search {
  min-height: 40px;
  box-shadow: none;
  background: #f8fbff;
}

.ab-nav-search .icon {
  width: 20px;
  height: 20px;
  color: #9aa5b2;
}

.ab-nav-search span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-nav-search button {
  min-width: 54px;
  height: 30px;
  border-radius: var(--ds-radius-control);
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ab-navigation-page .ab-page-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding-bottom: 8px;
}

.ab-navigation-page .ab-tab-row {
  border-top: 0;
}

.ab-navigation-page .ab-page-section:first-child {
  margin: -10px calc(var(--ds-page-pad) * -1) 0;
  padding: 10px var(--ds-page-pad) 0;
  border-bottom: 1px solid rgba(223, 230, 239, 0.92);
  background: #fff;
  gap: 4px;
}

.ab-navigation-page .ab-page-section:first-child .ab-tab-row {
  margin: 0 calc(var(--ds-page-pad) * -1);
  border-bottom: 0;
}

#app.mobile-preview-app .ab-navigation-page .ab-page-body {
  display: flex;
  overflow: hidden;
}

.ab-navigation-page .ab-page-section {
  flex: 0 0 auto;
}

.ab-navigation-page .ab-page-section:last-child {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-navigation-page .ab-page-section:last-child .ab-section-title {
  flex: 0 0 auto;
}

.ab-nav-poi-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ab-nav-poi-row button {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-control);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.ab-nav-poi-row button.active {
  border-color: rgba(32, 111, 216, 0.42);
  background: var(--blue-soft);
  color: var(--blue);
}

.ab-nav-poi-row .icon {
  width: 21px;
  height: 21px;
}

.ab-nav-visual {
  flex: 1 1 auto;
  position: relative;
  min-height: 0;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-media);
  overflow: hidden;
  background: #f6faff;
  box-shadow: 0 4px 14px rgba(59, 95, 139, 0.08);
  color: #fff;
}

.ab-nav-visual-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ab-nav-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.92) brightness(1.06);
}

.ab-nav-visual[data-mode="map"] img {
  object-fit: cover;
  filter: saturate(0.68) contrast(0.8) brightness(1.1);
}

.ab-nav-visual[data-mode="map3d"] img {
  transform: scale(1.14);
}

.ab-nav-visual[data-mode="ar"] img {
  transform: scale(1.08);
}

.ab-nav-visual[data-mode="map3d"][data-layer="F3"] img,
.ab-nav-visual[data-mode="map3d"][data-layer="F2"] img,
.ab-nav-visual[data-mode="map3d"][data-layer="F1"] img,
.ab-nav-visual[data-mode="map3d"][data-layer="B1"] img {
  object-fit: contain;
  transform: scale(1.92);
}

.ab-nav-visual[data-mode="map3d"][data-layer="F3"] img {
  transform: scale(1.92) translateY(28%);
}

.ab-nav-visual[data-mode="map3d"][data-layer="F2"] img {
  transform: scale(1.92) translateY(9%);
}

.ab-nav-visual[data-mode="map3d"][data-layer="F1"] img {
  transform: scale(1.92) translateY(-11%);
}

.ab-nav-visual[data-mode="map3d"][data-layer="B1"] img {
  transform: scale(1.92) translateY(-31%);
}

.ab-nav-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 38%, rgba(245, 249, 255, 0.14));
}

.ab-nav-visual-top {
  position: relative;
  z-index: 2;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
}

.ab-nav-visual-top span {
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--ds-radius-pill);
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 4px 12px rgba(9, 13, 20, 0.12);
}

.ab-nav-pulse-marker {
  --marker-rgb: 246, 181, 42;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: rgb(var(--marker-rgb));
  box-shadow: 0 3px 7px rgba(29, 39, 51, 0.22);
  transform: translate(-50%, -100%) rotate(-45deg);
  animation: abNavPinBounce 1.08s ease-in-out infinite;
  pointer-events: none;
}

.ab-nav-pulse-marker::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: var(--ds-radius-pill);
  background: #fff;
}

.ab-nav-pulse-marker--taxi {
  --marker-rgb: 246, 181, 42;
  left: 96.27%;
  top: 44.5%;
}

.ab-nav-pulse-marker--exit {
  --marker-rgb: 23, 154, 97;
  left: 53.15%;
  top: 67%;
}

@keyframes abNavPinBounce {
  0%,
  100% {
    transform: translate(-50%, -100%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -118%) rotate(-45deg);
  }
}

.ab-nav-layer-control {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 14px;
  padding: 5px;
  border: 1px solid rgba(209, 224, 243, 0.92);
  border-radius: var(--ds-radius-pill);
  background: rgba(255, 255, 255, 0.94);
  display: inline-flex;
  gap: 4px;
  box-shadow: 0 8px 18px rgba(59, 95, 139, 0.12);
}

.ab-nav-layer-control button {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--ds-radius-pill);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.ab-nav-layer-control button.active {
  background: var(--blue);
  color: #fff;
}

.ab-route-panel {
  gap: 10px;
}

.ab-route-plan-card {
  min-height: 74px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.ab-route-plan-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ab-route-plan-main strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
}

.ab-route-plan-main em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
}

.ab-route-plan-side {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.ab-route-plan-side b {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
}

.ab-route-plan-side i {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.ab-map-shell--driver {
  min-height: 258px;
}

.ab-station-map-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin-top: 8px;
}

.ab-station-map-tag {
  flex: 1 1 calc(50% - 4px);
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--ds-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.ab-station-map-tag.primary {
  background: var(--blue-soft);
  border-color: var(--ds-color-primary-soft-strong);
  color: var(--blue);
}

.ab-station-map-tag.success {
  background: var(--green-soft);
  border-color: #c9ead9;
  color: var(--green);
}

.ab-station-map-tag.warning {
  background: var(--amber-soft);
  border-color: #f6dfaf;
  color: var(--amber);
}

.ab-station-map-tag.danger {
  background: var(--red-soft);
  border-color: #f4c8c4;
  color: var(--red);
}

.ab-route-plan-card {
  margin-top: 8px;
  padding: 12px;
  background: var(--surface-soft);
  display: grid;
  gap: 6px;
}

.ab-route-plan-card strong {
  font-size: 16px;
  font-weight: 850;
}

.ab-route-plan-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ab-route-plan-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.ab-traffic-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.ab-traffic-meta b {
  color: var(--green);
}

.ab-traffic-search-section {
  margin: -10px calc(var(--ds-page-pad) * -1) 0;
  padding: 10px var(--ds-page-pad) 0;
  border-bottom: 1px solid rgba(223, 230, 239, 0.92);
  background: #fff;
  display: grid;
  gap: 12px;
}

.ab-traffic-search-section.is-result {
  gap: 12px;
}

.ab-traffic-search-section .ab-tab-row {
  margin: 0 calc(var(--ds-page-pad) * -1);
  border-bottom: 0;
}

.ab-traffic-search {
  border: 1px solid var(--line);
  background: #f8fbff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.ab-traffic-search.is-quick {
  min-height: 42px;
  padding: 0 8px 0 12px;
  border-radius: var(--ds-radius-control);
  box-shadow: none;
}

.ab-traffic-search.is-result {
  min-height: 67px;
  padding: 4px 10px 4px 8px;
  border-radius: var(--ds-radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
}

.ab-traffic-search.is-result button {
  height: 34px;
}

.ab-traffic-search-back {
  width: 30px;
  min-width: 30px;
  height: 24px;
  border-radius: var(--ds-radius-control);
  display: grid;
  place-items: center;
  color: #526071;
  background: transparent;
  align-self: start;
  margin-top: 4px;
}

.ab-traffic-search-back .icon {
  width: 30px;
  height: 30px;
}

.ab-traffic-quick-field {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.ab-traffic-quick-field .icon {
  width: 20px;
  height: 20px;
  color: #9aa5b2;
}

.ab-traffic-search-points {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ab-traffic-search.is-result .ab-traffic-search-points {
  gap: 5px;
}

.ab-traffic-search-points::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  bottom: 14px;
  border-left: 2px dashed #b8c2cf;
}

.ab-traffic-search-points label {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}

.ab-traffic-search.is-result .ab-traffic-search-points label {
  min-height: 20px;
  font-size: 15px;
  font-weight: 400;
}

.ab-traffic-search-points i,
.ab-transfer-search-card i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.ab-traffic-search-points i.start,
.ab-transfer-search-card i.start {
  background: #18c57a;
}

.ab-traffic-search-points i.end,
.ab-transfer-search-card i.end {
  background: #f04438;
}

.ab-traffic-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.ab-traffic-search button {
  min-width: 62px;
  height: 34px;
  border-radius: var(--ds-radius-control);
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.ab-traffic-search button.ab-traffic-search-back {
  width: 30px;
  min-width: 30px;
  height: 24px;
  background: transparent;
  color: #526071;
}

.ab-route-result-card,
.ab-transfer-route-card {
  padding: 13px 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 9px;
}

.ab-route-result-head,
.ab-transfer-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ab-route-result-head strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.ab-route-result-time,
.ab-transfer-route-head div {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.ab-route-result-time b,
.ab-transfer-route-head strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 850;
}

.ab-route-result-time span,
.ab-transfer-route-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ab-route-chip-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.ab-route-chip-row span,
.ab-route-chip-row strong {
  min-height: 28px;
  padding: 0 9px;
  border-radius: var(--ds-radius-control);
  display: inline-flex;
  align-items: center;
  background: #f2f4f7;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.ab-route-chip-row strong {
  background: #087f8c;
  color: #fff;
}

.ab-route-chip-row .ab-route-walk-chip {
  gap: 1px;
  padding: 0 7px;
  color: #555f6d;
}

.ab-route-chip-row .ab-route-walk-chip .icon {
  width: 10px;
  height: 18px;
  margin-left: 0;
  margin-right: -1px;
}

.ab-route-chip-row .ab-route-walk-chip b {
  font: inherit;
}

.ab-route-result-card p,
.ab-transfer-route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ab-route-leg {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-control);
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.ab-route-leg b {
  color: #0f9f6e;
  white-space: nowrap;
}

.ab-traffic-stop-list,
.ab-traffic-ride-list,
.ab-traffic-metro-list,
.ab-traffic-bus-list,
.ab-traffic-plan-list,
.ab-transfer-route-list,
.ab-parking-list,
.ab-queue-list,
.ab-station-area-list,
.ab-meal-list,
.ab-review-list {
  display: grid;
  gap: 8px;
}

.ab-traffic-stop-card {
  min-height: 64px;
  padding: 13px 12px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.ab-traffic-stop-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ab-traffic-stop-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--ds-radius-icon-sm);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  flex: none;
}

.ab-traffic-stop-icon .icon {
  width: 18px;
  height: 18px;
}

.ab-traffic-stop-left strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.ab-traffic-stop-left em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-traffic-stop-right {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.ab-traffic-stop-right b {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.ab-traffic-ride-card {
  min-height: 76px;
  padding: 13px 12px 11px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.ab-traffic-ride-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--ds-radius-icon-sm);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.ab-traffic-ride-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.ab-traffic-ride-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-traffic-ride-copy em b.success {
  color: var(--green);
}

.ab-traffic-ride-copy em b.warning {
  color: var(--amber);
}

.ab-traffic-ride-price {
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.ab-traffic-ride-action {
  min-width: 54px;
  height: 30px;
  padding: 0 10px;
  border-radius: var(--ds-radius-control);
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.ab-traffic-metro-card {
  padding: 13px 12px 11px;
  display: grid;
  gap: 10px;
}

.ab-traffic-metro-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ab-line-badge {
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--ds-radius-control);
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ab-line-badge.primary {
  background: var(--blue);
}

.ab-line-badge.success {
  background: var(--green);
}

.ab-line-badge.warning {
  background: var(--amber);
}

.ab-traffic-metro-head strong {
  font-size: 15px;
  font-weight: 850;
}

.ab-traffic-metro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ab-traffic-metro-grid div {
  padding: 10px 8px 8px;
  border-radius: var(--ds-radius-card-sm);
  background: var(--surface-soft);
  display: grid;
  gap: 4px;
}

.ab-traffic-metro-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.ab-traffic-metro-grid strong {
  font-size: 16px;
  font-weight: 900;
}

.ab-traffic-metro-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ab-traffic-metro-foot span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
}

.ab-traffic-metro-foot button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--ds-radius-control);
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ab-load-people {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.ab-load-people i {
  position: relative;
  width: 15px;
  height: 16px;
  display: block;
  color: #c7d0dd;
}

.ab-load-people i::before,
.ab-load-people i::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.ab-load-people i::before {
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ab-load-people i::after {
  bottom: 0;
  width: 15px;
  height: 8px;
  border-radius: 7px 7px 3px 3px;
}

.ab-load-people.success i.filled {
  color: var(--green);
}

.ab-load-people.warning i.filled {
  color: var(--amber);
}

.ab-load-people.danger i.filled {
  color: var(--red);
}

.ab-traffic-bus-card {
  min-height: 64px;
  padding: 13px 12px 11px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.ab-traffic-bus-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--ds-radius-icon);
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0 3px;
  text-align: center;
  font-size: 12px;
  line-height: 1.08;
  font-weight: 800;
  white-space: normal;
}

.ab-traffic-bus-icon span {
  display: block;
  white-space: nowrap;
}

.ab-traffic-bus-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.ab-traffic-bus-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-traffic-bus-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--subtle);
}

.ab-traffic-bus-right i {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.ab-traffic-plan-card {
  min-height: 76px;
  padding: 12px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 9px 10px;
  align-items: center;
  text-align: left;
}

.ab-traffic-plan-card.featured {
  border-color: #c8e6dc;
}

.ab-traffic-plan-icon {
  width: 32px;
  height: 32px;
  align-self: start;
  justify-self: start;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.ab-traffic-plan-icon .icon {
  width: 28px;
  height: 28px;
}

.ab-traffic-plan-icon.success {
  color: #087f8c;
}

.ab-traffic-plan-icon.warning {
  color: var(--amber);
}

.ab-traffic-plan-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ab-traffic-plan-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ab-traffic-plan-title strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15.5px;
  line-height: 1.25;
  font-weight: 700;
}

.ab-traffic-plan-main em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  font-style: normal;
}

.ab-traffic-plan-value {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: end;
  align-items: center;
  gap: 2px 6px;
  color: var(--subtle);
}

.ab-traffic-plan-value b {
  grid-column: 1 / 2;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.ab-traffic-plan-value em {
  grid-column: 1 / 2;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-style: normal;
}

.ab-traffic-plan-value i {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  color: var(--subtle);
  font-size: 20px;
  line-height: 1;
  font-style: normal;
}

.ab-traffic-plan-card .ab-route-chip-row,
.ab-traffic-plan-card p,
.ab-traffic-plan-card .ab-route-leg {
  grid-column: 2 / -1;
}

.ab-traffic-plan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ab-transfer-destination-list {
  display: grid;
  gap: 8px;
}

.ab-transfer-destination-card {
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.ab-transfer-destination-icon {
  width: 56px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.ab-transfer-destination-icon .icon {
  width: 54px;
  height: 34px;
}

.ab-transfer-destination-card strong {
  display: block;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.22;
  font-weight: 850;
}

.ab-transfer-destination-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  font-style: normal;
}

.ab-transfer-destination-card i {
  color: var(--subtle);
  font-size: 20px;
  font-style: normal;
}

.ab-transfer-search-card {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
}

.ab-transfer-search-card span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 15px;
}

.ab-transfer-search-card b {
  font-weight: 850;
}

.ab-transfer-route-card .ab-route-chip-row strong {
  background: #1f7af0;
}

.ab-traffic-compare-list {
  display: grid;
  gap: 8px;
}

.ab-traffic-compare-row {
  min-height: 66px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.ab-traffic-compare-row:last-child {
  border-bottom: 0;
}

.ab-traffic-compare-row.active {
  background: #eff5ff;
  padding-left: 12px;
  padding-right: 12px;
  border-bottom-color: transparent;
  border-radius: var(--ds-radius-card-sm);
}

.ab-traffic-compare-copy strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 850;
}

.ab-traffic-compare-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-traffic-compare-value {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.ab-traffic-compare-value b {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.ab-traffic-compare-value i {
  color: var(--subtle);
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.ab-traffic-other-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ab-parking-card {
  padding: 13px 12px 11px;
  display: grid;
  gap: 8px;
  text-align: left;
}

.ab-parking-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.ab-parking-card-head strong {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.ab-parking-card-usage {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.ab-parking-card-usage b {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.ab-parking-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.ab-parking-card-note {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.ab-table-card {
  border: 1px solid var(--line);
  border-radius: var(--ds-radius-card);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ab-table-head,
.ab-table-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
  align-items: center;
}

.ab-parking-price-table .ab-table-head,
.ab-parking-price-table .ab-table-row {
  grid-template-columns: 1.05fr repeat(5, minmax(0, 0.74fr));
}

.ab-table-head {
  padding: 12px 14px;
  background: #284fbd;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ab-parking-price-table .ab-table-head {
  padding-inline: 8px;
  font-size: 11.5px;
}

.ab-table-row {
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.ab-parking-price-table .ab-table-row {
  padding-inline: 8px;
  font-size: 12px;
}

.ab-table-row:last-child {
  border-bottom: 0;
}

.ab-table-row strong {
  font-size: 14px;
  font-weight: 800;
}

.ab-parking-price-table .ab-table-row strong {
  font-size: 12px;
  line-height: 1.25;
}

.ab-table-row span {
  text-align: center;
  font-weight: 800;
}

.ab-parking-price-table .ab-table-row span {
  font-size: 12px;
}

.ab-table-row span:nth-child(2) {
  color: var(--blue);
}

.ab-table-row span:nth-child(3) {
  color: #f28f16;
}

.ab-table-row span:nth-child(4) {
  color: var(--green);
}

.ab-queue-search {
  height: 46px;
  padding: 0 12px;
  border-radius: var(--ds-radius-control);
  background: #fff;
  border: 1px solid rgba(223, 230, 239, 0.95);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a5abb6;
  font-size: 14px;
  font-weight: 800;
}

.ab-queue-search .icon {
  width: 18px;
  height: 18px;
  color: #b3bac4;
}

.ab-queue-search span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-queue-search button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.ab-queue-search button .icon {
  width: 18px;
  height: 18px;
}

.ab-queue-status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.ab-queue-status-line b {
  font-size: 13px;
  font-weight: 900;
}

.ab-queue-status-line .green {
  color: var(--green);
}

.ab-queue-status-line .amber {
  color: var(--amber);
}

.ab-queue-status-line .red {
  color: var(--red);
}

.ab-driver-filter-row {
  gap: 7px;
}

.ab-queue-count {
  text-align: right;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
}

.ab-queue-station-card {
  padding: 13px 12px 11px;
  display: grid;
  gap: 8px;
  text-align: left;
}

.ab-queue-station-top {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 8px;
}

.ab-queue-station-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.ab-queue-station-icon.plane {
  background: #ffe8b8;
  color: #f0a423;
}

.ab-queue-station-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.ab-queue-station-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-queue-station-top i {
  color: var(--subtle);
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.ab-queue-station-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ab-queue-station-grid div {
  padding: 9px 7px 7px;
  border-radius: var(--ds-radius-card-sm);
  background: var(--surface-soft);
  display: grid;
  gap: 4px;
  text-align: center;
}

.ab-queue-station-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.ab-queue-station-grid strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.ab-queue-station-grid em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-station-hero {
  padding: 14px;
  border-radius: var(--ds-radius-media);
  background: linear-gradient(180deg, #3d82df, #3675d2);
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.ab-station-hero-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.ab-station-hero-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
}

.ab-station-hero-icon .icon[data-icon^="station_"] {
  width: 34px;
  height: 34px;
  transform: translateY(-9px) scale(1.25);
  transform-origin: center;
}

.ab-station-hero p {
  margin: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
}

.ab-station-area-card {
  padding: 13px 12px 11px;
  display: grid;
  gap: 8px;
  text-align: left;
}

.ab-station-area-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ab-station-area-head > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ab-station-area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--blue);
}

.ab-station-area-dot.success {
  background: var(--green);
}

.ab-station-area-dot.warning {
  background: var(--amber);
}

.ab-station-area-dot.danger {
  background: var(--red);
}

.ab-station-area-head strong {
  font-size: 15px;
  font-weight: 850;
}

.ab-station-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ab-station-area-grid div {
  padding: 9px 7px 7px;
  border-radius: var(--ds-radius-card-sm);
  background: var(--surface-soft);
  display: grid;
  gap: 4px;
  text-align: center;
}

.ab-station-area-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.ab-station-area-grid strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.ab-station-area-grid em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-station-banner {
  min-height: 76px;
  padding: 13px 14px 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: linear-gradient(90deg, #2d7df0, #5a8ff1);
  color: #fff;
  box-shadow: var(--shadow);
}

.ab-station-banner-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 850;
}

.ab-station-banner-copy em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  font-size: 12px;
}

.ab-station-banner b {
  min-width: 68px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--ds-radius-control);
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 850;
}

.ab-station-banner i {
  font-style: normal;
  font-size: 26px;
  line-height: 1;
}

.ab-station-house {
  min-height: 68px;
  padding: 13px 14px 11px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.ab-station-house-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: #e5f7ef;
  color: var(--green);
}

.ab-station-house-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.ab-station-house-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-station-house i {
  color: var(--subtle);
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.ab-target-card {
  min-height: 64px;
  padding: 13px 12px 11px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.ab-target-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.ab-target-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 850;
}

.ab-target-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-target-card i {
  color: var(--subtle);
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.ab-short-haul-target-card {
  align-items: start;
}

.ab-short-haul-target-card .ab-target-icon {
  align-self: start;
}

.ab-short-haul-target-card .ab-target-icon .icon[data-icon^="station_"] {
  width: 34px;
  height: 34px;
}

.ab-target-copy em.selected {
  color: var(--text);
  font-weight: 650;
}

.ab-target-copy em.pending {
  color: var(--subtle);
}

.ab-short-haul-target-card .ab-target-copy em.selected {
  color: var(--subtle);
  font-weight: 400;
}

.ab-choice-context {
  padding: 12px 13px;
  border: 1px solid rgba(32, 111, 216, 0.14);
  border-radius: var(--ds-radius-card);
  background: #f4f8ff;
  display: grid;
  gap: 5px;
}

.ab-choice-context strong {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 850;
  color: var(--text);
}

.ab-choice-context span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ab-short-haul-choice-list {
  display: grid;
  gap: 10px;
}

.ab-short-haul-choice-card {
  min-height: 74px;
  padding: 12px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.ab-short-haul-choice-card.active {
  border-color: rgba(32, 111, 216, 0.42);
  box-shadow: 0 10px 24px rgba(32, 111, 216, 0.12);
}

.ab-short-haul-choice-card[data-short-haul-station]:not([data-short-haul-area]):not([data-short-haul-dispatch]) {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

.ab-short-haul-choice-icon {
  width: 42px;
  height: 42px;
  align-self: start;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.ab-short-haul-choice-icon .icon {
  width: 30px;
  height: 30px;
}

.ab-short-haul-choice-card[data-short-haul-station]:not([data-short-haul-area]):not([data-short-haul-dispatch]) .ab-short-haul-choice-icon {
  width: 46px;
  height: 46px;
  background: transparent;
  border-radius: 0;
}

.ab-short-haul-choice-card[data-short-haul-station]:not([data-short-haul-area]):not([data-short-haul-dispatch]) .ab-short-haul-choice-icon .icon[data-icon^="station_"] {
  width: 46px;
  height: 46px;
}

.ab-short-haul-choice-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ab-short-haul-choice-copy strong {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.22;
  font-weight: 850;
}

.ab-short-haul-choice-copy em,
.ab-short-haul-choice-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
}

.ab-short-haul-choice-copy .ab-short-haul-choice-meta {
  color: var(--subtle);
  font-weight: 400;
}

.ab-short-haul-choice-copy small {
  color: var(--subtle);
}

.ab-short-haul-choice-card i {
  color: var(--subtle);
  font-size: 24px;
  line-height: 1;
  font-style: normal;
}

.ab-short-haul-choice-check {
  width: 24px;
  height: 24px;
  border-radius: var(--ds-radius-pill);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
}

.ab-short-haul-choice-check .icon {
  width: 13px;
  height: 13px;
}

.ab-meal-card {
  padding: 13px 12px 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.ab-meal-card-copy {
  min-width: 0;
}

.ab-meal-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ab-meal-card-head strong {
  font-size: 15px;
  font-weight: 850;
}

.ab-meal-card-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-meal-card-price {
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.ab-meal-card-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ab-meal-card-counter button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eff3f8;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.ab-meal-card-counter span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.ab-redeem-summary {
  padding: 15px 14px 13px;
  border-radius: var(--ds-radius-card);
  background: #eaf2ff;
  border: 1px solid #d8e6ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ab-redeem-summary strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.ab-redeem-summary b {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.ab-redeem-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.ab-reward-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ab-reward-card {
  padding: 13px 12px 11px;
  display: grid;
  gap: 6px;
  text-align: center;
}

.ab-reward-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ds-radius-icon);
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: #eef4ff;
  color: var(--blue);
}

.ab-reward-icon .icon {
  width: 22px;
  height: 22px;
}

.ab-reward-card strong {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.ab-reward-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.ab-reward-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ab-reward-foot b {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.ab-reward-foot button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--ds-radius-control);
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ab-journey-card {
  padding: 13px 12px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.ab-journey-card-main strong {
  display: block;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.ab-journey-card-main span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.ab-journey-card-tail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-journey-card-tail b {
  font-size: 16px;
  font-weight: 900;
}

.ab-journey-card-tail .ab-status-pill.success {
  background: var(--green-soft);
}

.ab-journey-card-tail .ab-status-pill.danger {
  background: var(--red-soft);
}

.ab-house-hero {
  padding: 15px 14px 13px;
  border-radius: var(--ds-radius-card);
  color: #fff;
  background: linear-gradient(180deg, #149d6c, #0f9164);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.ab-house-hero-copy {
  display: grid;
  gap: 10px;
}

.ab-house-hero-copy strong {
  font-size: 16px;
  font-weight: 850;
}

.ab-house-density {
  padding: 13px 12px 11px;
  border-radius: var(--ds-radius-card);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 6px;
}

.ab-house-density span {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.92;
}

.ab-house-density b {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.ab-house-density em {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  font-size: 12px;
}

.ab-house-progress {
  height: 10px;
  border-radius: var(--ds-radius-pill);
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.ab-house-progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9ba0, #ffd1a5);
}

.ab-review-card {
  padding: 13px 12px 11px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px;
  background: var(--surface-soft);
}

.ab-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.ab-review-copy {
  min-width: 0;
}

.ab-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ab-review-head strong {
  font-size: 14px;
  font-weight: 850;
}

.ab-review-head span {
  color: var(--muted);
  font-size: 12px;
}

.ab-review-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.ab-traffic-action-grid,
.ab-traffic-other-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ab-taxi-house-page .ab-topbar,
.ab-driver-station-page .ab-topbar {
  background: rgba(245, 247, 251, 0.98);
}

/* Business-page typography calibration: larger text with lighter Chinese weights. */
.ab-page {
  font-size: 15px;
  line-height: var(--ds-line-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ab-page strong,
.ab-page b {
  font-weight: 600;
}

.ab-topbar {
  height: 54px;
}

.ab-topbar-copy h1 {
  font-size: 20px;
  line-height: 1.14;
  font-weight: 700;
}

.ab-topbar-copy p {
  font-size: 13.5px;
  font-weight: 400;
}

.ab-topbar-action,
.ab-section-link {
  font-size: 14px;
  font-weight: 600;
}

.ab-section-title h2 {
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
}

.ab-home-hero-copy p,
.ab-home-hero-flow,
.ab-home-badge {
  font-weight: 600;
}

.ab-home-hero-copy h1 {
  font-size: 28px;
  font-weight: 800;
}

.ab-home-weather strong {
  font-weight: 800;
}

.ab-home-weather span,
.ab-station-chip {
  font-weight: 700;
}

.ab-info-row {
  min-height: 54px;
  padding-top: 9px;
  padding-bottom: 8px;
}

.ab-info-list.compact .ab-info-row {
  min-height: 50px;
  padding-top: 8px;
  padding-bottom: 7px;
}

.ab-info-row strong,
.ab-action-tile strong,
.ab-preview-card strong,
.ab-panel-head h2,
.ab-record-head strong,
.ab-profile-card-copy strong,
.ab-tip-card strong,
.ab-map-shell-main strong,
.ab-route-plan-main strong,
.ab-route-plan-card strong,
.ab-traffic-stop-left strong,
.ab-traffic-ride-copy strong,
.ab-traffic-metro-head strong,
.ab-traffic-bus-copy strong,
.ab-traffic-compare-copy strong,
.ab-parking-card-head strong,
.ab-queue-station-copy strong,
.ab-station-area-head strong,
.ab-station-banner-copy strong,
.ab-station-house-copy strong,
.ab-target-copy strong,
.ab-meal-card-head strong,
.ab-reward-card strong,
.ab-journey-card-main strong,
.ab-house-hero-copy strong,
.ab-review-head strong {
  font-size: 15.5px;
  line-height: 1.28;
  font-weight: 600;
}

.ab-panel-head h2,
.ab-tip-card strong,
.ab-house-hero-copy strong {
  font-size: 16.5px;
  font-weight: 700;
}

.ab-info-row em,
.ab-action-tile em,
.ab-preview-card em,
.ab-panel-head p,
.ab-tip-card p,
.ab-record-card p,
.ab-record-reply,
.ab-profile-card-copy em,
.ab-nav-visual-note,
.ab-map-shell-main em,
.ab-route-plan-main em,
.ab-route-plan-card em,
.ab-traffic-stop-left em,
.ab-traffic-ride-copy em,
.ab-traffic-bus-copy em,
.ab-traffic-compare-copy em,
.ab-queue-station-copy em,
.ab-station-banner-copy em,
.ab-station-house-copy em,
.ab-target-copy em,
.ab-meal-card-copy em,
.ab-reward-card em,
.ab-journey-card-main span,
.ab-house-density em,
.ab-review-head span,
.ab-review-copy p {
  font-size: 13px;
  line-height: 1.42;
  font-weight: 400;
}

.ab-info-row-right,
.ab-traffic-meta,
.ab-queue-status-line,
.ab-queue-count,
.ab-parking-card-foot,
.ab-parking-card-usage,
.ab-parking-card-note {
  font-size: 13px;
  font-weight: 500;
}

.ab-info-row-right b,
.ab-parking-card-usage b,
.ab-route-plan-side b {
  font-size: 15px;
  font-weight: 600;
}

.ab-info-icon.tag,
.ab-record-tag,
.ab-status-pill,
.ab-small-badge,
.ab-line-badge {
  font-weight: 700;
}

.ab-select-chip,
.ab-segment,
.ab-nav-search,
.ab-nav-search button,
.ab-nav-visual-top span,
.ab-nav-floor-rail button,
.ab-station-map-tag,
.ab-traffic-ride-action,
.ab-traffic-metro-foot button,
.ab-station-banner b,
.ab-reward-foot button {
  font-size: 14px;
  font-weight: 600;
}

.ab-service-card .ab-action-tile strong {
  font-size: 14.5px;
  font-weight: 600;
}

.ab-service-card .ab-action-tile em {
  font-size: 12.5px;
  font-weight: 400;
}

.ab-stat-card strong,
.ab-queue-station-grid strong,
.ab-station-area-grid strong,
.ab-traffic-metro-grid strong,
.ab-traffic-metro-foot span,
.ab-traffic-ride-price,
.ab-traffic-compare-value b,
.ab-house-density b,
.ab-redeem-summary b,
.ab-reward-foot b,
.ab-journey-card-tail b,
.ab-meal-card-price,
.ab-meal-card-counter span {
  font-weight: 800;
}

.ab-stat-card span,
.ab-traffic-metro-grid span,
.ab-queue-station-grid span,
.ab-station-area-grid span,
.ab-house-density span,
.ab-redeem-summary strong {
  font-weight: 500;
}

.ab-bottom-nav-item {
  font-size: 12px;
  font-weight: 500;
}

.ab-info-icon:not(.tag),
.ab-action-tile-icon,
.ab-preview-card-icon,
.ab-traffic-stop-icon,
.ab-traffic-ride-icon,
.ab-queue-station-icon,
.ab-station-house-icon,
.ab-target-icon {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ab-info-icon:not(.tag) {
  width: 32px;
  height: 32px;
}

.ab-info-icon:not(.tag) .icon,
.ab-info-list.compact .ab-info-icon:not(.tag) .icon {
  width: 24px;
  height: 24px;
}

.ab-action-tile-icon {
  width: 40px;
  height: 36px;
}

.ab-action-tile-icon .icon {
  width: 30px;
  height: 30px;
}

.ab-driver-quick-grid .ab-action-tile {
  align-content: center;
  gap: 8px;
}

.ab-traffic-action-grid .ab-action-tile,
.ab-traffic-other-grid .ab-action-tile {
  align-content: center;
}

.ab-traffic-stop-icon,
.ab-traffic-ride-icon {
  width: 34px;
  height: 34px;
}

.ab-traffic-stop-icon .icon,
.ab-traffic-ride-icon .icon {
  width: 30px;
  height: 30px;
}

.ab-queue-station-top {
  grid-template-columns: 38px minmax(0, 1fr) auto 18px;
}

.ab-queue-station-icon {
  width: 38px;
  height: 38px;
}

.ab-queue-station-icon.plane {
  background: transparent;
  color: #f0a423;
}

.ab-queue-station-icon .icon {
  width: 32px;
  height: 32px;
}

.ab-station-house {
  grid-template-columns: 38px minmax(0, 1fr) 20px;
}

.ab-station-house-icon,
.ab-target-icon {
  width: 38px;
  height: 38px;
}

.ab-station-house-icon .icon,
.ab-target-icon .icon {
  width: 32px;
  height: 32px;
}

.ab-target-icon .icon[data-icon^="station_"] {
  width: 34px;
  height: 34px;
  transform: scale(1.35);
  transform-origin: center;
}

.ab-select-chip .icon {
  width: 21px;
  height: 21px;
}

.ab-taxi-house-page .ab-info-row-left > span:last-child {
  min-width: 0;
}

.ab-taxi-house-page .ab-info-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-taxi-house-page .ab-select-chip {
  gap: 5px;
  padding-inline: 5px;
}

.ab-taxi-house-page .ab-select-chip span {
  white-space: nowrap;
}

.ab-taxi-house-page .ab-tab-row .ab-select-chip {
  gap: 5px;
  padding-inline: 4px;
}

@media (max-width: 430px) {
  #app:not(.mobile-preview-app):not(.design-system-app):not(.anchor-app) {
    width: 100vw;
  }

  .bottom-nav {
    width: 100vw;
  }

  .ab-bottom-nav {
    width: 100vw;
  }
}
