.newsList {
	width: 90%;
	margin: 0 auto;
}

.new {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	margin-bottom: 40px;
	border-bottom: 1px solid #eee;
}

.date {
	width: 15%;
	font-size: 1.2vw;
	font-weight: bold;
	color: #999;
	text-align: center;
	margin-right: 20px;
	white-space: nowrap;
}

	.date img{
		width: 30px;
	}
	.news-content {
		flex: 1;
	}

.new-left {
	display: flex;
	align-items: center;
	width: 70%;
}

.arrow {
	background: #19BBC6;
	color: white;
	width: 40px;
	margin: 0 auto;
}

.content-title {
	color: #19BBC6;
	font-size: 1.2vw;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.main-content {
	color: #666;
	font-size: 0.7vw;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news-right{
	flex: 1;
	text-align: right;
	box-sizing: border-box;
	padding-left: 5%;
}
.news-right img {
	width: 100%;
}
