/* PC端 */
.news_box {
	margin: 1vw 0;
}

.news_box_ul {
	width: 80vw;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-evenly;
}

.news_box_ul_li {
	width: 38vw;
	height: 11vw;
	position: relative;
	margin: 1vw;
	transition: 0.6s;
	background: #f6f8fa
}

.news_box_ul_li_a {
	display: flex;
	justify-content: space-between;
}

.news_box_ul_li_a_left {
	width: 49%;
	height: 11vw;
	overflow: hidden;
}

.news_box_ul_li_a_left_inner {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.5s;
}

.news_box_ul_li:hover {
	box-shadow: 0.2vw 0.5vw 1vw rgba(147, 147, 147, 0.41);
}

.news_box_ul_li:hover .news_box_ul_li_a_left_inner {
	transform: scale(1.1);
}

.news_box_ul_li_a_right {
	width: 49%;
	padding: 0.5vw;
}

.news_box_ul_li_a_right p:nth-of-type(1) {
	font-size: 1.1vw;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news_box_ul_li_a_right p:nth-of-type(2) {
	margin-top: 0.5vw;
	font-size: 0.8vw;
	line-height: 1.3vw;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news_box_ul_li_a_right div {
	position: absolute;
	width: 50%;
	bottom: 1vw;
	right: -2vw;
}

.news_box_ul_li_a_right div span {
	margin-right: 0.5vw;
}

.news_box_ul_li_a_right div span:nth-of-type(1) {
	padding: 0.3vw;
	font-size: 0.8vw;
	color: #fff;
	background: #2C9DFC;
}

.news_box_ul_li_a_right div span:nth-of-type(2) {
	font-size: 0.8vw;
}


/* 移动端 */
.mobile_news_box {
	margin: 2vw 0;
}

.mobile_news_box_ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.mobile_news_box_ul_li {
	width: 95vw;
	height: 36vw;
	position: relative;
	margin: 2vw 0;
	background: #f6f8fa
}

.mobile_news_box_ul_li_a {
	display: flex;
	justify-content: space-between;
}

.mobile_news_box_ul_li_a_left {
	width: 49%;
	height: 36vw;
}

.mobile_news_box_ul_li_a_left_inner {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.mobile_news_box_ul_li_a_right {
	width: 49%;
	padding: 1vw;
}

.mobile_news_box_ul_li_a_right p:nth-of-type(1) {
	font-size: 4vw;
	color: #333;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mobile_news_box_ul_li_a_right p:nth-of-type(2) {
	margin-top: 1vw;
	font-size: 3vw;
	line-height: 4vw;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.mobile_news_box_ul_li_a_right div {
	position: absolute;
	width: 50%;
	bottom: 1vw;
	right: -2vw;
}

.mobile_news_box_ul_li_a_right div span {
	margin-right: 1vw;
}

.mobile_news_box_ul_li_a_right div span:nth-of-type(1) {
	padding: 0.5vw;
	font-size: 3.2vw;
	color: #fff;
	background: #2C9DFC;
}

.mobile_news_box_ul_li_a_right div span:nth-of-type(2) {
	font-size: 3.2vw;
}