/**
 * Aurora Theme ? PhoenixCMS ????????
 * ???Design Tokens ? App Shell ? ?????? public-member.css ???
 */

/* ?? 1. Design Tokens ?? */
:root {
  --au-primary: var(--primary, #1677ff);
  --au-primary-hover: color-mix(in srgb, var(--au-primary) 88%, #000);
  --au-primary-soft: color-mix(in srgb, var(--au-primary) 12%, #fff);
  --au-bg: #f5f6f8;
  --au-surface: #ffffff;
  --au-surface-2: #fafbfc;
  --au-text: #1f2329;
  --au-text-2: #646a73;
  --au-text-3: #8f959e;
  --au-border: #e5e6eb;
  --au-border-2: #f0f1f3;
  --au-danger: #f53f3f;
  --au-success: #00b42a;
  --au-warning: #ff7d00;
  --au-radius-sm: 8px;
  --au-radius-md: 12px;
  --au-radius-lg: 16px;
  --au-radius-xl: 20px;
  --au-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --au-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --au-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.08);
  --au-header-h: 64px;
  --au-container: 1200px;
  --au-container-narrow: 960px;
  --au-space-1: 4px;
  --au-space-2: 8px;
  --au-space-3: 12px;
  --au-space-4: 16px;
  --au-space-5: 20px;
  --au-space-6: 24px;
  --au-space-8: 32px;
  --au-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* ?? 2. Base ?? */
*, *::before, *::after { box-sizing: border-box; }
html.au-html { scroll-behavior: smooth; }
body.au-body {
  margin: 0;
  font-family: var(--au-font);
  line-height: 1.6;
  color: var(--au-text);
  background: var(--au-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--au-primary); text-decoration: none; }
a:hover { color: var(--au-primary-hover); }
img { max-width: 100%; height: auto; }
svg { flex-shrink: 0; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ?? 3. App Shell ?? */
.au-app { min-height: 100vh; display: flex; flex-direction: column; }
.au-main { flex: 1; padding: var(--au-space-6) 0 var(--au-space-8); }
.au-container {
  width: 100%;
  max-width: var(--au-container);
  margin: 0 auto;
  padding: 0 var(--au-space-5);
}
.au-container--narrow { max-width: var(--au-container-narrow); }
.container { max-width: var(--au-container-narrow); margin: 0 auto; padding: 0 var(--au-space-4); }

/* Header */
.au-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--au-header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--au-border-2);
  box-shadow: var(--au-shadow-sm);
}
.au-header-inner {
  max-width: var(--au-container);
  margin: 0 auto;
  padding: 0 var(--au-space-5);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--au-space-4);
}
.au-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--au-text);
  flex-shrink: 0;
}
.au-brand:hover { color: var(--au-primary); text-decoration: none; }
.au-brand-logo { height: 32px; width: auto; display: block; }
.au-brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--au-primary), color-mix(in srgb, var(--au-primary) 60%, #7c3aed));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--au-primary) 35%, transparent);
}
.au-nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-sm);
  background: var(--au-surface);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.au-nav-toggle-bar {
  display: block; height: 2px; background: var(--au-text);
  border-radius: 1px; transition: transform .2s, opacity .2s;
}
.au-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--au-space-4);
  min-width: 0;
}
.au-nav-scroll {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  min-width: 0;
}
.au-nav-link {
  padding: 8px 12px;
  border-radius: var(--au-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--au-text-2);
  white-space: nowrap;
}
.au-nav-link:hover { color: var(--au-primary); background: var(--au-primary-soft); text-decoration: none; }
.au-nav-link--accent { color: var(--au-primary); }
.au-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--au-space-2);
  flex-shrink: 0;
}
.au-nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--au-radius-sm);
  color: var(--au-text-2);
}
.au-nav-cart:hover { background: var(--au-primary-soft); color: var(--au-primary); text-decoration: none; }
.au-nav-ghost {
  padding: 6px 12px;
  border-radius: var(--au-radius-sm);
  font-size: 0.8125rem;
  color: var(--au-text-2);
  border: 1px solid var(--au-border);
  background: var(--au-surface);
}
.au-nav-ghost:hover { border-color: var(--au-primary); color: var(--au-primary); text-decoration: none; }
.au-member-nav { margin-left: 4px; }

.au-header--scrolled { box-shadow: var(--au-shadow-md); }

/* Footer */
.au-footer {
  margin-top: auto;
  background: var(--au-surface);
  border-top: 1px solid var(--au-border);
  padding: var(--au-space-8) 0 var(--au-space-6);
}
.au-footer-inner { max-width: var(--au-container); margin: 0 auto; padding: 0 var(--au-space-5); }
.au-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--au-space-6);
  margin-bottom: var(--au-space-6);
}
.au-footer-brand strong { display: block; font-size: 1rem; margin-bottom: 8px; color: var(--au-text); }
.au-footer-brand p { margin: 0; font-size: 0.875rem; color: var(--au-text-3); line-height: 1.7; max-width: 360px; }
.au-footer-nav, .au-footer-links { display: flex; flex-direction: column; gap: 10px; }
.au-footer-nav a, .au-footer-links a { font-size: 0.875rem; color: var(--au-text-2); }
.au-footer-nav a:hover, .au-footer-links a:hover { color: var(--au-primary); text-decoration: none; }
.au-footer-bottom { padding-top: var(--au-space-4); border-top: 1px solid var(--au-border-2); }
.au-footer-bottom p { margin: 0; font-size: 0.8125rem; color: var(--au-text-3); text-align: center; }

