/*本页面分页*/
.result_paging {
    text-align: center;
    margin-top: 20px;
}
.result_paging .count {
    display: inline-block;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    height: 24px;
}
.result_paging .pagination_bar{
    color: #666;
    display: inline-block;
    text-align: center;
}
.pagination_bar {
    color: #666;
    display: inline-block;
    text-align: center;
}
.pagination_bar li {
    display: inline-block;
    width: auto;
    min-width: 30px;
    height: 30px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    line-height: 28px;
    border-radius: 4px;
    background-color: #f9f9f9;
    border: 1px solid #D7D8D9;
    text-align: center;
    margin: 0 4px;
    padding: 0 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/*.xl-nextPage,
.xl-prevPage {
    width: 60px;
    color: #0073A9;
    height: 28px;
}*/
.pagination_bar li.xl-disabled {
    opacity: .5;
    cursor: no-drop;
}
.pagination_bar li.xl-disabled:hover {
    background-color: #f9f9f9 !important;
    border: 1px solid #dce0e0 !important;
    color: #666 !important;
}
.pagination_bar li.xl-active {
    background-color: #156ccf;
    border-color: #156ccf;
    color: #FFF;
}
.pagination_bar li:hover {
    background-color: #156ccf !important;
    border-color: #156ccf;
    color: #FFF;
}
.pagination_bar li.xl-jumpText {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    opacity: 1;
}
.pagination_bar li.xl-jumpText:hover {
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
}
.pagination_bar li.xl-jumpButton {
    padding: 0 5px;
}
.xlJumpNum {
    width: 35px;
    margin: 0 3px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px #dce0e0 solid;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.websitecheck {
    display: none !important;
}
@media screen and (max-width: 1024px) {
    .result_paging .count{
        display: block;
        font-size: 0.28rem;
        line-height: 0.42rem;
        height: 0.42rem;
    }
    .result_paging .pagination_bar{
        margin-top: 0.24rem;
    }
    .pagination_bar li.xl-jumpText,
    .pagination_bar li.xl-jumpButton{
        display: none;
    }
    .pagination_bar li{
        min-width: 0.5rem;
        height: 0.5rem;
        font-size: 0.28rem;
        line-height: 0.48rem;
        border-radius: 0.04rem;
        margin: 0 0.04rem;
        padding: 0 0.1rem;
    }
}
/* nodata */
.nodata{
    text-align: center;
    color: #666;
    padding: 50px 0;
}
/* 加载动画 */
.loading{
    text-align: center;
    padding: 100px 0;
}
.loading .circle{
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    -webkit-animation: circle infinite .75s linear;
    -moz-animation: circle infinite .75s linear;
    -o-animation: circle infinite .75s linear;
    animation: circle infinite .75s linear;
    border: 2px solid #fff;
    border-top-color: rgba(0,0,0,.2);
    border-right-color: rgba(0,0,0,.2);
    border-bottom-color: rgba(0,0,0,.2);
    border-radius: 100%;
}
@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}