/* ============================
   有肉社群 · 社区榜单页专属样式
   ============================ */

/* ===== 页面基础 ===== */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(185,56,44,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(212,168,83,0.08) 0%, transparent 50%);
}

/* ===== 英雄区 ===== */
.lb-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.lb-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lb-hero-svg {
  width: 100%;
  height: 100%;
}

.lb-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.lb-hero-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.lb-hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.lb-hero-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.lb-hero-subtitle {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lb-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lb-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.lb-stat-label {
  font-size: 11px;
  color: var(--ink-3);
}

.lb-stat-sep {
  font-size: 24px;
  color: var(--line-2);
  align-self: center;
}

/* ===== 滚动横幅 ===== */
.lb-ticker-wrap {
  background: rgba(212,168,83,0.06);
  border-bottom: 1px solid rgba(212,168,83,0.15);
  padding: 8px 0;
  overflow: hidden;
}

.lb-ticker-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.lb-ticker-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  background: var(--accent-dim);
  border: 1px solid rgba(212,168,83,0.3);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.lb-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.lb-ticker-content {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.lb-ticker-item {
  font-size: 12px;
  color: var(--ink-2);
}

.lb-ticker-sep {
  color: var(--accent);
  font-size: 10px;
  opacity: 0.5;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== 主体 ===== */
.lb-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

/* ===== Tab 切换栏 ===== */
.lb-tab-bar {
  display: flex;
  gap: 4px;
  padding: 20px 0 4px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lb-tab-bar::-webkit-scrollbar { display: none; }

.lb-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin-bottom: -2px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.lb-tab:hover {
  color: var(--ink-2);
  background: var(--panel);
}

.lb-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--accent-dim);
}

.lb-tab-icon {
  font-size: 16px;
}

.lb-tab-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 8px;
  margin-left: 2px;
  vertical-align: middle;
}

/* ===== Section ===== */
.lb-section {
  animation: fadeInUp 0.3s ease;
}

.lb-section.hidden { display: none; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lb-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lb-section-intro { flex: 1; }

.lb-section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.lb-section-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}

.lb-section-desc strong { color: var(--ink-2); }

/* ===== 按钮 ===== */
.lb-submit-btn, .lb-appraisal-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(212,168,83,0.3);
  flex-shrink: 0;
}

.lb-submit-btn:hover, .lb-appraisal-apply-btn:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,168,83,0.4);
}

.lb-appraisal-apply-btn {
  background: linear-gradient(135deg, #b9382c, #ff6b6b);
  box-shadow: 0 2px 12px rgba(185,56,44,0.3);
}

.lb-appraisal-apply-btn:hover {
  background: linear-gradient(135deg, #cc4438, #ff8080);
  box-shadow: 0 4px 20px rgba(185,56,44,0.4);
}

/* ===== 筛选栏 ===== */
.lb-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}

.lb-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lb-filter-label {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
  white-space: nowrap;
  min-width: 28px;
}

.lb-filter-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lb-filter-btn {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink-3);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
}

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

.lb-filter-btn.active {
  background: var(--accent-dim);
  border-color: rgba(212,168,83,0.4);
  color: var(--accent);
  font-weight: 600;
}

/* ===== 加载状态 ===== */
.lb-loading {
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ===== 天梯榜卡片 ===== */
.lb-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.lb-card:hover {
  border-color: rgba(212,168,83,0.3);
  background: var(--panel-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* 排名列 */
.lb-card-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-active);
  border-right: 1px solid var(--line);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink-3);
  padding: 16px 8px;
  min-height: 80px;
}

