@keyframes loading {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
#loading{
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
    background: rgba(255, 255, 255, .8);
}
#loading.open{
    display: flex;
}
#loading .loadingBox {
    width: 150px;
    height: 150px;
    display: inline-block; /*將loading區域變成行內元素，防止旋轉的時候，100%寬度都在旋轉*/
    margin: 0 auto;
    border: none;
    padding: 0;
    box-sizing: border-box;
    animation: loading 1.2s infinite linear;
    text-align: center;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
#loading .textBox{
    font-size: 24px;
    font-weight: 400;
    color: var(--BK);
}