/* =============================================
   女神视频传媒 - 主样式文件
   cvyxgta.cn
   ============================================= */

/* === 基础重置 === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #e8192c;
    --primary-dark: #b5101e;
    --primary-light: #ff4d5e;
    --secondary: #1db954;
    --secondary-dark: #158a3e;
    --accent: #ff6b35;
    --dark: #0d0d0d;
    --dark-2: #1a1a1a;
    --dark-3: #242424;
    --dark-4: #2e2e2e;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-main: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    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;
    outline: none;
    font-family: var(--font-main);
}

input, textarea, select {
    font-family: var(--font-main);
    outline: none;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* === 顶部公告栏 === */
.t7tve7zs {
    background: var(--dark);
    color: var(--gray-light);
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid var(--dark-4);
}

.t7tve7zs .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t7tve7zs-left span {
    margin-right: 16px;
}

.t7tve7zs-left a {
    color: var(--primary-light);
}

.t7tve7zs-right a {
    color: var(--gray-light);
    margin-left: 12px;
    font-size: 12px;
}

.t7tve7zs-right a:hover {
    color: var(--white);
}

/* === 头部导航 === */
.w3hknhiz {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.7v7xpt1m {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.n4ghiwx {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.n4ghiwx img {
    height: 44px;
    width: auto;
}

.n4ghiwx .jtx40p {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.n4ghiwx .kbuieg {
    font-size: 11px;
    color: var(--gray);
    display: block;
    line-height: 1;
}

/* === 主导航 === */
.gegul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gegul > a {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    white-space: nowrap;
    position: relative;
}

.gegul > a:hover,
.gegul > a.active {
    color: var(--primary);
    background: rgba(232, 25, 44, 0.06);
}

.gegul > a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* === 搜索框 === */
.header-search {
    display: flex;
    align-items: center;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 6px 16px;
    gap: 8px;
    min-width: 220px;
    transition: var(--transition);
}

.header-search:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
}

.header-search input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text);
    flex: 1;
    min-width: 0;
}

.header-search input::placeholder {
    color: var(--gray-light);
}

.header-search button {
    background: none;
    color: var(--gray);
    font-size: 16px;
    padding: 0;
    transition: var(--transition);
}

.header-search button:hover {
    color: var(--primary);
}

/* === 搜索下方栏 === */
.nh29oaf {
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    display: none;
}

.nh29oaf .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nh29oaf input {
    flex: 1;
    padding: 10px 18px;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    font-size: 14px;
    background: var(--white);
    transition: var(--transition);
}

.nh29oaf input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
}

.nh29oaf button {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nh29oaf button:hover {
    background: var(--primary-dark);
}

/* === 汉堡菜单 === */
.7h4at0gq {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}

.7h4at0gq span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === 英雄区 === */
.icyhj {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    min-height: 500px;
}

.icyhj .u1926 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.icyhj .zh85h0 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(232,25,44,0.3) 100%);
}

.3qz8xpt {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    color: var(--white);
}

.x6x87 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,25,44,0.2);
    border: 1px solid rgba(232,25,44,0.4);
    color: #ff8a95;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
}

.x6x87::before {
    content: '';
    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); }
}

.g171cexw {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.g171cexw span {
    color: var(--primary-light);
}

.spofv4o {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.z5q2eea8 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(232,25,44,0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,25,44,0.5);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--primary);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--white);
}

