/* 海角社区 - 原创样式表 */
/* 品牌色彩系统 */
: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;
}

/* 头部导航 */
.tkqmt {
    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);
}

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

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

.uphv3b img {
    height: 42px;
    width: auto;
}

.uphv3b 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;
}

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

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

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

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

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

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

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

.roc3d22 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;
}

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

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

.559fjcm {
    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;
}

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

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

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

.0grqu38.active {
    opacity: 1;
}

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

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

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

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

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

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

.b8ta52 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;
}

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

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

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

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

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

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

.jk08bjcg:hover .4hp5x img {
    transform: scale(1.05);
}

.65bl0wm {
    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);
}

.jk08bjcg:hover .65bl0wm {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.65bl0wm::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;
}

.4hvhkgu {
    padding: 16px;
}

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

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

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

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

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

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

.hccz8l2n {
    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;
}

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

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

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

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

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

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

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

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

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

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

.kk2eh5tn {
    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;
}

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

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

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

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

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

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

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

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

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

.v41al.active .3f5gume::after {
    transform: rotate(45deg);
}

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

.v41al.active .87vaycm0 {
    padding: 0 24px 18px;
    max-height: 300px;
}

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

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

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

.z395jg {
    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;
}

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

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

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

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

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

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

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

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

.v2pp5 {
    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;
}

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

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

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

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

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

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

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

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

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

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

.ce1ff 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;
}

.ce1ff 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) {
    .nwc04a7 {
        flex-wrap: wrap;
    }

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

    .pz1xl.show {
        display: flex;
    }

    .5xkrt8e {
        display: block;
    }

    .gmrv5 {
        height: 280px;
    }

    .5g6iklyl h2 {
        font-size: 1.4rem;
    }

    .section {
        padding: 40px 0;
    }

    .b8ta52 h2 {
        font-size: 1.5rem;
    }

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

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

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

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

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

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

    .7op5y {
        margin-top: 60px;
    }
}

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

    .container {
        padding: 0 15px;
    }
}

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

.nm18qu4o 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;
}

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

.lceb6cr {
    padding: 40px 0 60px;
}

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

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

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

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

/* 工具网格 */
.ld57fmj {
    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品牌标题区域 */
.9bdmpztl {
    padding: 80px 0 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
}

.9bdmpztl 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;
}

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

.8qisnh time {
    color: var(--success);
    font-weight: 600;
}

/* 更新时间徽章 */
.20dju73 {
    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);
}

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

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

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

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

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

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

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

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

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

.4hp5x img {
    z-index: 1;
}

.jk08bjcg:hover .4hp5x img {
    opacity: 0;
}

.jk08bjcg:hover .4hp5x video {
    z-index: 2;
}

/* b8ta52 h2 统一样式 */
.b8ta52 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;
}

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

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

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

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

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

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

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

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

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

    .79cvl {
        padding: 10px;
    }

    .79cvl p {
        font-size: 0.8rem;
    }
}
