/* 产品中心 */
.products-wai{
	margin-bottom: 45px;
}
.products-tit{
	margin-top: 66px;
	margin-bottom: 50px;
}
.products-tit ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.products-tit-list{
	padding: 0 15px;
	color: #333;
}
.products-tit-list a{
	font-size: 16px;
	transition: .3s color ease-in-out;
}
.products-tit-list a:hover{
	color: #FF0000;
}

.products-body-list{
	margin-bottom: 15px;
}
.products-body-list a{
	display: block;
	overflow: hidden;
	position: relative;
}
.products-content{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.7);
	box-sizing: border-box;
	padding: 20% 10%;
	transition: all .5s ease-in;
	overflow: hidden;
	transform: translateX(-100%);
	opacity: 0;
	overflow: hidden;
}
.products-content p{
	color: #fff;
}
.products-name{
	text-align: center;
}
.products-name h4{
	font-size: 14px;
	font-weight: 700;
	color: #000000;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.products-body-list:hover .products-content{
	display: block;
	transform: translateX(0%);
	opacity: 1;
}


@media screen and (max-width: 768px) {
	.products-tit-list{
		padding: 0 5px;
	}
	.products-tit-list a{
		font-size: 14px;
	}
}
@media screen and (max-width: 550px) {
	.products-tit-list{
		padding: 0 5px;
	}
	.products-tit-list a{
		font-size: 12px;
	}
}
