/* ============================================================
   东梦果网络 DMG · 新拟态渐变玻璃风格 v5
   设计语言: Neumorphism + Glassmorphism
   主色: #667eea → #764ba2 → #f093fb 温暖渐变
   背景: #f5f7fa 浅灰白
   特点: 柔和3D阴影 + 圆润卡片 + 渐变色彩
   ============================================================ */

/* ===== 设计变量 ===== */
:root {
  /* 渐变主色 */
  --grad-start: #667eea;
  --grad-mid: #764ba2;
  --grad-end: #f093fb;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-soft: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 50%, rgba(240,147,251,0.1) 100%);
  
  /* 背景色 */
  --bg-page: #f5f7fa;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.7);
  
  /* 文字色 */
  --text-dark: #2d3748;
  --text-body: #4a5568;
  --text-light: #718096;
  --text-muted: #a0aec0;
  
  /* 阴影 - 新拟态核心 */
  --shadow-light: #ffffff;
  --shadow-dark: rgba(174, 174, 192, 0.4);
  --shadow-neu: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
  --shadow-neu-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  --shadow-neu-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
  --shadow-glass: 0 8px 32px rgba(102, 126, 234, 0.15);
  
  /* 边框 */
  --border-soft: rgba(255, 255, 255, 0.5);
  --border-grad: linear-gradient(135deg, #667eea, #f093fb);
  
  /* 圆角 */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  
  /* 字体 */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  
  /* 布局 */
  --container: 1200px;
  --topbar-h: 36px;
  --nav-h: 80px;
  
  /* 分类色系 */
  --hue-spring: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --hue-teal: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --hue-forest: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
  --hue-wheat: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* ===== 全局重置 ===== */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { 
  color: var(--grad-start); 
  text-decoration: none; 
  transition: all 0.3s ease;
}

a:hover { 
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

img { 
  max-width: 100%; 
  display: block; 
}

ul, ol { 
  list-style: none; 
}

h1, h2, h3, h4, h5, h6 { 
  color: var(--text-dark); 
  font-weight: 700;
  line-height: 1.3;
}

button { 
  font-family: inherit; 
  cursor: pointer; 
  border: none;
  background: none;
}

input, select, textarea, button { 
  font-family: inherit; 
  font-size: inherit;
}

.wrap { 
  width: var(--container); 
  max-width: 100%; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* ===== 顶部信息条 ===== */
.top-strip {
  height: var(--topbar-h);
  background: var(--bg-card);
  box-shadow: var(--shadow-neu-sm);
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ts-left, .ts-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--gradient-soft);
  border-radius: 20px;
  color: var(--grad-start);
  font-weight: 600;
}

.ts-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-start);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ts-divider {
  color: var(--text-muted);
}

.ts-right a {
  color: var(--text-light);
  transition: color 0.3s;
}

.ts-right a:hover {
  color: var(--grad-start);
}

/* ===== 导航栏 ===== */
.nav {
  height: var(--nav-h);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: var(--shadow-glass);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text small {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  background: var(--gradient-soft);
  color: var(--grad-start);
}

.nav-links a.active {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-neu-sm);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--grad-start);
  background: var(--gradient-soft);
  border-radius: 20px;
  font-weight: 600;
}

.nt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-start);
}

.account-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* ===== Hero 区域 ===== */
.hero {
  padding: 80px 0;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,147,251,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--grad-start);
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: var(--shadow-neu-sm);
  width: fit-content;
  font-weight: 600;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero h1 .hl {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
}

.stat-item strong {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  font-size: 13px;
  color: var(--text-light);
}

.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-neu);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-page);
}

.hc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.hc-file {
  font-size: 13px;
  color: var(--text-light);
  font-family: monospace;
}

.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
}

.hc-key {
  color: var(--text-light);
}

.hc-val {
  color: var(--text-dark);
  font-weight: 600;
}

.hc-val.hc-go {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ===== 通用区块 ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-card);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 800;
}

.st-no {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
}

.st-sub {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 8px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--grad-start);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
  font-weight: 600;
  transition: all 0.3s;
}

.section-more:hover {
  box-shadow: var(--shadow-neu);
  transform: translateY(-2px);
}

