
.main_div{
    /*padding: 0 30px;*/
    box-sizing: border-box;
    background-color:#fff;
}
.news_title_div{
    width:100%;
    height:70px;
    /*border-bottom: solid 1px #d2d2d2;*/
}
.news_title_div a{
    /*color:#666;*/
}
/* 新闻列表 */
.news_list_ul li{
    width:100%;
    height:240px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #d2d2d2;
}
.news_list_ul:hover li{
    cursor: pointer;
}

.news_list_ul>li>:hover a{
    color: #0166b7;
}
.news_list_ul>li>:hover div{
    color: #0166b7;
}


.news_list_img_div{
    width:220px;
    height:160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.news_list_img_div img{
    max-width:220px;
    max-height:160px;
}
.news_list_details_div{
    width:890px;
    height:160px;
}
.news_list_title {
    width:100%;
    /*height:55px;line-height: 55px;*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news_list_content{
    font-size: 16px;
    line-height: 24px;
	letter-spacing: 2px;
    color: #999999;
    /*height:65px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
    height: 46px;
}
.tab_line {
    position: relative;
    top: 34px;
    transform: translate(0,-50%);
    width: 2px;
    height: 38px;
    border-right: solid 1px #b5b5b5;
    margin:0 128px;
}
.tab_active {
    color: #0166b7;
    /*border-bottom: 2px solid #0166b7;*/
}

.newsactive {
    position: relative;
}

.tab_active>.newsactive::after {
    display: block;
    content: '';
    width: 150px;
    height: 3px;
    height: 3px;
    background-color: #0066b9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.title_gray{
    color:#333;
}