.hero {
	height: 100vh;
	min-height: 600px;
	/* 防止小屏幕高度过低 */
	/* background: url('/img/life/background.jpg') center/cover; */
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	margin-top: 100px;
	/* 移除固定边距，改用内边距 */
	padding: 0 5%;
	position: relative;
	z-index: 1;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(89, 87, 86, 0.3);
	z-index: -1;
}

.hero-content h1 {
	font-size: 62px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 1);
}

.hero-content h2 {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 1);
}

.news-section {
	padding: 50px 140px;
	text-align: center;
}


.section-title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(0, 55, 130, 1);
	margin-bottom: 30px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.news-item {
	background: #fff;
	overflow: hidden;
	transition: transform 0.3s;
	cursor: pointer;
}

.news-img {
	max-width: 400px;
	height: 300px;
	object-fit: cover;
}

.news-title {
	font-size: 24px;
	font-weight: 400;
	color: #003782;
	line-height: 1.5;
	max-width: 400px;
	text-align: center;
	margin: 0 auto;
}

.news-desc {
	font-size: 16px;
	color: rgba(0, 55, 130, 1);
	padding: 0 20px 20px;
}

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

	.news-section {
		padding: 40px;
	}

	.news-img {
		max-height: 200px;
	}
	
	.section-title{
		font-size: 26px;
		margin-bottom: 20px;
	}
}