﻿/* ============================================
   火花商行 · 设计系统 v2.0
   Theme: Deep Dark Gaming · Electric Neon
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

/* ============================================
   CSS 变量系统 · 默认（暗色主题）
   ============================================ */
:root {
  /* —— 背景层级 —— */
  --bg-base:        #060912;   /* 最底层页面背景 */
  --bg-surface:     #0d1220;   /* 卡片/面板背景 */
  --bg-elevated:    #141929;   /* 浮层/输入框背景 */
  --bg-hover:       #1c2137;   /* Hover 态背景 */

  /* —— 边框 & 分隔 —— */
  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(0,229,255,0.28);
  --border-glow:    rgba(0,229,255,0.55);

  /* —— 主品牌色：电光青 + 电光粉 —— */
  --accent-cyan:    #00e5ff;
  --accent-cyan-dim: rgba(0,229,255,0.12);
  --accent-pink:    #ff2d78;
  --accent-pink-dim: rgba(255,45,120,0.12);

  /* —— 段位颜色系统 —— */
  --tier-peak:     #ffd700;   /* 巅峰 - 金色 */
  --tier-peak-dim: rgba(255,215,0,0.12);
  --tier-eagle:    #9d4edd;   /* 黑鹰 - 紫色 */
  --tier-eagle-dim:rgba(157,78,221,0.12);
  --tier-diamond:  #00d4ff;   /* 钻石 - 青色 */
  --tier-diamond-dim:rgba(0,212,255,0.12);
  --tier-platinum: #c0c0c0;   /* 铂金 - 银色 */
  --tier-platinum-dim:rgba(192,192,192,0.12);
  --tier-gold:     #ff9500;   /* 黄金 - 橙色 */
  --tier-gold-dim: rgba(255,149,0,0.12);
  /* 兼容旧变量 */
  --tier-gold:     var(--tier-peak);
  --tier-gold-dim: var(--tier-peak-dim);

  /* —— 文字层级 —— */
  --text-primary:   #e8ecf8;
  --text-secondary: #8892aa;
  --text-muted:     #4a5270;

  /* —— 价格红 —— */
  --price-color:   #ff4d6a;
  --price-glow:    rgba(255,77,106,0.35);

  /* —— 区服色 —— */
  --server-qq:     #3b8eea;
  --server-wx:     #07c160;

  /* —— 阴影 —— */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.45);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.55);
  --shadow-glow:   0 0 20px rgba(0,229,255,0.18), 0 4px 20px rgba(0,0,0,0.5);
  --shadow-glow-pink: 0 0 20px rgba(255,45,120,0.18), 0 4px 20px rgba(0,0,0,0.5);

  /* —— 圆角 —— */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* —— 过渡 —— */
  --t: 0.22s cubic-bezier(0.4,0,0.2,1);

  /* —— 字体 —— */
  --font-ui:    'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-game:  'Rajdhani', 'Noto Sans SC', sans-serif;
}

/* ============================================
   亮色模式（.dark 保留，切换到亮色）
   ============================================ */
.dark {
  --bg-base:        #f0f2f8;
  --bg-surface:     #ffffff;
  --bg-elevated:    #f5f7fc;
  --bg-hover:       #edf0f8;

  --border:         rgba(0,0,0,0.09);
  --border-hover:   rgba(0,229,255,0.45);

  --accent-cyan:    #0091ff;
  --accent-cyan-dim: rgba(0,145,255,0.1);
  --accent-pink:    #e8236a;
  --accent-pink-dim: rgba(232,35,106,0.1);

  --tier-gold:     #b8860b;
  --tier-gold-dim: rgba(184,134,11,0.1);

  --text-primary:   #1a2035;
  --text-secondary: #5a6585;
  --text-muted:     #9ba8c4;

  --price-color:   #e8236a;
  --price-glow:    rgba(232,35,106,0.2);

  --server-qq:     #3b8eea;
  --server-wx:     #07c160;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-glow:   0 4px 20px rgba(0,145,255,0.15);
}

/* ============================================
   全局重置 & 基础
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 背景纹理 */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,229,255,0.06) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  min-height: 100vh;
}

button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }

#app {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px;
  min-height: 100vh;
}

/* ============================================
   顶部导航栏
   ============================================ */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t), box-shadow var(--t);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.app-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.4;
}

/* Logo */
.app-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-game);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}
.app-header .logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan), 0 0 16px rgba(0,229,255,0.4);
  animation: logo-pulse 2.4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent-cyan), 0 0 16px rgba(0,229,255,0.4); }
  50%       { box-shadow: 0 0 4px var(--accent-cyan), 0 0 8px rgba(0,229,255,0.2); }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 深色模式切换 */
.theme-label {
  font-size: 12px;
  color: var(--text-muted);
  user-select: none;
  letter-spacing: 0.5px;
}
.theme-toggle {
  width: 44px; height: 26px;
  background: var(--bg-elevated);
  border-radius: 999px;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), #0091ff);
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 0 6px rgba(0,229,255,0.5);
}
.theme-toggle.active::after {
  transform: translateX(18px);
  box-shadow: 0 0 10px rgba(0,229,255,0.7);
}
.theme-toggle.active {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
}

/* ============================================
   筛选面板
   ============================================ */
.filter-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t);
}

.filter-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: border-color var(--t);
}
.filter-row:last-child { border-bottom: none; padding-bottom: 0; }
.filter-row:first-child { padding-top: 0; }

