/* ===================================
   看片 - 主样式文件
   ibmexe.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); }
.qydlql {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: var(--gradient);
  color: var(--white);
}
.30cq4e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===================================
   响应式
   =================================== */
@media (max-width: 1024px) {
  .c1qlv4q { grid-template-columns: 1fr 1fr; }
  .58dujtx { grid-template-columns: 1fr 1fr; }
  .nxfui0m { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .7i3hkw { display: none; }
  .uf31a7s { display: block; }
  .ida4onv h1 { font-size: 28px; }
  .8enj44n9 { gap: 20px; }
  .c1qlv4q { grid-template-columns: 1fr; gap: 28px; }
  .58dujtx { grid-template-columns: 1fr; }
  .vcg0kvlg { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .nxfui0m { grid-template-columns: 1fr; }
  .1ppmm { grid-template-columns: 1fr 1fr; }
  .rasupo { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .vcg0kvlg { grid-template-columns: 1fr; }
  .1ppmm { grid-template-columns: 1fr; }
  .9mhd1fp9 { flex-direction: column; }
  .8enj44n9 { flex-wrap: wrap; gap: 16px; }
  .zsrcfvk { grid-template-columns: 1fr 1fr; }
  .jx0e9q { grid-template-columns: 1fr; }
  .2e954 { justify-content: center; }
}

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

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

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

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

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

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

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