/* ============================================
   男同网 - 原创样式表
   品牌色：玫瑰粉 #E8436F / 柔粉 #FF6B9D
   辅助色：深紫 #2D1B3D / 暖金 #D4A853
   背景色：#FFF5F8 / #1A0E23
   ============================================ */

/* === 基础重置 === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    background: #FFF5F8;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #E8436F; text-decoration: none; transition: color .25s; }
a:hover { color: #FF6B9D; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === 通用容器 === */
.shcyr1y { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.pwbq36 { padding: 60px 0; }
.x4xix17 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D1B3D;
    margin-bottom: 12px;
    position: relative;
}
.x4xix17::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E8436F, #FF6B9D);
    border-radius: 2px;
    margin: 12px auto 0;
}
.fqvtw {
    text-align: center;
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* === 顶部导航 === */
.tx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 245, 248, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 67, 111, .12);
    transition: box-shadow .3s;
}
.tx-header.scrolled { box-shadow: 0 2px 20px rgba(232, 67, 111, .1); }
.tx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.avd98tx { display: flex; align-items: center; gap: 8px; }
.avd98tx img { height: 42px; width: auto; }
.pb0bumb { font-size: 1.3rem; font-weight: 700; color: #E8436F; }
.tx-nav { display: flex; align-items: center; gap: 28px; }
.tx-nav a {
    font-size: .95rem;
    color: #2D1B3D;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}
.tx-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #E8436F;
    transition: width .3s;
}
.tx-nav a:hover::after, .tx-nav a.active::after { width: 100%; }
.tx-nav a:hover { color: #E8436F; }
.tx-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.tx-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2D1B3D;
    border-radius: 1px;
    transition: .3s;
}

/* === Banner区域 === */
.hqetvalk {
    margin-top: 68px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2D1B3D 0%, #1A0E23 100%);
}
.cg7t1mu7 {
    width: 100%;
    height: 480px;
    object-fit: cover;
    opacity: .65;
}
.hn722qb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(45,27,61,.3) 0%, rgba(26,14,35,.6) 100%);
}
.hn722qb h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
    margin-bottom: 16px;
}
.hn722qb h1 em {
    font-style: normal;
    color: #FF6B9D;
}
.hn722qb p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin-bottom: 24px;
}
.zhdj8 {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #E8436F, #FF6B9D);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(232,67,111,.35);
    transition: transform .25s, box-shadow .25s;
}
.zhdj8:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,67,111,.5);
    color: #fff;
}

