.news-page-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-page-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 4px;
	border-bottom: 1px dashed #e4edf5;
	transition: background 0.2s;
}

.news-page-item:last-child {
	border-bottom: none;
}

.news-page-item:hover {
	background: #f8fbff;
}

.news-page-title {
	flex: 1;
	padding: 0 20px 0 14px;
	color: #444;
	font-size: 14px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.news-page-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	margin-top: -2px;
	border-radius: 50%;
	background: #006CBC;
}

.news-page-title:hover {
	color: #F9B333;
}

.news-page-date {
	flex-shrink: 0;
	color: #999;
	font-size: 12px;
	white-space: nowrap;
}

.news-page-empty {
	padding: 40px 20px;
	text-align: center;
	color: #999;
	font-size: 13px;
}

.news-detail-date {
	text-align: center;
	color: #999;
	font-size: 12px;
	margin: 0 0 18px;
}

.inner-card-body .pagination {
	padding-top: 10px;
	margin-top: 8px;
	border-top: 1px dashed #e4edf5;
}

.inner-card-body .pagination a {
	color: #006CBC;
	text-decoration: none;
}

.inner-card-body .pagination a:hover {
	color: #F9B333;
}
