.loading{width: 100%;margin-top: 0.8rem;display: flex;justify-content: center;}
.loading .box{width: 2rem;display: flex;justify-content: center;flex-wrap: wrap;}
.loading .box .circle{width: 0.48rem;height: 0.48rem;position: relative;}
.loading .box .circle span{display: inline-block;position: absolute;}
.loading .box .circle span:nth-child(1){left: 0.04rem;width: 0.03rem;height: 0.03rem;top: 0.03rem;border-radius: 0.1rem;background-color: #01BAB5;opacity: 0.6;animation: toCenter 1.5s linear 1s infinite;}
.loading .box .circle span:nth-child(2){right: 0.04rem;width: 0.045rem;height: 0.045rem;top: 0.025rem;border-radius: 0.1rem;background-color: #01BAB5;opacity: 0.8;animation: toCenter 2s linear 2s infinite;}
.loading .box .circle span:nth-child(3){left: 0;width: 0.025rem;height: 0.025rem;top: 0.21rem;border-radius: 0.1rem;background-color: #01BAB5;opacity: 0.2;animation: toCenter 1.8s linear 3s infinite;}
.loading .box .circle span:nth-child(4){right: 0;width: 0.0375rem;height: 0.0375rem;top: 0.27rem;border-radius: 0.1rem;background-color: #01BAB5;opacity: 0.6;animation: toCenter 2.1s linear 2s infinite;}
.loading .box .circle span:nth-child(5){left: 0.03rem;width: 0.03rem;height: 0.03rem;bottom: 0.03rem;border-radius: 0.1rem;background-color: #01BAB5;opacity: 0.4;animation: toCenter 1.3s linear 1.5s infinite;}
.loading .box .circle .c1{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;position: absolute;left: 0;top: 0;animation: clockwise 4s linear infinite;}
.loading .box .circle .c2{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;position: absolute;left: 0;top: 0;animation: anticlockwise 3s linear infinite;}
.loading .box .circle .c1 img{max-width: 0.34rem;}
.loading .box .circle .c2 img{max-width: 0.2rem;}
.loading .box .txt{font-size: 0.14rem;margin-top: 0.2rem;}

@keyframes clockwise {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes anticlockwise {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-360deg);
    }
}

@keyframes toCenter {
    from{}
    to{
        opacity: 0;
    }
}

.pages{
    width: 100%;

}
.pages ul{
    width: 100%;
    display: flex;
    justify-content: center;
}
.pages ul .page-item{
    width: 38px;
    height: 38px;
    margin: 0 5px;
    border-radius: 6px;
    border: 1px solid #ddd;
    overflow: hidden;
}
.pages ul .page-item:first-of-type,.pages ul .page-item:last-of-type{
    width: 72px;
}
.pages ul .page-item span,.pages ul .page-item a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.pages ul .page-item a:hover{
    background-color: #A52D2F;
    border: 1px solid #A52D2F;
    color: #fff;
}
.pages ul .page-item.active a,.pages ul .page-item.active span{
    background-color: #A52D2F;
    border: 1px solid #A52D2F;
    color: #fff;
}
