/* 新闻中心 */
.news_center_box {
	padding: 60px 0;
}

.news_center_box .ct_header_box .title .txt {
	color: #ff0f0f;
	font-size: 36px;
	background-color: #FFFFFF;
	position: relative;
}

.news_center_box .ct_header_box .title .txt::after {
	content: "";
	display: block;
	width: 130px;
	height: 130px;
	border: #cccccc 5px solid;
	border-radius: 50%;
	position: absolute;
	top: -50px;
	left: 0px;
	z-index: -1;
}

.news_center_box .ct_content_box {
	border-top: 1px #131313 solid;
	border-bottom: 1px #131313 solid;
	padding-top: 35px;
}

.news_center_box .ct_content_box .list_item {
	width: 100%;
	height: 145px;
	margin-bottom: 50px;
	padding: 12px 8px;
	box-sizing: border-box;
	display: flex;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_center_box .ct_content_box .list_item .img_box {
	width: 160px;
	height: 120px;
	border-radius: 5px;
	overflow: hidden;
}

.news_center_box .ct_content_box .list_item .img_box img {
	width: 100%;
	height: 100%;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_center_box .ct_content_box .list_item .img_box:hover img {
	transform: scale(1.05);
}

.news_center_box .ct_content_box .list_item .txt_box {
	width: calc(100% - 160px);
	height: 100%;
	padding: 13px 10px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.news_center_box .ct_content_box .list_item .txt_box .title_box .title {
	color: #000000;
	font-size: 18px;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_center_box .ct_content_box .list_item .txt_box .title_box .more {
	color: #282828;
	font-size: 14px;
	float: right;
	font-weight: bold;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_center_box .ct_content_box .list_item .txt_box .time_box .time,
.news_center_box .ct_content_box .list_item .txt_box .txt {
	color: #999999;
	font-size: 12px;
	transition: -moz-all .6s;
	transition: all .6s;
}

/* hover */
.news_center_box .ct_content_box .list_item:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
	background-color: #ff3f3f
}
.news_center_box .ct_content_box .list_item:hover .txt_box .title_box .title,
.news_center_box .ct_content_box .list_item:hover .txt_box .title_box .more,
.news_center_box .ct_content_box .list_item:hover .txt_box .time_box .time,
.news_center_box .ct_content_box .list_item:hover .txt_box .txt{
	color: #FFFFFF;
}


.news_center_box>.index_box {
	height: 20px;
	border: #007AFF 1px solid;
	margin-top: 70px;
	margin-bottom: 40px;
}