/* === 统计数字 === */
.ybmrwjmq {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.cf1kl0m {
    text-align: center;
}

.44u6r3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.44u6r3 span {
    color: var(--primary-light);
}

.g5scq3 {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* === 通用区块 === */
.section {
    padding: 64px 0;
}

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

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.qkoze9x {
    text-align: center;
    margin-bottom: 48px;
}

.wr2y0w {
    display: inline-block;
    background: rgba(232,25,44,0.1);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.c6ut5f {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-dark .c6ut5f {
    color: var(--white);
}

.1a7zx0 {
    font-size: 15px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .1a7zx0 {
    color: rgba(255,255,255,0.7);
}

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

.3xf1t {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.3z1n59s {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark-3);
}

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

.3xf1t:hover .3z1n59s img {
    transform: scale(1.05);
}

.7rlnl {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
}

.3xf1t:hover .7rlnl {
    opacity: 1;
}

.ewt0juve {
    width: 56px;
    height: 56px;
    background: rgba(232,25,44,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(232,25,44,0.5);
}

.3xf1t:hover .ewt0juve {
    transform: scale(1);
}

.ewt0juve::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid var(--white);
    margin-left: 4px;
}

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

.6o1d1rig {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.oep83 {
    padding: 14px 16px;
}

.ofnrzrc {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ut2ebt {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
}

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

.rdcqnna {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-light);
}

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

.mowpo3e8 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.mowpo3e8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.0ptrrq {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 12px rgba(232,25,44,0.2);
}

.r1s66 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.4zc16cy {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.uoasckv {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.jfphszi {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}

.tag {
    background: rgba(232,25,44,0.08);
    color: var(--primary);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.tag-green {
    background: rgba(29,185,84,0.1);
    color: var(--secondary);
}

.tag-blue {
    background: rgba(0,120,212,0.1);
    color: #0078d4;
}

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

/* === 功能特性 === */
.8u5k70h {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.t4ft58p {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.t4ft58p:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.rld5y {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(232,25,44,0.1), rgba(232,25,44,0.05));
}

.yxbv7bb {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.kg9m20cc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === 评论区 === */
.2v1n4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.86p2m {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.86p2m:hover {
    box-shadow: var(--shadow);
    border-color: rgba(232,25,44,0.2);
}

.86p2m::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 60px;
    color: rgba(232,25,44,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.fsmdx {
    color: #ffc107;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.6z4fhl {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.ulzl8od {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.pm6qakp {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.nvgru {
    font-size: 12px;
    color: var(--gray-light);
}

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

.osk60pdl {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.osk60pdl.open {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(232,25,44,0.1);
}

.5hxmr1cg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--white);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    user-select: none;
}

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

.osk60pdl.open .5hxmr1cg {
    color: var(--primary);
    background: rgba(232,25,44,0.03);
}

.urjj9h {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.osk60pdl.open .urjj9h {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.om7vjwe {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.osk60pdl.open .om7vjwe {
    max-height: 300px;
    padding: 0 20px 18px;
}

.om7vjwe p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.l0qtxl {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
}

.l0qtxl:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
}

/* === 联系区 === */
.u3djjv2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.xf9av h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.467bvru {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.hz8jn {
    width: 36px;
    height: 36px;
    background: rgba(232,25,44,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.7wcfuk {
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 2px;
}

.2y854 {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.88xfh8o {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.8lk14 {
    text-align: center;
}

.8lk14 img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    margin: 0 auto 8px;
}

.8lk14 p {
    font-size: 12px;
    color: var(--gray);
}

/* === 社交分享 === */
.gt4xy8b {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.4e0le {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.i426rz77 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid;
    transition: var(--transition);
    cursor: pointer;
}

.share-wechat { color: #07c160; border-color: #07c160; }
.share-weibo { color: #e6162d; border-color: #e6162d; }
.share-douyin { color: #010101; border-color: #010101; }
.share-bilibili { color: #00a1d6; border-color: #00a1d6; }

.i426rz77:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.share-wechat:hover { background: #07c160; }
.share-weibo:hover { background: #e6162d; }
.share-douyin:hover { background: #010101; }
.share-bilibili:hover { background: #00a1d6; }

/* === 面包屑 === */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--gray);
}

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

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

.breadcrumb span {
    margin: 0 6px;
}

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

/* === 分页 === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* === 底部 === */
.mi11s {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 0;
}

.k7omxrm {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.xbwf8i .qhwp8di {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.xbwf8i .qhwp8di img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.xbwf8i .jtx40p {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.xbwf8i p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.92jjvmbw {
    display: flex;
    gap: 10px;
}

.w15ekz {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.w15ekz:hover {
    background: var(--primary);
    color: var(--white);
}

.7zpw2so h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.7zpw2so ul li {
    margin-bottom: 10px;
}

.7zpw2so ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.7zpw2so ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.x6z5m {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

.x6z5m a {
    color: rgba(255,255,255,0.4);
}

.x6z5m a:hover {
    color: var(--white);
}

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

/* === 内页头部 === */
.w6wk1 {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, rgba(232,25,44,0.15) 100%);
    padding: 48px 0 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.w6wk1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,25,44,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.w6wk1 h1 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 10px;
}

.w6wk1 p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
}

/* === 标签筛选 === */
.w1sj72vg {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tvqu7b {
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    background: var(--white);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.tvqu7b:hover,
.tvqu7b.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* === 侧边栏 === */
.ow7ffh {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.wpzk8 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* === 通知横幅 === */
.uh5rq {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    overflow: hidden;
}

.uh5rq .4s79maay {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100%); }
}

/* === 加载动画 === */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === 懒加载图片 === */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* === 响应式 === */
@media (max-width: 1024px) {
    .k7omxrm {
        grid-template-columns: 1fr 1fr;
    }

    .u3djjv2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .t7tve7zs { display: none; }

    .7v7xpt1m {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .gegul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 9999;
    }

    .gegul.open {
        display: flex;
    }

    .gegul > a {
        font-size: 20px;
        padding: 12px 24px;
        color: var(--white);
    }

    .gegul .close-nav {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: var(--white);
        cursor: pointer;
        background: none;
        border: none;
    }

    .7h4at0gq { display: flex; }

    .header-search {
        display: none;
    }

    .ybmrwjmq {
        gap: 24px;
    }

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

    .x6z5m {
        flex-direction: column;
        text-align: center;
    }

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

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

    .section { padding: 40px 0; }
}

@media (max-width: 480px) {
    .3qz8xpt { padding: 48px 0 40px; }
    .z5q2eea8 { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }

    .v0rv0 {
        grid-template-columns: 1fr;
    }

    .v78xv7 {
        grid-template-columns: 1fr 1fr;
    }

    .8u5k70h {
        grid-template-columns: 1fr 1fr;
    }

    .2v1n4 {
        grid-template-columns: 1fr;
    }
}

/* === 工具类 === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }
.fw-bold { font-weight: 700; }
.fw-600 { font-weight: 600; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-100 { width: 100%; }
.hidden { display: none; }
.visible { display: block; }

/* === 页面英雄区 === */
.w6wk1 {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 48px 0 40px;
    color: #fff;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .current { color: rgba(255,255,255,0.85); }
.w6wk1 h1 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 10px;
}
.w6wk1 p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
}

/* === 侧边栏 === */
.ow7ffh {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}
.wpzk8 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--text);
}

/* === 分页 === */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s;
    color: var(--text);
}
.page-btn:hover, .page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* === 联系方式 === */
.u3djjv2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.xf9av h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.467bvru {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.hz8jn { font-size: 20px; flex-shrink: 0; width: 32px; }
.7wcfuk { font-size: 12px; color: #adb5bd; margin-bottom: 2px; }
.2y854 { font-size: 14px; font-weight: 500; }
.2y854 a { color: var(--text); }
.2y854 a:hover { color: var(--primary); }

/* === 二维码 === */
.88xfh8o {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.8lk14 { text-align: center; }
.8lk14 img {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
}
.8lk14 p { font-size: 12px; color: #adb5bd; }

/* === 分享栏 === */
.gt4xy8b {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.4e0le { font-size: 13px; color: #666; }
.i426rz77 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    transition: all 0.25s;
    cursor: pointer;
}
.share-wechat:hover { background: #07c160; border-color: #07c160; color: #fff; }
.share-weibo:hover { background: #e6162d; border-color: #e6162d; color: #fff; }
.share-douyin:hover { background: #000; border-color: #000; color: #fff; }
.share-bilibili:hover { background: #00a1d6; border-color: #00a1d6; color: #fff; }

/* === 社区布局 === */
.qnx1os6,
.7udpm,
.creator-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.30hv0b {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
}
.q11ya2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* === 滤镜标签 === */
.w1sj72vg {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.tvqu7b {
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #666;
    transition: all 0.25s;
    cursor: pointer;
}
.tvqu7b:hover, .tvqu7b.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* === 公告滚动 === */
.uh5rq {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
}
.4s79maay {
    white-space: nowrap;
    font-size: 13px;
    animation: marquee 35s linear infinite;
    display: inline-block;
}
@keyframes marquee {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* === 响应式补充 === */
@media (max-width: 768px) {
    .qnx1os6,
    .7udpm,
    .creator-plan,
    .u3djjv2 { grid-template-columns: 1fr !important; }
    .30hv0b { grid-template-columns: 1fr !important; }
    .q11ya2 { grid-template-columns: 1fr 1fr !important; }
}

/* === 面包屑导航容器（内页通用）=== */
.10kddu {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    gap: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
}

.breadcrumb li.separator {
    margin: 0 6px;
    color: #ccc;
    font-size: 12px;
}

.breadcrumb li a {
    color: var(--gray);
    transition: color 0.2s;
}

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

.breadcrumb li:last-child {
    color: var(--text);
    font-weight: 500;
}

/* 深色页头内的面包屑 */
.w6wk1 .breadcrumb ol,
.w6wk1 .breadcrumb li {
    color: rgba(255,255,255,0.6);
}

.w6wk1 .breadcrumb li a {
    color: rgba(255,255,255,0.6);
}

.w6wk1 .breadcrumb li a:hover {
    color: #fff;
}

.w6wk1 .breadcrumb li:last-child {
    color: rgba(255,255,255,0.9);
}

.w6wk1 .breadcrumb li.separator {
    color: rgba(255,255,255,0.3);
}

/* === 视频卡片悬停播放按钮（H5/JS实现，CSS增强）=== */
.3xf1t .3z1n59s {
    position: relative;
    overflow: hidden;
}

.3xf1t .7rlnl {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.3xf1t:hover .7rlnl {
    opacity: 1;
    background: rgba(0,0,0,0.35);
}

.3xf1t .7rlnl .ewt0juve {
    width: 56px;
    height: 56px;
    background: rgba(232,25,44,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(232,25,44,0.5);
}

.3xf1t:hover .7rlnl .ewt0juve {
    transform: scale(1);
}

.3xf1t .7rlnl .ewt0juve::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 4px;
}

/* === 移动端响应式补充 === */
@media (max-width: 768px) {
    .qnx1os6 {
        grid-template-columns: 1fr !important;
    }
    .q11ya2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .u3djjv2 {
        grid-template-columns: 1fr !important;
    }
    .08vpclrb {
        gap: 8px;
    }
    .l0qtxl {
        font-size: 12px;
        padding: 6px 12px;
    }
    .2v1n4 {
        grid-template-columns: 1fr !important;
    }
    .v78xv7 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .k7omxrm {
        grid-template-columns: 1fr !important;
    }
    .88xfh8o {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .v78xv7 {
        grid-template-columns: 1fr !important;
    }
    .q11ya2 {
        grid-template-columns: 1fr 1fr !important;
    }
    .ybmrwjmq {
        grid-template-columns: repeat(2, 1fr);
    }
    .g171cexw {
        font-size: clamp(26px, 7vw, 48px) !important;
    }
    .c6ut5f {
        font-size: clamp(18px, 5vw, 28px) !important;
    }
}

/* === 内页 w6wk1 === */
.w6wk1 {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 50%, #1a0a0a 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.w6wk1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-banner.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.w6wk1 .container {
    position: relative;
    z-index: 1;
}

.w6wk1-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.w6wk1-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.7;
}

/* === 内页作者/更新时间信息条 === */
.828o7y4i {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--gray);
}

.828o7y4i .gg4oxe46 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.828o7y4i .ghu736 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8192c, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.828o7y4i time {
    color: var(--gray);
}

.828o7y4i .5v078r {
    color: #ddd;
}
