.category{
	font-size: 0;
	background: #fff;
	padding: 15px 20px;
	position: sticky;
	top: 60px;
	z-index: 10;
	/*box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%), -8px -8px 20px 0 #f1f1f1;*/
}
.category>li{
	display: inline-block;
	font-size: 13px;
	margin-right: 10px;
	border-radius: 15px;
	height: 30px;
	line-height: 30px;
	color: #555;
	cursor: pointer;
}

.category>li:hover{
	background: #f1f1f1;
}
.category>li>a{
	color: #555;
	text-decoration: none;
	display: block;
	height: 100%;
	width: 100%;
	padding: 0 15px;
}
.category>li.active{
	background: var(--primary);
	color: #fff;
}
.category>li.active>a{
	color: #fff;
}
.products>li{
	background: #fff;
	padding: 20px;
	border-bottom: 2px solid #eff3f5;
	border-radius: 3px;
	height: 150px;
	padding-left: 220px;
	position: relative;
}
.products>li:hover{
	background: #f5f6f7;
}
.products>li>.pic{
	width: 180px;
	height:  110px;
	position: absolute;
	left: 20px;
	top: 20px;
	background-size: cover;
	border-radius: 3px;
	opacity: .9;
}
.products>li>h5{
	color: #333;
}
.products>li>h5>.badge{
	float: right;
	font-size: 13px;
	font-weight: normal;
	color: #aaa;
}
.products>li>.content{
	font-size: 14px;
	line-height: 2em;
	padding-top: 10px;
}
.products>li:hover .pic{
	opacity: 1;
}
.products>li:hover h5{
	color: var(--primary);
}
.hotItem{
	position: relative;
}
.hotItem>.pic{
	width: 100%;
	padding-bottom: 62%;
	background-size: cover;
}
.hotItem:hover h6{
	color: var(--primary);
}
.bigCat{
	width: 100%;
	padding-bottom: 70%;
	background-size: cover;
	background-position: center;
	margin-bottom: 36px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}
.bigCat .mask {
	background: rgba(37,49,57,.6);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.bigCat .title{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #eee;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.bigCat:hover .mask{
	background: rgba(37,49,57,.9);
}
.bigCat:hover .title{
	color: #fff;
}
.page-link{
	color: #6c757d;
	box-shadow: none !important;
}
.page-link:hover{
	color: #6c757d;
}
.page-item.disabled{
	opacity: .6;
	cursor: not-allowed;
}
.page-item.disabled .page-link{
	color: #aaa;
}
.pagination{
	margin-top: 40px;
	margin-bottom: 0;
}
.page-item.active .page-link{
	background:var(--primary) !important;
	border-color: var(--primary);
}
.page-item .icon{
	font-size: 12px !important;
}