:root {
  /* 现代智慧文旅配色 */
  --primary: #059669; /* 安溪茶绿 */
  --primary-light: #ecfdf5;
  --secondary: #0ea5e9; /* 智慧出行蓝 */
  --secondary-light: #f0f9ff;
  --accent: #f59e0b; /* 活力暖橙 (美食/活动) */
  --accent-light: #fffbeb;
  
  --ink-main: #111827; /* 极黑主文本 */
  --ink-sub: #4b5563; /* 灰色副文本 */
  --ink-muted: #9ca3af; /* 浅灰提示 */
  
  --bg-app: #f3f4f6; /* 全局高级灰背景 */
  --surface: #ffffff; /* 卡片白 */
  --border: rgba(17, 24, 39, 0.08);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  min-height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
  display: grid;
  place-items: start center;
  background: #e5e7eb;
  color: var(--ink-main);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button { border: 0; color: inherit; background: transparent; cursor: pointer; padding: 0; }

.phone-frame {
  position: relative;
  width: min(414px, 100vw);
  height: 100dvh;
  min-height: 0;
  max-height: 100dvh;
  overflow: hidden;
  background: var(--bg-app);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 25px 80px rgba(0,0,0,0.15);
}

/* 页面切换动画优化 */
.page {
  position: absolute;
  inset: 0 0 64px;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--bg-app);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.98);
  transition: all 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.page.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.page::-webkit-scrollbar { display: none; }

/* 顶部通用 */
.mini-top, .plain-top, .food-top { display: flex; align-items: center; justify-content: space-between; }

/* 首页 Hero */
.hero {
  position: relative;
  height: 290px;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 800ms ease, transform 3000ms ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-current { opacity: 1; transform: scale(1); }

.slide-one { background-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%), url("assets/anxi-hero.png"); background-color: #7fb342;}
.slide-two { background-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%), url("assets/mobility-hero.png"); background-color: #2099ca;}
.slide-three { background-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%), url("assets/service-hero.png"); background-color: #f08a2c;}

.mini-top { position: relative; z-index: 2; padding: 12px 14px 0 14px; }

/* 现代搜索框 */
.search-pill {
  width: 220px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.search-pill input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 13px; color: var(--ink-main); }
.search-pill input::placeholder { color: var(--ink-muted); }

/* 图标基础重构 */
.icon, .tool, .qi, .mi, .nav-icon, .food-photo { display: inline-block; flex: 0 0 auto; }
.search-icon {
  width: 14px; height: 14px; border: 2px solid var(--primary); border-radius: 50%; position: relative;
}
.search-icon::after {
  content: ""; position: absolute; width: 6px; height: 2px; right: -5px; bottom: -3px; border-radius: 2px; background: var(--primary); transform: rotate(45deg);
}

/* 微信胶囊 (毛玻璃) */
.wechat-capsule {
  width: 90px; height: 32px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: space-around;
  padding: 0 10px; color: #fff;
}
.wechat-capsule.small { background: rgba(0, 0, 0, 0.05); color: var(--ink-main); border-color: rgba(0,0,0,0.1); }
.wechat-capsule span { width: 24px; height: 4px; border-radius: 4px; background: radial-gradient(circle, currentColor 2px, transparent 3px) 0 0 / 8px 4px repeat-x; }
.wechat-capsule i { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.3); }
.wechat-capsule.small i { background: rgba(0, 0, 0, 0.1); }
.wechat-capsule b { width: 14px; height: 14px; border: 2px solid currentColor; border-radius: 50%; position: relative; }
.wechat-capsule b::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: currentColor; }

