        .index-show-more-btn {
            font-family: 'simsun', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #f0c000 0%, #fdc400 100%);
            color: #07000b;
            text-align: center;
            height: 42px;
            line-height: 42px;
            border-radius: 21px;
            font-size: 14px;
            cursor: pointer;
            padding: 0 10px;
            width: 95%;
            /* 关键：改为自适应父容器宽度 */
            max-width: 520px;
            /* 关键：限制最大宽度，保持大屏美观 */
            margin: 0 auto;
            display: block;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 8px rgba(45, 164, 244, 0.3);
            transition: all 0.3s ease;
            outline: none;
            box-sizing: border-box;
        }

        .featured-header-banner {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0px;
            padding: 12px 6px;
            background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
            border-radius: 0 50px 50px 0;
            margin-left: 0px;
            padding-left: 32px;
            min-height: 48px;
        }

        .index-show-more-btn:hover {
            background: linear-gradient(135deg, #e0b000 0%, #e0b000 100%);
            box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
            transform: translateY(-1px);
        }

        .index-show-more-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(30, 136, 229, 0.3);
        }

        /* 全局样式重置，避免默认边距干扰 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
                sans-serif;
            background-color: #f5f5f5;
            color: #333;
            max-width: 540px;
            /* 网站大小宽度*/
            margin: 0 auto;
            line-height: 1.5;
            padding-bottom: 60px;
        }

        a {
            text-decoration: none;
            color: #ff6b35;
            font-weight: 700;

        }

        .all-recommend-grid {
            /* 核心：精选游戏横向滚动容器 */
            display: flex;
            overflow-x: auto;
            /* 隐藏滚动条（可选，根据设计需求） */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE/Edge */
            padding-bottom: 8px;
            /* 给滚动条留空间（若显示） */

            /* 网格特性保留：列宽一致、间距统一 */
            --column-width: calc((100% - 3 * 12px) / 4);
            /* 4列时的宽度（100% - 3个间距） */
            gap: 12px;
        }

        /*隐藏Chrome/Safari滚动条 */
        .all-recommend-grid::-webkit-scrollbar {
            display: none;
        }

        .main-content {
            padding: 3px 5px;
            /* 网站大小上下左右空隙*/
        }

        .quick-access {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 5px;
            padding: 4px 0;
            background: #fff;
            border-radius: 9px;
            padding: 10px 0;
        }

        .hero-banner {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 5px;
            height: 200px;
            background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 50%, #1a1a2e 100%);
        }

        .featured-section {
            margin-bottom: 5px;
            background: #fff;
            border-radius: 20px;
        }

        .selected-games-section {
            margin-bottom: 5px;
            background: #fff;
            padding: 10px;
            border-radius: 10px;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 540px;
            /* 底部大小宽度*/
            width: 100%;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 8px 0 8px;
            border-top: 1px solid #eee;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
            z-index: 100;
        }

        /* 图片样式：自动适配、不变形 */
        .game-img {
            width: 100%;
            /* 宽度自适应容器 */
            height: auto;
            /* 高度自动跟随比例，避免拉伸 */
            border-radius: 4px;
            /* 轻微圆角，更精致 */
            display: block;
            /* 消除图片底部默认空隙 */
            transition: transform 0.3s ease;
            /* 点击前hover效果 */
            margin: 0 auto;
            /* 水平居中 */
        }

        /* hover交互：鼠标悬浮时轻微放大，增强体验 */
        .game-img:hover {
            transform: scale(1.02);
            /* 放大1.02倍 */
        }

        /* 手机端优化：调整空隙和边框 */
        @media (max-width: 768px) {
            .game-img-container {
                max-width: 80%;
                /* 手机端左右各留7.5%空隙，更紧凑 */
                border-width: 1.5px;
                /* 手机端边框略细 */
                box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
                /* 发光效果减弱 */
            }
        }

        .header {
            width: 100%;
            /* 宽度自适应容器 */
            position: sticky;
            top: 0;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            z-index: 100;
            margin: 0 auto;
            /* 水平居中 */
        }

        /* 样式UI细节开始 */
        .recommend-card-new {
            /* 稀有游戏框框素材 */
            border: 1px solid #ff4757;
            background: linear-gradient(94deg, #fff, #fff 20%, #fff 80%);
            border-radius: 12px;
            padding: 9px;
            display: flex;
            gap: 12px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            margin-bottom: 12px;
            width: 95%;
            margin: 10px auto;
        }

        .selected-game-item {
            /* 精选游戏框框素材 */
            border: 1px solid #e98946;
            background: linear-gradient(94deg, #ff8552, #f9fef4 20%, #fff 80%);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            gap: 12px;
            align-items: center;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
        }

        .recommend-title-new {
            /* 稀有游戏NAME介绍字体 */
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin: 0;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .recommend-tag-cyan {
            /* 稀有游戏介绍字体 */
            /* display: inline-block; */
            /* background: #e0f7fa; */
            color: #2d3748;
            /* border: 1px solid #b2ebf2; */
            /* padding: 4px 10px; */
            border-radius: 0px;
            font-size: 14px;
            font-weight: 400;
            align-self: flex-start;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .category-tab-new {
            /* 稀有游戏标签字体 */
            flex: 1;
            background: none;
            border: none;
            font-size: 15px;
            color: #999;
            cursor: pointer;
            padding: 12px 0px;
            position: relative;
            transition: all 0.3s;
            font-weight: 600;
            text-align: center;
        }

        .trial-btn {
            /* 精选下载字体颜色素材 */
            background: #ff8552;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 16px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .category-tab-new.active {
            /* 会员标签颜色 */
            color: #ff5252;
            font-weight: 800;
        }

        .category-tab-new.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #ff5252;
            border-radius: 3px 3px 0 0;
        }

        a {
            /* 公告轮播字体标签颜色 */
            text-decoration: none;
            color: #232323;
            font-weight: 800;
            font-size: 15px;

        }

        .promo-banner {
            /* 公告背景 */
            background: linear-gradient(94deg, #fff, #f9fef4 20%, #fff 60%);
            border-radius: 8px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }


        .featured-badge {
            /* 盒子zdy1标签 */
            font-size: 9px;
            padding: 2px 4px;
            border-radius: 11px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* 样式UI细节结束 */


        /* 顶部导航栏 */

        .nav-tabs {
            display: flex;
            gap: 8px;
        }

        .nav-tab {
            background: none;
            border: none;
            font-size: 16px;
            color: #333;
            cursor: pointer;
            padding: 4px 0;
            position: relative;
            transition: color 0.3s;
            font-weight: 700;
            /* 基础字体样式（可按需调整） */
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            font-family: "微软雅黑", "Arial Black", sans-serif;
            /* 粗体更显艺术感 */
            padding: 0px 10px;

            /* 渐变核心属性 */
            background: linear-gradient(45deg, #2c1a4d, #715af3, #715af3);
            /* 红金渐变（贴合传奇风格） */
            -webkit-background-clip: text;
            /* 裁剪背景为文字形状 */
            background-clip: text;
            color: transparent;
            /* 文字透明，显示背景渐变 */

            /* 增强艺术感（可选） */
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            /* 轻微阴影，更立体 */
            background-size: 200% auto;
            animation: gradientMove 3s linear infinite;
            /* 渐变流动动画 */
        }

        /* 渐变流动动画（可选，增强动感） */
        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 200% 50%;
            }
        }




        .banner-title {
            /* 幻灯片字体） */
            color: white;
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 6px;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            line-height: 1.3;
            background: linear-gradient(45deg, #121212, #eee, #f9fef4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            background-size: 200% auto;
            animation: gradientMove 3s linear infinite;
        }

        .slideShine1 {
            /* 基础样式：20px字体、900极粗、下划线（保留原样式） */
            font-size: 16;
            /* 改为需求的20px */
            font-weight: 900;
            /* 改为需求的900极粗 */
            text-decoration: underline;
            /* 保留原下划线 */
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            /* 适配中文 */
            margin: 0;

            /* 金色流光核心：5色金色渐变（对应原样式的渐变结构） */
            background: #312c2c -webkit-linear-gradient(left,
                    #F5F0C9,
                    /* 浅金（起始） */
                    #F9D56E,
                    /* 亮金（50%位置） */
                    #E6B325,
                    /* 中金（中间核心） */
                    #D4AC0D,
                    /* 深金（90%位置） */
                    #F5F0C9
                    /* 浅金（结束，避免断层） */
                ) no-repeat 0 0;

            /* 原样式核心配置：固定20%渐变宽度，实现局部流光滑动效果 */
            background-size: 20% 100%;
            /* 渐变宽度20%，高度100% */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            /* 兼容非webkit浏览器 */

            /* 保留原动画配置：4秒线性循环 */
            -webkit-animation: slideShine 4s linear infinite;
            animation: slideShine 4s linear infinite;
        }

        /* 保留原动画关键帧（从左到右滑动） */
        @-webkit-keyframes slideShine {
            0% {
                background-position: -20% 0;
                /* 起始：渐变在文字左侧外部 */
            }

            100% {
                background-position: 120% 0;
                /* 结束：渐变滑动到文字右侧外部 */
            }
        }

        @keyframes slideShine {
            0% {
                background-position: -20% 0;
            }

            100% {
                background-position: 120% 0;
            }
        }


    /*搜索开始*/


        .Cont1,
        .index-search {
            padding: 0 2px;
            overflow: hidden;
        }

        .search-box {
            padding: 0.1 0.1;
            display: flex;
        }

        .search-box button {
            font-size: 0.8rem;
            padding: 0 0.8rem;
            height: 2.5rem;
            line-height: 2.5rem;
            background-color: #f3ce5b;
        }

        .Cont1,
        .index-search {
            padding: -1px 20px;
            overflow: hidden;
        }

        .selected-game2-list {
            display: grid;
            flex-direction: column;
            gap: 6px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .selected-game2-item {
            border: 1px solid #ffe85a;
            background: linear-gradient(94deg, #ffe88b, #fdf2d3 20%, #fff 60%);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            gap: 12px;
            align-items: center;
            /* 垂直居中内容 */
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            width: 100%;
            /* 保持一半宽度 */
            margin: 0 auto;
            /* 可选：水平居中 */

            /* 核心：锁定高度+处理溢出，防止被内容拉高 */
            height: auto;
            /* 优先用内容自然高度（不强制固定，更灵活） */
            max-height: 80px;
            /* 关键！限制最大高度（根据你原有高度调整，比如原有是80px就设80px） */
            overflow: hidden;
            /* 超出最大高度的内容隐藏（避免撑高） */
            white-space: nowrap;
            /* 文字不换行（防止文字换行导致高度增加） */
            text-overflow: ellipsis;
            /* 文字超出宽度时显示省略号（美观不拥挤） */
        }

        .selected-game2-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
            /* 清除浏览器默认边框 */
        }

        .selected-game2-icon {
            /* 图标大小*/
            width: 44px;
            height: 60px;
            border-radius: 7px;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .selected-game-info {
            flex: 1;
            min-width: 0;
        }

        .selected-game2-title {
            /* 文字NMAE 第一排*/
            font-size: 12px;
            font-weight: 600;
            color: #222;
            margin: 0 0 4px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            line-height: 1.3;
        }

        .selected-game-desc {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .star-rating {
            font-size: 11px;
            color: #ff9800;
        }

        .game2-intro {
            font-size: 10px;
            color: #e90b0b;
            line-height: 1.4;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
		/* 全站推荐 */
            .all-recommend-section {
                margin-bottom: 5px;
                background: #fff;
                border-radius: 12px;
                padding: 10px;
            }

            .fun-box {
                /* 红色渐变背景（保持不变） */
                background: linear-gradient(45deg, #ff5252, #ff5252);
                /* 文字不换行（保持不变） */
                white-space: nowrap;
                /* 🔥 提高文字颜色优先级：!important 强制覆盖冲突样式 */
                color: #fff !important;
                /* 文字阴影增强可读性（同样加 !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: inherit;
                /* 继承父级字体大小，避免冲突 */
                font-weight: normal;
                /* 重置字体粗细，按需调整 */
                line-height: 1.2;
                /* 固定行高，防止文字错位 */
                margin: 0;
                /* 清除默认边距 */
                border: none;
                /* 清除默认边框 */
                font-weight: 700;
            }
            .scrollDiv {
                /*height: 25px;*/
                /*margin: 0.5em;*/
                /*overflow: hidden;*/
                padding-left: 0px;
                background: url('images/trump.png') no-repeat center left;
                background-size: 25px 25px;
                background-position: 5px center;

                height: 25px;
                /* 必要元素 */
                line-height: 25px;
                /*border-bottom: #ccc 1px solid;*/
                overflow: hidden;
                /* 必要元素 */
            }

            .scrollDiv li {
                height: 25px;
                padding-left: 35px;
                color: #232323;
            }

            .recommend-category2 {
                font-size: 9px;
                color: #fff;
                background: linear-gradient(135deg, #ff6b35 0%, #ff8552 100%);
                width: 160px;
                text-align: center;
                border: 1px solid #ff6b35;
            }

            .recommend-category2 span {
                background: #fff;
                display: inline-block;
                color: #ff6b35;
                padding: 0 5px;
                width: 67%;
                float: right;

            }
            /* 标签容器：保持紧凑间距和横排不换行 */
            .tag-group {
                display: flex;
                gap: 6px;
                white-space: nowrap;
            }

            /* 蓝色渐变标签（强调）- 紧凑款 */
            .tag-blue {
                padding: 2px 2px;
                font-size: 11px;
                border-radius: 5px;
                border-width: 0.5px 1px;
                border-style: solid;
                border-color: #ff4757;
                line-height: 1;
                background: linear-gradient(45deg, #ff5252, #ff5252);
                color: #fff;
            }

            /* 绿色渐变标签（成功）- 紧凑款 */
            .tag-green {
                padding: 2px 2px;
                font-size: 11px;
                border-radius: 5px;
                border-width: 0.5px 1px;
                border-style: solid;
                border-color: #ff4757;
                line-height: 1;
                background: linear-gradient(45deg, #ff5252, #ff5252);
                color: #fff;
            }

            /* 紫色渐变标签（特殊）- 紧凑款 */
            .tag-purple {
                padding: 2px 2px;
                font-size: 11px;
                border-radius: 5px;
                border-width: 0.5px 1px;
                border-style: solid;
                border-color: #ff4757;
                line-height: 1;
                background: linear-gradient(45deg, #ff5252, #ff5252);
                color: #fff;
            }

            .badgexy {
                position: absolute;
                z-index: 22;
                background-color: #dd3095;
                top: 0;
                right: 0;
                padding: 1.25px;
                line-height: 1.15;
                font-size: 10px;
                color: #fff;
                -webkit-transform: translate(25%, -25%);
                transform: translate(25%, -25%);
                border-radius: 2px;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            /* 标签切换样式 */
            .recommend-category-content {
                display: none;
            }

            .recommend-category-content.active {
                display: block;
            }

            /* 不同标签的徽章样式 */
            .recommend-badge-gm {
                background: -webkit-linear-gradient(right, #ff7d5e, #ff4842);
                color: white;
                padding: 2px 8px;
                border-radius: 12px;
                font-size: 12px;
                font-weight: bold;
            }

            .recommend-badge-free {
                background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
                color: white;
                padding: 2px 8px;
                border-radius: 12px;
                font-size: 12px;
                font-weight: bold;

            }

            .recommend-badge-premium {
                background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
                color: white;
                padding: 2px 8px;
                border-radius: 12px;
                font-size: 12px;
                font-weight: bold;

            }

            .recommend-badge-upcoming {
                background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
                color: white;
                padding: 2px 8px;
                border-radius: 12px;
                font-size: 12px;
                font-weight: bold;

            }

            /* 底部导航首页字体 */
            .nav-item.active {
                color: #ff5252;
            }
            /* 唯一核心导航栏样式 - 无任何冗余，最高优先级 */
            #bottom-nav {
                position: fixed !important;
                bottom: 0 !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                /* 强制水平居中 */
                width: 540px !important;
                /* 固定宽度 */
                max-width: 100% !important;
                /* 小屏幕时不超出视口 */
                height: 60px !important;
                background: #ffffff !important;
                border-top: 1px solid #f0f0f0 !important;
                display: flex !important;
                z-index: 99999 !important;
                margin: 0 !important;
                padding: 0 !important;
                box-sizing: border-box !important;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05) !important;
            }

            /* 导航项 - 平均分配，强制样式 */
            #bottom-nav a {
                flex: 1 !important;
                height: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                text-decoration: none !important;
                color: #8c8585 !important;
                font-size: 12px !important;
                font-family: sans-serif !important;
                margin: 0 !important;
                padding: 0 !important;
                border: none !important;
                outline: none !important;
            }

            /* 图标样式 - 强制统一 */
            #bottom-nav a img {
                width: 24px !important;
                height: 24px !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.active {
                color: #b91c1c !important;
                background: #fef2f2 !important;
            }

            /* 桌面端优化 - 居中显示 */
            @media (min-width: 768px) {
                #bottom-nav {
                    max-width: 540px !important;
                    left: 50% !important;
                    transform: translateX(-50%) !important;
                    border-radius: 12px 12px 0 0 !important;
                    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
                }
            }
            /* 公告开始弹窗背景（半透明，不遮蔽内容） */
            .notice-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.2);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 9999;
                padding: 0 10px;
                /* 左右各10px空隙 */
                box-sizing: border-box;
            }

            /* 弹窗内容框（最大600px，自适应） */
            .notice-box {
                background: #fff;
                padding: 24px 18px;
                border-radius: 12px;
                max-width: 500px;
                width: 100%;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
                box-sizing: border-box;
            }

            /* 公告标题（突出显示） */
            .notice-title {
                font-size: 17px;
                color: #222;
                font-weight: 600;
                text-align: center;
                margin: 0 0 12px 0;
            }

            /* 公告文本（与标题区分） */
            .notice-text {
                font-size: 15px;
                color: #333;
                margin: 0 0 20px 0;
                text-align: center;
                line-height: 1.5;
            }

            /* 勾选框区域 */
            .notice-checkbox {
                margin: 0 0 22px 0;
                display: flex;
                align-items: center;
                font-size: 13px;
                color: #666;
            }

            .notice-checkbox input {
                width: 16px;
                height: 16px;
                margin-right: 8px;
                cursor: pointer;
            }

            /* 按钮样式（触摸友好） */
            .notice-btn {
                width: 100%;
                padding: 12px;
                background: #ff8552;
                color: #fff;
                border: none;
                border-radius: 8px;
                font-size: 15px;
                cursor: pointer;
                touch-action: manipulation;
            }

            .notice-btn:hover {
                background: #ff8552;
            }

            /* 小屏手机适配（防止键盘顶起） */
            @media (max-height: 480px) {
                .notice-overlay {
                    align-items: flex-start;
                    padding-top: 20px;
                }
            }
/* APP引导页下载 */
            /* 基础样式重置 */



            /* 浮动按钮容器 - 图标在上文字在下 */
            .float-download {
                position: fixed;
                right: 15px;
                bottom: 80px;
                /* 距离底部80px */
                z-index: 9999;
                /* 最上层显示 */
                display: none;
                /* 默认隐藏，JS控制显示 */
                flex-direction: column;
                align-items: center;
                gap: 6px;
                /* 图标与文字间距 */
                background-color: transparent;
                /* 透明背景，突出图片图标 */
                text-decoration: none;
                cursor: pointer;
                animation: fadeIn 0.5s ease;
                /* 淡入动画 */
            }

            /* 显示动画 */
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* 自定义图片图标 - 正方形45x45 */
            .download-icon {
                width: 45px;
                height: 45px;
                border-radius: 8px;
                /* 轻微圆角，保持正方形 */
                overflow: hidden;
                /* 防止图片溢出 */
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
                transition: all 0.3s ease;
            }

            /* 图标图片样式 */
            .download-icon img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* 保持图片比例填充 */
                border: none;
            }

            /* 文字样式 */
            .download-text {
                font-size: 14px;
                color: #333;
                font-weight: 500;
                background-color: white;
                padding: 3px 10px;
                border-radius: 16px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
            }

            /* hover交互效果 */
            .float-download:hover .download-icon {
                transform: scale(1.1);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            }

            .float-download:hover .download-text {
                color: #409eff;
                transform: translateY(-1px);
            }

            /* 响应式调整 */
            @media (max-width: 480px) {
                .float-download {
                    right: 12px;
                    bottom: 70px;
                    gap: 5px;
                }

                .download-icon {
                    width: 40px;
                    height: 40px;
                }

                .download-text {
                    font-size: 13px;
                    padding: 2px 8px;
                }
            }