.news-h {
	text-align: center;
	font-size: 32px;
	margin-bottom: 15px;
	color: #069843;
}

.news-time {
	text-align: center;
	color: #333;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid #E8EDF3;
}

.content {
	padding-bottom: 30px;
	border-bottom: 2px solid #E8EDF3;
}

.content img {
	max-width: 100%;
}

.recent-h {
	margin: auto;
	margin-top: 50px;
	margin-bottom: 40px;
	width: max-content;
	font-size: 32px;
	font-weight: bold;
	position: relative;
}

.recent-h::after {
	content: '';
	position: absolute;
	width: 100px;
	height: 4px;
	background-color: #069843;
	border-radius: 10px;
	bottom: -10px;
	left: 0;
	right: 0;
	margin: auto;
}

.news-list {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.news-list .news-li {
	box-sizing: border-box;
	border: 1px solid #E4EDE7;
	border-radius: 10px;
	padding: 10px;
	flex: 0 0 387px;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	transform: scale(1) translateX(0);
	z-index: 1;
	transition: transform 0.4s ease, z-index 0.4s ease;
}

.news-list .news-li:nth-child(1) {
	transform-origin: left center;
}

.news-list .news-li:nth-child(2) {
	transform-origin: center center;
}

.news-list .news-li:nth-child(3) {
	transform-origin: right center;
}

.news-list .news-li img {
	width: 130px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
}

.news-list .news-li .info {
	width: calc(100% - 140px);
}

.news-list .news-li .info .time {
	font-size: 14px;
	color: #6C7470;
}

.news-list .news-li .info .title {
	font-size: 14px;
	margin: 6px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-list .news-li .info .more {
	color: #069843;
	font-size: 16px;
	display: block;
}

.news-list .news-li .info .more:hover span {
	text-decoration: underline;
}

.news-list .news-li .info .more i {
	font-size: 16px;
}

.news-list .news-li .info .more:hover i {
	animation: moreRight 1s linear infinite;
}

@keyframes moreRight {
	0% {
		margin-left: 0;
	}

	80% {
		margin-left: 8px;
	}

	100% {
		margin-left: 0;
	}
}

/* 左侧卡片 */
.news-list:has(.news-li:nth-child(1):hover) .news-li:nth-child(1) {
	transform: scale(1.15) translateX(0);
	z-index: 10;
}

.news-list:has(.news-li:nth-child(1):hover) .news-li:nth-child(2) {
	transform: scale(0.9) translateX(55px);
	z-index: 1;
}

.news-list:has(.news-li:nth-child(1):hover) .news-li:nth-child(3) {
	transform: scale(0.9) translateX(0);
	z-index: 1;
}

/* 中间卡片 */
.news-list:has(.news-li:nth-child(2):hover) .news-li:nth-child(2) {
	transform: scale(1.15) translateX(0);
	z-index: 10;
}

.news-list:has(.news-li:nth-child(2):hover) .news-li:nth-child(1) {
	transform: scale(0.9) translateX(0);
	z-index: 1;
}

.news-list:has(.news-li:nth-child(2):hover) .news-li:nth-child(3) {
	transform: scale(0.9) translateX(0);
	z-index: 1;
}

/* 右侧卡片 */
.news-list:has(.news-li:nth-child(3):hover) .news-li:nth-child(3) {
	transform: scale(1.15) translateX(0);
	z-index: 10;
}

.news-list:has(.news-li:nth-child(3):hover) .news-li:nth-child(1) {
	transform: scale(0.9) translateX(0);
	z-index: 1;
}

.news-list:has(.news-li:nth-child(3):hover) .news-li:nth-child(2) {
	transform: scale(0.9) translateX(-55px);
	z-index: 1;
}

@media screen and (max-width:980px) {
	.container {
		padding: 0 10px;
		box-sizing: border-box;
	}

	.news-list {
		flex-direction: column;
	}

	.news-list .news-li {
		flex: 1;
		width: 100%;
	}
}