.news-title {
	font-size: 28px;
	padding: 60px 0;
}
.news-container .news-item {
	margin-bottom: 30px;
	background: #fff;
	display: block;
	border-bottom: 3px solid transparent;
}
.news-container .news-item-first {
	display: block;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 60px;
	padding-bottom: 60px;
}
.news-container .news-item-first-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 10px;
}
.news-container .news-item .news-img,
.news-container .news-item-first-content .news-img {
	background-repeat: no-repeat;
	height: 300px;
	background-size: cover;
	background-position: center center;
}
.news-container .news-item-first-content .news-img {
	height: 500px;
	border-radius: 10px;
	width: 55%;
}
.news-container .news-item-first-content .news-content {
	width: 45%;
}
.news-container .news-item-first-content .news-content {
	padding: 40px;
	box-sizing: border-box;
}
.news-container .news-item-first-content .news-content .news-first-title {
	font-size: 24px;
	margin: 30px 0;
}
.news-container .news-item .news-item-title,
.news-container .news-item .news-item-content {
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 1;
}
.news-container .news-item .news-item-content {
	height: 40px;
	margin-bottom: 0;
	-webkit-line-clamp: 2;
} 
.news-container .news-item .news-date {
	border-top: 1px solid #f0f0f0;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.news-container .news-item:hover {
	border-bottom-color: #0092dd;
}

/* 详情 */
.detail-container {
	padding: 80px 0;
}
.detail-container .detail-inner {
	background: #fff;
	padding: 80px 160px;
}
.detail-container .detail-inner .detail-content {
	text-align: center;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 10px;
}
.detail-content .detail-title {
	font-size: 30px;
}
.detail-content .detail-date {
	color: #787878;
	line-height: 44px;
}
.detail-container .detail-inner .detail-con > p {
	margin-top: 20px;
	line-height: 1.8;
}
.detail-container .detail-inner .detail-recommend-content {
	padding-top: 80px;
}
.detail-recommend-content .detail-recommend-title {
	font-size: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 38px;
}
.detail-recommend-content .detail-recommend-item {
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	display: inline-block;
	margin-bottom: 30px;
	width: 100%;
}
.detail-recommend-content .detail-recommend-item .detail-recommend-item-img {
	height: 250px;
	background-size: cover;
	background-position: center center;
	border-radius: 8px 8px 0 0;
}
.detail-recommend-content .detail-recommend-item .detail-recommend-item-info {
	padding: 20px;
	border-bottom: 3px solid transparent;
}
.detail-recommend-content .detail-recommend-item .detail-recommend-item-date {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}
.detail-recommend-content .detail-recommend-item:hover .detail-recommend-item-info {
	border-bottom-color: #0092dd;
}

@media (max-width: 1200px) {
	.detail-container {
		padding: 50px 0;
	}
	.detail-container .detail-inner {
		padding: 50px;
	}
}

@media (max-width: 992px) {
	.news-container .news-item-first-content .news-img,
	.news-container .news-item-first-content .news-content {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.news-container .news-item-first  {
		display: none;
	}
	.news-title {
		font-size: 24px;
		padding: 30px 0;
		margin-bottom: 30px;
		border-bottom: 1px solid #d9dadc;
	}
	.news-container .news-item {
		border-radius: 10px;
	}
	.news-container .news-item .news-img {
		height: 200px;
		border-radius: 10px 10px 0 0;
	}
	.news-container .news-item .news-item-title {
		height: auto;
		-webkit-line-clamp: 1;
	}
	.news-container .news-item .news-item-content {
		color: #999;
	}
	.news-container .news-item .news-date {
		border-top: 0;
	}
	.news-container .news-item .news-date > span {
		color: #333;
	}
	.detail-container {
		padding: 0;
	}
	.detail-container .detail-inner {
		background: none;
		padding: 0;
	}
	.detail-content .detail-title,
	.detail-recommend-content .detail-recommend-title {
		font-size: 24px;
	}
	.detail-content .detail-date {
		line-height: 34px;
	}
	.detail-container .detail-inner .detail-recommend-content {
		padding-top: 20px;
	}
	.detail-recommend-content .detail-recommend-title {
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
	.detail-recommend-content .detail-recommend-item {
		background: #fff;
		margin-bottom: 20px;
	}
	.detail-recommend-content .detail-recommend-item .detail-recommend-item-img {
		height: 180px;
	}
}