@charset "UTF-8";
.layui-input, .layui-select {
    width: 100%;
    height: 38px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    transition: border-color .2s;
    outline: none;
    padding: 0 10px;
}

.layui-select {
    padding: 0 16px 0 10px;
    appearance: none;
    background-image: url(../img/select.png?time=202310111832);
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 14px 14px;
}

.layui-textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    transition: border-color .2s;
    outline: none;
    padding: 10px 10px;
}

.layui-input:focus,
.layui-select:focus,
.layui-textarea:focus {
    border: 1px solid #1890ff;
}

.layui-checkbox {
    appearance: none;
    width: 15px;
    height: 15px;
    transition: background-image .25s;
    background-image: url(../img/checkbox_normal.png?time=202310111832);
    cursor: pointer;
    margin: 0;
    padding: 0;
    outline: none;
    background-size: 100% 100%;
    vertical-align: middle;
    font-size: 0;
}

.layui-checkbox:checked {
    background-image: url(../img/checkbox_checked.png?time=202310111832);
}

.layui-radio-label {
    display: inline-block;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.layui-radio-label > input {
    width: 14px;
    height: 14px;
    appearance: none;
    position: absolute;
    left: 0;
    top: 2px;
    transition: background-image .25s;
    background-image: url(../img/radio_normal.png?time=202310111832);
    border-radius: 7px;
    border: 0;
    background-size: 100% 100%;
    margin: 0;
    padding: 0;
}

.layui-radio-label > input:checked {
    background-image: url(../img/radio_checked.png?time=202310111832);
}

.layui-radio-label > span {
    display: inline-block;
    width: auto;
    height: 16px;
    line-height: 16px;
    padding-left: 17px;
    user-select: none;
    margin: 0;
}

.layui-radio-label > input:checked + span {
    color: #1890ff;
}

.layui-checkbox-label {
    display: inline-block;
    height: 16px;
    line-height: 15px;
    cursor: pointer;
    font-size: 0;
}

.layui-checkbox-label > input {
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    font-size: 0;
    vertical-align: middle;
}

.layui-checkbox-label > span {
    margin: 0;
    white-space: nowrap;
    user-select: none;
    transition: color .25s;
    font-size: 12px;
    padding: 0 0 0 3px;
    vertical-align: middle;
}

.layui-checkbox:checked + span {
    color: #1890ff;
}

.layui-button {
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    margin: 0;
    transition: all .1s;
    border: 0;
    background-color: white;
    padding: 0 20px;
    height: 40px;
    opacity: 1;
    font-size: 12px;
}

.layui-button:hover {
    opacity: 0.6;
}

.layui-button:active {
    opacity: 1;
}

.layui-button.primary {
    color: white;
    background-color: #1890ff;
    border: 1px solid #1890ff;
}

.layui-button.plain {
    background-color: #e8f4ff;
    border: 1px solid #a3d3ff;
    color: #1890ff;
    opacity: 1;
}

.layui-button.plain:hover {
    background-color: #1890ff;
    color: white;
    opacity: 1;
}

.layui-button.plain:active {
    background-color: #1890ff;
    color: white;
    opacity: .6;
}

.layui-button.err {
    background-color: #ffeded;
    border: 1px solid #ffb6b6;
    color: #ff4949;
    opacity: 1;
}

.layui-button.err:hover {
    background-color: #ff4949;
    border: #ffb6b6;
    color: white;
    opacity: 1;
}

.layui-button.err:active {
    background-color: #ff4949;
    border: #ffb6b6;
    color: white;
    opacity: .6;
}

.layui-button.medium {
    color: #666666;
    border: 1px solid #dcdfe6;
    background-color: white;
    opacity: 1;
}

.layui-button.medium:hover {
    background-color: #e8f4ff;
    border: 1px solid #a3d3ff;
    color: #1890ff;
    opacity: 1;
}

.layui-button.medium:active {
    background-color: white;
    color: #1890ff;
    border: 1px solid #1890ff;
    opacity: 1;
}

.layui-aside {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: 200px;
    background-color: #304156;
    box-shadow: 2px 0 6px rgba(0,21,41,.35);
    transition: width .25s;
}

.layui-aside > .logo {
    height: 60px;
    line-height: 60px;
    font-family: "楷体";
    text-align: center;
    color: white;
    font-size: 23px;
}

.layui-aside > ul, 
.layui-aside > ul > li,
.layui-aside > ul > li > ul,
.layui-aside > ul > li > ul, li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.layui-aside > ul {
    display: block;
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    right: 0;
}

.layui-aside > ul > li > div {
    height: 56px;
    line-height: 55px;
    position: relative;
    padding-left: 20px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.layui-aside > ul > li > div[data-active="true"] {
    background-color: rgb(45, 61, 81);
    color: #1890ff;
}

.layui-aside > ul > li > div:hover {
    background-color: rgb(45, 61, 81);
    color: #1890ff;
}

.layui-aside > ul > li > div > img {
    position: absolute;
    width: 17px;
    height: 11px;
    right: 20px;
    top: 50%;
    margin-top: -5px;
    transform: scale(.6);
}

.layui-aside > ul > li > ul {
    display: block;
    height: auto;
    background-color: rgb(31, 45, 61);
}

.layui-aside > ul > li > ul > li {
    display: block;
    height: 50px;
    line-height: 49px;
    color: white;
    padding-left: 40px;
    user-select: none;
    cursor: pointer;
}

.layui-aside > ul > li > ul.hide {
    display: none;
}

.layui-aside > ul > li > ul > li:hover {
    background-color: rgb(0, 21, 40);
    color: #1890ff;
}

.layui-aside > ul > li > ul > li[data-active="true"] {
    background-color: rgb(0, 21, 40);
    color: #1890ff;
}

.layui-header {
    position: absolute;
    left: 200px;
    height: 60px;
    right: 0;
    box-shadow: 0 1px 4px rgba(0,21,41,.08);
}

.layui-header > table {
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.layui-header > table > tbody > tr > td:last-child {
    padding-right: 25px;
}

.layui-header > table > tbody > tr > td:last-child > .exit-button {
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0;
    vertical-align: middle;
}

.layui-header > table > tbody > tr > td:last-child > .avatar {
    margin-left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    user-select: none;
    font-size: 0;
    vertical-align: middle;
}

.layui-header > table > tbody > tr > td:last-child > .nickname {
    font-size: 14px;
    padding-left: 8px;
    vertical-align: middle;
}

.layui-header > table > tbody > tr > td:first-child > img {
    width: 25px;
    height: 25px;
    margin-left: 8px;
    vertical-align: middle;
}

.layui-header > table > tbody > tr > td > .home {
    padding: 0 1px 0 5px;
    cursor: pointer;
    vertical-align: middle;
    user-select: none;
}

.layui-header > table > tbody > tr > td > .nav {
    padding: 0 0 0 2px;
    vertical-align: middle;
    user-select: none;
    color: #97a8be;
    display: inline-block;
}

.layui-body {
    position: absolute;
    left: 200px;
    top: 60px;
    right: 0;
    bottom: 0;
    padding: 20px 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.layui-switch:checked {
    appearance: none;
    width: 40px;
    height: 20px;
    border: 1px solid #1890ff;
    background-color: #1890ff;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    vertical-align: middle;
    transition: border-color .3s,background-color .3s;
    outline: none;
}

.layui-switch:checked:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 21px;
    border-radius: 100%;
    transition: all .3s;
    width: 16px;
    height: 16px;
    background-color: white;
}

.layui-switch {
    appearance: none;
    width: 40px;
    height: 20px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #dcdfe6;
    background-color: #dcdfe6;
    vertical-align: middle;
    transition: border-color .3s,background-color .3s;
    outline: none;
}

.layui-switch:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 100%;
    transition: all .3s;
    width: 16px;
    height: 16px;
    background-color: white;
}

.layui-state.normal {
    background-color: #e8f4ff;
    border: 1px solid #a3d3ff;
    color: #1890ff;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 3px;
    height: 28px;
    display: inline-block;
    line-height: 27px;
    user-select: none;
}

.layui-state.stopped {
    background-color: #ffeded;
    border: 1px solid #ffb6b6;
    color: #ff4949;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 3px;
    height: 28px;
    display: inline-block;
    line-height: 27px;
    user-select: none;
}

.layui-form {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 80px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 20px;
}

.layui-form > .item.block {
    display: flex;
    padding: 10px 0;
}

.layui-form > .item.block > label {
    display: inline-block;
    font-weight: bold;
    height: 38px;
    line-height: 37px;
    width: 100px;
    text-align: right;
}

.layui-form > .item.block > .layui-input,
.layui-form > .item.block > .layui-select {
    flex: 1;
}

.layui-form > .item.block > .tree {
    overflow: hidden;
    clear: both;
    height: auto;
    border: 1px solid #dcdfe6;
    min-height: 100px;
    border-radius: 4px;
    padding: 10px;
    width: 200px;
}

.layui-form > .item.block > .radio {
    height: 38px;
    line-height: 38px;
    font-size: 0;
}

.layui-form > .item.block > .radio > .label-radio {
    display: inline-block;
}

.layui-form-button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    text-align: right;
    padding: 0 20px;
    line-height: 80px;
}

.layui-form-button > .layui-button {
    margin-left: 5px;
}

.layui-file {
    position: relative;
    height: 38px;
    display: block;
}

.layui-file > label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 120px;
    line-height: 38px;
    padding: 0 10px;
    font-weight: normal;
    user-select: none;
    pointer-events: none;
    border-left: 1px solid #dcdfe6;
    border-top: 1px solid #dcdfe6;
    border-bottom: 1px solid #dcdfe6;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.layui-file > button {
    border: 1px solid #1890ff;
    background-color: #1890ff;
    position: absolute;
    z-index: 1;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    top: 0;
    right: 0;
    width: 120px;
    bottom: 0;
    color: white;
    outline: none;
    pointer-events: none;
    display: inline-block;
    user-select: none;
}

.layui-file > input {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    outline: none;
    z-index: 2;
    cursor: pointer;
}