/* 蘑菇视频 MOGU VIDEO - 全站样式 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    background: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #E90052; text-decoration: none; transition: color 0.2s; }
a:hover { color: #C90046; }
a:focus-visible { outline: 2px solid #FF1765; outline-offset: 2px; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
h1, h2, h3, h4 { color: #222222; line-height: 1.35; font-weight: 700; }
h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    h1 { font-size: 1.55rem; }
    h2 { font-size: 1.3rem; }
}

/* 顶部导航 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 23, 101, 0.12);
    height: 72px;
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left { display: flex; align-items: center; gap: 8px; }
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }
.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF1765;
    letter-spacing: 0.02em;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 18px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444444;
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: #FF1765; background: #FFF0F5; }
.nav-link.active {
    color: #FF1765;
    background: #FFF0F5;
    box-shadow: inset 0 -2px 0 #FF1765;
}
.header-right { display: flex; align-items: center; gap: 10px; }
.search-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #444;
    transition: background 0.2s;
}
.search-toggle:hover { background: #FFF0F5; color: #FF1765; }
.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 24px;
    white-space: nowrap;
    transition: all 0.2s;
}
.header-btn-outline {
    color: #FF1765;
    border: 1.5px solid rgba(255, 23, 101, 0.35);
    background: #fff;
}
.header-btn-outline:hover { background: #FFF0F5; border-color: #FF1765; }
.header-btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
    box-shadow: 0 4px 14px rgba(255, 23, 101, 0.28);
}
.header-btn-primary:hover { filter: brightness(1.05); box-shadow: 0 6px 18px rgba(255, 23, 101, 0.35); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    position: relative;
}
.menu-icon::before, .menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #222;
}
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

@media (max-width: 960px) {
    .desktop-nav { display: none; }
    .header-btn-outline { display: none; }
    .menu-toggle { display: flex; }
    .header-left { gap: 4px; }
}

/* 主内容 */
.site-main {
    min-height: 60vh;
    padding-bottom: 40px;
}
@media (max-width: 768px) {
    .site-main { padding-bottom: 90px; }
}

/* 按钮通用 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 28px;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
    box-shadow: 0 8px 24px rgba(255, 23, 101, 0.25);
}
.btn-primary:hover { filter: brightness(1.06); color: #fff; }
.btn-outline {
    color: #FF1765;
    background: #fff;
    border: 1.5px solid rgba(255, 23, 101, 0.4);
}
.btn-outline:hover { background: #FFF0F5; color: #E90052; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.2rem 0; }

/* 首页首屏 */
.hero {
    background: #FFF7FA;
    padding: 40px 0 50px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 36px;
    align-items: stretch;
}
.hero-visual {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #FFD8E6 0%, #FFF0F5 50%, #FFE4EE 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.hero-placeholder {
    text-align: center;
    padding: 40px;
    color: #C90046;
}
.hero-placeholder .ph-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.hero-placeholder .ph-en {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FF1765;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.hero-title {
    font-size: 1.85rem;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.3;
}
.hero-desc {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 20px;
}
.hero-rec-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-rec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
    color: #444;
}
.hero-rec-item span {
    color: #FF1765;
    font-weight: 700;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-visual { min-height: 260px; order: 2; }
    .hero-content { order: 1; }
    .hero-title { font-size: 1.5rem; }
}

/* 频道快捷条 */
.channel-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 0;
    overflow: hidden;
}
.channel-bar-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.channel-bar-inner::-webkit-scrollbar { display: none; }
.channel-bar a {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #555;
    background: #F7F7F8;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.2s;
}
.channel-bar a:hover, .channel-bar a.active {
    color: #FF1765;
    background: #FFF0F5;
    border-color: rgba(255,23,101,0.25);
}

