/* 资讯详情页面专用样式 */

/* 主要布局容器 */
.detail-main {
    padding: 20px 0;
    min-height: calc(100vh - 200px);
}

.detail-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* 左侧内容区域 */
.detail-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* 文章容器 */
.article-container {
    padding: 30px;
}

/* 文章头部 */
.article-header {
    border-bottom: 2px solid #e1f5fe;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ff6600 0%, #ff8100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-author {
    color: #ff6600 !important;
    font-weight: 500;
}

.article-category {
    background: linear-gradient(135deg, #ff6600, #e5885d);
    color: white !important;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* 文章内容区域 */
.article-body {
    line-height: 1.8;
    color: #2c3e50;
}

.article-intro {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.article-intro p {
    text-indent: 2ch;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #34495e;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

/* 相关文章区域 */
.related-articles {
    margin-top: 40px;
    padding: 25px;
    border-radius: 12px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #ff6600, #e5885d);
}

.related-list {
    display: grid;
    gap: 15px;
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-item img {
    width: 240px;
    height: 135px;
    object-fit: cover;
    border-radius: 8px;
}

.related-info h4 {
    font-size: 15px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.related-date {
    font-size: 12px;
    color: #7f8c8d;
}

/* 右侧边栏 */
.detail-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e1f5fe;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #ff6600, #ff8100);
}

/* 热门游戏推荐 */
.hot-games {
    display: grid;
    gap: 15px;
}

.hot-game-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e1f5fe;
}

.hot-game-item:hover {
    background: #e3f2fd;
    border-color: #ff6600;
    transform: translateY(-2px);
}

.hot-game-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.hot-game-info h4 {
    font-size: 14px;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.hot-game-category {
    font-size: 12px;
    color: #7f8c8d;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
}

/* 最新资讯 */
.latest-news {
    display: grid;
    gap: 12px;
}

.news-item-small {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.news-item-small:hover {
    background: #f8f9fa;
    border-color: #e5885d;
}

.news-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff8100, #e5885d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.news-content-small h4 {
    font-size: 13px;
    color: #2c3e50;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.news-date-small {
    font-size: 11px;
    color: #7f8c8d;
}

/* 下载排行榜 */
.rank-list {
    display: grid;
    gap: 12px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.rank-item:hover {
    background: #f8f9fa;
    border-color: #ff6600;
}

.rank-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: #95a5a6;
    flex-shrink: 0;
}

.rank-number.top {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.rank-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.rank-name {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

/* ===== 游戏合集详情页面样式 ===== */

/* 合集头部介绍区域 */
.detail-collection-header {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.detail-collection-banner {
    flex-shrink: 0;
}

.detail-collection-banner img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.detail-collection-info {
    flex: 1;
}

.detail-collection-title {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #e5885d 0%, #ff8100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-collection-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-collection-meta span {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #495057;
    border: 1px solid #e9ecef;
}

.detail-collection-count {
    background: linear-gradient(135deg, #e5885d, #ff8100) !important;
    color: white !important;
    border: none !important;
}

.detail-collection-desc p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 游戏列表区域 */
.detail-games-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.detail-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e5885d, #ff8100);
    border-radius: 2px;
}

/* 游戏网格布局 */
.detail-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.detail-game-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    height: 220px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.detail-game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff6600;
}

.detail-game-item-content {
    display: flex;
    gap: 15px;
}

.detail-game-icon {
    position: relative;
    align-items: center;
    flex-shrink: 0;
}

.detail-game-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-game-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.detail-game-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.detail-game-size {
    font-size: 13px;
    color: #7f8c8d;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 10px;
}

.detail-game-rating {
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
}

.detail-game-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 加载更多按钮 */
.detail-load-more {
    text-align: center;
    margin-top: 20px;
}

.detail-load-more-btn {
    background: linear-gradient(135deg, #ff6600, #ff8100);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 推荐合集区域样式 */
.detail-more-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.detail-more-link:hover {
    color: #ff8100;
    transform: translateX(3px);
}

.detail-recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.detail-recommend-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.detail-recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff6600;
}

.detail-recommend-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.detail-recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-recommend-item:hover .detail-recommend-image img {
    transform: scale(1.1);
}

.detail-recommend-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.detail-recommend-info {
    padding: 15px;
}

.detail-recommend-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-recommend-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 网站地图页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 分类区域样式 */
.sitemap-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 标题样式 */
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #ff5722;
    text-align: left;
}

/* 按钮容器 */
.section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

/* 按钮样式 */
.sitemap-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sitemap-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sitemap-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 页脚样式 */
.sitemap-footer {
    margin-top: 40px;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff5722;
}

.footer-promo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-promo p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.footer-copyright p {
    color: #999;
    font-size: 12px;
    margin-bottom: 5px;
}


/* 关于我们页面样式 */
.about-main {
    margin: auto;
    background: #f8f9fa;
    padding: 40px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.about-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 36px 32px 32px 32px;
    margin-bottom: 40px;
}

.about-title h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 24px;
    padding-left: 16px;
    background: #fff;
}

.about-content h3 {
    font-size: 18px;
    color: #222;
    margin: 28px 0 12px 0;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
}

.about-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: 2px;
}

.about-content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    text-align: justify;
}

.about-content ul {
    margin: 0 0 16px 24px;
    padding: 0;
    list-style: disc inside;
}

.about-content li {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .about-card {
        padding: 18px 8px 18px 8px;
    }

    .about-title h2 {
        font-size: 20px;
        padding-left: 10px;
    }

    .about-content h3 {
        font-size: 16px;
        padding-left: 8px;
    }

    .about-content p, .about-content li {
        font-size: 14px;
    }
}

/* 游戏详情图片模态框样式 */
.gameDe-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gameDe-image-modal.show {
    opacity: 1;
    visibility: visible;
}

.gameDe-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.gameDe-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    transition: all 0.3s ease;
}

.gameDe-image-modal.show .gameDe-image-content {
    transform: translate(-50%, -50%) scale(1);
}

.gameDe-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.gameDe-image-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gameDe-image-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

/* 游戏详情页面动画样式 */
@keyframes gameDetailFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gameDetailSlideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gameDe-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

/* 图片合集页面样式 */
.gallery-item {
    width: 370px;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item-info {
    width: 100%;
    display: flex;
    padding: 12px 15px 15px 15px;
    background: #fff;
}

.gallery-item-desc {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
}

.gallery-item-date {
    font-size: 12px;
    color: #888;
    text-align: right;
}


/* 图片详情页面样式 */
.gallery-detail-main {
    background: #2c3e50;
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.gallery-detail-title {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-detail-title h1 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

/* 主图片展示区域 */
.gallery-detail-display {
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.gallery-detail-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-detail-main-image {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-detail-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.game-logo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

/* 导航按钮 */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-nav-prev {
    left: -25px;
}

.gallery-nav-next {
    right: -25px;
}

.nav-arrow {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

/* 图片信息和控制区域 */
.gallery-detail-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.gallery-detail-caption {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.gallery-detail-actions {
    display: flex;
    gap: 15px;
}

.gallery-download-btn {
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gallery-download-btn:hover {
    background: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.download-icon {
    font-size: 16px;
}

/* 缩略图画廊 */
.gallery-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.thumbnail-item {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: #ff6600;
}

.thumbnail-item.active {
    border-color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 游戏详情页面截图展示区域样式 */
.gameDe-screenshots-section {
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.gameDe-screenshots-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    padding: 20px 30px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #ff6600 0%, #ff8100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gameDe-screenshots-title::before {
    content: "📸";
    margin-right: 10px;
    font-size: 18px;
}

/* 大图展示区域 */
.gameDe-screenshot-display {
    padding: 20px 30px;
    background: #f8f9fa;
}

.gameDe-screenshot-main {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gameDe-screenshot-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gameDe-screenshot-main:hover img {
    transform: scale(1.05);
}

/* 导航按钮覆盖层 */
.gameDe-screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gameDe-screenshot-main:hover .gameDe-screenshot-overlay {
    opacity: 1;
}

.gameDe-screenshot-prev,
.gameDe-screenshot-next {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameDe-screenshot-prev:hover,
.gameDe-screenshot-next:hover {
    background: rgba(205, 104, 57, 0.9);
    transform: scale(1.1);
}

.gameDe-screenshot-prev:disabled,
.gameDe-screenshot-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-nav {
    margin-top: 40px;
    text-align: center;
}

.page-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    color: #666;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #ff6600, #ff8100);
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.download-btn img {
    width: 40px;
    height: 40px;
}

.download-buttons {
    margin: auto;
}

.permission-link {
    color: #ff6600;
    background: none;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.permission-modal.show {
    opacity: 1;
    visibility: visible;
}

.permission-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.permission-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
    min-width: 30vw;
    max-width: 30vw;
    min-height: 50vh;
    max-height: 50vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.permission-header {
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    padding: 20px 20px 15px 20px;
    background: white;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 1;
    position: relative;
}

.permission-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.permission-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.permission-item {
    margin-bottom: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
}

.permission-footer {
    text-align: center;
    padding: 15px 20px 20px 20px;
    margin-top: 0;
    background: white;
    flex-shrink: 0;
}

.permission-confirm {
    background: linear-gradient(135deg, #ff6600, #ff8100);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 24px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.gameDe-description p > img {
    display: block;
    margin: 0 auto;
}

.index-img {
    display: flex;
}

.index-img img {
    width: 245px;
    height: 150px;
}

.index-zxl {
    position: relative;
}

.index-text {
    width: 16em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.index-text h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.article-intro p img {
    display: block;
    margin: auto;
}
