/* =============================================
   茄子视频 - 主样式文件
   rwivrfth.cn
   ============================================= */

/* CSS变量 - 原创配色方案 */
:root {
  --primary: #1a1f3a;
  --primary-light: #252d5a;
  --accent: #e8431a;
  --accent2: #ff6b35;
  --teal: #00c9b1;
  --purple: #7c3aed;
  --gold: #f59e0b;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-white: #f9fafb;
  --bg: #f8f7ff;
  --bg-dark: #0f1225;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(26,31,58,0.10);
  --shadow-lg: 0 8px 40px rgba(26,31,58,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'PingFang SC','Microsoft YaHei','Noto Sans SC',sans-serif;
}

/* 重置与基础 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== 顶部公告栏 ===== */
.vdd1l {
  background: linear-gradient(90deg, var(--primary) 0%, var(--purple) 100%);
  color: #fff;
  text-align: center;
  padding: 7px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.vdd1l a { color: var(--gold); font-weight: 600; }

/* ===== 头部导航 ===== */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,31,58,0.07);
}
.aqdwj {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.dolzwta4 {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 2px 12px rgba(232,67,26,0.35);
}
.dh85whw {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.dh85whw .brand { font-size: 1.22rem; font-weight: 800; color: var(--primary); letter-spacing: 0.02em; }
.dh85whw .slogan { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.06em; }

/* 导航菜单 */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--accent);
  color: #fff;
}

/* 搜索框 */
.header-search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 6px 14px;
  gap: 8px;
  min-width: 200px;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--accent); }
.header-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  color: var(--text);
  width: 100%;
  font-family: var(--font-main);
}
.header-search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
}
.header-search button:hover { color: var(--accent); }

/* 汉堡菜单 */
.mchhmjgr {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mchhmjgr span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== 导航下方搜索栏（移动端） ===== */
.fizhj5 {
  background: var(--primary);
  padding: 12px 24px;
  display: none;
}
.fizhj5 .w60mc {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.fizhj5 input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-main);
}
.fizhj5 input::placeholder { color: rgba(255,255,255,0.5); }
.fizhj5 button {
  background: var(--accent);
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: background var(--transition);
}
.fizhj5 button:hover { background: var(--accent2); }

/* ===== 英雄区 ===== */
.w99zbq1o {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.dn1nkpac {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.w99zbq1o:hover .dn1nkpac { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,31,58,0.88) 0%, rgba(124,58,237,0.35) 60%, rgba(0,201,177,0.18) 100%);
}
.fix7r {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,67,26,0.2);
  border: 1px solid rgba(232,67,26,0.5);
  color: #ff8c6b;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.w99zbq1o h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.w99zbq1o h1 .highlight { color: var(--accent2); }