/* ===== 业务能力卡片 ===== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cap-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-neu);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cap-color, var(--gradient));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.cap-card:hover::before {
  transform: scaleX(1);
}

.cap-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: var(--cap-soft, var(--gradient-soft));
  border-radius: 50%;
  font-size: 36px;
  box-shadow: var(--shadow-neu-inset);
}

.cap-no {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  font-family: monospace;
}

.cap-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cap-en {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cap-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.cap-tags span {
  font-size: 12px;
  color: var(--grad-start);
  background: var(--gradient-soft);
  padding: 4px 12px;
  border-radius: 16px;
  font-weight: 500;
}

/* ===== 服务大厅 ===== */
.listings-new-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cat-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
}

.cat-tabs button {
  padding: 12px 24px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-body);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  font-weight: 500;
}

.cat-tabs button:hover {
  color: var(--grad-start);
}

.cat-tabs button.active {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-neu);
}

.listings-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.listings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
}

.lt-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

#listingList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.listing-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-neu);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.lc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.lc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lc-cat-tag {
  font-size: 12px;
  color: white;
  padding: 5px 14px;
  border-radius: 16px;
  font-weight: 600;
  background: var(--lc-color, var(--gradient));
}

.lc-vip-tag {
  font-size: 12px;
  color: var(--grad-mid);
  background: var(--gradient-soft);
  padding: 5px 14px;
  border-radius: 16px;
  font-weight: 600;
}

.lc-badge {
  font-size: 12px;
  color: #f5576c;
  background: rgba(245, 87, 108, 0.1);
  padding: 5px 12px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.lc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.lc-title a {
  color: inherit;
  transition: all 0.3s;
}

.lc-title a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lc-chip {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-page);
  padding: 4px 12px;
  border-radius: 12px;
}

.lc-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.lc-divider {
  height: 1px;
  background: var(--bg-page);
  margin: 8px 0;
}

.lc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lc-meta-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lc-meta-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.lc-meta-member {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.lc-meta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-neu-sm);
}

.lc-meta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lc-meta-text {
  display: flex;
  flex-direction: column;
}

.lc-meta-text strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.lc-meta-text span {
  font-size: 12px;
  color: var(--text-light);
}

.lc-meta-phone .lc-meta-value {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.lc-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.lc-btn-primary {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu);
}

.lc-btn-ghost {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  font-weight: 500;
}

.lc-btn-ghost:hover {
  color: var(--grad-start);
  box-shadow: var(--shadow-neu);
}

/* 分类色映射 */
.listing-card[data-hue="spring"] { --lc-color: var(--hue-spring); }
.listing-card[data-hue="teal"] { --lc-color: var(--hue-teal); }
.listing-card[data-hue="forest"] { --lc-color: var(--hue-forest); }
.listing-card[data-hue="wheat"] { --lc-color: var(--hue-wheat); }

/* ===== 合作流程 ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-neu);
  transition: all 0.4s;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.ps-no {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-neu);
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== 套餐方案 ===== */
.plans-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.plan-new {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neu);
  transition: all 0.4s;
  position: relative;
}

.plan-new:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.plan-new-hot {
  background: var(--gradient);
  color: white;
}

.plan-new-hot .pn-body {
  color: white;
}

.pn-badge {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-new-hot .pn-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pn-badge-hot {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pn-body {
  padding: 32px;
}

.pn-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pn-symbol {
  font-size: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.plan-new-hot .pn-symbol {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pn-amount {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-new-hot .pn-amount {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pn-unit {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.plan-new-hot .pn-unit {
  color: rgba(255, 255, 255, 0.8);
}

.pn-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pn-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}

.plan-new-hot .pn-features li {
  color: rgba(255, 255, 255, 0.95);
}

.pn-features li::before {
  content: "✓";
  color: var(--grad-start);
  font-weight: 700;
  font-size: 16px;
}

.plan-new-hot .pn-features li::before {
  color: white;
}

.pn-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--grad-start);
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pn-btn:hover {
  box-shadow: var(--shadow-neu);
  transform: translateY(-2px);
}

.pn-btn-primary {
  background: white;
  color: var(--grad-start);
}

/* ===== 发布 CTA ===== */
.publish-cta {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-neu);
}

.publish-cta::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.publish-cta::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.publish-cta h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.publish-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.btn-cta {
  flex-shrink: 0;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--grad-start);
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-card);
  padding: 56px 0 0;
  margin-top: 80px;
  box-shadow: inset 0 1px 0 var(--bg-page);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--bg-page);
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

.footer-col h4 {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--text-body);
  line-height: 2.2;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--grad-start);
}