.hero-copy {
  position: relative; z-index: 1; padding: 24px 20px; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-copy p { margin: 0 0 6px; font-size: 20px; font-weight: 800; font-family: "Arial", sans-serif; letter-spacing: 1px;}
.hero-copy h1 { margin: 0; font-size: 26px; font-weight: 900; letter-spacing: 2px; }
.hero-copy span {
  display: inline-block; margin-top: 10px; padding: 6px 12px; border-radius: 100px;
  color: #fff; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 600; border: 0.5px solid rgba(255,255,255,0.3);
}

/* 首页金刚区 (悬浮卡片式) */
.quick-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px 4px;
  padding: 24px 12px; background: var(--surface);
  border-radius: var(--radius-xl);
  margin: -36px 14px 14px; /* 悬浮效果 */
  position: relative; z-index: 10;
  box-shadow: var(--shadow-lg);
}
.quick-grid button, .profile-menu button {
  display: grid; justify-items: center; gap: 8px; min-width: 0;
  font-size: 12px; color: var(--ink-sub); font-weight: 500;
}
.qi { width: 36px; height: 36px; border-radius: 14px; display: grid; place-items: center; position: relative; }

/* 重新给图标上色，按功能分类 */
.qi.scenic, .qi.route, .qi.ticket { color: var(--primary); background: var(--primary-light); }
.qi.bus, .qi.ai { color: var(--secondary); background: var(--secondary-light); }
.qi.event, .qi.food { color: var(--accent); background: var(--accent-light); }
.qi.wc, .qi.guide, .qi.tea { color: #8b5cf6; background: #f3e8ff; } /* 紫色辅助 */

/* 保留原CSS绘画图标的结构，但缩小适配背景圈 */
.qi::before, .qi::after { content: ""; position: absolute; }
.qi.scenic::before { inset: 12px 6px 6px; background: currentColor; clip-path: polygon(0 100%, 18% 38%, 34% 72%, 56% 24%, 100% 100%); }
.qi.route::before { inset: 8px; border: 2px dotted currentColor; border-radius: 50%; }
.qi.ticket::before { inset: 9px 8px; border-radius: 2px; background: currentColor; }
.qi.ticket::after { width: 6px; height: 6px; right: 6px; top: 12px; background: var(--primary-light); border-radius: 2px; }
.qi.bus::before { inset: 10px 8px 10px; border-radius: 2px; background: currentColor; }
.qi.bus::after { left: 10px; right: 10px; bottom: 8px; height: 2px; background: radial-gradient(circle, currentColor 2px, transparent 2px) 0 0 / 6px 2px repeat-x; }
.qi.ai::before { inset: 8px; border: 2px solid currentColor; border-radius: 50%; }
.qi.wc::before { left: 14px; top: 8px; width: 3px; height: 14px; border-radius: 2px; background: currentColor; box-shadow: 6px 0 0 currentColor; }
.qi.guide::before { inset: 12px 6px 8px; border-radius: 6px; background: currentColor; }
.qi.food::before { left: 8px; right: 8px; bottom: 10px; height: 4px; border-radius: 0 0 8px 8px; background: currentColor; }
.qi.food::after { left: 10px; top: 10px; width: 10px; height: 6px; border: 2px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.qi.tea::before { inset: 9px 10px 11px; border-radius: 50% 50% 45% 45%; background: currentColor; }

/* 天气与公告合并优化 */
.notice {
  display: flex; gap: 8px; align-items: center; min-height: 40px;
  margin: 0 14px 14px; padding: 0 16px; border-radius: 100px;
  background: var(--surface); color: var(--ink-sub); font-size: 13px;
  box-shadow: var(--shadow-sm);
}
.bell { color: var(--accent); }
.weather-strip { display: none; } /* 移除了单独的天气条，使其更精简 */

.content-section { padding: 8px 14px 14px; }
.content-section h2 {
  display: flex; align-items: center; gap: 8px; margin: 0 0 16px;
  color: var(--ink-main); font-size: 18px; font-weight: 800;
}
.content-section h2 span {
  width: 24px; height: 24px; display: grid; place-items: center; border-radius: 6px;
  color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); font-size: 12px; font-weight: bold;
}

/* 广告横幅现代化 */
.ad-marquee { overflow: hidden; border-radius: var(--radius-lg); }
.ad-track { display: flex; gap: 10px; width: max-content; animation: ad-scroll 25s linear infinite; }
.ad-card {
  width: 220px; min-height: 110px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; border-radius: var(--radius-lg); color: #fff; overflow: hidden; position: relative; flex: 0 0 auto;
}
.ad-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.ad-card.dark { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.ad-card.orange { background: linear-gradient(135deg, #f59e0b, #b45309); }
.ad-card.green { background: linear-gradient(135deg, #10b981, #047857); }
.ad-card p, .ad-card strong { position: relative; z-index: 2; margin: 0; }
.ad-card p { font-size: 12px; opacity: 0.9; margin-bottom: 4px;}
.ad-card strong { font-size: 16px; line-height: 1.4; font-weight: 700;}

@keyframes ad-scroll { from { transform: translateX(0); } to { transform: translateX(-460px); } }

.home-data-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 4px 14px 16px;
}
.home-data-band article {
  min-height: 92px;
  padding: 14px 10px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(14, 165, 233, 0.12), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-sm);
}
.home-data-band span {
  color: var(--ink-sub);
  font-size: 12px;
}
.home-data-band strong {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}
.home-data-band p {
  margin: 5px 0 0;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.35;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section-title-row h2 { margin: 0; }
.section-title-row button {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 12px;
  font-weight: 800;
}

.route-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 10px;
}
.route-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.52)),
    linear-gradient(135deg, #0f766e, #0ea5e9);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.route-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -32px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.route-card.compact {
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.48)),
    linear-gradient(135deg, #f59e0b, #047857);
}
.route-card small,
.route-card strong,
.route-card p,
.route-card span {
  position: relative;
  z-index: 1;
}
.route-card small {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.88;
}
.route-card strong {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.35;
}
.route-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.45;
}
.route-card span {
  width: fit-content;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 800;
}

