.news_wrap {
	width: 80%;
	max-width: 1170px;
	margin: 60px auto 80px;
	padding: 0 20px;
}

.news_breadcrumb {
	margin-bottom: 20px;
}

.news_breadcrumb_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: rgba(153, 153, 153, 1);
}

.news_breadcrumb_list a {
	color: #32b6b8;
	text-decoration: none;
}

.news_breadcrumb_list a:hover {
	text-decoration: underline;
}

.news_breadcrumb_sep {
	margin: 0 8px;
	color: rgba(200, 200, 200, 1);
}

.news_page_intro {
	background: rgba(50, 182, 184, 0.08);
	border-left: 4px solid #32b6b8;
	padding: 14px 18px;
	margin-bottom: 32px;
	color: rgba(80, 80, 80, 1);
	font-size: 15px;
	line-height: 1.8;
}

.news_page_intro a {
	color: #32b6b8;
}

.community_daily_lead {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.85;
	color: #505050;
}

.community_daily_lead a {
	color: #32b6b8;
	text-decoration: none;
}

.community_daily_lead a:hover {
	text-decoration: underline;
}

.community_daily_empty {
	margin: 8px 0 0;
	padding: 16px 18px;
	font-size: 14px;
	line-height: 1.7;
	color: #888;
	background: #f7fafa;
	border: 1px dashed #d0e8e8;
	border-radius: 4px;
}

.community_daily_empty code {
	font-size: 13px;
	padding: 2px 6px;
	background: #fff;
	border-radius: 3px;
	color: #555;
}

.community_tag_daily {
	display: inline-block;
	margin-right: 8px;
	padding: 1px 8px;
	font-size: 12px;
	font-weight: normal;
	color: #e07b2d;
	background: rgba(224, 123, 45, 0.12);
	border-radius: 3px;
	vertical-align: middle;
}

/* 乐其社区：左侧分类 + 右侧列表 */
.community_layout {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	margin-top: 8px;
}

.community_sidebar {
	flex: 0 0 200px;
	position: sticky;
	top: 24px;
	background: #f8fafa;
	border: 1px solid #e8eeee;
	border-radius: 4px;
	padding: 16px 0;
}

.community_select_label {
	display: none;
}

.community_select {
	display: none;
	width: 100%;
	margin-bottom: 12px;
	padding: 10px 12px;
	font-size: 15px;
	border: 1px solid #32b6b8;
	border-radius: 4px;
	color: #333;
	background: #fff;
}

.community_menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.community_menu li {
	padding: 12px 20px;
	font-size: 15px;
	color: #333;
	cursor: pointer;
	border-left: 3px solid transparent;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.community_menu li:hover {
	color: #32b6b8;
	background: rgba(50, 182, 184, 0.06);
}

.community_menu li.current {
	color: #32b6b8;
	font-weight: bold;
	border-left-color: #32b6b8;
	background: rgba(50, 182, 184, 0.1);
}

.community_sidebar_tip {
	margin: 12px 16px 0;
	padding-top: 12px;
	border-top: 1px solid #e8eeee;
	font-size: 12px;
	line-height: 1.6;
	color: #888;
}

.community_sidebar_tip a {
	color: #32b6b8;
	text-decoration: none;
}

.community_sidebar_tip a:hover {
	text-decoration: underline;
}

.community_main {
	flex: 1;
	min-width: 0;
	background: #fff;
	border: 1px solid #e8eeee;
	border-radius: 4px;
	padding: 24px 28px 8px;
	box-shadow: 0 2px 12px rgba(173, 227, 252, 0.35);
}

.community_panel {
	display: none;
}

.community_panel.active {
	display: block;
}

.community_panel_title {
	margin: 0 0 20px;
	padding-left: 14px;
	border-left: 4px solid #32b6b8;
	font-size: 22px;
	font-family: MicrosoftYaHei, "Microsoft YaHei", sans-serif;
	color: #333;
	text-align: left;
}

.news_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid rgba(230, 230, 230, 1);
}

.news_item a {
	flex: 1;
	color: rgba(51, 51, 51, 1);
	font-size: 16px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news_item a:hover {
	color: #32b6b8;
}

.news_date {
	flex-shrink: 0;
	margin-left: 24px;
	color: rgba(153, 153, 153, 1);
	font-size: 14px;
}

.news_empty {
	text-align: center;
	color: rgba(153, 153, 153, 1);
	font-size: 16px;
	padding: 40px 0;
}

@media (max-width: 900px) {
	.community_layout {
		flex-direction: column;
		gap: 16px;
	}

	.community_sidebar {
		flex: none;
		width: 100%;
		position: static;
		padding: 12px;
	}

	.community_select_label {
		display: block;
		font-size: 14px;
		color: #666;
		margin-bottom: 6px;
	}

	.community_select {
		display: block;
	}

	.community_menu {
		display: none;
	}

	.community_sidebar_tip {
		margin-top: 10px;
		padding-top: 10px;
	}

	.community_main {
		padding: 20px 16px 4px;
	}

	.news_item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.news_item a {
		white-space: normal;
		line-height: 1.5;
	}

	.news_date {
		margin-left: 0;
	}
}
