/* ===== 溏心 全站样式 ===== */
/* 原创配色: 珊瑚红 #FF6B6B, 暖橙 #FF9A56, 深靛 #1A1A2E, 暗蓝 #16213E, 星空紫 #0F3460, 亮白 #EAEAEA */

:root {
  --coral: #FF6B6B;
  --orange: #FF9A56;
  --deep-dark: #1A1A2E;
  --dark-blue: #16213E;
  --star-purple: #0F3460;
  --light: #EAEAEA;
  --white: #FFFFFF;
  --text-main: #E0E0E0;
  --text-muted: #A0A0B0;
  --card-bg: #1E2A3A;
  --card-hover: #253545;
  --border-color: #2A3A4A;
  --gradient-main: linear-gradient(135deg, var(--coral), var(--orange));
  --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--deep-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--coral); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }

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

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

/* ===== 头部导航 ===== */
.vscnlj {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26,26,46,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

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

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

.benfwp4h h1,
.benfwp4h .oo8mx3o {
  font-size: 1.3rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.oxfhy0e { display: flex; align-items: center; gap: 0; }

.oxfhy0e a {
  color: var(--text-main);
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.oxfhy0e a:hover,
.oxfhy0e a.active {
  color: var(--coral);
  background: rgba(255,107,107,0.1);
}

.d0fat {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* 搜索框 */
.y6q65 {
  background: var(--dark-blue);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  margin-top: 60px;
}

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

.h1u7oy {
  display: flex;
  max-width: 600px;
  width: 100%;
  background: var(--card-bg);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.h1u7oy input {
  flex: 1;
  padding: 10px 20px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
}

.h1u7oy input::placeholder { color: var(--text-muted); }

.h1u7oy button {
  padding: 10px 24px;
  background: var(--gradient-main);
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.h1u7oy button:hover { opacity: 0.9; }

/* ===== Banner ===== */
.pf0qxi {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf0qxi .zvdmq3rq {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.xkex1xx6 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
}

.xkex1xx6 h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xkex1xx6 p {
  font-size: 1.15rem;
  color: var(--light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  padding: 12px 36px;
  background: var(--gradient-main);
  color: var(--white);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--coral);
  color: var(--coral);
  border-radius: 30px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
}

/* ===== 通用板块 ===== */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--dark-blue);
}

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

.eg93jkv h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
}

.eg93jkv h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.eg93jkv p {
  color: var(--text-muted);
  font-size: 1rem;
}

.zstctq6s {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ===== 视频卡片 ===== */
.rs39w {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.avg3efer {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.avg3efer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--coral);
}

.be3awu {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.be3awu img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.hicl1po0 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,107,107,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.hicl1po0::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}

.be3awu:hover .hicl1po0 {
  opacity: 1;
}

.hobp1 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.x2jkfcko {
  padding: 14px;
}

.x2jkfcko h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks57n1 {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

/* ===== 专家卡片 ===== */
.wa9xrys {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.vrn4ghx3 {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.vrn4ghx3:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

.vrn4ghx3 h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.vrn4ghx3 .role {
  color: var(--coral);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.vrn4ghx3 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.vrn4ghx3 .w21a45ne {
  color: var(--orange);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

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

.fkfyj a {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ===== 社区模块 ===== */
.o9mny97 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.zq9rbznq {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.zq9rbznq:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.mai33v {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.zq9rbznq h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1rem;
}

.zq9rbznq p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.gxja7v {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.lsjzbfe8 {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.lsjzbfe8:hover { color: var(--coral); }

.lsjzbfe8 .ldlgy9a6 {
  transition: var(--transition);
  font-size: 1.2rem;
}

.gxja7v.active .lsjzbfe8 .ldlgy9a6 {
  transform: rotate(180deg);
}

.b3wb72 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.gxja7v.active .b3wb72 {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* ===== 用户评论 ===== */
.rirkk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.xems7 {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.xems7:hover {
  border-color: var(--coral);
}

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

.klq7a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.vzjr2l4x { color: var(--white); font-weight: 600; }
.c13ellg { color: var(--text-muted); font-size: 0.8rem; }
.reu4xy { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; }

.xems7 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== 合作品牌 ===== */
.ks1q46m {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.ks1q46m .xu0pd {
  background: var(--card-bg);
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.ks1q46m .xu0pd:hover {
  border-color: var(--coral);
  color: var(--white);
}

/* ===== How-To 指南 ===== */
.hvrse {
  max-width: 700px;
  margin: 0 auto;
}

.lim2dxuk {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.r1tbqhv {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.l80ldbb6 {
  color: var(--text-main);
  font-size: 0.95rem;
  padding-top: 8px;
}

/* ===== 联系我们 ===== */
.cr3nd {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.q49pzvp9 {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.q49pzvp9 h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.q49pzvp9 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ===== 分享按钮 ===== */
.cy6d5p6t {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.rokq1f {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
}

.rokq1f:hover { transform: translateY(-2px); color: var(--white); }
.lqutr1v { background: #07C160; }
.ev8nz6 { background: #E6162D; }
.ls4weog { background: #161823; border: 1px solid #333; }
.gcvb048 { background: #00A1D6; }

/* ===== 页脚 ===== */
.bz1l00 {
  background: var(--dark-blue);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
}

.jl1kh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.vlnkn6wr h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1rem;
}

.vlnkn6wr p,
.vlnkn6wr a {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 6px;
}

.vlnkn6wr a:hover { color: var(--coral); }

.vlnkn6wr img {
  width: 120px;
  border-radius: 8px;
  margin-top: 8px;
}

.r7uo4u {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.vqf4ond {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.vqf4ond img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

/* ===== AI赋能板块 ===== */
.zwqpk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.yboet {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.yboet:hover {
  border-color: var(--star-purple);
  transform: translateY(-3px);
}

.yboet h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

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

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

/* ===== 面包屑 ===== */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { margin: 0 6px; }

/* ===== 内页通用 ===== */
.vifgpgkc {
  padding: 100px 0 40px;
  text-align: center;
  background: var(--dark-blue);
}

.vifgpgkc h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.vifgpgkc p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.v4ltuez h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  margin-top: 30px;
}

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

.t2gaixn {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,107,107,0.15);
  color: var(--coral);
  border-radius: 16px;
  font-size: 0.8rem;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .oxfhy0e {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--deep-dark);
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .oxfhy0e.open { display: flex; }

  .oxfhy0e a {
    padding: 12px 20px;
    border-radius: 0;
  }

  .d0fat { display: block; }

  .xkex1xx6 h2 { font-size: 1.6rem; }
  .xkex1xx6 p { font-size: 0.95rem; }
  .pf0qxi { min-height: 380px; }

  .eg93jkv h2 { font-size: 1.4rem; }

  .rs39w { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .wa9xrys { grid-template-columns: 1fr; }
  .rirkk { grid-template-columns: 1fr; }
  .jl1kh { grid-template-columns: 1fr 1fr; }
  .zwqpk { grid-template-columns: 1fr; }
  .cr3nd { grid-template-columns: 1fr; }
}

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

/* ===== 懒加载 ===== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* 无JS回退：确保图片可见 */
@media (scripting: none) {
  img[loading="lazy"] { opacity: 1; }
}

/* ===== 动画 ===== */
.p4o3jl6b {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 无障碍焦点 ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* ===== 标签云居中 ===== */
.t2gaixn {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

/* ===== 编辑信息样式 ===== */
.rhtd081 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}
