.banner-box {
	position: relative;
	margin-top: 8vw;
}

.banner-box-img {
	width: 100%;
	height: 45vw;
	object-fit: cover;
}

.product-show-swiper {
    width: 100%;
    height: 34vw;
    z-index: 0 !important;
}

.product-show-swiper a {
    display: block;
    height: 100%;
}

.product-show-swiper img {
    width: 100%;
    height: 100% !important;
}

.carousel-list {
	top: 11.5vw;
	position: absolute;
}

.carousel-list-item {
	display: none;
	gap: 4vw;
}

.carousel-list-item:nth-of-type(1) {
	display: flex;
}

.carousel-list-item a {
	display: block;
	width: 28vw;
	height: 21vw;
	position: relative;
}

.carousel-list-item a>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hot {
	position: absolute;
	right: -2vw;
	width: 4vw;
	top: 0;
}

.carousel-list-item p {
	width: 52vw;
	font-size: 1.2vw;
	line-height: 2vw;
	text-align: justify;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-align: justify;
	text-overflow: ellipsis;
}

.carousel-item-content>a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1vw;
	background: #0D6200;
	width: 15vw;
	border-radius: 0.2vw;
	height: 2.8vw;
	line-height: 2.8vw;
	cursor: pointer;
	margin-top: 2.5vw;
	animation: sway 3s linear infinite;
}

.carousel-item-content>a:hover {
	opacity: 0.9;
}

@keyframes sway {
	25% {
		transform: translateX(0.5vw);
	}

	50% {
		transform: translateX(1vw);
	}

	75% {
		transform: translateX(0.5vw);
	}

	100% {
		transform: translateX(0vw);
	}
}

.carousel-item-content>a img {
	width: 1.3vw;
	height: 1.3vw;
}

.carousel-item-content>a label {
	font-size: 1.1vw;
	cursor: pointer;
}

.carousel-list-options {
	position: absolute;
	width: 94%;
	margin-left: 3%;
	top: 29vw;
	border-radius: 2vw 2vw 0 0;
	background: #ffffff;
	justify-content: center;
	display: flex;
	align-items: center;
	padding: 1vw 2vw;
}

.carousel-list-options>div {
	width: 18vw;
	height: 16vw;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 1vw;
	justify-content: center;
	align-items: center;
	border-radius: 0.2vw;
}

.carousel-list-options>div img {
	width: 16vw;
	height: 12vw;
}

.carousel-list-options>div span {
	color: #333333;
	width: 100%;
	display: block;
	padding: 0 0.4vw;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 1.1vw;
}

.carousel-list-options>div:nth-of-type(1) {
	background: #0D6200;
}

.carousel-list-options>div:nth-of-type(1) span {
	color: #ffffff;
}

.product-list {
	margin-top: 5.6vw;
}

.product-list-wrapper-title {
	text-align: center;
	font-size: 2vw;
	font-weight: bold;
	margin-bottom: 4vw;
}

.product-list>ul {
	display: flex;
	background: #ffffff;
	padding-top: 4vw;
	padding-bottom: 2vw;
	flex-wrap: wrap;
}

.product-list>ul>li {
	width: 32%;
	margin-bottom: 2.5vw;
}

.product-list>ul>li>a {
	display: block;
	position: relative;
	width: 90%;
	margin: 0 auto;
	padding: 2vw 1vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5vw;
	border-radius: 0.2vw;
	box-shadow: 0px 0px 0.8vw 0 rgba(10, 10, 10, 0.1);
}

.product-list>ul>li>a::before {
	content: "";
	width: 100%;
	height: 10vw;
	background: #F1F6FD;
	border-radius: 0 0 100% 100%;
	display: block;
	position: absolute;
	top: 0;
	z-index: 10;
	left: 0;
}

.product-list>ul>li>a img {
	width: 100%;
	height: 15vw;
	z-index: 20;
}

.product-list>ul>li>a span {
	font-weight: bold;
	color: #333333;
	text-align: center;
	font-size: 1.2vw;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product-list>ul>li>a div {
	background: #0D6200;
	width: 80%;
	height: 2.8vw;
	border-radius: 10vw;
	line-height: 2.8vw;
	font-size: 1.2vw;
	text-align: center;
}

.product-list>ul>li>a:hover div {
	background: #333333;
}

.product-list>ul>li>a:hover::before {
	background: #0D6200;
}

@media (max-width:768px) {
	.banner-box-img {
		height: 105vw;
	}
	
	.banner-box {
	    margin-top: 18vw;
	}
	
	.product-show-swiper {
        height: 45vw !important;
    }

	.carousel-list {
		top: 22.5vw;
	}

	.carousel-list-item a {
		width: 90vw;
		height: 51vw;
	}

	.carousel-list-item:nth-of-type(1) {
		flex-wrap: wrap
	}

	.hot {
		display: none;
	}

	.carousel-list-item p {
		width: 100%;
		font-size: 3.2vw;
		line-height: 6vw;
	}

	.carousel-item-content>a {
		display: none;
	}

	.carousel-list-options {
		display: none;
	}

	.product-list-wrapper-title {
		font-size: 4vw;
		margin-bottom: 6vw;
	}

	.product-list>ul {
		padding-top: 8vw;
		padding-bottom: 8vw;
		padding-left: 2vw !important;
		padding-right: 2vw !important;
	}

	.product-list>ul>li {
		width: 50%;
		margin-bottom: 4.5vw;
	}

	.product-list>ul>li>a {
		gap: 2.5vw;
		width: 92%;
		margin-left: 4%;
	}

	.product-list>ul>li>a img {
		height: 30vw;
	}

	.product-list>ul>li>a span {
		font-size: 3.2vw;
	}

	.product-list>ul>li>a div {
		height: 6vw;
		border-radius: 20vw;
		line-height: 6vw;
		font-size: 2.8vw;
	}
}