.filter-label {
  width: 80px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.filter-content { flex: 1; min-width: 0; }
.filter-search  { width: 240px; flex-shrink: 0; }
.filter-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* —— 商品类型 Pill（3D感渐变卡片） —— */
.product-type-pills { display: flex; gap: 10px; }
.type-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  user-select: none;
  border: 1px solid var(--border);
}
.type-pill:hover {
  border-color: var(--border-hover);
  background: var(--bg-hover);
  color: var(--text-primary);
}
.type-pill.active {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0,229,255,0.15), inset 0 0 12px rgba(0,229,255,0.05);
}
.type-icon {
  width: 22px; height: 22px;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
  color: #fff; flex-shrink: 0;
}
.rent-icon  { background: linear-gradient(135deg, #0091ff, #00b4d8); }
.buy-icon   { background: linear-gradient(135deg, #ff6b35, #f7c948); }
.equip-icon { background: linear-gradient(135deg, #a855f7, #ec4899); }

/* —— 筛选 Chip —— */
.chip-group {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.chip {
  padding: 5px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t);
  color: var(--text-secondary);
  font-size: 13px;
  user-select: none;
  white-space: nowrap;
}
.chip:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--bg-hover);
}
.chip.active {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  font-weight: 600;
  box-shadow: 0 0 8px rgba(0,229,255,0.12);
}

/* —— 搜索框 —— */
.search-input :deep(.el-input__wrapper) {
  border-radius: var(--radius-md) !important;
  background: var(--bg-elevated) !important;
  box-shadow: none !important;
  border: 1px solid var(--border) !important;
  transition: border-color var(--t), box-shadow var(--t) !important;
}
.search-input :deep(.el-input__wrapper:hover),
.search-input :deep(.el-input__wrapper.is-focus) {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 0 2px rgba(0,229,255,0.1) !important;
}
.search-input :deep(.el-input__inner) { color: var(--text-primary) !important; }
.search-input :deep(.el-input__prefix .el-icon) { color: var(--text-muted); }

/* —— 操作按钮 —— */
.action-btn {
  border-radius: var(--radius-md) !important;
  padding: 7px 16px !important;
  font-size: 13px !important;
  font-family: var(--font-ui) !important;
  transition: all var(--t) !important;
}
.action-btn .el-icon { margin-right: 4px; }

.reset-btn {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  color: var(--text-secondary) !important;
}
.reset-btn:hover {
  border-color: var(--border-hover) !important;
  color: var(--text-primary) !important;
  background: var(--bg-hover) !important;
}
.share-btn {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  color: var(--text-secondary) !important;
}
.share-btn:hover {
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  background: var(--accent-cyan-dim) !important;
}
.shot-btn {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  color: var(--text-secondary) !important;
}
.shot-btn:hover {
  border-color: var(--accent-pink) !important;
  color: var(--accent-pink) !important;
  background: var(--accent-pink-dim) !important;
}

/* —— 价格输入框 —— */
.price-input { width: 130px !important; }
.price-input :deep(.el-input__wrapper) {
  border-radius: var(--radius-md) !important;
  background: var(--bg-surface) !important;
  box-shadow: none !important;
  border: 1px solid var(--border) !important;
  transition: border-color var(--t) !important;
}

/* —— 高级筛选下拉 —— */
.adv-select { width: 130px !important; }
.adv-select :deep(.el-input__wrapper) {
  border-radius: var(--radius-md) !important;
  background: var(--bg-elevated) !important;
  box-shadow: none !important;
  border: 1px solid var(--border) !important;
  transition: border-color var(--t) !important;
}
.adv-select:hover :deep(.el-input__wrapper) {
  border-color: var(--border-hover) !important;
}

/* ============================================
   排序栏
   ============================================ */
.sort-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  gap: 12px;
}

.sort-left { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; flex: 1; min-width: 0; }
.sort-item {
  padding: 6px 16px; cursor: pointer;
  border-radius: var(--radius-md);
  transition: all var(--t);
  color: var(--text-secondary);
  font-size: 13px; user-select: none; white-space: nowrap;
  font-weight: 500;
}
.sort-category {
  padding: 6px 16px 6px 0;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 700;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.5px;
  cursor: default;
}
.sort-item:hover { color: var(--text-primary); background: var(--bg-elevated); }
.sort-item.active {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  font-weight: 700;
  border: 1px solid rgba(0,229,255,0.2);
}
.sort-arrow { font-size: 11px; opacity: 0.5; margin-left: 2px; }
.sort-divider { width: 1px; height: 18px; background: var(--border); margin: 0 8px; }
.sort-chip {
  padding: 5px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 12px; color: var(--text-secondary);
  cursor: pointer; transition: all var(--t);
  user-select: none; white-space: nowrap;
}
.sort-chip:hover { background: var(--bg-hover); color: var(--text-primary); }
.sort-chip.active {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  border-color: rgba(0,229,255,0.3);
  font-weight: 600;
}
.sort-chip.active .chip-arrow { opacity: 1; color: var(--accent-cyan); }
.chip-arrow { font-size: 10px; opacity: 0.4; margin-left: 2px; }

.sort-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.view-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 14px; cursor: pointer;
  border-radius: var(--radius-md);
  font-size: 13px; color: var(--text-secondary);
  transition: all var(--t); user-select: none;
  border: 1px solid transparent;
}
.view-btn:hover { background: var(--bg-elevated); color: var(--text-primary); }
.view-btn.active {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  border-color: rgba(0,229,255,0.2);
  font-weight: 600;
}
.view-icon { font-size: 13px; }
.total-count { margin-left: 16px; color: var(--text-muted); font-size: 13px; white-space: nowrap; }
.count-num {
  color: var(--price-color);
  font-weight: 700;
  font-family: var(--font-game);
  font-size: 16px;
  margin: 0 4px;
}

/* ============================================
   表格视图
   ============================================ */
.table-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: auto;
}

.rental-table thead th {
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-weight: 600;
  padding: 12px 10px;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background var(--t), color var(--t);
}
.rental-table thead th:last-child { border-right: none; }

.rental-table tbody td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  white-space: nowrap;
  transition: background var(--t), border-color var(--t);
}

.rental-table tbody tr {
  transition: background var(--t);
  border-left: 2px solid transparent;
}
.rental-table tbody tr:hover {
  background: rgba(0,229,255,0.04) !important;
  border-left-color: var(--accent-cyan);
}
.rental-table tbody tr:last-child td { border-bottom: none; }

/* 行颜色交替（深浅微差，非对比色） */
.rental-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.rental-table tbody tr:nth-child(even):hover td { background: rgba(0,229,255,0.06) !important; }

/* 高亮数字 */
.hl-red { color: var(--price-color) !important; font-weight: 700; font-family: var(--font-game); font-size: 14px; }
.col-kd { font-family: var(--font-game); font-weight: 700; color: var(--accent-cyan) !important; font-size: 14px; }

