.news_list {
    width: 100%;
    background-color: var(--main_body_color);
    /* overflow: hidden; */
    min-height: 12rem;
    background-color: #fff;
}
.news-list-content{
    display: flex;
    width: 68%;
    margin: 0 auto;
}
.news_tabs_box{
    width: 30%;
}
.news_tabs {
    width: 80%;
    height: 3.08rem;
    margin: 0 auto;
    /* font-size: 0.18rem; */
    position: relative;
    top: -0.8rem;
    z-index: 999;
}
.news-tabs-title{ 
    height: 0.8rem;
    background-color: var(--news_border_color);
    color: #ffffff;
    font-size: 0.22rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.8rem;
    box-shadow: rgba(255, 255, 255, 0) 0px 0px 1px;
    transition: unset;
    z-index: 99;
}
 .news-tabs-list {
    background-color: #E9F3FF;
    transition: unset;
    padding: 0.3rem 0.1rem;
}
 .news-tabs-item{
    /* width: 2.8rem; */
    height: 0.5rem;
    text-decoration: none;
    margin: 0 auto;
    font-family: "Microsoft YaHei", 微软雅黑;
    font-size: 0.16rem;
    color: #000000;
    border-bottom: 1px solid #2686FA;
    box-shadow: rgba(255, 255, 255, 0) 0px 0px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
.news_tabs_active {
    color: var(--news_border_color);
    font-weight: bold;
}
.news_list_container {
    width: 70%;
    margin-bottom: 0.8rem;
}
.news-list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #DFDFDF;
    margin: 0.2rem 0;
}
.news-list-top-title{
    font-size: 0.22rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    color: var(--news_border_color);
    font-weight: bold;
    border-bottom: solid 1px var(--news_border_color);
    padding: 0.1rem 0;
}
.breadcrumb{
    margin: 0;
    position: relative;
    top: 0.1rem;
}
.news_list_container-ul {
    display: block;
    text-decoration: none;
    font-size: 0.16rem;
}
.news_list_container-li {
    text-decoration: none;
    border-bottom: 1px solid var(--news_border_color);
    transition: unset;
    box-shadow: rgba(255, 255, 255, 0) 0px 0px 1px;
}
.news_list_container-li_d {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_list_container-li_d_title {
    width: 80%;
    font-family: "Microsoft YaHei", 微软雅黑;
    text-align: left;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.2rem 0;   
}
.news_list_container-li:hover .news_list_container-li_d_title {
    color: var(--news_border_color);
}
.news_list_container-li_d_time {
    width: 20%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #9B9C9D;
    text-align: right;
}