.footer-tags {
  padding: 24px 0;
  border-bottom: 2px solid var(--bg-page);
}

.footer-tags p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-tags a {
  display: inline-block;
  font-size: 13px;
  color: var(--text-body);
  padding: 6px 14px;
  margin: 0 8px 8px 0;
  background: var(--bg-page);
  border-radius: 16px;
  transition: all 0.3s;
}

.footer-tags a:hover {
  background: var(--gradient);
  color: white;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--text-body);
}

.footer-bottom a:hover {
  color: var(--grad-start);
}

.fb-divider {
  margin: 0 8px;
}

/* ===== 通用按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-body);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  font-weight: 500;
}

.btn:hover {
  box-shadow: var(--shadow-neu);
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gradient);
  color: white;
  font-weight: 600;
}

.btn.primary:hover {
  box-shadow: var(--shadow-neu);
}

.btn.cta {
  background: var(--gradient);
  color: white;
  padding: 14px 32px;
  font-weight: 700;
}

.btn.secondary {
  background: var(--bg-page);
  color: var(--grad-start);
}

.btn.danger {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.small-btn {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-body);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
}

.small-btn:hover {
  box-shadow: var(--shadow-neu);
}

.small-btn.primary {
  background: var(--gradient);
  color: white;
}

.small-btn.danger {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.btn-cta-full {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-full:hover {
  transform: translateY(-2px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

/* ===== 弹窗系统 ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal.show {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-neu);
  display: flex;
  flex-direction: column;
  animation: modalIn 0.3s ease;
}

.modal-card.wide {
  max-width: 1000px;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 2px solid var(--bg-page);
}

.modal-topbar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-page);
  color: var(--text-body);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
}

.modal-close-btn:hover {
  box-shadow: var(--shadow-neu);
  color: var(--grad-start);
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

/* Auth Modal */
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--bg-page);
}

.auth-tabs button {
  flex: 1;
  padding: 18px;
  background: transparent;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  font-weight: 500;
}

.auth-tabs button:hover {
  color: var(--grad-start);
}

.auth-tabs button.active {
  color: var(--grad-start);
  border-bottom-color: var(--grad-start);
  font-weight: 700;
}

.auth-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form.hidden {
  display: none;
}

.auth-input-group input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-page);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-inset);
  transition: all 0.3s;
}

.auth-input-group input:focus {
  outline: none;
  box-shadow: var(--shadow-neu-inset), 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-input-group input::placeholder {
  color: var(--text-muted);
}

.captcha-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.captcha-input {
  flex: 1;
}

.captcha-canvas {
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-neu-sm);
}

.agreement-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

.agreement-note a {
  color: var(--grad-start);
}

/* Doc Modal */
#docContent {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
}

#docContent h1 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-page);
}

#docContent h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#docContent p {
  margin: 0 0 16px;
}

#docContent ol, #docContent ul {
  padding-left: 28px;
  margin: 0 0 16px;
}

#docContent ol li, #docContent ul li {
  list-style: decimal;
  margin-bottom: 10px;
}

/* ===== 空状态 ===== */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.empty-state p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  :root {
    --container: 960px;
  }
  
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .plans-new {
    grid-template-columns: 1fr;
  }
  
  #listingList {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: 100%;
    --nav-h: 70px;
  }
  
  .top-strip .ts-left {
    gap: 8px;
    font-size: 12px;
  }
  
  .top-strip .ts-left span:nth-child(n+5) {
    display: none;
  }
  
  .ts-right {
    display: none;
  }
  
  .nav-inner {
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 0;
  }
  
  .nav-links a {
    padding: 0 14px;
    white-space: nowrap;
    font-size: 14px;
  }
  
  .brand-text strong {
    font-size: 16px;
  }
  
  .brand-text small {
    font-size: 11px;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-card {
    width: 100%;
  }
  
  .hero-stats {
    gap: 16px;
  }
  
  .stat-item strong {
    font-size: 24px;
  }
  
  .cap-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .publish-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  
  .section-title {
    font-size: 24px;
  }
}

