.top-swiper .swiper {
  width: 100%;
  height: 320px;
}
.article-box{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.article-box .cate-box{
	width: 300px;
	margin-right: 40px;
}
.article-box .cate-box .item-box{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 18px;
	background-color: var(--themeColor);
	color: #fff;
	text-align: center;
}

.article-box .cate-box .item-box img{
	width: 15px;
	height: auto;
	margin-right: 5px;
}
.article-box .cate-box .item-box2{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	font-size: 16px;
	background-color: #fff;
	color: #000;
	text-align: center;
	cursor: pointer;
}
.article-box .cate-box .item-box2:hover{
	background-color: #f2f2f2;
}

.article-box .article-list{
	width: 860px;
}

.article-box .article-list .title-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	padding: 15px 0;
	border-bottom: 1px solid #aaa;
}

.article-box .article-list .title-box .title{
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
}
.article-box .article-list .title-box .pos-box{
	display: inline-block;
	font-size: 14px;
	color: #999;
}
.article-box .article-list .list-box{
	width: 100%;
	
}
.article-box .article-list .list-box ul{
	list-style-type: none;
}
.article-box .article-list .list-box li{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px dashed #aaa;
	cursor: pointer;
}
.article-box .article-list .list-box li:hover{
	
	background-color: #f5f5f5;
	color: var(--themeColor);
}
.article-box .article-list .list-box li:before{
	content: '';
	width: 6px;
	height: 6px;
	background-color: #333;
	margin-right: 6px;
}
.article-box .article-list .list-box li .title{
	width: 70%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.article-box .article-list .list-box li .time{
	
	width: 30%;
	text-align: right;
	color: #666;
	font-size: 14px;
}
.info-box{
	width: 100%;
	background-color: #fff;
	padding: 20px;
	box-sizing: border-box;
}

.pagination-box{
	width: 100%;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagination-box .pag{
	padding: 4px 6px;
	box-sizing: border-box;
	background-color: #f1f1f1;
	font-size: 12px;
	cursor: pointer;
	margin: 0 4px;
}
.pagination-box .pag-d{
	cursor: not-allowed;
}