.lbanner_text {
    display: none;
}

.video_main {
    flex-wrap: wrap;
}

.video_div {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 30px;
}

.video_div:nth-child(2n) {
    margin-right: 0;
}

.video_img {
    position: relative;
}

.video_img .imgBox {
    padding-bottom: 70%;
}

.video_img .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_img .play img {
    width: 55px;
    height: 55px;
}

.video_title {
    font-family: Roboto-Medium;
    font-weight: 500;
    font-size: 24px;
    color: #111111;
    display: block;
    margin: 20px 0 10px;
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
}

.video_desc {
    padding-top: 12px;
    position: relative;
    font-family: Roboto-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.video_desc::after {
    content: '';
    display: inline-block;
    width: 70px;
    height: 1px;
    background: #E5E5E5;
    position: absolute;
    top: 0;
    left: 0;
}

.video_div .rec_btn {
    height: 39px;
    line-height: 39px;
    padding: 0 30px;
    font-family: Arial;
    font-weight: 400;
    font-size: 18px;
    color: #111111;
    background: #E5E5E5;
    margin-top: 20px;
}

@media only screen and (max-width: 950px) {
    .video_div{
        width: 100%;
        margin-right: 0;
    }

    .video_title{
        height: auto;
    }
}