@charset "utf-8";
/*样式参考*/
a {
    text-decoration: none;
}

#page {
    height: 50px;
    margin: 20px auto;
}

.page {
    text-align: center;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.pagingUl {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 30px;
}

.pagingUl li {
display: inline-block;
    vertical-align: middle;
    min-width: 32px;
    height: 32px;
    margin-right: 4px;
    text-align: center;
    list-style: none;
    background-color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-family: Arial;
    border: 1px solid #dddee1;
    border-radius: 5px;
    transition: border .2s ease-in-out,color .2s ease-in-out;
    transition-property: border, color;
    transition-duration: 0.2s, 0.2s;
    transition-timing-function: ease-in-out, ease-in-out;
    transition-delay: initial, initial;


    float: left;
   /* width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    margin-right: 5px;
    border-radius: 5px*/
}
.pagingUl li:hover{
    border-color: #2d8cf0!important;
    color:#2d8cf0!important;
    background: #fff!important;
}
.pagingUl li a {

        line-height: 30px;

        color: #101010;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 12px;
    border-radius: 5px
}

.prv,
.next {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    background: #fff;
    
    border-radius: 5px;
    border: 1px solid #dddee1;
    border-radius: 5px;
}

.prv {
    margin-right: 10px;
}

.first,
.last {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    /*border: 1px solid #ddd;*/
    cursor: pointer;
    background: #fff;
    padding: 0 5px;
    border-radius: 5px;
    margin-right: 10px;
    border: 1px solid #dddee1;
}

.prv:hover,
.next:hover,
.first:hover,
.last:hover,
.pagingUl li a:hover{
    border-color: #2d8cf0;
    color:#2d8cf0;
}
.activP {
        background-color: #2d8cf0;
    border-color: #2d8cf0;
    box-shadow: 0 0 0 1px  #2d8cf0;
    color:#fff!important;
}
