/* 添加到桌面按钮样式 */
.pwa-install-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
    color: #fff;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.3);
    margin-top: 10px;
}

.pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
}

.pwa-install-btn:active {
    transform: translateY(0);
}

.pwa-icon {
    fill: #fff;
}
/* 确保页脚下载条水平并排 */
.footer-download-bar {
    display: flex;
    justify-content: center; /* 居中显示 */
    align-items: center;     /* 垂直对齐 */
    /*gap: 20px;               !* 标题和图标之间的间距 *!*/
    /*padding: 20px 0;*/
    width: 100%;
}

/* 图标容器也使用 flex，让两个图标紧挨着 */
.footer-app-icons {
    display: flex;
    align-items: center;
    gap: 1px;               /* 两个图标之间的间距 */
}

/* 覆盖你原有的 download-title 样式，去掉多余的边距 */
.footer-download-bar .download-title {
    padding: 5px;
    margin-bottom: 0;        /* 清除你 CSS 中原有的 15px 下边距 */
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;     /* 防止标题换行 */
}

/* 让图片看起来更像按钮，增加点击感 */
.footer-app-icons img {
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 8px;
}

.footer-app-icons img:hover {
    transform: scale(1.1);   /* 悬停放大效果 */
}
