
.video-list{
    width: 100%;
    display: flex;
    padding:30px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video-list .item:nth-child(1),.video-list .item:nth-child(2){
    margin-top:0;
}
.video-list .item{
    width: 48%;
    position: relative;
    margin-top: 25px;
}
.video-list .item .img1{
    width: 100%;
    display: block;
    height:120px;
}
.video-list .item .play{
    width: 16%;
    position: absolute;
    right: 15px;
    top: 46%;
}
.video-list .item p{
    background-color: rgb(76, 173, 255);
    color: white;
    height: 45px;
    width: 100%;
    padding: 6px;
    text-align: center;
    line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-list .item p span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}<!--0.00016593933105469-->