/* 福利姬 - 原创样式表 */
/* 品牌色彩系统 */
:root {
    --primary-dark: #1a1a2e;
    --accent-rose: #e94560;
    --deep-blue: #0f3460;
    --bg-dark: #16213e;
    --text-light: #eaeaea;
    --text-muted: #a8a8b3;
    --gradient-start: #e94560;
    --gradient-end: #533483;
    --card-bg: #1f2b47;
    --border-color: #2a3a5c;
    --success: #4ecdc4;
    --warning: #ffe66d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--accent-rose);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--success);
}

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

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

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

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

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

.8milgdp img {
    height: 42px;
    width: auto;
}

.8milgdp span {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.grs1c68 a {
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.grs1c68 a:hover,
.grs1c68 a.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

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

/* 搜索框 */
.benm59 {
    background: var(--bg-dark);
    padding: 12px 0;
    margin-top: 68px;
    border-bottom: 1px solid var(--border-color);
}

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

.gtnv0cev {
    flex: 1;
    position: relative;
}

.gtnv0cev input {
    width: 100%;
    padding: 10px 20px;
    padding-right: 50px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.gtnv0cev input:focus {
    border-color: var(--accent-rose);
}

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

.ydgbea {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.ydgbea:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Banner轮播 */
.djg6k8 {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.ll2hp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.ll2hp.active {
    opacity: 1;
}

.ll2hp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s7i0qw {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 40px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
}

.s7i0qw h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.s7i0qw p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

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

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

.4bwt6 h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nhzhg {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nhzhg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.15);
}

.wbs6wi {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.wbs6wi img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.r04lgem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    background: rgba(233, 69, 96, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.nhzhg:hover .r04lgem {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.r04lgem:hover {
    background: rgba(233, 69, 96, 1);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.r04lgem::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: 4px;
}

.x9n4v5a {
    padding: 16px;
}

.x9n4v5a h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

/* 功能模块卡片 */
.meqso8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.3yyt2pqc {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.3yyt2pqc:hover {
    border-color: var(--accent-rose);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.1);
}

.ybyymv5v {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.3yyt2pqc h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

/* 专家展示 */
.dwyzbpwq {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

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

.lv8l8s:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.12);
}

.k7k382 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid var(--accent-rose);
}

.k7k382 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv8l8s h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.lv8l8s .role {
    color: var(--accent-rose);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.lv8l8s p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.h1v5bfu {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.rqxr46 {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

.rqxr46:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    color: #fff;
}

.wtqyluyd {
    border: 1px solid var(--accent-rose);
    color: var(--accent-rose);
    background: transparent;
}

.wtqyluyd:hover {
    background: var(--accent-rose);
    color: #fff;
}

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

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

.cgcp8xsi {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.cgcp8xsi:hover {
    background: rgba(233, 69, 96, 0.05);
}

.cgcp8xsi::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--accent-rose);
    transition: transform 0.3s;
}

.u4cpnq.active .cgcp8xsi::after {
    transform: rotate(45deg);
}

.nz5jety1 {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.u4cpnq.active .nz5jety1 {
    padding: 0 24px 18px;
    max-height: 300px;
}

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

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

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

.p37gz {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.rtfmg {
    font-weight: 600;
    font-size: 0.95rem;
}

.e4bii4x0 {
    color: var(--warning);
    font-size: 0.85rem;
}

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

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

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

.0on6ty21 h4 {
    margin-bottom: 12px;
    color: var(--accent-rose);
}

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

/* 合作品牌 */
.db4v8 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.cv39d {
    background: var(--card-bg);
    padding: 16px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s;
}

.cv39d:hover {
    border-color: var(--accent-rose);
    color: var(--accent-rose);
}

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

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

.sxudb3wg h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--accent-rose);
}

.sxudb3wg p,
.sxudb3wg a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.sxudb3wg a:hover {
    color: var(--accent-rose);
}

.uk92vixv {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.uk92vixv img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

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

.tsp8e {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.tsp8e a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
    font-size: 0.85rem;
}

.tsp8e a:hover {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    color: #fff;
}

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

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

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

/* 标签 */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag {
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent-rose);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

/* 懒加载占位 */
.lazy-placeholder {
    background: var(--card-bg);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 响应式 */
@media (max-width: 768px) {
    .g3ryc7 {
        flex-wrap: wrap;
    }

    .grs1c68 {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 10px;
    }

    .grs1c68.show {
        display: flex;
    }

    .m34zqvz {
        display: block;
    }

    .djg6k8 {
        height: 280px;
    }

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

    .section {
        padding: 40px 0;
    }

    .4bwt6 h2 {
        font-size: 1.5rem;
    }

    .rzhsp {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

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

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

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

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

    .benm59 {
        margin-top: 60px;
    }
}

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

    .container {
        padding: 0 15px;
    }
}

/* 内页样式 */
.82eff {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
    text-align: center;
}

.82eff h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.2b2el93 {
    padding: 40px 0 60px;
}

.frx1r {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.frx1r h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--accent-rose);
}

.frx1r p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.frx1r img {
    border-radius: 8px;
    margin: 16px 0;
}

/* 工具网格 */
.7mz4tt {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.tool-item {
    background: var(--primary-dark);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.tool-item:hover {
    border-color: var(--accent-rose);
    transform: translateY(-3px);
}

.tool-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tool-item h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.tool-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
/* 福利姬 补充样式 - EEAT优化 */

/* H1品牌标题区域 */
.9e83qz5 {
    padding: 80px 0 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
}

.9e83qz5 h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.0mldbj2k time {
    color: var(--success);
    font-weight: 600;
}

/* 更新时间徽章 */
.x2hreke {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 14px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--success);
}

/* 专家资质信息 */
.sxrwfl {
    margin: 12px 0;
    padding: 12px;
    background: var(--primary-dark);
    border-radius: 8px;
    border-left: 3px solid var(--accent-rose);
}

.sxrwfl p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.sxrwfl p:last-child {
    margin-bottom: 0;
}

.sxrwfl strong {
    color: var(--text-light);
}

/* 评论日期 */
.fsvjf5uo {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* 页脚Logo */
.stdia3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

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

.stdia3 span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-rose);
}

/* H5 Video元素样式 */
.wbs6wi video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wbs6wi img {
    z-index: 1;
}

.nhzhg:hover .wbs6wi img {
    opacity: 0;
}

.nhzhg:hover .wbs6wi video {
    z-index: 2;
}

/* 4bwt6 h2 统一样式 */
.4bwt6 h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.4bwt6 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-rose);
}

/* 面包屑JSON-LD对应样式 */
.mwvaex {
    padding: 8px 0;
}

.mwvaex ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mwvaex ol li::after {
    content: " > ";
    margin: 0 4px;
}

.mwvaex ol li:last-child::after {
    content: "";
}

.mwvaex ol li a {
    color: var(--text-muted);
}

.mwvaex ol li a:hover {
    color: var(--accent-rose);
}

/* 响应式补充 */
@media (max-width: 768px) {
    .9e83qz5 {
        padding: 70px 0 15px;
    }

    .9e83qz5 h1 {
        font-size: 1.3rem;
    }

    .sxrwfl {
        padding: 10px;
    }

    .sxrwfl p {
        font-size: 0.8rem;
    }
}
