.new_content {
    padding: 100px 0 120px;
}

.list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 70px 30px;
}

.list .img {
    position: relative;
    overflow: hidden;
}

.list .img img {
    transition: all .36s;
}

.list a:hover .img img {
    transform: scale(1.1);
    transition: all .36s;
}

.list .img .time {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 58px;
    height: 70px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.list .img .time .f20 {
    font-family: SourceHanSansCN-Regular;
    color: #666666;
    line-height: 1;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.list .img .time p {
    font-family: SourceHanSansCN-Regular;
    color: #666666;
    line-height: 11px;
    text-transform: uppercase;
}

.list a .bottom {
    padding-top: 40px;
    padding-bottom: 50px;
    transition: all .36s;
}

.list .title {
    font-family: SourceHanSansCN-Regular;
    color: #1F1F1F;
    line-height: 1.2;
    margin: 0px 0 20px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.list .desc {
    font-family: SourceHanSansCN-Regular;
    color: #7E7D7D;
    line-height: 22px;
    margin-bottom: 50px;
}

.list a:hover .bottom {
    background: #FFFFFF;
    box-shadow: 0px 15px 43px 0px rgba(0, 0, 0, 0.18);
    padding: 40px 30px 50px;
    box-sizing: border-box;
    transition: all .36s;
}

.com_more {
    border-bottom: 1px solid #fff;
    transition: all .36s;
}

.list a:hover .com_more {
    border-bottom: 1px solid #000;
    transition: all .36s;
}

/* 新闻  结束 */
.pages {
    margin-top: 70px;
}

@media (max-width:1680px) {
    .new_content {
        padding: 100px 0;
    }
}

@media (max-width:1440px) {
    .new_content {
        padding: 80px 0;
    }

    .list {
        grid-gap: 60px 30px;
    }

    .list a:hover .bottom {
        padding: 30px 30px 45px;
    }

    .list a .bottom {
        padding-top: 30px;
        padding-bottom: 45px;
    }

    .list .title {
        margin: 0px 0 15px;
    }

    .list .desc {
        margin-bottom: 40px;
    }

    .pages {
        margin-top: 60px;
    }
}

@media (max-width:1280px) {
    .new_content {
        padding: 50px 0;
    }

    .list {
        grid-gap: 60px 30px;
    }

    .list a:hover .bottom {
        padding: 20px 25px 40px;
    }

    .list a .bottom {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .list .title {
        margin: 0px 0 10px;
    }

    .list .desc {
        margin-bottom: 35px;
    }

    .pages {
        margin-top: 50px;
    }
}

@media (max-width:1024px) {
    .new_content {
        padding: 40px 0;
    }

    .list {
        grid-gap: 40px 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .list .desc {
        margin-bottom: 30px;
    }

    .list a:hover .bottom {
        padding: 20px 20px 35px;
    }

    .list a .bottom {
        padding-bottom: 35px;
    }

    .pages {
        margin-top: 40px;
    }
}

@media (max-width:768px) {
    .new_content {
        padding: 30px 0;
    }

    .list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }

    .list a:hover .bottom {
        padding: 20px 0 0;
        background: none;
        box-shadow: none;
    }

    .list a .bottom {
        padding-bottom: 0px;
    }

    .list .desc {
        margin-bottom: 25px;
    }

    .pages {
        margin-top: 30px;
    }
}