.home-neighbor-section {
  padding-bottom: 28px;
}
.neighbor-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 16%, rgba(5, 150, 105, 0.15), transparent 36%),
    var(--surface);
  box-shadow: var(--shadow-md);
}
.neighbor-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink-main);
  font-size: 18px;
  font-weight: 900;
}
.neighbor-card p {
  margin: 7px 0 0;
  color: var(--ink-sub);
  font-size: 13px;
  line-height: 1.45;
}
.neighbor-card b {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0f766e);
  font-size: 12px;
}
.home-feed {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.home-feed article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-sm);
}
.home-feed span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.home-feed p {
  margin: 0;
  overflow: hidden;
  color: var(--ink-sub);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 底部导航 (毛玻璃 iOS 风) */
.bottom-nav {
  position: absolute; left: 0; right: 0; bottom: 0; height: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 0.5px solid rgba(0, 0, 0, 0.08); z-index: 99; padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav button {
  display: grid; justify-items: center; align-content: center; gap: 4px;
  color: var(--ink-muted); font-size: 11px; font-weight: 500; transition: color 0.3s;
}
.bottom-nav button.active { color: var(--primary); font-weight: 700; }

.nav-icon { width: 24px; height: 24px; position: relative; color: currentColor; }
.nav-icon::before,
.nav-icon::after { content: ""; position: absolute; }
.nav-icon.home::before { inset: 3px 5px; border: 2px solid currentColor; border-radius: 6px; }
.nav-icon.home::after { left: 9px; top: 8px; width: 2px; height: 2px; background: currentColor; box-shadow: 4px 0 0 currentColor, 0 4px 0 currentColor, 4px 4px 0 currentColor; }
.nav-icon.map::before { left: 5px; top: 1px; width: 14px; height: 18px; background: currentColor; clip-path: path("M7 0C3.2 0 0 3.1 0 7c0 5.2 7 11 7 11s7-5.8 7-11c0-3.9-3.2-7-7-7z"); }
.nav-icon.map::after { left: 10px; top: 6px; width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.nav-icon.profile::before { left: 6px; top: 3px; width: 12px; height: 12px; border-radius: 50%; background: currentColor; }
.nav-icon.profile::after { left: 2px; bottom: 1px; width: 20px; height: 10px; border-radius: 12px 12px 4px 4px; background: currentColor; }

/* 地图页重构 */
.page-map {
  background: var(--bg-app);
  overflow: hidden;
  touch-action: pan-x pan-y;
}
.plain-top { height: 60px; padding: 0 14px; background: var(--surface); position: relative; z-index: 10; }
.plain-top strong { flex: 1; text-align: center; font-size: 16px; font-weight: 700; color: var(--ink-main); }
.back-button { width: 40px; height: 40px; display: grid; place-items: center; font-size: 28px; }

/* 现代地图 Tab */
.page-map .map-tabs {
  height: 64px; display: flex; gap: 10px; overflow-x: auto; padding: 9px 14px 10px;
  background: var(--surface); border-bottom: 1px solid var(--border);
  scrollbar-width: thin; scrollbar-color: var(--primary) rgba(5, 150, 105, 0.12);
  align-items: flex-start; position: relative; z-index: 10;
}
.page-map .map-tabs::-webkit-scrollbar {
  height: 5px;
}
.page-map .map-tabs::-webkit-scrollbar-track {
  margin: 0 14px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
}
.page-map .map-tabs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.page-map .map-tabs button {
  flex: 0 0 auto; min-width: 92px; padding: 0 16px; height: 36px; border-radius: 100px;
  color: var(--ink-sub); background: var(--bg-app); font-size: 13px; font-weight: 500; transition: all 0.3s;
}
.page-map .map-tabs .active { color: #fff; background: var(--primary); box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3); }

/* 出行面板悬浮效果 */
.mobility-panel {
  position: relative; z-index: 20; margin: -20px 14px 14px; padding: 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.5);
  overflow: hidden;
}
.mobility-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;}
.eyebrow { color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: 1px; }
.panel-head h2 { margin: 4px 0 0; color: var(--ink-main); font-size: 20px; }
.panel-head strong { padding: 6px 12px; border-radius: 100px; color: #fff; background: var(--primary); font-size: 12px; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-row article {
  padding: 13px 12px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(243,244,246,0.96), rgba(255,255,255,0.78));
  border: 1px solid rgba(17, 24, 39, 0.03);
}
.metric-row span { color: var(--ink-sub); font-size: 12px; }
.metric-row b { display: block; margin-top: 5px; color: var(--ink-main); font-size: 22px; font-weight: 900;}

.point-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  max-height: 250px;
  overflow-y: auto;
  padding: 2px 2px 4px;
  scrollbar-width: none;
}
.point-list::-webkit-scrollbar { display: none; }
.point-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(5, 150, 105, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  text-align: left;
  border: 1px solid rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}
