body {
    margin: 0;
    /* 去掉 body 的默认边距 */
    padding: 0;
    /* 去掉 body 的默认内边距 */
    background-image: url('./../image/bg.png');
    /* 替换 'your-image.jpg' 为你的图片路径 */
    background-size: cover;
    /* 图片尺寸按照当前窗口展示最合适的大小，不拉伸 */
    background-position: center;
    /* 图片居中显示 */
    background-repeat: no-repeat;
    /* 禁止图片重复显示 */
    height: 100vh;
    /* 使 body 高度占满整个视口 */
}

.bottom {
    position: fixed;
    width: 100%;
    bottom: 4vh;
}

.top {
    position: fixed;
    width: 100%;
    top: 0vh;
}

.tip {
    width: 10vh;
    position: fixed;
    right: 0vh;
}

.download-button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s;
    /* 添加过渡效果 */
}

.download-button:active {
    transform: scale(0.9);
    /* 缩小按钮以显示点击效果 */
}