/* ?? 4. Hero & Marketing ?? */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--au-radius-xl);
  padding: 56px 40px;
  margin-bottom: var(--au-space-6);
  color: #fff;
  background: linear-gradient(135deg, var(--au-primary) 0%, color-mix(in srgb, var(--au-primary) 50%, #6366f1) 100%);
  box-shadow: var(--au-shadow-lg);
}
.hero-has-image { background-size: cover; background-position: center; }
.hero-has-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.72), rgba(15,23,42,.35));
}
.au-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.1), transparent 45%);
}
.hero-inner, .au-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-small { padding: 36px 32px; }
.hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0 0 12px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
.hero-subtitle, .au-hero-kicker { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin: 0 0 10px; }
.hero-desc, .au-hero-desc { opacity: 0.92; font-size: 1.0625rem; max-width: 560px; margin: 0 0 20px; line-height: 1.7; }
.hero-actions, .au-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Buttons */
.btn, .au-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: var(--au-radius-sm);
  font-weight: 600; font-size: 0.9375rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: all .15s ease;
}
.btn-primary, .au-btn--primary { background: #fff; color: var(--au-primary); }
.btn-primary:hover, .au-btn--primary:hover { text-decoration: none; filter: brightness(0.97); transform: translateY(-1px); }
.btn-outline, .au-btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline:hover, .au-btn--ghost:hover { text-decoration: none; background: rgba(255,255,255,.18); }

/* Cards & sections */
.card {
  background: var(--au-surface);
  border: 1px solid var(--au-border-2);
  border-radius: var(--au-radius-md);
  padding: var(--au-space-5);
  margin-bottom: var(--au-space-4);
  box-shadow: var(--au-shadow-sm);
}
.features { margin-bottom: var(--au-space-6); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--au-space-4); }
.feature-card {
  background: var(--au-surface);
  border: 1px solid var(--au-border-2);
  border-radius: var(--au-radius-md);
  padding: var(--au-space-5);
  transition: box-shadow .2s, border-color .2s;
}
.feature-card:hover { box-shadow: var(--au-shadow-md); border-color: color-mix(in srgb, var(--au-primary) 25%, var(--au-border)); }
.feature-image { width: 48px; height: 48px; object-fit: cover; border-radius: var(--au-radius-sm); margin-bottom: 12px; }
.feature-icon { font-size: 1.75rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; margin: 0 0 8px; color: var(--au-text); }
.feature-card p { color: var(--au-text-2); font-size: 0.875rem; margin: 0; line-height: 1.6; }
.custom-block { margin-bottom: var(--au-space-6); }
.section-title { font-size: 1.25rem; margin: 0 0 var(--au-space-4); color: var(--au-text); font-weight: 700; }
.more-link { text-align: center; margin-top: var(--au-space-3); font-size: 0.875rem; }

/* Content */
.post-card h3 { margin: 0 0 8px; font-size: 1.125rem; }
.post-card h3 a { color: var(--au-text); }
.post-card h3 a:hover { color: var(--au-primary); text-decoration: none; }
.meta { color: var(--au-text-3); font-size: 0.875rem; margin-bottom: 8px; }
.excerpt { color: var(--au-text-2); margin-bottom: 10px; line-height: 1.65; }
.read-more { font-size: 0.875rem; font-weight: 600; }
.pagination { display: flex; align-items: center; justify-content: center; gap: var(--au-space-4); margin: var(--au-space-6) 0; font-size: 0.875rem; color: var(--au-text-2); }
.breadcrumb { font-size: 0.875rem; color: var(--au-text-3); margin-bottom: var(--au-space-4); }
.breadcrumb a { color: var(--au-text-2); }
.breadcrumb span { margin: 0 6px; }
.article-reading { padding: var(--au-space-6); }
.article-reading h1 { font-size: 1.875rem; line-height: 1.3; margin: 0 0 12px; color: var(--au-text); }
.article-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--au-radius-md); margin-bottom: var(--au-space-5); }
.article-nav { display: flex; justify-content: space-between; gap: var(--au-space-4); margin: var(--au-space-3) 0 var(--au-space-8); font-size: 0.875rem; font-weight: 600; }
.article-content { word-break: break-word; }
.member-nav { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.member-nav-user { color: var(--au-text-2); font-size: 0.875rem; }
.link-btn { background: none; border: none; color: var(--au-primary); cursor: pointer; font: inherit; padding: 0; }
.member-actions { display: flex; gap: 10px; margin: 12px 0 16px; }
.member-btn {
  border: 1px solid var(--au-border); background: var(--au-surface);
  border-radius: 999px; padding: 8px 14px; cursor: pointer; font-size: 0.875rem;
}
.member-btn.is-active { border-color: var(--au-primary); color: var(--au-primary); background: var(--au-primary-soft); }
.comments-section h2 { margin: 0 0 12px; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-item { padding: 12px 0; border-bottom: 1px solid var(--au-border-2); }
.comment-meta { color: var(--au-text-3); font-size: 0.8125rem; margin-bottom: 6px; }
.comment-body { white-space: pre-wrap; }
.comment-children { list-style: none; margin: 10px 0 0 16px; padding-left: 12px; border-left: 2px solid var(--au-border-2); }
.comment-empty, .comment-login-tip, .muted { color: var(--au-text-3); }
.auth-card, .account-card { max-width: 480px; margin: 0 auto var(--au-space-4); }
.auth-form { display: grid; gap: 14px; margin-top: var(--au-space-4); }
.form-field { display: grid; gap: 6px; font-size: 0.875rem; }
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid var(--au-border); border-radius: var(--au-radius-sm);
  padding: 10px 12px; font: inherit;
}
.form-error { color: var(--au-danger); background: #fff2f0; border-radius: var(--au-radius-sm); padding: 10px 12px; }
.btn-block { width: 100%; text-align: center; border: none; cursor: pointer; }
.btn-outline-dark { display: inline-block; padding: 10px 18px; border-radius: var(--au-radius-sm); border: 1px solid var(--au-border); color: var(--au-text); background: var(--au-surface); }

/* Account / VIP page backgrounds */
body:has(.account-page-shell),
body:has(.vip-page) { background: var(--au-bg); }

/* Page states */
body.au-nav-open { overflow: hidden; }
body.au-nav-open .au-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.au-nav-open .au-nav-toggle-bar:nth-child(2) { opacity: 0; }
body.au-nav-open .au-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .au-nav-toggle { display: flex; }
  .au-nav {
    position: fixed; inset: var(--au-header-h) 0 0 0;
    flex-direction: column; align-items: stretch;
    background: var(--au-surface);
    padding: var(--au-space-4) var(--au-space-5) var(--au-space-6);
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    border-top: 1px solid var(--au-border-2);
  }
  body.au-nav-open .au-nav { transform: translateX(0); }
  .au-nav-scroll { flex-direction: column; align-items: stretch; }
  .au-nav-link { padding: 12px 14px; }
  .au-nav-actions { flex-direction: column; align-items: stretch; margin-top: var(--au-space-3); padding-top: var(--au-space-3); border-top: 1px solid var(--au-border-2); }
  .au-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 24px; border-radius: var(--au-radius-lg); }
  .hero h1 { font-size: 1.5rem; }
  .au-header-inner, .au-container, .au-footer-inner { padding-left: var(--au-space-4); padding-right: var(--au-space-4); }
}

