/* banner */
.banner_box {
    position: relative;
    width: 100%;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    /* 不让图片超出容器 */
    overflow: hidden;
}

.banner {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;

}
.banner_box:hover .banner {
    transform: scale(1.03);
}

.banner-text {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 64px;
}






/* 左进场动画 */
.slide-in-left {
    width: 550px;
    object-fit: cover;
    margin: 60px auto;
    animation: slide-in-left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


/* 右进场动画 */
.slide-in-right {
    color: #FFF;
    text-align: center;
    font-family: Source Han Sans CN;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: 63px;
    letter-spacing: 6px;
    animation: slide-in-right 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}



.more {
    background-color: rgba(216, 12, 36, 1);
    width: 200px;
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: #ffffff;
    border: 1px solid rgba(216, 12, 36, 1);
    margin: 60px auto 60px auto;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;
}

.more:hover {
    animation: box-shadow-drop-bottom 0.4s both;
}



.success_container {
    text-align: center;
    width: 100%;
}

.success_icon {
    width: 80px;
    object-fit: cover;
    margin: 70px auto 30px auto;
}

.success_container p {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 30px;
    max-width: 80%;
    margin: 30px auto;
}

.p1 {
    font-size: 40px !important;
    font-weight: bold;
}

.p2 {
    margin: 50px 0 20px 0;
    font-weight: bold;
}

.more {
    background-color: rgba(216, 12, 36, 1);
    width: 200px;
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    border: 1px solid rgba(216, 12, 36, 1);
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;
}

.more:hover {
    animation: box-shadow-drop-bottom 0.4s both;
}


/*小于768像素，为手机*/
@media (max-width:767px) {
    #header {
        display: none;
    }

    #footer {
        display: none;
    }

    .success_container {
        box-sizing: border-box;
        padding: 20px 30px;
        margin-bottom: 50px;
    }

    .slide-in-left {
        width: 160px;
        margin: 10px auto;
    }

    .slide-in-right {
        font-size: 12px;
        line-height: 24.609px;
        letter-spacing: 2.344px;
    }

    .success_icon {
        width: 60px;
        margin: 40px auto 30px auto;
    }

    .success_container p {
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 35px;
    }

    .p1 {
        font-size: 30px !important;
        font-weight: bold;
    }

    .p2 {
        margin: 30px 0 20px 0;
        font-weight: bold;
    }

    .more {
        display: block;
        margin: 0px auto 60px auto;
        width: 140px;
        height: 52px;
        line-height: 52px;
        font-size: 14px;
    }

}