/* 少萝影视传媒 - 主样式表 | xrnwsoxs.cn */
/* 原创配色：玫瑰粉 #E8386D / 深夜蓝 #1A1F3C / 象牙白 #FFF8F5 / 金色 #C9A84C */

:root {
  --primary: #E8386D;
  --primary-dark: #C42558;
  --primary-light: #FFE8EF;
  --secondary: #1A1F3C;
  --secondary-light: #2D3461;
  --accent: #C9A84C;
  --bg: #FFF8F5;
  --bg-dark: #F5EEF0;
  --white: #FFFFFF;
  --gray: #8A8FA8;
  --gray-light: #F0EEF5;
  --text: #2C2C3E;
  --text-light: #6B6B80;
  --border: #EAE0E8;
  --shadow: 0 4px 24px rgba(232,56,109,0.10);
  --shadow-md: 0 8px 40px rgba(26,31,60,0.13);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  background: var(--bg);
  color: var(--text);
  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 { list-style: none; }

/* ===== 容器 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); box-shadow: 0 4px 15px rgba(232,56,109,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,56,109,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.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); color: var(--primary-dark); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== 标题 ===== */
.section-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  color: var(--secondary); text-align: center; margin-bottom: 16px;
  position: relative;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; margin: 14px auto 0;
}
.section-subtitle {
  text-align: center; color: var(--text-light); font-size: 16px;
  max-width: 600px; margin: 0 auto 50px;
}

/* ===== 网格 ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== 顶部通知栏 ===== */
.top-bar {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
}
.wjki2qkt { display: flex; gap: 20px; align-items: center; }
.eekh109 { display: flex; gap: 16px; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.75); font-size: 13px; }
.top-bar a:hover { color: var(--primary); }
.top-bar i { margin-right: 5px; }

/* ===== 主导航 ===== */
.header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,31,60,0.08);
}
.header-inner {
  display: flex; align-items: center; gap: 30px;
  padding: 14px 0; position: relative;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 22px; font-weight: 800; color: var(--primary);
  letter-spacing: 2px; line-height: 1.2;
}
.logo-tagline { font-size: 11px; color: var(--gray); letter-spacing: 1px; }

.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text); transition: all var(--transition); white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--primary); background: var(--primary-light);
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ===== 搜索框 ===== */
.search-wrap {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: 50px; display: flex; align-items: center;
  padding: 0 16px; gap: 8px; transition: all var(--transition);
  width: 220px;
}
.search-wrap:focus-within {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,56,109,0.12);
}
.search-wrap input {
  border: none; background: transparent; outline: none;
  font-size: 14px; color: var(--text); width: 100%; padding: 9px 0;
}
.search-wrap button {
  background: none; border: none; cursor: pointer;
  color: var(--gray); font-size: 15px; padding: 0;
  transition: color var(--transition);
}
.search-wrap button:hover { color: var(--primary); }

