body {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    /* background-repeat: repeat; */
    overflow: hidden;
}

#unity-logo {
    margin: 0 auto;
}

#unity-loading-bar {
    top: 25%;
}

#unity-progress-bar-empty {
    position: relative;
    width: 85vw;
    height: 30px;
    margin-top: 30px;
    border: 2px solid #24d5ff;
    border-radius: 40px;
    box-sizing: content-box;
}

#unity-progress-bar-full {
    position: absolute;
    width: 0%;
    height: 30px !important;
    padding: 4px 6px;
    left: 0px;
    top: 0px;
    height: 100%;
    box-sizing: border-box;
    /* transition: all .5s; */
}

#unity-progress-bar-full-bg {
    width: 100%;
    height: 100%;
    background-image: url("../image/progress-2.png");
    background-size: cover;
    border-radius: 10px;
    background-position-x: 0px;
    background-repeat: no-repeat;
    opacity: 0.5;
}

#unity-canvas {
    opacity: 0;
}

.word {
    margin-top: 36vh;
    text-align: center;
    font-size: 30px;
    color: #fff;
}

#configuration {
    position: fixed;
    left: 50%;
    bottom: 11.2vh;
    transform: translateX(-50%);
    text-align: center;
}

#configuration img {
    width: 24.4vw;
}

.iframe-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: #fff;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.iframe-container .close-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 80px;
    height: 32px;
    font-size: 14px;
    background-color: #5085fb;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.not-same-dialog {
    width: 300px;
    padding: 20px;
    position: fixed;
    left: 50%;
    top: 10%;
    background: #fff;
    border-radius: 10px;
    transform: translateX(-50%);
    z-index: 9999;
    font-size: 18px;
}

.not-same-dialog .title {
    text-align: center;
}

.not-same-dialog .back-btn {
    margin: 10px auto 0;
    height: 20px;
    border-radius: 4px;
    user-select: none;
    font-size: 14px;
}

.error-tips-box {
    width: 510px;
    max-width: 90vw;
    position: fixed;
    top: 100px;
    left: 50%;
    z-index: 1000;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    box-sizing: border-box;
}

.error-tips-box .error-title {
    text-align: center;
    font-size: 16px;
    /* font-weight: bold; */
}

.error-tips-box .error-tips-content {
    text-align: center;
    color: #333;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.error-tips-box .error-tips-download {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f4f7fb;
    padding: 40px 0;
    margin-top: 20px;
}

.error-tips-box .error-tips-download .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 20px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 40px;
    color: #5085fb !important;
    height: 100px;
}

.error-tips-box .error-tips-download .btn img {
    width: 48px;
    height: 48px;
}

.error-tips-box .error-tips-download .btn .text {
    margin-top: 5px;
}

.error-tips-box .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.error-tips-box .close-btn img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .error-tips-box {
        top: 50px;
    }

    .error-tips-box .error-tips-download {
        display: none;
    }
}

.version-info-dialog {
    position: fixed;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    z-index: 9999;
    border-radius: 12px;
    padding: 20px 0 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    background-color: #fff;
}

.version-info-dialog .close-btn {
    margin-left: auto;
    margin-bottom: 20px;
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-right: 20px;
}

.version-info-dialog .content {
    width: 600px;
    max-height: 500px;
    overflow-y: auto;
}

.version-info-dialog .content * {
    max-width: 100%;
}
