.swiper-slide .cjb-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-image: url('../../img/index/cjb_bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.swiper-slide .cjb-wrapper .content-wrapper {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    margin-right: 40px;
    margin-left: 40px;
    width: calc(100% - 80px);
    max-width: 1200px;
    align-items: flex-start
}

.swiper-slide .cjb-wrapper .content-wrapper .title {
    font-size: 64px;
    font-weight: bold;
    color: #134B9F;
    text-shadow: 3px 4px 15px white;
}

.swiper-slide .cjb-wrapper .content-wrapper .desc {
    margin-top: 10px;
    margin-bottom: 22px;
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 3px 4px 15px rgba(4, 0, 0, 0.75);
}

.swiper-slide .cjb-wrapper .content-wrapper .more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #173F8F;
    cursor: pointer;
}

.swiper-slide .cjb-wrapper .down {
    position: absolute;
    bottom: 69px;
    align-self: center;
    height: 38px;
    width: 46px;
    cursor: pointer;
    -webkit-animation: bounce-down 1.6s linear infinite;
    animation: bounce-down 1.6s linear infinite;
}


@-webkit-keyframes bounce-down {
    25% {
        -webkit-transform: translateY(-4px);
    }
    50%, 100% {
        -webkit-transform: translateY(0);
    }
    75% {
        -webkit-transform: translateY(4px);
    }
}

@keyframes bounce-down {
    25% {
        transform: translateY(-4px);
    }
    50%, 100% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(4px);
    }
}

.swiper-slide .cjb-wrapper .down img {
    height: 100%;
    width: 100%;
}