/* ===== 新信息卡片 listing-card-new ===== */
.listing-card-new {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-neu);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.listing-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lc-color, var(--gradient));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.listing-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.listing-card-new:hover::before {
  transform: scaleX(1);
}

/* ===== 信息卡片封面图 ===== */
.lcn-cover {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--gradient-soft);
}

.lcn-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card-new:hover .lcn-cover img {
  transform: scale(1.05);
}

.lcn-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15,27,45,0.3) 0%, rgba(15,27,45,0.1) 50%, rgba(15,27,45,0.6) 100%);
  pointer-events: none;
}

.lcn-cover .lcn-header {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.lcn-cover .lcn-cat-tag {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
}

.lcn-cover .lcn-level-tag {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.lcn-cover-fallback {
  background: var(--gradient);
}

.lcn-cover-fallback::before {
  content: '\f0e8';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255,255,255,0.3);
}

/* 卡片内容区域添加 padding */
.lcn-title, .lcn-chips, .lcn-desc, .lcn-publisher, .lcn-footer {
  padding-left: 28px;
  padding-right: 28px;
}

.lcn-title {
  padding-top: 24px;
}

.lcn-footer {
  padding-bottom: 24px;
  padding-top: 8px;
}

/* 轮播卡片封面图样式 */
.hc-slide-cover {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--gradient-soft);
}

.hc-slide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15,27,45,0.2) 0%, rgba(15,27,45,0.7) 100%);
  pointer-events: none;
}

.hc-slide .hc-slide-head {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
}

.hc-slide .hc-slide-cat {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.lcn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lcn-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lcn-cat-tag {
  font-size: 12px;
  color: white;
  padding: 5px 14px;
  border-radius: 16px;
  font-weight: 600;
  background: var(--lc-color, var(--gradient));
}

.lcn-recommend {
  font-size: 12px;
  color: #f5576c;
  background: rgba(245, 87, 108, 0.1);
  padding: 5px 12px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.lcn-rec-star {
  font-size: 14px;
}

.lcn-level-tag {
  font-size: 12px;
  color: var(--grad-mid);
  background: var(--gradient-soft);
  padding: 5px 14px;
  border-radius: 16px;
  font-weight: 600;
}

.lcn-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.lcn-title a {
  color: inherit;
  transition: all 0.3s;
}

.lcn-title a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lcn-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lcn-chip {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-page);
  padding: 4px 12px;
  border-radius: 12px;
}

.lcn-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.lcn-publisher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.lcn-publisher-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lcn-pub-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-neu-sm);
  flex-shrink: 0;
}

.lcn-pub-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lcn-pub-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lcn-pub-info strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.lcn-pub-info span {
  font-size: 12px;
  color: var(--text-light);
}

.lcn-publisher-right {
  display: flex;
  align-items: center;
}

.lcn-pub-phone {
  font-size: 14px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lcn-footer {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-page);
}

.lcn-link-detail {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lcn-link-detail:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu);
  background: var(--gradient);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
  background-clip: initial;
}

.lcn-arrow {
  font-size: 16px;
}

.lcn-link-contact {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s;
  font-weight: 500;
}

.lcn-link-contact:hover {
  color: var(--grad-start);
  box-shadow: var(--shadow-neu-sm);
}

/* 分类色映射 */
.listing-card-new[data-hue="spring"] { --lc-color: var(--hue-spring); }
.listing-card-new[data-hue="teal"] { --lc-color: var(--hue-teal); }
.listing-card-new[data-hue="forest"] { --lc-color: var(--hue-forest); }
.listing-card-new[data-hue="wheat"] { --lc-color: var(--hue-wheat); }

/* ===== 独立详情页 detail page ===== */
.detail-page {
  padding: 40px 0 80px;
  min-height: 60vh;
}

.dp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.dp-breadcrumb a {
  color: var(--text-light);
  transition: color 0.3s;
}

.dp-breadcrumb a:hover {
  color: var(--grad-start);
}

.dp-bc-sep {
  color: var(--text-muted);
}

.dp-back {
  margin-top: 48px;
  text-align: center;
}

/* 详情文章 */
.dp-article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dp-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dp-cat-tag {
  font-size: 13px;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  background: var(--gradient);
}

