/* ===================================
   黑料 - 主样式文件
   kxdudh.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); }
.vwt2df8g {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: var(--gradient);
  color: var(--white);
}
.f5jcu {
  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;
}

/* ===================================
   顶部公告条
   =================================== */
.qmm1kdp {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
}
.qmm1kdp 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);
}
.2xgxi8lm {
  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.x92kv3px {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
.k3bd7nhy {
  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);
}
.yerqya {
  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);
}
.yerqya:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,75,125,0.1);
}
.yerqya input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--text);
}
.yerqya button {
  background: none;
  color: var(--text-muted);
  font-size: 16px;
  padding: 0;
  transition: var(--transition);
}
.yerqya button:hover { color: var(--primary); }
.yjfi62mh { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.yjfi62mh .btn { padding: 8px 20px; font-size: 13px; }
.czncy {
  display: none;
  background: none;
  font-size: 22px;
  color: var(--text);
  padding: 4px;
}

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

/* ===================================
   搜索区域
   =================================== */
.pkpm45ou {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.gxm93m0 {
  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);
}
.gxm93m0:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,75,125,0.1);
}
.gxm93m0 input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--text);
}
.gxm93m0 .m3qx6 {
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.gxm93m0 .m3qx6:hover { opacity: 0.9; transform: scale(1.02); }
.krhd5b {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}
.krhd5b span { font-size: 13px; color: var(--text-muted); }
.fwfajfc {
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(255,75,125,0.08);
  color: var(--primary);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.fwfajfc:hover { background: var(--primary); color: var(--white); }

/* ===================================
   视频卡片
   =================================== */
.6i68xjfu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.69yfz4g {
  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;
}
.69yfz4g:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.7ctl3v {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.7ctl3v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.69yfz4g:hover .7ctl3v img { transform: scale(1.06); }
.7ijyce {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: var(--transition);
  opacity: 0;
}
.69yfz4g:hover .7ijyce {
  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);
}
.69yfz4g: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;
}
.jg9cm {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.54ecjzmy {
  position: absolute;
  top: 10px;
  left: 10px;
}
.elf97 { padding: 14px 16px; }
.elf97 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;
}
.oaeeony {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.oaeeony span { display: flex; align-items: center; gap: 4px; }
.ztuvcm3p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.ztuvcm3p img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.ztuvcm3p span { font-size: 13px; color: var(--text-light); }

/* ===================================
   特色模块卡片
   =================================== */
.qrsp6cyx {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.vy1w5m {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.vy1w5m:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.vmkz878 {
  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;
}
.vy1w5m h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.vy1w5m p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===================================
   专家展示
   =================================== */
.481okc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.2u0yth {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.2u0yth:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.uhjlq6 {
  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);
}
.2u0yth h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.2u0yth .role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.2u0yth p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.6vwvw {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.afqdnvbr {
  padding: 3px 10px;
  background: rgba(255,75,125,0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}
.3fnhkwba { display: flex; gap: 8px; justify-content: center; }
.3fnhkwba 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);
}
.3fnhkwba a:hover { background: var(--primary); color: var(--white); }

/* ===================================
   用户评价
   =================================== */
.6e0wf {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ca526 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.ca526::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 60px;
  color: rgba(255,75,125,0.1);
  font-family: serif;
  line-height: 1;
}
.ca526:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.wm3188 { color: #FFB800; font-size: 16px; margin-bottom: 12px; }
.ca526 p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.15gyev {
  display: flex;
  align-items: center;
  gap: 12px;
}
.m5hwvg6 {
  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;
}
.f1e5puus .name { font-size: 14px; font-weight: 600; color: var(--dark); }
.f1e5puus .date { font-size: 12px; color: var(--text-muted); }

/* ===================================
   FAQ
   =================================== */
.zwx6i2b { max-width: 800px; margin: 0 auto; }
.79w5xz0 {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.79w5xz0.active { border-color: var(--primary); }
.lgedla {
  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);
}
.79w5xz0.active .lgedla { color: var(--primary); background: rgba(255,75,125,0.04); }
.lgedla .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);
}
.79w5xz0.active .lgedla .icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.r9ze1ez {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.79w5xz0.active .r9ze1ez { display: block; }

/* ===================================
   合作品牌
   =================================== */
.obc3v {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.egg2w {
  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;
}
.egg2w:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ===================================
   联系我们
   =================================== */
.p45m6ob {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pim06qs h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.9v3rd17 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.6pyhjjn {
  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;
}
.u0u8r .label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.u0u8r .value { font-size: 15px; font-weight: 600; color: var(--dark); }
.1ueogo {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.6lwt23ik { text-align: center; }
.6lwt23ik img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  margin-bottom: 8px;
}
.6lwt23ik p { font-size: 13px; color: var(--text-light); }

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

/* ===================================
   AI赋能区域
   =================================== */
.fxubm48 { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.4ewvweu7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.oe1342kw {
  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);
}
.oe1342kw:hover {
  background: rgba(255,75,125,0.15);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.oe1342kw .6ua1c {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.oe1342kw h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.oe1342kw p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===================================
   How-To 加入社区
   =================================== */
.zbb7g {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.xzb4hv {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.xzb4hv:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.n7mnwbnk {
  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;
}
.xzb4hv h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.xzb4hv p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===================================
   分享按钮
   =================================== */
.a2g50 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.a2g50 span { font-size: 14px; color: var(--text-muted); }
.7k4uu {
  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;
}
.7k4uu:hover { transform: translateY(-2px); opacity: 0.9; }
.mhye1p { background: #07C160; color: white; }
.8sinn { background: #E6162D; color: white; }
.yhsdmws { background: #010101; color: white; }
.xoteq1 { background: #00A1D6; color: white; }

/* ===================================
   页脚
   =================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.pgr3t6 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.45kivue2 .k3bd7nhy { font-size: 22px; font-weight: 800; }
.45kivue2 p {
  font-size: 13px;
  line-height: 1.8;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.55);
}
.hoc9pz h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.hoc9pz ul li {
  margin-bottom: 10px;
}
.hoc9pz ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.hoc9pz ul li a:hover { color: var(--primary); }
.y1lrw {
  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;
}
.hrpmt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hrpmt img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.evc69fa8 { display: flex; gap: 10px; }
.hcbow {
  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);
}
.hcbow: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
   =================================== */
.sbxna2an {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}
.sbxna2an h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.sbxna2an p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ===================================
   标签云
   =================================== */
.rwicxky { display: flex; flex-wrap: wrap; gap: 8px; }
.3foeje {
  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);
}
.3foeje:hover, .3foeje.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===================================
   图片画廊
   =================================== */
.ozlxq1o6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.t50co {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.t50co img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.t50co:hover img { transform: scale(1.08); }
.d99f7g4 {
  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;
}
.t50co:hover .d99f7g4 { opacity: 1; }
.d99f7g4 p { color: white; font-size: 13px; font-weight: 600; }

/* ===================================
   响应式
   =================================== */
@media (max-width: 1024px) {
  .pgr3t6 { grid-template-columns: 1fr 1fr; }
  .djhi7 { grid-template-columns: 1fr 1fr; }
  .p45m6ob { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .yerqya { display: none; }
  .czncy { display: block; }
  .xx19ts7 h1 { font-size: 28px; }
  .evun3qve { gap: 20px; }
  .pgr3t6 { grid-template-columns: 1fr; gap: 28px; }
  .djhi7 { grid-template-columns: 1fr; }
  .6i68xjfu { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .p45m6ob { grid-template-columns: 1fr; }
  .481okc { grid-template-columns: 1fr 1fr; }
  .y1lrw { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .6i68xjfu { grid-template-columns: 1fr; }
  .481okc { grid-template-columns: 1fr; }
  .f4k4b { flex-direction: column; }
  .evun3qve { flex-wrap: wrap; gap: 16px; }
  .qrsp6cyx { grid-template-columns: 1fr 1fr; }
  .zbb7g { grid-template-columns: 1fr; }
  .1ueogo { justify-content: center; }
}

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

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

/* ===================================
   加载动画
   =================================== */
.581qstk {
  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; }
}

/* ===================================
   滚动到顶部按钮
   =================================== */
.7rinszpm {
  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;
}
.7rinszpm.visible { opacity: 1; transform: translateY(0); }
.7rinszpm:hover { transform: translateY(-4px); }

/* ===================================
   直播卡片
   =================================== */
.8f93fyz {
  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;
}
.8f93fyz:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.fn7v8fik {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.fn7v8fik img { width: 100%; height: 100%; object-fit: cover; }
.9ta719r {
  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;
}
.9ta719r::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse-badge 1s infinite;
}
.wlllfq61 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
}
.rdi8yu27 { padding: 14px 16px; }
.rdi8yu27 h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.4l51lw { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.4l51lw img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }

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

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