body{
	background: #f3f3f3;
}

.product-section{
	margin: 0 auto;
}
/* 默样式：适用于大屏幕 */
.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;
	margin-bottom: 10px;
}
.buwei{
	height: 0px !important;
	padding: 0 !important;

}

.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;
}


/* 中等屏幕设备（例如平板） */
@media (max-width: 991px) {

}


@media (max-width: 768px) {
	.news-list li {
		width: 100%;
		background: #fff;
		border-radius: 8px;
		overflow: hidden;
		padding-bottom: 15px;
		margin-bottom: 10px;
	}
}