.message-box-layer{
    width: 100%;position: fixed;top: 1rem;left: 0;
}
.message-box-body{
    width: auto;padding: 0.15rem 0.2rem;background: rgba(0,0,0,0.6);font-size: 0.3rem;border-radius: 0.12rem;line-height: 1;z-index: 8;
}
.message-box-body img{width: 0.32rem;height: 0.32rem}
.message-box-body span{margin-left: 4px}
.message-box-success{
    color: #fff;
}
.message-box-error{
    color: #fff;
}

.confirm-pop-layer{
    width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background: rgba(00,00,00,0.5);
}
.confirm-pop-body{
    padding: 0.2rem 0.2rem 0.3rem 0.2rem;border-radius: 0.2rem;width: 6.5rem;
}
.confirm-pop-body .confirm-pop-title{width: 100%;text-align: center;color: #333333;font-size: 0.4rem;font-weight: bold;}
.confirm-pop-body .confirm-pop-content{width: 100%;height: 7rem;margin-top: 0.2rem;font-size: 0.28rem;line-height: 1.5;overflow-y: scroll;}
.confirm-pop-body .confirm-pop-content::-webkit-scrollbar{width: 0;}
.confirm-pop-body .confirm-pop-content::-webkit-scrollbar-thumb{background: #406fd0}
.confirm-pop-body .confirm-pop-ok-btn{width: 4.8rem;height: 0.8rem;line-height: 0.8rem;text-align: center;background: #ffb708;border-radius: 0.3rem;font-size: 0.32rem;}

@keyframes rotate {
    0% {
        transform: rotate(0deg); /* 起始角度 */
    }
    100% {
        transform: rotate(360deg); /* 结束角度 */
    }
}
.loading-layer{width: 100%;height: 100vh;background: rgba(22,22,22,0.7);position:fixed;top: 0;left: 0}
.loading-layer .loading-body{width: 4rem;}
.loading-layer .loading-body .loading-img{width: 0.8rem;height: 0.8rem;animation: rotate 2s linear infinite;}
.loading-layer .loading-body .loading-text{text-align: center;margin-top: 0.1rem;font-size: 0.3rem;color: #ffffff;}

