.main {
    margin: 50px auto 80px auto;
}

/* 新闻栏目导航 */
.news-nav {
    width: 100%;
    padding-top: 3px;
    background: #fff;
    border-bottom: 1px solid #efefef;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.news-nav::-webkit-scrollbar {
display:none;
}
.news-nav ul {
    display: flex;
    list-style: none;
    width: max-content;
    min-width: 100%;
}
.news-nav li {
    flex: 1;
}
.news-nav li a {
    display: block;
    align-items: center;
    text-align: center;
    padding: 14px 0;
    font-size: 17px;
    color: #333;
    text-decoration: none;
    transition: .2s;
}
.news-nav li a:hover {
    color: #20c057;
}
.news-nav li.cur a {
    color: #20c057;
    font-weight: 600;
    border-bottom: 3px solid #20c057;
    text-align: center;
}


/* 新闻列表 */

.news-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-list li {
	background: #fff;
    border-bottom: 1px solid #eee;
	padding: 16px;
}

.news-inner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.news-thumb {
	width: 120px;
	height: 84px;
	overflow: hidden;
	border-radius: 3px;
	flex-shrink: 0;
}

.news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-content {
	flex: 1;
	min-width: 0;
}

.news-title {
	margin-bottom: 13px;
}

.news-title a {
    font-size: 18px;
    line-height: 1.45;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-title a:hover {
	color: #23c268;
}

.news-meta {
	color: #a7a8a7;
	font-size: 14px;
}

.news-meta span:first-child {
	margin-right:12px;
}

.no-thumb .news-inner {
	display: block;
}

.no-thumb .news-title {
	margin-bottom: 12px;
}

.no-thumb .news-desc {
	margin-top: 10px;
}


/* 加载更多 */
.loadMore,
.loadText {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    color: #888;
    gap: 8px;
    padding-bottom: 10px;
	background-color: #fff;
}

.loadMore .it,
.loadText .it {
	display: inline-block;
	background: none;
	border-radius: 0;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
}

.loadText.loading:before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #20c057;
    border-radius: 50%;
    animation: r .8s linear infinite
}
@keyframes r {
to {
transform:rotate(360deg)
}
}

.news-taglist-title {
    padding: 17px 0 16px 15px;
    font-weight: bold;
    font-size: 17px;
    border-bottom: 1px solid #f3f3f3;
	background-color: #fff;
}