.news {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.news-item {
	border-right: 2px solid #E8EDF3;
	width: calc(100% - 360px);
	padding-right: 20px;
}

.news-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.news-list .news-li {
	box-sizing: border-box;
	border: 1px solid #E4EDE7;
	border-radius: 10px;
	padding: 10px;
	flex: 0 0 410px;
	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;
	background-color: #ffffff;
}

.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 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;
	}
}

@media screen and (min-width:980px) {

	/* 左侧卡片 */
	.news-list:has(.news-li:nth-child(1):hover) .news-li:nth-child(1) {
		transform: scale(1.1) translateX(0);
		z-index: 10;
	}

	.news-list:has(.news-li:nth-child(1):hover) .news-li:nth-child(2) {
		transform: scale(0.9) translateX(22.5px);
		z-index: 1;
	}

	/* 右侧卡片 */
	.news-list:has(.news-li:nth-child(2):hover) .news-li:nth-child(2) {
		transform: scale(1.1) translateX(-19px);
		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;
	}
}

.page {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.page .li {
	background-color: #000;
	margin: 0 5px;
	padding: 5px 10px;
	height: 30px;
	line-height: 30px;
	min-width: 30px;
	text-align: center;
	font-size: 15px;
	color: #ffffff;
	border-radius: 4px;
	cursor: pointer;
}

.page .li.active {
	background-color: #069843;
}

.page .li:hover {
	background-color: #069843;
}

.page .page-item.disabled:hover:first-child,
.page .page-item.disabled:hover:last-child{
    background-color: #E8EDF3;
    cursor: no-drop;
}

.page .page-item.disabled:hover:first-child a,
.page .page-item.disabled:hover:last-child a{
    color: #000000;
}

.page .active span {
    color: #ffffff;
}

.page .page-item:hover {
    background-color: #069843;
}

.page .page-item:hover a{
    color: #ffffff;
}


.news .tags-list .h {
	margin-bottom: 30px;
	font-size: 32px;
	font-weight: bold;
	position: relative;
}

.news .tags-list .h:before {
	content: '';
	width: 50px;
	height: 4px;
	background-color: #069843;
	position: absolute;
	bottom: -5px;
	border-radius: 10px;
}

.news .tags-list {
	width: 320px;
}

.news .tags {
	display: flex;
	flex-wrap: wrap;
}

.news .tags .li {
	background-color: #069843;
	color: #ffffff;
	padding: 10px;
	font-size: 16px;
	margin: 0 10px 10px 0;
	border-radius: 4px;
	cursor: pointer;
}

.news .tags .li:hover {
	background-color: #069843;
}

@media screen and (max-width:980px) {
	.container {
		padding: 0 10px;
		box-sizing: border-box;
	}

	.news .tags .li {
		font-size: 14px;
	}

	.news .tags-list {
		width: 100%;
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 2px solid #E8EDF3;
	}

	.news {
		flex-direction: column-reverse;
	}

	.news-item {
		width: 100%;
		border-right: 0;
		padding-right: 0;
	}

	.news-list {
		flex-direction: column;
	}

	.news-list .news-li {
		flex: 1;
		width: 100%;
	}
}