.news-center {
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    height: auto;
    padding-bottom: 100px;
}
.news-center .banner {
    width: 100%;
    height: 432px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: 400;
    color: #FFFFFF;
    background: url("../image/news_banner.png") no-repeat center;
}
.news-center .title {
    width: 100%;
    display: flex;
    justify-content: center;
}
.news-center .title .title-box {
    width: 240px;
    display: flex;
    justify-content: space-between;
    margin-top: 43px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}
.news-center .title .title-box a {
    display: flex;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}
.news-center .title .title-box .active {
    color: #2D8DCD;
    border-bottom: 2px solid #2D8DCD;
}
.news-center .list {
    width: 1200px;
    margin-top: 27px;
}
.news-center .news-content {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.news-center .news-content .list .item {
    width: 1200px;
    height: 158px;
    background: #FFFFFF;
    box-shadow: 0px 2px 13px 0px #E9EFF5;
    margin-top: 18px;
    text-align: left;
    padding: 30px 36px;
    float: left;
    cursor: pointer;
}
.news-center .news-content .list .item .list-title {
    height: 30px;
    font-size: 22px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
}
.news-center .news-content .list .item .list-content {
    width: 1045px;
    height: 22px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 10px;
}
.news-center .news-content .list .item .list-date {
    height: 22px;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    line-height: 22px;
    margin-top: 15px;
}
.news-center .news-content .list .item:hover .list-title {
    color: #2D8DCD;
}