.tabsList{
	width: 1160px;
	background: #F1F1F1;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	padding: 20px 20px 0;
	margin: 30px auto 0;
}
.tabsList-model{
	font-size: 16px;
	white-space: nowrap;
	margin: 0 20px 20px;
	transition: all ease .3s;
}
.tabsList-model-check{
	font-weight: bold;
	transition: all ease .3s;
}

.newsList{
	overflow: hidden;
}
.newsList-model{
	display: flex;
	padding: 30px 0;
	border-bottom: 1px solid #F1F1F1;
}
.newsList-model-topImage{
	width: 300px;
	min-width: 300px;
	height: 180px;
	margin-right: 20px;
	background: #F1F1F1;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.newsList-model-topImage .topImage-main{
	width: 100%;
	height: 100%;
	transition: all ease .6s;
}
.newsList-model:hover .topImage-main{
	transform: scale(1.1);
}
.newsList-model:hover .newsList-model-info-name{
	color: var(--theme-color);
}
.newsList-model-topImage .topImage-icon{
	width: 40px;
	position: absolute;
	left: 20px; bottom: 20px;
}
.newsList-model-info{
	width: 880px;
	position: relative;
}
.newsList-model-info-name{
	font-size: 20px;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.newsList-model-info-model{
	width: 100%;
	font-size: 16px;
	margin-top: 10px;
	color: #A8A8A8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsList-model-other{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0; bottom: 0;
}
.newsList-model-otherTime{
	font-size: 16px;
	color: #A8A8A8;
	white-space: nowrap;
}
.newsList-model-otherView{
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #A8A8A8;
}
.newsList-model-otherView img{
	width: 30px;
	min-width: 20px;
	margin-right: 10px;
}

.newsList-pagination{
	display: flex;
	justify-content: center;
	margin: 50px auto;
}