.point-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.06);
}
.point-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #064e3b);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.24);
  position: relative;
  z-index: 1;
}
.point-main { min-width: 0; }
.point-main strong {
  display: block;
  overflow: hidden;
  color: var(--ink-main);
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.point-main > span:not(.point-tags),
.point-main p {
  margin: 4px 0 8px;
  display: block;
  overflow: hidden;
  color: var(--ink-sub);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.point-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.point-tags span,
.point-tags i {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.point-side {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 6px;
  min-width: 70px;
  position: relative;
  z-index: 1;
}
.point-side strong {
  padding: 6px 10px;
  border-radius: 999px;
  color: #064e3b;
  background: rgba(5, 150, 105, 0.1);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.point-side span { color: var(--ink-muted); font-size: 11px; }

.amap-data-pin {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
  transform: rotate(-45deg);
}
.amap-data-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
}
.berth-map-marker {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.34);
}
.berth-map-marker.free {
  color: #16a34a;
  background: #16a34a;
}
.berth-map-marker.busy {
  color: #ef4444;
  background: #ef4444;
}
.berth-map-marker::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
}

/* 服务详情页 */
.page-service { padding-bottom: 18px; }
.service-hero-card {
  margin: 16px 14px 12px;
  padding: 26px 18px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(14,165,233,0.36), transparent 34%),
    linear-gradient(135deg, #064e3b 0%, #0f766e 45%, #0f172a 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.service-hero-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.service-hero-card .eyebrow { color: rgba(255,255,255,0.76); }
.service-hero-card h2 { position: relative; margin: 10px 0 6px; font-size: 28px; font-weight: 900; }
.service-hero-card p { position: relative; margin: 0; color: rgba(255,255,255,0.86); font-size: 14px; }
.service-summary {
  position: relative;
  margin-top: 18px;
  padding: 12px;
  border-radius: 16px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.13);
  font-size: 13px;
  line-height: 1.5;
}
.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 14px 12px;
}
.service-stats article {
  min-height: 76px;
  padding: 14px 10px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.service-stats strong { display: block; color: var(--ink-main); font-size: 17px; font-weight: 900; }
.service-stats span { display: block; margin-top: 6px; color: var(--ink-muted); font-size: 12px; }
.service-highlight {
  margin: 0 14px 14px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.service-highlight small { color: var(--accent); font-size: 12px; font-weight: 800; }
.service-highlight h3 { margin: 8px 0 4px; color: var(--ink-main); font-size: 22px; }
.service-highlight p { margin: 0 0 12px; color: var(--ink-sub); font-size: 14px; line-height: 1.45; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #047857;
  background: var(--primary-light);
  font-size: 12px;
  font-weight: 800;
}
.service-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 14px 10px;
}
.service-section-head h3 { margin: 0; font-size: 18px; font-weight: 900; }
.service-section-head span { color: var(--ink-muted); font-size: 12px; }
.service-list {
  display: grid;
  gap: 10px;
  margin: 0 14px 138px;
}
.service-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.service-rank {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0f172a);
  font-size: 12px;
  font-weight: 900;
}
.service-card-main { min-width: 0; }
.service-card-title { display: flex; gap: 8px; align-items: center; min-width: 0; }
.service-card-title strong {
  overflow: hidden;
  color: var(--ink-main);
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.service-card-tag {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-light);
  font-size: 11px;
  font-weight: 800;
}
.service-card p {
  margin: 5px 0 7px;
  overflow: hidden;
  color: var(--ink-sub);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.service-card-meta { display: flex; gap: 10px; color: var(--primary); font-size: 12px; font-weight: 800; }
.service-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 22px;
}
.service-action-bar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 74px;
  z-index: 90;
  width: calc(min(414px, 100vw) - 24px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}
