.main {
	min-height: 600px;
	background-color: #f5f5f5;
	padding: 20px 0;
}

.news-wrap {}

.news-wrap .news-list {
	display: flex;
	background-color: #fff;
	padding: 20px 12px;
	/*margin-bottom: 20px;*/
	border-bottom: 1px solid #f5f5f5;
}

.news-wrap .news-list .news-left {
	width: 288px;
	height: 180px;
	flex-shrink: 0;
	margin-right: 20px;
}

.news-wrap .news-list .news-left img {
	width: 100%;
	height: 100%;
}

.news-wrap .news-list .news-right {
	display: flex;
	/*flex-direction: column;*/
	width: 100%;
	justify-content: space-between;
}

.news-wrap .news-list .news-right .news-title {
	font-size: 18px;
	color: #000;
	font-weight: bold;
	width: 850px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-right: 10px;
	display: inline-block;
}

.news-wrap .news-list .news-right .news-title:before{
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #000;
	flex-shrink: 0;
	margin-right: 5px;
	vertical-align: middle;
}

.news-wrap .news-list .news-right .news-desc {
	font-size: 14px;
	color: rgba(85, 85, 85, 1);
	margin-top: 20px;
}

.news-wrap .news-list .news-right .news-time {
	margin-top: auto;
	font-size: 14px;
	color: #999;
}