/* 列样式 */
.col-id     { font-family: var(--font-game); font-weight: 600; color: var(--text-muted) !important; font-size: 13px; letter-spacing: 0.5px; }
.col-price  { font-family: var(--font-game); font-weight: 800; font-size: 15px; }
.col-deposit{ color: var(--price-color) !important; font-weight: 600; }
.col-tier {
  font-family: var(--font-game);
  font-weight: 700;
  font-size: 13px;
}
/* 段位颜色系统 */
.tier-peak     { color: var(--tier-peak) !important; text-shadow: 0 0 8px var(--tier-peak-dim); }
.tier-eagle    { color: var(--tier-eagle) !important; text-shadow: 0 0 8px var(--tier-eagle-dim); }
.tier-diamond  { color: var(--tier-diamond) !important; text-shadow: 0 0 8px var(--tier-diamond-dim); }
.tier-platinum { color: var(--tier-platinum) !important; text-shadow: 0 0 8px var(--tier-platinum-dim); }
.tier-gold     { color: var(--tier-gold) !important; text-shadow: 0 0 8px var(--tier-gold-dim); }
.tier-default  { color: var(--text-secondary) !important; }
.col-skin { max-width: 160px; overflow: hidden; text-overflow: ellipsis; }

/* 皮肤 mini 标签 */
.skin-mini {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 600; margin-right: 4px;
}
.skin-purple { background: rgba(168,85,247,0.15); color: #c084fc; border: 1px solid rgba(168,85,247,0.25); }
.skin-red    { background: rgba(255,45,120,0.12); color: #ff6b9d; border: 1px solid rgba(255,45,120,0.2); }
.skin-blue   { background: rgba(0,229,255,0.10); color: var(--accent-cyan); border: 1px solid rgba(0,229,255,0.2); }

/* 操作列 */
.col-op { display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: nowrap; }

/* 下单按钮 */
.order-btn {
  background: linear-gradient(135deg, #ff2d78 0%, #c91f5a 100%);
  color: #fff;
  border: none;
  padding: 6px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-game);
  letter-spacing: 0.5px;
  transition: all var(--t);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255,45,120,0.3);
}
.order-btn:hover {
  background: linear-gradient(135deg, #ff4d8a 0%, #e02565 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,45,120,0.45);
}
.order-btn:active { transform: translateY(0); }

/* 详情按钮 */
.detail-btn {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid rgba(0,229,255,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  transition: all var(--t);
  white-space: nowrap;
}
.detail-btn:hover {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.2);
}

/* 空状态 */
.empty-row {
  padding: 60px 0 !important;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.empty-row a { color: var(--accent-cyan); text-decoration: none; }
.empty-row a:hover { text-decoration: underline; }

/* ============================================
   卡片视图
   ============================================ */
.card-grid { display: grid; gap: 16px; padding: 20px; }
.card-grid-small { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.card-grid-large { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.rental-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.rental-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.rental-card:hover {
  border-color: rgba(0,229,255,0.35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.rental-card:hover::before { opacity: 1; }

/* 卡片头部 */
.card-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; font-size: 12px;
}
.card-id {
  font-family: var(--font-game);
  font-weight: 600; color: var(--text-muted);
  font-size: 12px;
}
.card-server {
  padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  border: 1px solid;
}
.server-QQ   {
  background: rgba(59,142,234,0.12);
  color: var(--server-qq);
  border-color: rgba(59,142,234,0.3);
}
.server-微信 {
  background: rgba(7,193,96,0.12);
  color: var(--server-wx);
  border-color: rgba(7,193,96,0.3);
}

.card-tier-badge {
  margin-left: auto;
  font-family: var(--font-game);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
}
/* 卡片段位徽章颜色 */
.tier-badge-peak {
  background: var(--tier-peak-dim);
  color: var(--tier-peak);
  border: 1px solid rgba(255,215,0,0.25);
  text-shadow: 0 0 6px rgba(255,215,0,0.4);
}
.tier-badge-eagle {
  background: var(--tier-eagle-dim);
  color: var(--tier-eagle);
  border: 1px solid rgba(157,78,221,0.25);
  text-shadow: 0 0 6px rgba(157,78,221,0.4);
}
.tier-badge-diamond {
  background: var(--tier-diamond-dim);
  color: var(--tier-diamond);
  border: 1px solid rgba(0,212,255,0.25);
  text-shadow: 0 0 6px rgba(0,212,255,0.4);
}
.tier-badge-platinum {
  background: var(--tier-platinum-dim);
  color: var(--tier-platinum);
  border: 1px solid rgba(192,192,192,0.25);
  text-shadow: 0 0 6px rgba(192,192,192,0.4);
}
.tier-badge-gold {
  background: var(--tier-gold-dim);
  color: var(--tier-gold);
  border: 1px solid rgba(255,149,0,0.25);
  text-shadow: 0 0 6px rgba(255,149,0,0.4);
}
.tier-badge-default {
  background: rgba(136,146,170,0.12);
  color: var(--text-secondary);
  border: 1px solid rgba(136,146,170,0.25);
}

/* 价格行 */
.card-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.card-price {
  font-family: var(--font-game);
  font-size: 22px;
  font-weight: 800;
  color: var(--price-color);
  line-height: 1;
  text-shadow: 0 0 12px var(--price-glow);
}
.card-days { font-size: 12px; color: var(--text-muted); font-weight: normal; font-family: var(--font-ui); }

/* 统计行 */
.card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; margin-bottom: 12px;
}
.card-stats .stat {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg-elevated);
  padding: 8px 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color var(--t), background var(--t);
}
.card-stats .stat:hover { border-color: var(--border-hover); background: var(--bg-hover); }
.card-stats .stat span { color: var(--text-muted); font-size: 10px; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.card-stats .stat b   { color: var(--text-primary); font-weight: 700; font-family: var(--font-game); font-size: 14px; }

/* 大图卡片 */
.rental-card-large .card-image-placeholder {
  background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, rgba(255,45,120,0.06) 100%);
  height: 120px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 14px;
  border: 1px dashed rgba(0,229,255,0.15);
  position: relative;
  overflow: hidden;
}
.rental-card-large .card-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(0,229,255,0.04) 100%);
}
.placeholder-icon { font-size: 36px; line-height: 1; }
.placeholder-text {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.rental-card-large .card-info { margin-bottom: 14px; }
.rental-card-large .info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
}
.rental-card-large .info-row:last-child { border-bottom: none; }
.rental-card-large .info-row span { color: var(--text-muted); font-size: 12px; }
.rental-card-large .info-row b   { color: var(--text-primary); font-weight: 600; font-family: var(--font-game); }
.rental-card-large .info-row.skin-row b { color: #c084fc; font-size: 12px; }

.rental-card-large .card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: border-color var(--t);
}

/* ============================================
   分页
   ============================================ */
.pagination-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px 28px;
  display: flex; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.pagination-wrap :deep(.el-pagination) {
  color: var(--text-secondary) !important;
  font-family: var(--font-game) !important;
}
.pagination-wrap :deep(.el-pagination button) {
  background: var(--bg-elevated) !important;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-md) !important;
}
.pagination-wrap :deep(.el-pager li) {
  background: var(--bg-elevated) !important;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border) !important;
  font-family: var(--font-game) !important;
  font-weight: 600 !important;
}
.pagination-wrap :deep(.el-pager li:hover) {
  color: var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
}
.pagination-wrap :deep(.el-pager li.is-active) {
  background: var(--accent-cyan-dim) !important;
  color: var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 10px rgba(0,229,255,0.2) !important;
}
.pagination-wrap :deep(.el-pagination .el-pagination__total) {
  color: var(--text-muted) !important;
  font-family: var(--font-ui) !important;
}

