        /* ===== 微信浏览器：仅保留与等比例缩放兼容的轻量修复 ===== */
        /* 不改变布局/尺寸，移动端与微信均使用 index 中的等比例缩小（body 1200px + transform scale） */

        /* 防止微信自动调整文字大小，避免影响缩放比例 */
        .wechat-browser {
            -webkit-text-size-adjust: 100% !important;
            text-size-adjust: 100% !important;
            -webkit-overflow-scrolling: touch !important;
        }

        /* 隐藏滚动条（不影响布局） */
        .wechat-browser ::-webkit-scrollbar {
            display: none !important;
        }

        /* 按钮点击无高亮（不影响布局） */
        .wechat-browser .btn {
            -webkit-tap-highlight-color: transparent !important;
        }

        /* 微信浏览器提示信息弹层样式 */
        .wechat-tips-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .wechat-tips-overlay.show {
            display: flex;
        }

        .wechat-tips-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            max-width: 80%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .wechat-tips-content h3 {
            color: #1a73e8;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .wechat-tips-content p {
            margin: 8px 0;
            color: #333;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .wechat-tips-content button {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            margin-top: 15px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .wechat-tips-content button:hover {
            background: #1557b0;
        }

        .wechat-tips-content button:active {
            background: #0f4a8f;
        }