.dp-level-tag {
  font-size: 13px;
  color: var(--grad-mid);
  background: var(--gradient-soft);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.dp-rec-tag {
  font-size: 13px;
  color: #f5576c;
  background: rgba(245, 87, 108, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.dp-date-tag {
  font-size: 13px;
  color: var(--text-light);
  background: var(--bg-card);
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-neu-sm);
}

.dp-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.dp-summary {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-sm);
}

.dp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dp-chip {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-card);
  padding: 5px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow-neu-sm);
}

.dp-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.dp-main-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dp-section {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-neu);
}

.dp-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-page);
}

.dp-section-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: 10px;
}

.dp-section-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.dp-paragraph {
  margin: 0;
}

.dp-value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dp-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
}

.dp-value-icon {
  font-size: 20px;
  color: var(--grad-start);
  flex-shrink: 0;
}

.dp-value-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-value-content strong {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.dp-value-content span {
  font-size: 13px;
  color: var(--text-light);
}

.dp-method-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: none;
}

.dp-method-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  list-style: none;
}

.dp-method-no {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-weight: 700;
  color: var(--grad-start);
  background: var(--gradient-soft);
  border-radius: 8px;
  flex-shrink: 0;
}

.dp-method-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-method-content strong {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.dp-method-content span {
  font-size: 13px;
  color: var(--text-light);
}

.dp-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dp-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
}

.dp-del-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.dp-del-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-del-content strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.dp-del-content span {
  font-size: 12px;
  color: var(--text-light);
}

/* 详情页侧边栏 */
.dp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dp-sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-neu);
}

.dp-sidebar-h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-page);
}

.dp-pub-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dp-pub-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-neu-sm);
  flex-shrink: 0;
}

.dp-pub-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dp-pub-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dp-pub-detail strong {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.dp-pub-detail span {
  font-size: 12px;
  color: var(--text-light);
}

.dp-pub-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.dp-pub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
}

.dp-pub-row span {
  font-size: 13px;
  color: var(--text-light);
}

.dp-pub-row strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.dp-pub-row-phone strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.dp-cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.dp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu);
  background: var(--gradient);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
  background-clip: initial;
}

.dp-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dp-guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.dp-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--grad-start);
  background: var(--gradient-soft);
  border-radius: 50%;
  flex-shrink: 0;
}

.dp-guarantee-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dp-guarantee-list li strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.dp-guarantee-list li span {
  font-size: 12px;
  color: var(--text-light);
}

.dp-card-tips p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* 详情页响应式 */
@media (max-width: 1024px) {
  .dp-content-grid {
    grid-template-columns: 1fr;
  }
  
  .dp-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .dp-sidebar-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 760px) {
  .dp-title {
    font-size: 24px;
  }
  
  .dp-content-grid {
    grid-template-columns: 1fr;
  }
  
  .dp-sidebar {
    flex-direction: column;
  }
  
  .dp-sidebar-card {
    min-width: auto;
  }
  
  .dp-deliverables {
    grid-template-columns: 1fr;
  }
  
  .dp-top {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lcn-publisher {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lcn-publisher-right {
    width: 100%;
  }
  
  .lcn-footer {
    flex-direction: column;
  }
}

/* ===== 个人中心新设计 pc-new ===== */
.profile-card-new {
  max-width: 900px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
}

.pc-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
}

.pc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-neu-sm);
  flex-shrink: 0;
}

.pc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pc-user-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.pc-user-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pc-level-badge {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 14px;
  font-weight: 600;
  color: white;
}

.pc-level-vip { background: linear-gradient(135deg, #f5576c, #764ba2); }
.pc-level-pro { background: var(--gradient); }
.pc-level-basic { background: linear-gradient(135deg, #11998e, #38ef7d); }
.pc-level-none { background: var(--text-muted); }

.pc-user-id {
  font-size: 12px;
  color: var(--text-light);
}

.pc-user-status {
  font-size: 12px;
  color: var(--grad-start);
  font-weight: 600;
}

.pc-header-actions {
  display: flex;
  gap: 8px;
}

.pc-action-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.pc-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu-sm);
}

.pc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pc-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
  text-align: center;
}

.pc-stat-icon {
  font-size: 24px;
}

.pc-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}

.pc-stat-label {
  font-size: 12px;
  color: var(--text-light);
}

.pc-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-page);
}

.pc-section-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.pc-section-sub {
  font-size: 13px;
  color: var(--text-light);
}

