/*本页面分页*/
.result_paging {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.result_paging .count {
    display: inline-block;
    font-size: 16px;
    color: #666;
    line-height: 50px;
    height: 50px;
}
.result_paging .pagination_bar{
    color: #666;
    display: inline-block;
    text-align: center;
    margin-left: 20px;
}
.result_paging .pagination_bar ul{
    display: flex;
    align-items: center;
}
.pagination_bar li {
    display: inline-block;
    width: auto;
    min-width: 50px;
    height: 50px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    line-height: 48px;
    /*border-radius: 4px;
    background-color: #f9f9f9;
    border: 1px solid #D7D8D9;
    text-align: center;
    margin: 0 4px;*/
    padding: 0 4px;
    border: 1px solid #e2e2e2;
    border-left: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.pagination_bar li:first-child{
    border-left: 1px solid #e2e2e2;
}
.pagination_bar li.xl-nextPage,
.pagination_bar li.xl-prevPage {
    width: 80px;
}
.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;
}
.pagination_bar li.xl-active {
    background-color: #3e81f5;
    border-color: #3e81f5;
    color: #FFF;
}
.pagination_bar li:hover {
    background-color: #3e81f5 !important;
    border-color: #3e81f5;
    color: #FFF;
}
.pagination_bar li.xl-jumpText {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    opacity: 1;
    margin-left: 20px;
    padding: 0;
}
.pagination_bar li.xl-jumpText:hover {
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
}
.xlJumpNum {
    width: 50px;
    margin: 0 10px;
    height: 50px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #e2e2e2;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.websitecheck {
    display: none !important;
}
.pagination_bar li.xl-jumpButton {
    padding: 0 10px;
    margin-left: 10px;
    color: #0061E9;
    border: 1px solid #0061e9;
}
.pagination_bar li.xl-jumpButton:hover{
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .result_paging .count{
        display: block;
        font-size: 0.28rem;
        line-height: 0.42rem;
        height: 0.42rem;
    }
    .result_paging .pagination_bar{
        margin-top: 0;
        display: block;
        margin-left: 0;
    }
    .result_paging .pagination_bar ul{
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.24rem 0;
        padding-left: 0.24rem;
    }
    .pagination_bar li{
        min-width: 0.5rem;
        height: 0.5rem;
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding: 0 0.16rem;
        border-width: 0.01rem;
    }
    .pagination_bar li.xl-nextPage,
    .pagination_bar li.xl-prevPage{
        width: auto;
    }
    .xlJumpNum{
        width: 0.68rem;
        height: 0.48rem;
        line-height: 0.48rem;
        border-width: 0.01rem;
    }
    .pagination_bar li.xl-jumpButton{
        height: 0.5rem;
        padding: 0 0.16rem;
        margin-left: 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);
    }
}
