

/* 新闻列表 */
.news_list {
    width: 100%;
    margin-top: 0.9rem;
}
.news_list .item {
    width: 100%;
    margin-top: 0.9rem;
    display: flex;
}
.news_list .new_img {
    width: 3rem;
    height: 1.9rem;
    margin-right: 0.6rem;
}
.news_list .new_info {
    flex: 1;
}
.news_list .new_info .date {
    height: 0.54rem;
    display: flex;
    align-items: center;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
}
.news_list .new_info .day {
    display: block;
    height: 100%;
    padding-right: 0.3rem;
    font-size: 0.2rem;    
    color: #333333;
    line-height: 0.54rem;
    border-right: 0.01rem solid #C8C8C8;
}
.news_list .new_info .year {
    margin-left: 0.23rem;
    font-size: 0.2rem;
    color: #999999;
}
.news_list .new_info .texts {
    margin-top: 0.3rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
}
.news_list .new_info .t1 {
    width: 8.4rem;
    padding-bottom: 0.15rem;
    font-size: 0.2rem;
    color: #464646;
    border-bottom: 0.01rem solid #EFEFEF;
}
.news_list .new_info .t2 {
    width: 8.4rem;
    margin-top: 0.15rem;
    font-size: 0.14rem;
    color: #787878;
    line-height: 0.24rem;
}
/* hover state */
.news_list .item:hover .day {
    color: #D61428;
}
.news_list .item:hover .t1 {
    color: #D61428;
}



/* 新闻详情 */
.new_detail {
    width: 100%;
    margin-top: 0.6rem;
    padding-bottom: 0.35rem;
    border-bottom: 0.01rem solid #DDDDDD;
}
.new_detail .title {
    font-size: 0.4rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    color: #000000;
}
.new_detail .explain {
    margin-top: 0.27rem;
    font-size: 0.16rem;
    font-family: PingFang SC, PingFang SC;
    color: #999999;
}
.new_detail .content {
    margin-top: 0.45rem;
}
.new_detail .content p {
    margin-top: 0.2rem;
    font-size: 0.16rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 0.32rem;
}
.new_detail .content img {
    max-width: 100%;
    max-height: 100%;
    margin: 0.3rem auto;
    object-fit: initial;
}
/* 底部导航 */
.bot_navs {
    margin-top: 0.45rem;
    display: flex;
}
.bot_navs .nav {
    display: block;
    width: 3.7rem;
    margin-right: 0.8rem;
    font-family: PingFang SC, PingFang SC;
}
.bot_navs .nav .tip {
    font-size: 0.4rem;
    color: #999999;
}
.bot_navs .nav .date {
    margin-top: 0.5rem;
    font-size: 0.14rem;
    font-weight: 500;
    color: #6F6F6F;
}
.bot_navs .nav .tit {
    margin-top: 0.2rem;
    font-size: 0.16rem;
    font-weight: 500;
    color: #000000;
}
.bot_navs .nav .nav_img {
    margin-top: 0.2rem;
    width: 100%;
    height: 2.21rem;
    overflow: hidden;
}
/* hover state */
.bot_navs .nav:hover .date {
    color: #D61428;
}
.bot_navs .nav:hover .tit {
    color: #D61428;
}


@media only screen and (max-width: 1520px) {
    /* 客户说字体有点小，看不清了，所以先适配一下字体，在1500px以下，字体设置成固定大小 */
    .news_list .new_info .t1 {
        font-size: 16px;
    }
    .news_list .new_info .t2,
    .bot_navs .nav .date,
    .bot_navs .nav .tit {
        font-size: 14px;
    }
    
    
    
}
@media screen and (max-width: 1024px){
    .news_list .item{
        flex-wrap: wrap;
        width: 94%;
        height: auto;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .news_list .new_img{
        width: 100%;
        height: 4rem;
        margin: 0 auto;
    }.news_list .new_info .day{
        font-size: 14px;
    }.news_list .new_info .year{
        font-size: 14px;
    }.news_list .new_info{
        width: 100%;
    }.news_list .new_info .t1{
        width: 100%;
    }.news_list .new_info .t2{
        width: 100%;
        line-height: 20px;
    }.new_detail{
        width: 94%;
        margin: 0 auto;
    }.new_detail .content p{
        font-size: 16px;
    }.new_detail .content img{
        width: 100%;
        height: auto;
    }.bot_navs{
        width: 94%;
        margin: 0 auto;
    }
}




