.lbanner-box {
    display: none !important;
}

.web_main {
    margin-top: 5%;
}

.videoList ul {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.videoList ul li {
    width: 48%;
    position: relative;
    margin-bottom: 3%;
}

.videoList ul li .video_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 54%;
}

.videoList ul li .video_img .video_image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.videoList ul li .video_mask {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(  0, 91,172, .85);
}

.videoList ul li .video_open {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 89px;
    height: 89px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.videoList ul li .video_wrap {
    width: 72px;
    height: 72px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoList ul li .video_wrap img {
    width: 16px;
    height: 25px;
}

.videoList ul li .video_img:hover .video_mask {
    opacity: 1;
}

.videoList ul li .video_title {
    margin-top: 2%;
    margin-bottom: 2%;
}

.videoList ul li .video_title a {
    display: inline-block;
    font-family: 'Poppins-Bold';
    font-weight: 400;
    font-size: 26px;
    color: #333333;
    line-height: 33px;
    height: 66px;
    overflow: hidden;
}

.videoList ul li .video_title:hover a {
    color: #005BAC;
}

.videoList ul li .video_info p {
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
}

.page_bar {
    margin-top: 5% !important;
}

.page_bar ul {
    justify-content: center !important;
}

@media (max-width:950px) {
    .web_main {
        margin-top: 8%;
    }

    .videoList ul {
        flex-direction: column;
    }

    .videoList ul li {
        width: 100%;
        margin-bottom: 8%;
    }

    .videoList ul li .video_open {
        top: 30%;
        left: 40%;
        width: 75px;
        height: 75px;
    }
    .videoList ul li .video_wrap{
        width: 60px;
        height: 60px;
    }
}