/* 套餐卡片 */
.pc-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pc-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
  transition: all 0.3s;
}

.pc-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.pc-plan-hot {
  border: 2px solid var(--grad-start);
}

.pc-plan-current {
  border: 2px solid var(--grad-mid);
}

.pc-plan-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 14px;
  color: white;
  background: var(--gradient);
  font-weight: 600;
}

.pc-plan-badge-current {
  background: var(--grad-mid);
}

.pc-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.pc-plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pc-plan-symbol {
  font-size: 16px;
  font-weight: 600;
  color: var(--grad-start);
}

.pc-plan-amount {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-plan-quota {
  font-size: 13px;
  color: var(--text-light);
}

.pc-plan-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-body);
}

.pc-plan-features li {
  list-style: none;
  padding-left: 16px;
  position: relative;
}

.pc-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--grad-start);
  font-weight: 700;
}

.pc-plan-btn {
  margin-top: auto;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.pc-plan-btn:hover {
  background: var(--gradient-soft);
  color: var(--grad-start);
}

.pc-plan-btn-hot {
  color: white;
  background: var(--gradient);
}

.pc-plan-btn-hot:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu-sm);
  background: var(--gradient);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
  background-clip: initial;
}

.pc-plan-btn-current {
  opacity: 0.6;
  cursor: default;
}

/* 订单表格 */
.pc-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-neu-sm);
}

.pc-table-head {
  display: grid;
  grid-template-columns: 120px 80px 70px 60px 70px 100px;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gradient-soft);
  font-size: 12px;
  font-weight: 600;
  color: var(--grad-start);
}

.pc-table-row {
  display: grid;
  grid-template-columns: 120px 80px 70px 60px 70px 100px;
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg-page);
}

.pc-order-id {
  font-family: monospace;
  font-size: 12px;
}

.pc-order-amount {
  font-weight: 700;
  color: var(--grad-start);
}

.pc-order-status {
  color: #38ef7d;
  font-weight: 600;
}

/* 已发布服务 */
.pc-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-post-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
}

.pc-post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pc-post-title {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.pc-post-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.pc-post-active {
  color: #38ef7d;
  background: rgba(56, 239, 125, 0.1);
}

.pc-post-pending {
  color: #f5a623;
  background: rgba(245, 166, 35, 0.1);
}

.pc-post-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-light);
}

.pc-post-rec {
  color: #f5576c;
  font-weight: 600;
}

/* 账号信息 */
.pc-account-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-neu-sm);
}

.pc-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bg-page);
}

.pc-info-label {
  font-size: 13px;
  color: var(--text-light);
}

.pc-info-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

/* 空状态 */
.pc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  color: var(--text-light);
  text-align: center;
}

.pc-empty-icon {
  font-size: 32px;
}

.pc-empty p {
  margin: 0;
}

.pc-empty-link {
  color: var(--grad-start);
  font-weight: 600;
  text-decoration: none;
}

/* ===== 发布页新设计 ===== */

/* Hero 区域 */
.pub-hero {
  padding: 60px 0;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.pub-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,147,251,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.pub-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pub-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--grad-start);
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow-neu-sm);
  width: fit-content;
  font-weight: 600;
  margin-bottom: 16px;
}

.pub-hero-left h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.pub-hero-left h1 .hl {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pub-hero-left p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* 发布步骤 */
.pub-hero-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
}

.pub-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pub-step-no {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: 8px;
  flex-shrink: 0;
}

.pub-step div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pub-step strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.pub-step span {
  font-size: 12px;
  color: var(--text-light);
}

/* 表单区域 */
.pub-form-section {
  padding: 48px 0;
}

.pub-form-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.pub-form-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pf-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu);
  overflow: hidden;
}

.pf-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--gradient-soft);
  border-bottom: 1px solid var(--border-soft);
}

.pf-card-icon {
  font-size: 20px;
}

.pf-card-head h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.pf-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
}

.pf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.pf-field input,
.pf-field select,
.pf-field textarea {
  padding: 12px 16px;
  font-size: 14px;
  border: 2px solid var(--bg-page);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-dark);
  transition: all 0.3s;
  outline: none;
}

