       /* 底部悬浮安装提示条 */
        #install-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9); /* 半透明黑色背景 */
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 15px;
            box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            display: none; /* 默认隐藏 */
        }

        /* Logo */
        #install-banner img {
            height: 30px; /* 控制 Logo 高度 */
            margin-right: 10px;
        }

       #install-btn {
    background: #ffcc00; /* 按钮颜色 */
    color: #000;
    border: none;
    padding: 10px 10px;
    font-size: 15px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    position: fixed;  /* 让按钮固定在屏幕上 */
 
    left: 70%;  /* 让按钮居中 */
    transform: translateX(-20%); /* 精准水平居中 */
}

        #install-btn:hover {
            background: #ffdb4d;
        }