/* ============================================
   下单弹窗
   ============================================ */
.order-dialog-content { padding: 8px; }
.order-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.order-info-row span { color: var(--text-secondary); font-size: 13px; }
.order-info-row b   { color: var(--text-primary); font-weight: 700; font-family: var(--font-game); font-size: 15px; }
.order-info-row.total-row {
  border-bottom: none;
  border-top: 2px solid var(--border);
  margin-top: 6px; padding-top: 16px;
}
.total-val { font-family: var(--font-game); font-size: 28px !important; font-weight: 800 !important; }

.confirm-order-btn {
  background: linear-gradient(135deg, #ff2d78, #c91f5a) !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(255,45,120,0.35) !important;
  font-family: var(--font-game) !important;
  font-weight: 700 !important;
}
.confirm-order-btn:hover {
  background: linear-gradient(135deg, #ff4d8a, #e02565) !important;
  box-shadow: 0 4px 16px rgba(255,45,120,0.5) !important;
}

/* ============================================
   分享弹窗
   ============================================ */
.share-content { padding: 8px; }
.share-content p { color: var(--text-secondary); margin-bottom: 14px; }
.share-link-box { margin-bottom: 14px; }
.share-actions  { text-align: right; }

/* ============================================
   详情页通用按钮
   ============================================ */
.detail-btn-wide {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  border: 1px solid rgba(0,229,255,0.25);
  padding: 7px 18px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all var(--t);
  font-family: var(--font-ui);
}
.detail-btn-wide:hover {
  background: rgba(0,229,255,0.2);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0,229,255,0.2);
}

/* ============================================
   详情页布局
   ============================================ */
.detail-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start;
}
.detail-left  { display: flex; flex-direction: column; gap: 16px; }
.detail-right { display: flex; flex-direction: column; gap: 16px; }

.detail-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t);
}

/* 图片卡片 */
.detail-image-placeholder {
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, rgba(255,45,120,0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(0,229,255,0.2);
  height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.placeholder-icon { font-size: 48px; line-height: 1; }
.placeholder-sub {
  font-family: var(--font-game);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}

.detail-image-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.detail-tag {
  padding: 4px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.tag-server {
  background: var(--accent-cyan-dim); color: var(--accent-cyan);
  border: 1px solid rgba(0,229,255,0.2);
}
.tag-tier {
  background: var(--tier-gold-dim); color: var(--tier-gold);
  border: 1px solid rgba(255,215,0,0.25);
  text-shadow: 0 0 6px rgba(255,215,0,0.3);
}
/* 详情页段位颜色 */
.tag-tier-peak {
  background: var(--tier-peak-dim); color: var(--tier-peak);
  border: 1px solid rgba(255,215,0,0.25);
  text-shadow: 0 0 6px rgba(255,215,0,0.3);
}
.tag-tier-eagle {
  background: var(--tier-eagle-dim); color: var(--tier-eagle);
  border: 1px solid rgba(157,78,221,0.25);
  text-shadow: 0 0 6px rgba(157,78,221,0.3);
}
.tag-tier-diamond {
  background: var(--tier-diamond-dim); color: var(--tier-diamond);
  border: 1px solid rgba(0,212,255,0.25);
  text-shadow: 0 0 6px rgba(0,212,255,0.3);
}
.tag-tier-platinum {
  background: var(--tier-platinum-dim); color: var(--tier-platinum);
  border: 1px solid rgba(192,192,192,0.25);
  text-shadow: 0 0 6px rgba(192,192,192,0.3);
}
.tag-tier-gold {
  background: var(--tier-gold-dim); color: var(--tier-gold);
  border: 1px solid rgba(255,149,0,0.25);
  text-shadow: 0 0 6px rgba(255,149,0,0.3);
}
.tag-hot { background: var(--accent-pink-dim); color: #ff6b9d; border: 1px solid rgba(255,45,120,0.2); }

/* 价格卡片 */
.detail-price-card { padding-bottom: 22px; }
.price-block { margin-bottom: 16px; }
.price-main { display: flex; align-items: baseline; gap: 2px; }
.price-yuan { font-size: 20px; color: var(--price-color); font-weight: 600; font-family: var(--font-game); }
.price-num  {
  font-size: 40px;
  font-weight: 800;
  color: var(--price-color);
  font-family: var(--font-game);
  line-height: 1;
  text-shadow: 0 0 20px var(--price-glow);
}
.price-unit { font-size: 14px; color: var(--text-muted); font-family: var(--font-ui); }
.price-sub   { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* 租期选择 */
.order-section { margin-bottom: 16px; }
.order-days-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; font-weight: 600; }
.order-days-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.day-btn {
  padding: 6px 18px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--bg-elevated);
  color: var(--text-secondary); font-size: 13px;
  cursor: pointer; transition: all var(--t);
  font-family: var(--font-game); font-weight: 600;
}
.day-btn:hover  { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.day-btn.active {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(0,229,255,0.15);
}
.order-custom { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); }

/* 费用汇总 */
.order-summary { margin-bottom: 14px; }
.summary-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; font-size: 13px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.summary-total {
  font-weight: 700; font-size: 14px;
  border-top: 2px solid var(--border) !important;
  margin-top: 4px; padding-top: 12px;
}
.total-big { font-family: var(--font-game); font-size: 28px !important; font-weight: 800 !important; }

.order-agree-check { margin-bottom: 14px; font-size: 12.5px; }
.order-actions { display: flex; gap: 10px; }
.order-btn-lg {
  flex: 1; text-align: center; padding: 12px 0 !important;
  font-size: 16px !important; font-family: var(--font-game) !important;
  letter-spacing: 1px;
}
.contact-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 13px;
  cursor: pointer; transition: all var(--t);
}
.contact-btn:hover { border-color: var(--border-hover); color: var(--text-primary); background: var(--bg-hover); }

/* 区域标题 */
.detail-section-title {
  font-size: 15px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-game);
  letter-spacing: 0.5px;
}
.section-icon { font-size: 18px; }

/* 信息网格 */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-grid-3 { grid-template-columns: repeat(3, 1fr); }
.detail-grid-4 { grid-template-columns: repeat(4, 1fr); }

.detail-field {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  border: 1px solid var(--border);
  transition: border-color var(--t);
}
.detail-field:hover { border-color: var(--border-hover); }
.field-label  {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.field-value  {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-game);
}
.field-id     {
  color: var(--text-muted) !important;
  font-family: var(--font-game);
  font-size: 16px !important;
  letter-spacing: 2px;
}
.kd-val {
  color: var(--accent-cyan) !important;
  font-weight: 800;
  font-size: 20px !important;
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
}

.tier-badge {
  display: inline-block;
  background: var(--tier-gold-dim);
  color: var(--tier-gold);
  padding: 3px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,215,0,0.25);
  text-shadow: 0 0 8px rgba(255,215,0,0.3);
  font-family: var(--font-game);
}

