/* ============ 国风测算H5样式 ============ */
:root {
  --primary: #8B0000;
  --primary-light: #B22222;
  --gold: #D4AF37;
  --gold-light: #F0D78C;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --cream: #FDF5E6;
  --paper: #F5E6C8;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --border: #E8D5B0;
  --shadow: 0 4px 20px rgba(139, 0, 0, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "STSong", "SimSun", serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* 背景纹理 */
.bg-pattern {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at top, #2d1b1b 0%, #1a1a2e 50%, #0f0f1a 100%);
  z-index: -2;
}
.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 40%);
}

/* ============ 首页 ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  position: relative;
}

.hero-decoration {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(139,0,0,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.logo-section {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.logo-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  position: relative;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.7); }
}

.logo-circle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.5;
}

.logo-text {
  font-size: 42px;
  color: var(--primary);
  font-weight: bold;
  font-family: "STSong", "SimSun", serif;
}

.site-title {
  font-size: 32px;
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 8px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.site-subtitle {
  font-size: 14px;
  color: var(--gold-light);
  opacity: 0.8;
  letter-spacing: 4px;
}

/* 分隔装饰 */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  width: 100%;
  max-width: 300px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider span {
  padding: 0 15px;
  color: var(--gold);
  font-size: 18px;
}

