/* 新闻内容页样式 */
.news-content {
	flex: 1;
	min-width: 0;
}

/* 新闻标题区域 */
.article-header {
	text-align: center;
	padding-bottom: 30px;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 30px;
}

.article-title {
	font-size: 2rem;
	font-weight: 700;
	color: #0a3d62;
	line-height: 1.4;
	margin-bottom: 20px;
	text-align: center;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.9rem;
	color: #64748b;
	justify-content: center;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.meta-item i {
	color: #0056b3;
}

/* 新闻正文 */
.article-content {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #334155;
}

.article-content p {
	margin-bottom: 20px;
	text-indent: 2em;
}

.article-content h2 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #0a3d62;
	margin: 30px 0 15px;
	padding-left: 15px;
	border-left: 4px solid #0056b3;
}

.article-content h3 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #1e293b;
	margin: 25px 0 12px;
}

.article-content ul,
.article-content ol {
	margin-left: 40px;
	margin-bottom: 20px;
}

.article-content li {
	margin-bottom: 8px;
}

.article-content a {
	color: #0056b3;
	text-decoration: none;
}

.article-content a:hover {
	text-decoration: underline;
}

.article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 15px 0;
	display: block;
}

.article-content .highlight {
	background: #fff3cd;
	padding: 15px 20px;
	border-radius: 8px;
	border-left: 4px solid #ffc107;
	margin: 20px 0;
}

/* 上下篇导航 */
.article-nav {
	margin-top: 40px;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
}

.article-nav h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #0a3d62;
	margin-bottom: 15px;
}

.nav-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #334155;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 0.95rem;
}

.nav-link:hover {
	color: #0056b3;
	padding-left: 10px;
}

.nav-link i {
	width: 20px;
	text-align: center;
	color: #0056b3;
	font-size: 0.8rem;
}

.nav-link.disabled {
	color: #94a3b8;
	cursor: not-allowed;
}

.nav-link.disabled:hover {
	color: #94a3b8;
	padding-left: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.article-title {
		font-size: 1.5rem;
	}

	.article-content {
		font-size: 1rem;
	}

	.article-meta {
		justify-content: flex-start;
	}
}

@media (max-width: 480px) {
	.article-title {
		font-size: 1.3rem;
	}

	.article-content {
		font-size: 0.95rem;
	}
}