.video-div {
	padding: 30px 0;
	box-sizing: border-box;
	background-color: #F8F8F8;
}

.video-box {
	display: flex;
	justify-content: space-between;
}

.video-box-right {
	width: 71.5%;
	display: flex;
	flex-direction: column;
	padding: 45px 53px 80px 53px;
	box-sizing: border-box;
	background-color: #fff;
}

.video-box-right-first {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.video-item {
	width: 48%;
	
	height: 320px;
	margin-bottom: 44px;
}
    .video-item > a {
        display: flex;
        flex-direction: column;
        width:100%;
        height:100%;
    }
    .video-item-first {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.video-item-first>img {
	width: 100%;
	height: 100%;
}

.video-item-first .video-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
}

.video-item-first .video-btn>img {
	width: 100%;
	height: 100%;
}

.video-item-second {
	margin-top: 30px;
	color: #333333;
	font-size: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.video-box-right-second {
	padding: 50px 0;
	box-sizing: border-box;
}

@media screen and (max-width:750px) {
	.video-box {
		flex-direction: column-reverse;
	}

	.video-box-right {
		width: 100%;
	}

	.video-box-right {
		padding: 20px;
	}

	.video-item {
		height: auto;
		margin-bottom: 10px;
	}

	.video-item-second {
		margin-top: 10px;
		font-size: 16px;
	}

	.video-item-first .video-btn {
		width: 30px;
		height: 30px;
	}

	.video-item-first {
		border-radius: 5px;
	}
}