.news {
	background-color: #18181d;
	padding-bottom: 60px;
	color: #ffffff;
}

.news-i {
	opacity: 0;
	animation: slide-up 1s forwards;
}

.news-item {
	width: 1200px;
	margin: auto;
	border-bottom: 1px solid #333333;
	padding-bottom: 40px;
	padding-top: 40px;
}

.news-title {
	font-size: 16px;
}

.news-title a {
	color: #c3af80;
	font-size: 16px;
}

.news-title a:hover {
	color: #ffffff;
}

.new-content {
	font-size: 14px;
	color: #888888;
	margin-top: 15px;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.new-date {
	font-size: 12px;
	color: #666666;
	margin-top: 15px;
}

.news-more {
	width: 1200px;
	height: 34px;
	line-height: 34px;
	color: #666666;
	text-align: center;
	font-size: 14px;
	transition: all 0.3s ease;
	margin: 60px auto 0 auto;
}

.news-more a{
	color: #666666;
}

.news-more:hover {
	background-color: #ffffff;
}

@media only screen and (max-width: 600px) {
	.banner-img {
		height: 100px;
		object-fit: cover;
	}

	.news-item {
		width: 100%;
		margin: auto;
		border-bottom: 1px solid #333333;
		padding: 40px 10px;
		box-sizing: border-box;
	}

	.news-more {
		width: auto;
		margin: 60px 10px 0 10px;
	}
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
	.banner-img {
		height: 190px;
		object-fit: cover;
	}

	.news-item {
		width: 100%;
		margin: auto;
		border-bottom: 1px solid #333333;
		padding: 40px 10px;
		box-sizing: border-box;
	}

	.news-more {
		width: auto;
		margin: 60px 10px 0 10px;
	}
}