/* ========================================
   国产 - 品牌网站 CSS样式表
   配色：紫色(#8B5CF6) + 粉色(#EC4899) + 蓝色(#3B82F6)
   ======================================== */

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

:root {
  --primary-purple: #8B5CF6;
  --primary-pink: #EC4899;
  --primary-blue: #3B82F6;
  --bg-white: #FFFFFF;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --border-light: #E5E7EB;
  --gradient-main: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'SimHei', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========================================
   头部导航
   ======================================== */

header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.n7bksk {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--primary-purple);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.luffue {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #F3F4F6;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.luffue:hover {
  border-color: var(--primary-purple);
  background: #F9F5FF;
}

.luffue input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  width: 150px;
}

/* ========================================
   Hero区域
   ======================================== */

.hero {
  height: 500px;
  background: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663491082298/mGqYDGhxJHFWi9MBihncFj/hero-anime-girl-1-Xv864wQHVJLNG8jhCbEvbJ.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.6djdb {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.6djdb h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.6djdb p {
  font-size: 20px;
  margin-bottom: 24px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.qqtnilix {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient-main);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.qqtnilix:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

/* ========================================
   内容模块通用样式
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

section:last-of-type {
  border-bottom: none;
}

.oxx0o {
  text-align: center;
  margin-bottom: 40px;
}

.oxx0o h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.oxx0o p {
  color: var(--text-light);
  font-size: 16px;
}

/* ========================================
   视频卡片
   ======================================== */

.j5hkcr4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.6og6qihd {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.6og6qihd:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
}

.5sh7m {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #F3F4F6;
  overflow: hidden;
}

.5sh7m img,
.5sh7m video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.3b0pdsr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.3b0pdsr::after {
  content: '▶';
  color: white;
  font-size: 24px;
  margin-left: 4px;
}

.6og6qihd:hover .3b0pdsr {
  opacity: 1;
}

.qdek7q {
  padding: 16px;
}

.qdek7q h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m82nieta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
   内容模块
   ======================================== */

.jbpyodg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.2t3fgd {
  background: linear-gradient(135deg, #F9F5FF 0%, #FDF2F8 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.2t3fgd:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

.2t3fgd h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.2t3fgd p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   专家展示
   ======================================== */

.2q83d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.z08hcdgq {
  text-align: center;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.z08hcdgq:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.1);
}

.n1lum {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
}

.z08hcdgq h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.z08hcdgq .title {
  color: var(--primary-purple);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.z08hcdgq p {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 16px;
}

.z3nztsrn {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.z3nztsrn a {
  padding: 6px 12px;
  background: var(--gradient-main);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.z3nztsrn a:hover {
  transform: scale(1.05);
}

/* ========================================
   FAQ模块
   ======================================== */

.j9ko5t0 {
  max-width: 700px;
  margin: 0 auto;
}

.sf1wnd {
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sf1wnd:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.miudukv {
  padding: 16px;
  background: #F9F5FF;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s ease;
}

.miudukv:hover {
  background: #F3EDFF;
}

.47f4m8xt {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sf1wnd.active .47f4m8xt {
  transform: rotate(180deg);
}

.mibn6xms {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.sf1wnd.active .mibn6xms {
  padding: 16px;
  max-height: 500px;
}

.mibn6xms p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   用户评价
   ======================================== */

.abj4peoe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.isnel9z1 {
  background: linear-gradient(135deg, #FDF2F8 0%, #F9F5FF 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(236, 72, 153, 0.1);
}

.jec0p3r {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.yien56cf {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.r8xsm8q h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.r8xsm8q .rating {
  color: #FCD34D;
  font-size: 12px;
}

.q2lynm {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* ========================================
   页脚
   ======================================== */

footer {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.ly98s {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.5kys36n h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.5kys36n p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.5kys36n a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.5kys36n a:hover {
  color: white;
}

.4gwnvtm {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.60bmy6w {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
  color: #1F2937;
}

.m9w4iepd {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.m9w4iepd a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.m9w4iepd a:hover {
  background: var(--primary-purple);
  transform: translateY(-3px);
}

.ccf7v48w {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.ccf7v48w p {
  margin: 8px 0;
}

/* ========================================
   响应式设计
   ======================================== */

@media (max-width: 768px) {
  .n7bksk {
    height: 60px;
    padding: 0 16px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 12px;
  }

  .luffue {
    display: none;
  }

  .hero {
    height: 350px;
  }

  .6djdb h1 {
    font-size: 32px;
  }

  .6djdb p {
    font-size: 16px;
  }

  .oxx0o h2 {
    font-size: 28px;
  }

  .j5hkcr4 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }

  .jbpyodg {
    grid-template-columns: 1fr;
  }

  .2q83d {
    grid-template-columns: repeat(2, 1fr);
  }

  .abj4peoe {
    grid-template-columns: 1fr;
  }

  .ly98s {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .n7bksk {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
  }

  nav {
    width: 100%;
    gap: 12px;
    margin-top: 12px;
    order: 3;
    flex-wrap: wrap;
  }

  .hero {
    height: 280px;
  }

  .6djdb h1 {
    font-size: 24px;
  }

  .6djdb p {
    font-size: 14px;
  }

  .oxx0o h2 {
    font-size: 22px;
  }

  .j5hkcr4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .2q83d {
    grid-template-columns: 1fr;
  }

  .4gwnvtm {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 30px 0;
  }
}

/* ========================================
   动画
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.81z7k {
  animation: fadeInUp 0.6s ease-out;
}

.44zwt {
  animation: slideInLeft 0.6s ease-out;
}

.ufym9 {
  animation: slideInRight 0.6s ease-out;
}

/* ========================================
   工具类
   ======================================== */

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

.o6tsj {
  color: var(--text-light);
}

.zu4zu {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
