/* 分页页码 */
.page {
    text-align: center;
    margin: 20px auto;
    margin-top: 50px;
}

.page ul {
    padding: 0;
    text-align: center;
}

.page ul::after {
    content: '';
    display: block;
    clear: both;
}

.page ul li {
    display: inline-block;
    width: auto;
    min-width: 32px;
    height: 40px;
    margin: 0 3px;
    line-height: 30px;
    list-style: none;
    border: none;
}

.page a {
    display: block;
    padding: 0 10px;
    border: 1px solid #ccc;
    color: #aaa;
    font-family: "微软雅黑";
    text-decoration: none;
    text-align: center;
}

.page ul li:first-child a {
    border-left: 1px solid #ccc;
}

.page ul li a:hover {
    background-color: #d20000;
    color: white;
    border: 1px solid #d20000;
}

.page .disabled a:hover {
    background-color: white;
    cursor: not-allowed;
    color: #aaa;
    border: 1px solid #ccc;
}

.page .active a {
    background-color: #d20000;
    color: white;
    border: 1px solid #d20000;
}

.page ul::after {
    display: none;
}