.service-action-bar button {
  height: 46px;
  border-radius: 999px;
  color: var(--ink-main);
  background: var(--bg-app);
  font-weight: 800;
}
.service-action-bar .primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0f766e);
}

/* 地图抽屉 iOS 风格 */
.detail-drawer {
  position: fixed; left: 50%; right: auto; bottom: 64px; z-index: 41;
  width: min(414px, 100vw);
  max-height: min(58vh, 460px);
  overflow-y: auto;
  padding: 16px 20px 24px; border-radius: 32px 32px 0 0;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1); transform: translate(-50%, 105%); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.detail-drawer.show { transform: translate(-50%, 0); }
.drawer-handle { width: 40px; height: 5px; margin: 0 auto 16px; border-radius: 10px; background: #cbd5e1; }

.drawer-head { display: grid; grid-template-columns: 50px minmax(0, 1fr) 34px; gap: 14px; align-items: center; }
.drawer-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: var(--primary); font-size: 18px; font-weight: 900; }
.drawer-title-wrap h3 { margin: 0; color: var(--ink-main); font-size: 20px; font-weight: 800; }
.drawer-title-wrap p { margin: 4px 0 0; color: var(--ink-sub); font-size: 13px; }
.drawer-close { width: 34px; height: 34px; border-radius: 50%; color: var(--ink-sub); background: var(--bg-app); font-size: 20px; }

