.mid-content-box {
    padding-bottom: .25rem;
}

/* 通用列表页面 */

.list-box {
    min-height: 6.0rem;
    margin-top: .25rem;
    /* padding-bottom: .25rem; */
    border-top: 2px solid #0B4DA3;

    background-color: #fff;
}

.list-items-box {
    width: 100%;
    padding: 0.25rem 5%;
}

.list-item-box {
    width: 100%;
    position: relative;
    font-weight: 400;
    color: #333333;
    font-size: .20rem;
    padding: 0 0 0 .4rem;
    display: table;
    table-layout: fixed;
    text-align: left;
    margin-bottom: .25rem;
}

.list-item-box::before {
    content: " ";
    position: absolute;
    width: .08rem;
    height: .08rem;
    border-radius: .02rem;
    background: #0B4DA3;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.text-list-item-box:hover{
    cursor: pointer;
}

.list-item-title-box {
    width: 85%;
    display: table-cell;
}

.list-item-date-box {
    width: 15%;
    display: table-cell;
    text-align: right;
}
/* 通用列表页面 */

.page-box {
    padding: 0 0 .20rem 0;
    text-align: center;
    background-color: #fff;
}

/* 分页 */
.mob-page-box {
    display: none;
    text-align: center;
    padding: 10px;
    background-color: #fff;
}

.mob-page-more-box {
    padding: 2px;
    border: 1px solid #D6C397;
}
/* 分页 */

@media screen and (max-width: 767px) {

    .list-item-box {
        font-size: .24rem;
        padding: 0 0 0 .4rem;
        margin-bottom: .28rem;
    }

    .list-item-title-box {
        width: 75%;
    }
    
    .list-item-date-box {
        width: 25%;
    }

    .page-box {
        display: none;
    }
    
    /* 分页 */
    .mob-page-box {
        display: block;
    }
    /* 分页 */
}