
.bannerImg{
    height:600px;
    width:100%;
}
.container {
    width: var(--default-width);
    margin-top: 95px;
    padding: 0;
    margin-bottom: 46px;
}
.content{
    padding:0;
}
.news-list {
    width: 100%;
    padding: 0;
}
.container .tab {
    display: flex;
    align-items: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
    width: 100%;
    margin-bottom:69px;
}

.container .tab div{
    width:110px;
    height:36px;
    font-size:20px;
    color:#999;
    margin-right:50px;
    text-align:center;
    line-height:36px;
    cursor:pointer;
}
    .container .tab .actived {
        color: #fff;
        background: var(--new-main-color);
        border-radius:24px;
    }

    .news-list li {
        display: flex;
        align-items: center;
        /*    justify-content: space-between;*/
        margin-bottom: 33px;
    }
    .news-list li .right {
        border-bottom: 1px solid #ddd;
        height: 165px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-left: 52px;
        width: 100%;
    }
    .news-list img {
        width: 320px;
        height: 165px;
    }
    .news-list .date {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: relative;
        margin-right: 32px;
    }
.news-list .date .tit{
    font-size:60px;
    font-weight:bold;
    color: #999;
}
.news-list .date .tip{
    font-size:16px;
    color: #999;
}

    .news-list li .desc {
        flex: 1;
        height: 100px;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
    }



        .news-list li .desc .name a {
            font-size: 30px;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            text-decoration: none;
            margin-bottom: 22px;
        }

        .news-list li .desc .text {
            color: #666;
            font-size: 18px;
        }
