:root {
    --primary: #f472b6;
    --accent: #fbbf24;
    --bg: #fff5f7;
    --text: #4a2530;
    --card-radius: 14px;
    --shadow-light: 0 4px 20px rgba(244, 114, 182, 0.08);
    --shadow-hover: 0 8px 30px rgba(244, 114, 182, 0.15);
    --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --font-display: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* 滚动关键词标签云 */
.hero-tags {
    background: linear-gradient(135deg, #fdf2f8 0%, #fff5f7 100%);
    padding: 30px 0 10px;
    overflow: hidden;
}
.hero-tags .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
}
.hero-tags .tag-item {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(244, 114, 182, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.2);
    color: var(--primary);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}
.hero-tags .tag-item:nth-child(2n) { animation-delay: 0.5s; }
.hero-tags .tag-item:nth-child(3n) { animation-delay: 1s; }
.hero-tags .tag-item:nth-child(4n) { animation-delay: 1.5s; }
.hero-tags .tag-item:nth-child(5n) { animation-delay: 2s; }
.hero-tags .tag-item:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 导航栏 */
.navbar {
    background: rgba(255, 245, 247, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(244, 114, 182, 0.05);
    padding: 12px 0;
}
.navbar-brand {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary) !important;
    letter-spacing: 2px;
}
.navbar-nav .nav-link {
    color: var(--text) !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s;
}
.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(244, 114, 182, 0.08);
}

/* 区块标题 */
.section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 26px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
}