/* 核心资产统计卡片 */
.stat-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--t);
}
.stat-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.stat-card-awm { border-color: rgba(255,77,106,0.3); }
.stat-card-awm:hover { border-color: rgba(255,77,106,0.5); box-shadow: 0 0 14px rgba(255,77,106,0.12); }
.stat-icon    { font-size: 24px; margin-bottom: 8px; }
.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-game);
  line-height: 1;
}
.stat-unit    { font-size: 14px; color: var(--text-muted); font-family: var(--font-ui); font-weight: 400; }
.stat-label   {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* 皮肤列表 */
.skin-list { display: flex; flex-direction: column; gap: 14px; }
.skin-item { display: flex; align-items: flex-start; gap: 14px; }
.skin-label { width: 80px; font-size: 12px; color: var(--text-muted); flex-shrink: 0; padding-top: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.skin-tags  { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.skin-tag {
  padding: 4px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.skin-tag-purple { background: rgba(168,85,247,0.15); color: #c084fc; border: 1px solid rgba(168,85,247,0.25); }
.skin-tag-red    { background: rgba(255,45,120,0.12); color: #ff6b9d; border: 1px solid rgba(255,45,120,0.2); }
.skin-tag-blue   { background: rgba(0,229,255,0.10); color: var(--accent-cyan); border: 1px solid rgba(0,229,255,0.2); }
.skin-none { color: var(--text-muted); font-size: 12px; padding-top: 5px; }

/* 租赁说明 */
.notice-list { display: flex; flex-direction: column; gap: 10px; }
.notice-item {
  font-size: 13px; color: var(--text-secondary);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
}
.notice-item:last-child { border-bottom: none; }

/* 未找到页面 */
.detail-not-found {
  text-align: center; padding: 100px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.not-found-icon { font-size: 64px; margin-bottom: 20px; }
.detail-not-found h3 { margin: 0 0 10px; color: var(--text-primary); font-family: var(--font-game); }
.detail-not-found p  { margin: 0 0 28px; color: var(--text-muted); }

/* ============================================
   通用头部按钮
   ============================================ */
.header-btn {
  padding: 7px 18px; border-radius: var(--radius-md);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  text-decoration: none; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); transition: all var(--t);
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-ui);
}
.header-btn:hover { border-color: var(--border-hover); color: var(--text-primary); background: var(--bg-hover); }

.header-btn.publish-btn {
  background: linear-gradient(135deg, #0091ff, #0057d9);
  color: #fff; border: none;
  box-shadow: 0 2px 10px rgba(0,145,255,0.35);
}
.header-btn.publish-btn:hover {
  background: linear-gradient(135deg, #00a3ff, #0066e0);
  box-shadow: 0 4px 16px rgba(0,145,255,0.5);
}

.header-btn.login-btn {
  background: linear-gradient(135deg, #ff2d78, #c91f5a);
  color: #fff; border: none;
  box-shadow: 0 2px 10px rgba(255,45,120,0.35);
}
.header-btn.login-btn:hover {
  background: linear-gradient(135deg, #ff4d8a, #e02565);
  box-shadow: 0 4px 16px rgba(255,45,120,0.5);
}

/* 用户头像 */
.user-menu { margin-left: 4px; }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), #0091ff);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  user-select: none;
  box-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.user-avatar:hover { transform: scale(1.08); box-shadow: 0 0 16px rgba(0,229,255,0.45); }

/* ============================================
   二维码弹窗
   ============================================ */
.qrcode-dialog { text-align: center; padding: 10px; }
.qrcode-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 18px; font-family: var(--font-game); }
.qrcode-img-wrap {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 16px; margin-bottom: 22px;
  display: inline-block;
  border: 1px solid var(--border);
}
.qrcode-img { width: 200px; height: 200px; border-radius: var(--radius-md); object-fit: contain; }
.qrcode-notes {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.18);
  border-radius: var(--radius-md);
}
.notes-content {
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  word-break: break-all;
  white-space: pre-wrap;
}
.notes-text {
  color: var(--text-primary) !important;
  font-size: 13px;
  word-break: break-all;
}
.qrcode-item-id { margin-bottom: 18px; }
.qrcode-item-id .label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.qrcode-item-id .value {
  font-family: var(--font-game);
  font-size: 34px;
  font-weight: 800;
  color: var(--price-color);
  letter-spacing: 4px;
  text-shadow: 0 0 16px var(--price-glow);
}
.qrcode-tip { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.6; }
.copy-id-btn { width: 100%; }

/* ============================================
   发布页
   ============================================ */
.publish-wrap { max-width: 960px; margin: 0 auto; }
.publish-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.publish-title {
  font-size: 22px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 28px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-game);
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 8px;
}

.form-section { margin-bottom: 32px; }
.form-section .section-title {
  font-size: 14px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
  font-family: var(--font-game);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.section-tip { font-size: 12px; font-weight: 400; color: var(--text-muted); font-family: var(--font-ui); }

.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-row-4 { grid-template-columns: repeat(4, 1fr); }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
.form-row-2 { grid-template-columns: repeat(2, 1fr); }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
.form-tip { font-size: 13px; color: var(--text-muted); margin-left: 4px; font-family: var(--font-ui); }

.form-actions {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 12px;
}

/* ============================================
   用户中心
   ============================================ */
.user-wrap {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
}

.user-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  max-width: 440px; margin: 0 auto; width: 100%;
}

/* 登录标签切换 */
.auth-tabs {
  display: flex;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.auth-tab {
  flex: 1; text-align: center; padding: 14px;
  cursor: pointer; color: var(--text-muted);
  font-weight: 600; font-size: 15px;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--t);
  font-family: var(--font-game);
}
.auth-tab:hover { color: var(--text-secondary); }
.auth-tab.active {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.auth-title {
  font-size: 24px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px; text-align: center;
  font-family: var(--font-game);
}
.auth-btn { width: 100%; margin-top: 12px; }
.auth-footer { text-align: center; margin-top: 22px; color: var(--text-muted); font-size: 13px; }
.auth-footer a { color: var(--accent-cyan); cursor: pointer; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* 用户信息卡片 */
.user-info-card {
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, rgba(168,85,247,0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  border: 1px solid var(--border);
}
.user-info-card .user-avatar {
  width: 76px; height: 76px;
  font-size: 30px;
  margin: 0 auto 14px;
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}
.user-info-card .user-name {
  font-size: 22px; font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-game);
}
.user-info-card .user-role {
  font-size: 13px; color: var(--text-muted); margin: 6px 0 20px;
}
.logout-btn {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-md) !important;
  padding: 8px 24px !important;
}

/* 管理员面板 */
.admin-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.admin-title {
  font-size: 16px; font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-game);
}
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px;
}
.stats-grid .stat-card { background: var(--bg-elevated); }
.stats-grid .stat-num {
  font-size: 30px; font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-game);
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.stats-grid .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* 我的发布 */
.my-items-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.panel-title {
  font-size: 16px; font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-game);
  display: flex; align-items: center; gap: 8px;
}
.panel-actions { margin-bottom: 18px; }
.empty-items { text-align: center; padding: 48px 0; color: var(--text-muted); }
.empty-items p { margin-bottom: 18px; }

.my-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.my-item-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all var(--t);
}
.my-item-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.my-item-card .item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.my-item-card .item-id { font-family: var(--font-game); font-size: 13px; font-weight: 600; color: var(--text-muted); }
.my-item-card .item-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.my-item-card .item-tier { font-family: var(--font-game); font-weight: 700; font-size: 14px; }
/* 我的发布卡片段位颜色 */
.my-item-card .tier-peak     { color: var(--tier-peak); text-shadow: 0 0 8px var(--tier-peak-dim); }
.my-item-card .tier-eagle    { color: var(--tier-eagle); text-shadow: 0 0 8px var(--tier-eagle-dim); }
.my-item-card .tier-diamond  { color: var(--tier-diamond); text-shadow: 0 0 8px var(--tier-diamond-dim); }
.my-item-card .tier-platinum { color: var(--tier-platinum); text-shadow: 0 0 8px var(--tier-platinum-dim); }
.my-item-card .tier-gold     { color: var(--tier-gold); text-shadow: 0 0 8px var(--tier-gold-dim); }
.my-item-card .tier-default  { color: var(--text-secondary); }
.my-item-card .item-price { font-family: var(--font-game); font-weight: 800; color: var(--price-color); font-size: 16px; }
.my-item-card .item-status { margin-bottom: 12px; }
.my-item-card .item-actions { display: flex; gap: 8px; }

/* ============================================
   Element Plus 覆盖
   ============================================ */
.el-dialog {
  border-radius: var(--radius-xl) !important;
  border: 1px solid var(--border) !important;
  background: var(--bg-surface) !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
}
.el-dialog::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.3;
}
.el-dialog__header {
  border-bottom: 1px solid var(--border) !important;
  padding: 18px 24px !important;
}
.el-dialog__title {
  color: var(--text-primary) !important;
  font-family: var(--font-game) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}
.el-dialog__body { color: var(--text-primary) !important; padding: 24px !important; }
.el-dialog__headerbtn .el-dialog__close { color: var(--text-muted) !important; }
.el-dialog__headerbtn:hover .el-dialog__close { color: var(--accent-cyan) !important; }
.el-overlay { background: rgba(0,0,0,0.75) !important; backdrop-filter: blur(4px); }

.el-input__wrapper {
  background: var(--bg-elevated) !important;
  box-shadow: none !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-primary) !important;
  transition: border-color var(--t) !important;
}
.el-input__wrapper:hover { border-color: var(--border-hover) !important; }
.el-input__wrapper.is-focus { border-color: var(--accent-cyan) !important; box-shadow: 0 0 0 2px rgba(0,229,255,0.1) !important; }
.el-input__inner { color: var(--text-primary) !important; }
.el-input__prefix .el-icon { color: var(--text-muted); }

