/* ============================================
   17c一起草 - 原创样式表
   品牌色系：活力橙 #FF6B35 / 深夜蓝 #1A1A2E / 电竞红 #E94560
   ============================================ */

/* === 基础重置 === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background-color: #0F0F1A;
    color: #EAEAEA;
    line-height: 1.75;
    overflow-x: hidden;
}
a { color: #FF6B35; text-decoration: none; transition: color .3s; }
a:hover { color: #E94560; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.35; }

/* === 容器 === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* === 顶部导航 === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    transition: background .3s;
}
.hxpx2vq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 42px; width: auto; }
.site-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    color: #ccc;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all .3s;
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: #fff;
    background: rgba(255, 107, 53, 0.15);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #FF6B35;
    border-radius: 2px;
    transition: all .3s;
}

/* === 搜索框 === */
.nl5tr {
    background: rgba(26, 26, 46, 0.8);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    padding: 10px 0;
    margin-top: 68px;
}
.r5cc1 {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    padding: 0 20px;
}
.nl5tr input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 8px;
    padding: 10px 16px;
    color: #eee;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .3s;
}
.nl5tr input:focus { border-color: #FF6B35; }
.nl5tr input::placeholder { color: #666; }
.nl5tr button {
    background: linear-gradient(135deg, #FF6B35, #E94560);
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity .3s;
}
.nl5tr button:hover { opacity: 0.85; }

/* === Banner === */
.n4rnw8e {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.eg2045ic {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 0;
}
.a55tj {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}
.a55tj h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.a55tj h1 .brand-highlight {
    background: linear-gradient(135deg, #FF6B35, #E94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.a55tj p {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 28px;
    line-height: 1.8;
}
.vjqms { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
    color: #fff;
}
.btn-outline {
    display: inline-block;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s;
    background: transparent;
    cursor: pointer;
}
.btn-outline:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

/* === 视频卡片 === */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.video-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.08);
    transition: transform .3s, box-shadow .3s;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}
.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    pointer-events: none;
}
.play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1); }
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}
.video-info { padding: 16px; }
.video-info h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #eee;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-meta {
    display: flex;
    gap: 16px;
    color: #888;
    font-size: 0.85rem;
}
.video-meta span { display: flex; align-items: center; gap: 4px; }
.video-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.video-tags span {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
}

