/* ========== HASH House 23rd Anniversary - Styles ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hgreen: #2dab66;
  --hyellow: #ffd60a;
  --hred: #d62828;
  --horange: #ff8500;
  --hblack: #1a1a1a;
  --hdark: #2a2a2a;
  --hgray: #f4f4f0;
  --hlight: #faf8f3;
  --hwhite: #ffffff;
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.15);
}

html, body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--hlight);
  color: var(--hblack);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== 顶部 Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2dab66 0%, #ffd60a 100%);
  padding: 50px 20px 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 6px solid var(--hred);
}

.hero::before {
  content: "ON ON";
  position: absolute;
  top: 18px;
  left: -20px;
  font-size: 140px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.18);
  letter-spacing: -8px;
  transform: rotate(-3deg);
  pointer-events: none;
}

.hero::after {
  content: "🏃 🍺 🏃 🍺 🏃";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  font-size: 28px;
  letter-spacing: 30px;
  opacity: .35;
  pointer-events: none;
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  position: relative;
  z-index: 2;
}

.hero-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--hblack);
  letter-spacing: 1px;
  margin-bottom: 0;
  text-shadow: 3px 3px 0 rgba(255,255,255,.4);
  position: relative;
  z-index: 2;
}

.hero .subtitle {
  font-size: 18px;
  color: var(--hblack);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hero .meta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero .meta span {
  background: var(--hblack);
  color: var(--hyellow);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

/* ===== Hero 快捷入口 ===== */
.hero-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  position: relative;
  z-index: 2;
}
.hero-link {
  display: inline-block;
  background: rgba(0,0,0,.88);
  color: var(--hyellow);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  transition: all .15s;
}
.hero-link strong { font-size: 18px; }
.hero-link:hover {
  transform: translateY(-2px);
  background: var(--hred);
  color: white;
  box-shadow: 0 5px 14px rgba(214,40,40,.4);
}

@media (max-width: 560px) {
  .hero h1 { font-size: 30px; }
  .hero-logo { width: 48px; height: 48px; flex-basis: 48px; }
  .hero-title-row { gap: 10px; }
}

