/*产品列表*/
.caseContent {
	padding: 0 76px;
}
.caseContent .navList {
	width: 100%;
	margin-top: 138px;
	text-align: right;
	display: inline-block;
	height: 133px;
}
.caseContent .navList ul {
	display: flex;
	justify-content: space-around;
	float: right;
}
.caseContent .navList ul li:first-child {
	font-family: "Impact Regular";
	font-size: 16px;
	margin-right: 185px;
}
.caseContent .navList ul li {
	margin: 0 20px;
	font-size: 18px;
	line-height: 133px;
	font-family: 'fzlt';
	color: #3e3a39;
}
.caseContent .navList ul li:first-child {
	font-size: 16px;
}
.caseContent .navList ul li i {
	margin: 5px 11px;
	cursor: pointer;
}
.caseContent .navList .cur i {
	/* border: 1px solid #aaa;
	border-radius: 4px; */
	border-bottom: 1px solid #3e3a39;
}

/*产品*/
.caseContent .products {
	width: 100%;
	font-size: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	padding-bottom: 100px;
}
.caseContent .products .product {
	display: inline-block;
	width: 32%;
	margin: .66%;
	/* height: 479px; */
	color: #fff;
	position: relative;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);  
	filter: grayscale(100%);
	transition: all .7s ease-in-out;	
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 101%, 101%;
	overflow: hidden;
}
.caseContent .products .product .img{
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	opacity: 0;
}
.caseContent .products .product .pic{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all .7s ease-out;	margin:0 auto;
}
.caseContent .products .product .img img,.caseContent .products .product .pic img{
	width: 100%;
	float: left;margin:0 auto;
}
.caseContent .products .product:hover .pic{
	width: 110%;
	height: 110%;
}

.caseContent .products .product a{
	width: 100%;
	float: left;

}
.caseContent .products .product span {
	text-align: center;
	color: #fff;
	width: 63px; height: 63px;
	border: 1px solid #fff;
	font-size: 40px;
	line-height: 63px;
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all .8s ease-in-out;
}
.caseContent .products .product:hover {
	background-size: 108%, 108%;
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);  
	filter: grayscale(0);
	transform: translate3d(0,0,0)
}
.caseContent .products .product:hover .more {
	opacity: 1;
}
.caseContent .products .product.colorFul {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);  
	filter: grayscale(0);
}

/*页码*/
.page_zt {
	width: 100%;height: 50px;
	position: absolute;
	bottom: 0;left: 50%;
	transform: translateX(-50%);
	font-size: 15px;
}
.page_zt .page {
	text-align: center;
}
.page_zt .page .ym,
.page_zt .page .ym2 {
	padding: 5px;
	cursor: pointer;
	position: relative;
}
.page_zt .page .ym2:after {
	content: '';
	width: 12px; height: 1px;
	position: absolute;
	bottom: 0px; left: 50%;
	transform: translateX(-50%);
	border-bottom: 2px solid red;
}
.page_zt .page .ym:hover:after {
	content: '';
	width: 12px; height: 1px;
	position: absolute;
	bottom: 0px; left: 50%;
	transform: translateX(-50%);
	border-bottom: 2px solid red;
}