/* =============================================
   搜同网 - 主样式文件
   品牌色: 玫瑰粉 #FF2D78 | 深玫 #C41A5A | 紫调 #7B2FBE
   背景色: 深夜紫 #0F0520 | 卡片深 #1A0A35
   ============================================= */

:root {
  --brand-pink: #FF2D78;
  --brand-rose: #C41A5A;
  --brand-purple: #7B2FBE;
  --brand-light: #FF6FA8;
  --bg-dark: #0F0520;
  --bg-card: #1A0A35;
  --bg-card2: #22103F;
  --text-white: #FFFFFF;
  --text-gray: #C0A8D0;
  --text-muted: #8A6FA0;
  --border-color: rgba(255,45,120,0.2);
  --gradient-main: linear-gradient(135deg, #FF2D78 0%, #7B2FBE 100%);
  --gradient-card: linear-gradient(180deg, #1A0A35 0%, #0F0520 100%);
  --shadow-pink: 0 4px 24px rgba(255,45,120,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-pink); border-radius: 3px; }

/* ===== 通用容器 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.sko396 { text-align: center; margin-bottom: 48px; }
.4yoj4 {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tk8q3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tk8q3 span { color: var(--brand-pink); }
.0lhi8 { font-size: 15px; color: var(--text-gray); max-width: 560px; margin: 0 auto; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,45,120,0.4); }
.btn-outline {
  background: transparent;
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.btn-outline:hover { background: var(--brand-pink); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== 顶部导航 ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,5,32,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo img.logo-img {
  height: 36px;
  width: auto;
}
.site-logo .logo-favicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-slogan {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--brand-pink);
  background: rgba(255,45,120,0.1);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-login:hover { opacity: 0.9; transform: translateY(-1px); }

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

/* ===== 搜索栏 ===== */
.search-bar-wrap {
  background: rgba(26,10,53,0.8);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0 16px;
  gap: 8px;
  transition: var(--transition);
}
.search-input-wrap:focus-within {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.15);
}
.search-icon { color: var(--text-muted); font-size: 16px; }
#searchInput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 14px;
  padding: 10px 0;
}
#searchInput::placeholder { color: var(--text-muted); }
.search-btn {
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover { opacity: 0.9; }
.search-hot-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.search-hot-tags span { font-size: 12px; color: var(--text-muted); }
.hot-tag {
  font-size: 12px;
  color: var(--text-gray);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
}
.hot-tag:hover { color: var(--brand-pink); background: rgba(255,45,120,0.1); }

/* ===== 移动端菜单 ===== */
#mobileMenu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,5,32,0.98);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
}
#mobileMenu.open { display: block; }
#mobileMenu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-color);
}
#mobileMenu a:hover { color: var(--brand-pink); background: rgba(255,45,120,0.08); }

/* ===== Hero 首屏 ===== */
.fausp248 {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.b2f6v {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.ry5gkyb {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,5,32,0.95) 40%, transparent 100%);
}
.y1t93 {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.qnj5vu36 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,120,0.15);
  border: 1px solid rgba(255,45,120,0.4);
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.qnj5vu36::before { content: "●"; color: var(--brand-pink); font-size: 8px; }
.hero-h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-h1 .z8vs02l { color: var(--brand-pink); }
.hero-h1 .ib8wjf6i { display: block; font-size: 0.6em; color: var(--text-gray); font-weight: 400; margin-top: 8px; }
.dvis48vd {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.ca5q3 { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.cgps9ap { display: flex; gap: 28px; }
.uslb5 { text-align: center; }
.uslb5 .5utrs6 {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.uslb5 .label { font-size: 12px; color: var(--text-muted); }

/* ===== 视频卡片 ===== */
.y1hoe7b5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-pink);
  box-shadow: var(--shadow-pink);
}
.2w0saiw {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card2);
}
.2w0saiw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .2w0saiw img { transform: scale(1.06); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.4);
  transition: var(--transition);
}
.video-card:hover .play-btn { opacity: 1; }
.play-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,45,120,0.5);
}
.play-icon::after {
  content: "";
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.qqs4tf5 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
}
.iowbh34 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.6s9vn5dz { padding: 14px; }
.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hbi4i4s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.tdy4jbs { display: flex; align-items: center; gap: 5px; }
.cjrq18n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.u94pch { display: flex; gap: 10px; }
.u94pch span { display: flex; align-items: center; gap: 3px; }

/* ===== 分类标签 ===== */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cat-tab {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: var(--text-gray);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: rgba(255,45,120,0.15);
  color: var(--brand-pink);
  border-color: rgba(255,45,120,0.4);
}

