body{
    margin: 0;
    padding: 0;
}

#ami-init-loading footer{
    background-color: #ebf7f6;
    position: fixed;
    width: 100%;
    height: 33px;
    bottom: -0px;
}

#ami-init-loading header {
    height: 40px;
    position:absolute;
    width: 100%;
    background-image: linear-gradient(-225deg, #91dad2 0%, #50A7C2 100%);
}

@media (max-width: 1440px) {
    #ami-init-loading header {
        height: 30px;
    }
    #ami-init-loading footer{
        height: 28px;
    }
}
.container {
    display: flex;
    flex-wrap: wrap;
    height:100%;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    margin: 0 auto;
    max-width: 650px;
    min-width: 200px;
}
.canvas {
    align-items: center;
    background: rgba(255,255,255,0);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0);
    display: flex;
    height: 6rem;
    justify-content: center;
    margin: 1em 1em 2em 1em;
    width: 6rem;
}
@media (max-width: 600px) {
    .container {
        align-items: center;
        flex-direction: column;
    }
    .canvas {
        margin: 1em;
    }
}
.loading-wrap{
    position: fixed;
    z-index: 2100;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
/* Spinner 5 starts here */
.spinner5 {
    animation: spinnerFive 1s linear infinite;
    border: solid 1.5em #4DB6AC;
    border-right: solid 1.5em transparent;
    border-left: solid 1.5em transparent;
    border-radius: 100%;
    width: 0;
    height: 0;
}

@keyframes spinnerFive {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(60deg)
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Spinner 5 ends here */

