        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
        }
        a {
            text-decoration: none;
        }

        /* 自定义CSS */
        body {
            --theme: #40a9ff;
            --background: rgba(255, 255, 255, 0.4);
            --radius-wrap: 13px;
            --radius-inner: 15px;
            background: #FFFFFF;
            padding-top: 0;
            padding-bottom: 60px;
            color: #333;
        }

        /* 电脑端居中容器 */
        .page-container {
            width: 100%;
            max-width: 750px;
            margin: 0 auto;
            background-color: transparent;
            padding-top: 0;
        }
        
        /* 卡片样式 */
        .mb25 {
            margin-bottom: 25px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -5px;
        }
        
        .gutters-5 {
            margin: 0 -5px;
        }
        
        .col-sm-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 5px;
        }
        
        .col-xs-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 5px;
        }
        
        .main-color {
            color: #333;
        }
        
        .icon-cover-card {
            background-color: var(--background) !important;
            border-radius: 10px !important;
            padding: 10px !important;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }
        
        .icon-cover-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .flex {
            display: flex;
        }
        
        .ac {
            align-items: center;
        }
        
        .zib-widget {
            position: relative;
        }
        
        .mb0 {
            margin-bottom: 0;
        }
        
        .icon-cover-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .badg {
            display: inline-block;
            padding: 0.25em 0.4em;
            font-size: 75%;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 0.25rem;
        }
        
        .cir {
            border-radius: 50%;
        }
        
        .c-blue {
            background-color: #e6f7ff;
            color: #1890ff;
        }
        
        .c-purple {
            background-color: #f3e5f5;
            color: #9c27b0;
        }
        
        .c-yellow {
            background-color: #fff8e1;
            color: #faad14;
        }
        
        .c-green {
            background-color: #f6ffed;
            color: #52c41a;
        }
        
        .ml10 {
            margin-left: 8px;
        }
        
        .flex1 {
            flex: 1;
        }
        
        .px12-sm {
            padding-left: 8px;
            padding-right: 8px;
        }
        
        .em12 {
            font-size: 13px;
        }
        
        .text-ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .font-bold {
            font-weight: bold;
        }
        
        .muted-color {
            color: #999;
        }
        
        .mt6 {
            margin-top: 4px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .col-sm-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 480px) {
            .col-xs-6 {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 10px;
            }
        }

        /* 顶部导航 */
        .header {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 50px !important;
            background: linear-gradient(to bottom, #6eb1ff, #4a6ee0) !important;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 0 15px !important;
            z-index: 1000 !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        }

        .nav-links {
            display: flex !important;
            gap: 15px !important;
            flex: 1 !important;
        }

        .nav-links a {
            color: white !important;
            text-decoration: none !important;
            font-size: 18px !important;
            font-weight: bold !important;
            margin-right: 15px !important;
            padding: 5px 0 !important;
        }

        .header-buttons {
            display: flex !important;
            gap: 15px !important;
        }

        .header-buttons a {
            border: none !important;
            color: white !important;
            border-radius: 15px !important;
            font-size: 14px !important;
        }
        .header-buttons img {
            height: 30px !important;
        }
        
        /* 轮播图样式 - 优化高度 */
        .banner {
            position: relative;
            width: calc(100% - 20px);
            max-width: calc(100% - 20px);
            margin: 10px auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .banner img {
            width: 100%;
            height: auto;
            max-height: 150px;
            object-fit: cover;
            display: block;
        }



        .tag {
            padding: 2px 6px;
            border-radius: 2px;
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            width: 100%;
            text-align: center;
        }

        .tag-blue {
            background: #ecf5ff;
            color: #409eff;
            border: 1px solid #409eff;
        }

        /* 轮播图指示器 - 数字目录样式 */
        .carousel-indicators {
            position: absolute;
            bottom: 12px;
            right: 12px;
            display: flex;
            gap: 6px;
            z-index: 10;
        }

        .carousel-indicator {
            min-width: 28px;
            height: 24px;
            padding: 0 8px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .carousel-indicator.active {
            background: #F97316;
            color: #ffffff;
        }
        
        /* 快捷导航 - 紧凑样式 */
        .quick-nav {
            display: flex;
            justify-content: space-around;
            padding: 8px 10px;
            margin: 8px 10px;
            border-radius: 10px;
            background-color: #ffffff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            border: 1px solid #f5f5f5;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            position: relative;
        }

        .nav-icon {
            width: 45px;
            height: 45px;
        }

        .nav-text {
            font-size: 12px;
            color: #333;
            margin-top: 4px;
        }

        /* 功能卡片区域 - 紧凑样式 */
        .features {
            display: flex;
            gap: 8px;
            margin: 8px 10px;
        }

        /* 左侧试玩有奖 - 紧凑样式 */
        .feature-left {
            flex: 1;
            background: #ffffff url('http://129.211.92.128:99/js/18zhan/tu/334.png') no-repeat center;
            background-size: contain;
            border-radius: 12px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-width: 0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 65px;
            position: relative;
            overflow: hidden;
        }

        .feature-left:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .feature-left-content {
            z-index: 2;
            position: relative;
            text-align: center;
        }

        .feature-right-icon-new {
            display: none;
        }

        .feature-left-title {
            font-size: 14px;
            font-weight: bold;
            color: #222222;
            position: relative;
            z-index: 2;
        }

        .feature-left-desc {
            display: none;
        }

        /* 右侧上下两个卡片 - 紧凑样式 */
        .feature-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feature-card-small {
            background: url('http://129.211.92.128:99/js/18zhan/tu/222.png') no-repeat center;
            background-size: cover;
            border-radius: 12px;
            padding: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-width: 0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 28px;
        }

        .feature-card-small:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .feature-card-title {
            font-size: 13px;
            font-weight: bold;
            color: #222222;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .feature-card-desc {
            display: none;
        }

        .feature-right-icon {
            display: none;
        }

        .monthly-icon {
            background: url('http://129.211.92.128:99/js/index27/yo2.png') no-repeat center;
            background-size: contain;
        }

        .save-icon {
            background: url('http://129.211.92.128:99/js/index27/648.png') no-repeat center;
            background-size: contain;
        }

        /* 今日推荐 */
        .recommend {
            background: #fff url(http://129.211.92.128:99/js/18zhan/tu/222.png) no-repeat;
            background-size: 100% 48px;
            margin: 10px;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        /* 游戏分类选项卡样式 */
        .tabs {
            margin: 10px;
            background: #fff;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .tab-header {
            display: flex;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 15px;
            padding-bottom: 10px;
        }

        .tab-item {
            flex: 1;
            text-align: center;
            padding: 8px 0;
            cursor: pointer;
            font-weight: bold;
            color: #666;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .tab-item.active {
            color: #F97316;
            position: relative;
        }

        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #F97316;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* 游戏分类选项卡内容区域 */
        .tabs .all-recommend-section {
            background: none;
            padding: 0;
            margin: 0;
        }

        /* 游戏卡片通用样式 */
        .all-recommend-section {
            margin-bottom: 5px;
            background: #fff;
            border-radius: 12px;
            padding: 10px;
        }
        
        .fun-box {
            background: linear-gradient(45deg, #ff5252, #ff5252);
            white-space: nowrap;
            color: #fff !important;
            text-shadow: 0 1px 7px rgba(0,0,0,0.2) !important;
            padding: 2px 5px;
            border-radius: 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
            border: none;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            color: #F97316;
        }
        
        .section-title .subtitle {
            font-size: 12px;
            color: #9CA3AF;
            font-weight: normal;
        }
        
        .featured-link {
            color: #F97316;
            font-size: 14px;
        }
        
        .all-recommend-grid {
            display: grid;
            grid-auto-flow: column;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 5px 0;
        }
        
        /* 响应式布局 */
        @media (max-width: 768px) {
            .all-recommend-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .all-recommend-grid::-webkit-scrollbar {
            display: none;
        }
        
        .all-recommend-grid > * {
            min-width: 72px;
        }
        
        .all-recommend-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            position: relative;
            text-decoration: none;
            color: inherit;
        }
        
        .all-recommend-item img {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            object-fit: cover;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .all-recommend-item span {
            font-size: 12px;
            color: #666;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.3;
            width: 100%;
            min-height: 30px;
        }
        
        /* 新游戏卡片样式 */
        .recommend-card-new {
            border: 1px solid #ff4757;
            background: linear-gradient(94deg, #fff, #fff 20%, #fff 80%);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            gap: 15px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            margin: 10px auto;
            width: 95%;
            text-decoration: none;
            color: inherit;
            align-items: flex-start;
        }
        
        .recommend-icon-new {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }
        
        .recommend-info-new {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .recommend-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0;
        }
        
        .recommend-title-new {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin: 0;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .recommend-badge-gm {
            background: #ff4757;
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* 5元小游戏特殊样式 */
        .recommend-badge-five {
            background: linear-gradient(135deg, #ff6b6b, #ffa500);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
        }
        /* 免费畅玩标签样式 */
.recommend-badge-free {
    background: linear-gradient(135deg, #52c41a, #73d13d);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}
        .tag-group {
            display: flex;
            gap: 8px;
            margin: 0;
            flex-wrap: wrap;
        }
        
        .tag-blue {
            background: #ecf5ff;
            color: #409eff;
            border: 1px solid #d9ecff;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .tag-green {
            background: #f0f9eb;
            color: #67c23a;
            border: 1px solid #e1f3d8;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .tag-purple {
            background: #f6f2ff;
            color: #9370db;
            border: 1px solid #e8dfff;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }

        .recommend-description {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
            margin-top: 5px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .recommend-tag-cyan {
            color: #2d3748;
            font-size: 14px;
            font-weight: 400;
            margin: 0;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .recommend-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            text-decoration: none;
            color: inherit;
            width: 100%;
            position: relative;
        }

        .recommend-img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            margin-right: 10px;
            object-fit: cover;
            position: relative;
        }

        .recommend-content {
            width: 75%;
        }

        .recommend-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            width: 100%;
        }

        .recommend-subtitle {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }

        .red-label {
            background: #f56c6c;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width:72px;
        }

        .gray-text {
            font-size: 12px;
            color: #999;
            max-width: 80%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .price-tag {
            display: flex;
            margin-top: 8px;
            border-radius: 4px;
            overflow: hidden;
            width: fit-content;
        }

        .price-left {
            background: #f56c6c;
            color: white;
            padding: 4px 8px;
            font-size: 12px;
        }

        .price-right {
            background: white;
            color: #f56c6c;
            padding: 4px 8px;
            font-size: 12px;
            border: 1px solid #f56c6c;
        }

        /* 今日首发 */
        .first-release {
            background: #fff url(http://129.211.92.128:99/js/18zhan/tu/222.png) no-repeat;
            background-size: 100% 48px;
            margin: 10px;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .first-release-content {
            display: flex;
            gap: 10px;
            overflow-x: auto;
        }

        .release-item {
            min-width: 160px;
            text-decoration: none;
            color: inherit;
            position: relative;
        }

        .release-img {
            position: relative;
            width: 156px;
            height: 220px;
            border-radius: 8px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .release-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .release2-title {
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            font-size: 12px;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: white;
            text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
            background: #f56c6c;
            padding: 6px;
            width: 156px;
        }
        .release-title {
            position: absolute;
            top: 0px;
            left: 0;
            right: 0;
            font-size: 12px;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: white;
            text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
            background: #6eb1ff;
            padding: 6px;
            width: 156px;
        }
        .release-tag {
            position: absolute;
            bottom: 35px;
            left: 5px;
            background: #f56c6c;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
        }

        .release-tags {
            position: absolute;
            bottom: 10px;
            left: 3px;
            background: #f56c6c;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
        }

        /* 图片样式 */
        img {
            max-width: 100%;
            height: auto;
        }

        /* 媒体查询 - 优化不同屏幕尺寸显示 */
        @media (max-width: 768px) {
            /* 调整页面容器宽度 */
            .page-container {
                padding-left: 5px;
                padding-right: 5px;
            }
            
            /* 调整轮播图高度 */
            .banner {
                height: auto;
                margin: 5px auto;
            }
            
            /* 调整导航链接字体大小 */
            .nav-links a {
                font-size: 16px;
                margin-right: 10px;
            }
            
            /* 调整快捷导航图标大小 */
            .nav-icon {
                width: 50px;
                height: 50px;
            }
            
            /* 调整今日首发游戏卡片大小 */
            .release-item {
                min-width: 130px;
            }
            
            .release-img {
                width: 126px;
                height: 180px;
            }
            
            .release-title, .release2-title {
                width: 126px;
            }
        }
        
        @media (max-width: 480px) {
            /* 进一步调整轮播图高度 */
            .banner {
                height: auto;
            }
            
            /* 隐藏导航文字，只显示图标 */
            .nav-links a {
                font-size: 0;
                margin-right: 5px;
            }
            
            /* 调整功能卡片区域布局 */
            .features {
                flex-direction: column;
            }
            
            /* 调整今日推荐游戏布局 */
            .recommend-item {
                flex-direction: column;
            }
            
            .recommend-img {
                width: 100%;
                height: auto;
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .recommend-content {
                width: 100%;
            }
        }
        
        /* 电脑端导航栏居中 */
        @media (min-width: 769px) {
            .header {
                max-width: 750px;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        /* 底部导航栏样式 */
        #bottom-nav {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            transform: none !important;
            width: 100% !important;
            max-width: 100% !important;
            height: 55px !important;
            background: rgba(255, 255, 255, 0.95) !important;
            border-top: none !important;
            display: flex !important;
            z-index: 99999 !important;
            margin: 0 !important;
            padding: 0 !important;
            box-sizing: border-box !important;
            box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.05) !important;
        }
        #bottom-nav a {
            height: 100% !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            text-decoration: none !important;
            color: #666666 !important;
            font-size: 12px !important;
            font-family: sans-serif !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            outline: none !important;
            flex: 1 !important;
            position: relative !important;
        }
        /* 中间按钮特殊处理 - 橙色渐变背景 */
        #bottom-nav a:nth-child(3) {
            flex: 1.4 !important;
            margin-top: -15px !important;
            padding-top: 10px !important;
        }
        #bottom-nav a:nth-child(3)::before {
            content: '' !important;
            position: absolute !important;
            width: 70px !important;
            height: 70px !important;
            background: linear-gradient(135deg, #fff 25%, #6eb1ff 100%) !important;
            border-radius: 50% !important;
            box-shadow: 0 8px 25px rgba(253,186,116,0.2) !important;
            z-index: -1 !important;
        }
        #bottom-nav a img {
            width: 26px !important;
            height: 26px !important;
            margin-bottom: 4px !important;
            object-fit: contain !important;
            border: none !important;
            padding: 0 !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }
        #bottom-nav a:nth-child(3) img {
            width: 28px !important;
            height: 28px !important;
            margin-bottom: 3px !important;
        }
        #bottom-nav a:nth-child(3) span {
            display: block !important;
            color: #666 !important;
            font-size: 11px !important;
            font-weight: 500 !important;
        }
        /* 选中状态：明亮蓝色 */
        #bottom-nav a.active:not(:nth-child(3)) {
            color: #FF6B35 !important;
            font-weight: 600 !important;
        }
        #bottom-nav a:nth-child(3).active {
            color: #9a3412 !important;
        }
        @media (min-width: 768px) {
          #bottom-nav {
            max-width: 540px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            border-radius: 16px 16px 0 0 !important;
            margin-bottom: 10px !important;
          }
        }

        /* 热门游戏推荐弹窗样式 */
        .announcement-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 999999;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .announcement-modal.show {
            opacity: 1;
            display: flex !important;
        }

        .announcement-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            border-radius: 16px;
            width: 90%;
            max-width: 420px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .announcement-modal.show .announcement-content {
            transform: scale(1);
        }

        .announcement-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .announcement-header h2 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .header-buttons {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dont-show-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dont-show-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .announcement-close {
            position: static;
            font-size: 28px;
            cursor: pointer;
            color: white;
            opacity: 0.8;
            transition: opacity 0.3s ease;
            line-height: 1;
        }

        .announcement-close:hover {
            opacity: 1;
        }

        .announcement-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }

        .em__itemList_jobs {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 15px;
            padding: 10px 0;
            justify-items: center;
        }

        .img_logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .img_logo:hover {
            transform: translateY(-5px);
        }

        .img_logo img {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
            margin-bottom: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .img_logo span {
            font-size: 12px;
            color: #333;
            text-align: center;
            max-width: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        @media (max-width: 480px) {
            .announcement-content {
                width: 95%;
                max-height: 85vh;
            }

            .announcement-header h2 {
                font-size: 18px;
            }

            .em__itemList_jobs {
                grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
                gap: 10px;
                justify-items: center;
            }

            .img_logo img {
                width: 50px;
                height: 50px;
            }

            .img_logo span {
                font-size: 11px;
                text-align: center;
            }
        }

        /* 好游推荐模块 - 新样式 */
        .good-games-container {
            margin: 12px 10px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            display: flex;
        }

        .good-games-sidebar {
            width: 50px;
            flex-shrink: 0;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .good-games-sidebar::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
        }

        .good-games-sidebar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(135deg, rgba(82, 196, 26, 0.3) 25%, transparent 25%, transparent 50%, rgba(82, 196, 26, 0.3) 50%, rgba(82, 196, 26, 0.3) 75%, transparent 75%);
            background-size: 10px 10px;
        }

        .good-games-sidebar-text {
            writing-mode: vertical-rl;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .good-games-list-wrapper {
            flex: 1;
            padding: 12px 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .good-games-list-wrapper::-webkit-scrollbar {
            display: none;
        }

        .good-games-list {
            display: flex;
            gap: 12px;
        }

        .good-game-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            min-width: 70px;
            flex-shrink: 0;
        }

        .good-game-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .good-game-item:hover .good-game-icon {
            transform: scale(1.05);
        }

        .good-game-name {
            margin-top: 6px;
            font-size: 12px;
            color: #666;
            text-align: center;
            max-width: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .good-games-empty {
            color: #999;
            padding: 20px 0;
            text-align: center;
            width: 100%;
        }
