/* 资讯列表页独用样式 */
.breadcrumb_section {
	background: white;
}


/* 资讯列表 */
.news_section {
	background: white;
}

.news_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.news_card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.news_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
}

.news_image {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.news_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news_card:hover .news_image img {
	transform: scale(1.05);
}

.news_body {
	padding: 20px;
}

.news_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.news_date {
	font-size: 13px;
	color: var(--muted);
}

.news_views {
	font-size: 13px;
	color: var(--muted);
}

.news_title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary);
	margin: 8px 0;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.news_card:hover .news_title {
	color: var(--accent);
}

.news_excerpt {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 响应式 */
@media (max-width: 1024px) {
	.news_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.news_grid {
		grid-template-columns: 1fr;
	}
}