/* ===== 专家卡片 ===== */
.1duma6o {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.0ibtjax8 {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.0ibtjax8:hover {
  border-color: var(--brand-pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.kh9yy8 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 3px solid var(--brand-pink);
  overflow: hidden;
  object-fit: cover;
}
.00im6 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.3slv7 { font-size: 13px; color: var(--brand-light); margin-bottom: 10px; }
.yxxjy5 { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; line-height: 1.5; }
.scv0if { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.kt10pb {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(123,47,190,0.2);
  color: #C084FC;
  border: 1px solid rgba(123,47,190,0.3);
}
.582nzis { display: flex; gap: 8px; justify-content: center; }

/* ===== 评价卡片 ===== */
.3n52jl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gg1sn5t6 {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.gg1sn5t6:hover { border-color: rgba(255,45,120,0.4); }
.d8pc36 { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.3q75dz {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.z650e1 { flex: 1; }
.y43s8 { font-size: 14px; font-weight: 600; }
.p0f39i { font-size: 12px; color: var(--text-muted); }
.0ju0p8u0 { color: #FFD700; font-size: 13px; letter-spacing: 1px; }
.1rdszsy { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.loaahk0 {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,45,120,0.1);
  color: var(--brand-light);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(255,45,120,0.4); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  gap: 12px;
}
.faq-q:hover { color: var(--brand-pink); }
.faq-q .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,45,120,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--brand-pink);
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand-pink); color: #fff; }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== 合作品牌 ===== */
.bn6dvr {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.io9xkg {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition);
}
.io9xkg:hover { border-color: var(--brand-pink); color: var(--brand-pink); }

/* ===== AI 功能区 ===== */
.5sbabld {
  background: linear-gradient(135deg, rgba(123,47,190,0.15) 0%, rgba(255,45,120,0.1) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(123,47,190,0.3);
}
.f14v566c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.v09hx7p { border-radius: var(--radius-md); overflow: hidden; }
.v09hx7p img { width: 100%; border-radius: var(--radius-md); }
.93k17za { display: flex; flex-direction: column; gap: 16px; }
.0xupjhe3 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(123,47,190,0.2);
  transition: var(--transition);
}
.0xupjhe3:hover { border-color: var(--brand-purple); background: rgba(123,47,190,0.1); }
.80fl6md9 {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.7dqkbk { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.rg91x8 { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* ===== How-To 加入指南 ===== */
.hn550i8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.p9cnbr01 {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.p9cnbr01:hover { border-color: var(--brand-pink); transform: translateY(-3px); }
.vbmluey4 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
}
.b3pb9w0r { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.7ewh6dp { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* ===== 联系我们 ===== */
.7uhb7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.z77gyv {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
}
.z77gyv h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--brand-pink); }
.v7dqfy2f { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.z4bduj { font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.tz9e3 { font-size: 12px; color: var(--text-muted); }
.8tr03kov { font-size: 14px; color: var(--text-white); }
.9b12rm2q { display: flex; gap: 20px; }
.xiqle9 { text-align: center; }
.xiqle9 img { width: 110px; height: 110px; border-radius: var(--radius-sm); border: 2px solid var(--border-color); }
.xiqle9 p { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ===== 社交分享 ===== */
.133vfuy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.luzqon39 { font-size: 13px; color: var(--text-muted); }
.3ptt5do {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.3ptt5do:hover { border-color: var(--brand-pink); color: var(--brand-pink); background: rgba(255,45,120,0.08); }

/* ===== 页脚 ===== */
#9a9kps1 {
  background: rgba(10,3,22,0.98);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
}
.4ybkg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.667tt .logo-name { font-size: 22px; margin-bottom: 10px; }
.aqqt0 { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.gw3utxe2 h4 { font-size: 14px; font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
.gw3utxe2 a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
}
.gw3utxe2 a:hover { color: var(--brand-pink); }
.uls69x {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.1985ea { font-size: 12px; color: var(--text-muted); }
.1985ea a { color: var(--brand-light); }
.3cnir { display: flex; gap: 16px; }
.3cnir a { font-size: 12px; color: var(--text-muted); }
.3cnir a:hover { color: var(--brand-pink); }
.ka5m6 { font-size: 12px; color: var(--text-muted); }

/* ===== 面包屑 ===== */
.j435e {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0;
}
.j435e a { color: var(--text-muted); }
.j435e a:hover { color: var(--brand-pink); }
.j435e .4ut3sv { color: var(--border-color); }
.j435e .current { color: var(--text-white); }

/* ===== 排行榜 ===== */
.9dn42fw2 { display: flex; flex-direction: column; gap: 10px; }
.f9l53wgt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.f9l53wgt:hover { border-color: rgba(255,45,120,0.3); }
.j65lxfr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.j65lxfr.top1 { background: #FFD700; color: #333; }
.j65lxfr.top2 { background: #C0C0C0; color: #333; }
.j65lxfr.top3 { background: #CD7F32; color: #fff; }
.j65lxfr.other { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.rank-title { flex: 1; font-size: 14px; font-weight: 500; }
.v0wyu21 { font-size: 12px; color: var(--text-muted); }

/* ===== 页面横幅 ===== */
.27xxw {
  background: linear-gradient(135deg, #1A0A35 0%, #0F0520 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
}
.27xxw h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 8px; }
.27xxw h1 span { color: var(--brand-pink); }
.27xxw p { font-size: 15px; color: var(--text-gray); }

/* ===== 加载更多 ===== */
.68pe3iyo { text-align: center; margin-top: 36px; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .4ybkg { grid-template-columns: 1fr 1fr; }
  .f14v566c { grid-template-columns: 1fr; }
  .7uhb7 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .btn-login { display: none; }
  .hamburger { display: flex; }
  .fausp248 { min-height: 420px; }
  .cgps9ap { gap: 16px; }
  .section { padding: 48px 0; }
  .5sbabld { padding: 28px 20px; }
  .4ybkg { grid-template-columns: 1fr; }
  .uls69x { flex-direction: column; align-items: flex-start; }
  .y1hoe7b5 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .1duma6o { grid-template-columns: 1fr 1fr; }
  .3n52jl { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 28px; }
  .ca5q3 { flex-direction: column; }
  .1duma6o { grid-template-columns: 1fr; }
  .y1hoe7b5 { grid-template-columns: 1fr; }
  .hn550i8 { grid-template-columns: 1fr; }
  .9b12rm2q { justify-content: center; }
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.rwyv19py { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,45,120,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,45,120,0); }
}
.pulse { animation: pulse-pink 2s infinite; }

/* ===== 懒加载占位 ===== */
img[data-src] { background: var(--bg-card2); }
