.banner {
    position: relative;
    margin-top: 100px;
    width: 100%;
    /* height: 800px; */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .desc {
    position: absolute;
    top: 26%;
    left: 8%;
}

.banner .desc .titleE {
    font-size: 72px;
    font-family: 'objectivitybold';
    width: 480px;
}

.banner .desc .title {
    font-size: 44px;
    margin-top: 150px;
    position: relative;
}

/* .banner .desc .title::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 6px;
    background: #fff;
    bottom: -30px;
    left: 0;
} */

.banner .desc .text {
    width: 80vw;
    margin-top: 60px;
    font-size: 30px;
}

.nav {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 160px;
    display: flex;
    justify-content: space-between;
}

.nav .location {
    color: #999;
    display: flex;
    align-items: center;
}

.nav .location a {
    color: #999;
    margin: 0 10px;
    cursor: pointer;
}

.nav .location span:nth-child(1) {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0c9e0d;
    border-radius: 50%;
    margin-right: 10px;
}

.nav .location .active {
    color: #000;
}
.nav .type{
    display: flex;
}
.nav .type .type_item{
    color: #999;
    margin-left:60px;
    cursor: pointer;
}
.nav .type .active{
    color: #000;
}
.news_list{
    width:100%;
    background:#fff;
    padding:50px 160px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
.news_list .news_item{
    width:100%;

}
.news_list .news_item .img_box{
    width:100%;
    height:16vw;
    overflow: hidden;
}
.news_list .news_item .img_box img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;

}
.news_list .news_item .date{
    color:#0c9e0d;
    font-family: 'objectivity';
    font-size: 14px;
    margin-top:20px;

}
.news_list .news_item .title{
    color:#333;
    font-size: 24px;
    margin-top:10px;
    line-height: 36px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    display: box;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news_list .news_item .desc{
    color:#7f7f7f;
    font-size: 14px;
    margin-top:6px;
    line-height: 26px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    display: box;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news_list .news_item .more{
    display: flex;
    align-items: center;
    margin-top:20px;
}
.news_list .news_item .more div{
    font-size: 12px;
    color:#333;
    font-family: 'objectivity';
    margin-right:30px
}
.news_list .news_item .more img{
    transition: all 0.3s ease-in-out;
}
.news_list .news_item:hover .more img{
    transform: translateX(10px);
}
.news_list .news_item:hover .img_box img{
    transform: scale(1.08);
}

.news_lists{
    width:100%;
    background:#f3f9f3;
    padding:50px 160px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 40px;
}
.news_lists .news_item{
    width:100%;
    height:280px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding:50px;
    box-sizing: border-box;

}
.news_lists .news_item .left{
    display: flex;
    flex:1;
}
.news_lists .news_item:hover{
    background: linear-gradient(to right, #54944a, #9dc73d);
}
.news_lists .news_item .date{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.news_lists .news_item .date div:nth-child(1){
    font-size: 48px;
    color:#0c9e0d;
    font-family: 'objectivity';
}
.news_lists .news_item .date div:nth-child(2){
    font-size: 14px;
    color:#0c9e0d;
    font-family: 'objectivity';
}
.news_lists .news_item:hover .date div{
    color:#fff;
}
.news_lists .news_item .center{
    width:78%;
    margin-left:60px;
}
.news_lists .news_item .center .title{
    color:#333;
    font-size: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    display: box;
    text-overflow: ellipsis;
    overflow: hidden;

}
.news_lists .news_item:hover .center .title{
    color:#fff;
}
.news_lists .news_item:hover .center .desc{
    color:#fff;

}
.news_lists .news_item .center .desc{
    color:#7f7f7f;
    font-size: 14px;
    line-height: 26px;
    margin-top:20px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    display: box;
    text-overflow: ellipsis;
    overflow: hidden;
    height:52px;

}
.news_lists .news_item .more{
    display: flex;
    align-items: center;
}
.news_lists .news_item .more img{
    width:15px;
    height:10px;
}
.news_lists .news_item .more img:nth-child(3){
    display: none;
}
.news_lists .news_item:hover .more img:nth-child(3){
    display: block;
}
.news_lists .news_item:hover .more img:nth-child(2){
    display: none;
}
.news_lists .news_item .more div{
    font-size: 12px;
    font-family: 'objectivitybold';
    color:#333;
    margin-right:30px;
}
.news_lists .news_item:hover .more div{
    color:#fff;
}
.news_lists .news_item .btn{
    width:110px;
    height:36px;
    text-align: center;
    line-height: 36px;
    background:#efefef;
    border-radius: 18px;
    margin-top:30px;
    color:#333;
    font-size: 14px;
}
.news_lists .news_item:hover .btn{
    color:#fff;
    background:rgba(255, 255, 255, 0.2);
}
@media screen and (max-width:800px) {
    .banner{
        height:180px;
        margin-top:80px;
    }
    .banner .desc .title{
        font-size: 20px;
        margin-top:10px;
    }
    .banner .desc .text{
        margin-top:20px;
        font-size: 14px;
        width:100%;
    }
    /* .banner .desc .title::after{
        width: 26px;
    height: 3px;
    background: #fff;
    bottom: -10px;
    } */
    .news_list{
        padding: 40px 20px;
        grid-template-columns: repeat(1, 1fr);
    }
    .news_list .news_item .img_box{
        height:160px;
    }
    .news_lists{
        padding: 40px 20px;
    }
    .news_lists .news_item{
        flex-direction: column;
        padding:20px 10px;
    }
    .nav{
        padding:0 20px;
    }
    .nav .location{
        display: none;
    }
    .nav .type .type_item{
        margin-left: 0px;
        margin-right: 20px;
    }
    .news_list .news_item .title{
        font-size: 18px;
        line-height:26px;
    }
    .news_lists .news_item .center{
        margin-left: 10px;
        width:75%;
    }
    .news_lists .news_item .more{
        margin-top:10px;
    }
    .news_lists .news_item .center .title{
        font-size: 16px;
        height:20px;
        line-height: 20px;
    }
    .news_lists .news_item .center .desc{
        margin-top:10px;
    }
    .news_lists .news_item .btn{
        display: none;
    }
    .news_lists .news_item{
        height:auto;
    }
    .news_lists .news_item .date div:nth-child(1){
        font-size: 26px;
    }
    .news_lists .news_item .left{
        align-items: center;
        justify-content: space-between;
    }
}