/*
Theme Name: Short Drama Hub
Theme URI: https://shortools.com/
Author: QXUAN
Description: 一个适配移动端的暗黑系短剧主题，包含轮播图和详情页。
Version: 1.2 (优化版)
Text Domain: short-drama-theme
*/

/* ======================
   基础层：全局重置 + 基础样式（暗黑系）
   核心：统一盒模型、清除默认样式、基础暗黑配色
====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    /* 禁止IOS文本缩放 */
    -ms-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======================
   重构版 Header 样式（适配多设备）
   核心：移动端折叠菜单 + PC 端展开导航，保留搜索/语言切换
====================== */
/* 2.1 页头样式 - 适配搜索框，移动端优先 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #1e1e1e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
    z-index: 999;
}

/* 移动端菜单按钮（汉堡图标） */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #f43f5e;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* Logo 区域 */
.logo {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f43f5e;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
}

.logo:hover {
    color: #ec4899;
}


/* 搜索框 - 核心适配 */
.header-search {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    max-width: 500px;
    margin: 0 10px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    border-radius: 20px;
    padding: 4px 10px;
    border: 1px solid #3d3d3d;
    width: 100%;
    height: 34px;
    transition: all 0.3s ease;
}


.search-form:focus-within {
    border-color: #f43f5e;
    background: #333;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

.search-field {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    flex: 1;
    font-size: 0.8rem;
    padding: 0;
    max-width: calc(100% - 25px);
}

.search-submit {
    background: transparent;
    border: none;
    color: #f43f5e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
}

/* 语言切换按钮 */
.lang-switch {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.lang-btn {
    padding: 2px 4px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #2d2d2d;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.75rem;
    min-width: 32px;
    text-align: center;
}

.lang-btn.active {
    background: #f43f5e;
    color: #fff;
    border-color: #f43f5e;
}

/* 桌面端主导航（默认隐藏，大屏显示） */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 15px;
    margin-left: 15px;
}

.desktop-nav-item {
    color: #e0e0e0;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: color 0.2s;
    cursor: pointer;
}

.desktop-nav-item:hover {
    color: #f43f5e;
}


/* 隐藏Chrome/Safari滚动条 */
.nav-list::-webkit-scrollbar {
    display: none;
}

/* 移动端折叠菜单（默认隐藏） */
.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    border-top: 1px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
    padding: 15px 0;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    padding: 12px 20px;
    color: #e0e0e0;
    font-size: 0.9rem;
    border-bottom: 1px solid #2d2d2d;
    transition: background 0.2s;
}

.mobile-nav-item:hover {
    background: #2d2d2d;
    color: #f43f5e;
}

/* ======================
   业务层：核心模块（Banner + 短剧列表 + 详情页）
====================== */
/* 3.1 Banner（移动端/PC端适配，高兼容） */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 85%;
    /* 移动端比例 */
    height: 0;
    margin-top: 60px;
}

/* Banner内的标题+按钮区域 */
.banner-content {
    position: absolute;
    top: 70%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    width: 90%;
}

.banner-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-play-btn {
    padding: 6px 15px;
    background: #fff;
    color: #f43f5e;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.banner-play-btn:hover {
    background: #f8f8f8;
}

.banner-play-btn span {
    font-size: 1.2rem;
}

/* Banner底部渐变遮罩 */
.banner-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #121212 0%, transparent 100%);
    z-index: 5;
}

