.product-item {
	border: 1px solid #eee;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;

	position: relative;
	overflow: hidden;
}

.product-item:hover {
	box-shadow: rgba(0, 0, 0, 1) 10px 10px 15px 5px;

	transition: box-shadow 0.3s ease;
}

.product-item img {
	transition: transform 0.3s ease;
	width: auto;
	height: 251px;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.product-item-a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 251px;
	/*border: 1px solid #ddd;*/
}

.product-item:hover img {
	transform: scale(1.1);
}

.product-item-bottom {
	text-align: center;
	padding: 10px 10px;
}


.product-item-bottom a {
	text-decoration: none;
	border: none;
	outline: none;
	cursor: pointer;
	font-family: "Arial", "Microsoft YaHei", sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 4px;
	transition: all 0.3s ease;
	display: inline-block;
	margin-right: 10px;
}


.product-item-bottom a.buy {
	background-color: #2563eb;
	color: #ffffff;
	border: 1px solid #2563eb;
	padding: 10px 10px;
	margin: 5px;
}

.product-item-bottom a.buy:hover {
	background-color: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.product-item-bottom a.buy:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
}

.product-item-bottom a.buy:focus {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}


.product-item-bottom a.join-btn {
	background-color: #ffffff;
	color: #2563eb;
	border: 1px solid #2563eb;
	padding: 10px 10px;
	margin: 5px;
}

.product-item-bottom a.join-btn:hover {
	background-color: #f0f7ff;
	transform: translateY(-1px);
}

.product-item-bottom a.join-btn:active {
	transform: translateY(0);
	background-color: #e0efff;
}

.product-item-bottom a.join-btn:focus {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.product-price-dollar {
	color: red;
	font-size: 28px;
}

.more-product {
	text-align: center;
}

.more-product a {
	display: inline-block;
	background: linear-gradient(90deg, #f85867 0%, #d13ce9 50.5%, #4b83f8 100%);
	padding: 10px 24px;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	color: white;
}

.filter-nav-collapse {
	position: relative;
	height: 69px;
	overflow: hidden;
}

.filter-nav-expand {
	position: relative;
	height: 510px;
	overflow: hidden;
}

#filterNavContain > span {
	width: 70px;
	height: 30px;
	background-color: green;
	color: #ffffff;
	cursor: pointer;
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 4px;
	padding: 4px;
}

.expand-span-btn{
	display: inline-block;
}
.collapse-span-btn {
	display: none;
}