.news-show-title {
    padding-top: 100px;
    font-size: 38px;
    line-height: 38px;
    text-align: center;
    color: #333;

}

.first-news {
    display: flex;
    margin: 100px auto 0;
    width: 1200px;
    height: 290px;
    box-shadow: 0 0 15px 0 rgba(186, 186, 186, .16);
    border: solid 1px #f4f4f5;
    background-color: #fff;
}

.first-news .news-img {
    width: 480px;
    height: 100%;
}

.first-news .news-info {
    margin-left: 47px;
    padding-top: 45px;
}

.first-news .news-info .news-title {
    font-size: 18px;
    color: #333;
}

.first-news .news-info .news-date {
    margin-top: 14px;
    font-size: 14px;
    color: #999;
}

.first-news .news-info .news-explain {
    margin-top: 50px;
    width: 560px;
}

.first-news .news-info .news-more {
    display: block;
    margin-top: 26px;
    width: 130px;
    height: 34px;
    background-color: #fff;
    border-radius: 4px;
    border: solid 1px #ddd;
    font-size: 16px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    color: #999;
}

.news-list {
    margin: 100px auto 0;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.news-item {
    display: flex;
    margin-bottom: 60px;
    width: 560px;
    height: 141px;
}

.news-item .news-img {
    width: 240px;
    height: 100%;
}

.news-item .news-info {
    margin-left: 27px;
    padding-top: 11px;
}

.news-item .news-info .news-title {
    overflow: hidden;
    width: 300px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    color: #333;
}

.news-item .news-info .news-date {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.news-item .news-info .news-explain {
    margin-top: 14px;
    width: 288px;
}

.news-explain {
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.pagination-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 90px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #666;
}

.pagination-box a {
    cursor: pointer;
}

.pagination-box > a + a {
    margin-left: 47px;
}

.pagination-box > a + div {
    margin-left: 47px;
}

.page-num {
    color: #333;
}

.page-num.active {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: #ff702a;
    color: #fff;
}

.total-page span {
    color: #333;
}