html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
}

body {
    background-image: url('bgimg.gif');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: #fff;
}

.amount-box {
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 155px;
}

.amount-label {
    font-size: 24px;
    margin-bottom: 10px;
}

.amount-value {
    font-size: 48px;
    font-weight: bold;
    color: #e94459;
}

.dw {
    font-size: 22px;
}

.fixed-bottom-center {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f0f0f0; /* 可自定义背景色 */
    padding: 10px; /* 可自定义内边距 */
    border-radius: 5px; /* 可自定义圆角 */
}

