
/*标题*/
.title{
	margin-top: 5%;
	margin-bottom: 20px;
}

/*视频推荐*/
.video-box-show{
	position: relative;
}
.video-box-show .video-show-list{
	padding-left: 20px;
	position: relative;
}
@media screen and (max-width: 991px){
	.video-box-show .video-show-list{
		padding-left: 0;
	}
}
.video-box-show .video-show-list>.list-one{
	margin-bottom: 20px;
	position: relative;
}
.video-box-show .video-show-list>.list-one:first-child{
	display: none;
}
.video-box-show .video-show-list>.list-one:last-child{
	margin-bottom: 0;
}
.video-box-show .video-show-list>.list-one::before{
	content: ' ';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	right: 0;
}
.video-box-show .video-show-list>.list-one>.show-img{
	width: 100%;
}
.video-box-show .video-show{
	position: absolute;
	width: 75%;
	height: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	top: 0;
	left: 0
}
.video-box-show .video-show::before{
	content: ' ';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	right: 0;
}
.video-box-show .play{
	width: 30px;
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	cursor: pointer;
}
.video-show .play{
	width: 40px;
	position: static;
	margin-top: 20px;
}
.video-show>.video-msg{
	position: absolute;
	width: 100%;
	text-align: center;
	letter-spacing:4px;
	top: 50%;
	margin-top: -80px;
}
.video-show>.video-msg>div{
	margin-bottom: 10px;
}
.video-box-show video{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: -1;
}

/*视频列表*/
.video-list{
	margin-bottom: 50px;
}
.video-list .list-one{
	padding-top: 105%;
	position: relative;
}
.video-list .list-one>div{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.video-list .video-img{
	text-align: center;
	height: 64%;
	font-size: 0;
	position: relative;
}
.video-list .video-img>.show-img{
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.video-list .video-img>.show-img>img{
	max-width: 100%;
	max-height: 100%;
}
.video-list .video-img>.show-img:after{
	content: ' ';
	position: absolute;
	background-color: rgba(0,0,0,.3);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-list .video-img video{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: #000;
}
.video-list .video-img>.play{
	position: absolute;
	width: 40px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
}
.video-list .video-title{
	box-sizing: border-box;
	padding: 10px 0 0 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 25px;
}
.video-list .video-time{
	overflow: hidden;
	margin-top: 15px;
}
.video-list .video-time>div{
	float: right;
	background:url(../img/icon-time.png) no-repeat;
	padding-left: 20px;
}


@media screen and (max-width: 991px) {
	.video-list .list-one{
		position: static;
		padding-top: 0;
	}
	.video-list .list-one>div{
		position: static;
	}
	.video-list .video-img>.show-img{
		top: 0;
		transform: translateY(0);
	}
}