ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.news-wrapper {
    clear: both;
    width: 100%;
    max-width: 1400px;
    /* padding: 0 80px; */
    margin: auto;
}

.news .news-list {
    margin-right: 20px;
    width: 180px;
}

.news .news-list ul {
    margin: 12px 0;
}

.news .news-list ul li a {
    padding: 14px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news .news-list ul li a span {
    color: #344054;
}

.news .news-content {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    flex: 1;
    padding: 24px;
    /* width: 1451px; */
    background: white;
}

.news .news-content .caption {
    display: flex;
    line-height: 34px;
    text-align: center;
}

.news .news-content .caption div:nth-child(1) {
    width: 100px;
    height: 34px;
    background: #AE0C17;
    color: #FFFFFF;
}


.news .news-content ul li {
    border-bottom: 1px solid rgba(0,0,0,0.1)
}

.news .news-content ul li img{
    transition: all 1s;
}


.news .news-content ul li img:hover {
    transform: scale(1.2);
    transition: all 1s;
}

.news .news-content ul li {
    margin-top: 24px;
    padding: 16px 0 24px 0;
    display: flex;
    font-size: 14px;
}

.news .news-content ul li .detail {
    width: 636px;
    height: 142px;
    margin-left: 16px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    overflow: hidden;
}

.news .news-content ul li  .detail .news-title {
    padding-right: 16px;
    margin-bottom: 8px;
    color: #131B23;
}

.news .news-content ul li .detail article {
    height: 70px;
    padding-right: 16px;
    color: #435568;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.news .news-content ul li  .detail div:nth-child(2) {
    color: #828C9D;
}

@media screen and (min-width: 0px) {
    .news-wrapper {
        clear: both;
        width: 100%;
        /* padding: 0 80px; */
    }
}

@media screen and (min-width: 1400px) {
    .news-wrapper {
        clear: both;
        width: 100%;
        /* padding: 0 80px; */
    }

}