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

.container {
    width: 100vw;
}

.container-content {
    width: 100vw;
}


/** 顶部悬浮 **/

.header {
    width: 100%;
    height: 17.4vw;
    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: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-left {
    width: 17vw;
    height: 17.4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.header-avatar {
    width: 14.9vw;
    height: 14.9vw;
    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: 14.9vw;
}

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

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


/** 背景 **/

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

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

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

@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: 3vw;
}

.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%;
    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%;
}