/* 功能卡片 */
.features {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.feature-card {
  background: linear-gradient(135deg, rgba(253, 245, 230, 0.95) 0%, rgba(245, 230, 200, 0.9) 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}
.feature-card:active { transform: scale(0.98); }

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-info h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
}
.feature-info p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* 开始按钮 */
.btn-start {
  width: 100%;
  max-width: 320px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 28px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 4px;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-start:active { transform: scale(0.97); }
.btn-start::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { to { left: 100%; } }

/* 用户评价 */
.testimonials {
  width: 100%;
  max-width: 400px;
  margin-top: 30px;
}
.testimonials h3 {
  text-align: center;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.testimonial-item {
  background: rgba(253, 245, 230, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 10px;
}
.testimonial-item .user {
  color: var(--gold-light);
  font-size: 13px;
  margin-bottom: 5px;
}
.testimonial-item .text {
  color: rgba(253, 245, 230, 0.7);
  font-size: 12px;
  line-height: 1.6;
}

/* 底部免责 */
.footer-disclaimer {
  text-align: center;
  color: rgba(253, 245, 230, 0.4);
  font-size: 11px;
  padding: 20px;
  line-height: 1.6;
  max-width: 400px;
}

/* ============ 表单页 ============ */
.form-page {
  min-height: 100vh;
  padding: 20px;
}

.form-header {
  text-align: center;
  padding: 20px 0 30px;
}
.form-header h1 {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.form-header p {
  color: var(--gold-light);
  opacity: 0.7;
  font-size: 13px;
}

.form-card {
  background: linear-gradient(135deg, rgba(253, 245, 230, 0.97) 0%, rgba(245, 230, 200, 0.95) 100%);
  border-radius: 20px;
  padding: 25px 20px;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.form-group label .required { color: #e74c3c; }

.form-input, .form-select {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 15px;
  font-size: 15px;
  background: rgba(255,255,255,0.7);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-input:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 10px;
}
.form-row .form-group { flex: 1; }

.gender-selector {
  display: flex;
  gap: 10px;
}
.gender-option {
  flex: 1;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.gender-option.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--gold-light);
}

.btn-submit {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 26px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { opacity: 0.6; }

.form-tips {
  margin-top: 15px;
  padding: 12px;
  background: rgba(139, 0, 0, 0.05);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============ 结果页 ============ */
.result-page {
  min-height: 100vh;
  padding: 20px;
  padding-bottom: 100px;
}

.result-header {
  text-align: center;
  padding: 15px 0 20px;
}
.result-header h1 {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.bazi-card {
  background: linear-gradient(135deg, rgba(253, 245, 230, 0.97) 0%, rgba(245, 230, 200, 0.95) 100%);
  border-radius: 16px;
  padding: 20px;
  max-width: 420px;
  margin: 0 auto 15px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.bazi-title {
  text-align: center;
  font-size: 16px;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* 四柱展示 */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}
.pillar {
  text-align: center;
  background: rgba(139, 0, 0, 0.05);
  border-radius: 10px;
  padding: 10px 5px;
  border: 1px solid rgba(139, 0, 0, 0.1);
}
.pillar-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pillar-gan {
  font-size: 24px;
  color: var(--primary);
  font-weight: bold;
  line-height: 1.2;
}
.pillar-zhi {
  font-size: 24px;
  color: var(--dark);
  font-weight: bold;
  line-height: 1.2;
  margin-top: 2px;
}
.pillar-shishen {
  font-size: 10px;
  color: var(--gold);
  margin-top: 4px;
  background: var(--primary);
  border-radius: 4px;
  padding: 1px 4px;
  display: inline-block;
}
.pillar-nayin {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 4px;
}

/* 基本信息 */
.basic-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
}
.basic-info-item {
  display: flex;
  gap: 5px;
}
.basic-info-item .label { color: var(--text-muted); }
.basic-info-item .value { color: var(--text); font-weight: 500; }

/* 五行统计 */
.wuxing-bar {
  margin-top: 15px;
}
.wuxing-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
}
.wuxing-name {
  width: 30px;
  font-weight: bold;
}
.wuxing-track {
  flex: 1;
  height: 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 6px;
  overflow: hidden;
  margin: 0 10px;
}
.wuxing-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s;
}
.wuxing-percent {
  width: 40px;
  text-align: right;
  color: var(--text-light);
}

.wx-金 { background: linear-gradient(90deg, #C0C0C0, #FFD700); }
.wx-木 { background: linear-gradient(90deg, #228B22, #32CD32); }
.wx-水 { background: linear-gradient(90deg, #1E90FF, #00BFFF); }
.wx-火 { background: linear-gradient(90deg, #FF4500, #FF6347); }
.wx-土 { background: linear-gradient(90deg, #D2691E, #DEB887); }

/* 付费解锁区域 */
.paywall {
  max-width: 420px;
  margin: 20px auto;
  background: linear-gradient(135deg, rgba(253, 245, 230, 0.97) 0%, rgba(245, 230, 200, 0.95) 100%);
  border-radius: 16px;
  padding: 25px 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  text-align: center;
}

.paywall h2 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}
.paywall .price {
  font-size: 36px;
  color: var(--primary);
  font-weight: bold;
  margin: 15px 0;
}
.paywall .price small {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.paywall-features {
  text-align: left;
  margin: 20px 0;
}
.paywall-features li {
  list-style: none;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.paywall-features li::before {
  content: '✓';
  color: #27ae60;
  font-weight: bold;
}

.btn-pay {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary);
  border: none;
  border-radius: 26px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.btn-pay:active { transform: scale(0.98); }

/* 报告内容（付费后显示） */
.report-section {
  max-width: 420px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgba(253, 245, 230, 0.97) 0%, rgba(245, 230, 200, 0.95) 100%);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}
.report-section h3 {
  color: var(--primary);
  font-size: 17px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.report-section h3::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}
.report-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 10px;
}
.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.report-tag {
  padding: 4px 12px;
  background: rgba(139, 0, 0, 0.1);
  color: var(--primary);
  border-radius: 12px;
  font-size: 12px;
}

.dayun-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.dayun-item {
  text-align: center;
  padding: 8px 4px;
  background: rgba(139, 0, 0, 0.05);
  border-radius: 8px;
  font-size: 11px;
}
.dayun-age { color: var(--text-muted); font-size: 10px; }
.dayun-gz { color: var(--primary); font-weight: bold; font-size: 14px; }

/* 加载动画 */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  color: var(--gold);
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* 返回按钮 */
.back-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(253, 245, 230, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 支付弹窗 */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  background: var(--cream);
  width: 100%;
  max-width: 500px;
  border-radius: 20px 20px 0 0;
  padding: 25px 20px 30px;
  animation: slideUp 0.3s;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-title {
  text-align: center;
  font-size: 18px;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 20px;
}
.pay-method {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.pay-method.active {
  border-color: var(--primary);
  background: rgba(139, 0, 0, 0.05);
}
.pay-method .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 12px;
}
.pay-method .name { font-size: 15px; color: var(--text); }
.pay-method .check {
  margin-left: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.pay-method.active .check {
  background: var(--primary);
  border-color: var(--primary);
  position: relative;
}
.pay-method.active .check::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ============ 新增：国风动效与组件 ============ */

/* 页面淡入动画 */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

/* 太极旋转 */
@keyframes taijiRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.taiji-spin { animation: taijiRotate 20s linear infinite; }

/* 祥云浮动 */
@keyframes cloudFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(10px) translateY(-5px); }
}
.cloud-float { animation: cloudFloat 6s ease-in-out infinite; }

/* 按钮悬浮效果 */
.btn-hover {
  transition: all 0.3s ease;
}
.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}
.btn-hover:active {
  transform: translateY(0);
}

/* 卡片悬浮 */
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.2);
}

/* 国风边框装饰 */
.guofeng-border {
  position: relative;
  border: 1px solid var(--gold);
}
.guofeng-border::before,
.guofeng-border::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
}
.guofeng-border::before {
  top: -2px; left: -2px;
  border-right: none;
  border-bottom: none;
}
.guofeng-border::after {
  bottom: -2px; right: -2px;
  border-left: none;
  border-top: none;
}

/* 底部导航栏 */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  justify-content: space-around;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.3s;
}
.bottom-nav-item.active {
  color: var(--gold);
}
.bottom-nav-item .icon {
  font-size: 20px;
}

/* 客服悬浮按钮 */
.floating-service {
  position: fixed;
  right: 15px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
  z-index: 99;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6); }
}

/* 分享弹窗 */
.share-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  z-index: 1000;
}
.share-content {
  background: var(--cream);
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 25px 20px 30px;
  animation: slideUp 0.3s;
}
.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.share-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.share-label {
  font-size: 12px;
  color: var(--text);
}

/* 标签页 */
.tabs {
  display: flex;
  background: rgba(139, 0, 0, 0.05);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 15px;
}
.tab-item {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: var(--text-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-item.active {
  background: var(--primary);
  color: var(--gold-light);
  font-weight: bold;
}

/* 报告章节折叠 */
.report-section {
  overflow: hidden;
}
.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.report-header h3 {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.report-arrow {
  transition: transform 0.3s;
  color: var(--gold);
}
.report-section.collapsed .report-arrow {
  transform: rotate(-90deg);
}
.report-section.collapsed .report-body {
  display: none;
}

/* 数字滚动动画 */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 水印 */
.watermark {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 60px;
  color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .icon {
  font-size: 60px;
  margin-bottom: 15px;
  opacity: 0.5;
}
.empty-state p {
  font-size: 14px;
}

/* 加载骨架屏 */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 合规页链接 */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  font-size: 12px;
}
.footer-links a {
  color: rgba(253, 245, 230, 0.5);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--gold);
}

/* 步骤指示器 */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: bold;
}
.step.active .step-num {
  background: var(--primary);
  border-color: var(--gold);
  color: var(--gold-light);
}
.step.done .step-num {
  background: #52c41a;
  border-color: #52c41a;
  color: #fff;
}
.step-label {
  font-size: 11px;
  color: var(--text-muted);
}
.step.active .step-label {
  color: var(--primary);
  font-weight: bold;
}

/* 五星评分 */
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

/* 价格标签 */
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

/* 热门标签 */
.hot-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  margin-left: 5px;
}

/* 弹窗遮罩增强 */
.modal-overlay {
  backdrop-filter: blur(5px);
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}
