/* ============================================
   丝瓜视频 官网样式表
   品牌：丝瓜视频 | 域名：qixdu20.cn
   ============================================ */

/* === CSS Variables === */
:root {
  --primary: #FF2D78;
  --primary-dark: #D4145A;
  --secondary: #FF8C42;
  --accent: #8B5CF6;
  --dark: #1a1a2e;
  --darker: #16213e;
  --light: #f8f9fa;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e5e7eb;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header === */
.qoncc1nf {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.9rs59c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.62up4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.62up4 img {
  height: 42px;
  width: auto;
}

.62up4 span {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.7cj42 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.7cj42 a {
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.7cj42 a:hover,
.7cj42 a.active {
  color: var(--primary);
  background: rgba(255,45,120,0.06);
}

/* Search Box */
.frb4u {
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.frb4u .container {
  display: flex;
  justify-content: center;
}

.r9tav2fh {
  display: flex;
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.r9tav2fh:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.1);
}

.r9tav2fh input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
}

.r9tav2fh button {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.r9tav2fh button:hover {
  opacity: 0.9;
}

/* Mobile Menu Toggle */
.29s6t {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 5px;
}

/* === Hero Banner === */
.uw2f65b {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.gkfvp {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.9evy8 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(255,45,120,0.3));
}

.xou73ug {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.xou73ug h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.xou73ug p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.7;
}

.qyfuu1t {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.qyfuu1t span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.2);
}

/* === Section Common === */
.section {
  padding: 60px 0;
}

.5yomvb {
  background: #fff;
}

.moaeu {
  background: var(--dark);
  color: #fff;
}

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

.qe5vp h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.moaeu .qe5vp h2 {
  color: #fff;
}

.qe5vp p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.moaeu .qe5vp p {
  color: rgba(255,255,255,0.7);
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 6px;
}

/* === Video Cards === */
.fi3o9e {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.asxlw8 {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.asxlw8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.0rzeji {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.0rzeji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.asxlw8:hover .0rzeji img {
  transform: scale(1.05);
}

.vpgc6 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(255,45,120,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.asxlw8:hover .vpgc6 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vpgc6::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.dcviy8 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.dgofjmp {
  padding: 14px 16px;
}

.dgofjmp h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ngxe0ma {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ngxe0ma span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.axu59fs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.axu59fs span {
  background: rgba(255,45,120,0.08);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
}

/* === Expert Cards === */
.4kni083x {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.2e4fejb {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.2e4fejb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.5og9yy {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--primary);
}

.2e4fejb h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.2e4fejb .role {
  color: var(--primary);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.2e4fejb .desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.2e4fejb .awards {
  font-size: 0.82rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

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

.btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 1rem;
}

/* === Brand Logo Wall === */
.mal5v4h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.1cw0b {
  background: #fff;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.1cw0b:hover {
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

/* === How-To Section === */
.5x8cbyq {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.b1z787 {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  counter-increment: step;
}

.b1z787::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.b1z787 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.b1z787 p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === About Section === */
.nsargdz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.9nl5yeo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.9nl5yeo p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}

.2xderu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.a2g8pza {
  text-align: center;
}

.a2g8pza .num {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.a2g8pza .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.3ltb6hv {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* === Reviews === */
.ogcb9aig {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.zst4s {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.ltx5sj5 {
  color: #FFB800;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.zst4s p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sqiebit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sqiebit .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.sqiebit .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.sqiebit .date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === FAQ === */
.qydgp0l {
  max-width: 800px;
  margin: 0 auto;
}

.v33va {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.yip4k {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.yip4k:hover {
  color: var(--primary);
}

.yip4k::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  transition: var(--transition);
}

.v33va.active .yip4k::after {
  content: '-';
}

.4qryyms {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.v33va.active .4qryyms {
  padding: 0 24px 18px;
  max-height: 500px;
}

.4qryyms p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === Contact Section === */
.zqs5nr3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.dadcsjm8 {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.dadcsjm8 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.dadcsjm8 p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.dadcsjm8 .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* === AI Section === */
.2eodza {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.1fkexzy {
  background: linear-gradient(135deg, #1a1a2e, #2d1b69);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  transition: var(--transition);
}

.1fkexzy:hover {
  transform: translateY(-4px);
}

.1fkexzy h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.1fkexzy p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.7;
}

.1fkexzy .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

/* === Community Section === */
.4z1wyoi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.zej4njil {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.zej4njil:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.zej4njil h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.zej4njil p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === Social Share === */
.vbbet {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tskvb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: #fff;
  transition: var(--transition);
}

.tskvb:hover {
  opacity: 0.85;
  color: #fff;
  transform: translateY(-2px);
}

.jld4vo8n { background: #07C160; }
.ffocoki5 { background: #E6162D; }
.s4p8r { background: #111; }
.kkf9e { background: #00A1D6; }

/* === Footer === */
.y1ivbdl {
  background: var(--darker);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

.xri1re7 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.naukgj1d .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.naukgj1d .logo img {
  height: 36px;
}

.naukgj1d .logo span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.naukgj1d p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.qeao3g1 {
  display: flex;
  gap: 16px;
}

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

.qeao3g1 .ykok871 img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.qeao3g1 .ykok871 span {
  font-size: 0.78rem;
  display: block;
}

.ylsinpt h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.ylsinpt ul {
  list-style: none;
}

.ylsinpt ul li {
  margin-bottom: 8px;
}

.ylsinpt ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.ylsinpt ul li a:hover {
  color: var(--primary);
}

.6g88i {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

.6g88i p {
  margin-bottom: 4px;
}

/* === Inner Page === */
.y7dxw7fi {
  background: var(--dark);
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.y7dxw7fi h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.y7dxw7fi p {
  opacity: 0.8;
  font-size: 1rem;
}

.wk3j6 {
  padding: 40px 0 60px;
}

.wk3j6 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 16px;
  color: var(--text);
}

.wk3j6 h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 24px 0 12px;
}

.wk3j6 p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.ld27s {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

/* === Lazy Load === */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 992px) {
  .xri1re7 {
    grid-template-columns: 1fr 1fr;
  }
  .nsargdz {
    grid-template-columns: 1fr;
  }
  .xou73ug h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .7cj42 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .7cj42.active {
    display: flex;
  }

  .29s6t {
    display: block;
  }

  .xou73ug h1 {
    font-size: 1.6rem;
  }

  .xou73ug p {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  .qe5vp h2 {
    font-size: 1.5rem;
  }

  .fi3o9e {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

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

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

  .4kni083x {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .fi3o9e {
    grid-template-columns: 1fr;
  }

  .xou73ug h1 {
    font-size: 1.4rem;
  }

  .2xderu {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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