.drawer-address { margin: 16px 0; padding: 14px; border-radius: 16px; color: var(--ink-sub); background: var(--bg-app); font-size: 13px; }
.drawer-grid,
.share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.drawer-grid article { padding: 12px; border-radius: 16px; background: var(--bg-app); }
.drawer-grid span { color: var(--ink-muted); font-size: 12px; }
.drawer-grid b { display: block; margin-top: 6px; color: var(--ink-main); font-size: 15px; font-weight: 700; }
.share-grid {
  margin-top: 10px;
}
.share-grid[hidden] { display: none; }
.share-grid article {
  padding: 12px;
  border-radius: 16px;
  background: var(--primary-light);
}
.share-grid span { color: #047857; font-size: 12px; }
.share-grid b {
  display: block;
  margin-top: 6px;
  color: var(--ink-main);
  font-size: 14px;
  font-weight: 800;
}
.berth-section {
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(14, 165, 233, 0.14), transparent 34%),
    rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.05);
}
.berth-section[hidden] { display: none; }
.berth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.berth-head span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.berth-head strong {
  display: block;
  margin-top: 4px;
  color: var(--ink-main);
  font-size: 15px;
  font-weight: 900;
}
.berth-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-sub);
  font-size: 11px;
  white-space: nowrap;
}
.berth-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.berth-legend .free { background: #10b981; }
.berth-legend .busy { background: #ef4444; }
.berth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 164px;
  overflow-y: auto;
  padding-right: 2px;
}
.berth-grid::-webkit-scrollbar { width: 4px; }
.berth-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.32);
}
.berth-pill {
  min-width: 0;
  min-height: 48px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 14px;
  border: 1px solid transparent;
}
.berth-pill span {
  overflow: hidden;
  max-width: 100%;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.berth-pill b {
  font-size: 10px;
  font-weight: 800;
}
.berth-pill.free {
  color: #047857;
  background: rgba(16, 185, 129, 0.11);
  border-color: rgba(16, 185, 129, 0.16);
}
.berth-pill.busy {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.16);
}
.drawer-note {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #064e3b, #0f766e);
}
.drawer-note span { display: block; color: rgba(255,255,255,0.7); font-size: 12px; }
.drawer-note strong { display: block; margin-top: 4px; font-size: 14px; }

.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.drawer-actions button { height: 48px; border-radius: 100px; font-size: 16px; font-weight: 700; color: var(--ink-main); background: var(--bg-app); }
.drawer-actions .primary { color: #fff; background: var(--primary); box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3); }
.drawer-actions .wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary), #0f766e);
}

.detail-drawer.road-compact {
  max-height: min(36vh, 300px);
  padding: 10px 16px 16px;
  border-radius: 26px 26px 0 0;
}

.detail-drawer.road-compact .drawer-handle {
  margin-bottom: 10px;
}

.detail-drawer.road-compact .drawer-head {
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 10px;
}

.detail-drawer.road-compact .drawer-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.detail-drawer.road-compact .drawer-title-wrap h3 {
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-drawer.road-compact .drawer-title-wrap p {
  font-size: 12px;
}

.detail-drawer.road-compact .drawer-address,
.detail-drawer.road-compact .drawer-grid,
.detail-drawer.road-compact .share-grid,
.detail-drawer.road-compact .berth-section {
  display: none;
}

.detail-drawer.road-compact .drawer-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
}

.detail-drawer.road-compact .drawer-note strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-drawer.road-compact .drawer-actions {
  margin-top: 10px;
  gap: 10px;
}

.detail-drawer.road-compact .drawer-actions button {
  height: 42px;
  font-size: 14px;
}

.page-map .detail-drawer.show {
  max-height: min(34vh, 286px);
  padding: 10px 16px 16px;
  border-radius: 26px 26px 0 0;
}

.page-map .detail-drawer.show .drawer-handle {
  margin-bottom: 10px;
}

.page-map .detail-drawer.show .drawer-head {
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 10px;
}

.page-map .detail-drawer.show .drawer-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.page-map .detail-drawer.show .drawer-title-wrap h3 {
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-map .detail-drawer.show .drawer-title-wrap p {
  font-size: 12px;
}

.page-map .detail-drawer.show .drawer-address,
.page-map .detail-drawer.show .drawer-grid,
.page-map .detail-drawer.show .share-grid,
.page-map .detail-drawer.show .berth-section {
  display: none;
}

.page-map .detail-drawer.show .drawer-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
}

