/* ===========================
   猎奇传媒 - 主样式文件
   dsmdz.cn
   =========================== */

/* ---- CSS变量 ---- */
:root {
  --primary: #e8437a;
  --primary-dark: #c73060;
  --primary-light: #f7a8c0;
  --secondary: #ff8fab;
  --accent: #ffd6e0;
  --gold: #c9a84c;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #333344;
  --text-light: #666680;
  --text-muted: #999aaa;
  --bg: #fff9fb;
  --bg-2: #fff0f5;
  --bg-3: #fce4ec;
  --white: #ffffff;
  --border: #f0d0dc;
  --shadow: 0 4px 20px rgba(232,67,122,0.12);
  --shadow-lg: 0 8px 40px rgba(232,67,122,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
  --font-main: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
}

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

/* ---- 工具类 ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-pink { color: var(--primary); }
.bg-pink { background: var(--bg-2); }
.bg-dark { background: var(--dark); color: var(--white); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.hidden { display: none; }

/* ---- 标题样式 ---- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.section-header { margin-bottom: 48px; }
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin-top: 16px;
}
.section-header.text-center::after { margin: 16px auto 0; }

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,67,122,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,67,122,0.45);
  color: var(--white);
}
.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: var(--shadow);
}
.btn-white:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---- 卡片 ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 20px; }
.card-title { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.card-text { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }
.card-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

/* ---- 标签 ---- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.tag-pink { background: var(--accent); color: var(--primary); }
.tag-dark { background: var(--dark); color: var(--white); }
.tag-gold { background: #fff3cd; color: #856404; }

/* ---- 导航 ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(232,67,122,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo img { height: 44px; width: auto; }
.site-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--primary);
  background: var(--accent);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- 搜索框 ---- */
.search-bar-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 14px 0;
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-bar-inner .search-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.search-form {
  flex: 1;
  display: flex;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.search-form input {
  flex: 1;
  padding: 10px 20px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--text);
  background: transparent;
}
.search-form button {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 50px 50px 0;
  transition: opacity var(--transition);
}
.search-form button:hover { opacity: 0.9; }

/* ---- Hero Banner ---- */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--white);
}
.g1y1aj {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,67,122,0.85);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--secondary); }
.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }

/* ---- 视频卡片 ---- */
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.video-card:hover .video-play-btn { background: rgba(0,0,0,0.35); }
.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-card:hover .play-icon { opacity: 1; transform: scale(1); }
.play-icon svg { width: 22px; height: 22px; fill: var(--primary); margin-left: 3px; }
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 4px;
}
.video-info { padding: 14px 16px 16px; background: var(--white); }
.video-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.video-stats { display: flex; gap: 12px; }
.video-stats span { display: flex; align-items: center; gap: 4px; }

/* ---- 视频弹窗 ---- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 860px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.video-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
}
.video-modal-close:hover { background: var(--primary); }
.video-modal-player {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.video-modal-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-modal-info {
  padding: 16px 20px;
}
.video-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.video-modal-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---- 专家卡片 ---- */
.expert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.expert-avatar {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.expert-body { padding: 20px; }
.expert-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.expert-title { font-size: 0.85rem; color: var(--primary); margin: 4px 0 10px; }
.expert-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 12px 0; }
.expert-actions { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }

/* ---- 评论卡片 ---- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.review-stars { color: #ffc107; font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.review-date { font-size: 0.78rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--white);
}
.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--bg-2); }
.faq-question.active { color: var(--primary); background: var(--bg-2); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 1rem;
  color: var(--primary);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }

/* ---- 合作品牌墙 ---- */
.605yajts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.yuvu0lul {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition);
  min-width: 110px;
  text-align: center;
}
.yuvu0lul:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-2); }

/* ---- 联系区域 ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 3px; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* ---- 社区入口 ---- */
.community-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.community-entry {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.community-entry:hover { border-color: var(--primary); transform: translateY(-4px); }
.community-entry-icon { font-size: 2rem; margin-bottom: 10px; }
.community-entry-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.community-entry-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ---- 分享按钮 ---- */
.fee9zgj4 { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.73eec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.62q5zb { background: #07c160; color: #fff; }
.gf59q67 { background: #e6162d; color: #fff; }
.sp7re6uv { background: #010101; color: #fff; }
.1u0bd7 { background: #00a1d6; color: #fff; }
.73eec:hover { opacity: 0.88; transform: translateY(-2px); }

/* ---- 统计数字 ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--text-light); }

/* ---- 面包屑 ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 14px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--primary); font-weight: 500; }

/* ---- 页脚 ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 20px; }
.iwq9wy { display: flex; gap: 20px; }
.jkdokkv { text-align: center; }
.jkdokkv img { width: 90px; height: 90px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.15); }
.jkdokkv-label { font-size: 0.75rem; margin-top: 6px; opacity: 0.7; }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

/* ---- 弹幕效果 ---- */
.xl4eji7m {
  background: var(--dark-2);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.jk3du {
  display: flex;
  gap: 40px;
  animation: danmu-scroll 30s linear infinite;
  white-space: nowrap;
}
.jk3du:hover { animation-play-state: paused; }
.x1dpeg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.qy47rrd {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  font-weight: 700;
}
@keyframes danmu-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* ---- 动画 ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate-fadeup { animation: fadeInUp 0.6s ease both; }
.37hwq {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.efzcrg {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s ease infinite;
}

/* ---- 内页Banner ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,67,122,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ---- 工具卡片 ---- */
.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.tool-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.tool-icon { font-size: 2.5rem; margin-bottom: 14px; }
.tool-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.tool-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ---- 步骤指南 ---- */
.steps-list { counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-content p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* ---- 荣誉资质卡片 ---- */
.honor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform var(--transition);
}
.honor-card:hover { transform: translateY(-4px); }
.honor-icon { font-size: 2.4rem; margin-bottom: 12px; }
.honor-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.honor-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ---- 新闻动态卡片 ---- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.news-body { padding: 18px; }
.news-tag { margin-bottom: 8px; }
.news-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.news-excerpt { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.news-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; justify-content: space-between; }

/* ---- 情感/亲密教育专区 ---- */
.edu-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-2) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: transform var(--transition);
}
.edu-card:hover { transform: translateY(-4px); }
.edu-icon { font-size: 2rem; margin-bottom: 12px; }
.edu-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.edu-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ---- 滚动条 ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .community-entry-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 1.5rem; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .community-entry-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .search-bar-inner { flex-direction: column; gap: 8px; }
  .xl4eji7m { display: none; }
  .contact-info-card { padding: 20px; }
  .video-modal-inner { width: 96%; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .community-entry-grid { grid-template-columns: repeat(2, 1fr); }
  .community-entry-desc { display: none; }
  .btn-lg { padding: 12px 28px; font-size: 0.95rem; }
  .605yajts { gap: 8px; }
  .yuvu0lul { padding: 10px 14px; font-size: 0.82rem; min-width: 80px; }
}
