/* =============================================
   泄密 - 主样式表
   Brand: 泄密 | Domain: hhye5h.cn
   ============================================= */

/* === CSS变量 === */
:root {
    --primary: #E8396A;
    --primary-dark: #C42050;
    --primary-light: #FF6B9D;
    --gold: #F5A623;
    --gold-dark: #D4881A;
    --purple: #6B2FA0;
    --purple-light: #9B59B6;
    --dark: #1A1A2E;
    --dark2: #16213E;
    --dark3: #0F3460;
    --text-main: #2C2C3E;
    --text-muted: #666680;
    --text-light: #999BB0;
    --bg-light: #F8F4FF;
    --bg-card: #FFFFFF;
    --border: #E8E0F0;
    --shadow: 0 4px 20px rgba(232,57,106,0.12);
    --shadow-lg: 0 8px 40px rgba(232,57,106,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 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', 'Hiragino Sans GB', sans-serif;
    color: var(--text-main);
    background: #FAFAFA;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* === 容器 === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* =============================================
   顶部公告栏
   ============================================= */
.top-bar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark3) 50%, var(--dark) 100%);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.top-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245,166,35,0.15), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer { to { left: 100%; } }
.top-bar a { color: var(--gold); font-weight: 600; }
.top-bar .marquee-text { display: inline-block; }

/* =============================================
   头部导航
   ============================================= */
