body {
    padding: 0px;
    margin: 0px;
}

.container {
    width: 100vw;
}

.container-content {
    width: 100vw;
}


/** 顶部悬浮 **/

.header {
    width: 100%;
    height: 13.3vw;
    background-image: url('../img/header-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    position: fixed;
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.header-content {
    width: 97%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-left {
    width: 12vw;
    height: 13.3vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.header-avatar {
    width: 12vw;
    height: 12vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url('../img/icon.webp');
}

.header-middle-content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 13.3vw;
}

.header-right {
    width: 34vw;
    height: 13.3vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    right: -3vw;
}

.header-right-button {
    width: 34vw;
    height: 10.5vw;
    background-image: url('../img/book.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


/** 背景 **/

.body-content {
    width: 100%;
    height: 295.4vw;
    background-image: url('../img/bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    top: 13.3vw;
}

.footer-btn-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 119.6vw;
}

.footer-btn {
    width: 49vw;
    height: 14.6vw;
    background-image: url('../img/footer-btn.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: scaleAnimation 1s infinite alternate;
}

.draw-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 50;
    top: 241.2vw;
}

.draw {
    width: 42.4vw;
    height: 9.8vw;
    background-image: url('../img/draw.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}


/** 底部公司信息 **/

.footer-container {
    width: 100Vw;
    display: flex;
    flex-direction: column;
    background: #3B3B3B;
    margin-top: 13vw;
}

.cp-logo-content {
    width: 100Vw;
    height: 23vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2vw;
}

.logo-bg {
    width: 18vw;
    height: 18vw;
    margin-top: 2vw;
}

.cp-logo {
    width: 18vw;
    height: 18vw;
    background-image: url('../img/cp-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.age {
    width: 10.5vw;
    height: 15vw;
    background-image: url('../img/age.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: 3vw;
}

.cp-info {
    width: 100vw;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 3vw;
}

.cp-content {
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 5vw;
    text-align: center;
}

.body-next-img {
    width: 6.1vw;
    height: 7.2vw;
    background-image: url('../img/right.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.body-prev-img {
    width: 6.1vw;
    height: 7.2vw;
    background-image: url('../img/left.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.alert {
    width: 100%;
    height: 100vh;
    background: rgb(0, 0, 0, 0.7);
    position: fixed;
    z-index: 200;
}

.info {
    position: absolute;
    width: 86.8vw;
    height: 52.2vw;
    background-image: url('../img/info.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 50.5vw;
    left: 6.8vw;
}

.close {
    position: absolute;
    width: 6.5vw;
    height: 6.5vw;
    background-image: url('../img/close.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 42.1vw;
    left: 91.8vw;
}

.confirm-btn {
    width: 42.8vw;
    height: 9.3vw;
    background-image: url('../img/confirm.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 107.7vw;
    left: 28.8vw;
    position: absolute;
}