/* 布局 */
.news-container {
	gap: 20px;
	display: flex;
	padding: 40px 20px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background-color: #F2F5FE;
}

.news-breadcrumbs {
	gap: 24px;
	width: 100%;
	display: flex;
	max-width: 1200px;
	border-radius: 16px;
	flex-direction: column;
}

.news-article {
	gap: 24px;
	width: 100%;
	padding: 32px;
	display: flex;
	max-width: 1200px;
	border-radius: 16px;
	flex-direction: column;
	background-color: #ffffff;
}

/* .news-list {
	width: 380px;
	padding: 32px;
	border-radius: 16px;
	background-color: #ffffff;
} */

.news-title {
	color: #444444;
	font-size: 24px;
	font-weight: bold;
	line-height: 40px;
}

.news-data {
	color: #A4AACA;
	font-size: 14px;
	line-height: 24px;
}

.news-cover {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 16px;
	object-position: center;
}

.news-line {
	height: 1px;
	background-color: #eee;
}

.news-text {
	min-height: 1000px;
	color: #454545;
	font-size: 14px;
	line-height: 32px;
}