/* ===== 容器 ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  background: white;
  margin: 30px auto;
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 960px;
}

.section h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--hblack);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--hyellow);
  display: inline-block;
  position: relative;
}

.section h2::before {
  content: "▰";
  color: var(--hred);
  margin-right: 8px;
}

/* ===== 行程表 ===== */
.schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.schedule th, .schedule td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px dashed #ddd;
  vertical-align: top;
}
.schedule th {
  background: var(--hblack);
  color: var(--hyellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.schedule tr:hover { background: #fff8e0; }
.schedule .time { color: var(--hred); font-weight: 700; white-space: nowrap; }
.schedule .day-row td {
  background: var(--hgreen);
  color: white;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
}

/* ===== 房型卡片 ===== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.room-card {
  border: 3px solid var(--hblack);
  border-radius: 12px;
  padding: 18px;
  background: var(--hlight);
  position: relative;
  transition: all .2s;
}
.room-card.soldout { opacity: .5; }
.room-card .name {
  font-weight: 900;
  font-size: 16px;
  color: var(--hblack);
  margin-bottom: 6px;
}
.room-card .info { font-size: 13px; color: #666; margin-bottom: 10px; }
.room-card .price {
  font-size: 24px;
  font-weight: 900;
  color: var(--hred);
}
.room-card .price small { font-size: 13px; color: #888; font-weight: 600; }
.room-card .badge {
  position: absolute;
  top: -10px;
  right: -8px;
  background: var(--horange);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(6deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.room-card .badge.sold { background: #888; }

/* ===== 表单 ===== */
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-weight: 700;
  color: var(--hblack);
  margin-bottom: 6px;
  font-size: 14px;
}
label .req { color: var(--hred); margin-left: 2px; }
label .hint { font-weight: 400; color: #888; font-size: 12px; margin-left: 6px; }

input[type="text"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--hgreen);
  box-shadow: 0 0 0 3px rgba(45,171,102,.15);
}

textarea { resize: vertical; min-height: 70px; }

.radio-group, .check-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-pill, .check-pill {
  flex: 1;
  min-width: 90px;
  text-align: center;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  background: white;
  user-select: none;
  transition: all .15s;
}
.radio-pill:hover, .check-pill:hover { border-color: var(--hgreen); }
.radio-pill.active, .check-pill.active {
  background: var(--hyellow);
  border-color: var(--hblack);
  color: var(--hblack);
  box-shadow: 0 2px 0 var(--hblack);
}
.radio-pill input, .check-pill input { display: none; }

/* ===== 费用预览 ===== */
.fee-preview {
  background: var(--hblack);
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.fee-preview::before {
  content: "💰";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 120px;
  opacity: .08;
}
.fee-preview h3 {
  color: var(--hyellow);
  margin-bottom: 14px;
  font-size: 18px;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
}
.fee-row.total {
  border-top: 2px dashed #555;
  margin-top: 10px;
  padding-top: 14px;
  font-size: 22px;
  font-weight: 900;
  color: var(--hyellow);
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--hred);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 4px 0 #a01818;
  transition: all .12s;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #a01818; }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 #a01818; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-block { width: 100%; }
.btn-green { background: var(--hgreen); box-shadow: 0 4px 0 #1f7a48; }
.btn-green:hover { box-shadow: 0 6px 0 #1f7a48; }
.btn-black { background: var(--hblack); box-shadow: 0 4px 0 #000; }
.btn-black:hover { box-shadow: 0 6px 0 #000; }
.btn-blue { background: #2563eb; box-shadow: 0 4px 0 #1a44a8; }
.btn-blue:hover { box-shadow: 0 6px 0 #1a44a8; }

/* ===== 模态/支付弹窗 ===== */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .25s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  border: 4px solid var(--hblack);
}
.modal h2 {
  font-size: 24px;
  margin-bottom: 8px;
  text-align: center;
  color: var(--hred);
}
.modal .order-no {
  text-align: center;
  font-family: monospace;
  background: var(--hblack);
  color: var(--hyellow);
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-block;
  margin: 0 auto 20px;
  font-size: 14px;
}
.modal .amount {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: var(--hred);
  margin: 16px 0;
}
.modal .amount small { font-size: 18px; color: #888; }

.pay-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.pay-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  background: white;
}
.pay-tab.active { border-color: var(--hgreen); background: #eafaf0; }

.qr-box {
  text-align: center;
  padding: 20px;
  background: var(--hlight);
  border-radius: 12px;
  margin: 12px 0;
}
.qr-box img { max-width: 240px; border: 2px solid var(--hblack); border-radius: 8px; }
.qr-box .pay-name { margin-top: 10px; font-weight: 700; color: var(--hblack); }

.upload-area {
  border: 2px dashed #aaa;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  background: var(--hlight);
  cursor: pointer;
  transition: all .2s;
}
.upload-area:hover { border-color: var(--hgreen); background: #f0faf4; }
.upload-area input { display: none; }
.upload-area .preview { max-width: 100%; max-height: 200px; margin-top: 10px; border-radius: 6px; }

/* ===== 成功页 ===== */
.success-card {
  background: white;
  margin: 60px auto;
  max-width: 600px;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 8px solid var(--hgreen);
}
.success-card .check {
  width: 90px;
  height: 90px;
  background: var(--hgreen);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(45,171,102,.4);
}
.success-card h1 { font-size: 32px; margin-bottom: 10px; }
.success-card .order { font-family: monospace; background: var(--hblack); color: var(--hyellow); padding: 6px 12px; border-radius: 6px; display: inline-block; margin: 10px 0; }
.success-card .status { font-size: 18px; margin: 20px 0; padding: 12px; border-radius: 8px; font-weight: 700; }
.success-card .status.pending { background: #fff3e0; color: #e65100; }
.success-card .status.verifying { background: #e3f2fd; color: #1565c0; }
.success-card .status.paid { background: #e8f5e9; color: #2e7d32; }
.success-card .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: var(--hblack);
  color: white;
  margin-top: 50px;
}
.footer .onon { color: var(--hyellow); font-size: 32px; font-weight: 900; font-style: italic; letter-spacing: 4px; }
.footer .small { color: #888; font-size: 12px; margin-top: 10px; }

/* ===== 提示 ===== */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #c62828; }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }
.alert-warn { background: #fff8e1; color: #f57c00; border-left: 4px solid #f57c00; }

/* ===== 管理后台 ===== */
.admin-wrap { padding: 20px; max-width: 1400px; margin: 0 auto; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--hgreen);
}
.stat-card .num { font-size: 32px; font-weight: 900; color: var(--hblack); }
.stat-card .label { font-size: 13px; color: #666; margin-top: 4px; }
.stat-card.pending { border-color: var(--horange); }
.stat-card.paid { border-color: var(--hgreen); }
.stat-card.amount { border-color: var(--hred); }
.stat-card.amount .num { color: var(--hred); }

.admin-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.admin-toolbar input, .admin-toolbar select {
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.admin-toolbar .grow { flex: 1; min-width: 180px; }

.admin-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  background: var(--hblack);
  color: var(--hyellow);
  text-align: left;
  padding: 12px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.admin-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.admin-table tr:hover { background: #fffae6; }
.admin-table .actions { display: flex; gap: 4px; flex-wrap: wrap; }
.admin-table .btn-sm {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.btn-sm-green { background: var(--hgreen); color: white; }
.btn-sm-red { background: var(--hred); color: white; }
.btn-sm-gray { background: #999; color: white; }
.btn-sm-blue { background: #1976d2; color: white; }

.status-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.status-tag.pending { background: #fff3e0; color: #e65100; }
.status-tag.verifying { background: #e3f2fd; color: #1565c0; }
.status-tag.paid { background: #e8f5e9; color: #2e7d32; }
.status-tag.rejected { background: #ffebee; color: #c62828; }

.proof-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.login-card {
  max-width: 380px;
  margin: 100px auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border-top: 8px solid var(--hblack);
}
.login-card h1 { text-align: center; margin-bottom: 24px; font-size: 24px; }

/* ===== 工具类 ===== */
.text-red { color: var(--hred); }
.text-green { color: var(--hgreen); }
.text-gray { color: #888; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.font-bold { font-weight: 900; }
.hidden { display: none !important; }

/* ===== 子页面 Hero（名单 / 退报 / 剧透） ===== */
.page-hero {
  background: linear-gradient(135deg, #2dab66 0%, #ffd60a 100%);
  padding: 36px 20px;
  text-align: center;
  border-bottom: 6px solid var(--hred);
}
.page-hero h1 { font-size: 32px; font-weight: 900; color: var(--hblack); text-shadow: 2px 2px 0 rgba(255,255,255,.4); }
.page-hero .sub { font-size: 15px; color: var(--hblack); font-weight: 600; margin-top: 6px; }
.back-link {
  display: inline-block;
  margin-top: 16px;
  background: var(--hblack);
  color: var(--hyellow);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

/* ===== 名单页 ===== */
.roster-summary {
  text-align: center;
  font-size: 17px;
  color: var(--hblack);
  margin-bottom: 22px;
}
.roster-summary strong { color: var(--hred); font-size: 30px; }
.roster-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.roster-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hlight);
  border: 2px solid var(--hblack);
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
}
.roster-chip .g { font-size: 14px; }
.roster-chip .g.m { color: #1976d2; }
.roster-chip .g.f { color: #e91e63; }
.roster-chip .car { font-size: 14px; }
.roster-chip.driver {
  background: #e3f2fd;
  border-color: #1976d2;
}
.roster-empty { text-align: center; color: #888; padding: 40px 0; }

/* ===== 退报页 ===== */
.cancel-card {
  max-width: 640px;
  margin: 0 auto;
}
.cancel-form label { display: block; }
.cancel-records { margin-top: 24px; }
.cancel-item {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 14px;
  background: var(--hlight);
}
.cancel-item .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.cancel-item .hash-name { font-weight: 900; font-size: 17px; color: var(--hblack); }
.cancel-item .order-no { font-family: monospace; font-size: 12px; color: #666; }
.cancel-item .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 14px;
  margin-bottom: 14px;
}
.cancel-item .grid div span { color: #888; font-size: 12px; margin-right: 4px; }
@media (max-width: 560px) { .cancel-item .grid { grid-template-columns: 1fr; } }
.btn-warn { background: var(--horange); box-shadow: 0 4px 0 #b35f00; }
.btn-warn:hover { box-shadow: 0 6px 0 #b35f00; }
.cancel-done {
  text-align: center;
  padding: 40px 20px;
}
.cancel-done .big { font-size: 60px; }

/* ===== 照片墙 ===== */
.photo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.photo-wall .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid var(--hblack);
  background: #eee;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.photo-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s;
}
.photo-wall .item:hover img { transform: scale(1.05); }
.photo-empty { text-align: center; color: #888; padding: 50px 0; font-size: 15px; }

/* 照片大图预览 */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox img { max-width: 95vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }

/* ============ 活动地点 · 地图 ============ */
.map-section {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.map-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.map-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 18px 10px;
}
.map-head h3 { margin: 0; font-size: 18px; color: var(--hred); }
.map-addr { font-size: 13px; color: #777; }
.map-frame {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  background: #eef1f4;
}
.nav-buttons {
  display: flex;
  gap: 12px;
  padding: 14px 18px 18px;
  flex-wrap: wrap;
}
.nav-btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.nav-tencent { background: #2a7de1; }
.nav-amap { background: #39a03c; }
@media (max-width: 520px) {
  .map-frame { height: 240px; }
  .nav-btn { min-width: 100%; }
}

/* ============ 地图导航独立页 ============ */
.map-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}
.map-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--hred);
  text-decoration: none;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,.04);
}
.map-back:hover { background: rgba(0,0,0,.08); }
.map-page .map-card {
  box-shadow: 0 14px 44px rgba(0,0,0,.16);
}
.nav-tip {
  padding: 4px 18px 0;
  font-size: 13px;
  color: #888;
}
.map-info {
  padding: 0 18px 18px;
  font-size: 13px;
  color: #666;
  border-top: 1px dashed #e3e3e3;
  margin: 0 18px 18px;
  padding-top: 12px;
}
.map-info p { margin: 6px 0; }

/* ============ 首页内嵌扫码缴费 ============ */
.pay-inline {
  margin-top: 22px;
  background: #eafaf0;
  border: 2px solid #07c160;
  border-radius: 14px;
  padding: 18px;
}
.pay-inline h3 {
  font-size: 18px;
  margin: 0 0 14px;
  color: #07c160;
}
.pay-inline-body {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pay-inline-qr {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  text-align: center;
}
.pay-inline-qr img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 6px;
}
.pay-inline-info {
  flex: 1;
  min-width: 220px;
  max-width: 380px;
}
.pay-inline-method {
  font-size: 17px;
  font-weight: 900;
  color: #07c160;
  margin-bottom: 6px;
}
.pay-inline-payee {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}
.pay-inline-tip {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
}
@media (max-width: 520px) {
  .pay-inline-qr img { width: 170px; height: 170px; }
}
