/* 分页 */
.pages {
    text-align: center;
    margin: .375rem;
    font-family: "Microsoft YaHei", "simsun", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: .2rem;
    color: rgba(105, 105, 105, 1);
}

.pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: bottom;
}

.pages ul li {
    margin: 0 .0625rem;
    font-size: .2rem;
    border: none;
    border-radius: .05rem;
    display: inline-block;
}

.pages ul li a {
    border-radius: .05rem;
    color: #6e6e6e;
    background: #fff;
    padding: .125rem .2rem;
    border: .01875rem solid #DCDCDC;
}

.pages ul li a:hover {
    background: #ff9600;
    color: rgba(255, 255, 255, 1);
}

.pages ul li:last-child {
    margin-right: 0;
}

.pages ul .active,
.pages ul li a:hover {
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.pages ul .active {
    pointer-events: none;
}

.pages li.active a,
.pages li a:hover {
    background: #ff9600;
    color: #fff;
    border: .01875rem solid #ff9600;
}
