/* ============================================================
   全国失信被执行人公示平台 — 暗色科技风
   正常页面布局版（非全屏地图）
   ============================================================ */

/* 高德 InfoWindow 覆盖 */
.amap-info-content { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.amap-info-close { display: none !important; }
.amap-info-sharp { border-top-color: #131929 !important; }
.amap-logo { display: none !important; }
.amap-copyright { display: none !important; }

/* ============================================================
   CSS 变量
   ============================================================ */
:root {
  --bg-body:       #06090f;
  --bg-dark:       #0a0e1a;
  --bg-panel:      #0d1220;
  --bg-card:       #111827;
  --bg-card-hover: #1a2235;
  --border:        rgba(0, 180, 255, 0.12);
  --border-bright: rgba(0, 200, 255, 0.35);
  --accent:        #00c8ff;
  --accent-dim:    rgba(0, 200, 255, 0.12);
  --accent-glow:   rgba(0, 200, 255, 0.4);
  --red:           #ff3b3b;
  --red-dim:       rgba(255, 59, 59, 0.15);
  --orange:        #ff7b00;
  --green:         #00ff9d;
  --yellow:        #ffc107;
  --text:          #e0eaff;
  --text2:         #8a9bbf;
  --text3:         #4a5a78;
  --glow:          0 0 15px rgba(0, 200, 255, 0.4);
  --glow-red:      0 0 15px rgba(255, 59, 59, 0.5);
  --radius:        10px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h:      60px;
  --container-w:   1280px;
}

/* ============================================================
   基础重置
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  font-size: 14px;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
button { font-family: inherit; }

/* 滚动条 */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }

/* ============================================================
   容器
   ============================================================ */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   顶部导航栏
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(6, 9, 15, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-brand .fa-shield-halved {
  font-size: 26px;
  color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
  line-height: 1.2;
}

.brand-sub {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text3);
  margin-top: 1px;
}

.navbar-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link i { font-size: 12px; }

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav-link.active {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-bright);
}

/* ============================================================
   主内容
   ============================================================ */
.main-content {
  width: 100%;
}

/* ============================================================
   Section 通用样式
   ============================================================ */
.stats-section,
.map-section,
.nearby-section,
.list-section {
  padding: 32px 0;
}

.stats-section { background: var(--bg-dark); padding-top: 28px; padding-bottom: 28px; }
.map-section { background: var(--bg-body); }
.nearby-section { background: var(--bg-dark); }
.list-section { background: var(--bg-body); }

/* Section 分割线 */
.map-section,
.nearby-section,
.list-section {
  border-top: 1px solid var(--border);
}

/* Section 标题 */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-header h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header h2 i {
  color: var(--accent);
  font-size: 16px;
}

/* ============================================================
   统计概览
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.stat-card.warn::before { background: var(--red); }

.stat-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.stat-icon.warn {
  background: var(--red-dim);
  color: var(--red);
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

.stat-number.highlight {
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: var(--text3);
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ============================================================
   地图区域
   ============================================================ */
.map-header-controls {
  display: flex;
  gap: 8px;
}

.ctrl-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
}

.ctrl-btn:hover {
  background: var(--accent-dim);
  border-color: var(--border-bright);
  box-shadow: var(--glow);
}

/* 地图容器外壳 */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

#mapContainer {
  width: 100%;
  height: 100%;
}

/* 地图顶部搜索浮层 */
.map-search-overlay {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 500px;
  max-width: calc(100% - 24px);
}

.map-search-box {
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid var(--border-bright);
  border-radius: 30px;
  padding: 0 6px 0 16px;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  transition: var(--transition);
}

.map-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: var(--glow), 0 4px 20px rgba(0, 0, 0, 0.7);
}

.map-search-box > i {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.map-search-box input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  padding: 13px 0;
  font-family: inherit;
}

.map-search-box input::placeholder { color: var(--text3); }

.map-search-box button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #0090c0, #00c8ff);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
  flex-shrink: 0;
}

.map-search-box button:hover {
  box-shadow: var(--glow);
  transform: scale(1.08);
}

/* 范围选择浮层（地图底部） */
.map-range-overlay {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 8px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.range-pill-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.range-pill-label {
  font-size: 11px;
  color: var(--text3);
  margin-right: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.range-pill-label i { color: var(--accent); }

.range-pill {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: transparent;
  color: var(--text2);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.range-pill.active,
.range-pill:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.range-result-count {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

/* 地图下方提示文字 */
.map-tip {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-tip i { color: var(--accent); opacity: 0.7; }

/* ============================================================
   自定义 Marker 样式
   ============================================================ */
.pulse-marker {
  position: relative;
  width: 16px;
  height: 16px;
}

.pulse-marker .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
}

.pulse-marker .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--red);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
  opacity: 0;
}

.pulse-marker .ring2 { animation-delay: 0.7s; }
.pulse-marker .ring3 { animation-delay: 1.4s; }

@keyframes pulseRing {
  0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

/* 搜索中心 pin */
.search-center-pin {
  width: 20px;
  height: 20px;
  position: relative;
}

.search-center-pin::before,
.search-center-pin::after {
  content: '';
  position: absolute;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.search-center-pin::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.search-center-pin::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

/* InfoWindow 弹出卡片 */
.popup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  min-width: 220px;
  max-width: 280px;
}

.popup-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.popup-row {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.popup-row i {
  color: var(--accent);
  width: 14px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  color: var(--accent);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-family: inherit;
}

.popup-btn:hover {
  background: rgba(0, 200, 255, 0.22);
  box-shadow: var(--glow);
}

/* ============================================================
   查身边失信人
   ============================================================ */
.nearby-intro {
  color: var(--text2);
  font-size: 13px;
  margin-bottom: 16px;
}

.nearby-search-bar {
  margin-bottom: 20px;
}

.search-input-large {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 8px 0 16px;
  gap: 10px;
  transition: var(--transition);
}

.search-input-large:focus-within {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.search-input-large > i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.search-input-large input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
  padding: 14px 0;
  font-family: inherit;
}

.search-input-large input::placeholder { color: var(--text3); }

/* 内联范围选择 */
.range-select-inline {
  flex-shrink: 0;
}

.range-select-inline select {
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text2);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.range-select-inline select:hover,
.range-select-inline select:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-search-go {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #007ab0, #00c8ff);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: inherit;
}

.btn-search-go:hover {
  box-shadow: var(--glow);
  transform: scale(1.02);
}

/* 搜索结果区 */
.nearby-results {
  min-height: 180px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  color: var(--text3);
  gap: 12px;
}

.empty-state i {
  font-size: 38px;
  opacity: 0.3;
}

.empty-state p {
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
}

/* 结果标题行 */
.nearby-result-header {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text2);
}

.nearby-result-header span {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
}

/* 卡片网格 */
.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  opacity: 0;
  transition: var(--transition);
}

.result-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.result-card:hover::before { opacity: 1; }

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

.card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
}

.card-dist {
  font-size: 11px;
  color: var(--text3);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2px 8px;
}

.card-row {
  font-size: 12px;
  color: var(--text2);
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.card-row i {
  color: var(--accent);
  width: 13px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   名单列表
   ============================================================ */
.list-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-select {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text2);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--accent);
  color: var(--text);
}

.filter-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  transition: var(--transition);
}