.el-input-number { width: 100% !important; }
.el-input-number .el-input__wrapper { border-radius: var(--radius-md) !important; }

.el-select__wrapper {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: none !important;
  color: var(--text-primary) !important;
  transition: border-color var(--t) !important;
}
.el-select__wrapper:hover { border-color: var(--border-hover) !important; }
.el-select__wrapper.is-focused { border-color: var(--accent-cyan) !important; box-shadow: 0 0 0 2px rgba(0,229,255,0.1) !important; }
.el-select-dropdown { background: var(--bg-elevated) !important; border: 1px solid var(--border) !important; }
.el-select-dropdown__item { color: var(--text-secondary) !important; }
.el-select-dropdown__item.is-selected { color: var(--accent-cyan) !important; font-weight: 600 !important; background: var(--accent-cyan-dim) !important; }
.el-select-dropdown__item:hover { background: var(--bg-hover) !important; color: var(--text-primary) !important; }

.el-form-item__label { color: var(--text-secondary) !important; font-size: 13px !important; }
.el-form-item { margin-bottom: 18px !important; }
.el-radio-button__inner {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-md) !important;
}
.el-radio-button__original-radio:checked + .el-radio-button__inner {
  background: var(--accent-cyan-dim) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  box-shadow: none !important;
}

.el-button {
  border-radius: var(--radius-md) !important;
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  border-color: var(--border) !important;
  background: var(--bg-elevated) !important;
  color: var(--text-secondary) !important;
  transition: all var(--t) !important;
}
.el-button:hover { border-color: var(--border-hover) !important; color: var(--text-primary) !important; background: var(--bg-hover) !important; }
.el-button--primary {
  background: linear-gradient(135deg, #0091ff, #0057d9) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(0,145,255,0.3) !important;
}
.el-button--primary:hover {
  background: linear-gradient(135deg, #00a3ff, #0066e0) !important;
  box-shadow: 0 4px 14px rgba(0,145,255,0.45) !important;
}
.el-button--danger { background: linear-gradient(135deg, #ff2d78, #c91f5a) !important; border-color: transparent !important; color: #fff !important; box-shadow: 0 2px 10px rgba(255,45,120,0.3) !important; }

.el-upload-list__item {
  border-color: var(--border) !important;
  border-radius: var(--radius-md) !important;
}
.el-upload--picture-card {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  border-radius: var(--radius-md) !important;
}
.el-upload--picture-card:hover { border-color: var(--accent-cyan) !important; }

.el-tag { border-radius: 999px !important; border: 1px solid !important; font-weight: 600 !important; }
.el-tag--success { background: rgba(0,229,255,0.1) !important; color: var(--accent-cyan) !important; border-color: rgba(0,229,255,0.2) !important; }
.el-tag--info    { background: var(--bg-elevated) !important; color: var(--text-muted) !important; border-color: var(--border) !important; }
.el-tag--danger  { background: var(--accent-pink-dim) !important; color: #ff6b9d !important; border-color: rgba(255,45,120,0.2) !important; }

.el-table { background: transparent !important; color: var(--text-primary) !important; }
.el-table th.el-table__cell { background: rgba(255,255,255,0.03) !important; color: var(--text-muted) !important; border-color: var(--border) !important; font-size: 11px !important; text-transform: uppercase; letter-spacing: 0.8px; }
.el-table td.el-table__cell { border-color: var(--border) !important; color: var(--text-primary) !important; }
.el-table tr:hover td.el-table__cell { background: rgba(0,229,255,0.04) !important; }
.el-table--border .el-table__cell { border-color: var(--border) !important; }

.el-dropdown-menu { background: var(--bg-elevated) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-lg) !important; padding: 6px !important; box-shadow: var(--shadow-md) !important; }
.el-dropdown-menu__item { color: var(--text-secondary) !important; border-radius: var(--radius-sm) !important; padding: 8px 14px !important; }
.el-dropdown-menu__item:hover { background: var(--bg-hover) !important; color: var(--text-primary) !important; }
.el-dropdown-menu__item--divided { border-top-color: var(--border) !important; }

.el-checkbox__label { color: var(--text-secondary) !important; font-size: 13px !important; }
.el-checkbox__input.is-checked .el-checkbox__inner { background: var(--accent-cyan) !important; border-color: var(--accent-cyan) !important; }
.el-checkbox__input.is-checked + .el-checkbox__label { color: var(--accent-cyan) !important; }

/* ============================================
   滚动条美化
   ============================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.3); }

/* ============================================
   选中文字
   ============================================ */
::selection { background: rgba(0,229,255,0.2); color: var(--text-primary); }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1200px) {
  .rental-table { font-size: 12px; }
  .rental-table thead th,
  .rental-table tbody td { padding: 10px 6px; }
  .detail-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .detail-wrap { grid-template-columns: 1fr; }
  .adv-select { width: 110px !important; }
  .price-input { width: 110px !important; }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .form-row-4 { grid-template-columns: repeat(2, 1fr); }
  .form-row-3 { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #app { padding: 12px; }
  .filter-row { flex-wrap: wrap; }
  .filter-search { width: 100%; order: 3; }
  .filter-actions { order: 2; }
  .app-header { flex-wrap: wrap; gap: 10px; border-radius: var(--radius-lg); padding: 12px 16px; }
  .sort-bar { flex-wrap: wrap; }
  .form-row, .form-row-3, .form-row-4, .form-row-2 { grid-template-columns: 1fr; }
  .publish-card { padding: 20px 16px; border-radius: var(--radius-lg); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   皮肤选择器 · 三争洲行动版
   ============================================ */
.skin-checker {
  width: 100%;
}
.skin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.skin-tag {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 12px !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  background: var(--bg-elevated) !important;
  color: var(--text-primary) !important;
  font-size: 13px !important;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.skin-tag:hover {
  border-color: var(--accent-cyan) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.18);
}
.skin-tag.is-checked,
.skin-tag.checked {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(255, 45, 120, 0.12)) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.32);
}
.skin-tier {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.skin-tag.is-checked .skin-tier,
.skin-tag.checked .skin-tier {
  background: var(--accent-cyan);
  color: var(--bg-base);
}
/* 品质色阶 */
.tier-t0 { border-left: 3px solid #ffd700 !important; }
.tier-t0.5 { border-left: 3px solid #c0c0c0 !important; }
.tier-t1 { border-left: 3px solid #f59e0b !important; }
.tier-t2 { border-left: 3px solid #6b7280 !important; }

/* 段位下拉框样式 */
.tier-dropdown .el-select-dropdown__list {
  max-height: none !important;
  overflow: visible !important;
}
.tier-dropdown {
  min-width: 140px !important;
}

/* 强制显示所有下拉选项 */
.el-select-dropdown__list {
  max-height: none !important;
}
.el-select-dropdown__item {
  display: block !important;
}

/* 租金计算明细卡片 */
.rent-calc-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0 20px;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.rent-calc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 12px;
}

.rent-calc-title .el-icon {
  font-size: 18px;
  color: #fbbf24;
}

.rent-total {
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.rent-calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .rent-calc-grid {
    grid-template-columns: 1fr;
  }
}

.calc-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.calc-label {
  min-width: 140px;
  color: #22d3ee;
  font-weight: 500;
}

.calc-formula {
  color: #94a3b8;
  font-family: monospace;
  background: rgba(148, 163, 184, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.calc-result {
  color: #f472b6;
  font-weight: 600;
  font-size: 14px;
}

.input-suffix {
  margin-left: 8px;
  font-size: 12px;
  color: #64748b;
}
.tier-传说 { border-left: 3px solid #b066ff !important; }
.tier-最强 { border-left: 3px solid #ff2d78 !important; }
.tier-顶级 { border-left: 3px solid #ff4d6a !important; }
.tier-极品 { border-left: 3px solid #00e5ff !important; }
.tier-紫色 { border-left: 3px solid #b066ff !important; }
.tier-蓝色 { border-left: 3px solid #3b8eea !important; }
.tier-绿色 { border-left: 3px solid #07c160 !important; }
.tier-a级 { border-left: 3px solid #00e5ff !important; }
.tier-s4 { border-left: 3px solid #ffd700 !important; }
.tier-s3 { border-left: 3px solid #ff4d6a !important; }

.gun-name {
  color: var(--accent-cyan);
  font-weight: 600;
}
.skin-name {
  color: var(--text-primary);
}
.skin-tag.is-checked .gun-name,
.skin-tag.checked .gun-name {
  color: var(--accent-cyan);
}
.skin-tag.is-checked .skin-name,
.skin-tag.checked .skin-name {
  color: var(--accent-cyan);
}

.skin-preview {
  margin-top: 6px;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
}
.preview-list {
  color: var(--accent-cyan);
  font-weight: 500;
}
.skin-tip-info {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--text-secondary);
}
.skin-tip-info strong {
  color: var(--accent-cyan);
}

/* 亮色主题适配 */
.dark .skin-tag {
  background: var(--bg-elevated);
  border-color: var(--border);
}
.dark .skin-preview {
  background: var(--bg-elevated);
}
.dark .skin-tip-info {
  background: rgba(0, 145, 255, 0.08);
  border-color: rgba(0, 145, 255, 0.2);
}

# === 邀请码新码展示弹窗 ===
.new-codes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding: 4px 2px;
}
.new-code-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  transition: border-color .15s, background .15s;
}
.new-code-chip:hover {
  border-color: rgba(0, 229, 255, .35);
  background: rgba(0, 229, 255, .04);
}
.new-code-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
}

# === 邀请码列表（普通表格，避开 el-table 在 el-dialog 内的 layout bug） ===
.invite-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}
.invite-table th,
.invite-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.invite-table th {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 13px;
  background: var(--bg-elevated);
}
.invite-table tbody tr:hover {
  background: rgba(0, 229, 255, .04);
}
.invite-table tbody tr:last-child td {
  border-bottom: none;
}
.invite-table .col-code   { width: 200px; }
.invite-table .col-status { width: 100px; text-align: center; }
.invite-table .col-user   { width: 120px; }
.invite-table .col-time   { width: 220px; color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.code-text {
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  user-select: all;
  cursor: text;
}
.invite-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========== 客服联系方式通道（弹窗内） ========== */
.contact-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-game);
}
.contact-tag-wechat {
  background: rgba(6, 193, 96, .12);
  border: 1px solid rgba(6, 193, 96, .35);
  color: #06c160;
}
.contact-tag-qq {
  background: rgba(0, 183, 245, .10);
  border: 1px solid rgba(0, 183, 245, .30);
  color: #00b7f5;
}

/* ========== 商品状态标签 ========== */
.tag-status-pending   { background: rgba(230,162,60,.15); border-color: rgba(230,162,60,.45); color: #e6a23c; }
.tag-status-active    { background: rgba(6,193,96,.12);  border-color: rgba(6,193,96,.35);  color: #06c160; }
.tag-status-rejected { background: rgba(245,108,108,.12); border-color: rgba(245,108,108,.35); color: #f56c6c; }
.tag-status-rented    { background: rgba(103,58,183,.12);  border-color: rgba(103,58,183,.35); color: #9575cd; }
.tag-status-inactive  { background: rgba(144,147,153,.12); border-color: rgba(144,147,153,.35); color: #909399; }

/* ========== 管理面板：审核区 ========== */
.review-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.review-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid #e6a23c;
}
.review-card-info { flex: 1; min-width: 0; }
.review-card-info .rc-id {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 4px;
}
.review-card-info .rc-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.review-card-info .rc-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-pink);
}
.review-actions { display: flex; flex-direction: column; gap: 8px; }
.review-empty {
  padding: 36px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========== 底部协议声明 ========== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 20px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.footer-platform-note {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
}
.footer-badge {
  display: inline-block;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.2);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: opacity .2s;
}
.footer-links a:hover { opacity: .75; text-decoration: underline; }
.footer-dot { color: var(--border); }

/* ========== 我的发布：状态提示 ========== */
.item-rejected-note {
  font-size: 11.5px;
  color: #f56c6c;
  background: rgba(245,108,108,.08);
  border: 1px solid rgba(245,108,108,.25);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 6px;
}
.item-pending-note {
  font-size: 11.5px;
  color: #e6a23c;
  background: rgba(230,162,60,.08);
  border: 1px solid rgba(230,162,60,.25);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 6px;
}
.item-rented-note {
  font-size: 11.5px;
  color: #9575cd;
  background: rgba(103,58,183,.08);
  border: 1px solid rgba(103,58,183,.25);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 6px;
}

/* ========== 详情页：非上架状态拦截 ========== */
.detail-status-block {
  margin-top: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}
.detail-status-block-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dsb-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.dsb-text { flex: 1; }
.dsb-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.dsb-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.order-btn-disabled {
  margin-top: 10px;
  background: rgba(144,147,153,.08);
  border: 1px solid rgba(144,147,153,.25);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-game);
  text-align: center;
  letter-spacing: 0.5px;
  cursor: not-allowed;
}