/* 轮播指示器 */
.banner-dots {
    position: absolute;
    bottom: 20px;
    right: 8%;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.banner-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

/* 轮播幻灯片 */
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

/* 3.2 短剧列表（移动端2列，PC端自适应；悬停特效） */
.drama-section {
    padding: 15px;
    min-height: 300px;
    /* 保证最小高度 */
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.drama-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.drama-item {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

/* 鼠标悬停特效（PC端生效更优，移动端弱感知） */
.drama-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: #f43f5e;
    z-index: 10;
}

/* 短剧图片：1080×1440竖屏比例（133.33%），占位防闪烁 */
.drama-img {
    width: 100%;
    padding-top: 133.33%;
    position: relative;
    height: 0;
    background-color: #0a0a0a;
    overflow: hidden;
}

.drama-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drama-item:hover .drama-img img {
    transform: scale(1.05);
}

/* 短剧标题：2行溢出隐藏 */
.drama-title {
    padding: 8px 10px;
    font-size: 0.85rem;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s;
}

.drama-item:hover .drama-title {
    color: #f43f5e;
}

/* 3.3 详情页样式（移动端上下布局，PC端左右布局） */
.detail-container {
    padding: 15px;
    margin-top: 60px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.detail-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 左侧图片区 */
.detail-left {
    width: 100%;
}

.detail-img {
    width: 100%;
    padding-top: 133.33%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 0;
    background: #0a0a0a;
}

.detail-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧信息区 */
.detail-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-header {
    margin-bottom: 10px;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.detail-tag {
    padding: 6px 12px;
    background: #2d2d2d;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* 文本模块通用样式 */
.detail-desc,
.actor-section,
.predict-section {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.detail-desc h3,
.actor-section h3,
.predict-section h3 {
    color: #f43f5e;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333;
}

.detail-desc p,
.predict-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
}

/* 演员列表（移动端横向滚动，PC端换行） */
.actor-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.actor-list::-webkit-scrollbar {
    display: none;
}

.actor-item {
    text-align: center;
    min-width: 100px;
}

.actor-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
    background: #222;
    margin-left: auto;
    margin-right: auto;
}

.actor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actor-name {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
}

.actor-role {
    font-size: 0.85rem;
    color: #999;
}

/* ======================
   功能层：推广/广告/分享/悬浮按钮/无结果提示
====================== */
/* 4.1 推广模块样式 */
.promo-section {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

/* 通用按钮样式 */
.promo-btn {
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    width: 100%;
}

/* 主按钮（本资源链接） */
.promo-btn-primary {
    background: #f43f5e;
    color: #fff;
    border: none;
}

.promo-btn-primary:hover {
    background: #e12f4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(244, 63, 94, 0.3);
}

/* 次按钮（首页链接） */
.promo-btn-secondary {
    background: #2d2d2d;
    color: #f43f5e;
    border: 1px solid #f43f5e;
}

.promo-btn-secondary:hover {
    background: #383838;
    transform: translateY(-2px);
}

/* 推广口令样式 */
.promo-code {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #333;
}

.code-label {
    font-size: 0.95rem;
    color: #d0d0d0;
}

.code-num {
    font-size: 2rem;
    font-weight: 700;
    color: #f43f5e;
    letter-spacing: 2px;
}

.code-tip {
    font-size: 0.85rem;
    color: #999;
}

/* 4.2 广告位样式（AdSense） */
.ad-slot {
    width: 100%;
    height: 250px;
    background: #1e1e1e;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px dashed #333;
}

.ad-slot-sm {
    height: 250px;
    margin-top: 15px;
}

/* 小广告（PC左侧） */
.ad-slot-md {
    height: 90px;
}

/* 中广告（PC右侧） */
.ad-slot-lg {
    height: 250px;
    margin-top: 20px;
}

/* 大广告（通栏） */

/* 4.3 极简图标式分享栏 */
.share-section-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #1e1e1e;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.share-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    white-space: nowrap;
}

.share-icons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

/* 通用图标按钮样式 */
.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: all 0.2s ease;
}

.share-icon-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* 各平台分享按钮 */
.fb-btn {
    background: #1877f2;
}

.x-btn {
    background: #000000;
}

.ig-btn {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.copy-btn {
    background: #333333;
}

.fb-btn span {
    font-weight: 700;
}

.x-btn span {
    font-weight: 700;
    font-size: 0.9rem;
}

.ig-btn span {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: -1px;
}

.copy-btn span {
    font-size: 0.9rem;
}

/* 4.4 悬浮按钮：回到顶部 + 回到首页 */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    opacity: 0.9;
    border: 1px solid #ffffff20;
    color: #ffffff;
}

.btn-back-top {
    background: #f43f5e;
}

.btn-back-home {
    background: #d12e4e;
}

.float-btn .icon {
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-btn .text {
    font-size: 0.6rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.float-btn:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* 4.5 搜索结果相关样式 */
.search-results-header {
    padding: 20px 15px;
    margin-bottom: 15px;
}

.search-results-header h1 {
    font-size: 1.2rem;
    color: #f43f5e;
}

/* 无结果提示框 */
.no-results-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #1e1e1e;
    border-radius: 12px;
    margin: 20px 0;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: grayscale(1);
    opacity: 0.5;
}

.no-results-box h2 {
    color: #f43f5e;
    margin-bottom: 10px;
}

.no-results-box p {
    color: #999;
    max-width: 400px;
    margin: 0 auto 25px;
}

.back-home-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #f43f5e;
    color: #fff;
    border-radius: 20px;
    font-weight: bold;
    transition: transform 0.2s;
}

.back-home-btn:hover {
    transform: scale(1.05);
}

/* 热门推荐模块 */
.hot-recommend {
    margin-top: 40px;
}

.hot-recommend-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.hot-recommend-section .section-title {
    color: #f43f5e;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* ======================
   辅助层：政策/关于/FAQ/页脚
====================== */
/* 辅助页面通用容器 */
.policy-container,
.about-container,
.faq-container {
    padding: 15px;
    margin-top: 70px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.policy-wrap,
.about-wrap,
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 页面标题 */
.policy-title,
.about-title,
.faq-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f43f5e;
    margin-bottom: 15px;
    text-align: center;
}

/* 政策页面最后更新时间 */
.policy-last-updated {
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

/* 政策/关于页面内容 */
.policy-content,
.about-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.policy-content h3,
.about-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f43f5e;
    margin: 20px 0 10px;
}

.policy-content p,
.about-content p {
    margin-bottom: 12px;
}

/* FAQ页面样式 */
.faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* 页脚样式 */
.footer {
    margin-top: 20px;
    padding: 20px 15px;
    background: #1e1e1e;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f43f5e;
}

/* ======================
   响应式适配：断点分层（移动端→平板→PC→大屏）
   核心：移动端优先，PC端覆盖；避免重复断点
====================== */
/* 小屏移动端（375px以下） */
@media (max-width: 375px) {

    /* 导航优化 */
    .nav-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* 广告位高度 */
    .ad-slot {
        height: 200px;
    }

    /* 分享栏紧凑 */
    .share-section-new {
        padding: 8px 10px;
        gap: 8px;
    }

    .share-icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    /* 悬浮按钮缩小 */
    .float-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn .icon {
        font-size: 1.1rem;
    }

    .float-btn .text {
        font-size: 0.55rem;
    }
}

/* 平板/PC端（768px以上） */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-nav {
        display: none !important;
        /* 强制隐藏移动端菜单 */
    }

    .header {
        padding: 0 30px;
    }

    .header-search {
        max-width: 400px;
    }

    .desktop-nav-item {
        font-size: 0.9rem;
    }

    /* Banner */
    .banner {
        padding-top: 28%;
        max-width: 1920px;
        margin: 0 auto;
        /* margin-top: 60px; */
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-play-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    /* 短剧列表：自适应列数 */
    .drama-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 15px 0;
    }

    .drama-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-title {
        text-align: left;
        padding-left: 0;
        font-size: 1.1rem;
    }

    .drama-title {
        font-size: 0.9rem;
    }

    /* 详情页：左右布局 */
    .detail-container {
        max-width: 1200px;
        margin-top: 70px;
        padding: 20px 0;
    }

    .detail-wrap {
        flex-direction: row;
        gap: 25px;
    }

    .detail-left {
        width: 350px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .detail-img {
        padding-top: 133.33%;
        max-width: 400px;
        margin: 0 auto;
    }

    .detail-right {
        width: calc(100% - 350px);
        gap: 20px;
    }

    .detail-title {
        font-size: 2rem;
    }

    /* 演员列表：换行显示 */
    .actor-list {
        overflow-x: visible;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .actor-item {
        min-width: 120px;
    }

    .actor-img {
        width: 100px;
        height: 100px;
    }

    /* 文本模块放大 */
    .detail-desc,
    .actor-section,
    .predict-section {
        padding: 20px;
    }

    .detail-desc h3,
    .actor-section h3,
    .predict-section h3 {
        font-size: 1.2rem;
    }

    .detail-desc p,
    .predict-section p {
        font-size: 1.05rem;
    }

    /* 推广按钮横排 */
    .promo-btns {
        flex-direction: row;
        gap: 15px;
    }

    .promo-btn {
        flex: 1;
    }

    .promo-code {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    /* 导航居中 */
    .nav-list {
        justify-content: center;
    }

    /* 分享栏间距 */
    .share-section-new {
        gap: 12px;
    }

    .share-icons {
        gap: 10px;
    }

    /* 辅助页面 */
    .policy-container,
    .about-container,
    .faq-container {
        padding: 20px;
        margin-top: 80px;
    }

    .policy-wrap,
    .about-wrap,
    .faq-wrap {
        padding: 30px;
    }

    .policy-title,
    .about-title,
    .faq-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .policy-content h3,
    .about-content h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        font-size: 1.2rem;
    }
}

/* ======================
   响应式断点适配
====================== */
/* 移动端（767px 以下）- 保留汉堡按钮、折叠菜单 */
@media (max-width: 767px) {
    .header {
        padding: 0 10px;
    }

    .header-search {
        max-width: calc(100% - 120px);
        margin: 0 5px;
    }

    .search-field::placeholder {
        color: transparent;
        /* 移动端隐藏placeholder节省空间 */
    }
}

/* 大屏PC（1200px以上） */
@media (min-width: 1200px) {

    /* 详情页 */
    .detail-container {
        padding: 30px 0;
    }

    .detail-wrap {
        gap: 30px;
    }

    .detail-img {
        max-width: 500px;
        margin: 0 auto 15px;
    }

    /* 辅助页面 */
    .policy-container,
    .about-container,
    .faq-container {
        max-width: 1200px;
    }

    .policy-wrap,
    .about-wrap,
    .faq-wrap {
        max-width: 1000px;
    }

    .header {
        padding: 0 50px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .header-search {
        max-width: 500px;
    }
}

/* 移动端搜索框placeholder隐藏（600px以下） */
@media (max-width: 600px) {
    .search-field::placeholder {
        color: transparent;
    }
}

/* 查看更多按钮容器 */
.view-more-container {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
}

/* 按钮基础样式 */
.view-more-btn {
    display: inline-block;
    padding: 10px 40px;
    background: transparent;
    color: #f43f5e;
    /* 使用您主题的标志红 */
    border: 1px solid #f43f5e;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 悬停效果：反色显示 */
.view-more-btn:hover {
    background: #f43f5e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

/* 移动端适配 */
@media (max-width: 600px) {
    .view-more-btn {
        width: 80%;
        /* 手机端按钮加宽，方便点击 */
        padding: 12px 0;
    }
}