/* 新闻动态 */
.news-container {
	max-width: 1400px;
	margin: 0 auto;
}

.news-container a:hover {
	text-decoration: none;
}

.news-content .news-item {
	position: relative;
	background-color: #F5F5F5;
}

.news-content .news-item .type {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
}

.news-case .title {
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-case .date {
	display: flex;
	align-items: center;
	line-height: 1;
}

.news-case .date::before {
	display: inline-block;
	content: '';
	width: 18px;
	height: 18px;
	background: url('../../images/common/icon-calendar.png') no-repeat center;
	background-size: contain;
	margin-right: 4px;
}

.news-case .content {
	line-height: 2.5;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 440px) {
	.news-case {
		position: initial !important;
		padding: 0 14px 14px !important;
		background-color: transparent !important;
	}

	.news-case .title {
		color: black !important;
	}

	.news-case .date {
		color: #222222 !important;
	}

	.news-case .date::before {
		background-image: url('../../images/common/icon-calendar.png') !important;
	}

	.news-case .content {
		color: #999999 !important;
	}
}

@media screen and (max-width: 1023px) {
	.news-container {
		margin-top: 8vw;
		padding: 0 10px;
	}

	.news-content {
		margin-top: 8vw;
	}

	.news-content .news-item {
		display: block;
		margin-top: 4vw;
		overflow: hidden;
	}

	.news-content .news-item .type {
		padding: 6px 20px;
		font-size: 14px;
	}

	.news-content .news-item .img {
		display: block;
		width: 100%;
	}

	.news-case {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 20px;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.news-case .title {
		font-size: max(16px, 2.5vw);
		color: white;
		margin: 36px 0 0;
	}

	.news-case .date {
		font-size: max(14px, 2vw);
		color: white;
		margin: 24px 0 0;
	}

	.news-case .date::before {
		background-image: url('../../images/common/icon-calendar-white.png');
	}

	.news-case .content {
		font-size: max(14px, 2vw);
		color: white;
		margin: 2vw 0 0;
	}

	.news-list {
		height: 400px;
		margin-top: 4vw;
		padding: 0 2vw;
		overflow-y: auto;
	}

	.news-list .item .title {
		font-size: max(16px, 2.5vw);
		color: black;
		font-weight: bold;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		margin-bottom: 16px;
	}

	.news-list .item .date {
		font-size: max(14px, 2vw);
		color: #222222;
		margin-bottom: 30px;
	}

	.news-container .check-more-link {
		margin: 7vw 0 7vw;
	}
}

@media screen and (min-width: 1024px) {
	.news-container {
		margin-top: 7rem;
		padding: 0 20px;
		box-sizing: content-box;
	}

	.news-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 2rem;
		margin-top: 4rem;
	}

	.news-content .news-item {
		height: 35.5rem;
		overflow: hidden;
		position: relative;
		top: 0;
		transition: all 0.3s;
	}

	.news-content .news-item .type {
		padding: 0.4rem 1.25rem;
		font-size: 0.875rem;
	}

	.news-content .news-item .img {
		display: block;
		width: 100%;
	}

	.news-content a.news-item:hover {
		top: -4px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	}

	.news-case {
		padding: 0 1.5rem;
	}

	.news-case .title {
		font-size: 1.25rem;
		color: black;
		margin: 2.25rem 0 0;
	}

	.news-case .date {
		font-size: 1rem;
		color: #222222;
		line-height: 1;
		margin: 1.5rem 0 0;
	}

	.news-case .content {
		font-size: 1rem;
		color: #999999;
		margin: 1.5rem 0 0;
	}

	.news-list {
		height: calc(100% - 2rem);
		margin-top: 2rem;
		padding: 0 2rem;
		overflow-y: auto;
	}

	.news-list .item .title {
		font-size: 1.25rem;
		color: black;
		font-weight: bold;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		margin-bottom: 1.2rem;
	}

	.news-list .item .title:hover {
		color: #2CB053;
	}

	.news-list .item .date {
		font-size: 1rem;
		color: #222222;
		margin-bottom: 2.5rem;
	}

	.news-container .check-more-link {
		margin: 5.25rem 0 5.5rem;
	}
}