    /* 移除之前的背景图片CSS规则，现在直接在HTML中设置 */
    .list-header {
        position: relative;
        color: #fff;
        background-size: 100% auto; /* 宽度100%，高度按比例缩放 */
        background-position: center center; /* 确保完全居中 */
        background-repeat: no-repeat;
        background-color: white; /* 回退背景色 */
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        min-height: 200px; /* 添加最小高度确保有足够空间 */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden; /* 隐藏超出部分 */
    }

    .list-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1; /* 确保覆盖层在背景之上，内容之下 */
    }
    
    .list-header > * {
        position: relative;
        z-index: 2; /* 确保内容在背景之上 */
    }
    
    .list-title {
        color: #ffcc00 !important; /* 使用亮黄色提高可读性 */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); /* 添加文字阴影 */
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .list-description {
        color: #ffffff !important; /* 修改描述文字颜色为白色 */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5); /* 增强文字阴影，提高清晰度 */
        font-size: 1rem;
        max-width: 900px;
        margin: 0 auto 15px;
        font-weight: 500; /* 稍微加粗字体 */
        letter-spacing: 0.3px; /* 增加字母间距 */
        line-height: 1.6; /* 增加行高 */
    }
    
    /* 新增的微信板块样式 - 调整尺寸适合整体布局 */
    .wechat-section {
        margin-bottom: 25px;
    }
    
    .wechat-section h2 {
        margin-bottom: 20px;
        text-align: center;
        color: #ffcc00;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 15px;
        font-size: 1.8rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .wechat-main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    
    .search-guide-section {
        background-color: #AC000C;
        border-radius: 10px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .search-guide-news .news-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .search-guide-news .news-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.3rem;
        color: #ffcc00;
        font-weight: bold;
    }
    
    .search-guide-news .news-title h2{
        margin-bottom: 0;
        text-align: left;
        border-bottom: none;
        padding-bottom: 0;
        font-size: 1.4rem !important;
    }
    
    .search-guide-news .news-title::before {
        content: "📰";
        font-size: 1.1rem;
    }
    
    .search-guide-news .news-date {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(255, 204, 0, 0.2);
        padding: 4px 10px;
        border-radius: 15px;
    }
    
    .search-guide-news .news-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-height: 749px;
        overflow-y: auto;
        padding-right: 10px;
    }
    
    .search-guide-news .news-container::-webkit-scrollbar {
        width: 6px;
    }
    
    .search-guide-news .news-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .search-guide-news .news-container::-webkit-scrollbar-thumb {
        background: #ffcc00;
        border-radius: 3px;
    }
    
    .search-guide-news .news-container::-webkit-scrollbar-thumb:hover {
        background: #ffd633;
    }
    
    .search-guide-news .news-item {
        padding: 12px 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }
    
    .search-guide-news .news-item:last-child {
        border-bottom: none;
    }
    
    .search-guide-news .news-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .search-guide-news .news-item-time {
        font-size: 0.8rem;
        color: #ffcc00;
        font-weight: bold;
    }
    
    .search-guide-news .news-item-date {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .search-guide-news .news-content {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .search-guide-news .news-footer {
        display: flex;
        justify-content: flex-end;
        margin-top: 8px;
    }
    
    .search-guide-news .news-tag {
        font-size: 0.7rem;
        color: #ffcc00;
        background-color: rgba(255, 204, 0, 0.1);
        padding: 2px 6px;
        border-radius: 10px;
    }
    
    .search-guide-news .news-more {
        text-align: center;
        margin-top: 15px;
    }
    
    .search-guide-news .news-more-btn {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffcc00;
        border: 1px solid rgba(255, 204, 0, 0.3);
        padding: 6px 15px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .search-guide-news .news-more-btn:hover {
        background-color: rgba(255, 204, 0, 0.2);
    }
    
    .tutorial-section {
        background-color: #AC000C;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        min-width: 0;
        min-height: 500px;
    }
    
    .tutorial-section h2 {
        margin-bottom: 20px;
        text-align: center;
        color: #ffcc00;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 10px;
        font-size: 1.4rem !important;
    }
    
    .tutorial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .tutorial-header h2 {
        margin-bottom: 0;
        text-align: left;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .tutorial-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
    }
    
    /* 移除了tutorial-item的hover动画效果 */
    .tutorial-item {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* 移除了hover效果 */
    .tutorial-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .tutorial-image {
        width: 179px;
        height: 120px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        border: 2px solid rgba(255, 204, 0, 0.3);
        background-color: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .tutorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    /* 保留图片缩放效果 */
    .tutorial-image:hover img {
        transform: scale(1.08);
    }
    
    .tutorial-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        height: 120px;
        min-width: 0;
    }
    
    .tutorial-name {
        font-size: 1.2rem;
        font-weight: bold;
        color: #ffcc00;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
    }
    
    .tutorial-name a {
        color: #ffcc00;
        text-decoration: none;
        transition: color 0.3s;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        width: 100%;
    }
    
    .tutorial-name a:hover {
        color: #ffd633;
        text-decoration: underline;
    }
    
    .tutorial-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .tutorial-meta {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        gap: 15px;
    }
    
    .tutorial-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .tutorial-link-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 6px;
    }
    
    .tutorial-link-title {
        color: #ffcc00;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-right: 10px;
    }
    
    .tutorial-link-title:hover {
        color: #ffd633;
        text-decoration: underline;
    }
    
    .tutorial-link-date {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .news-content {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #ffffff;
        margin-top: 5px;
        position: relative;
        padding: 25px;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 140px;
        display: flex;
        align-items: center;
        font-weight: 500;
        letter-spacing: 0.3px;
        background-color: rgba(255, 255, 255, 0.1);
        background-blend-mode: overlay;
    }
    
    .news-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .news-content p {
        position: relative;
        z-index: 2;
        margin: 0;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 1px 6px rgba(0, 0, 0, 0.6), 1px 1px 8px rgba(0, 0, 0, 0.7);
        padding: 5px 10px;
        border-radius: 8px;
        backdrop-filter: blur(4px) brightness(0.95);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 500;
        line-height: 1.7;
    }
    
    .news-content p strong {
        color: #ffcc00;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
    }
    
    .news-content p a {
        color: #ffcc00;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 204, 0, 0.5);
        transition: all 0.3s ease;
    }
    
    .news-content p a:hover {
        color: #ffd633;
        border-bottom-color: #ffd633;
    }
    
    /* 游戏列表板块样式 - 重新设计 */
    .game-list-section {
        margin-bottom: 30px;
    }
    
    .game-list-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e60012;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .game-list-title {
        color: #e60012;
        font-size: 1.4rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none; /* 移除下划线 */
    }
    
    .game-list-title::before {
        content: '🎮';
        font-size: 1.5rem;
    }
    
    .game-list-subtitle {
        color: #666;
        font-size: 1rem;
        font-weight: 500;
    }
    
    /* 让一行显示4个游戏资源 */
    .game-list-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    /* 移除了game-list-card的hover动画效果 */
    .game-list-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(230, 0, 18, 0.1);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    /* 移除了hover效果 */
    .game-list-card:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        border-color: rgba(230, 0, 18, 0.1);
    }
    
    .game-thumbnail-container {
        position: relative;
        width: 100%;
        height: 260px;
        overflow: hidden;
    }
    
    .game-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
        aspect-ratio: 1/1;
    }
    
    /* 保留图片缩放效果 */
    .game-list-card:hover .game-thumbnail {
        transform: scale(1.05);
    }
    
    /* 评分遮罩样式 */
    .rating-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 15px 20px;
        color: white;
        display: flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(2px);
    }
    
    .rating-stars {
        display: flex;
        gap: 2px;
    }
    
    .rating-stars .star {
        color: #ffcc00;
        font-size: 1.2rem;
    }
    
    .rating-stars .star.half {
        position: relative;
    }
    
    .rating-stars .star.half::after {
        content: '★';
        position: absolute;
        left: 0;
        width: 50%;
        overflow: hidden;
        color: #ffcc00;
    }
    
    .rating-score {
        font-size: 1.1rem;
        font-weight: bold;
        color: #ffcc00;
        margin-left: auto;
    }
    
    /* ============================================
       修改游戏列表名称和描述样式
       确保名称只显示一行，描述严格显示3行
       桌面端和移动端保持一致
       ============================================ */
    .game-list-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    /* 强制游戏名称只显示一行 - 桌面端 */
    .game-list-name {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1; /* 强制只显示1行 */
        -webkit-box-orient: vertical;
        min-height: 1.4em; /* 确保有一行的高度 */
        max-height: 1.4em; /* 限制最大高度为一行 */
        text-overflow: ellipsis;
    }
    
    .game-list-name a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .game-list-name a:hover {
        color: #e60012;
    }
    
    /* 强制游戏描述显示3行 - 桌面端 */
    .game-list-description {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
        flex: 1;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* 强制显示3行 */
        -webkit-box-orient: vertical;
        min-height: 4.5em; /* 确保有3行的高度 (0.95rem * 1.5 * 3) */
        max-height: 4.5em; /* 限制最大高度为3行 */
        text-overflow: ellipsis;
    }
    
    /* 两个价格靠左显示，中间有间距 */
    .game-list-meta {
display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 5px;
    }
    
    .game-list-price {
    background: linear-gradient(135deg, #e60012, #ff3366);
    color: white;
    padding: 0px 7px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
    }
    
    .game-list-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }
    
    .game-list-tag {
        background: rgba(230, 0, 18, 0.08);
        color: #e60012;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.85rem;
        border: 1px solid rgba(230, 0, 18, 0.15);
    }
    
    .game-list-platform {
        color: #666;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 8px 0px;
    }
    
    .game-list-platform::before {
        content: '🎮';
        font-size: 0.9rem;
    }
    
    /* 移动端统一响应式样式 - 确保移动端也实现相同效果 */
    @media (max-width: 768px) {
        .wechat-main-content {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .game-list-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .game-thumbnail-container {
            height: 250px;
        }
        
        /* 移动端去掉.article-container、.wechat-section的样式 */
        .article-container {
            padding: 10px!important;
        }
        
        .wechat-section {
            background-color: transparent;
            margin-bottom: 0;
            padding: 0;
        }
        
        .wechat-section h2 {
            font-size: 1.5rem;
        }
        
        .search-guide-section, .tutorial-section {
        min-height: auto;
        width: 100%;
        padding: 10px;
        }
        
        .tutorial-meta{
            
            display: none;
        }
        
        .tutorial-container {
            flex: none;
        }
        
        .tutorial-image {
            width: 100px;
            height: 100px;
        }
        
        .tutorial-info {
            height: 100px;
            gap: 5px;
        }
        
        .tutorial-header {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .tutorial-header h2 {
            text-align: center;
            width: 100%;
        }
        
        .tutorial-name, .tutorial-name a {
            font-size: 1.1rem;
        }
        
        .tutorial-link-title {
            font-size: 0.9rem;
        }
        
        .tutorial-link-date {
            font-size: 0.75rem;
        }
        
        .news-content {
            padding: 15px;
            min-height: 120px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .news-content p {
            padding: 10px 12px;
            font-size: 0.95rem;
            backdrop-filter: blur(3px) brightness(0.95);
        }
        
        .game-list-section {
            margin-bottom: 25px;
        }
        
        .game-list-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        
        .game-list-content {
            padding: 15px;
        }
        
        /* 移动端：强制游戏名称只显示一行 */
        .game-list-name {
            font-size: 1.2rem;
            line-height: 1.4;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1; /* 强制只显示1行 */
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            margin-bottom: 10px;
        }
        
        .game-list-name a {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
        }
        
        /* 移动端：强制游戏描述显示3行 */
        .game-list-description {
            font-size: 0.9rem;
            line-height: 1.5;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* 强制显示3行 */
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            margin-bottom: 12px;
        }
        
        .news-content {
            padding: 12px;
            min-height: 100px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .news-content p {
            padding: 8px 10px;
            font-size: 0.9rem;
            backdrop-filter: blur(2px) brightness(0.95);
        }
        
        .game-thumbnail-container {
            height: 280px;
        }
        
        /* 移动端价格显示优化 */
        .game-list-meta {
            flex-wrap: wrap;
            gap: 10px;
        }
    }
    
    /* 其他CSS样式保持不变 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
        -webkit-tap-highlight-color: transparent;
    }

    html {
        font-size: 16px;
    }

    body {
        background-color: #e60012;
        color: #fff;
        line-height: 1.6;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background-image: linear-gradient(135deg, #e60012 0%, #8b0000 100%);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    body.modal-open {
        overflow: hidden;
    }

    /* 定义theme-相关样式变量 */
    :root {
        --theme-color: #e60012;
        --theme-color-hsl: 0, 100%, 45%;
        --theme-hover: #8b0000;
        --theme-black-color: #333;
        --theme-gray-color: #666;
        --theme-light-color: #999;
        --theme-el-bg-color: #fff;
        --theme-border-radius-s: 5px;
        --theme-container-width: 1200px;
        --theme-sidebar-width: 300px;
        --theme-content-sidebar-gap: 20px;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        flex: 1;
    }

    .navbar {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        padding: 15px 25px;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        letter-spacing: 1px;
    }

    .nav-logo span {
        color: #ffcc00;
        font-size: 1.5rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        transition: all 0.3s ease;
    }

    .nav-item {
        margin-left: 25px;
    }

    .nav-link {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 5px;
        transition: all 0.3s;
        display: block;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffcc00;
    }

    .nav-link.active {
        background-color: #ffcc00;
        color: #8b0000;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .main-content {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    /* article-container宽度与main-content一致 */
    .article-container {
        width: 100%;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        color: #333;
    }

    /* 文章列表样式 */
    .article-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

    /* 移除了list-item的hover动画效果 */
    .list-item {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        color: #333;
        display: flex;
        align-items: stretch;
        min-height: 186px;
    }

    .list-image {
        width: 280px;
        height: 186px;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 10px 0 0 10px;
    }

    .list-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-width: 0;
        height: 186px;
        width: 480px;
    }

    .list-item-title {
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .list-item-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
    }

    .list-item-title a:hover {
        color: #e60012;
    }

    .list-item-meta {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
        color: rgba(0, 0, 0, 0.6);
        margin-bottom: 12px;
    }

    /* list-item-description 只显示3行，超出隐藏并用省略号 */
    .list-item-description {
        font-size: 0.95rem;
        color: rgba(0, 0, 0, 0.7);
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* 只显示3行 */
        -webkit-box-orient: vertical;
        flex: 1;
        text-overflow: ellipsis;
        max-height: 4.5em; /* 3行 * 1.5行高 */
    }

    .list-item-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: auto;
    }

    .list-item-tags a {
        background-color: rgba(230, 0, 18, 0.1);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #e60012;
        text-decoration: none;
        transition: all 0.3s;
        min-height: 30px;
        display: flex;
        align-items: center;
    }

    /* 分页样式 */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0;
        gap: 10px;
    }

    .pagination a, .pagination span {
        display: inline-block;
        padding: 12px 18px;
        background-color: white;
        color: #333;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s;
        font-weight: 500;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pagination a:hover {
        background-color: #e60012;
        color: white;
    }

    .pagination .current {
        background-color: #e60012;
        color: white;
    }

    .pagination .prev, .pagination .next {
        background-color: rgba(255, 255, 255, 0.8);
    }

    /* 返回顶部按钮 */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: #e60012;
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #8b0000;
        transform: translateY(-3px);
    }

    /* Toast 提示 */
    .toast {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 12px 24px;
        border-radius: 5px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .toast.show {
        opacity: 1;
    }

    /* 动画效果 */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

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

    @keyframes scaleIn {
        from { 
            opacity: 0;
            transform: scale(0.8);
        }
        to { 
            opacity: 1;
            transform: scale(1);
        }
    }

    /* 页脚样式 */
    footer {
        text-align: center;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .footer-links {
        margin-top: 15px;
        font-size: 14px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
        margin: 0 8px;
        padding: 5px 0;
    }

    .footer-links a:hover {
        color: #ffcc00;
        text-decoration: underline;
    }

    /* HTML5 元素支持 */
    article, section, main, aside, nav {
        display: block;
    }

    /* 移动端统一响应式设计 */
    @media (max-width: 768px) {
        .container {
            width: 100%;
            padding: 10px;
        }
        
        .main-content {
            flex-direction: column;
            margin-top: 0px;
        }
        
        .navbar{
           margin-bottom: 10px; 
            
        }
        
        
        .nav-container {
            flex-wrap: wrap;
        }
        
        .nav-menu {
            flex-direction: column;
            width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .nav-menu.active {
            max-height: 300px;
        }
        
        .nav-item {
            margin: 8px 0;
            width: 100%;
            text-align: center;
        }
        
        .nav-link {
            padding: 12px 15px;
            display: block;
            width: 100%;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-btn {
            display: block;
            min-width: 44px;
            min-height: 44px;
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
        
        .footer-links a {
            margin: 0 6px;
        }
        
        .list-item {
            flex-direction: column;
        }
        
        .list-image {
            width: 100%;
            height: 200px;
            border-radius: 10px 10px 0 0;
        }
        
        .list-content {
            height: auto;
            min-height: 180px;
            width: 100%;
        }
        
        .list-item-title {
            font-size: 1.2rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .list-item-meta {
            flex-direction: column;
            gap: 8px;
        }
        
        /* 列表标题区域响应式优化 */
        .list-header {
            padding: 15px;
                background-size: auto 100%;
        }
        
        .list-title {
            font-size: 1.5rem;
        }
        
        .list-description {
            font-size: 0.9rem;
            padding: 0 10px;
        }
    }

/* ============================================
   醒目版微信公众号和小程序推广板块样式
   ============================================ */
.eye-catching-platform-promotion {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 50%, #ff9999 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
    border: 2px solid #e60012;
    position: relative;
    overflow: hidden;
}

.eye-catching-platform-promotion::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: #e60012;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.eye-catching-platform-promotion::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-color: #ff3366;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.promotion-content-wrapper {
    position: relative;
    z-index: 2;
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promotion-text {
    flex: 1;
    position: relative;
}

.promotion-text p {
    color: #8b0000;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.promotion-text strong {
    color: #e60012;
    font-weight: bold;
}

.promotion-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.eye-catching-btn {
    background: linear-gradient(135deg, #e60012, #ff3366);
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 0, 18, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* 移除所有悬停动画效果 */
    transition: none;
}

/* 移除悬停效果 */
.eye-catching-btn:hover {
    background: linear-gradient(135deg, #e60012, #ff3366);
    transform: none;
    box-shadow: 0 4px 10px rgba(230, 0, 18, 0.4);
}

.eye-catching-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
    border-radius: 25px;
}

/* 确保二维码图片显示正确 */
.eye-catching-qr-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 5px;
}

/* 优化模态框样式 - 固定在视窗中央，不遮盖滚动条 */
.eye-catching-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.eye-catching-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.eye-catching-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: modalAppear 0.3s ease-out;
    margin: auto;
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.eye-catching-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 10;
}

.eye-catching-modal-close:hover {
    background-color: #e60012;
    color: white;
}

.eye-catching-modal-title {
    font-size: 1.4rem;
    color: #e60012;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.eye-catching-modal-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
}

.eye-catching-qr-container {
    margin: 0 auto 25px;
    width: 220px;
    height: 220px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.eye-catching-qr-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e60012, #ff3366);
}

.eye-catching-modal-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

/* 优化模态框滚动条样式 */
.eye-catching-modal-overlay::-webkit-scrollbar {
    width: 8px;
}

.eye-catching-modal-overlay::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.eye-catching-modal-overlay::-webkit-scrollbar-thumb {
    background: rgba(230, 0, 18, 0.5);
    border-radius: 4px;
}

.eye-catching-modal-overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(230, 0, 18, 0.7);
}

/* 平板端响应式调整 */
@media (max-width: 1024px) {
    .game-list-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .eye-catching-platform-promotion {
        padding: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .promotion-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .promotion-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .eye-catching-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1;
        justify-content: center;
    }
    
    .eye-catching-modal-content {
        padding: 20px;
        max-width: 320px;
    }
    
    .eye-catching-qr-container {
        width: 180px;
        height: 180px;
    }
    
    .eye-catching-qr-container img {
        max-width: 100%;
        height: auto;
    }
    
    .game-list-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .promotion-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .eye-catching-btn {
        width: 100%;
    }
    
    .eye-catching-modal-content {
        padding: 15px;
        max-width: 280px;
    }
    
    .eye-catching-qr-container {
        width: 160px;
        height: 160px;
    }
}


	/* 悬浮按钮样式 - 固定在视口中间 */
			.floating-game-btn {
				position: fixed;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1000;
				display: flex;
				flex-direction: column;
				align-items: center;
				transition: all 0.3s ease;
			}
			
			/* 在桌面端大屏幕显示 */
			@media (min-width: 1200px) {
				.floating-game-btn {
					left: calc((100% - 1200px) / 2 - 80px);
				}
			}
			
			@media (min-width: 992px) and (max-width: 1199px) {
				.floating-game-btn {
					left: calc((100% - 960px) / 2 - 70px);
				}
			}
			
			.floating-game-btn .btn-main {
				background-color: #ff3b30;
				color: white;
				border: none;
				padding: 12px 20px;
				border-radius: 25px;
				cursor: pointer;
				font-weight: bold;
				font-size: 16px;
				box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
				transition: all 0.3s ease;
				writing-mode: vertical-rl;
				text-orientation: mixed;
				letter-spacing: 2px;
				white-space: nowrap;
			}
			
			.floating-game-btn .btn-main:hover {
				background-color: #ff1f1f;
				box-shadow: 0 6px 16px rgba(255, 59, 48, 0.4);
				transform: translateY(-2px);
			}
			
			.floating-game-btn .qr-container {
				position: absolute;
				left: 100%;
				top: 50%;
				transform: translateY(-50%) scale(0.9);
				opacity: 0;
				visibility: hidden;
				transition: all 0.3s ease;
				margin-left: 15px;
				background: white;
				padding: 15px;
				border-radius: 10px;
				box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
				width: 200px;
				text-align: center;
				pointer-events: none;
				z-index: 1000;
			}
			
			.floating-game-btn:hover .qr-container {
				transform: translateY(-50%) scale(1);
				opacity: 1;
				visibility: visible;
				pointer-events: auto;
			}
			
			.floating-game-btn .qr-img {
				width: 170px;
				height: 170px;
				border-radius: 5px;
				margin-bottom: 10px;
			}
			
			.floating-game-btn .qr-title {
				font-weight: bold;
				color: #333;
				margin: 0;
				font-size: 16px;
			}
			
			.floating-game-btn .qr-desc {
				color: #666;
				font-size: 12px;
				margin: 5px 0 0 0;
				line-height: 1.4;
			}
			
			/* 响应式调整 */
			@media (max-width: 1200px) {
				.floating-game-btn {
					left: 10px;
				}
				
				.floating-game-btn .btn-main {
					padding: 10px 16px;
					font-size: 14px;
				}
				
				.floating-game-btn .qr-container {
					width: 180px;
					padding: 12px;
				}
				
				.floating-game-btn .qr-img {
					width: 150px;
					height: 150px;
				}
			}
			
			@media (max-width: 992px) {
				.floating-game-btn {
					display: none; /* 在较小屏幕隐藏悬浮按钮 */
				}
			}