.page-map .detail-drawer.show .drawer-note strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-map .detail-drawer.show .drawer-actions {
  margin-top: 10px;
  gap: 10px;
}

.page-map .detail-drawer.show .drawer-actions button {
  height: 42px;
  font-size: 14px;
}

.bike-station-detail[hidden] {
  display: none;
}

.page-map .detail-drawer.show.bike-detail {
  max-height: min(38vh, 320px);
  padding-bottom: 14px;
}

.page-map .detail-drawer.show.bike-detail .drawer-note {
  display: none;
}

.page-map .detail-drawer.show.bike-detail .bike-station-detail {
  display: block;
  margin-top: 12px;
}

.bike-count-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 0;
  background: #f4f0f0;
}

.bike-count-row article {
  min-height: 62px;
  display: grid;
  place-items: center;
  gap: 6px;
  background: #f4f0f0;
}

.bike-count-row span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7c7c7c;
  background: #dedede;
  font-size: 12px;
  font-weight: 900;
}

.bike-count-row b {
  color: var(--ink-main);
  font-size: 14px;
  font-weight: 500;
}

.bike-count-row i {
  color: #ef4444;
  font-style: normal;
  font-weight: 900;
}

.bike-detail-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: var(--ink-main);
  font-size: 13px;
}

.bike-detail-line span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ef4444;
  font-size: 0;
}

.bike-detail-line span::before {
  font-size: 14px;
}

.bike-detail-line:first-of-type span::before {
  content: "⌖";
}

.bike-detail-line:last-of-type span::before {
  content: "↻";
}

