.root {
    background-color: #4e109e;
    min-height: 100vh;
}

header {
    height: 115vw;
}

footer {
    background-image: url(../../../img/halloween/btn_bg.png);
    width: 90vw;
    height: 19.546875vw;
    background-repeat: no-repeat;
    background-size: cover;
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: 'Alimama FangYuanTi VF';
    font-size: 10vw;
    font-weight: 700;
}

.toast_box {
    position: fixed;
    bottom: 60%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.toast_box.show {
    opacity: 1;
}

.toast_box p {
    box-sizing: border-box;
    padding: 5.3vw 8.6vw;
    width: max-content;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 5.3vw;
    text-align: center;
    border-radius: 30px;
    opacity: 0.8;
}
