/*
* @Author: wuna
* @Date:   2018-07-09 15:13:05
* @Last Modified by:   wuna
* @Last Modified time: 2018-07-09 17:05:11
*/
.pagination-btn {
    padding: 6px 13px;
    margin-right: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #999;
    display: inline-block;
    box-sizing: border-box;
    min-width: 44px;
    text-align: center;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #666666;
    letter-spacing: 0;
    text-align: center;
    background-color: #fff;
}

.pagination-btn::selection {
    /*设置选中区域文字背景变化*/
    text-shadow: none;
    background-color: none;
    /*为选中文字设置背景颜色*/
}

.pagination-wrap {
    position: relative;
    display: inline-block;
    padding-left: 0px;
}

.pagination-ellipsis {
    color: #999;
    position: relative;
    top: -5px;
    display: inline-block;
    padding: 0 0.12rem;
    margin-right: 4px;
}

.pagination-ellipsis::selection {
    /*设置选中区域文字背景变化*/
    text-shadow: none;
    background-color: none;
    /*为选中文字设置背景颜色*/
}

.pagination-current {
    background: #6DC4C0;
    color: #fff;
}

.pagination-disabled {
    cursor: not-allowed;
}


.pagenum {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}