[v-cloak] {
    display: none;
}


html,
body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 14px;
    color: #303133
}

input,
textarea,
keygen,
select,
button {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 14px;
    color: #606266;
}

.ss-background {
    height: 100%;
    white-space: nowrap;
    text-align: center;
    overflow: auto;
    position: relative;

    background-image: url(../../../static/image/logo-bg1.jpg);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
}

.ss-footbar {
    display: inline-block;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    line-height: 2.5em;
    color: #d0d0d0;
}

.ss-desktop {
    display: inline-block;
    height: 100%;
}

.ss-desktop-container {
    display: flex;
    height: 100%;
}

.ss-window {
    margin: 20px 10px;
    width: 600px;
    height: 360px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    align-self: center;
}

.ss-window:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background-color: rgba(235, 235, 235, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.ss-window-container {
    flex-grow: 1;
    margin: 5px;
    border-width: 0px;
    border-radius: 12px;
    background-color: #FFF;
    padding: 20px;
    position: relative;
}

.ss-window-leftPanel {
    width: 320px;
    display: flex;
    flex-direction: column;
}

.ss-leftPanel-header {}

.ss-leftPanel-main {
    flex-grow: 1;
    overflow-y: auto;
}

.ss-leftPanel-foot {}


.ss-leftPanel-main .logoIcon {
    display: inline-block;
    margin-top: 95px;
    width: 80px;
    height: 80px;
    background-image: url(../../../static/image/logo.png);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
}

.ss-leftPanel-main .logoTitle {
    font-size: 20px;
    line-height: 1.5em;
}


@media (prefers-color-scheme: dark) {

    html,
    body {
        background-color: #0f1112;
        color: #E0DFDF;
    }

    .ss-window:after {
        background-color: rgba(14, 18, 18, 0.8);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.8);
    }

    .ss-window-container {
        background-color: #0e1213;
    }

}