/* listVideo */
.videoBox {
    margin-bottom: 60px;
}

.videoBox .videolist {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
}.videoBox .videolist .item {
    width: 49%;
    text-align: left;
    margin-bottom: 30px;
}.videoBox .videolist .item .pictures {
    width: 100%;
    position: relative;
    height: 0;
    padding-top: 73%;
}img.img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}
.videoBox .videolist .item .pictures .play {
    width: 115px;
    height: 115px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}.videoBox .videolist .item .video-desc {
    margin-top: 20px;
    color: #666;
    font-size: 24px;
    padding: 0 10px;
}

@media only screen and (max-width: 950px) {
    .videoBox .videolist .item {
        width: 100%;
    }

	
    .videoBox .videolist .item .pictures {
        height: auto;
        padding: 0;
    }
    img.img {
        position: static;
    }    .videoBox .videolist .item .pictures .play {
        width: 63px;
        height: 63px;
    }
}
