/*
 *   大屏展示 - 样式表
 *   Author: YuFan
*/
::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #dedee4;
    border-radius: 4px;
}

body {
    -moz-osx-font-smoothing: grayscale;
    font: 12px -apple-system, "SF UI Text", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Zen Hei", sans-serif !important;
    background: #02021e;
    color: #525e71;
}

a {
    cursor: pointer;
}

.layui-body {
    top: 50px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: flex;
    justify-content: center;
}

.layui-body-preview {
    top: 0 !important;
}

.xo-console-screen-edit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0;
    overflow: hidden;
}

.xo-console-screen-edit-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.xo-console-screen-edit-content .screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen-edit-preview {
    user-select: none;
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    transition: all .05s linear;
}

.layui-body-preview .screen-edit-preview {
    box-shadow: none !important;
    transition: none !important;
}

.screen-edit-preview-component {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.screen-edit-preview-component .-screen-widget {
    position: absolute !important;
    margin: 0 !important;
    cursor: pointer;
    box-sizing: border-box;
}

.screen-edit-preview-component .-screen-widget .-screen-widget-wraper {
    box-sizing: border-box;
}

/*
 *  loading
*/
.loader {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    -webkit-animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    width: 100px;
}

.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) {
    -webkit-animation-delay: -50ms;
    animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
    -webkit-animation-delay: -100ms;
    animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
    -webkit-animation-delay: -150ms;
    animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
    -webkit-animation-delay: -200ms;
    animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
    -webkit-animation-delay: -250ms;
    animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}

@-webkit-keyframes spin {
    0%, 15% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%, 15% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-progress {
    position: absolute;
    height: 1px;
    width: 100px;
    border-radius: 5px;
    background-color: #383838;
    bottom: -200px;
}

.loader-progress-bar {
    background-color: #efefef;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    max-width: 100%;
    height: 1px;
    border-radius: 5px;
    text-align: right;
    transition: all .1s;
    -webkit-transition: all .1s;
}