/* =============================================
   少妇 - 主样式表
   Brand: 少妇 | Domain: wopz4L.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); }

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

/* =============================================
   Hero 区域
   ============================================= */
.5p3tyklr {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.ox563bu {
    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;
}
.5p3tyklr:hover .ox563bu { transform: scale(1); }
.c735lv1r {
    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%);
}
.ee1nrb6 {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 680px;
}
.65yv2 {
    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);
}
.65yv2 .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)} }
.ee1nrb6 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);
}
.ee1nrb6 h1 .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ee1nrb6 p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}
.5zj48kz { 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; }
.qw945jsq {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.x6o1tqgm { text-align: center; }
.x6o1tqgm .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;
}
.x6o1tqgm .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* =============================================
   通用区块
   ============================================= */
.section { padding: 70px 0; }
.bht9gipk { background: var(--bg-light); }
.5yxbv4 { background: var(--dark); }
.ibcpvetq { text-align: center; margin-bottom: 50px; }
.9opb2pz {
    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;
}
.r3ntq9zx {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 14px;
}
.r3ntq9zx .accent {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lcjq8e6d { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.5yxbv4 .r3ntq9zx { color: #fff; }
.5yxbv4 .lcjq8e6d { color: rgba(255,255,255,0.6); }

/* 更多按钮 */
.4h5dc { 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); }

/* =============================================
   视频卡片
   ============================================= */
.aglbn3bh {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.wrxm1cx { grid-template-columns: repeat(4, 1fr); }
.qxv6ow { 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);
}
.u2rabwr {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--dark);
}
.u2rabwr img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .u2rabwr img { transform: scale(1.08); }
.2wds96ep {
    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 .2wds96ep { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.bn6ke {
    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;
}
.zook7 {
    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;
}
.vo7uqs { padding: 14px 16px 16px; }
.vo7uqs 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;
}
.vo7uqs h3 a:hover { color: var(--primary); }
.gu48wa {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
.gu48wa span { display: flex; align-items: center; gap: 4px; }
.gu48wa .icon { font-size: 12px; }
.r3o3j7rh {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.r3o3j7rh img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.r3o3j7rh .name { font-size: 13px; color: var(--text-muted); }
.r3o3j7rh .name strong { color: var(--text-main); font-weight: 600; }

/* 视频缩略图占位 */
.b8d0c2u {
    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; }

/* =============================================
   专家展示
   ============================================= */
.jz0uxusf {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.r9q6emes {
    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;
}
.r9q6emes:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.2wnne {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--dark3));
}
.2wnne 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); }
.1k1u2 { display: flex; gap: 24px; justify-content: center; }
.izrd6 { text-align: center; }
.izrd6 img { width: 140px; height: 140px; border-radius: 12px; border: 3px solid var(--border); margin-bottom: 10px; }
.izrd6 .tpoicuv { font-size: 13px; font-weight: 600; color: var(--text-main); }
.izrd6 .n2p6g { 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; }

/* =============================================
   社交分享
   ============================================= */
.mwd98m3r {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hcqxf { 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; }
.llf9t { background: #07C160; }
.ed1ck53 { background: #E6162D; }
.3o0hj { background: #010101; }
.5mrvrs2r { background: #00A1D6; }
.share-qq { background: #12B7F5; }

/* =============================================
   底部 Footer
   ============================================= */
#site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}
.ev717o43 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.xfsg3b5d .logo-wrap { margin-bottom: 16px; }
.xfsg3b5d p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.e57gp h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.e57gp h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 1px;
}
.ga8ya { display: flex; flex-direction: column; gap: 10px; }
.ga8ya a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.ga8ya a:hover { color: var(--primary-light); padding-left: 4px; }
.8ouit2 {
    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);
}
.8ouit2 a { color: rgba(255,255,255,0.55); }
.8ouit2 a:hover { color: var(--primary-light); }
.go4v6 { height: 36px; filter: brightness(0) invert(1) opacity(0.8); }

/* =============================================
   内页通用
   ============================================= */
.y9vu0xty {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.y9vu0xty::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero_banner.png') center/cover no-repeat;
    opacity: 0.15;
}
.44oma3 { position: relative; z-index: 1; }
.y9vu0xty h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.y9vu0xty 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;
}

/* =============================================
   统计数字
   ============================================= */
.8zbq5c {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    padding: 50px 0;
}
.yocvnk {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.upyjac .num { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.upyjac .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) {
    .wrxm1cx { grid-template-columns: repeat(3, 1fr); }
    .jz0uxusf { grid-template-columns: repeat(3, 1fr); }
    .partner-grid { grid-template-columns: repeat(4, 1fr); }
    .ev717o43 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .qxv6ow, .wrxm1cx { 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; }
    .yocvnk { 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; }
    .qw945jsq { gap: 20px; }
    .feature-grid { grid-template-columns: 1fr; }
    .aglbn3bh, .qxv6ow, .wrxm1cx { grid-template-columns: repeat(2, 1fr); }
    .jz0uxusf { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
    .ev717o43 { grid-template-columns: 1fr; }
    .8ouit2 { 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; }
    .yocvnk { grid-template-columns: repeat(2, 1fr); }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
    .ee1nrb6 { padding: 50px 0; }
    .section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .aglbn3bh, .qxv6ow, .wrxm1cx { grid-template-columns: 1fr; }
    .jz0uxusf { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: 1fr; }
    .live-grid { grid-template-columns: 1fr; }
    .qw945jsq { flex-wrap: wrap; gap: 16px; }
    .5zj48kz { 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%; } }

/* =============================================
   专家团队内页
   ============================================= */
.r9q6emes {
    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;
}
.r9q6emes:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,57,106,0.2); }
.2wnne {
    width: 80px; height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.74qmzvfd { flex: 1; }
.74qmzvfd h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: var(--text-main); }
.uovpc { font-size: 13px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.74qmzvfd p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.nld0ii7y { display: flex; gap: 16px; flex-wrap: wrap; }
.nld0ii7y 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）
   ============================================= */
.cls7yrh { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.cls7yrh a { color: var(--gold); }
.l2970 { margin-top: 20px; }
.q4g2zt {
    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;
}
.cu3wif { color: var(--gold); font-weight: 600; }
.vo2c0mt { color: rgba(255,255,255,0.6); }
.n05d4d9 { color: rgba(255,255,255,0.45); }
.0j2dut { font-size: 13px; color: rgba(255,255,255,0.4); }
.7x13d { display: flex; align-items: center; gap: 16px; }
.7x13d a { font-size: 12px; color: rgba(255,255,255,0.45); }
.7x13d a:hover { color: var(--primary-light); }

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

/* =============================================
   视频详情页内联样式外置
   ============================================= */
.83c89 { padding-top: 30px; }
.g166u1w {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.g166u1w h1 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}
.jqcfn {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.jqcfn 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); }
.5jsrj0 {
    margin-top: 16px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 8px;
}
.5jsrj0 p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.4bjdi6ri {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px 24px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.nxoeu {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}
.3d4c5 {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.27eq7jx1 {
    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;
}
.803sw { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

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

/* =============================================
   面包屑结构化数据增强（BreadcrumbList）
   ============================================= */
.6b6y0z9[itemscope] { }
.6b6y0z9 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 图片占位增强
   ============================================= */
.b8d0c2u {
    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; }
    .jqcfn { gap: 12px; }
    .video-author-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .org-cert-grid { grid-template-columns: 1fr; }
    .7x13d { flex-direction: column; gap: 8px; }
}

/* =============================================
   首页视频卡片 - 头像颜色类（替代内联style）
   ============================================= */
.lxn7d {
    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;
}
.pided3 { background: linear-gradient(135deg,#E8396A,#F5A623); }
.bzw4xw5 { background: linear-gradient(135deg,#6B2FA0,#2980B9); }
.l5pr5 { background: linear-gradient(135deg,#E8396A,#F5A623); }
.o0l2hld { 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); }

/* 视频卡片缩略图颜色类 */
.f9lsda { background: linear-gradient(135deg,#1A1A2E,#E8396A); }
.n4atefj { background: linear-gradient(135deg,#0F3460,#6B2FA0); }
.b7ki9 { background: linear-gradient(135deg,#E8396A,#FF6B9D); }
.6q21kg1u { background: linear-gradient(135deg,#F5A623,#E8396A); }
.mngf1z { background: linear-gradient(135deg,#16213E,#0F3460); }
.239rceor { background: linear-gradient(135deg,#9B59B6,#E8396A); }
.y43kx { background: linear-gradient(135deg,#27AE60,#F5A623); }
.akn4cu { 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 白色版本 */
.z4d33k {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.gai5jja1 { color: #fff; }
.36hu9h { color: rgba(255,255,255,0.7); }

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

/* 分享区 */
.kcjwhyhv { padding: 30px 0; }
.l5vqf {
    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);
}
.uqomz79 h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.uqomz79 p { font-size: 14px; color: var(--text-muted); }

/* 联系区二维码图片 */
.0tz7pvqs { 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 .2wnne,
.expert-av-2 .2wnne,
.expert-av-3 .2wnne,
.expert-av-4 .2wnne { }

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

/* --- 视频详情页 --- */
.83c89 { padding-top: 30px; }
.g166u1w { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); margin-top: 20px; }
.g166u1w h1 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.jqcfn { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.jqcfn span { font-size: 14px; color: var(--text-muted); }
.5jsrj0 { margin-top: 16px; }
.5jsrj0 p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.no70x { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.4bjdi6ri { margin-top: 20px; }
.mwd98m3r { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hcqxf { 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; }
.llf9t   { background: #07c160; }
.ed1ck53    { background: #e6162d; }
.3o0hj   { background: #010101; }
.5mrvrs2r { background: #00a1d6; }

/* --- 选集 --- */
.pywsliq { margin-top: 20px; }
.pywsliq h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.4iici4j { display: flex; flex-wrap: wrap; gap: 8px; }
.1orza { 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); }
.1orza:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.6nqlgbz { background: var(--primary); color: #fff; border-color: var(--primary); }
.gzrnp { display: flex; align-items: center; font-size: 13px; color: var(--text-muted); }

/* --- 侧边栏相关视频 --- */
.nxoeu { display: flex; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.3d4c5 { width: 80px; height: 50px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.27eq7jx1 { 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; }
.803sw { font-size: 12px; margin-top: 3px; }

/* --- 缩略图颜色类 --- */
.f9lsda { background: linear-gradient(135deg,#E8396A,#FF6B9D); }
.n4atefj { background: linear-gradient(135deg,#1A1A2E,#6B2FA0); }
.b7ki9 { background: linear-gradient(135deg,#F5A623,#E8396A); }
.6q21kg1u { background: linear-gradient(135deg,#27AE60,#F5A623); }
.mngf1z { background: linear-gradient(135deg,#9B59B6,#E8396A); }
.239rceor { background: linear-gradient(135deg,#0F3460,#2980B9); }
.y43kx { background: linear-gradient(135deg,#27AE60,#1A1A2E); }
.akn4cu { background: linear-gradient(135deg,#E8396A,#9B59B6); }

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

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

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

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

/* --- 时间线 --- */
.t9s6q { max-width: 800px; margin: 0 auto; }
.2k55ar { display: flex; gap: 24px; margin-bottom: 32px; }
.awle5i { flex-shrink: 0; text-align: center; }
.1k2heg { 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; }
.8boc7 { width: 2px; height: 40px; background: var(--border); margin: 8px auto; }
.59ckfw { padding-top: 14px; }
.59ckfw p { font-size: 15px; color: var(--text-main); line-height: 1.8; }

/* --- 荣誉卡片 --- */
.c4k0pc { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.deit1 { 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); }
.deit1:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.1h43hj { font-size: 40px; margin-bottom: 14px; }
.deit1 h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.deit1 p { font-size: 13px; color: var(--primary); font-weight: 600; }

/* --- 联系页 --- */
.1k1u2 { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.izrd6 { text-align: center; }
.tpoicuv { margin-top: 10px; font-size: 15px; font-weight: 700; }
.n2p6g { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.7b0p8 { background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.7b0p8 h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--text-main); }
.483ia { 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); }
.7b0p8 p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.vdnq2w { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.vdnq2w span { font-size: 13px; padding: 4px 12px; background: rgba(232,57,106,0.08); color: var(--primary); border-radius: 10px; font-weight: 600; }

/* --- 专家页 --- */
.fctkw   { background: linear-gradient(135deg,var(--primary),var(--gold)); }
.hwvz4o { background: linear-gradient(135deg,#6B2FA0,#2980B9); }
.2wnne span { font-size: 40px; }
.4afrvkbo { background: linear-gradient(135deg,var(--primary),var(--gold)); text-align: center; padding: 60px 0; }
.ybx9sq h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.ybx9sq 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) {
    .ocm9xyh { grid-template-columns: 1fr; gap: 30px; }
    .c4k0pc { grid-template-columns: repeat(2,1fr); }
    .doz7r { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .c4k0pc { grid-template-columns: 1fr 1fr; }
    .doz7r { grid-template-columns: 1fr; }
    .l7lf8i7 h2 { font-size: 26px; }
    .6d9ru2o { gap: 20px; }
    .2k55ar { gap: 14px; }
    .1k2heg { width: 48px; height: 48px; font-size: 11px; }
    .1k1u2 { gap: 20px; }
    .jqcfn { gap: 10px; }
    .1orza { width: 44px; height: 32px; font-size: 12px; }
}
@media (max-width: 480px) {
    .c4k0pc { grid-template-columns: 1fr; }
    .share-btn { padding: 5px 12px; font-size: 12px; }
}