#site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
#site-header.scrolled {
    box-shadow: 0 4px 30px rgba(232,57,106,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-wrap img.site-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.logo-wrap img.site-favicon {
    height: 32px;
    width: 32px;
    border-radius: 8px;
    display: none;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text .brand-name {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.logo-text .brand-slogan {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* 主导航 */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 1px;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
    background: rgba(232,57,106,0.06);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: translateX(-50%) scaleX(1); }

/* 头部右侧 */
.header-right { display: flex; align-items: center; gap: 12px; }
.btn-login {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-login:hover { background: var(--primary); color: #fff; }
.btn-join {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(232,57,106,0.35);
    transition: var(--transition);
}
.btn-join:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,57,106,0.45); }

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

/* =============================================
   搜索框
   ============================================= */
.search-bar-wrap {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.search-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.search-form {
    display: flex;
    flex: 1;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}
.search-form:focus-within {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(232,57,106,0.2);
}
.search-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
}
.search-form input::placeholder { color: rgba(255,255,255,0.45); }
.search-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0 30px 30px 0;
    transition: var(--transition);
}
.search-form button:hover { opacity: 0.9; }
.search-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.search-tags a {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    transition: var(--transition);
}
.search-tags a:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   面包屑
   ============================================= */
.xgguh3t {
    background: var(--bg-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.hblq3er {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.hblq3er a { color: var(--primary); }
.hblq3er span.sep { color: var(--text-light); }
.hblq3er span.current { color: var(--text-main); font-weight: 500; }

/* =============================================
   Hero 区域
   ============================================= */
.cs16l4j5 {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.nd01za {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.cs16l4j5:hover .nd01za { transform: scale(1); }
.zyi4i7um {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.6) 60%, rgba(107,47,160,0.4) 100%);
}
.qavmy {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 680px;
}
.wzu0pnv {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,57,106,0.2);
    border: 1px solid rgba(232,57,106,0.4);
    color: var(--primary-light);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.wzu0pnv .dot { width: 6px; height: 6px; background: var(--primary-light); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.qavmy h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.qavmy h1 .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.qavmy p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}
.nqb8a { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(232,57,106,0.4);
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(232,57,106,0.5); }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.yrdk6k {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.o3aaytr { text-align: center; }
.o3aaytr .num {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.o3aaytr .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* =============================================
   通用区块
   ============================================= */
.section { padding: 70px 0; }
.2ijmrze { background: var(--bg-light); }
.1bl6jcta { background: var(--dark); }
.hx5toa6e { text-align: center; margin-bottom: 50px; }
.5l4fq {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232,57,106,0.1), rgba(245,166,35,0.1));
    border: 1px solid rgba(232,57,106,0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.8lb5xl {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 14px;
}
.8lb5xl .accent {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ce9hz2 { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.1bl6jcta .8lb5xl { color: #fff; }
.1bl6jcta .ce9hz2 { color: rgba(255,255,255,0.6); }

/* 更多按钮 */
.yj6qihek { text-align: center; margin-top: 40px; }
.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-more:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

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

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.v608tdt {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--dark);
}
.v608tdt img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .v608tdt img { transform: scale(1.08); }
.l51d7 {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0.9);
    width: 52px; height: 52px;
    background: rgba(232,57,106,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: var(--transition);
    opacity: 0;
    backdrop-filter: blur(4px);
}
.video-card:hover .l51d7 { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.bhn95i7 {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}
.y232w {
    position: absolute;
    top: 8px; left: 8px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.k6xr8ebw { padding: 14px 16px 16px; }
.k6xr8ebw h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.k6xr8ebw h3 a:hover { color: var(--primary); }
.odxol4sh {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
.odxol4sh span { display: flex; align-items: center; gap: 4px; }
.odxol4sh .icon { font-size: 12px; }
.jbpbqa {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.jbpbqa img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.jbpbqa .name { font-size: 13px; color: var(--text-muted); }
.jbpbqa .name strong { color: var(--text-main); font-weight: 600; }

/* 视频缩略图占位 */
.kvom1h {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* =============================================
   分类标签栏
   ============================================= */
.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cat-tab {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}
.cat-tab:hover, .cat-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(232,57,106,0.3);
}

/* =============================================
   功能模块卡片
   ============================================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(232,57,106,0.1), rgba(245,166,35,0.1));
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   专家展示
   ============================================= */
.7xprrke {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hik3eq {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
    text-align: center;
}
.hik3eq:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mt5ty {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--dark3));
}
.mt5ty img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.expert-avatar-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, var(--dark), var(--dark3));
}
.expert-body { padding: 20px 16px; }
.expert-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.expert-body .role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.expert-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.expert-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.expert-tag {
    font-size: 11px;
    padding: 2px 8px;
    background: rgba(232,57,106,0.08);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
}
.expert-actions { display: flex; gap: 8px; justify-content: center; }
.btn-sm {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-sm-primary { background: var(--primary); color: #fff; }
.btn-sm-primary:hover { background: var(--primary-dark); }
.btn-sm-outline { border: 1px solid var(--primary); color: var(--primary); }
.btn-sm-outline:hover { background: var(--primary); color: #fff; }

/* =============================================
   合作品牌 Logo 墙
   ============================================= */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}
.partner-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.partner-item:hover { border-color: var(--primary); color: var(--primary); transform: scale(1.05); box-shadow: var(--shadow); }
.partner-item .p-icon { font-size: 28px; margin-bottom: 8px; }

/* =============================================
   用户评价
   ============================================= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); border-color: rgba(232,57,106,0.2); }
.review-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 20px;
    font-size: 60px;
    color: rgba(232,57,106,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars span { color: var(--gold); font-size: 16px; }
.review-text { font-size: 14px; color: var(--text-main); line-height: 1.8; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author .avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.review-author .info .name { font-size: 14px; font-weight: 700; color: var(--text-main); }
.review-author .info .meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: #27AE60; font-weight: 600; margin-top: 6px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: rgba(232,57,106,0.3); box-shadow: 0 4px 20px rgba(232,57,106,0.1); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}
.faq-question h3 { font-size: 16px; font-weight: 600; color: var(--text-main); flex: 1; }
.faq-item.open .faq-question h3 { color: var(--primary); }
.faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(232,57,106,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* =============================================
   联系我们 / 二维码区
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-info-item .ci-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232,57,106,0.1), rgba(245,166,35,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-item .ci-text .label { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.contact-info-item .ci-text .value { font-size: 15px; font-weight: 600; color: var(--text-main); }
.6h3k2 { display: flex; gap: 24px; justify-content: center; }
.cibzgt { text-align: center; }
.cibzgt img { width: 140px; height: 140px; border-radius: 12px; border: 3px solid var(--border); margin-bottom: 10px; }
.cibzgt .g39vvegj { font-size: 13px; font-weight: 600; color: var(--text-main); }
.cibzgt .pm10emf { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* =============================================
   社区入口
   ============================================= */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.community-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}
.community-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.community-card .cc-icon { font-size: 40px; margin-bottom: 14px; }
.community-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.community-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.community-card .cc-count { font-size: 22px; font-weight: 800; color: var(--primary); margin-top: 12px; }
.community-card .cc-count span { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* =============================================
   How-To 加入指南
   ============================================= */
.howto-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.howto-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 0;
}
.howto-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(232,57,106,0.35);
}
.howto-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.howto-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   社交分享
   ============================================= */
.ild15vj6 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.4ifzx9 { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    color: #fff;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.2ug1vo { background: #07C160; }
.ak2cjk { background: #E6162D; }
.g701u { background: #010101; }
.xa1om8 { background: #00A1D6; }
.share-qq { background: #12B7F5; }

/* =============================================
   底部 Footer
   ============================================= */
#site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}
.keuw9r71 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.8gj7un9 .logo-wrap { margin-bottom: 16px; }
.8gj7un9 p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.07hu7rmd h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.07hu7rmd h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 1px;
}
.to4b07 { display: flex; flex-direction: column; gap: 10px; }
.to4b07 a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.to4b07 a:hover { color: var(--primary-light); padding-left: 4px; }
.8uck9lv7 {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.8uck9lv7 a { color: rgba(255,255,255,0.55); }
.8uck9lv7 a:hover { color: var(--primary-light); }
.ecpgvl8 { height: 36px; filter: brightness(0) invert(1) opacity(0.8); }

/* =============================================
   内页通用
   ============================================= */
.feaow {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feaow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero_banner.png') center/cover no-repeat;
    opacity: 0.15;
}
.tqucym { position: relative; z-index: 1; }
.feaow h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.feaow p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* 视频播放器页 */
.video-player-wrap {
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    margin-bottom: 24px;
}
.video-player-wrap video, .video-player-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* 侧边栏 */
.content-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    color: var(--text-main);
}
.sidebar-widget h3 span { color: var(--primary); }

/* =============================================
   AI 赋能区块
   ============================================= */
.ai-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, var(--purple) 100%);
    position: relative;
    overflow: hidden;
}
.ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/ai_banner.png') center/cover no-repeat;
    opacity: 0.2;
}
.ai-section .container { position: relative; z-index: 1; }
.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ai-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.ai-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.ai-card .ai-icon { font-size: 36px; margin-bottom: 16px; }
.ai-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ai-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.ai-card .ai-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    padding: 3px 10px;
    background: rgba(232,57,106,0.25);
    color: var(--primary-light);
    border-radius: 10px;
    font-weight: 600;
}

/* =============================================
   统计数字
   ============================================= */
.a4nl6bo {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    padding: 50px 0;
}
.hu2zu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.kc0a74 .num { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.kc0a74 .label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* =============================================
   直播区
   ============================================= */
.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.live-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.live-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.live-thumb {
    position: relative;
    padding-top: 75%;
    background: var(--dark);
    overflow: hidden;
}
.live-thumb-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.live-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: #E53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.live-badge .dot { width: 5px; height: 5px; background: #fff; border-radius: 50%; animation: pulse 1s infinite; }
.live-viewers {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 4px;
}
.live-info { padding: 12px 14px; }
.live-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.live-info .host { font-size: 12px; color: var(--text-muted); }

/* =============================================
   响应式
   ============================================= */
@media (max-width: 1200px) {
    .ehruex { grid-template-columns: repeat(3, 1fr); }
    .7xprrke { grid-template-columns: repeat(3, 1fr); }
    .partner-grid { grid-template-columns: repeat(4, 1fr); }
    .keuw9r71 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .rqxzel, .ehruex { grid-template-columns: repeat(2, 1fr); }
    .ai-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: repeat(2, 1fr); }
    .howto-steps { grid-template-columns: repeat(2, 1fr); }
    .howto-steps::before { display: none; }
    .hu2zu { grid-template-columns: repeat(2, 1fr); }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
    .content-sidebar-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,26,46,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 20px; z-index: 9999; }
    .main-nav.open { display: flex; }
    .main-nav a { font-size: 20px; color: #fff; }
    .hamburger { display: flex; }
    .header-right .btn-login, .header-right .btn-join { display: none; }
    .yrdk6k { gap: 20px; }
    .feature-grid { grid-template-columns: 1fr; }
    .dkzwc, .rqxzel, .ehruex { grid-template-columns: repeat(2, 1fr); }
    .7xprrke { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
    .keuw9r71 { grid-template-columns: 1fr; }
    .8uck9lv7 { flex-direction: column; text-align: center; }
    .review-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: repeat(2, 1fr); }
    .howto-steps { grid-template-columns: 1fr; }
    .hu2zu { grid-template-columns: repeat(2, 1fr); }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
    .qavmy { padding: 50px 0; }
    .section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .dkzwc, .rqxzel, .ehruex { grid-template-columns: 1fr; }
    .7xprrke { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: 1fr; }
    .live-grid { grid-template-columns: 1fr; }
    .yrdk6k { flex-wrap: wrap; gap: 16px; }
    .nqb8a { flex-direction: column; }
    .search-inner { flex-direction: column; }
}

/* =============================================
   加载动画
   ============================================= */
.lazy-load { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.lazy-load.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   弹幕效果
   ============================================= */
.danmu-wrap {
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,0.03);
    border-radius: var(--radius);
    padding: 10px 0;
    margin-bottom: 20px;
    height: 40px;
}
.danmu-item {
    position: absolute;
    white-space: nowrap;
    font-size: 14px;
    color: var(--text-muted);
    animation: danmu-move 12s linear infinite;
    top: 50%;
    transform: translateY(-50%);
}
@keyframes danmu-move { from { left: 100%; } to { left: -100%; } }

/* =============================================
   专家团队内页
   ============================================= */
.hik3eq {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    align-items: flex-start;
}
.hik3eq:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,57,106,0.2); }
.mt5ty {
    width: 80px; height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.tq6it7nr { flex: 1; }
.tq6it7nr h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: var(--text-main); }
.suev02ge { font-size: 13px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.tq6it7nr p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.jzksa { display: flex; gap: 16px; flex-wrap: wrap; }
.jzksa span { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* =============================================
   MCP 前端标记
   ============================================= */
.mcp-widget {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

/* =============================================
   Footer 补充样式（新增类，替代内联style）
   ============================================= */
.s7fuj { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.s7fuj a { color: var(--gold); }
.l7puk { margin-top: 20px; }
.f1le8m {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
}
.r1q3j2z { color: var(--gold); font-weight: 600; }
.sgxos3w { color: rgba(255,255,255,0.6); }
.hfqctez7 { color: rgba(255,255,255,0.45); }
.p1llohe { font-size: 13px; color: rgba(255,255,255,0.4); }
.x0zeoa { display: flex; align-items: center; gap: 16px; }
.x0zeoa a { font-size: 12px; color: rgba(255,255,255,0.45); }
.x0zeoa a:hover { color: var(--primary-light); }

/* =============================================
   搜索热词标签
   ============================================= */
.search-hot-label { color: rgba(255,255,255,0.5); font-size: 12px; }

/* =============================================
   视频详情页内联样式外置
   ============================================= */
.vidaf { padding-top: 30px; }
.540wkbv3 {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.540wkbv3 h1 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}
.pkite {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pkite span { font-size: 14px; color: var(--text-muted); }
.video-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.video-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.video-author-name { font-size: 15px; font-weight: 700; }
.video-author-cert { font-size: 13px; color: var(--text-muted); }
.video-follow-btn {
    margin-left: auto;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.video-follow-btn:hover { background: var(--primary-dark); }
.9ent6 {
    margin-top: 16px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 8px;
}
.9ent6 p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.ckepm {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px 24px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.6sz9i {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}
.awillhq {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.182rp {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.4uekht07 { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* =============================================
   视频嵌入播放区（首页 VideoObject 可见播放器）
   ============================================= */
.farurscj {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}
.farurscj video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    background: #000;
}
.ad2qbj {
    padding: 16px 20px;
    background: var(--dark2);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ad2qbj h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}
.ad2qbj .badge {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
}

/* =============================================
   面包屑结构化数据增强（BreadcrumbList）
   ============================================= */
.hblq3er[itemscope] { }
.hblq3er li[itemprop="itemListElement"] { display: inline-flex; align-items: center; }

/* =============================================
   about页 Organization 信号增强
   ============================================= */
.org-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.org-cert-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.org-cert-item:hover { box-shadow: var(--shadow); }
.org-cert-icon { font-size: 36px; margin-bottom: 10px; }
.org-cert-title { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.org-cert-desc { font-size: 13px; color: var(--text-muted); }

/* =============================================
   视频卡片 thumbnailUrl 图片占位增强
   ============================================= */
.kvom1h {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* =============================================
   响应式补充
   ============================================= */
@media (max-width: 768px) {
    .org-cert-grid { grid-template-columns: 1fr; }
    .pkite { gap: 12px; }
    .video-author-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .org-cert-grid { grid-template-columns: 1fr; }
    .x0zeoa { flex-direction: column; gap: 8px; }
}

/* =============================================
   首页视频卡片 - 头像颜色类（替代内联style）
   ============================================= */
.0er0gn {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 12px; font-weight: 700;
    flex-shrink: 0;
}
.bamj0i { background: linear-gradient(135deg,#E8396A,#F5A623); }
.kjn32 { background: linear-gradient(135deg,#6B2FA0,#2980B9); }
.364zl { background: linear-gradient(135deg,#E8396A,#F5A623); }
.m0sy9 { background: linear-gradient(135deg,#F5A623,#E8396A); }
.av-c5 { background: linear-gradient(135deg,#16213E,#0F3460); }
.av-c6 { background: linear-gradient(135deg,#9B59B6,#E8396A); }
.av-c7 { background: linear-gradient(135deg,#27AE60,#F5A623); }
.av-c8 { background: linear-gradient(135deg,#2980B9,#6B2FA0); }

/* 视频卡片缩略图颜色类 */
.fdgvxc { background: linear-gradient(135deg,#1A1A2E,#E8396A); }
.x3597t { background: linear-gradient(135deg,#0F3460,#6B2FA0); }
.32tagc { background: linear-gradient(135deg,#E8396A,#FF6B9D); }
.8jmd5iq { background: linear-gradient(135deg,#F5A623,#E8396A); }
.cqh92m { background: linear-gradient(135deg,#16213E,#0F3460); }
.3pwqj { background: linear-gradient(135deg,#9B59B6,#E8396A); }
.e2245 { background: linear-gradient(135deg,#27AE60,#F5A623); }
.tix5tcz { background: linear-gradient(135deg,#2980B9,#6B2FA0); }

/* 直播卡片背景颜色类 */
.live-bg-c1 { background: linear-gradient(135deg,#E8396A,#F5A623); }
.live-bg-c2 { background: linear-gradient(135deg,#6B2FA0,#2980B9); }
.live-bg-c3 { background: linear-gradient(135deg,#27AE60,#F5A623); }
.live-bg-c4 { background: linear-gradient(135deg,#E8396A,#9B59B6); }
.live-badge-voice { background: #6B2FA0; }

/* AI区 section-tag/title/desc 白色版本 */
.r0lvkxd {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.hub8hb { color: #fff; }
.ppa2j8 { color: rgba(255,255,255,0.7); }

/* 弹幕区背景 */
.zrhkyz {
    background: var(--dark2);
    padding: 6px 0;
}

/* 分享区 */
.81je7oz { padding: 30px 0; }
.rrxa2l5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.36t73k6c h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.36t73k6c p { font-size: 14px; color: var(--text-muted); }

/* 联系区二维码图片 */
.53kyy { border-radius: 12px; border: 3px solid var(--border); }
.contact-qr-wrap { text-align: center; }
.contact-social-box {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-social-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.contact-social-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.contact-social-btns a {
    padding: 8px 16px;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.csb-qq      { background: #12B7F5; }
.csb-wechat  { background: #07C160; }
.csb-app     { background: var(--dark); }
.contact-social-btns a:hover { opacity: 0.85; }

/* 专家卡片头像颜色 */
.expert-av-1 .mt5ty,
.expert-av-2 .mt5ty,
.expert-av-3 .mt5ty,
.expert-av-4 .mt5ty { }

@media (max-width: 768px) {
    .rrxa2l5 { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   补充样式 v2 - 修复内联样式移除后的空缺
   ============================================================ */

/* --- 通用工具类 --- */
.section-title-left { text-align: left; }
.link-primary { color: var(--primary); text-decoration: none; }
.link-primary:hover { text-decoration: underline; }
.text-gold { color: var(--gold); font-weight: 700; }
.text-muted { color: var(--text-muted); font-size: 13px; }
.badge { background: var(--primary); color: #fff; padding: 3px 10px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.badge-green { background: rgba(39,174,96,0.85); color: #fff; padding: 3px 10px; border-radius: 10px; font-size: 12px; font-weight: 600; }
.badge-red   { background: rgba(232,57,106,0.85); color: #fff; padding: 3px 10px; border-radius: 10px; font-size: 12px; font-weight: 600; }

/* --- 视频详情页 --- */
.vidaf { padding-top: 30px; }
.540wkbv3 { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); margin-top: 20px; }
.540wkbv3 h1 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.pkite { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.pkite span { font-size: 14px; color: var(--text-muted); }
.9ent6 { margin-top: 16px; }
.9ent6 p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.lwh063h { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.ckepm { margin-top: 20px; }
.ild15vj6 { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.4ifzx9 { font-size: 14px; color: var(--text-muted); }
.share-btn { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; transition: opacity .2s; }
.share-btn:hover { opacity: .85; }
.2ug1vo   { background: #07c160; }
.ak2cjk    { background: #e6162d; }
.g701u   { background: #010101; }
.xa1om8 { background: #00a1d6; }

/* --- 选集 --- */
.jfd8s0bw { margin-top: 20px; }
.jfd8s0bw h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.74tiyh { display: flex; flex-wrap: wrap; gap: 8px; }
.703tkf9v { width: 52px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--bg-light); color: var(--text-main); border-radius: 6px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); text-decoration: none; transition: var(--transition); }
.703tkf9v:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.i94ti { background: var(--primary); color: #fff; border-color: var(--primary); }
.5k262i { display: flex; align-items: center; font-size: 13px; color: var(--text-muted); }

/* --- 侧边栏相关视频 --- */
.6sz9i { display: flex; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.awillhq { width: 80px; height: 50px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.182rp { font-size: 13px; font-weight: 600; color: var(--text-main); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.4uekht07 { font-size: 12px; margin-top: 3px; }

/* --- 缩略图颜色类 --- */
.fdgvxc { background: linear-gradient(135deg,#E8396A,#FF6B9D); }
.x3597t { background: linear-gradient(135deg,#1A1A2E,#6B2FA0); }
.32tagc { background: linear-gradient(135deg,#F5A623,#E8396A); }
.8jmd5iq { background: linear-gradient(135deg,#27AE60,#F5A623); }
.cqh92m { background: linear-gradient(135deg,#9B59B6,#E8396A); }
.3pwqj { background: linear-gradient(135deg,#0F3460,#2980B9); }
.e2245 { background: linear-gradient(135deg,#27AE60,#1A1A2E); }
.tix5tcz { background: linear-gradient(135deg,#E8396A,#9B59B6); }

/* --- 社区话题卡片 --- */
.qnr93n { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.wuj46 { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); transition: var(--transition); }
.wuj46:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.5w818tfs { font-size: 24px; margin-bottom: 10px; }
.wuj46 h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.wuj46 p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.hbto6z9r { font-size: 13px; font-weight: 600; color: var(--text-main); }

/* --- 社区CTA --- */
.tjn225 { background: linear-gradient(135deg,var(--primary),var(--gold)); padding: 60px 0; text-align: center; }
.e3zydr0 h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.e3zydr0 p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.3cds7xf { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.bmbtw { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.sljjipyp { text-align: center; color: rgba(255,255,255,0.9); }
.sljjipyp .num { font-size: 28px; font-weight: 800; }
.sljjipyp .label { font-size: 14px; margin-top: 4px; }

/* --- 创作工具卡片 --- */
.ljlyem { background: rgba(232,57,106,0.05); border-color: rgba(232,57,106,0.15); }
.o66yq7 { background: rgba(232,57,106,0.1); color: var(--primary); }

/* --- 关于页 --- */
.etg7h { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.etg7h p { font-size: 16px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.iokqsl { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* --- 时间线 --- */
.yzec2s3y { max-width: 800px; margin: 0 auto; }
.0rwi8i { display: flex; gap: 24px; margin-bottom: 32px; }
.z25hdw { flex-shrink: 0; text-align: center; }
.4cdqn8h { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 800; }
.kfis9pai { width: 2px; height: 40px; background: var(--border); margin: 8px auto; }
.cjvwa2tm { padding-top: 14px; }
.cjvwa2tm p { font-size: 15px; color: var(--text-main); line-height: 1.8; }

/* --- 荣誉卡片 --- */
.t45uy { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ppsjnh { background: #fff; border-radius: var(--radius); padding: 24px; text-align: center; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: var(--transition); }
.ppsjnh:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.37p2q { font-size: 40px; margin-bottom: 14px; }
.ppsjnh h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.ppsjnh p { font-size: 13px; color: var(--primary); font-weight: 600; }

/* --- 联系页 --- */
.6h3k2 { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.cibzgt { text-align: center; }
.g39vvegj { margin-top: 10px; font-size: 15px; font-weight: 700; }
.pm10emf { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.4qbrp { background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.4qbrp h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--text-main); }
.r7m94t9 { background: #fff; border-radius: var(--radius); height: 200px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); margin-bottom: 16px; font-size: 40px; color: var(--text-light); }
.4qbrp p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.40b0z { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.40b0z span { font-size: 13px; padding: 4px 12px; background: rgba(232,57,106,0.08); color: var(--primary); border-radius: 10px; font-weight: 600; }

/* --- 专家页 --- */
.el75k2   { background: linear-gradient(135deg,var(--primary),var(--gold)); }
.m0qlf { background: linear-gradient(135deg,#6B2FA0,#2980B9); }
.mt5ty span { font-size: 40px; }
.w1a8d { background: linear-gradient(135deg,var(--primary),var(--gold)); text-align: center; padding: 60px 0; }
.o3dexbl h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.o3dexbl p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.btn-white { display: inline-block; padding: 14px 40px; background: #fff; color: var(--primary); border-radius: 30px; font-size: 16px; font-weight: 700; box-shadow: 0 6px 25px rgba(0,0,0,0.15); text-decoration: none; transition: var(--transition); }
.btn-white:hover { opacity: .9; }

/* --- 补充响应式 --- */
@media (max-width: 992px) {
    .etg7h { grid-template-columns: 1fr; gap: 30px; }
    .t45uy { grid-template-columns: repeat(2,1fr); }
    .qnr93n { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .t45uy { grid-template-columns: 1fr 1fr; }
    .qnr93n { grid-template-columns: 1fr; }
    .e3zydr0 h2 { font-size: 26px; }
    .bmbtw { gap: 20px; }
    .0rwi8i { gap: 14px; }
    .4cdqn8h { width: 48px; height: 48px; font-size: 11px; }
    .6h3k2 { gap: 20px; }
    .pkite { gap: 10px; }
    .703tkf9v { width: 44px; height: 32px; font-size: 12px; }
}
@media (max-width: 480px) {
    .t45uy { grid-template-columns: 1fr; }
    .share-btn { padding: 5px 12px; font-size: 12px; }
}
