/*
分页
*/

.paging {
    display: table;
    padding: 15px;
    margin: 15px auto;
}

.pp {
    display: inline-block;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.paging ul {
    padding: 0;
    margin: 0;
    display: inline-block;
    float: left;
}

.paging li {
    margin-left: 10px;
    display: inline-block;
    float: left;
    padding: 9px 15px;
    cursor: pointer;
    background: white;
    border: 1px solid #cccccc;
}

.paging li:hover {
    background-color: #ddd;
}

.paging input[type='text'], .paging input[type='button'] {
    display: inline-block;
    margin-top: 0px;
    border: 1px solid #ccc;
}

.paging ul:nth-child(2) {
    position: relative;
    width: 64px;
}

.paging input[type='text'] {
    position: absolute;
    top: 0;
    left: 0;
    height: 38px;
    width: 32px;
    border-right: none;
    padding:0  10px;
    outline: none;
}

.paging input[type='button'] {
    position: absolute;
    top: 0;
    left: 32px;
    height: 40px;
    width: 45px;
    border-left: none;
    background-color: #fff;
    cursor: pointer;
}

.paging ul:nth-child(2) {
    margin-left: 10px;
}

.paging-selecte:hover {
    background: linear-gradient(to bottom, #e2e2e2 0%, #e2e2e2 100%);
    color: #000 !important;
    border: 1px solid #e2e2e2 !important;

}

.paging-selecte {
    background: linear-gradient(to bottom, #e2e2e2 0%, #e2e2e2 100%) !important;
    color: #000000 !important;
    border: 1px solid #e2e2e2 !important;

}

.paging input[type="button"] {
    padding: 0;
    outline: none;
}