body {
    overflow: hidden;
    background: #534e4e;
}

a {
    text-decoration: none;
}

#container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    cursor: grab;
}


#container:active {
    cursor: grabbing;
}

#preloader-background {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: #0B0F1D;
}

.preloader-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: auto;
}

.preloader-text {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: white;
}

.preloader-img {
    position: relative;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
}

.preloader-line-container {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
    background: #555555;
}

#preloader-line {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 4px;
    width: 0;
    border-radius: 6px;
    background: #1caad9;
}

/*遮罩*/
.full-src-mask {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #0B0F1D 0%, transparent 20%, transparent 50%, transparent 80%, #0B0F1D 100%);

    pointer-events: none;
}


.v3d-annotation {
    position: absolute;
    top: -16px;
    left: -16px;
    width: auto;
    min-width: 14px;
    height: 26px;
    padding: 2px 8px;
    border: 0px solid transparent;
    border-radius: 0;
    font-size: 36px;
    font-family: sans-serif;
    line-height: 26px;
    text-align: center;
    user-select: none;
    background: transparent;
    cursor: pointer;
    color: #dfb07a;
}

.v3d-annotation-transparent {
    opacity: 0.2;
}

/*WebGL报错提示*/
.v3d-webgl-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    color: #333333;
    background: rgba(0, 0, 0, .75);
    text-align: center;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
    border-color: transparent;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    line-height: 30px;
    padding: 10px 60px;
    z-index: 999;
    display: block;
}

.v3d-webgl-error-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    background: white;
    padding: 30px 0px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.v3d-webgl-error-link {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    color: #333333;
    font-size: 12px;
    margin-top: 30px;
    width: 120px;
}

.v3d-webgl-error-link button {
    background: #333333;
    padding: 5px 25px;
    color: white;
    cursor: pointer;
    border-radius: 2px;
    border-width: 1px;
    position: relative;
    width: 120px;
    font-size: 12px;
    user-select: none;
}

.v3d-webgl-error-link button:hover {
    background: #000000;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5)
}

@media only screen and (max-width: 540px) {
    .v3d-webgl-error-container {
        width: 60%;
    }
}

/*WebGL报错提示-结束*/


/* removes tap blinking on ios devices */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Animation keys */
@keyframes hide {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes show {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes lefthide {
    0% {
        opacity: 1;
        margin-left: 0;
    }

    100% {
        opacity: 0;
        margin-left: -160px;
    }
}

@keyframes leftshow {
    0% {
        opacity: 0;
        margin-left: -160px;
    }

    100% {
        opacity: 1;
        margin-left: 0;
    }
}

@keyframes downhide {
    0% {
        opacity: 1;
        margin-bottom: 0;
    }

    100% {
        opacity: 0;
        margin-bottom: -160px;
    }
}

@keyframes upshow {
    0% {
        opacity: 0;
        margin-bottom: -160px;
    }

    100% {
        opacity: 1;
        margin-bottom: 0;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes scale {
    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(0.6);
    }
}

@media screen and (max-width: 800px) {
    .preloader-container {
        width: 160px;
    }
}