.product{
	padding: 60px 0 90px;
}
.tabList{
	text-align: center;
}
.tabList .tab{
	display: inline-block;
	font-size: 16px;
	width: 180px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border:1px solid #eee;
	border-radius: 50px;
	margin: 0 8px;
}
.tabList .tab:hover,
.tabList .tab.active{
	border-color: #00d3dd;
	background: #00d3dd;
	color: #fff;
}
.product .productList{
	display: flex;
	flex-wrap:wrap;
	align-content:flex-start;
	margin-top: 40px;
}
.productList li{
	width: calc(50% - 20px);
	margin-right: 40px;
	margin-bottom: 40px;
	background-color: #f7fbfb;
}
.productList li:nth-child(2n){
	margin-right: 0;
}
.productList li>a{
	display: block;
	display: flex;
}
.productList li .img{
	flex: 1;
	height: 0;
	padding-bottom: 32.25%;
}
.productList li .info{
	flex: 1;
	padding: 30px 30px 20px 20px;
}
.productList li .item{
	font-size: 16px;
	line-height: 28px;
	padding-left: 80px;
	position: relative;
	min-height: 28px;
	margin-bottom: 10px;
}
.productList li .item .attr{
	color: #999;
	position: absolute;
	left: 0;
	top: 0;
}
.productList li .item .value{
	color: #000;
	word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.productList li>a:hover{
	background: #00d3dd;
}
.productList li>a:hover .info{
	background: url("../images/icon/bgProduct.png") no-repeat right bottom;
}
.productList li>a:hover .item .attr{
	color: #a3eaee;
}
.productList li>a:hover .item .value{
	color: #fff;
}

@media screen and (max-width:1280px) {
	.productList li{
		width: 100%;
		margin: 0 auto 20px;
	}
}

@media screen and (max-width:1024px) {
	.tabList .tab{
    font-size: 12px;
    width: 90px;
    height: 32px;
    line-height: 30px;
    margin: 0 5px 8px;
	}
}

@media screen and (max-width:800px) {
	.product{
		padding: 30px 0;
	}
	.productList li .item{
		font-size: 14px;
		line-height: 24px;
		padding-left: 73px;
	}
}

@media screen and (max-width:640px) {
	.productList li>a{
		display: block;
	}
	.productList li .img{
		width: 100%;
		padding-bottom: 66.66%;
	}
}
