.news{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 50px 0;
}
.news-list{
    height: auto;
    /* overflow: hidden; */
}
.news-item{
    width: 24%;
    height: auto;
    border: 1px solid rgba(0,0,0,0.1);
    float: left;
    margin-right: 1.33%;
    margin-bottom: 30px;
}
.news-item:nth-child(4n){
    margin-right: 0;
}
.news-item:hover{
    box-shadow: 4px 5px 10px #e6e6e6, -4px 5px 10px #e6e6e6;
}
.news-image{
    width: 100%;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
}
.news-image img{
    width: 100%;
    height: 100%;
    transform: scale(1.0);
    transition: all 1s;
    object-fit: cover;
}
.news-image:hover img{
    transform: scale(1.1);
}
.news-content{
    height: 170px;
    padding: 10px 18px;
}
.news-title{
    font-size: 20px;
    height: 55px;
    line-height: 27px;
    font-weight: bold;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    cursor: pointer;
}
.news-item:hover .news-title {
    color: rgba(12, 84, 166, 1);
}
.news-desc{
    font-size: 14px;
    height: 70px;
    line-height: 18px;
    font-weight: bold;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: rgba(0,0,0,0.5);
    margin-top: 10px;
}
.news-image p{
    position: relative;
    top: -190px;
    left: 10px;
    width: 95px;
    height: 30px;
    background-color: rgba(12, 84, 166, 0.8);
    line-height: 30px;
    padding: 0 5px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}
.nav{
    height: 100px;
}
.nav-list{
    width: 100%;
    display: flex;
}
.nav-item{
    width: auto;
    height: 45px;
    background-color: rgba(0,0,0,0.2);
    margin: 10px 10px;
    border-radius: 4px;
}
.nav-item:hover,
.nav-item.active {
    background-color: rgba(12, 84, 166, 1);
}
.nav-item a{
    height: 100%;
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.nav-item:hover a,
.nav-item.active a{
    color: #ffffff;
}
.nav-child-list{
    display: none;
    position: relative;
    top: 0px;
    background-color: #ffffff;
    padding: 10px 10px;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.15);
    /*box-shadow: 1px ;*/
}
.nav-item:hover .nav-child-list{
    display: block;
}
.nav-child-item{
    cursor: pointer;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}
.nav-child-item.active,
.nav-child-item:hover{
    color: rgba(12, 84, 166, 1);
}
@media (max-width: 600px) {
    .news{
        padding: 20px 10px;
    }
    .news-item{
        width: 100%;
        margin-right: 0;
    }
    .nav{
        height: 60px;
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .nav-child-list{
        display: none !important;
    }
    .nav::-webkit-scrollbar{
        display: none;
    }
    .nav-list{
        width: max-content;
    }
    .nav-item{
        height: 40px;
    }
    .nav-item a{
        font-size: 16px;
    }
}

