/* 新闻列表 */

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 36px;
}

.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_item {
	padding: 24px 0;
	border-bottom: 1px solid #f0f0f0;
}

.news_item:last-of-type {
	border-bottom: none;
}

.news_item_title {
	font-size: 18px;
	line-height: 1.5;
	color: #333333;
	font-weight: bold;
}

.news_item_title a {
	color: #333333;
	transition: color 0.2s;
}

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

.news_item_tip {
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-size: 12px;
	color: #ffffff;
	background: #00c055;
	border-radius: 2px;
	margin-right: 8px;
	font-weight: normal;
	vertical-align: middle;
	position: relative;
	top: -2px;
}

.news_item_desc {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news_item_meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.news_item_date {
	font-size: 13px;
	color: #999999;
}

.news_item_btn {
	display: inline-block;
	height: 30px;
	line-height: 28px;
	padding: 0 16px;
	font-size: 13px;
	color: #00c055;
	border: 1px solid #00c055;
	border-radius: 15px;
	transition: all 0.2s;
	flex-shrink: 0;
}

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

/* 简易分页（静态示意） */
.news_pager {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	padding-top: 8px;
}

.news_pager a,
.news_pager span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	font-size: 14px;
	color: #666666;
	background: #f4f4f5;
	border-radius: 2px;
}

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

.news_pager .is_active {
	background: #00c055;
	color: #ffffff;
}

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

	.news_item_title {
		font-size: 17px;
	}
}

/* 手机 */
@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_item {
		padding: 18px 0;
	}

	.news_item_title {
		font-size: 16px;
		line-height: 1.45;
	}

	.news_item_desc {
		font-size: 13px;
		margin-top: 8px;
		-webkit-line-clamp: 3;
	}

	.news_item_meta {
		margin-top: 12px;
	}

	.news_item_btn {
		height: 28px;
		line-height: 26px;
		padding: 0 14px;
		font-size: 12px;
	}

	.news_pager {
		margin-top: 20px;
		gap: 6px;
	}

	.news_pager a,
	.news_pager span {
		min-width: 30px;
		height: 30px;
		font-size: 13px;
	}
}
