/* --------------------------------旋转提示遮罩----------------------------------------- */
.rotate-tip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rotate-tip.show {
    display: flex;
}

.rotate-tip-icon {
    width: 8rem;
    height: 8rem;
    background: url(https://static.web.sdo.com/aion/pic/project/aionmemory/rotate.png) center center no-repeat;
    border-radius: 50%;
    position: relative;
    animation: rotate 2s linear infinite;
    margin-bottom: 0.3rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(90deg);
    }
}

.rotate-tip-text {
    color: #c9a55a;
    text-align: center;
    line-height: 1.6;
    font-size: 0.8rem;
}