/* 页码数字按钮 默认 */
.PageSelect {
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    border-radius: 50%; /* 改成圆形 */
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    line-height: 32px;
    font-size: 12px;
    width: 32px;
    height: 32px;
    float: left;
    text-align: center;
    margin-left: 9px;
    border: 1px solid #DDDDDD;
    color: #006ed3;
}
/* 页码hover */
.PageSelect:hover {
    background: #006ed3;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    border: 1px solid #006ed3;
    color: White;
}

/* 当前选中页码 */
.PageCantSelect {
    border-radius: 50%; /* 圆形 */
    background-color: #006ed3;
    line-height: 32px;
    font-size: 12px;
    width: 32px;
    height: 32px;
    float: left;
    text-align: center;
    margin-left: 9px;
    color: White;
}

/* 不可点击上一页/下一页 */
.CantPage {
    background: #efefef;
    border-color: #efefef;
    color: #ccc;
    float: left;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 12px;
    margin-left: 9px;
    /* 宽高68≠32，无法正圆，保留圆角不强制50%，如需椭圆可改为border-radius:16px */
    border-radius: 16px;
}

/* 可点击上一页、下一页按钮 */
.CanPage {
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: #fff;
    border: 1px solid #006ed3;
    color: #006ed3;
    float: left;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 12px;
    margin-left: 9px;
    border-radius: 16px; /* 长条按钮半圆圆角 */
}
.CanPage:hover {
    background: #006ed3;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    border: 1px solid #006ed3;
    color: white;
}

/* 跳转GO按钮 */
.GoClass {
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: #fff;
    border: 1px solid #006ed3;
    color: #006ed3;
    float: left;
    width: 40px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    margin-left: 9px;
    border-radius: 13px; /* 40宽26高，半高做圆角 */
}
.GoClass:hover {
    background: #006ed3;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    border: 1px solid #006ed3;
    color: White;
}

/* 页码输入框 */
.PageInput {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    width: 66px;
    border: 1px solid #DDDDDD;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 13px;
}
.PageInput:focus {
    width: 66px;
    border: 1px solid #006ed3;
    height: 26px;
    line-height: 26px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background-color: #E9FBFE;
}
