@charset "utf-8";
/**
@Author: yu_Wj
@Description：生产车间
*/

/*生产车间*/
.list_ul{
	float: left;
	width: 1226px;
}
.list_ul li{
	float: left;
	width: 280px;
	height: 270px;
	border-radius: 5px;
	margin: 0 26px 26px 0;
	overflow: hidden;
}
.list_ul li:hover{
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,.4);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,.4);
	-o-box-shadow: 0 0 15px rgba(0,0,0,.4);
	box-shadow: 0 0 15px rgba(0,0,0,.4);
}
.list_ul li a{
	font-size: 0;
	line-height: 0;
	display: block;
	position: relative;
}
.list_ul li a > img{
	width: 280px;
	height: 270px;
}
.list_ul li a i{
	display: none;
	width: 280px;
	height: 270px;
	background: rgba(0,0,0,.8);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.list_ul li a i img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.list_ul li a:hover i{
	display: block;
}

/*视频*/
.video{
	font-size: 0;
	line-height: 0;
	position: relative;
}
.video img{
	max-width: 100%;
}
.video:before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	position: absolute;
	z-index: 1;
}
.video .video_play{
	cursor: pointer;
	-webkit-transition:transform .3s linear 0s;
	   -moz-transition:transform .3s linear 0s;
	    -ms-transition:transform .3s linear 0s;
	     -o-transition:transform .3s linear 0s;
	        transition:transform .3s linear 0s;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	z-index: 3;
}
.video .video_play:hover{
	-webkit-transform:scale(0.9);
	   -moz-transform:scale(0.9);
	    -ms-transform:scale(0.9);
	     -o-transform:scale(0.9);
	        transform:scale(0.9);
	-webkit-transition-duration: .3s;
	   -moz-transition-duration: .3s;
	    -ms-transition-duration: .3s;
	     -o-transition-duration: .3s;
	        transition-duration: .3s;
}
.video video{
	display: none;
}
/*视频弹窗*/
.video_file{
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}
.video_file aside{
	max-width: 1200px;
	max-height: 680px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.video_file .close{
	width: 27px;
	height: 26px;
	cursor: pointer;
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
	background: url(../images/close.png) center no-repeat;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 6;
}
.video_file .close:hover{
	opacity: 1;
}
.video_file video{
	width: 100%;
	height: 100%;
	border: solid 15px #fff;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,.5);
	-o-box-shadow: 0 0 15px rgba(0,0,0,.5);
	box-shadow: 0 0 15px rgba(0,0,0,.5);
}