﻿#page-switcher {
    margin-top:50px;
    opacity: 0;
    animation: showPgswitcher .2s ease-out .2s forwards;
    -webkit-animation: showPgswitcher .2s ease-out .2s forwards;
}

@keyframes showPgswitcher {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.page {
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.pagelist {
    height: 26px;
    display: inline-block;
    margin: 0 auto;
}

span.jumppoint {
    color: #aaa !important;
}

.jumppoint,
.ellipsis,
.pagelist .jump {
    /* 设定其间隔宽度 */
    margin-left: 3px
}

.pagelist span {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.pagelist .jump {
    padding: 5px 8px;
    text-align: center;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 6px;
}

.pagelist .bgprimary {
    cursor: default;
    color: #fff;
    background: #ff3b5f;
    border-radius: 6px;
}

.pagelist .bgprimary:hover {
    background: #da2f4e;
    transition: 0.15s ease-out;
}

.jumpinp input {
    width: 55px;
    height: 32px;
    font-size: 13px;
    border: none;
    background: #f0f0f0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
}

.jumpinp input:hover {
    background: #ddd;
    transition: 0.15s linear;
}

.jumpinp input:focus {
    background: #e9e9e9;
    transition: 0.15s linear;
}

.ellipsis {
    padding: 0px 3px;
    text-align: center;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 6px;
}

.jump:hover,
.ellipsis:hover {
    background: #ddd;
    transition: 0.15s ease-out;
}

.bgprimary {
    cursor: default;
    color: #fff;
    background: #ff3b5f;
    border-radius: 6px;
}

.pagelist .jump.disabled {
    display: none;
}

.pagelist .gobtn {
    font-size: 16px;
    background: #ff3b5f;
    color: #fff;
}

.pageNum {
    display: inline-block;
    height: 26px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
    line-height: 26px;
}