.banner {
	width: 100%;
	position: relative;
}

.banner img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}

.banner .content {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.25);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.banner .content .width-1200 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.banner .content .h {
	font-size: 38px;
	font-weight: bold;
	color: #ffffff;
}

.banner .content .h-en {
	font-size: 18px;
	color: #ffffff;
}

.list-box {
	background-color: #f5f5f5;
}

.product-list {
	padding: 30px 0;
	min-height: calc(100vh - 791px);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.product-list .li {
	background-color: #ffffff;
	box-sizing: border-box;
	border-radius: 15px;
	overflow: hidden;
	padding-bottom: 65px;
	position: relative;
	transition: all .4s ease;
}

.product-list .li:hover {
	transform: scale(1.04);
}

.product-list .li:hover .more {
	background-color: #e30016;
	color: #ffffff;
}

.product-list .li img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.product-list .li .h {
	margin-top: 10px;
	padding: 0 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	font-size: 20px;
	height: 58px;
	color: #000000;
}

.product-list .li .more {
	background-color: #e8e9ea;
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 26px;
	color: #000000;
	border-radius: 50px;
	padding: 6px;
}

.page {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 30px;
}

.page .number {
	background-color: #e8e9ea;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	border-radius: 50px;
}

.page .number a {
	color: #000000;
}

.page .number.active {
	background-color: #e30016;
}

.page .number.active a {
	color: #ffffff;
}

.box {
	background-color: #f5f5f5;
}

.product-detail {
	margin: 30px 0;
	display: flex;
	justify-content: space-between;
}

.product-detail .l {
	width: 49%;
	height: 620px;
	background-color: #ffffff;
	border-radius: 15px;
	overflow: hidden;
}

.product-detail .swiper-container {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.product-detail .swiper-slide {
	background-size: cover;
	background-position: center;
}

.product-detail .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-detail .gallery-top {
	height: 80%;
	width: 100%;
}

.product-detail .gallery-thumbs {
	height: 20%;
	box-sizing: border-box;
	padding: 10px;
}

.product-detail .gallery-thumbs .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
	border-radius: 10px;
	overflow: hidden;
}

.product-detail .gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border: 1px solid #e30016;
}

.product-detail .l:nth-child(2) {
	padding: 15px;
	box-sizing: border-box;
}

.product-detail .product-h {
	font-size: 24px;
	font-weight: bold;
	min-height: 100px;
}

.product-detail .product-dsc {
	font-size: 16px;
	margin-top: 15px;
	color: #666666;
}

.canshu {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #999999;
}

.canshu .canshu-h {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.canshu .canshu-h img {
	width: 20px;
	margin-right: 10px;
}

.canshu-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.canshu-list .li {
	text-align: center;
}

.canshu-list .li .name {
	font-size: 20px;
}

.canshu-list .li .title {
	font-size: 16px;
	color: #666666;
	margin-top: 5px;
}

.product-detail-box .content {
	margin: 30px 0;
	border-radius: 15px;
	overflow: hidden;
}

.product-detail-box .content img {
	width: 100%;
}

@media screen and (max-width:980px) {
	.banner img {
		height: 180px;
	}

	.banner .content .h {
		font-size: 28px;
	}

	.banner .content .h,
	.banner .content .h-en {
		padding: 0 10px;
		box-sizing: border-box;
	}

	.product-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.product-detail {
		flex-direction: column;
		padding: 0 10px;
		box-sizing: border-box;
	}

	.product-detail .l {
		width: 100%;
	}

	.product-detail .l:nth-child(2) {
		margin-top: 20px;
	}

	.product-detail-box .header-h {
		padding: 0 10px;
		box-sizing: border-box;
	}
}

@media screen and (max-width:620px) {
	.product-list {
		padding: 20px 15px;
		box-sizing: border-box;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}

	.page {
		justify-content: center;
	}
}