/* ============================================
   黑料 官网样式表
   品牌：黑料 | 域名：qjnob57.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 === */
.qgm7l {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.w9uwvaj9 img {
  height: 42px;
  width: auto;
}

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

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

.4v3vjq87 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;
}

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

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

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

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

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

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

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

.qdnknr4d button:hover {
  opacity: 0.9;
}

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

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

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

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

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

.00wqntzv 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);
}

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

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

.x3z4kn 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;
}

.4mm0z0 {
  background: #fff;
}

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

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

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

.wz0heql .w0asy h2 {
  color: #fff;
}

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

.wz0heql .w0asy 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 === */
.evb7z {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

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

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

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

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

.pioss:hover .uev4a img {
  transform: scale(1.05);
}

.l9qa0 {
  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);
}

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

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

.r2p2xxqa {
  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;
}

.6yphqm {
  padding: 14px 16px;
}

.6yphqm 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.4tbllds2 {
  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 === */
.w69qm {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.kmceph {
  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);
}

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

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

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

.c7eyc::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;
}

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

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

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

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

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

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

.83awl {
  text-align: center;
}

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

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

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

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

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

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

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

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

.8njdoaj5 .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;
}

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

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

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

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

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

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

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

.swd2jw.active .q251ae::after {
  content: '-';
}

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

.swd2jw.active .2d8slv {
  padding: 0 24px 18px;
  max-height: 500px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.i4tr29 { background: #07C160; }
.wxutq { background: #E6162D; }
.5jiews0f { background: #111; }
.jqcglbt { background: #00A1D6; }

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

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

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

.1n59kam1 .logo img {
  height: 36px;
}

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

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

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

.h0ek1v .65gwu {
  text-align: center;
}

.h0ek1v .65gwu img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.h0ek1v .65gwu span {
  font-size: 0.78rem;
  display: block;
}

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

.rldm5 ul {
  list-style: none;
}

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

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

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

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

.plqqlvz p {
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.iaxm8e {
  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) {
  .b21f37r {
    grid-template-columns: 1fr 1fr;
  }
  .gg3gf {
    grid-template-columns: 1fr;
  }
  .00wqntzv h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .4v3vjq87 {
    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);
  }

  .4v3vjq87.active {
    display: flex;
  }

  .1x7auu {
    display: block;
  }

  .00wqntzv h1 {
    font-size: 1.6rem;
  }

  .00wqntzv p {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

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

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

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

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

  .9p77e {
    grid-template-columns: 1fr;
  }
}

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

  .00wqntzv h1 {
    font-size: 1.4rem;
  }

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

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