/* 通用区块 */
.section {
    padding: 48px 0;
}
.section-alt { background: #FFF7FA; }
.section-gray { background: #F7F7F8; }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-header h2 { margin-bottom: 0; }
.section-more {
    font-size: 0.9rem;
    color: #FF1765;
    font-weight: 600;
}
.section-more:hover { text-decoration: underline; }

/* 胶囊标签 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tag-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(255,23,101,0.12);
    border-radius: 16px;
    max-width: 100%;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.tag-item:hover {
    border-color: rgba(255,23,101,0.35);
    box-shadow: 0 8px 24px rgba(255,23,101,0.1);
}
.tag-item .tag-name {
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
}
.tag-item .tag-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

/* 卡片网格 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
    box-shadow: 0 14px 40px rgba(30,20,25,0.08);
    transform: translateY(-2px);
}
.card-body { padding: 20px; }
.card-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF1765;
    background: #FFF0F5;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.card-title {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
}
.card-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
}
.card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #FF1765;
}

/* 主推荐 */
.featured-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
.featured-main-content {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,23,101,0.1);
    box-shadow: 0 14px 40px rgba(30,20,25,0.06);
}
.featured-main-content .card-type { margin-bottom: 12px; }
.featured-main-content h3 { font-size: 1.45rem; margin-bottom: 12px; }
.featured-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.featured-side-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.2s;
}
.featured-side-item:hover { border-color: rgba(255,23,101,0.3); }
.featured-side-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.featured-side-item p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
}
@media (max-width: 860px) {
    .featured-main { grid-template-columns: 1fr; }
}

