/* 新闻详情 */

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	color: #333333;
	font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
	background: #f7f8fa;
	line-height: 1.5;
}

.news_page *,
.news_page *::before,
.news_page *::after {
	box-sizing: border-box;
}

.news_page a {
	text-decoration: none;
	color: inherit;
}

/* 主内容：预留官网固定顶栏高度 68px，避免被遮挡 */
.news_page {
	padding: 100px 16px 48px;
	min-height: calc(100vh - 68px);
}

.news_wrap {
	max-width: 1200px;
	margin: 0 auto;
}

.news_main {
	width: 100%;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	padding: 28px 36px 40px;
}

.news_crumb {
	font-size: 14px;
	color: #999999;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #f0f0f0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news_crumb a {
	color: #666666;
}

.news_crumb a:hover {
	color: #00c055;
}

.news_crumb i {
	margin: 0 8px;
	color: #cccccc;
	font-style: normal;
}

.news_detail_title {
	font-size: 26px;
	line-height: 1.4;
	color: #333333;
	font-weight: bold;
	text-wrap: balance;
}

.news_detail_meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid #f0f0f0;
}

.news_detail_date {
	font-size: 14px;
	color: #999999;
}

.news_detail_cate {
	display: inline-block;
	height: 24px;
	line-height: 24px;
	padding: 0 10px;
	font-size: 12px;
	color: #00c055;
	background: #e5f9ee;
	border-radius: 3px;
}

.news_detail_body {
	padding-top: 28px;
	font-size: 15px;
	line-height: 2;
	color: #333333;
	letter-spacing: 0.3px;
}

.news_detail_body p {
	margin-bottom: 16px;
	text-wrap: pretty;
}

.news_detail_body img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 20px auto;
	border-radius: 4px;
}

.news_detail_body strong {
	color: #00c055;
	font-weight: bold;
}

.news_more {
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid #f0f0f0;
}

.news_more_title {
	font-size: 18px;
	color: #333333;
	font-weight: bold;
	margin-bottom: 16px;
}

.news_more_list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

.news_more_list li {
	width: 50%;
	padding-right: 16px;
	margin-bottom: 12px;
}

.news_more_list a {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: color 0.2s;
}

.news_more_list a:hover {
	color: #00c055;
}

.news_more_list a::before {
	content: '·';
	margin-right: 6px;
	color: #00c055;
	font-weight: bold;
}

.news_back {
	display: inline-block;
	margin-top: 32px;
	height: 36px;
	line-height: 34px;
	padding: 0 22px;
	font-size: 14px;
	color: #00c055;
	border: 1px solid #00c055;
	border-radius: 18px;
	transition: all 0.2s;
}

.news_back:hover {
	background: #00c055;
	color: #ffffff;
}

@media (max-width: 900px) {
	.news_main {
		padding: 22px 24px 28px;
	}

	.news_detail_title {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.news_page {
		padding: 84px 12px 32px;
		min-height: calc(100vh - 68px);
	}

	.news_main {
		padding: 16px 16px 24px;
		border-radius: 6px;
		box-shadow: none;
		border: 1px solid #f0f0f0;
	}

	.news_crumb {
		font-size: 13px;
		margin-bottom: 12px;
		padding-bottom: 12px;
	}

	.news_detail_title {
		font-size: 20px;
		line-height: 1.35;
	}

	.news_detail_meta {
		margin-top: 12px;
		padding-bottom: 14px;
	}

	.news_detail_body {
		padding-top: 20px;
		font-size: 14px;
		line-height: 1.85;
		letter-spacing: 0;
	}

	.news_detail_body p {
		margin-bottom: 14px;
	}

	.news_detail_body img {
		margin: 16px auto;
	}

	.news_more {
		margin-top: 28px;
		padding-top: 20px;
	}

	.news_more_title {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.news_more_list li {
		width: 100%;
		padding-right: 0;
		margin-bottom: 10px;
	}

	.news_more_list a {
		font-size: 13px;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.news_back {
		width: 100%;
		text-align: center;
		margin-top: 24px;
	}
}