.pf-field input:focus,
.pf-field select:focus,
.pf-field textarea:focus {
  border-color: var(--grad-start);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.pf-hint {
  font-size: 12px;
  color: var(--text-light);
}

.pf-static {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-page);
  border-radius: var(--radius-sm);
}

.pf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pf-char {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
}

.pf-agreement {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-body);
}

.pf-agreement a {
  color: var(--grad-start);
  font-weight: 600;
}

.pf-submit-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-submit-btn {
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.pf-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu);
}

.pf-submit-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

/* 发布页侧栏 */
.pub-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pub-side-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-neu);
}

.pub-side-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-page);
}

.pub-plans-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.pub-plan-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
}

.pub-plan-hot {
  background: var(--gradient-soft);
}

.pub-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.pub-plan-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  color: white;
  background: var(--gradient);
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

.pub-plan-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pub-plan-info span {
  font-size: 12px;
  color: var(--text-light);
}

.pub-plan-info strong {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pub-side-cta {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.pub-side-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu-sm);
}

.pub-tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pub-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pub-tip-no {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--grad-start);
  background: var(--gradient-soft);
  border-radius: 6px;
  flex-shrink: 0;
}

.pub-tip div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pub-tip strong {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
}

.pub-tip span {
  font-size: 12px;
  color: var(--text-light);
}

.pub-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pub-contact-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.pub-contact-row span {
  color: var(--text-light);
}

.pub-contact-row strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* 响应式 - 个人中心 */
@media (max-width: 760px) {
  .pc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-plans {
    grid-template-columns: 1fr;
  }

  .pc-table-head,
  .pc-table-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .profile-card-new {
    width: 95vw;
  }

  .pub-hero-inner {
    grid-template-columns: 1fr;
  }

  .pub-form-layout {
    grid-template-columns: 1fr;
  }

  .pf-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ===== Hero 轮播推荐 ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-glass);
}

.hc-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  overflow-y: auto;
}

.hc-slide.hc-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hc-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hc-slide-cat {
  font-size: 12px;
  color: white;
  padding: 4px 12px;
  border-radius: 14px;
  font-weight: 600;
  background: var(--gradient);
}

.hc-slide-rec {
  font-size: 12px;
  color: #f5576c;
  background: rgba(245, 87, 108, 0.1);
  padding: 4px 10px;
  border-radius: 14px;
  font-weight: 600;
}

.hc-slide-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

.hc-slide-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.hc-slide-title a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hc-slide-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.hc-slide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hc-chip {
  font-size: 11px;
  color: var(--text-light);
  background: var(--bg-page);
  padding: 3px 10px;
  border-radius: 10px;
}

.hc-slide-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--bg-page);
}

.hc-slide-member {
  font-size: 12px;
  color: var(--text-light);
}

.hc-slide-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--grad-start);
  text-decoration: none;
  transition: all 0.3s;
}

.hc-slide-link:hover {
  color: var(--grad-mid);
}

/* 轮播 dots */
.hc-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.hc-dot-active {
  width: 24px;
  border-radius: 4px;
  background: var(--gradient);
}

/* 轮播箭头 */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  box-shadow: var(--shadow-neu-sm);
  border: none;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
}

.hero-carousel:hover .hc-arrow {
  opacity: 1;
}

.hc-arrow:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.hc-prev {
  left: 10px;
}

.hc-next {
  right: 10px;
}

/* 分类色映射 */
.hc-slide[data-hue="spring"] .hc-slide-cat { background: var(--hue-spring); }
.hc-slide[data-hue="teal"] .hc-slide-cat { background: var(--hue-teal); }
.hc-slide[data-hue="forest"] .hc-slide-cat { background: var(--hue-forest); }
.hc-slide[data-hue="wheat"] .hc-slide-cat { background: var(--hue-wheat); }

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-carousel {
    max-width: 100%;
    height: 340px;
  }
}

@media (max-width: 760px) {
  .hero-carousel {
    height: 300px;
  }

  .hc-slide {
    padding: 20px;
  }

  .hc-slide-title {
    font-size: 18px;
  }
}

/* ===== 套餐方案 v2 ===== */
.plans-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.plan-v2 {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-neu);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-v2:hover {
  transform: translateY(-8px);
  box-shadow: 16px 16px 32px var(--shadow-dark), -16px -16px 32px var(--shadow-light);
}

