.news-div {
	padding: 30px 0;
	box-sizing: border-box;
	background-color: #F8F8F8;

}

.news-box {
	display: flex;
	justify-content: space-between;
}

.news-div-right {
	width: 71.5%;
	display: flex;
	flex-direction: column;
}

.news-div-right-item {
	margin-bottom: 40px;

}

.news-div-right-item>a {
	display: inline-block;
	background-color: #fff;
	padding: 30px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.news-div-right-item-left {
	width: 30%;
	height: 200px;
	overflow: hidden;
	margin-right: 40px;
	display: flex;
	align-items: center;
    flex-shrink:0;
}

.news-div-right-item-left>img {
	width: 100%;
	height: auto;
}

.news-div-right-item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-grow: 1;
}

.news-div-right-item-right-first {
	font-size: 22px;
	color: #333333;
	font-weight: bolder;
}

.news-div-right-item-right-second {
	margin-top: 14px;
	color: #666666;
	font-size: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.news-div-right-item-right-third {
	margin-top: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.news-div-right-item-right-third-item {
	padding: 0 10px;
	box-sizing: border-box;
	font-size: 14px;
	color: #9E9E9E;
}

.news-div-right-item-right-fourth {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news-div-right-item-right-fourth-left {
	font-size: 14px;
	color: #9E9E9E;
}

.news-div-right-item-right-fourth-right {
	font-size: 14px;
	color: #EB3338;
}

@media screen and (max-width:750px) {
	.news-box {
		flex-direction: column-reverse;
	}

	.news-div-right {
		width: 100%;
	}

	.news-div-right-item>a {
		padding: 20px;
		flex-direction: column;
	}

	.news-div-right-item-left {
		width: 100%;
		margin-right: 0;
	}

	.news-div-right-item-right-first {
		margin-top: 10px;
		font-size: 18px;
	}

	.news-div-right-item-right-second {}

	.news-div-right-item-right-fourth {
		margin-top: 20px;
	}
}