/* === 视频卡片网格 === */
.a0gl4cbt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tx-video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45,27,61,.06);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}
.tx-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(232,67,111,.12);
}
.x1umjh6 {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.x1umjh6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.tx-video-card:hover .x1umjh6 img { transform: scale(1.06); }
.uts6ip {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45,27,61,.25);
    opacity: 0;
    transition: opacity .3s;
}
.tx-video-card:hover .uts6ip { opacity: 1; }
.uts6ip svg { width: 52px; height: 52px; fill: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.rjid8fc {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: .75rem;
    padding: 2px 8px;
    border-radius: 4px;
}
.z10obb4 { padding: 16px; }
.z10obb4 h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2D1B3D;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rcv7urj {
    display: flex;
    gap: 12px;
    font-size: .8rem;
    color: #999;
}
.rcv7urj span { display: flex; align-items: center; gap: 3px; }

/* === 分类标签 === */
.tx-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
}
.tx-category-tab {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 1px solid #eee;
    cursor: pointer;
    transition: .25s;
}
.tx-category-tab:hover, .tx-category-tab.active {
    background: linear-gradient(135deg, #E8436F, #FF6B9D);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(232,67,111,.25);
}

/* === 专家团队 === */
.fo3iwvai {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.zrw1i {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(45,27,61,.06);
    transition: transform .3s;
}
.zrw1i:hover { transform: translateY(-4px); }
.zrw1i img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid #FF6B9D;
}
.zrw1i h4 { font-size: 1.05rem; color: #2D1B3D; margin-bottom: 4px; }
.zrw1i .mvojv1 { font-size: .85rem; color: #E8436F; margin-bottom: 8px; }
.zrw1i p { font-size: .85rem; color: #888; line-height: 1.6; }

/* === AI赋能区 === */
.zyctu6 { background: linear-gradient(135deg, #2D1B3D, #1A0E23); color: #fff; }
.zyctu6 .x4xix17 { color: #fff; }
.zyctu6 .x4xix17::after { background: linear-gradient(90deg, #D4A853, #FF6B9D); }
.zyctu6 .fqvtw { color: rgba(255,255,255,.7); }
.pc694b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hkvhy {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: .3s;
}
.hkvhy:hover {
    background: rgba(232,67,111,.12);
    border-color: rgba(232,67,111,.3);
    transform: translateY(-4px);
}
.ew9py1 {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #E8436F, #D4A853);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.hkvhy h4 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.hkvhy p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* === 社区功能 === */
.zu3910 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.py48odi {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(45,27,61,.06);
    transition: .3s;
}
.py48odi:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232,67,111,.1); }
.n4uypb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFF0F3, #FFE0E8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.py48odi h4 { font-size: 1.05rem; color: #2D1B3D; margin-bottom: 6px; }
.py48odi p { font-size: .88rem; color: #888; }

/* === 数据统计 === */
.z0car {
    background: linear-gradient(135deg, #E8436F, #FF6B9D);
    padding: 48px 0;
}
.eo91xm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    color: #fff;
}
.m7ju663 { font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.boau34 { font-size: .95rem; opacity: .85; }

/* === 页脚 === */
.ru0hog {
    background: #1A0E23;
    color: rgba(255,255,255,.7);
    padding: 48px 0 24px;
}
.ik1kr {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.hc6ql img { height: 40px; margin-bottom: 12px; }
.hc6ql p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.ru0hog h5 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.jueht a {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    padding: 4px 0;
    transition: color .2s;
}
.jueht a:hover { color: #FF6B9D; }
.qglp1n { display: flex; gap: 16px; }
.qglp1n img { width: 100px; height: 100px; border-radius: 8px; }
.fartg9 {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

/* === 面包屑 === */
.g3lcl {
    padding: 16px 0;
    font-size: .88rem;
    color: #999;
    margin-top: 68px;
}
.g3lcl a { color: #E8436F; }
.g3lcl span { margin: 0 6px; color: #ccc; }

/* === 视频播放内页 === */
.t0yt6krc {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.t0yt6krc iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.oc6nmjf { padding: 24px 0; }
.oc6nmjf h1 { font-size: 1.6rem; color: #2D1B3D; margin-bottom: 12px; }
.oc6nmjf .rcv7urj { margin-bottom: 20px; }
.vtsbs {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(45,27,61,.06);
    line-height: 1.8;
    color: #555;
}

/* === 关于页面 === */
.jttm6 {
    background: linear-gradient(135deg, #2D1B3D, #1A0E23);
    padding: 80px 0;
    margin-top: 68px;
    text-align: center;
    color: #fff;
}
.jttm6 h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.jttm6 p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }
.o7a8d1 {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-top: -40px;
    position: relative;
    box-shadow: 0 8px 32px rgba(45,27,61,.08);
}
.o7a8d1 h2 { font-size: 1.5rem; color: #2D1B3D; margin: 28px 0 12px; }
.o7a8d1 h2:first-child { margin-top: 0; }
.o7a8d1 p { color: #555; margin-bottom: 16px; }

/* === FAQ === */
.tx-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(45,27,61,.04);
    overflow: hidden;
}
.tx-faq-q {
    padding: 18px 24px;
    font-weight: 600;
    color: #2D1B3D;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s;
}
.tx-faq-q:hover { background: #FFF0F3; }
.tx-faq-q::after { content: "+"; font-size: 1.3rem; color: #E8436F; transition: transform .3s; }
.tx-faq-item.open .tx-faq-q::after { transform: rotate(45deg); }
.j9dazra {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 24px;
    color: #666;
    line-height: 1.8;
}
.tx-faq-item.open .j9dazra { max-height: 300px; padding: 0 24px 18px; }

/* === 响应式 === */
@media (max-width: 1024px) {
    .a0gl4cbt { grid-template-columns: repeat(2, 1fr); }
    .fo3iwvai { grid-template-columns: repeat(2, 1fr); }
    .pc694b { grid-template-columns: repeat(2, 1fr); }
    .ik1kr { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tx-nav { display: none; }
    .tx-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        gap: 16px;
    }
    .tx-mobile-toggle { display: flex; }
    .hn722qb h1 { font-size: 1.8rem; }
    .cg7t1mu7 { height: 320px; }
    .a0gl4cbt { grid-template-columns: 1fr; }
    .fo3iwvai { grid-template-columns: 1fr; }
    .pc694b { grid-template-columns: 1fr; }
    .zu3910 { grid-template-columns: 1fr; }
    .eo91xm { grid-template-columns: repeat(2, 1fr); }
    .ik1kr { grid-template-columns: 1fr; }
    .pwbq36 { padding: 40px 0; }
    .x4xix17 { font-size: 1.5rem; }
    .py48odi { flex-direction: column; }
}
@media (max-width: 480px) {
    .eo91xm { grid-template-columns: 1fr; }
    .hn722qb h1 { font-size: 1.4rem; }
}

/* === 白色背景section === */
.r5yrw2 { background: #fff; }

/* === SEO内容区 === */
.n4jr5t { max-width: 900px; margin: 0 auto; color: #555; line-height: 2; }
.n4jr5t h3 { color: #2D1B3D; font-size: 1.2rem; margin: 20px 0 10px; }

/* === 视频内页描述区h2 === */
.vtsbs h2 { font-size: 1.2rem; color: #2D1B3D; margin-bottom: 12px; }

/* === 视频内页推荐区 === */
.bab1x { padding-top: 20px; }

/* === 作者信息 === */
.qbgb64x { display: flex; align-items: center; gap: 12px; margin: 16px 0; padding: 16px; background: #FFF5F8; border-radius: 12px; }
.qbgb64x img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #FF6B9D; }
.w0iypdd { font-weight: 600; color: #2D1B3D; font-size: .95rem; }
.hyf57 { font-size: .82rem; color: #999; }
.ulq1pban { font-size: .82rem; color: #999; margin-left: auto; }

/* === 信任徽章 === */
.dj3vnx { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 24px; }
.e0m33v7g { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 50px; font-size: .85rem; color: rgba(255,255,255,.7); }

/* === 面包屑后的hero区域 === */
.g3lcl + .jttm6 { margin-top: 0; }
