@charset "utf-8";

#sub_bnr_wrap {
    /*margin-top:9rem;*/
    width: 100%;
    height: 35rem;
    overflow: hidden;
    position: relative;
    transition: all .3s;

}

#sub_bnr_wrap.show {
    margin-top: 17rem;
    
}



#sub_bnr_wrap .sub_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*animation: sub 20s linear infinite;*/

}

#sub_bnr_wrap .sub_tit_box {
    text-align: center;
    position: absolute;
    top: 47%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    
}

#sub_bnr_wrap .sub_tit_box .sub_tit {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 5.5rem;
    color: #fff;
    transition: all .3s;
    
}

#sub_bnr_wrap .sub_tit_box .sub_txt {
    font-size: 1.8rem;
    line-height: normal;
    color: rgba(255, 255, 255, .6);
    transition: all .3s;
    
}

@keyframes sub {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(1.11)
    }

    100% {
        transform: scale(1)
    }
}




/*   */