.listBar {
    width: 100%;
    height: auto;
    padding: 36px 0;
    border-bottom: 1px dashed #E1C5B6;
    box-sizing: border-box;
}

.listBar .list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.listBar .list-top .list-top-tit {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    line-height: 40px;
}

.listBar .list-top .list-top-time {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 40px;
}

.listBar .list-detail {
    width: 90%;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 40px;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pagination {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 100px;

}

.pagination ul {
    display: flex;
    justify-content: center;
}

.pagination ul .page {
    display: inline-block;
    width: 30px;
    line-height: 30px;
    background: #eee;
    border-radius: 3px;
    margin: 0 3px;
}

.pagination ul .page-previous {
    width: 70px;
    line-height: 30px;
    border-radius: 3px;
    margin: 0 3px;
    background: #eee;
}

.pagination ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.pagination ul .page-active {
    color: #FFF;
    background: #1492FF;
}

.pagination ul .page:hover {
    color: #FFF;
    background: #1492FF;
}

.pagination ul .page-previous:hover {
    color: #FFF;
    background: #1492FF;
}