/* 新闻中心 */
.news-banner{
    background: url('../images/news/new-banner.png');
}
.news-banner img {
    width: 100%;
}
.news-box {
    padding-bottom: 1rem;
}
.news-list{
    margin-top: 0.5rem;
}
.new-item {
    width: 4.4rem;
    margin: 0.2rem 0.13rem;
    box-shadow: 0 0 0.1rem 0.01rem #34c4c426;
    cursor: pointer;
}
.new-item-img {
    width: 100%;
    height: 2.5rem;
    overflow: hidden;
    border-radius: 0.08rem 0.08rem 0rem 0rem;
    cursor: pointer;
}
.new-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 0.08rem 0.08rem 0rem 0rem;
    transition: 0.5s;
}
.new-item:hover .new-item-img img {
    transform: scale(1.1);
}
.new-item:hover .new-con .title{
    color: #34C46E;
}
.new-con {
    padding: 0.45rem 0.3rem 0.25rem 0.3rem;
    position: relative;
}
.new-con .title {
    font-size: 0.24rem;
    font-weight: bold;
    color: #333333;
    display: block;
}
.new-con .text {
    font-size: 0.18rem;
    color: #666666;
    line-height: 0.26rem;
    margin-top: 0.2rem;
}
.new-more a{
    justify-content: space-between;
    align-items: center;
    color: #34C46E;
    font-size: 0.18rem;
    margin-top: 0.2rem;
}
 @media only screen and (max-width: 1024px) {
     .content-nav-list{
         width: 100%;
     }
      .new-item{
        width: 100%;
        margin: 0.2rem 0.3rem;
     }
     .new-item-img{
         height: auto;
     }
     .new-con .title{
         font-size: .3rem;
     }
     .new-con .text{
         font-size: .24rem;
         line-height: .38rem;
     }
     .new-more a span{
         font-size: .24rem;
     }
 }