.news_wrap{
	display: flex;
	margin-top: 36px;
	margin-bottom: 30px;
}
.news_menus{
	width: 260px;
	border: 1px solid #E5E5E5;
	min-height: 400px;
}
.news_menu{
	display: flex;
	align-items: center;
	height: 52px;
	border-bottom: 1px solid #E5E5E5;
	padding-left: 39px;
	cursor: pointer;
}
.news_menu .nicon{
	display: block;
	width: 6px;
	height: 11px;
	opacity: 0;
	margin-right: 14px;
}

.news_menu.active .nicon{
	opacity: 1;
}
.news_menu span{
	font-size: 14px;
}
.news_menu.active span{
	color: #3793D9;
}

.new_contents{
	border: 1px solid #E5E5E5;
	border-left: 0px;
	flex: 1;
	min-width: 0;
	width: 0px;
}
.new_content{
	padding: 0px 28px;
	box-sizing: border-box;
}
.news_list{
	
}
.news_item{
	padding: 15px 0px;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	align-items: center;
}
.news_itemImg{
	width: 194px;
	height: 132px;
	border-radius: 4px;
	margin-right: 30px;
}
.news_itemContent{
	flex: 1;
	width: 0px;
	min-width: 0;
}
.news_title{
	font-size: 20px;
	color: #444444;
	height: 100px;
	line-height: 28px;
}
.new_times{
	
}
.new_times span{
	font-size: 14px;
	color: #999999;
}
.new_times span:first-child{
	margin-right: 30px;
}



/* 手机端样式 */
.mobile {
	
}
.mobile .news_wrap {
    display: flex;
    margin-top: 36px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.mobile .news_menus {
    width: 100%;
    border: 1px solid #E5E5E5;
    min-height: auto;
    display: flex;
    margin-bottom: 20px;
}
.mobile .news_menu {
    display: flex;
    align-items: center;
    height: 52px;
    border-bottom: 0px solid #E5E5E5;
    padding-left: 0px;
    cursor: pointer;
    width: 33.33%;
    justify-content: center;
}
.mobile .news_menu .nicon {
    margin-right: 6px;
}
.mobile .new_content {
    padding: 0px 5px;
    box-sizing: border-box;
}
.mobile .news_item {
    padding: 15px 0px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
}
.mobile .news_itemImg {
    width: 100px;
    height: 80px;
    border-radius: 4px;
    margin-right: 30px;
}
.mobile .news_title {
    font-size: 14px;
    color: #444444;
    height: 60px;
    line-height: 28px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}