/* 横向滚动海报行 */
.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.scroll-row::-webkit-scrollbar { height: 6px; }
.scroll-row::-webkit-scrollbar-track { background: transparent; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* 影片卡片 */
.movie-card {
    flex: 0 0 180px;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.movie-card .poster-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.movie-card .poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    background: #fce7f3;
}
.movie-card:hover .poster-wrap img {
    transform: scale(1.05);
}
.movie-card .badge-top {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.movie-card .rating {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.movie-card .info {
    padding: 10px 12px;
}
.movie-card .info .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-card .info .meta {
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
}

/* 榜单卡片 */
.rank-item {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
    cursor: pointer;
}
.rank-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
}
.rank-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    width: 40px;
    text-align: center;
}
.rank-item:nth-child(1) .rank-num { color: #fbbf24; font-size: 28px; }
.rank-item:nth-child(2) .rank-num { color: #94a3b8; font-size: 26px; }
.rank-item:nth-child(3) .rank-num { color: #d97706; font-size: 24px; }
.rank-info { flex: 1; }
.rank-info .name { font-weight: 700; margin-bottom: 2px; }
.rank-info .stats { font-size: 13px; color: #999; }
.rank-heat {
    background: linear-gradient(135deg, #f472b6, #fbbf24);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* 分类筛选区 */
.filter-section {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
}
.filter-type {
    margin-bottom: 16px;
}
.filter-label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-options span {
    padding: 4px 14px;
    background: var(--bg);
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.filter-options span:hover, .filter-options span.active {
    background: var(--primary);
    color: white;
}

/* 弹窗 */
.movie-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.movie-modal.show { display: flex; }
.modal-card {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    padding: 20px;
    gap: 20px;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.modal-close:hover { background: var(--primary); color: white; }
.modal-poster { flex: 0 0 200px; border-radius: 12px; overflow: hidden; }
.modal-poster img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { flex: 1; }
.modal-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-meta { font-size: 14px; color: #666; margin-bottom: 6px; }
.modal-plot { font-size: 14px; line-height: 1.6; margin-top: 12px; color: #555; }
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.modal-tags span {
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* 步骤条 */
.steps-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.step-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    position: relative;
}
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 12px;
}
.step-title { font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: #888; }

/* 分类展示卡片 */
.category-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.category-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}
.category-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.category-desc { font-size: 13px; color: #888; line-height: 1.5; }

/* 回顶按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover { transform: translateY(-3px); }

/* 按钮光泽效果 */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-shine:hover::after { left: 100%; }

/* 图片懒加载占位 */
img[data-src] {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    position: relative;
}

/* 页脚 */
.footer {
    background: white;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #fce7f3;
}
.footer-links a {
    color: var(--text);
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
}
.footer-links a:hover { color: var(--primary); }

/* 相关推荐 */
.related-card {
    background: white;
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
    cursor: pointer;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.related-icon { font-size: 24px; margin-bottom: 8px; }
.related-name { font-weight: 700; margin-bottom: 4px; }
.related-desc { font-size: 13px; color: #888; }

@media (max-width: 768px) {
    .modal-card { flex-direction: column; }
    .modal-poster { flex: none; width: 100%; height: 200px; }
    .hero-tags .tag-item { font-size: 12px; padding: 4px 12px; }
}

/* --- 子页面追加 --- */
/* 仅保留本页专属微调，其余沿用全局样式 */
        .rank-hero {
            background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.05) 100%);
            padding: 3.5rem 0 2rem;
            border-bottom: 1px solid rgba(244,114,182,0.15);
        }
.rank-hero h1 {
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
        }
.rank-hero .lead {
            color: #6b3a4a;
            font-size: 1.1rem;
        }
.filter-section .filter-options .filter-chip {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            margin-right: 0.6rem;
            border-radius: 30px;
            background: rgba(244,114,182,0.08);
            border: 1px solid rgba(244,114,182,0.2);
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }
.filter-section .filter-options .filter-chip:hover,
        .filter-section .filter-options .filter-chip.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.rank-section-title {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            margin-top: 2.2rem;
            margin-bottom: 1.4rem;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text);
            border-left: 6px solid var(--accent);
            padding-left: 1rem;
        }
.rank-section-title small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #7d5a66;
        }
.rank-card-list {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(4px);
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-light);
            padding: 1.2rem 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(244,114,182,0.15);
        }
.rank-item:last-child {
            border-bottom: none;
        }
.rank-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            color: var(--text);
        }
.rank-info .rank-meta {
            font-size: 0.85rem;
            color: #7d5a66;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
.rank-heat i {
            margin-right: 0.2rem;
        }
.badge-accent {
            background: var(--accent);
            color: #4a2530;
            font-weight: 700;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
        }
.badge-primary-soft {
            background: rgba(244,114,182,0.12);
            color: var(--primary);
            font-weight: 600;
        }
.rank-hero h1 { font-size: 1.8rem; }
.filter-section .filter-options .filter-chip { padding: 0.3rem 0.9rem; font-size: 0.8rem; }

/* --- 子页面追加 --- */
.about-hero { padding: 80px 0 60px; text-align: center; }
.about-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.about-hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto; color: var(--text); opacity: .85; }
.about-section { padding: 60px 0; }
.about-section:nth-child(even) { background: rgba(244, 114, 182, 0.04); }
.about-section h2 { font-size: 1.9rem; font-weight: 700; color: var(--text); margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.about-section h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--primary); border-radius: 2px; }
.about-section p { color: var(--text); opacity: .8; line-height: 1.8; font-size: 1.02rem; }
.about-section ul { color: var(--text); opacity: .85; line-height: 2; padding-left: 20px; }
.about-section ul li::marker { color: var(--primary); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
.feature-item { background: rgba(255,255,255,.6); border-radius: var(--card-radius); padding: 28px; box-shadow: var(--shadow-light); transition: transform .3s ease, box-shadow .3s ease; }
.feature-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-item i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; display: inline-block; }
.feature-item h3 { font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.feature-item p { font-size: .95rem; color: var(--text); opacity: .75; line-height: 1.7; }
.about-stats { display: flex; justify-content: center; gap: 60px; margin-top: 50px; flex-wrap: wrap; }
.about-stat { text-align: center; }
.about-stat .stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.about-stat .stat-label { font-size: .9rem; color: var(--text); opacity: .6; margin-top: 5px; }
.timeline-wrap { position: relative; padding-left: 30px; margin-top: 30px; }
.timeline-wrap::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); }
.timeline-item { position: relative; margin-bottom: 35px; }
.timeline-item::before { content: ''; position: absolute; left: -30px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); }
.timeline-item .time-label { font-weight: 700; color: var(--primary); font-size: 1rem; margin-bottom: 5px; }
.timeline-item .time-content { color: var(--text); opacity: .8; line-height: 1.7; font-size: .98rem; }
.about-hero { padding: 50px 0 40px; }
.about-hero h1 { font-size: 2rem; }
.about-section { padding: 40px 0; }
.about-section h2 { font-size: 1.5rem; }
.about-stats { gap: 30px; }
.about-stat .stat-num { font-size: 2rem; }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
            padding: 60px 0 40px;
            text-align: center;
        }
.disclaimer-hero h1 {
            color: var(--primary);
            font-weight: 800;
            font-size: 2.4rem;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
.disclaimer-hero p {
            color: var(--text);
            opacity: 0.75;
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.disclaimer-content {
            padding: 50px 0 70px;
        }
.disclaimer-section {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-light);
            padding: 32px 36px;
            margin-bottom: 28px;
            transition: box-shadow 0.3s ease;
            border-left: 4px solid var(--primary);
        }
.disclaimer-section:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-section h2 {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-section h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            opacity: 0.85;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
.disclaimer-section ul li {
            margin-bottom: 8px;
        }
.disclaimer-highlight {
            background: rgba(244, 114, 182, 0.06);
            border-radius: 10px;
            padding: 16px 20px;
            margin: 20px 0;
            border: 1px dashed rgba(244, 114, 182, 0.3);
        }
.disclaimer-highlight strong {
            color: var(--primary);
        }
.last-updated {
            text-align: center;
            color: var(--text);
            opacity: 0.6;
            font-size: 0.85rem;
            margin-top: 40px;
        }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-section {
                padding: 24px 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 - 观影指南 */
        .guide-hero {
            background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.06) 100%);
            border-radius: var(--card-radius);
            padding: 60px 40px;
            margin: 30px 0 40px;
            text-align: center;
            border: 1px solid rgba(244,114,182,0.15);
        }
.guide-hero h1 {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.3;
        }
.guide-hero h1 span {
            color: var(--primary);
        }
.guide-hero p {
            color: var(--text);
            opacity: 0.75;
            font-size: 1.05rem;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.8;
        }
.guide-section {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 36px 32px;
            margin-bottom: 28px;
            box-shadow: var(--shadow-light);
            border: 1px solid rgba(244,114,182,0.08);
            transition: box-shadow 0.3s ease;
        }
.guide-section:hover {
            box-shadow: var(--shadow-hover);
        }
.guide-section h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
.guide-section h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 10px;
        }
.guide-section p {
            color: var(--text);
            opacity: 0.8;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.guide-section ul, .guide-section ol {
            color: var(--text);
            opacity: 0.8;
            line-height: 2;
            padding-left: 20px;
            font-size: 0.95rem;
        }
.guide-section li {
            margin-bottom: 4px;
        }
.guide-section li strong {
            color: var(--primary);
        }
.guide-tip {
            background: rgba(251,191,36,0.08);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 18px 0;
            font-size: 0.92rem;
            color: var(--text);
            line-height: 1.7;
        }
.guide-tip i {
            color: var(--accent);
            margin-right: 8px;
        }
.guide-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
.guide-step {
            background: var(--bg);
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid rgba(244,114,182,0.1);
        }
.guide-step .step-num {
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            margin: 0 auto 12px;
        }
.guide-step h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
.guide-step p {
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            line-height: 1.6;
            margin: 0;
        }
.guide-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 0.9rem;
        }
.guide-table th {
            background: rgba(244,114,182,0.1);
            color: var(--text);
            font-weight: 600;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid var(--primary);
        }
.guide-table td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(244,114,182,0.1);
            color: var(--text);
            opacity: 0.8;
            line-height: 1.6;
        }
.guide-table tr:hover td {
            background: rgba(244,114,182,0.03);
        }
.guide-hero {
                padding: 40px 20px;
            }
.guide-hero h1 {
                font-size: 1.8rem;
            }
.guide-section {
                padding: 24px 18px;
            }
.guide-steps {
                grid-template-columns: 1fr;
            }
.guide-table {
                display: block;
                overflow-x: auto;
            }

/* --- 子页面追加 --- */
/* 联系我们页面专属样式 */
        .contact-hero {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.05) 100%);
            border-bottom: 1px solid rgba(244,114,182,0.15);
        }
