.video{
    padding-top: 110px;
    width: 100%;
    height: 100%;
    background: url("../image/video-background.jpg") round;
    background-size: cover;
    display: flex;
    flex-direction: column;
    transition: .5s ease;
    box-sizing: border-box;
}

.video-header{
    padding: 33px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
}

.video-content{
    height: 366px;
    width: 100%;
}

.video-content #video-swiper{
    height: 100%;
}

.video-content #video-swiper .swiper .index{
    font-size: 16px;
}



.video-content ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.video-content ul li{
    display: flex;
    flex-direction: column;
    width: 374px;
    height: 293px;
    color: white;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    mar
}

.video-content ul li:hover{

}
.video-content ul li:nth-child(odd){
    transform: translateY(70px);
}
.video-content ul li:nth-child(even){
    /*transform: translateY(70px);*/
}

.video-content ul li .vertical-line{
    height: 69px;
    width: 1px;
    border: 1px solid #FFFFFF;
}

.video-content ul li .video-content-text{
    font-size: 18px;
}

.video-content ul li .video-content-play{
    width: 80px;
    height: 40px;
    border: 1px solid #FFFFFF;
    display: flex;
    gap: 9px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: 16px;
}

.video-content ul li .video-content-play .video-content-play-icon{
    width: 8px;
    height: 10px;
    background: url("../image/video-play.png") no-repeat;
}

.video-footer{
    margin-top: auto;
    color: #666666;
    font-size: 16px;
    width: 100%;
    background: url("../image/foot-background-grey.png") round;
    padding: 11px 0;
    height: 90px;
    transition: .5s ease;
    box-sizing: border-box;
    font-family: AlibabaPuHuiTi-Regular;
}

.video-footer .video-footer-content{
    width: var(--hualu-content-width);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}
.video-footer .video-footer-content .video-footer-content-left{
    display: flex;
    flex-direction: column;
    /*justify-content: space-around;*/
    align-items: center;
    justify-content: space-around;
    height: 100%;
    font-size: 13px;
}

.video-footer-content-left .tips {
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-footer-content-left ul.tips li{
    text-align: center;
}
.video-footer-content-left ul.tips li:hover{
    cursor: pointer;
}
.video-footer-content-left ul.tips li:nth-child(2n){
    width: 1px;
    height: 12px;
    border: 1px solid #E6E6E6;
}

.video-footer-content-left .website-copyright {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.video-footer-content-right {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 13px;
}

.video-footer-content-right .qrcode-item{
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.video-footer-content-right .qrcode-item img{
    width: 52px;
    height: 52px;
}



.video-slide1 {
    background: url("../image/video-img1.png") no-repeat;
    background-size: cover;
    transition:  background-image .5s ease;
}
.video-slide1:hover {
    background: url("../image/video-img1-hover.png") no-repeat;
    background-size: cover;
}

.video-slide2 {
    background: url("../image/video-img2.png") no-repeat;
    background-size: cover;
    transition:  background-image .5s ease;
}
.video-slide2:hover {
    background: url("../image/video-img2-hover.png") no-repeat;
    background-size: cover;
}

.video-slide3 {
    background: url("../image/video-img3.png") no-repeat;
    background-size: cover;
    transition:  background-image .5s ease;
}
.video-slide3:hover{
    background: url("../image/video-img3-hover.png") no-repeat;
    background-size: cover;
}

.video-slide4 {
    background: url("../image/video-img4.png") no-repeat;
    background-size: cover;
    transition:  background-image .5s ease;
}
.video-slide4:hover {
    background: url("../image/video-img4-hover.png") no-repeat;
    background-size: cover;
}

.video-slide5 {
    background: url("../image/video-img5.png") no-repeat;
    background-size: cover;
    transition:  background-image .5s ease;
}
.video-slide5:hover {
    background: url("../image/video-img5-hover.png") no-repeat;
    background-size: cover;
}

.modal {
    display: none;
    position: relative;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.modal-content {
    max-width: 800px;
    position: relative;
}
.video-close {
    cursor: pointer;
    position: absolute;
    top: -20px;
    right: -25px;
    width: 52px;
    height: 52px;
    background-image: url('../image/video-close.png');
    background-size: 100%;
}

.video-read_more{
    margin: 45px auto 0;
    display: flex;
    align-items: center;
    color: #FF9E00;
}

.video-read_more span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../image/readmore-orange-2x.png");
    background-size: cover;
}