/* 资讯页顶部大图 */
.news-banner {
	width: 100%;
	min-width: 1400px;
	height: 400px;
	overflow: hidden;
}

.news-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 资讯列表区域 */
.news-main {
	padding: 20px 0 50px;
	min-width: 1400px;
}

.news-main .container {
	padding: 0;
}

/* 列表：3 列网格 */
.news-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* 列表项卡片：图片在上 + 文字在下 */
.news-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: all 0.35s ease;
	opacity: 0;
	transform: translateY(30px);
	text-decoration: none;
}

.news-item.visible {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s ease-out;
}

.news-item:hover {
	box-shadow: 0 8px 24px rgba(8, 119, 168, 0.14);
	transform: translateY(-4px);
}

/* 图片区 */
.news-img {
	width: 100%;
	height: 240px;
	overflow: hidden;
	flex-shrink: 0;
}

.news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-item:hover .news-img img {
	transform: scale(1.08);
}

/* 内容区 */
.news-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	flex: 1;
}

.news-title {
    width: 100%;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 51px;
	transition: color 0.25s ease;
}

.news-item:hover .news-title {
	color: #0877A8;
}

/* 查看更多按钮 */
.more-btn {
	display: inline-block;
	padding: 7px 22px;
	border: 1px solid #0877A8;
	border-radius: 20px;
	font-size: 13px;
	color: var(--pria);
	background: #F7FCFD;
	transition: all 0.25s ease;
	cursor: pointer;
	white-space: nowrap;
}

.more-btn:hover {
	background: #0877A8;
	color: #fff;
}