.contact-card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(244,114,182,0.2);
            border-radius: var(--card-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
            transition: box-shadow 0.3s ease;
        }
.contact-card:hover {
            box-shadow: var(--shadow-hover);
        }
.contact-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
.contact-label {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
.contact-value {
            color: var(--text);
            opacity: 0.85;
            line-height: 1.6;
        }
.contact-value a {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px dashed rgba(244,114,182,0.4);
            transition: border-color 0.3s;
        }
.contact-value a:hover {
            border-bottom-color: var(--primary);
        }
.form-card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(244,114,182,0.2);
            border-radius: var(--card-radius);
            padding: 30px;
            box-shadow: var(--shadow-light);
        }
.form-card .form-label {
            color: var(--text);
            font-weight: 500;
            margin-bottom: 8px;
        }
.form-card .form-control, .form-card .form-select {
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(244,114,182,0.25);
            border-radius: 10px;
            padding: 12px 16px;
            color: var(--text);
            font-size: 0.95rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
.form-card .form-control:focus, .form-card .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(244,114,182,0.1);
            outline: none;
            background: rgba(255,255,255,0.9);
        }
.form-card .form-control::placeholder {
            color: rgba(74,37,48,0.4);
        }
.form-card .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234a2530' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 16px 12px;
            appearance: none;
        }
.btn-submit {
            background: linear-gradient(135deg, var(--primary), #e85d9a);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 14px 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }
.btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244,114,182,0.3);
            color: #fff;
        }
.btn-submit:active {
            transform: translateY(0);
        }
.feedback-tips {
            background: rgba(251,191,36,0.08);
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            padding: 16px 20px;
            margin-top: 20px;
        }
.feedback-tips p {
            margin-bottom: 0;
            color: var(--text);
            opacity: 0.85;
            font-size: 0.95rem;
        }
.contact-divider {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244,114,182,0.3), transparent);
            margin: 40px 0;
        }
.response-time {
            display: inline-block;
            background: rgba(244,114,182,0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 10px;
        }
.contact-hero {
                padding: 40px 0 30px;
            }
.contact-card {
                padding: 20px;
            }
.form-card {
                padding: 20px;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card { background:rgba(0,0,0,.03) !important; color:#4a2530 !important; border-color:rgba(0,0,0,.12) !important; }