.w99zbq1o p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-main);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232,67,26,0.4);
}
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,67,26,0.5); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-teal {
  background: var(--teal);
  color: var(--primary);
  border-color: var(--teal);
}
.btn-teal:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* 英雄统计 */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.gc0nt { text-align: left; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ===== 通用区块 ===== */
.section { padding: 72px 24px; }
.j8q3ei9 { max-width: 1280px; margin: 0 auto; }
.mcnmjam { text-align: center; margin-bottom: 48px; }
.w9vciw {
  display: inline-block;
  background: rgba(232,67,26,0.1);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  border: 1px solid rgba(232,67,26,0.25);
}
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 12px;
}
.vn17d { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.bg-dark-section { background: var(--bg-dark); }
.bg-dark-section h2, .bg-dark-section .w9vciw { color: #fff; }
.bg-dark-section .w9vciw { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.bg-dark-section .vn17d { color: rgba(255,255,255,0.65); }
.i83uf { background: #f3f0ff; }

/* ===== 动漫视频卡片 ===== */
.odrcdi46 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.cyun6vhz {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}
.cyun6vhz:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.chtep {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1f3a;
}
.chtep img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  loading: lazy;
}
.cyun6vhz:hover .chtep img { transform: scale(1.08); }
.whq5b2s {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  opacity: 0;
}
.cyun6vhz:hover .whq5b2s { opacity: 1; background: rgba(0,0,0,0.45); }
.s61ykp {
  width: 56px;
  height: 56px;
  background: rgba(232,67,26,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--transition);
  box-shadow: 0 4px 20px rgba(232,67,26,0.5);
}
.cyun6vhz:hover .s61ykp { transform: scale(1); }
.s61ykp::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.l64t0zch {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.l64t0zch.hot { background: var(--gold); color: var(--primary); }
.l64t0zch.new { background: var(--teal); color: var(--primary); }
.mmqc9 { padding: 14px 14px 16px; }
.m1iq37 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.x3pkn7 { display: flex; gap: 12px; font-size: 0.75rem; color: var(--text-light); }
.x3pkn7 span { display: flex; align-items: center; gap: 4px; }
.rlkvw4g { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  background: rgba(124,58,237,0.1);
  color: var(--purple);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* ===== 功能模块卡片 ===== */
.nxgkzoc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.o9hdf {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.o9hdf::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  opacity: 0;
  transition: opacity var(--transition);
}
.o9hdf:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.15); }
.o9hdf:hover::before { opacity: 1; }
.ntxzr {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.s7za2l { background: rgba(232,67,26,0.12); }
.btibyio6 { background: rgba(124,58,237,0.12); }
.qhksy { background: rgba(0,201,177,0.12); }
.d69uk4 { background: rgba(245,158,11,0.12); }
.o9hdf h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.o9hdf p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== 专家展示 ===== */
.xfgpb04 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.pdi754 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.pdi754:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.expert-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.jhtd7br { padding: 20px; }
.expert-name { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.expert-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.expert-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.expert-awards { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.award-badge {
  background: rgba(245,158,11,0.1);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.expert-btns { display: flex; gap: 8px; }
.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
  border-radius: 7px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.btn-sm:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-sm.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-sm.primary:hover { background: var(--accent2); border-color: var(--accent2); }

/* ===== 评价区 ===== */
.za48tjpv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ugu3cs7 {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}
.ugu3cs7:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hcipfil { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.a88nrwcf { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.reviewer-info { font-size: 0.75rem; color: var(--text-light); }

/* ===== FAQ ===== */
.iju2r { max-width: 800px; margin: 0 auto; }
.ojmcq8 {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.rxt9fs {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  user-select: none;
}
.rxt9fs:hover { background: rgba(232,67,26,0.04); }
.rxt9fs.active { color: var(--accent); background: rgba(232,67,26,0.05); }
.faq-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.rxt9fs.active .faq-arrow { transform: rotate(180deg); background: var(--accent); color: #fff; }
.snmccf {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
.snmccf.open { max-height: 300px; padding: 0 24px 18px; }

/* ===== 合作品牌 ===== */
.wntam23 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.d72kok {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all var(--transition);
  min-width: 120px;
  text-align: center;
}
.d72kok:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== 联系区 ===== */
.xfp6b6e8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.f5mjqk {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.f5mjqk:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.contact-icon { font-size: 2.2rem; margin-bottom: 12px; }
.f5mjqk h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.f5mjqk p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.f5mjqk a { color: var(--teal); font-weight: 600; }

/* ===== 二维码区 ===== */
.qcefenyp {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.rio9q8z8 { text-align: center; }
.xvvqz {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  overflow: hidden;
}
.xvvqz svg { width: 100px; height: 100px; }
.h65tw4 { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ===== 社交分享 ===== */
.y4lk4 { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.rirqg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-main);
  text-decoration: none;
}
.share-wechat { background: #07c160; color: #fff; }
.share-weibo { background: #e6162d; color: #fff; }
.share-douyin { background: #010101; color: #fff; }
.share-bilibili { background: #00a1d6; color: #fff; }
.rirqg:hover { filter: brightness(1.15); transform: translateY(-2px); }

/* ===== 底部 ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 24px 28px;
}
.fz3gte6q {
  max-width: 1280px;
  margin: 0 auto;
}
.rzyeyxal {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.n1xwuk .dh85whw .brand { color: #fff; font-size: 1.3rem; }
.n1xwuk p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.8; }
.ctovs h5 { font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.ctovs ul li { margin-bottom: 8px; }
.ctovs ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.ctovs ul li a:hover { color: var(--accent2); }
.gbefid2s {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.gbefid2s a { color: rgba(255,255,255,0.55); }
.gbefid2s a:hover { color: var(--accent2); }
.m41pk { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ===== 面包屑 ===== */
.yqb9pqw6 {
  background: var(--bg);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.yqb9pqw6 a { color: var(--text-light); }
.yqb9pqw6 a:hover { color: var(--accent); }
.yqb9pqw6 span { color: var(--text-light); }
.yqb9pqw6 .current { color: var(--text); font-weight: 600; }

/* ===== 内页英雄 ===== */
.xthpvq0w {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--purple) 100%);
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}
.xthpvq0w h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.xthpvq0w p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

/* ===== 图片懒加载 ===== */
img[data-src] { opacity: 0; transition: opacity 0.4s; }
img.loaded { opacity: 1; }

/* ===== 滚动动画 ===== */
.qwd34 { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.qwd34.visible { opacity: 1; transform: translateY(0); }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .rzyeyxal { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: var(--shadow-lg); z-index: 999; border-top: 1px solid var(--border); }
  .mchhmjgr { display: flex; }
  .header-search { display: none; }
  .fizhj5 { display: block; }
  .w99zbq1o { min-height: 420px; }
  .hero-stats { gap: 20px; }
  .rzyeyxal { grid-template-columns: 1fr 1fr; gap: 24px; }
  .odrcdi46 { grid-template-columns: repeat(2, 1fr); }
  .nxgkzoc { grid-template-columns: 1fr; }
  .xfgpb04 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .rzyeyxal { grid-template-columns: 1fr; }
  .odrcdi46 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .xfgpb04 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ===== 弹幕样式 ===== */
.danmaku-wrap {
  position: relative;
  overflow: hidden;
  height: 48px;
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
  margin-bottom: 20px;
}
.danmaku-item {
  position: absolute;
  white-space: nowrap;
  font-size: 0.88rem;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  animation: danmaku-scroll linear infinite;
}
@keyframes danmaku-scroll {
  from { left: 100%; }
  to { left: -100%; }
}

/* ===== 直播卡片 ===== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e6162d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== 加入社区步骤 ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: steps;
}
.t84xtg {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  counter-increment: steps;
}
.t84xtg::before {
  content: counter(steps);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(232,67,26,0.4);
}
.step-icon { font-size: 2rem; margin: 12px 0 10px; }
.t84xtg h4 { font-size: 0.92rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.t84xtg p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== 图片展示区 ===== */
.hy1p5o {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.e2h1h {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
}
.e2h1h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.e2h1h:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,31,58,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
}
.e2h1h:hover .gallery-overlay { background: rgba(26,31,58,0.5); opacity: 1; }

/* ===== 通知/提示条 ===== */
.alert-bar {
  background: linear-gradient(90deg, rgba(232,67,26,0.1), rgba(124,58,237,0.1));
  border: 1px solid rgba(232,67,26,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text);
}
