/*.news_menu .nav_child {*/
/*	top: 65px !important;*/
/*}*/
.news_bg {
	background-color: #f1f1f3;
}
.new_navbar {
	position: relative;
	display: flex;
	height: 80px;
	color: #333;
	box-shadow: #8d8d8e 0 5px 5px -5px;
	margin-top: 0;
	background-color: var(--color-fff);
}
.new_navbar .navbar_box > .navbar_nav li.nav_item > a {
	color: #333;
	font-size: 1rem;
}
.news_box {
	display: flex;
	margin-top: 16px;
	margin-bottom: 60px;
}
.news_box > .left {
	width: 888px;
	background-color: var(--color-fff);
	margin-right: 16px;
	display: flex;
	flex-direction: column;
}
.news_box > .right {
	width: 332px;
	/* min-height: 500px;
	background-color: var(--color-fff); */
}
#top {
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0 20px;
	border-bottom: 1px solid #e0e0e0;
}

#top li {
	width: 72px;
	height: 50px;
	float: left;
	font-size: 1.0625rem;
	color: var(--color-999);
	position: relative;
	margin-right: 40px;
	cursor: pointer;
}
#top li::after {
	content: '|';
	display: inline-block;
	position: absolute;
	right: -20px;
}
#top li:last-child:after {
	content: '';
}
#top li a{
	display: inline-block;
	height: 100%;
	color: var(--color-999);
}
#top li.current > a {
	color: var(--color-333);
}
#top li.current {
	border-bottom: 3px solid var(--main-color);
}

#bottom {
	width: 100%;
	position: relative;
}

#bottom li {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	display: none;
}

#bottom li.current {
	display: block;
}
.news_item {
	display: flex;
	position: relative;
	width: 100%;
	background: var(--color-fff);
	height: 195px;
	left: 0;
	padding: 30px 20px;
	/*border-bottom: 1px solid #e0e0e0;*/
	cursor: pointer;
}
.news_item:after {
	content: '';
	position: absolute;
	width: 825px;
	height: 1px;
	background-color: #eee;
	position: absolute;
	bottom: 0;
	left: 15px;
	z-index: 10;
}
.news_item:hover,
.tab section.active {
	background: #f9f9fb;
}
.news_item:hover .news_info > .title {
	color: var(--main-color);
}
.news_item > .img_wapper {
	width: 220px;
	height: 140px;
	overflow: hidden;
}
.news_item > .img_wapper > img {
	width: 100%;
	height: 100%;
	transition: all .4s;
}
.news_item:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.news_item > .news_info {
	margin-left: 18px;
}
.news_item > .news_info > .title {
	font-size: 1.0625rem;
	color: var(--color-333);
}
.news_item > .news_info > .new_date,
.detail-title > .new_date {
	display: flex;
	font-size: .875rem;
	color: var(--color-999);
	margin-top: 7px;
}
.news_info > .new_date > div,
.detail-title > .new_date > div {
	display: flex;
	align-items: center;
}
.news_info > .new_date > div img,
.detail-title > .new_date > div img {
	width: 20px;
	height: 20px;
}
.news_info > .new_date > div:first-child,
.detail-title > .new_date > div:first-child {
	margin-right: 20px;
}
.news_info > .new_content {
	font-size: .9375rem;
	color: var(--color-666);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	word-break: break-all;
	margin-top: 30px;
	width: 580px;
}

.hot_news,
.recommended_infor,
.solution {
	background-color: var(--color-fff);
}
.right_title {
	padding-left: 16px;
	font-size: 1.0625rem;
	color: var(--color-333);
	height: 50px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
}
.right_title > img {
	width: 30px;
	height: 30px;
	margin-right: 8px;
}
.hot_news_box {
	padding: 10px 0;
}
.hot_news_box > li {
	padding: 0 16px;
	width: 100%;
	height: 35px;
	line-height: 35px;
	font-size: .9375rem;
	color: #ccc;
	display: flex;
	justify-content: space-between;
}
.hot_news_box > li a {
	font-size: .9375rem;
	color: var(--color-666);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hot_news_box > li a i {
	background: #c2c2c2;
	font-style: normal;
	border-radius: 3px;
	display: inline-block;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	color: #fff;
	margin-right: 10px;
}
.hot_news_box > li:nth-child(-n + 3) a i {
	background: #fea100;
}
.hot_news_box > li a:hover {
	color: var(--main-color);
}
.hot_news_box > li a:hover i {
	background: var(--main-color);
}

.recommended_infor,
.solution {
	margin-top: 15px;
}
div.recommended_item:last-child {
	padding-bottom: 20px;
}
.recommended_item {
	display: flex;
	font-size: .9375rem;
	cursor: pointer;
	padding: 20px 16px 0;
	overflow: hidden;
}
.recommended_item:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.recommended_item >a> img {
	display: inline-block;
	width: 130px;
	height: 83px;
	margin-right: 10px;
	transition: all .4s;
}
.recommended_item  > a {
	display: flex;
	color: var(--color-666);
}
.recommended_item:hover a {
	color: var(--main-color);
}
.news_solution_list {
	font-size: .9375rem;
	padding: 24px 32px;
}
.news_solution_list > li {
	position: relative;
	padding-top: 13px;
}
.news_solution_list > li:first-child {
	padding-top: 0;
}
.news_solution_list > li > a {
	color: var(--color-666) !important;
}
.news_solution_list > li > a:hover{
	color: var(--main-color) !important;
}

.news_solution_list > li::after {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--main-color);
	position: absolute;
	left: -16px;
	margin-top: 8px;
}
