/* 新闻列表 */
.news {
    width: 100%;
}
.news .li {
    display: flex;
    padding-bottom: 0.4rem;
    margin-top: 0.4rem;
    border-bottom: 0.01rem solid #DDDDDD;
}
.news .li:first-child {
    margin-top: 0;
}
.news .li .new_img {
    display: block;
    width: 4.25rem;
    height: 2.2rem;
    margin-right: 0.37rem;
}
.news .li .new_text {
    width: 6.49rem;
    margin-top: 0.15rem;
    margin-right: 2rem;
}
.news .li .tit {
    display: block;
    width: 6.49rem;
    font-size: 0.2rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
}
.news .li .tit:hover {
    font-weight: bold;
    color: #008836;
}
.news .li .tit2 {
    margin-top: 0.23rem;
    font-size: 0.13rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #666666;
    line-height: 0.21rem;
}
.news .li .tit2:hover {
    color: #008836;
}
.news .li .more {
    width: fit-content;
    margin-top: 0.58rem;
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    /* color: #008836; */
    color: #333333;
}
.news .li .more img {
    height: 0.12rem;
    margin-left: 0.1rem;
    object-fit: contain;
    filter: brightness(0);
}
.news .li .more:hover {
    color: #008836;
}
.news .li .more:hover img {
    filter: brightness(1);
}
.news .li .new_date {
    text-align: center;
}
.news .li .day {
    font-size: 0.28rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #999999;
}
.news .li .year {
    font-size: 0.14rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #999999;
}





/* 新闻详情.html */
.new_detail {
    width: 100%;
}
.new_detail .title {
    font-size: 0.4rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    color: #000000;
}
.new_detail .author {
    margin-top: 0.25rem;
    padding-bottom: 0.28rem;
    font-size: 0.16rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #999999;
    border-bottom: 0.01rem solid #DDDDDD;
}
.new_detail .new_text {
    width: 100%;
    margin-top: 0.18rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.01rem solid #DDDDDD;
}
.new_detail .new_text p {
    font-size: 0.16rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 0.32rem;
}
.new_detail .new_text img {
    max-width: 100%;
    max-height: 100%;
    margin: 0.3rem 0;
    object-fit: contain;
}
/* 底部导航 */
.new_nav {
    margin-top: 0.5rem;
    display: flex;
}
.new_nav .item {
    width: fit-content;
    margin-right: 0.8rem;
}
.new_nav .tit {
    font-size: 0.3rem;
    font-family: PingFang SC, PingFang SC;
    color: #999999;
}
.new_nav .box {
    margin-top: 0.5rem;
}
.new_nav .date {
    font-size: 0.14rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #6F6F6F;
}
.new_nav .txt2 {
    display: block;
    width: 3.7rem;
    margin-top: 0.2rem;
    font-size: 0.2rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
}
.new_nav .img2 {
    display: block;
    width: 3.7rem;
    height: 2.2rem;
    margin-top: 0.2rem;
}


@media only screen and (max-width:1024px){
    .news .li .new_img{
        flex-shrink: 0;
        width: 40%;
        height: auto;
    }
    .news .li .new_text{
        width: 50%;
    }
    .news .li .tit{
        width: 100%;
        font-size: 14px;
    }
    .news .li .tit2{
        line-height: 1.5;
    }
    .news .li .tit2,
    .news .li .more{
        font-size: 12px;
    }
    .new_detail .title{
        text-align: center;
    }
    .new_detail .author{
        font-size: 14px;
    }
    .new_detail .new_text p{
        font-size: 12px;
    }
    .new_nav .box{
        font-size: 14px;
    }
}







