/* ============================================
   新闻页面 (news) 特有样式
   ============================================ */

.main-news {
	background: #FFFFFF;
	padding: 50px;
}

.main-news-detail {
	background: #FFFFFF;
	padding: 50px;
}

.news-back {
	margin-bottom: 30px;
}

.news-header {
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 2px solid #F0F0F0;
}

.news-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 1.5;
	letter-spacing: -0.3px;
}

.news-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.news-content-section {
	margin-bottom: 40px;
}

.news-content {
	margin-top: 30px;
}

.news-list-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #F0F0F0;
}

.news-list-section {
	margin-bottom: 40px;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
	border-bottom: 1px solid #F0F0F0;
	transition: all 0.3s ease;
}

.news-item:hover {
	background: #F8F9FA;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: -15px;
	margin-right: -15px;
	border-radius: 0;
}

.news-item:last-child {
	border-bottom: none;
}

.news-item-content {
	flex: 1;
	min-width: 0;
}

.news-item-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 12px 0;
	line-height: 1.5;
	letter-spacing: 0.1px;
}

.news-item-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-item-title a:hover {
	color: #667eea;
}

.news-item-meta {
	display: flex;
	align-items: center;
	gap: 15px;
}

.news-date {
	font-size: 14px;
	color: #999;
	display: flex;
	align-items: center;
	gap: 6px;
}

.date-icon {
	font-size: 14px;
}

.news-item-arrow {
	flex-shrink: 0;
	margin-left: 20px;
	opacity: 0;
	transition: all 0.3s ease;
}

.news-item:hover .news-item-arrow {
	opacity: 1;
	margin-left: 15px;
}

.arrow-icon {
	font-size: 20px;
	color: #667eea;
	font-weight: 600;
}

.news-pages {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #F0F0F0;
}

.news-empty {
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 16px;
}

/* 响应式设计 - 新闻页面 */
@media (max-width: 968px) {
	.main-news,
	.main-news-detail {
		padding: 30px 20px;
	}
	
	.news-title {
		font-size: 24px;
	}
	
	.news-item {
		padding: 20px 0;
	}
	
	.news-item-title {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.news-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.news-item-arrow {
		opacity: 1;
		margin-left: 0;
	}
	
	.news-item:hover {
		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
	}
}

