body {
    margin: 0;
    width: 100vw;
    height: 100vh;
}


html[theme="dark"] {
    color-scheme: dark;

    body {
        background-color: #1d2c3c;
    }

    body.app-chart-body {
        background-color: #232833;
    }
}

html[theme="light"] {
    color-scheme: light;
}

.ant-tour {
    max-width: calc(100% - 20px);
}

.app-loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

@keyframes app-loading-rotate {
    100% {
        transform: rotate(405deg);
    }
}

@keyframes app-loading-move {
    100% {
        opacity: 1;
    }
}

.app-loading-spin {
    color: #1caf83;
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.app-loading-spin-dot {
    transform: rotate(45deg);
    animation-name: app-loading-rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: relative;
    display: inline-block;
    font-size: 24px;
    width: 1em;
    height: 1em;
}

.app-loading-spin-dot-item {
    position: absolute;
    display: block;
    width: 11px;
    height: 11px;
    background-color: #1caf83;
    border-radius: 100%;
    transform: scale(0.75);
    transform-origin: 50% 50%;
    opacity: 0.3;
    animation-name: app-loading-move;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate
}

.app-loading-spin-dot-item:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.app-loading-spin-dot-item:nth-child(2) {
    top: 0;
    right: 0;
    animation-delay: 0.4s;
}

.app-loading-spin-dot-item:nth-child(3) {
    right: 0;
    bottom: 0;
    animation-delay: 0.8s;
}

.app-loading-spin-dot-item:nth-child(4) {
    bottom: 0;
    left: 0;
    animation-delay: 1.2s;
}

.app-loading-text {
    display: none;
}

html[lang='zh'] {
    .app-loading-text.zh {
        display: inline;
    }
}

html[lang='en'] {
    .app-loading-text.en {
        display: inline;
    }
}


.check-browser-result {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.484);

}

.check-browser-result-content {
    background-color: cornsilk;
    width: 600px;
    padding: 10px;
    border-radius: 8px;
    max-width: 90%;
    font-size: 14px;
    position: relative;

}

.check-browser-result-content p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 0px;
}

.check-browser-result-content button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background-color: initial;
    color: gray;
    cursor: pointer;
}