/* 拖拽切换式tabs组件 */
.clearfix:after{
    display: table;
    content: "";
    box-sizing: border-box;
    clear: both;
}
.tabs_header {
    border-bottom: 1px solid #ddd;
    width: 100%;
    border-top: 1px dashed #ddd;
}



.tabs_header>span {
    display: block;
    float: left;
    padding: 10px;
    border-bottom: 2px solid transparent;
}
.tabs_header>span>a{
    color: #333;
}
.tabs_header>span.active {
    border-color: #338dde;
    color: #338dde;
}

.tabs_header .tabs_more {
    line-height: 42px;
    font-size: 12px;
    float: right;
    padding-right: 10px;
}

.article_list {
    /*padding-top: 10px;*/
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.article_list_item {
    position: relative;
    width: 100%;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.article_title {
    position: absolute;
    left: 25px;
    right: 80px;
}

.article_title a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: initial;
}

.article_title a:hover {
    color: #0076d0;
}

.article_title a, .article_title {
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article_time {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 12px;
}

.article_doc {
    width: 3px;
    height: 3px;
    margin-left: 15px;
    background-color: #999;
    border-radius: 50%;
}
.tabs_more a{
    border-left:1px solid #fff;
    border-right:1px solid #ccc;
    padding: 0 4px;
    margin: 0;
}
.tabs_more a:last-of-type{
    border-right:1px solid #fff;
}
.new_search .search_input{
    position: relative;
    display: block;
    width: 100%;
    

}
.new_search .search_input>input{
    width: 100%;
    background: #efefef;
    border: 0;
}
.new_search .search_input>a.glyphicon-search{
    position: absolute;
    right: 5px;
    top: 7px;
    color: #777;
    font-size: 18px;
}