/* === 模块卡片 === */
.tntnq {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.si9f5 {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 26, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all .3s;
}
.si9f5:hover {
    border-color: rgba(255, 107, 53, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.1);
}
.5fmqgqb9 {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.si9f5 h3 { font-size: 1.1rem; margin-bottom: 10px; color: #eee; }
.si9f5 p { font-size: 0.9rem; color: #999; line-height: 1.6; }

/* === 专家展示 === */
.u5r3odsp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.2uqnqlcs {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all .3s;
}
.2uqnqlcs:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}
.so4uw48e {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid #FF6B35;
}
.2uqnqlcs h3 { font-size: 1.1rem; margin-bottom: 4px; }
.2uqnqlcs .role { color: #FF6B35; font-size: 0.88rem; margin-bottom: 12px; }
.2uqnqlcs p { font-size: 0.88rem; color: #999; margin-bottom: 16px; }
.r4yabod { display: flex; gap: 10px; justify-content: center; }
.r4yabod a {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #FF6B35;
    transition: all .3s;
}
.r4yabod a:hover { background: rgba(255, 107, 53, 0.15); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.5);
}
.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #eee;
    transition: background .3s;
}
.faq-question:hover { background: rgba(255, 107, 53, 0.05); }
.faq-question .arrow {
    transition: transform .3s;
    color: #FF6B35;
    font-size: 1.2rem;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 24px;
    color: #aaa;
    line-height: 1.7;
    font-size: 0.95rem;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

/* === 用户评论 === */
.hbloa3fx {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.sz3gf89q {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all .3s;
}
.sz3gf89q:hover { border-color: rgba(255, 107, 53, 0.25); }
.8enyer { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.j28bn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.1adjc { font-weight: 600; color: #eee; }
.b9t0fe4q { font-size: 0.8rem; color: #777; }
.3ys3hp { color: #FF6B35; margin-bottom: 10px; letter-spacing: 2px; }
.xj0gbph { font-size: 0.92rem; color: #bbb; line-height: 1.7; }

/* === 联系我们 === */
.w1k13 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.hygbhde0 {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}
.hygbhde0 h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #FF6B35;
}
.hygbhde0 p { font-size: 0.92rem; color: #bbb; margin-bottom: 6px; }
.hygbhde0 img { margin: 10px auto; max-width: 160px; border-radius: 8px; }

/* === 页脚 === */
.site-footer {
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding: 50px 0 0;
}
.tk1qx {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.qtbul4ie h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #FF6B35;
}
.qtbul4ie p, .qtbul4ie a {
    font-size: 0.9rem;
    color: #999;
    display: block;
    margin-bottom: 8px;
}
.qtbul4ie a:hover { color: #FF6B35; }
.ib61miq { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ib61miq img { height: 36px; }
.ib61miq span { font-size: 1.1rem; font-weight: 700; color: #eee; }
.tnh1ml { display: flex; gap: 16px; margin-top: 12px; }
.tnh1ml img { width: 110px; border-radius: 6px; }
.cjzv3gng {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* === 分享按钮 === */
.qwvco6i {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}
.93wmy6jc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #fff;
    transition: opacity .3s;
    cursor: pointer;
    border: none;
}
.93wmy6jc:hover { opacity: 0.8; color: #fff; }
.wmq9h { background: #07C160; }
.9il04 { background: #E6162D; }
.6iizch { background: #161823; border: 1px solid #333; }
.okkywq2 { background: #00A1D6; }

/* === 面包屑 === */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.88rem;
    color: #888;
    margin-top: 68px;
}
.breadcrumb a { color: #FF6B35; }
.breadcrumb span { margin: 0 8px; color: #555; }

/* === 内页通用 === */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 68px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}
.page-hero-content h1 { font-size: 2.2rem; margin-bottom: 12px; }
.page-hero-content p { color: #bbb; font-size: 1.05rem; }

/* === 侧边栏 === */
.va2fef {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}
.qm6z5 {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.qm6z5 h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #FF6B35;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}
.qm6z5 a {
    display: block;
    padding: 8px 0;
    color: #bbb;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.qm6z5 a:hover { color: #FF6B35; }

/* === 标签云 === */
.5jeog6o8 { display: flex; flex-wrap: wrap; gap: 8px; }
.5jeog6o8 a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    font-size: 0.82rem;
    color: #ccc;
}
.5jeog6o8 a:hover { background: rgba(255, 107, 53, 0.2); color: #FF6B35; }

/* === 懒加载 === */
img[data-src] { opacity: 0; transition: opacity .5s; }
img[data-src].loaded, img:not([data-src]) { opacity: 1; }

/* === 响应式 === */
@media (max-width: 1024px) {
    .va2fef { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 26, 0.98);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 16px; }
    .mobile-toggle { display: flex; }
    .a55tj h1 { font-size: 1.8rem; }
    .n4rnw8e { min-height: 400px; }
    .section-title { font-size: 1.6rem; }
    .video-grid { grid-template-columns: 1fr; }
    .tntnq { grid-template-columns: repeat(2, 1fr); }
    .u5r3odsp { grid-template-columns: repeat(2, 1fr); }
    .tk1qx { grid-template-columns: repeat(2, 1fr); }
    .w1k13 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .tntnq { grid-template-columns: 1fr; }
    .u5r3odsp { grid-template-columns: 1fr; }
    .tk1qx { grid-template-columns: 1fr; }
    .a55tj h1 { font-size: 1.5rem; }
    .a55tj p { font-size: 0.95rem; }
}

/* === 动画 === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* === 合作品牌墙 === */
.map1l {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.ahls5 {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    padding: 16px 28px;
    font-size: 1rem;
    color: #bbb;
    transition: all .3s;
}
.ahls5:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

/* === How-To 指南 === */
.ylb72p {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    counter-reset: step;
}
.qg4bs {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    counter-increment: step;
}
.qg4bs::before {
    content: counter(step);
    position: absolute;
    top: -12px;
    left: 20px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}
.qg4bs h4 { margin-bottom: 8px; color: #eee; font-size: 1rem; }
.qg4bs p { font-size: 0.88rem; color: #999; }

/* === 社区分类 === */
.cjx9dw {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
.weqpdp {
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    color: #bbb;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all .3s;
}
.weqpdp:hover, .community-tab.active {
    background: linear-gradient(135deg, #FF6B35, #E94560);
    color: #fff;
    border-color: transparent;
}

/* === 数据统计 === */
.2uk049o {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
}
.8hvp2x8 { text-align: center; }
.fasto0b {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #E94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.c7mdsvf { font-size: 0.88rem; color: #888; margin-top: 4px; }

/* === H5视频播放器覆盖层 === */
.olkk3xy {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sqbq1vm2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.55pb14 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(15, 15, 26, 0.95);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}
.23a9qrt {
    font-size: 0.78rem;
    color: #FF6B35;
    font-weight: 600;
}
.4lvhtoq7 {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
.4lvhtoq7:hover { color: #fff; }
.lkx0myyu {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}
.d9s5fdw {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dqhs5h7 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #999;
    font-size: 0.82rem;
}
.ushka {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.xbvzx7 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(15, 15, 26, 0.95);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}
.xbvzx7 button {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 2px 4px;
}
.xbvzx7 button:hover { color: #FF6B35; }
.5qu6kfgb { font-size: 1rem; }
.bpwql8b5 {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.gj4qlj91 {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #E94560);
    border-radius: 2px;
    transition: width 0.3s linear;
}
.trxqugx {
    font-size: 0.72rem;
    color: #888;
    white-space: nowrap;
}

/* === 视频卡片作者与日期 === */
.sfoa5pj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.82rem;
    color: #777;
}
.sfoa5pj .author { color: #FF6B35; }

/* === EEAT编辑政策 === */
.uchjy {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.uchjy p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.7;
}
.uchjy strong {
    color: #FF6B35;
}
