.banner {
    background: url(../img/newsInformationBanner.jpg) no-repeat center center;
}

.newsItemBox {
    width: 990px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.newsItemBox A {
    color:#333;
}
.newsItemBox A:hover {
    color: #ef7d00;
}

.newsItem {
    width: 48%;
    margin-top: 20px;
    background: #f7f7f7;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    border-radius: 2px;
    cursor: pointer;
}

.newsImg img {
    width: 152px;
    margin-right: 14px;
}

.newsCont {
    width: calc(100% - 166px);
}

.newsItemTit {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 6px;
    display:block;
}

.newsItemInfo {
    width: 100%;
    font-size: 12px;
    color: #999;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.newsItemTime {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.newsItemTime img {
    width: 16px;
    margin-right: 8px;
}

/* 分页 */
ul.pagination {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

ul.pagination li {
    margin: 0 4px;
}

ul.pagination li a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
}

ul.pagination li a.active {
    background-color: #ef7d00;
    color: white;
    border: 1px solid #ef7d00;
}

/* ul.pagination li a:hover:not(.active) {
	background-color: #fff;
} */
ul.pagination li a:hover {
    background-color: #ef7d00;
    color: white;
    border: 1px solid #ef7d00;
}
.paginationBox {
    text-align: center;
}
