 /* * 通用一级页面1
 * author:zhouzongyi
 * date:2021-10-29 */

*,
::after,
::before {
    box-sizing: border-box;
}

/* 右侧信息列表 */
.infor-list {
    min-width: 874px;
    height: 1082px;
    margin-left: 325px;
}

.news-items {
    padding: 14px 9px 0px 9px;
    max-height: 914px;
    overflow: hidden;
}

.news-items > li {
    position: relative;
    line-height: 60px;
    vertical-align: top;
}

.news-items > li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
}

.news-items > li > a {
    padding-left: 14px;
    display: block;
    color: #333;
    margin-right: 120px;
}

.news-time {
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
}

.news-items > li:hover a,
.news-items > li:hover .news-time {
    color: #b01127;
}

.news-items > li:hover:before {
    background-color: #b01127;
}


.pager {
    margin-top: 25px;
}