.plan-v2-featured {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
  border-color: var(--grad-start);
  box-shadow: 12px 12px 32px rgba(102, 126, 234, 0.2), -8px -8px 24px var(--shadow-light);
  transform: scale(1.03);
}

.plan-v2-featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pv2-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  white-space: nowrap;
  letter-spacing: 1px;
}

.pv2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pv2-tier {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
}

.pv2-tag {
  font-size: 11px;
  color: var(--text-light);
  background: var(--bg-page);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pv2-tag-hot {
  background: var(--gradient-soft);
  color: var(--grad-start);
}

.pv2-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 4px 0;
}

.pv2-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--grad-start);
}

.pv2-amount {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pv2-period {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.pv2-desc {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pv2-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-soft), transparent);
  margin: 4px 0;
}

.pv2-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pv2-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.pv2-check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: var(--gradient);
  border-radius: 50%;
  flex-shrink: 0;
}

.plan-v2-featured .pv2-check {
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.pv2-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--grad-start);
  background: var(--bg-card);
  border: 2px solid var(--grad-start);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  letter-spacing: 1px;
  margin-top: 8px;
}

.pv2-btn:hover {
  background: var(--gradient-soft);
  transform: translateY(-2px);
}

.pv2-btn-primary {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.pv2-btn-primary:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

/* 响应式 */
@media (max-width: 1024px) {
  .plans-v2 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .plan-v2-featured {
    transform: scale(1);
  }
  
  .plan-v2-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 760px) {
  .plan-v2 {
    padding: 28px 20px 24px;
  }
  
  .pv2-amount {
    font-size: 40px;
  }
  
  .pv2-tier {
    font-size: 20px;
  }
}

/* ===== 小米风格登录注册弹窗 ===== */
.mi-auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mi-auth-modal[aria-hidden="false"] {
  display: flex;
  animation: miFadeIn 0.2s ease;
}

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

.mi-auth-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: miSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mi-auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 22px;
  line-height: 1;
  color: #999;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-auth-close:hover {
  background: #f5f5f5;
  color: #333;
}

.mi-auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.mi-auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff6700 0%, #ff8a00 100%);
  color: white;
  font-size: 18px;
  font-weight: 800;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(255, 103, 0, 0.3);
  letter-spacing: 1px;
}

.mi-auth-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.mi-auth-subtitle {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.5px;
}

.mi-auth-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}

.mi-auth-tab {
  flex: 1;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
}

.mi-auth-tab:hover {
  color: #333;
}

.mi-auth-tab.active {
  color: #ff6700;
  border-bottom-color: #ff6700;
}

.mi-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mi-auth-form.hidden {
  display: none;
}

.mi-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.mi-input-wrap:focus-within {
  background: #fff;
  border-color: #ff6700;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}

.mi-input-icon {
  padding: 0 14px;
  font-size: 18px;
  color: #999;
  flex-shrink: 0;
}

.mi-input {
  flex: 1;
  width: 100%;
  padding: 14px 16px 14px 0;
  font-size: 15px;
  color: #333;
  background: transparent;
  border: none;
  outline: none;
  letter-spacing: 0.5px;
}

.mi-input::placeholder {
  color: #bbb;
}

.mi-captcha-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mi-captcha-input {
  flex: 1;
}

.mi-captcha-canvas {
  width: 120px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.mi-auth-submit {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff6700 0%, #ff8a00 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 2px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

.mi-auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 103, 0, 0.4);
}

.mi-auth-submit:active {
  transform: translateY(0);
}

.mi-auth-agreement {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 16px;
  line-height: 1.6;
}

.mi-auth-agreement a {
  color: #ff6700;
  text-decoration: none;
  transition: color 0.2s;
}

.mi-auth-agreement a:hover {
  color: #e55c00;
  text-decoration: underline;
}

/* 响应式 */
@media (max-width: 480px) {
  .mi-auth-card {
    padding: 32px 24px 28px;
    border-radius: 12px;
  }
  
  .mi-auth-logo {
    width: 56px;
    height: 56px;
    font-size: 16px;
    border-radius: 14px;
  }
  
  .mi-auth-title {
    font-size: 20px;
  }
  
  .mi-input {
    font-size: 14px;
    padding: 12px 14px 12px 0;
  }
  
  .mi-auth-submit {
    font-size: 15px;
    padding: 13px 0;
  }
}
