.loading-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.loading-img {
    width: 55.51rpx;
    height: 55.51rpx;
    animation: circle 1s linear infinite;
}
.loading-text {
    margin-top: 18.1rpx;
    font-size: 28.96rpx; 
}

@keyframes circle {
    from {
        transform: rotate(0deg);     
    }
    to {
        transform: rotate(360deg);     
    }
}