.filter-search-wrap:focus-within {
  border-color: var(--accent);
}

.filter-search-wrap i {
  color: var(--text3);
  font-size: 13px;
}

.filter-input {
  border: none;
  background: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  padding: 9px 0;
  width: 220px;
  font-family: inherit;
}

.filter-input::placeholder { color: var(--text3); }

/* 表格 */
.list-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.debtor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  white-space: nowrap;
}

.debtor-table thead th {
  background: rgba(0, 200, 255, 0.05);
  color: var(--text3);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.debtor-table tbody tr {
  border-bottom: 1px solid rgba(0, 180, 255, 0.06);
  transition: background var(--transition);
}

.debtor-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.debtor-table tbody tr:last-child {
  border-bottom: none;
}

.debtor-table td {
  padding: 11px 14px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.td-index {
  color: var(--text3);
  font-size: 12px;
  text-align: center;
}

.td-name {
  color: var(--text);
  font-weight: 600;
}

.td-amount {
  color: var(--orange);
  font-weight: 600;
}

.td-court {
  color: var(--accent);
  font-size: 12px;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
}

.btn-detail:hover {
  border-color: var(--border-bright);
  box-shadow: var(--glow);
  transform: scale(1.1);
}

/* 分页 */
.list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 4px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text2);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
  box-shadow: var(--glow);
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-info {
  font-size: 12px;
  color: var(--text3);
  padding: 0 8px;
}

/* ============================================================
   详情弹窗（模态框）
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 200, 255, 0.1);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--glow-red);
}

.modal-body {
  padding: 20px 24px 28px;
  clear: both;
}

/* 详情内容 */
.detail-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.detail-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  object-fit: cover;
}

.detail-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
}

.detail-name {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}

.detail-tag {
  text-align: center;
  margin-bottom: 16px;
}

.detail-tag .tag {
  display: inline-block;
  font-size: 11px;
  color: var(--orange);
  border: 1px solid rgba(255, 123, 0, 0.4);
  background: rgba(255, 123, 0, 0.1);
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 1px;
}

.detail-section-title {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 14px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

.detail-row > i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 13px;
}

.detail-row-content {
  flex: 1;
  min-width: 0;
}

.detail-row-label {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 2px;
}

.detail-row-value {
  font-size: 14px;
  color: var(--text);
  word-break: break-all;
}

.detail-row-value.highlight {
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}

.detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.detail-btn {
  flex: 1;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text2);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-decoration: none;
}

.detail-btn:hover {
  border-color: var(--border-bright);
  color: var(--accent);
  box-shadow: var(--glow);
}

.detail-btn.primary {
  background: var(--accent-dim);
  border-color: var(--border-bright);
  color: var(--accent);
}

.detail-btn.primary:hover {
  background: rgba(0, 200, 255, 0.22);
  box-shadow: var(--glow);
}

/* ============================================================
   底部
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.footer-logo i {
  font-size: 20px;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.8;
}

.footer-sub {
  font-size: 11px;
  color: var(--text3);
  opacity: 0.6;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 900px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-nav .nav-link span {
    display: none;
  }

  .map-search-overlay {
    width: calc(100% - 80px);
  }

  .filter-input {
    width: 160px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .brand-sub { display: none; }

  .navbar-nav {
    gap: 2px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card { padding: 14px 16px; gap: 10px; }
  .stat-icon { width: 38px; height: 38px; font-size: 16px; }
  .stat-number { font-size: 22px; }

  .map-wrapper { height: 380px; }

  .map-range-overlay {
    flex-direction: column;
    gap: 8px;
    bottom: 8px;
    padding: 10px 14px;
  }

  .nearby-section { padding: 24px 0; }
  .list-section { padding: 24px 0; }

  .search-input-large {
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 8px;
  }

  .search-input-large input {
    width: 100%;
    padding: 6px 0;
  }

  .range-select-inline { order: 3; }
  .btn-search-go { order: 4; width: 100%; justify-content: center; }

  .list-controls { flex-direction: column; align-items: stretch; }
  .filter-input { width: 100%; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .modal-card { max-height: 92vh; }
  .modal-body { padding: 16px 18px 22px; }
}