.lb-card-rank.rank-1 { color: #ffd700; font-size: 22px; }
.lb-card-rank.rank-2 { color: #c0c0c0; font-size: 20px; }
.lb-card-rank.rank-3 { color: #cd7f32; font-size: 20px; }

/* 主内容列 */
.lb-card-main {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.lb-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lb-card-grade {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.lb-card-pct {
  font-size: 13px;
  color: var(--ink-3);
  margin-left: -4px;
}

.lb-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.lb-card-origin-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  color: var(--ink-3);
}

.lb-card-official-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(57,167,126,0.12);
  border: 1px solid rgba(57,167,126,0.3);
  color: var(--green);
  font-weight: 600;
}

.lb-card-channel {
  font-size: 12px;
  color: var(--ink-3);
}

.lb-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lb-card-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink-4);
}

/* 右侧数据/操作列 */
.lb-card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 14px;
  gap: 6px;
  border-left: 1px solid var(--line);
  background: rgba(255,253,248,0.02);
  min-width: 80px;
}

.lb-card-time {
  font-size: 11px;
  color: var(--ink-4);
  white-space: nowrap;
}

.lb-card-detail-link {
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.lb-card-detail-link:hover { opacity: 1; }

/* ===== 空状态 ===== */
.lb-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--ink-3);
}

.lb-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.lb-empty-title {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.lb-empty-desc {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
}

/* ===== 红黑榜说明框 ===== */
.lb-appraisal-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.lb-appraisal-intro-col {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.lb-appraisal-intro-col:first-child {
  border-color: rgba(185,56,44,0.2);
  background: rgba(185,56,44,0.06);
}

.lb-appraisal-intro-col:last-child {
  border-color: rgba(212,168,83,0.2);
  background: rgba(212,168,83,0.06);
}

.lb-appraisal-intro-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.lb-appraisal-intro-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lb-appraisal-intro-title.red { color: #ff6b6b; }
.lb-appraisal-intro-title.black { color: var(--accent); }

.lb-appraisal-intro-desc {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ===== 红黑榜卡片 ===== */
.lb-appraisal-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lb-appraisal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}

.lb-appraisal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.lb-appraisal-card.red-card {
  border-color: rgba(185,56,44,0.25);
}

.lb-appraisal-card.red-card:hover {
  border-color: rgba(185,56,44,0.5);
  box-shadow: 0 8px 32px rgba(185,56,44,0.15);
}

.lb-appraisal-card.black-card {
  border-color: rgba(212,168,83,0.25);
}

.lb-appraisal-card.black-card:hover {
  border-color: rgba(212,168,83,0.5);
  box-shadow: 0 8px 32px rgba(212,168,83,0.15);
}

/* 卡片顶部标题栏 */
.lb-ac-header {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.lb-ac-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.red-card .lb-ac-tag {
  background: rgba(185,56,44,0.15);
  border: 1px solid rgba(185,56,44,0.3);
  color: #ff6b6b;
}

.black-card .lb-ac-tag {
  background: var(--accent-dim);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--accent);
}

.lb-ac-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}

.lb-ac-official {
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(57,167,126,0.12);
  border: 1px solid rgba(57,167,126,0.3);
  color: var(--green);
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}

/* 卡片主体 */
.lb-ac-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* 左侧：实测鉴定图 */
.lb-ac-image-col {
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.lb-ac-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.lb-ac-fat-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(13,10,7,0.85);
  border-radius: var(--r-md);
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.lb-ac-fat-label {
  font-size: 10px;
  color: var(--ink-3);
  margin-bottom: 2px;
}

.lb-ac-fat-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.red-card .lb-ac-fat-num { color: #ff6b6b; }
.black-card .lb-ac-fat-num { color: var(--accent); }

.lb-ac-fat-grade {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 2px;
}

.lb-ac-scan-hint {
  font-size: 10px;
  color: var(--ink-4);
}

/* 右侧：评分和数据 */
.lb-ac-data-col {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lb-ac-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.lb-ac-data-label { color: var(--ink-3); }

.lb-ac-data-val {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* 星级评分 */
.lb-ac-stars {
  display: flex;
  gap: 2px;
}

.lb-ac-star {
  font-size: 11px;
}

.lb-ac-star.on { color: var(--accent); }
.lb-ac-star.off { color: var(--ink-4); }

/* 卡片底部结论 */
.lb-ac-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lb-ac-verdict-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.lb-ac-verdict-text {
  color: var(--ink-2);
}

.red-card .lb-ac-footer {
  background: rgba(185,56,44,0.05);
}

.black-card .lb-ac-footer {
  background: rgba(212,168,83,0.05);
}

/* ===== 社区 CTA 横幅 ===== */
.lb-cta-banner {
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, rgba(185,56,44,0.06) 100%);
  border-top: 1px solid rgba(212,168,83,0.15);
  padding: 40px 24px;
}

.lb-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lb-cta-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.lb-cta-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

.lb-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.lb-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}

.lb-cta-btn.primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 2px 12px rgba(212,168,83,0.3);
}

.lb-cta-btn.primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,168,83,0.4);
}

.lb-cta-btn.secondary {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}

.lb-cta-btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== 弹窗覆盖层 ===== */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,3,1,0.82);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: overlayIn 0.2s ease;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-overlay-panel {
  background: var(--bg-surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  width: 90vw;
  max-width: 480px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: panelIn 0.25s ease;
}

.lb-detail-panel { max-width: 520px; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lb-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.lb-overlay-close {
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}

.lb-overlay-close:hover { color: var(--ink); }

.lb-overlay-body {
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

/* ===== 表单 ===== */
.lb-submit-tip {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.lb-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lb-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}

.lb-form-hint {
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-4);
}

.lb-form-input, .lb-form-textarea {
  padding: 9px 12px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.15s;
  width: 100%;
}

.lb-form-input:focus, .lb-form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.lb-form-textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}

.lb-form-file {
  font-size: 12px;
  color: var(--ink-3);
  cursor: pointer;
}

.lb-form-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

.lb-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  cursor: pointer;
}