/* ???? 5. Business Modules (??? / ???? / ???? / ??? / ???????) ???? */
/* MicroMall ???? */
.shop-pdp { max-width: 1180px; margin: 0 auto; }
.shop-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; font-size: 0.8125rem; color: #909399; margin-bottom: 16px; }
.shop-breadcrumb a { color: #606266; }
.shop-breadcrumb-current { color: #303133; }
.shop-breadcrumb-sep { color: #c0c4cc; margin: 0 2px; }
.shop-filters { margin-bottom: 20px; }
.shop-filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.shop-search-input, .shop-select { border: 1px solid #dcdfe6; border-radius: 8px; padding: 10px 12px; font: inherit; min-width: 140px; }
.shop-search-input { flex: 1 1 200px; }
.shop-filter-btn { border: none; cursor: pointer; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 24px; }
.shop-grid--related { margin-bottom: 0; }
.shop-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.shop-card-cover { display: block; position: relative; aspect-ratio: 4 / 3; background: #f0f2f5; }
.shop-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 2.5rem; color: #c0c4cc; font-weight: 700; }
.shop-card-tag { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.55); color: #fff; font-size: 0.75rem; padding: 4px 8px; border-radius: 999px; }
.shop-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.shop-card-body h2, .shop-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.shop-card-body h2 a, .shop-card-body h3 a { color: #303133; }
.shop-price { color: #f56c6c; font-size: 1.125rem; font-weight: 700; margin: 8px 0; }
.shop-empty { grid-column: 1 / -1; text-align: center; color: #909399; }

/* ???? PDP */
.shop-pdp-main { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 1fr); gap: 32px; padding: 24px; margin-bottom: 20px; }
.shop-pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.shop-pdp-stage { aspect-ratio: 1; background: #f5f7fa; border: 1px solid #ebeef5; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.shop-pdp-stage-image { width: 100%; height: 100%; object-fit: contain; }
.shop-pdp-stage-placeholder { font-size: 5rem; color: #c0c4cc; font-weight: 700; }
.shop-pdp-thumbs { display: flex; gap: 10px; flex-wrap: wrap; overflow-x: auto; padding-bottom: 4px; }
.shop-pdp-thumb { width: 72px; height: 72px; border: 2px solid #ebeef5; border-radius: 8px; background: #fff; padding: 0; cursor: pointer; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.shop-pdp-thumb.is-active { border-color: var(--primary, #409eff); }
.shop-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-pdp-buybox { display: flex; flex-direction: column; gap: 0; }
.shop-pdp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.shop-pdp-badge { font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; font-weight: 600; }
.shop-pdp-badge--type { background: #ecf5ff; color: var(--primary, #409eff); }
.shop-pdp-badge--stock { background: #f0f9eb; color: #67c23a; }
.shop-pdp-badge--soldout { background: #fef0f0; color: #f56c6c; }
.shop-pdp-title { font-size: 1.5rem; line-height: 1.35; color: #303133; margin-bottom: 8px; font-weight: 700; }
.shop-pdp-subtitle { font-size: 0.875rem; color: #909399; margin-bottom: 16px; line-height: 1.5; }
.shop-pdp-price-panel { background: linear-gradient(90deg, #fff5f5 0%, #fff 100%); border: 1px solid #fde2e2; border-radius: 10px; padding: 16px 18px; margin-bottom: 18px; }
.shop-pdp-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.shop-pdp-price-label { font-size: 0.875rem; color: #909399; }
.shop-pdp-price-value { color: #f56c6c; font-weight: 700; line-height: 1; }
.shop-pdp-currency { font-size: 1.125rem; margin-right: 2px; }
.shop-pdp-price-num { font-size: 2rem; }
.shop-pdp-price-tip { font-size: 0.75rem; color: #c0c4cc; margin-top: 8px; }
.shop-pdp-attrs { display: grid; gap: 10px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px dashed #ebeef5; }
.shop-pdp-attr { display: grid; grid-template-columns: 88px 1fr; gap: 12px; font-size: 0.875rem; align-items: start; }
.shop-pdp-attr dt { color: #909399; margin: 0; }
.shop-pdp-attr dd { color: #303133; margin: 0; }
.shop-pdp-attr a { color: #606266; }
.shop-pdp-qty { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.shop-pdp-qty-label { font-size: 0.875rem; color: #909399; min-width: 88px; }
.shop-pdp-stepper { display: inline-flex; border: 1px solid #dcdfe6; border-radius: 8px; overflow: hidden; }
.shop-pdp-stepper-btn { width: 36px; height: 36px; border: none; background: #f5f7fa; color: #c0c4cc; font-size: 1.125rem; cursor: not-allowed; }
.shop-pdp-stepper-input { width: 48px; height: 36px; border: none; border-left: 1px solid #dcdfe6; border-right: 1px solid #dcdfe6; text-align: center; font: inherit; color: #303133; background: #fff; }
.shop-pdp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.shop-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 140px; height: 44px; padding: 0 24px; border-radius: 8px; font-size: 0.9375rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: opacity .2s; }
.shop-btn:disabled { opacity: .55; cursor: not-allowed; }
.shop-btn-buy { background: linear-gradient(135deg, #ff6b6b, #f56c6c); color: #fff; flex: 1 1 160px; }
.shop-btn-cart { background: #fff7e6; color: #e6a23c; border: 1px solid #f5dab1; flex: 1 1 160px; }
.shop-btn-ghost { background: #fff; color: #606266; border: 1px solid #dcdfe6; }
.shop-btn-ghost:hover { text-decoration: none; border-color: var(--primary, #409eff); color: var(--primary, #409eff); }
.shop-pdp-ensure { display: flex; flex-wrap: wrap; gap: 16px; padding: 12px 0; border-top: 1px solid #ebeef5; margin-bottom: 8px; }
.shop-pdp-ensure-item { font-size: 0.8125rem; color: #606266; display: flex; align-items: center; gap: 6px; }
.shop-pdp-ensure-icon { color: #67c23a; font-weight: 700; }
.shop-pdp-contact-tip { font-size: 0.8125rem; color: #e6a23c; background: #fdf6ec; border-radius: 8px; padding: 10px 12px; margin: 0; }

.shop-pdp-tabs { padding: 0; overflow: hidden; margin-bottom: 24px; }
.shop-pdp-tablist { display: flex; border-bottom: 1px solid #ebeef5; background: #fafafa; }
.shop-pdp-tab { flex: 1; max-width: 200px; height: 48px; border: none; background: transparent; font: inherit; font-size: 0.9375rem; color: #606266; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.shop-pdp-tab.is-active { color: var(--primary, #409eff); font-weight: 600; border-bottom-color: var(--primary, #409eff); background: #fff; }
.shop-pdp-tabpanels { padding: 24px; }
.shop-pdp-panel { display: none; }
.shop-pdp-panel.is-active { display: block; }
.shop-pdp-panel-subtitle { font-size: 1rem; margin: 20px 0 12px; color: #303133; }
.shop-pdp-rich { line-height: 1.8; }
.shop-pdp-empty { color: #909399; font-size: 0.875rem; }
.shop-pdp-spec-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.shop-pdp-spec-table th, .shop-pdp-spec-table td { border: 1px solid #ebeef5; padding: 12px 16px; text-align: left; }
.shop-pdp-spec-table th { width: 140px; background: #fafafa; color: #909399; font-weight: 500; }
.shop-pdp-service-list { margin: 0; padding-left: 1.25rem; color: #606266; font-size: 0.875rem; line-height: 1.9; }

.shop-pdp-related { margin-bottom: 32px; }
.shop-pdp-related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.shop-pdp-related-header h2 { font-size: 1.25rem; color: #303133; }
.shop-pdp-related-header a { font-size: 0.875rem; }

.shop-pdp-article { margin-bottom: 24px; }
.shop-pdp-article-title { font-size: 1.25rem; margin-bottom: 16px; color: #303133; }
.shop-pdp-rich :is(img, video, iframe) { max-width: 100%; height: auto; }
.markdown-body :is(video, iframe) { max-width: 100%; border-radius: 8px; }

@media (max-width: 900px) {
    .shop-pdp-main { grid-template-columns: 1fr; gap: 20px; padding: 16px; }
    .shop-pdp-price-num { font-size: 1.75rem; }
    .shop-pdp-actions { flex-direction: column; }
    .shop-btn { width: 100%; }
    .shop-pdp-tab { max-width: none; }
}
.account-actions { display: flex; justify-content: flex-end; }

/* Homepage section builder blocks */
.hp-section { margin-bottom: 24px; }
.hp-section-title { font-size: 1.35rem; margin-bottom: 16px; color: #303133; }
.hp-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hp-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hp-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hp-hero--overlay-light .hero-inner { color: #303133; }
.hp-hero--overlay-none::before { display: none; }
.hp-cta { padding: 48px 24px; border-radius: 12px; background: linear-gradient(135deg, var(--primary, #409eff), #6366f1); color: #fff; text-align: center; background-size: cover; background-position: center; }
.hp-cta--dark { background: #1f2937; }
.hp-cta--banner { background: #f5f7fa; color: #303133; border: 1px solid #ebeef5; }
.hp-cta-inner h2 { margin-bottom: 8px; }
.hp-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.hp-stat { text-align: center; padding: 16px; background: #f5f7fa; border-radius: 8px; }
.hp-stat-value { font-size: 1.75rem; font-weight: 700; color: var(--primary, #409eff); }
.hp-stat-label { font-size: 0.875rem; color: #909399; margin-top: 4px; }
.hp-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.hp-testimonial { padding: 20px; }
.hp-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.hp-testimonial footer { margin-top: 12px; font-size: 0.875rem; color: #606266; }
.hp-faq-list { display: grid; gap: 12px; }
.hp-faq-item dt { font-weight: 600; margin-bottom: 4px; }
.hp-faq-item dd { color: #606266; margin: 0; }
.hp-gallery-grid { display: grid; gap: 12px; }
.hp-gallery-item img { width: 100%; border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; }
.hp-gallery-item figcaption { font-size: 0.8125rem; color: #909399; margin-top: 6px; }
.hp-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.hp-category-card { display: flex; flex-direction: column; gap: 4px; padding: 16px; border: 1px solid #ebeef5; border-radius: 8px; text-decoration: none; color: inherit; transition: border-color .2s; }
.hp-category-card:hover { border-color: var(--primary, #409eff); }
.hp-category-count { font-size: 0.8125rem; color: #909399; }
.hp-logos-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
.hp-logo-item img { max-height: 48px; max-width: 120px; object-fit: contain; filter: grayscale(0.2); }
.hp-video-wrap iframe, .hp-video-wrap video { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 8px; background: #000; }
.hp-divider--line { border-top: 1px solid #ebeef5; margin: 8px 0; }
.hp-divider--space { height: 24px; }
.hp-posts--grid .post-card { display: inline-block; width: calc(50% - 8px); vertical-align: top; margin-right: 8px; }
.hp-align-center { text-align: center; }
.hp-align-left { text-align: left; }

@media (max-width: 640px) {
    .hero h1 { font-size: 1.5rem; }
    .site-header .container { flex-direction: column; align-items: flex-start; }
}

/* ????/ ?? / ?? */
.shop-nav-cart { position: relative; }
.shop-nav-cart-count { display: inline-flex; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 4px; border-radius: 9px; background: #f56c6c; color: #fff; font-size: 11px; align-items: center; justify-content: center; vertical-align: middle; }
.shop-nav-cart-count[hidden] { display: none; }
.shop-cart-page h1, .shop-checkout-page h1, .shop-orders-page h1, .shop-order-center h1 { margin-bottom: 20px; }
.shop-cart-empty, .shop-orders-empty { color: #909399; padding: 24px 0; }
.shop-order-center-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.shop-order-center-desc { margin: 6px 0 0; color: #909399; font-size: 0.875rem; }
.shop-order-center-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.shop-order-center-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #ebeef5; }
.shop-order-tab { border: 1px solid #dcdfe6; background: #fff; color: #606266; border-radius: 999px; padding: 8px 16px; font: inherit; font-size: 0.875rem; cursor: pointer; }
.shop-order-tab.is-active { border-color: var(--primary, #409eff); color: var(--primary, #409eff); background: #ecf5ff; font-weight: 600; }
.shop-orders-list { display: flex; flex-direction: column; gap: 12px; }
.shop-cart-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.shop-cart-table th, .shop-cart-table td { border-bottom: 1px solid #ebeef5; padding: 16px 8px; text-align: left; vertical-align: middle; }
.shop-cart-product { display: flex; gap: 12px; align-items: center; }
.shop-cart-thumb { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; background: #f5f7fa; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.shop-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-cart-remove { border: none; background: none; color: #909399; cursor: pointer; font-size: 0.8125rem; }
.shop-cart-remove:hover { color: #f56c6c; }
.shop-cart-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.shop-cart-total strong { color: #f56c6c; font-size: 1.25rem; }
.shop-cart-actions, .shop-checkout-actions, .shop-order-result-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.shop-checkout-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.shop-checkout-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: #fafafa; border-radius: 8px; }
.shop-checkout-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.shop-checkout-item-body { flex: 1; min-width: 0; }
.shop-checkout-line { font-weight: 600; color: #303133; }
.shop-checkout-summary { padding: 16px 0; border-top: 1px solid #ebeef5; margin-bottom: 16px; }
.shop-checkout-total strong { color: #f56c6c; font-size: 1.25rem; }
.shop-checkout-form label { display: block; margin-bottom: 8px; font-size: 0.875rem; color: #606266; }
.shop-checkout-form textarea { width: 100%; box-sizing: border-box; padding: 10px 12px; border: 1px solid #dcdfe6; border-radius: 8px; font: inherit; resize: vertical; }
.shop-checkout-tip, .shop-orders-login-tip { color: #e6a23c; font-size: 0.875rem; margin-bottom: 12px; }
.shop-order-card { border: 1px solid #ebeef5; border-radius: 8px; padding: 16px; }
.shop-order-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; font-weight: 600; }
.shop-order-card-no { font-size: 0.9375rem; color: #303133; }
.shop-order-status { font-size: 0.8125rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.shop-order-status--pending { color: #e6a23c; background: #fdf6ec; }
.shop-order-status--paid { color: var(--primary, #409eff); background: #ecf5ff; }
.shop-order-status--completed { color: #67c23a; background: #f0f9eb; }
.shop-order-status--cancelled { color: #909399; background: #f4f4f5; }
.shop-order-card-meta { color: #909399; font-size: 0.8125rem; margin: 0 0 12px; }
.shop-order-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.shop-order-card-total { color: #f56c6c; font-weight: 700; margin: 0; font-size: 1.125rem; }
.shop-order-card-btn { min-width: auto; height: 36px; padding: 0 16px; font-size: 0.875rem; }
.shop-order-success { color: #67c23a; margin-bottom: 16px; }
.shop-order-detail-dl { display: grid; gap: 8px; margin-bottom: 20px; font-size: 0.875rem; }
.shop-order-detail-dl div { display: flex; gap: 12px; }
.shop-order-detail-dl dt { width: 80px; color: #909399; }
.shop-order-items { margin: 0 0 20px; padding-left: 1.25rem; line-height: 1.8; color: #606266; }

/* ?????? */
.shop-checkout-section-title { font-size: 1rem; margin: 0 0 12px; color: #303133; }
.shop-pay-option { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid #ebeef5; border-radius: 8px; margin-bottom: 8px; cursor: pointer; }
.shop-pay-option:has(input:checked) { border-color: var(--primary, #409eff); background: #ecf5ff; }

.shop-pay-guide { margin-top: 16px; border: 1px solid #faecd8; border-radius: 12px; overflow: hidden; background: #fff; }
.shop-pay-guide--result { margin-bottom: 24px; }
.shop-pay-guide-banner { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: linear-gradient(135deg, #f0f9eb 0%, #fdf6ec 100%); border-bottom: 1px solid #faecd8; }
.shop-pay-guide-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #67c23a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; }
.shop-pay-guide-banner-text h2 { margin: 0 0 6px; font-size: 1.125rem; color: #303133; }
.shop-pay-guide-banner-text p { margin: 0; font-size: 0.9375rem; color: #606266; line-height: 1.6; }
.shop-pay-guide-banner-text strong { color: #f56c6c; font-size: 1.0625rem; }
.shop-pay-guide-actions { display: flex; flex-wrap: wrap; gap: 12px; padding: 20px; justify-content: center; background: #fff; }
.shop-pay-action-btn { min-width: 140px; height: 44px; padding: 0 20px; border-radius: 8px; border: 1px solid #dcdfe6; background: #fff; color: #303133; font: inherit; font-size: 0.9375rem; font-weight: 600; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.shop-pay-action-btn:hover { border-color: var(--primary, #409eff); color: var(--primary, #409eff); background: #ecf5ff; }
.shop-pay-action-btn--bank { border-color: #f5dab1; background: #fff7e6; color: #e6a23c; }
.shop-pay-action-btn--bank:hover { border-color: #e6a23c; background: #fdf6ec; color: #cf9236; }
.shop-pay-action-btn--scan { border-color: #fde2e2; background: #fff5f5; color: #f56c6c; }
.shop-pay-action-btn--scan:hover { border-color: #f56c6c; background: #fef0f0; color: #f56c6c; }
.shop-pay-action-btn--service { border-color: #d9ecff; background: #ecf5ff; color: var(--primary, #409eff); }
.shop-pay-action-btn--service:hover { border-color: var(--primary, #409eff); background: #ecf5ff; }
.shop-pay-guide-steps { margin: 0; padding: 14px 20px 14px 36px; background: #fdf6ec; border-top: 1px solid #faecd8; font-size: 0.8125rem; color: #909399; line-height: 1.8; }

.shop-pay-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; pointer-events: none; }
.shop-pay-modal[hidden] { display: none !important; }
.shop-pay-modal.is-visible { pointer-events: auto; }
.shop-pay-modal-backdrop { position: absolute; inset: 0; z-index: 0; background: rgba(0, 0, 0, 0); transition: background .2s ease; }
.shop-pay-modal.is-visible .shop-pay-modal-backdrop { background: rgba(15, 23, 42, 0.52); }
.shop-pay-modal-dialog { position: relative; z-index: 1; width: min(420px, calc(100vw - 40px)); max-height: min(88vh, 720px); overflow: auto; margin: auto; background: #fff; border-radius: 12px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22); padding: 24px 20px 20px; opacity: 0; transform: translateY(12px) scale(0.98); transition: opacity .2s ease, transform .2s ease; pointer-events: auto; }
.shop-pay-modal.is-visible .shop-pay-modal-dialog { opacity: 1; transform: translateY(0) scale(1); }
.shop-pay-modal-close { position: absolute; top: 10px; right: 12px; z-index: 2; width: 32px; height: 32px; border: none; background: #f5f7fa; border-radius: 50%; color: #909399; font-size: 1.25rem; line-height: 1; cursor: pointer; }
.shop-pay-modal-close:hover { color: #303133; background: #ebeef5; }
.shop-pay-modal-title { margin: 0 0 12px; font-size: 1.0625rem; color: #303133; padding-right: 28px; }
.shop-pay-modal-tip { margin: 0 0 14px; font-size: 0.875rem; color: #606266; line-height: 1.6; }
.shop-pay-modal-tip strong { color: #f56c6c; }
.shop-pay-modal-text { margin: 0; white-space: pre-wrap; font-family: inherit; font-size: 0.875rem; line-height: 1.8; color: #606266; background: #fafafa; border: 1px solid #ebeef5; border-radius: 8px; padding: 14px; }
.shop-pay-modal-contact { margin: 14px 0 0; padding: 10px 12px; background: #f5f7fa; border-radius: 8px; font-size: 0.875rem; color: #606266; }
.shop-pay-modal-qr { margin-top: 8px; text-align: center; }
.shop-pay-modal-qr img { width: 200px; height: 200px; object-fit: contain; border-radius: 8px; background: #fff; border: 1px solid #ebeef5; padding: 8px; }
.shop-pay-modal-qr p { margin: 12px 0 0; font-size: 0.875rem; color: #606266; }
body.shop-pay-modal-open { overflow: hidden; }

.shop-order-summary { padding: 20px; margin-bottom: 20px; background: #fafafa; border: 1px solid #ebeef5; border-radius: 10px; }
.shop-order-summary-title { margin: 0 0 14px; font-size: 1rem; color: #303133; }
.shop-order-summary-amount { color: #f56c6c; font-weight: 700; font-size: 1.0625rem; }
.shop-order-items-section h2 { margin: 0 0 12px; font-size: 1rem; }
.shop-order-result-title { margin: 0 0 20px; font-size: 1.375rem; color: #303133; }
.shop-order-result-inner { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 768px) {
    .shop-pay-guide-actions { flex-direction: column; align-items: stretch; }
    .shop-pay-action-btn { width: 100%; }
}

/* ????????*/
.af-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 16px; font-size: 0.875rem; color: #909399; }
.af-breadcrumb a { color: #606266; text-decoration: none; }
.af-breadcrumb a:hover { color: var(--primary, #409eff); }
.af-breadcrumb-sep { color: #dcdfe6; }
.af-breadcrumb-current { color: #303133; }
.af-badge { margin: 0 0 8px; font-size: 0.75rem; letter-spacing: 0.06em; color: #4338ca; text-transform: uppercase; }
.af-hero h1 { margin: 0 0 8px; font-size: 1.625rem; color: #111827; }
.af-subtitle { margin: 0; color: #4b5563; line-height: 1.6; }
.af-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.af-section-title { margin: 24px 0 12px; font-size: 1rem; color: #303133; }
.af-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.af-stat { padding: 16px; background: #f9fafb; border: 1px solid #ebeef5; border-radius: 10px; }
.af-stat-label { display: block; font-size: 0.8125rem; color: #909399; margin-bottom: 6px; }
.af-stat-value { font-size: 1.25rem; color: #303133; }
.af-stat-value--paid { color: #67c23a; }
.af-pitch-doc { line-height: 1.8; color: #1f2937; }
.af-pitch-doc h1, .af-pitch-doc h2, .af-pitch-doc h3 { color: #111827; margin-top: 1.5em; }
.af-pitch-doc table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.875rem; }
.af-pitch-doc th, .af-pitch-doc td { border: 1px solid #e5e7eb; padding: 8px 10px; }
.af-pitch-doc th { background: #f9fafb; }
.af-cta { text-align: center; margin-top: 20px; }
.af-cta h2 { margin: 0 0 8px; }
.af-cta p { margin: 0 0 16px; color: #606266; }
.af-invest-tip { color: #909399; font-size: 0.875rem; margin: 0 0 16px; line-height: 1.6; }
.af-invest-form label { display: block; margin: 12px 0 6px; font-size: 0.875rem; color: #606266; }
.af-invest-form input, .af-invest-form textarea { width: 100%; box-sizing: border-box; padding: 10px 12px; border: 1px solid #dcdfe6; border-radius: 8px; font: inherit; }
.af-invest-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.af-records-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.af-records-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #ebeef5; }
.af-tab { border: 1px solid #dcdfe6; background: #fff; color: #606266; border-radius: 999px; padding: 8px 16px; font: inherit; font-size: 0.875rem; cursor: pointer; }
.af-tab.is-active { border-color: var(--primary, #409eff); color: var(--primary, #409eff); background: #ecf5ff; font-weight: 600; }
.af-records-list { display: flex; flex-direction: column; gap: 12px; }
.af-records-empty { color: #909399; padding: 16px 0; }
.af-record-card { border: 1px solid #ebeef5; border-radius: 8px; padding: 16px; }
.af-record-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.af-record-card-meta { margin: 0 0 4px; color: #606266; font-size: 0.9375rem; }
.af-record-card-time { margin: 0 0 12px; color: #909399; font-size: 0.8125rem; }
.af-record-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.af-not-found { text-align: center; padding: 40px 24px; }
.shop-btn-sm { min-width: auto; height: 36px; padding: 0 16px; font-size: 0.875rem; }

/* VIP ???? */
.vip-page { margin: 0; max-width: 100%; }
body:has(.vip-page) { background: #edf1f7; }
.vip-hero { margin: 0 0 12px; border-radius: 16px; overflow: hidden; background: linear-gradient(145deg, #1a1208 0%, #3d2b14 38%, #6b4e1f 100%); color: #fff; box-shadow: 0 12px 32px rgba(26, 18, 8, 0.18); }
.vip-hero-inner { padding: 28px 28px 0; }
.vip-hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.vip-hero-kicker { margin: 0 0 8px; font-size: 0.75rem; letter-spacing: 0.14em; opacity: 0.72; }
.vip-hero h1 { margin: 0 0 8px; font-size: clamp(1.75rem, 4vw, 2.25rem); }
.vip-hero-desc { margin: 0; opacity: 0.88; max-width: 560px; line-height: 1.7; }
.vip-hero-link { border-color: rgba(255,255,255,0.35) !important; color: #fff !important; background: rgba(255,255,255,0.08) !important; }
.vip-member-card { display: flex; justify-content: space-between; align-items: stretch; gap: 20px; flex-wrap: wrap; padding: 22px 24px 26px; background: linear-gradient(135deg, rgba(255,247,224,0.96) 0%, rgba(255,236,179,0.92) 100%); color: #4a3412; border-radius: 18px 18px 0 0; min-height: 120px; }
.vip-member-card-left { display: flex; align-items: center; gap: 16px; }
.vip-member-avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, #c8960c, #8b5a00); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35); }
.vip-member-name { font-size: 1.125rem; font-weight: 700; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vip-member-expiry { margin: 6px 0 0; font-size: 0.875rem; color: #7a5a1d; }
.vip-member-card-right { flex: 1; min-width: 220px; max-width: 360px; display: flex; align-items: center; }
.vip-growth { width: 100%; }
.vip-growth-head { display: flex; justify-content: space-between; gap: 12px; font-size: 0.8125rem; color: #7a5a1d; margin-bottom: 8px; }
.vip-growth-bar { height: 8px; border-radius: 999px; background: rgba(139, 90, 0, 0.15); overflow: hidden; }
.vip-growth-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #d4af37, #f7e08a); }
.vip-body { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.vip-section { padding: 22px; border-radius: 20px; box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05); border: 1px solid rgba(255, 255, 255, 0.8); }
.vip-section-title { margin: 0 0 16px; font-size: 1.125rem; color: #303133; }
.vip-section-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.vip-privilege-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.vip-privilege-card { padding: 18px 16px; border: 1px solid #f0e6cc; border-radius: 12px; background: linear-gradient(180deg, #fffdf7 0%, #fff 100%); }
.vip-privilege-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #8b5a00; background: linear-gradient(135deg, #fff3c4, #ffe08a); margin-bottom: 10px; }
.vip-privilege-card h3 { margin: 0 0 6px; font-size: 0.9375rem; }
.vip-privilege-card p { margin: 0; font-size: 0.8125rem; color: #909399; line-height: 1.6; }
.vip-compare-wrap { overflow-x: auto; }
.vip-compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 560px; }
.vip-compare-table th, .vip-compare-table td { border: 1px solid #ebeef5; padding: 12px 14px; text-align: center; }
.vip-compare-table th:first-child, .vip-compare-table td:first-child { text-align: left; }
.vip-compare-table th { background: #fafafa; }
.vip-compare-highlight { color: #b8860b; font-weight: 600; }
.vip-compare-svip { color: #8b4513; font-weight: 700; }
.vip-plans-section { padding: 0; background: transparent; border: none; box-shadow: none; }
.vip-plans-head { margin-bottom: 12px; }
.vip-plans-tip { margin: 0; color: #909399; font-size: 0.875rem; }
.vip-plan-tabs { display: flex; gap: 10px; margin-bottom: 16px; }
.vip-plan-tab { border: 1px solid #dcdfe6; background: #fff; color: #606266; border-radius: 999px; padding: 10px 20px; font: inherit; cursor: pointer; }
.vip-plan-tab.is-active { border-color: #c8960c; color: #8b5a00; background: #fff9e8; font-weight: 700; }
.vip-plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.vip-plan-card { position: relative; padding: 22px 20px; border: 1px solid #eadcb8; border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08); }
.vip-plan-card--svip { border-color: #d4b896; background: linear-gradient(180deg, #fffaf3 0%, #fff 100%); }
.vip-plan-tag { position: absolute; top: 14px; right: 14px; font-size: 0.75rem; padding: 4px 10px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, #f56c6c, #e6a23c); }
.vip-plan-badge { margin: 0 0 8px; font-size: 0.8125rem; color: #b8860b; font-weight: 600; }
.vip-plan-card h3 { margin: 0 0 10px; font-size: 1.0625rem; }
.vip-plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.vip-plan-price strong { font-size: 2rem; color: #f56c6c; line-height: 1; }
.vip-plan-original { color: #c0c4cc; font-size: 0.9375rem; }
.vip-plan-benefits { margin: 0 0 18px; padding-left: 1.1rem; color: #606266; font-size: 0.875rem; line-height: 1.8; }
.vip-plan-buy { width: 100%; background: linear-gradient(135deg, #d4af37, #b8860b) !important; border: none !important; }
.vip-plan-card--svip .vip-plan-buy { background: linear-gradient(135deg, #8b4513, #5c2e0b) !important; }
.vip-order-list { display: grid; gap: 12px; }
.vip-order-card { border: 1px solid #ebeef5; border-radius: 10px; padding: 16px; }
.vip-order-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.vip-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 16px; font-size: 0.875rem; color: #909399; }
.vip-breadcrumb a { color: #606266; text-decoration: none; }
.vip-breadcrumb-sep { color: #dcdfe6; }
.vip-order-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.account-vip-card { padding: 0; overflow: hidden; border: none; background: linear-gradient(135deg, #1a1208 0%, #5c4018 100%); color: #fff; }
@media (max-width: 768px) {
  .account-hero { padding: 18px 16px 16px; }
  .account-hero-avatar { width: 56px; height: 56px; font-size: 1.25rem; }
  .account-hero-name { font-size: 1.125rem; }
  .account-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-stat:nth-child(2) { border-right: none; }
  .account-stat:nth-child(1), .account-stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .account-shortcuts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .account-order-status { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
  .account-order-status-label { font-size: 0.6875rem; }
  .account-grid-2 { grid-template-columns: 1fr; }
  .account-hero-top { flex-direction: column; }
  .account-hero-vip-entry { flex-direction: row; align-self: auto; width: auto; max-width: 100%; justify-content: center; }
  .account-panel { padding: 16px; }
}
.vip-nav-link { color: #d4af37; font-weight: 600; text-decoration: none; }
.vip-nav-link:hover { color: #f7e08a; }
@media (max-width: 768px) {
  .vip-hero-inner { padding: 20px 18px 0; }
  .vip-member-card { border-radius: 14px 14px 0 0; padding: 18px; }
  .vip-member-card-right { max-width: none; }
}

/* 个人中心图标尺寸兜底（Aurora 等主题 flex 布局下防止 SVG 被撑满） */
.au-container--narrow > .account-page-shell { max-width: none; padding-left: 0; padding-right: 0; }
.account-page-shell svg { max-width: none; }
.account-page-shell .account-shortcut-icon svg { width: 20px !important; height: 20px !important; max-width: 20px; max-height: 20px; }
.account-page-shell .account-order-status-icon svg { width: 18px !important; height: 18px !important; max-width: 18px; max-height: 18px; }
.account-page-shell .account-hero-vip-icon,
.account-page-shell .account-hero-vip-entry svg { width: 20px !important; height: 20px !important; max-width: 20px; max-height: 20px; }