/* ===== 搜索栏（导航下方） ===== */
.5mmag {
  background: var(--primary-light); border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.t9561 {
  display: flex; align-items: center; gap: 12px; max-width: 700px; margin: 0 auto;
}
.t9561 .yh0aly {
  flex: 1; background: var(--white); border: 2px solid var(--primary);
  border-radius: 50px; display: flex; align-items: center; padding: 0 20px; gap: 10px;
}
.t9561 .yh0aly input {
  border: none; background: transparent; outline: none;
  font-size: 15px; color: var(--text); width: 100%; padding: 11px 0;
}
.t9561 .yh0aly button {
  background: var(--primary); border: none; cursor: pointer;
  color: white; font-size: 15px; padding: 8px 16px; border-radius: 50px;
  transition: background var(--transition);
}
.t9561 .yh0aly button:hover { background: var(--primary-dark); }
.baww4g { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.baww4g span { font-size: 12px; color: var(--gray); }
.baww4g a {
  font-size: 12px; color: var(--text-light); background: var(--white);
  padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border);
}
.baww4g a:hover { color: var(--primary); border-color: var(--primary); }

/* ===== Hero Banner ===== */
.hero {
  position: relative; min-height: 580px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,31,60,0.75) 0%, rgba(232,56,109,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 1; color: var(--white); max-width: 620px;
  padding: 60px 0;
}
.31v1k {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,56,109,0.25); border: 1px solid rgba(232,56,109,0.5);
  color: #FFB3C8; font-size: 13px; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px; backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; line-height: 1.2;
  margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-desc {
  font-size: 16px; opacity: 0.88; margin-bottom: 32px; line-height: 1.8;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.ohvq5zp4 {
  font-size: 28px; font-weight: 800; color: var(--primary);
  line-height: 1;
}
.rqectm4 { font-size: 13px; opacity: 0.75; margin-top: 4px; }

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

/* ===== 视频卡片 ===== */
.video-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); cursor: pointer;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
  background: var(--secondary);
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  background: rgba(26,31,60,0.45);
}
.video-card:hover .play-btn { opacity: 1; }
.play-btn::after {
  content: ''; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(232,56,109,0.9); backdrop-filter: blur(4px);
  border: 3px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center 50%;
  background-size: 28px;
}
.video-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: white; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
}
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: white; font-size: 12px;
  padding: 2px 8px; border-radius: 4px;
}
.video-info { padding: 16px; }
.video-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.video-tags span {
  font-size: 11px; color: var(--primary); background: var(--primary-light);
  padding: 2px 8px; border-radius: 20px; font-weight: 500;
}
.video-title {
  font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.5;
  margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.video-title a { color: var(--text); }
.video-title a:hover { color: var(--primary); }
.video-meta {
  display: flex; gap: 14px; color: var(--gray); font-size: 12px;
  align-items: center;
}
.video-meta i { margin-right: 3px; }

/* ===== 功能卡片 ===== */
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all var(--transition); text-align: center;
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  background: linear-gradient(135deg, var(--primary-light), #FFD6E5);
  color: var(--primary);
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.feature-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ===== 专家卡片 ===== */
.expert-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); text-align: center;
}
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.expert-avatar {
  width: 100%; aspect-ratio: 1/1; overflow: hidden;
  background: var(--bg-dark);
}
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.expert-card:hover .expert-avatar img { transform: scale(1.05); }
.expert-info { padding: 20px 16px; }
.expert-name { font-size: 18px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.expert-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.expert-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.expert-awards { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.expert-awards span {
  font-size: 11px; background: var(--gray-light); color: var(--text-light);
  padding: 2px 8px; border-radius: 20px;
}
.expert-btns { display: flex; gap: 8px; justify-content: center; }

/* ===== 评论卡片 ===== */
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); border-left: 4px solid var(--primary);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #F5A623; font-size: 14px; margin-bottom: 12px; }
.review-text { color: var(--text); line-height: 1.8; font-size: 14px; margin-bottom: 18px; font-style: italic; }
.review-user { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.review-user-name { font-weight: 700; font-size: 14px; color: var(--secondary); }
.review-user-info { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-item {
  background: var(--white); border-radius: var(--radius); margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden; transition: all var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q {
  padding: 18px 22px; font-weight: 600; font-size: 15px; color: var(--secondary);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q i { color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-light); font-size: 14px; line-height: 1.8;
}
.faq-item.active .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ===== 统计数字栏 ===== */
.1drtgo5 {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 40px 0;
}
.2dmc5 { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.pozblg { text-align: center; color: white; }
.lvdwxjfa {
  font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1;
  margin-bottom: 6px;
}
.5wci8s { font-size: 14px; opacity: 0.75; }

/* ===== 娱乐专区 ===== */
.5utfsxi {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  transition: all var(--transition);
}
.5utfsxi:hover {
  background: rgba(232,56,109,0.15); border-color: rgba(232,56,109,0.4);
  transform: translateY(-4px);
}
.n53u5 {
  font-size: 40px; color: var(--primary); margin-bottom: 16px;
}
.5utfsxi h3 { color: white; font-size: 17px; margin-bottom: 10px; }
.5utfsxi p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.7; }

/* ===== AI赋能区 ===== */
.oy6ym {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.ncc3y4xh {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), #FFD6E5);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px;
}
.oy6ym h4 { font-size: 15px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.oy6ym p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== 合作品牌墙 ===== */
.91t82wo {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 30px;
}
.xca43e96 {
  font-size: 20px; font-weight: 800; font-style: italic;
  color: var(--secondary-light); opacity: 0.5; transition: opacity var(--transition);
  letter-spacing: 1px;
}
.xca43e96:hover { opacity: 1; color: var(--primary); }

/* ===== 联系区域 ===== */
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); text-align: center; transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon {
  font-size: 44px; color: var(--primary); margin-bottom: 16px;
}
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.contact-card p { color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* ===== 页脚 ===== */
.footer {
  background: var(--secondary); color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 44px; }
.l73e4wfo { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: 2px; }
.footer-desc { font-size: 14px; line-height: 1.8; opacity: 0.7; margin-bottom: 20px; }
.footer h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 10px;
}
.footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.6noutb9 { display: flex; gap: 16px; }
.md3hweqk { text-align: center; }
.md3hweqk img { width: 90px; height: 90px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.1); }
.md3hweqk p { font-size: 11px; opacity: 0.6; margin-top: 6px; }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
}
.copyright { font-size: 13px; opacity: 0.55; }
.social-share { display: flex; gap: 10px; align-items: center; }
.social-share span { font-size: 13px; opacity: 0.55; }
.social-share a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all var(--transition);
}
.social-share a:hover { background: var(--primary); color: white; transform: translateY(-2px); }

/* ===== 内页 Banner ===== */
.71sreb2 {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 60%, rgba(232,56,109,0.3) 100%);
  padding: 70px 0; text-align: center; color: white; position: relative; overflow: hidden;
}
.71sreb2::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(232,56,109,0.12); pointer-events: none;
}
.71sreb2 h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 12px; }
.71sreb2 p { font-size: 16px; opacity: 0.8; max-width: 500px; margin: 0 auto; }

/* ===== 标签 ===== */
.tag {
  display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 20px;
  font-weight: 500;
}
.kjxt1hv { background: var(--primary-light); color: var(--primary); }
.tag-dark { background: var(--gray-light); color: var(--text-light); }
.tag-gold { background: #FFF8E1; color: var(--accent); }

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

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 420px; }
  .hero-stats { gap: 20px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .wjki2qkt { display: none; }
  .search-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero h1 { font-size: 26px; }
  .2dmc5 { gap: 30px; }
  .lvdwxjfa { font-size: 28px; }
  .t9561 { flex-direction: column; }
  .baww4g { justify-content: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cknliz { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== 移动端菜单 ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,31,60,0.95); flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white; font-size: 20px; font-weight: 700; padding: 10px 30px;
  border-radius: 50px; transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--primary); color: white; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: white; font-size: 28px; cursor: pointer;
}

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