.news_list {
    width: 100%;
    background-color: var(--main_body_color);
    background-color: #fff;
    padding: 0.4rem 0;
}
.news-list-content{
    display: flex;
    width: 68%;
    margin: 0 auto;
}
.news_tabs_box{
    width: 30%;
}
.news_tabs {
    width: 80%;
}
.news-tabs-title{ 
    padding: 0.2rem 0;
    background-color: #02509b;
    color: #ffffff;
    font-size: 0.22rem;
    padding-left: 0.15rem;
    font-weight: bold;
    box-shadow: rgba(255, 255, 255, 0) 0px 0px 1px;
    z-index: 99;
}
 .news-tabs-list {
    background-color: #eeeeee;
}
 .news-tabs-item {
    padding: 0.2rem 0;
    padding-left: 0.15rem;
    /* width: 2.8rem; */
    text-decoration: none;
    margin: 0 auto;
    font-family: "Microsoft YaHei", 微软雅黑;
    font-size: 0.16rem;
    color: #000000;
    border-bottom: 1px solid #02519b52;
    box-shadow: rgba(255, 255, 255, 0) 0px 0px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
.news_tabs_active {
    border-left: 5px solid #02509b;
    color: #02509b;
    font-weight: bold;
}
.news_list_container {
    width: var(----container_width);
    margin-bottom: 0.8rem;
    flex:1;

}
.news-list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #DFDFDF;
    margin-bottom: 0.2rem;
    padding-bottom: 0.2rem;
}
.news-list-top-title{
    min-width: 1.5rem;
    font-size: 0.22rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    color: #02509b;
    font-weight: bold;
    position: relative;
}
.news-list-top-title::after {
    width: 1.2rem;
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    height: 1px;
    background-color: #02509b;
}
.news_list_container-ul {
    display: block;
    text-decoration: none;
    font-size: 0.16rem;
}
.news_list_container-li {
    text-decoration: none;
    border-bottom: 1px solid #02519b52;
    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 {
    background-color: #02519b59;
    transition: all 0.5s;
}
.news_list_container-li_d_time {
    width: 20%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #9B9C9D;
    text-align: right;
}