.bike-detail-line strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 我的页面重构 */
.profile-hero {
  position: relative; height: 260px; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 16px;
  padding: 40px 20px 0; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary)); /* 科技蓝绿渐变 */
}
.profile-hero::after {
  content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.avatar { width: 80px; height: 80px; border-radius: 50%; background: #fff; padding: 4px; box-shadow: var(--shadow-md); position: relative; z-index: 2;}
.avatar::after { content:""; display:block; width:100%; height:100%; border-radius:50%; background: url('https://api.dicebear.com/7.x/notionists/svg?seed=Felix') center/cover; }
.profile-hero strong { font-size: 22px; font-weight: 800; z-index: 2; align-self: center; margin-top: 10px;}
.profile-hero .text-button { color: rgba(255,255,255,0.8); z-index: 2; margin-top: 10px;}

.profile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 16px; margin-top: -30px; position: relative; z-index: 10;
}
.profile-stats button {
  height: 80px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md);
  color: var(--ink-main); font-weight: 700; font-size: 15px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.profile-stats button strong { color: var(--primary); font-size: 22px; font-weight: 900; line-height: 1; }
.profile-stats button span { color: var(--ink-sub); font-size: 12px; }

.profile-menu {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 8px; margin: 16px; padding: 24px 12px;
  border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-sm);
}
.mi {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.18);
  position: relative;
}
.mi::before { content: ""; position: absolute; inset: 10px; border-radius: 4px; border: 2px solid currentColor; }
.mi.order::before,
.mi.ticket::before { inset: 10px 8px; border-radius: 4px; background: currentColor; border: 0; }
.mi.calendar::before { inset: 9px 8px; border-radius: 4px; border: 2px solid currentColor; }
.mi.hotel::before { inset: 9px 7px 12px; border: 0; border-radius: 4px 4px 2px 2px; background: currentColor; }
.mi.record::before,
.mi.message::before { inset: 10px 8px; border-radius: 7px; border: 2px solid currentColor; }
.mi.group::before { inset: 9px; border-radius: 50%; background: currentColor; border: 0; box-shadow: 9px 2px 0 -2px currentColor; }
.mi.camera::before { inset: 11px 7px; border-radius: 5px; border: 2px solid currentColor; }
.mi.venue::before { inset: 8px 7px 11px; border: 0; background: currentColor; clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.mi.custom::before { inset: 9px; border: 0; border-radius: 50% 50% 45% 45%; background: currentColor; }
.mi.share::before { inset: 9px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid currentColor; }
.mi.service::before { inset: 9px 8px; border-radius: 50%; border: 2px solid currentColor; }

.profile-timeline {
  margin: 0 16px 86px;
  padding: 18px 14px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.profile-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.profile-section-head h3 { margin: 0; color: var(--ink-main); font-size: 18px; font-weight: 900; }
.profile-section-head button { color: var(--primary); font-size: 13px; font-weight: 800; }
.profile-timeline article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.profile-timeline article:first-of-type { border-top: 0; }
.profile-timeline article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0f172a);
  font-weight: 900;
}
.profile-timeline strong {
  display: block;
  overflow: hidden;
  color: var(--ink-main);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-timeline p {
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--ink-sub);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-timeline b {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 11px;
  white-space: nowrap;
}

/* Toast */
.toast {
  position: absolute; left: 50%; bottom: 100px; z-index: 100;
  padding: 12px 20px; border-radius: 100px; color: #fff; background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px); font-size: 14px; transform: translate(-50%, 20px); opacity: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* 其余地图和细节保留以兼容 JS */
.map-stage {
  position: relative;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  background: #dce97a;
}

.amap-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: #dce97a;
}

.map-status {
  position: absolute;
  left: 14px;
  right: 70px;
  bottom: 14px;
  z-index: 4;
  padding: 9px 12px;
  border-radius: 12px;
  color: #7b480f;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
}

.map-stage.amap-direct .map-status,
.map-stage.amap-ready .map-status {
  display: none;
}

.map-tools { position: absolute; right: 12px; top: 12px; z-index: 5; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.map-tools button { width: 44px; height: 44px; display: grid; place-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 10px; color: var(--ink-sub); }

.page-map .map-stage {
  height: calc(100% - 124px);
  min-height: 0;
}

.page-map .mobility-panel {
  display: none !important;
}

.page-map .point-list {
  max-height: min(170px, 22vh);
}

.page-map.map-detail-open .mobility-panel {
  display: none;
}

.nearest-map-button {
  position: absolute;
  left: 58px;
  right: 62px;
  top: 12px;
  z-index: 80;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #059669, #0f766e);
  box-shadow: 0 16px 32px rgba(5, 150, 105, 0.34);
  font-size: 14px;
  font-weight: 900;
}

.nearest-map-button[hidden] {
  display: none;
}

.parking-list-panel {
  position: fixed;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 140;
  width: min(414px, 100vw);
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(-50%);
}

.parking-list-panel[hidden] {
  display: none;
}

.parking-list-top {
  height: 54px;
  display: grid;
  grid-template-columns: 84px 1fr 84px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: #f7f7f7;
}

.parking-list-top button {
  color: #f59e0b;
  font-size: 15px;
  text-align: left;
}

.parking-list-top strong {
  color: var(--ink-main);
  font-size: 16px;
  text-align: center;
}

.parking-list-summary {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--ink-sub);
  background: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.parking-list-summary span {
  color: var(--ink-main);
  font-size: 15px;
  font-weight: 800;
}

.parking-list-summary b {
  color: var(--primary);
  font-size: 13px;
}

.parking-list-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.parking-list-row {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 16px;
  gap: 10px;
  align-items: center;
  padding: 9px 12px 9px 8px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  text-align: left;
}

.parking-list-row::after {
  content: "›";
  color: #b6b6b6;
  font-size: 24px;
  line-height: 1;
}

.parking-list-pin {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  color: #ef4444;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(-45deg);
}

.parking-list-pin i {
  font-style: normal;
  transform: rotate(45deg);
}

.parking-list-pin.free {
  color: #65b32e;
}

.parking-list-pin.busy {
  color: #f59e0b;
}

.parking-list-main {
  min-width: 0;
}

.parking-list-main strong {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.parking-list-main small {
  display: block;
  margin-top: 3px;
  color: #4b5563;
  font-size: 13px;
}

.parking-list-side {
  color: #374151;
  font-size: 14px;
  white-space: nowrap;
}

.parking-list-side b {
  color: #111827;
  font-weight: 800;
}
