body{
	background: #f3f3f3;
}
.header-menu .category .category-menu{
	display: block;
}
.banner{
	width: 100%;
}
.banner .swiper-slide-active{
	z-index: 9;
}
.banner img{
	display: flex;
	position: relative;
	z-index: 1;
	left: 50%;
	transform: translate(-50%,0);
	max-width: 100%;
	margin-left: -1px;
}

.product-section{
	margin: 0 auto;
	margin-top: 20px;
	position: relative;
}
.section-header{
	display: flex;
	justify-content: space-between;
	height: 45px;
	line-height: 45px;
}
.section-header-title{
	font-size: 22px;
}
.section-header-title span{
	color: #10B2E3;
}


.product-list {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.product-list li {
	overflow: hidden;
    background: #fff;
	border-radius: 8px;
	height: 370px;
}

.product-list li .img{
	width: 100%;
	height: 270px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.product-list li a{
	color: #333333;
}
.product-list li:hover img{
	transform: scale(1.1)
}
.product-list li a:hover{
	color: #333333 !important;
}
.product-list li .img img{
	max-width: 100%;
	max-height: 100%;
	display: flex;
	transition: transform 0.3s ease;
}
.product-list li .title{
	padding: 0 10px;
	height: 50px;
	line-height: 25px;
}
.product-list li .price{
	padding: 0 10px;
	line-height: 25px;
	color: #E83F00;
	font-size: 18px;
	margin-top: 10px;
}
.product-list li .price span{
	font-size: 14px;
}
.product-list li:last-child{
	display: none;
}

/* 默认样式：适用于大屏幕 */
.product-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-list .one {
    grid-column: span 3; /* 在大屏幕上占据三列 */
}
.product-list .one img{
	width: 100%;
	display: flex;
	transition: transform 0.3s ease;
}

.news-list {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news-list li {
	width: 33%;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	padding-bottom: 15px;
}

.news-list li a{
	color: #333333;
}
.news-list li:hover img{
	transform: scale(1.1)
}
.news-list li a:hover{
	color: #333333 !important;
}
.news-list li .img{
	width: 100%;
	overflow: hidden;
}
.news-list li .img img{
	max-width: 100%;
	max-height: 100%;
	display: flex;
	transition: transform 0.3s ease;
}
.news-list li .title{
	padding: 0 10px;
	line-height: 25px;
}
.news-list li .date{
	padding: 0 10px;
	line-height: 25px;
	color: #999999;
}
.news-list li .price{
	padding: 0 10px;
	line-height: 25px;
	color: #E83F00;
	font-size: 18px;
	margin-top: 10px;
}
.product-list li .price span{
	font-size: 14px;
}

.product-section-menu{
	width: 1400px;
	max-width: 100%;
	height: 0;
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 999;
	top: 0;
}
.at-top .product-section-menu{
	position: fixed;
	top: 55px;
}
.product-section-menu-con{
	position: absolute;
	width: 80px;
	background: #ffffff;
	top: 45px;
	left: -90px;
	z-index: 999;
	border-radius: 4px;
}
.product-section-menu-con li{
	text-align: center;
	padding: 10px 0;
}

.product-section-menu-con li a:hover{
	color: #333333 !important;
}
.product-section-menu-con li span{
	color: #10B2E3;
	font-size: 24rpx;
}
.product-section-menu-con li div{
	font-size: 20rpx;
}

.section{
	position: relative;
	top:-55px;
}

/* 中等屏幕设备（例如平板） */
@media (max-width: 991px) {
	.section-header-title{
		font-size: 18px;
	}
	.product-section{
		padding: 0 10px;
		box-sizing: border-box;
	}
    .product-list {
        grid-template-columns: repeat(2, 1fr); /* 两列布局 */
    }
    .product-list li {
    	overflow: hidden;
        background: #fff;
    	border-radius: 8px;
    	height: 270px;
    }
	.product-list li .img{
		width: 100%;
		height: 170px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
    .product-list .one {
        grid-column: span 2; /* 占据两列 */
		height: auto !important;
    }
	.product-list li:last-child{
		display: block;
	}
}


@media (max-width: 768px) {
	.news-list li {
		width: 100%;
		background: #fff;
		border-radius: 8px;
		overflow: hidden;
		padding-bottom: 15px;
		margin-bottom: 10px;
	}
}