/* ===================================
   丝瓜视频 - 主样式文件
   hdnbx23.cn | 原创设计
   =================================== */

/* --- CSS 变量定义 --- */
:root {
  --primary: #FF4B7D;
  --primary-dark: #E0325F;
  --secondary: #FF7B4B;
  --accent: #FF9F1C;
  --gradient: linear-gradient(135deg, #FF4B7D 0%, #FF7B4B 50%, #FF9F1C 100%);
  --gradient-soft: linear-gradient(135deg, #fff0f3 0%, #fff5f0 100%);
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --text: #2d2d2d;
  --text-light: #666;
  --text-muted: #999;
  --border: #eee;
  --bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(255,75,125,0.12);
  --shadow-hover: 0 8px 32px rgba(255,75,125,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* --- 基础重置 --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  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; }
button { cursor: pointer; border: none; outline: none; }

/* --- 通用工具类 --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--dark); color: var(--white); }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,75,125,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,75,125,0.45); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.0wig0g {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: var(--gradient);
  color: var(--white);
}
.jzcxl {
  background: #ff3b30;
  color: white;
  animation: pulse-badge 1.5s infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* --- 章节标题 --- */
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-header .label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,75,125,0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===================================
   顶部公告条
   =================================== */
.7pawug {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
}
.7pawug a { color: var(--white); text-decoration: underline; }

/* ===================================
   导航栏
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,75,125,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.1phep4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img.2xx1yf2q {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
.36rcvkad {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--primary);
  background: rgba(255,75,125,0.08);
}
.59h0a3c {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  gap: 8px;
  min-width: 200px;
  transition: var(--transition);
}
.59h0a3c:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,75,125,0.1);
}
.59h0a3c input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--text);
}
.59h0a3c button {
  background: none;
  color: var(--text-muted);
  font-size: 16px;
  padding: 0;
  transition: var(--transition);
}
.59h0a3c button:hover { color: var(--primary); }
.9san2oo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.9san2oo .btn { padding: 8px 20px; font-size: 13px; }
.jed1uhx {
  display: none;
  background: none;
  font-size: 22px;
  color: var(--text);
  padding: 4px;
}

/* ===================================
   Hero 首屏
   =================================== */
.22h1cx {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.1jz9wq {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.zhfuc {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.5) 60%, transparent 100%);
}
.mhabeub {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--white);
  padding: 60px 0;
}
.mhabeub .0wig0g { margin-bottom: 20px; }
.mhabeub h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mhabeub h1 span { color: var(--accent); }
.mhabeub p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.8;
}
.d2cqgh { display: flex; gap: 14px; flex-wrap: wrap; }
.p5rmoj8y {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.rbxlb .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.rbxlb .label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===================================
   搜索区域
   =================================== */
.hvzdj2kd {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.ej7eyxf {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  transition: var(--transition);
}
.ej7eyxf:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,75,125,0.1);
}
.ej7eyxf input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--text);
}
.ej7eyxf .sr69bxs {
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.ej7eyxf .sr69bxs:hover { opacity: 0.9; transform: scale(1.02); }
.b269wg94 {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}
.b269wg94 span { font-size: 13px; color: var(--text-muted); }
.ggkb6 {
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(255,75,125,0.08);
  color: var(--primary);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.ggkb6:hover { background: var(--primary); color: var(--white); }

/* ===================================
   视频卡片
   =================================== */
.jz7w8d {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.k82b73 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.k82b73:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.jdjih {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.jdjih img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.k82b73:hover .jdjih img { transform: scale(1.06); }
.fxgoc7r {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: var(--transition);
  opacity: 0;
}
.k82b73:hover .fxgoc7r {
  opacity: 1;
  background: rgba(0,0,0,0.35);
}
.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
}
.k82b73:hover .play-icon { transform: scale(1); }
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--primary);
  margin-left: 4px;
}
.3hd2x {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.012cv {
  position: absolute;
  top: 10px;
  left: 10px;
}
.aysac { padding: 14px 16px; }
.aysac h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wrjf4ige {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.wrjf4ige span { display: flex; align-items: center; gap: 4px; }
.zcgoywh {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.zcgoywh img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.zcgoywh span { font-size: 13px; color: var(--text-light); }

/* ===================================
   特色模块卡片
   =================================== */
.iwm84 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.5ouaz2 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.5ouaz2:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.6vnkg {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.5ouaz2 h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.5ouaz2 p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===================================
   专家展示
   =================================== */
.pz8b7pi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.k49ybvs {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.k49ybvs:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.65nc0f {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid transparent;
  background: var(--gradient) border-box;
  outline: 3px solid transparent;
  box-shadow: 0 0 0 3px var(--primary);
}
.k49ybvs h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.k49ybvs .role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.k49ybvs p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.kc2mgx {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.umtjj {
  padding: 3px 10px;
  background: rgba(255,75,125,0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}
.awgpo { display: flex; gap: 8px; justify-content: center; }
.awgpo a {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  transition: var(--transition);
}
.awgpo a:hover { background: var(--primary); color: var(--white); }

/* ===================================
   用户评价
   =================================== */
.ysi0psze {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.dy3tc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.dy3tc::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 60px;
  color: rgba(255,75,125,0.1);
  font-family: serif;
  line-height: 1;
}
.dy3tc:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.rp9ayrr { color: #FFB800; font-size: 16px; margin-bottom: 12px; }
.dy3tc p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.eom2t {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nz6gxkk {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.pvx2n .name { font-size: 14px; font-weight: 600; color: var(--dark); }
.pvx2n .date { font-size: 12px; color: var(--text-muted); }

/* ===================================
   FAQ
   =================================== */
.qlt8w4 { max-width: 800px; margin: 0 auto; }
.4aqho {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.4aqho.active { border-color: var(--primary); }
.vluql {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.4aqho.active .vluql { color: var(--primary); background: rgba(255,75,125,0.04); }
.vluql .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.4aqho.active .vluql .icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.le8w5xtx {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.4aqho.active .le8w5xtx { display: block; }

/* ===================================
   合作品牌
   =================================== */
.1o4gedy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.s8fqth1 {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
  min-width: 120px;
  text-align: center;
}
.s8fqth1:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ===================================
   联系我们
   =================================== */
.8jf3c2az {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.9vj5b h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.i84e8lqt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.yx83f {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.1l8bh .label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.1l8bh .value { font-size: 15px; font-weight: 600; color: var(--dark); }
.y0oxpgnc {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ksxsri { text-align: center; }
.ksxsri img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  margin-bottom: 8px;
}
.ksxsri p { font-size: 13px; color: var(--text-light); }

/* ===================================
   社区功能区
   =================================== */
.odj7qxur {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.6mqdn3u {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.6mqdn3u::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.6mqdn3u:hover::before { transform: scaleX(1); }
.6mqdn3u:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.6mqdn3u .icon { font-size: 36px; margin-bottom: 16px; }
.6mqdn3u h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.6mqdn3u p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.6mqdn3u .7z1few { font-size: 22px; font-weight: 800; color: var(--primary); margin-top: 12px; }
.6mqdn3u .lvpd8c { font-size: 12px; color: var(--text-muted); }

/* ===================================
   AI赋能区域
   =================================== */
.1rec4 { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.mpt075d {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.xq7vo7ee {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  transition: var(--transition);
}
.xq7vo7ee:hover {
  background: rgba(255,75,125,0.15);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.xq7vo7ee .4bnti {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.xq7vo7ee h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.xq7vo7ee p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===================================
   How-To 加入社区
   =================================== */
.f3ccor9 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.ct18z23 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.ct18z23:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.t342mznu {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ct18z23 h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ct18z23 p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===================================
   分享按钮
   =================================== */
.pk2wzf {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pk2wzf span { font-size: 14px; color: var(--text-muted); }
.fnenvz {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.fnenvz:hover { transform: translateY(-2px); opacity: 0.9; }
.k1t2x { background: #07C160; color: white; }
.5wll6j { background: #E6162D; color: white; }
.tqoej { background: #010101; color: white; }
.utvy4w4l { background: #00A1D6; color: white; }

/* ===================================
   页脚
   =================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.b3rshwe {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.z47s4 .36rcvkad { font-size: 22px; font-weight: 800; }
.z47s4 p {
  font-size: 13px;
  line-height: 1.8;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.55);
}
.k6b5s4 h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.k6b5s4 ul li {
  margin-bottom: 10px;
}
.k6b5s4 ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.k6b5s4 ul li a:hover { color: var(--primary); }
.q09kme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}
.dnxw9 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.dnxw9 img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.mspn3 { display: flex; gap: 10px; }
.1bilcoc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.1bilcoc:hover { background: var(--primary); }

/* ===================================
   面包屑
   =================================== */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ===================================
   内页 Hero
   =================================== */
.iy436d {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}
.iy436d h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.iy436d p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ===================================
   标签云
   =================================== */
.yuj2by43 { display: flex; flex-wrap: wrap; gap: 8px; }
.cd77j50 {
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--bg);
  color: var(--text-light);
  font-size: 13px;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid var(--border);
}
.cd77j50:hover, .cd77j50.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===================================
   图片画廊
   =================================== */
.gczmi951 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.ulyvykvd {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ulyvykvd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ulyvykvd:hover img { transform: scale(1.08); }
.u8zaw5 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.ulyvykvd:hover .u8zaw5 { opacity: 1; }
.u8zaw5 p { color: white; font-size: 13px; font-weight: 600; }

/* ===================================
   响应式
   =================================== */
@media (max-width: 1024px) {
  .b3rshwe { grid-template-columns: 1fr 1fr; }
  .odj7qxur { grid-template-columns: 1fr 1fr; }
  .8jf3c2az { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .59h0a3c { display: none; }
  .jed1uhx { display: block; }
  .mhabeub h1 { font-size: 28px; }
  .p5rmoj8y { gap: 20px; }
  .b3rshwe { grid-template-columns: 1fr; gap: 28px; }
  .odj7qxur { grid-template-columns: 1fr; }
  .jz7w8d { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .8jf3c2az { grid-template-columns: 1fr; }
  .pz8b7pi { grid-template-columns: 1fr 1fr; }
  .q09kme { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .jz7w8d { grid-template-columns: 1fr; }
  .pz8b7pi { grid-template-columns: 1fr; }
  .d2cqgh { flex-direction: column; }
  .p5rmoj8y { flex-wrap: wrap; gap: 16px; }
  .iwm84 { grid-template-columns: 1fr 1fr; }
  .f3ccor9 { grid-template-columns: 1fr; }
  .y0oxpgnc { justify-content: center; }
}

/* ===================================
   移动端菜单
   =================================== */
.yawg8i {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}
.yawg8i.open { display: block; }
.d9ebw {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  padding: 20px;
  overflow-y: auto;
}
.l0hbh {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.l0hbh button {
  background: none;
  font-size: 24px;
  color: var(--text);
}
.nuoj3 a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.nuoj3 a:hover { color: var(--primary); }
.eh23o2 {
  margin-top: 20px;
}
.eh23o2 input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  outline: none;
}
.eh23o2 input:focus { border-color: var(--primary); }

/* ===================================
   弹幕效果
   =================================== */
.i89lbqf {
  background: rgba(0,0,0,0.85);
  border-radius: var(--radius);
  padding: 12px 20px;
  overflow: hidden;
  position: relative;
  height: 44px;
}
.30v8n1 {
  display: flex;
  gap: 40px;
  animation: danmaku-scroll 20s linear infinite;
  white-space: nowrap;
}
@keyframes danmaku-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.4d5wand {
  color: white;
  font-size: 14px;
  padding: 2px 12px;
  border-radius: 50px;
  background: rgba(255,75,125,0.3);
}

/* ===================================
   加载动画
   =================================== */
.dotn7ns {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===================================
   滚动到顶部按钮
   =================================== */
.99rxex {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,75,125,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
.99rxex.visible { opacity: 1; transform: translateY(0); }
.99rxex:hover { transform: translateY(-4px); }

/* ===================================
   直播卡片
   =================================== */
.w7r2yrr {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.w7r2yrr:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.e3ebu2 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.e3ebu2 img { width: 100%; height: 100%; object-fit: cover; }
.otbbf {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b30;
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.otbbf::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse-badge 1s infinite;
}
.ayml0 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
}
.zf8sf { padding: 14px 16px; }
.zf8sf h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.9bgmxlx { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.9bgmxlx img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }

/* ===================================
   网站地图页面
   =================================== */
.q0xbe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.921t0yop {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
}
.921t0yop h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.921t0yop ul { list-style: none; padding: 0; margin: 0; }
.921t0yop li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.921t0yop li:last-child { border-bottom: none; }
.921t0yop a {
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}
.921t0yop a:hover { color: var(--primary); padding-left: 4px; }
@media (max-width: 1024px) {
  .q0xbe { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .q0xbe { grid-template-columns: 1fr; }
}

/* ===================================
   关于我们页面
   =================================== */
@media (max-width: 768px) {
  .ujuh4nkm { grid-template-columns: 1fr !important; }
}
