@charset "utf-8";

.product .p-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}
.product-cate {
	width: 100%;
	margin-top: 30px;
}
.product-cate ul {
	display: flex;
	flex-wrap: wrap;
}
.product-cate li {
	width: 47.5%;
	margin-right: 5%;
	margin-bottom: 3%;
}
.product-cate li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	background-color: #f5f5f5;
}
.product-cate li a.active, .product-cate li a:hover {
	background-color: #c99a5e;
	color: #fff;
}
.product-cate li:nth-child(even) {
	margin-right: 0;
}
.product-cate .sub-cate {
	text-align: center;
	margin-top: 15px;
}
.product-cate .sub-cate a.cur, .product-cate .sub-cate a:hover {
	color: #c99a5e;
}
.product-cate .sub-cate span {
	margin: 0 15px;
}
.product-list {
	margin-top: 20px;
}
.product-list ul {
	display: flex;
	flex-wrap: wrap;
}
.product-list li {
	width: 48.3%;
	margin: 0 3% 3% 0;
}
.product-list.custom-list li {
	width: 48.3%;
	margin: 0 3% 3% 0;
}
.product-list li:nth-child(even) {
	margin-right: 0;
}
.product-list li a {
	border: 2px solid #e1e1e1;
	display: block;
}
.product-list li a:hover {
	color: #c99a5e;
}
.product-list li img {
	width: 100%;
}
.product-list li .name {
	width: 100%;
	height: 50px;
	text-align: center;
	position: relative;
}
/* .product-list li .name span {
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	z-index: 1;
	background-color: #1c1d33;
	transition: all 0.6s;
} */
.product-list li .name p {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	z-index: 2;
	font-size: 16px;
}
/* .product-list li a:hover .name span {
	width: 100%;
}
.product-list li a:hover .name p {
	color: #c99a5e;
} */