.lb-live-price {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  min-height: 16px;
  margin-top: -8px;
}

.lb-form-submit {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  box-shadow: 0 2px 12px rgba(212,168,83,0.3);
}

.lb-form-submit:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,168,83,0.4);
}

/* ===== 申请弹窗 ===== */
.lb-appraisal-apply-intro {
  padding: 16px;
  background: rgba(185,56,44,0.06);
  border: 1px solid rgba(185,56,44,0.15);
  border-radius: var(--r-md);
}

.lb-appraisal-apply-intro h3 {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}

.lb-appraisal-apply-intro p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lb-apply-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lb-apply-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}

.lb-apply-step-num {
  width: 22px;
  height: 22px;
  background: rgba(185,56,44,0.2);
  border: 1px solid rgba(185,56,44,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ff6b6b;
  flex-shrink: 0;
}

/* ===== 详情弹窗内容 ===== */
.lb-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.lb-detail-cell {
  background: var(--panel-active);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}

.lb-detail-cell-label {
  font-size: 10px;
  color: var(--ink-4);
  margin-bottom: 4px;
}

.lb-detail-cell-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.lb-detail-full-row {
  background: var(--panel);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

.lb-detail-full-row label {
  display: block;
  font-size: 10px;
  color: var(--ink-4);
  margin-bottom: 4px;
}

/* ===== 响应式 ===== */
@media (max-width: 600px) {
  .lb-hero { padding: 40px 16px 28px; }
  .lb-hero-title { font-size: 32px; }
  .lb-hero-stats { gap: 12px; }
  .lb-stat-num { font-size: 22px; }
  
  .lb-appraisal-intro {
    grid-template-columns: 1fr;
  }
  
  .lb-ac-body {
    grid-template-columns: 1fr;
  }
  
  .lb-ac-image-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 140px;
  }
  
  .lb-card {
    grid-template-columns: 40px 1fr;
  }
  
  .lb-card-aside { display: none; }
  
  .lb-form-row { grid-template-columns: 1fr; }
  
  .lb-cta-inner { flex-direction: column; text-align: center; }
  
  .lb-tab-text { display: none; }
  .lb-tab { padding: 8px 12px; }
  .lb-tab-icon { font-size: 20px; }
}