/* 横向轨道 */
.track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.track-item {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 20px;
    transition: box-shadow 0.2s;
}
.track-item:hover { box-shadow: 0 10px 28px rgba(30,20,25,0.08); }
.track-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.track-item p { font-size: 0.88rem; color: #666; margin-bottom: 0; }

/* 宽幅内容 */
.wide-feature {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
.wide-feature h3 { font-size: 1.35rem; margin-bottom: 14px; }
.type-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 700px) {
    .type-index { grid-template-columns: repeat(2, 1fr); }
}
.type-index a {
    display: block;
    padding: 16px;
    background: #FFF7FA;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    color: #444;
    border: 1px solid rgba(255,23,101,0.1);
    transition: all 0.2s;
}
.type-index a:hover {
    color: #FF1765;
    background: #FFF0F5;
    border-color: rgba(255,23,101,0.3);
}

/* 编号列表 */
.numbered-list {
    display: grid;
    gap: 16px;
}
.numbered-item {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
}
.num-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF4A86, #E90052);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 14px;
}
.numbered-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.numbered-item p { font-size: 0.9rem; color: #666; margin-bottom: 0; }

/* 榜单 */
.rank-list {
    display: grid;
    gap: 14px;
}
.rank-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(0,0,0,0.06);
}
.rank-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FF1765;
    min-width: 42px;
    line-height: 1;
}
.rank-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.rank-item p { font-size: 0.88rem; color: #666; margin: 0; }

/* 时间轨道 */
.timeline {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.timeline-item {
    flex: 0 0 200px;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,0.06);
}
.timeline-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.status-done { background: #E8F5E9; color: #2E7D32; }
.status-progress { background: #FFF0F5; color: #C90046; }
.status-plan { background: #F7F7F8; color: #777; }
.timeline-item h4 { font-size: 0.98rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.85rem; color: #666; margin: 0; }

/* 人物职业 */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.people-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.people-card:hover { box-shadow: 0 10px 28px rgba(30,20,25,0.08); }
.people-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: #FFF0F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF1765;
}
.people-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.people-card p { font-size: 0.85rem; color: #777; margin: 0; }

/* 片单 */
.watchlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.watchlist-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,23,101,0.12);
    transition: box-shadow 0.2s;
}
.watchlist-card:hover { box-shadow: 0 12px 32px rgba(255,23,101,0.12); }
.watchlist-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.watchlist-card p { font-size: 0.9rem; color: #666; margin-bottom: 0; }

/* 杂志式 */
.magazine-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}
.magazine-block {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
}
.magazine-block.tall { grid-row: span 2; }
@media (max-width: 800px) {
    .magazine-grid { grid-template-columns: 1fr; }
    .magazine-block.tall { grid-row: auto; }
}

/* 影评列表 */
.review-list {
    display: grid;
    gap: 18px;
}
.review-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(0,0,0,0.06);
}
.review-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #E90052;
    background: #FFF0F5;
    padding: 3px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.review-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.review-item p { font-size: 0.95rem; color: #555; margin-bottom: 0; }

/* APP 介绍 */
.app-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.app-visual {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #FFD8E6, #FFF0F5);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-visual img { width: 100%; height: auto; }
.app-content h1 { margin-bottom: 16px; }
.app-content p { font-size: 1rem; color: #555; }
@media (max-width: 800px) {
    .app-hero { grid-template-columns: 1fr; }
    .app-visual { min-height: 240px; order: -1; }
}

/* 内页通用 */
.page-hero {
    background: #FFF7FA;
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255,23,101,0.08);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead {
    font-size: 1.05rem;
    color: #555;
    max-width: 720px;
}
.page-body {
    padding: 40px 0 60px;
}
.content-block {
    margin-bottom: 36px;
}
.content-block h2 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFF0F5;
}
.content-block p {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.8;
}
.content-block ul {
    margin: 12px 0 16px 20px;
}
.content-block ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: #444;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 700px) {
    .two-col { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 22px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: #FF1765;
    font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
    padding: 0 22px 18px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
}

/* 页脚 */
.site-footer {
    background: #171717;
    color: #F4F4F4;
    padding: 56px 0 40px;
    margin-top: 20px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-brand {
    margin-bottom: 36px;
}
.footer-logo img { height: 32px; width: auto; margin-bottom: 10px; filter: brightness(1.1); }
.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF3D7D;
    display: block;
    margin-bottom: 6px;
}
.footer-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.footer-brand-en {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: #aaa;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 0.9rem;
    color: #bbb;
    max-width: 520px;
    line-height: 1.7;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}
.footer-col h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 700;
}
.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: #bbb;
    padding: 5px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #FF3D7D; }
.footer-note {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}
.footer-note p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    line-height: 1.65;
}
.footer-copy {
    font-size: 0.85rem;
    color: #777 !important;
}
@media (max-width: 800px) {
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .footer-columns { grid-template-columns: 1fr; }
}

/* 频道面板 */
.panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 15, 0.45);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}
.panel-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.channel-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 460px;
    max-width: 88vw;
    height: 100%;
    background: #fff;
    z-index: 2010;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.channel-panel.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
}
.panel-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: #FF1765;
    font-size: 1.15rem;
}
.panel-brand img { height: 30px; width: auto; }
.panel-close {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.panel-close:hover { background: #F7F7F8; color: #222; }
.panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 40px;
    -webkit-overflow-scrolling: touch;
}
.panel-group {
    margin-bottom: 28px;
}
.panel-group h3 {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    font-weight: 700;
}
.panel-item {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: background 0.2s;
}
.panel-item:hover { background: #FFF0F5; }
.panel-item-title {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 0.98rem;
    margin-bottom: 2px;
}
.panel-item-desc {
    display: block;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.45;
}
body.panel-open { overflow: hidden; }

/* 搜索面板 */
.search-panel {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(255,255,255,0.98);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s, visibility 0.25s;
    overflow-y: auto;
}
.search-panel.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
.search-panel-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}
.search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.search-panel-header h2 { margin: 0; font-size: 1.4rem; }
.search-close {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    color: #666;
    border-radius: 50%;
}
.search-close:hover { background: #F7F7F8; }
.search-input-wrap {
    margin-bottom: 32px;
}
.search-input-wrap input {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    font-size: 1.05rem;
    border: 2px solid rgba(255,23,101,0.25);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.search-input-wrap input:focus {
    border-color: #FF1765;
}
.search-section {
    margin-bottom: 28px;
}
.search-section h3 {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 12px;
}
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.search-tag {
    padding: 8px 16px;
    background: #FFF0F5;
    color: #C90046;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}
.search-tag:hover { background: #FFD8E6; color: #C90046; }
.search-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.search-links a {
    padding: 12px 14px;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
}
.search-links a:hover { background: #FFF0F5; color: #FF1765; }
body.search-open { overflow: hidden; }

/* 手机底部导航 */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255,255,255,0.97);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    height: auto;
}
.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 0.7rem;
    color: #777;
    gap: 2px;
    font-weight: 500;
}
.bottom-nav-item .bottom-icon {
    font-size: 1.2rem;
    line-height: 1;
}
.bottom-nav-item.active {
    color: #FF1765;
}
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* 辅助 */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.lead-text { font-size: 1.05rem; color: #555; line-height: 1.75; }
.note-box {
    background: #FFF0F5;
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 0.92rem;
    color: #555;
    border: 1px solid rgba(255,23,101,0.12);
    margin: 20px 0;
}
.img-fallback {
    background: linear-gradient(145deg, #FFD8E6, #FFF0F5);
    border-radius: 16px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C90046;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
