* {
    margin: 0;
    padding: 0;
}

body {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 14px;
    background-size: cover;
}

:root {
    --disable: #e6e6e6 !important;
    --color_main: #1a2226 !important;
    --color_primary: #18bc9c !important;
    --color_warning: #FFCB52 !important;
    --color_danger: #ff0000 !important;
    --color_blue: #3498db !important;
    --color_cyan: #00ffff !important;
    --color_purple: #C165DD !important;
    --color_green: #1cdcb6 !important;
    --color_gray: #d9d9d9 !important;
}

form {
    font-size: 13px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #999999;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

thead tr {
    background-color: #fafafa;
}

tbody tr:hover {
    background-color: #EEEEEE;
}

th, td {
    height: 39px;
    line-height: 39px;
    border: 1px solid #e6e6e6;
}

th {
    border-width: 0;
}

td {
    border-width: 1px 0 0 0;
    max-width: 200px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.fa-folder-open-o, .fa-folder-o {
    width: 20px;
}

td img {
    height: 30px;
    vertical-align: middle;
    margin: 0 2px;
}

hr {
    height: 1px;
    margin: 10px 0;
    border: 0;
    clear: both
}

.clear {
    clear: both;
}

input[readonly] {
    background-color: var(--disable);
}

/*去除右边箭头*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.hidden {
    display: none;
}

.w15 {
    width: 15% !important;
}

.w25 {
    width: 25% !important;
}

.w30 {
    width: 30% !important;
}

.w49 {
    width: 49% !important;
}

.w50 {
    width: 50% !important;
}

.w83 {
    width: 83% !important;
}

.w85 {
    width: 85% !important;
}

.w87 {
    width: 87% !important;
}

.w100 {
    width: 100% !important;
}

.w-75 {
    width: calc(100% - 75px) !important;
}

.wd30 {
    width: 30px !important;
}

.wd100 {
    width: 100px !important;
}

.wd200 {
    width: 200px !important;
}

.wd220 {
    width: 220px !important;
}

.wd250 {
    width: 250px !important;
}

.wd300 {
    width: 300px !important;
}

.wd400 {
    width: 400px !important;
}

.wd800 {
    width: 800px !important;
}

.ml10 {
    margin-left: 10px;
}

.ml200 {
    margin-left: 200px;
}

.pl20 {
    padding-left: 20px;
}

.pl50 {
    padding-left: 50px;
}

.pl100 {
    padding-left: 100px;
}

.ar15 {
    position: absolute;
    top: 15px;
    right: 15px;
}

.weight-14 {
    font-size: 14px;
    font-weight: bold;
}

.weight-26 {
    font-size: 26px;
    font-weight: bold;
}

.fwb {
    font-weight: bold;
}

.overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pointer {
    cursor: pointer;
}

.del {
    color: var(--color_danger);
}

.login-bg {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/login-bg-b.png");
}

.login-div {
    width: 300px;
    min-height: 300px;
    position: absolute;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 50px;
}

.avatar-img {
    width: 100px;
    height: 100px;
    margin: 10px auto;
    border-radius: 50%;
    display: block;
}

.username_span {
    display: block;
    text-align: center;
    font-size: 24px;
    margin: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.login-form-item {
    height: 38px;
    margin: 25px auto;
    clear: both;
}

.login-form-label {
    display: block;
    float: left;
    width: 40px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e6e6e6;
    text-align: center;
    border-radius: 2px 0 0 2px;
    background: #FBFBFB;
    /*元素尺寸等于内容尺寸*/
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    /*不换行*/
    white-space: nowrap;
}

.login-form-inline {
    float: left;
    width: 260px;
}

.login-form-input {
    width: 100%;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    /*无边框*/
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.get_code {
    float: right;
    width: 49%;
    height: 38px;
    border-radius: 2px;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
}

.btn {
    display: inline-block;
    height: 33px;
    line-height: 33px;
    padding: 0 10px;
    background-color: #18bc9c;
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
    outline: none;
    border: none;
}

.btn:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.btn-sm {
    height: 20px;
    line-height: 20px;
    padding: 0 5px;
    margin: 0 2px;
}

.btn-big {
    height: 38px;
    line-height: 38px;
    width: 100%;
    font-size: 14px;
}

.btn-default {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #C9C9C9;
}

.btn-default:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.btn-normal {
    background-color: #1E9FFF
}

.btn-warning {
    background-color: #f39c12;
}

.btn-danger {
    background-color: #F05050;
}

.btn-info {
    background-color: #b7ba6b;
}

.btn-disabled, .btn-disabled:hover {
    cursor: not-allowed;
    opacity: 0.7
}

.btn-right {
    position: absolute;
    width: 70px;
    margin: 1px 0 0 5px;
}

.bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.bg-primary {
    background-color: #18bc9c;
}

.bg-warning {
    background-color: #f39c12;
}

.bg-danger {
    background-color: #F05050;
}

.bg-blue {
    background-color: #3498db;
}

.bg-green {
    background-color: #1aad19;
}

.bg-cyan-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #20b2aa), color-stop(1, #00ffff));
}

.bg-blue-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #1153fc), color-stop(1, #1de5ea));
}

.bg-purple-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #5C27F1), color-stop(1, #C165DD));
}

.bg-green-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #08c792), color-stop(1, #1cdcb6));
}

.bg-yellow-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFb533), color-stop(1, #FFe324));
}

.bg-orange-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #F05050), color-stop(1, #FFCB52));
}

.bg-red-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dc143c), color-stop(1, #ff0000));
}

.bg-gray-gradient {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d9d9d9), color-stop(1, #f1f4f6));
}

.popup {
    position: fixed;
    display: none;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -95%);
    z-index: 99999;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ffffff;
    max-height: 200px;
    overflow-y: auto;
}

.dialog {
    position: fixed;
    min-width: /*600px*/95%;
    min-height: /*500px*/95%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 99999;
    background-color: #ffffff;
}

.dialog-header {
    height: 40px;
    line-height: 40px;
    background: #1a2226;
    box-sizing: border-box;
    color: #ffffff;
    vertical-align: middle;
}

.dialog-span {
    margin: 0px 5px;
}

.dialog-span-right {
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    float: right;
}

.dialog-span-right:hover {
    color: #CCCCCC;
}

.dialog-body {
    height: calc(100% - 80px);
    box-sizing: border-box;
}

.dialog-footer {
    position: fixed;
    width: 100%;
    height: 55px;
    line-height: 55px;
    bottom: 0;
    background: #eeeeee;
    box-sizing: border-box;
    text-align: center;
}

.dialog-footer .btn { padding: 0px 20px; }

.confirm {
    position: fixed;
    min-width: 280px;
    z-index: 99999;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background: #ffffff;
}

.confirm-header {
    height: 40px;
    line-height: 40px;
    background: #1a2226;
    box-sizing: border-box;
    color: #ffffff;
    vertical-align: middle;
}

.confirm-span {
    margin: 0px 5px;
}

.confirm-body {
    line-height: 24px;
    padding: 20px;
    word-break: break-all;
    box-sizing: border-box;
}

.confirm-footer {
    text-align: center;
    height: 50px;
    line-height: 50px;
    background: #eeeeee;
    box-sizing: border-box;
}

.nav-div {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.nav-header {
    height: 50px;
}

.nav-left {
    position: relative;
    width: 230px;
    height: calc(100% - 50px);
    overflow-x: hidden;
    background-color: #1a2226;
    z-index: 999;
    float: left;
}

.nav-content {
    position: relative;
    z-index: 998;
    width: calc(100% - 230px);
    height: calc(100% - 50px);
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    background: #f1f4f6;
    float: left;
}

.nav-logo {
    position: absolute;
    width: 230px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    background: #1a2226;
    display: inline-block;
}

.nav-header-item {
    position: relative;
    width: 80px;
    height: 100%;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    float: left;
}

.nav-header-item:hover {
    background: #f8f8f8;
}

.nav-header-item a {
    display: block;
}

.nva-left-item {
    line-height: 40px;
    cursor: pointer;
}

.nva-left-item a {
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    color: #b8c7ce;
}

.left-user {
    position: fixed;
    width: 230px;
    text-align: center;
    margin: 15px 0;
    background-color: #1a2226;
    color: #b8c7ce;
    display: inline-flex;
}

.left-user-avatar {
    width: 50px;
    height: 50px;
    margin: 0 20px;
    border-radius: 50%;
}

.left-user-name {
    width: 140px;
    text-align: left;
}

.left-user-name > div {
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nva-left-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.nva-left-item > a {
    padding-left: 20px;
    background-color: #1a2226;
}

.nav-left-ul {
    position: fixed;
    top: 130px;
    width: 230px;
    height: calc(100% - 130px);
    overflow-y: auto;
}

/*隐藏滚动条但可以滚动*/
.nav-left-ul::-webkit-scrollbar {
    display: none;
}

.nav-left-dl {
    display: none;
}

.nav-left-dl a {
    padding-left: 38px;
    background-color: rgba(255, 255, 255, 0.05)
}

.nav-left-dl-a {
    background-color: #18bc9c !important;
    color: #ffffff !important;
}

.nav-left-itemed .nav-left-dl {
    display: block;
}

.nav-frame {
    height: 100%;
    overflow: hidden;
}

.frame {
    width: 100%;
    border: none;
    height: 100%;
}

.fa-warning {
    color: #f39c12;
}

.container {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 10px;
    overflow-y: auto;
    background: #ffffff;
}

.container-title {
    width: calc(100% - 30px);
    padding: 0 15px;
    background-color: #e8edf0;
}

.container-title .title {
    height: 40px;
    line-height: 40px;
}

.container-title .select {
    display: inline-block;
    padding: 0px 15px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 5px;
    float: left;
    border-bottom: 0;
    background-color: #d8e0e6;
    cursor: pointer;
}

.container-title .selected {
    background-color: #FFFFFF;
}

.container-content {
    height: calc(100% - 80px);
    overflow-y: auto;
    clear: both;
}

.container-top {
    height: 30px;
    line-height: 30px;
    margin: 15px 0;
    padding: 0 15px;
}

.container-table {
    width: calc(100% - 30px);
    margin: 15px;
    border: 1px solid #e6e6e6;
    border-spacing: 0;
}

.container-view {
    width: calc(100% - 30px);
    margin: 15px;
}

.container-page {
    margin-bottom: 15px;
    padding: 0 15px;
}

.container-echarts {
    position: relative;
    clear: both;
    width: 95%;
    left: 50%;
    transform: translate(-50%);
}

.container-input {
    padding: 0 10px;
    width: 120px;
    height: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 0 2px 2px 0;
    /*元素尺寸等于内容尺寸*/
    box-sizing: border-box;
    /*无边框*/
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.container-item {
    min-width: 180px;
    float: left;
    padding: 20px;
    font-size: 13px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.container-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    margin-right: 20px;
}

.container-detail {
    display: grid;
    padding: 20px;
    border-radius: 10px;
}

.view_content {
    border: 1px solid #e6e6e6;
}

.page {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
}

.page-count {
    padding: 0 10px;
}

.cur-page {
    height: 29px;
    line-height: 29px;
    text-decoration: none;
    border: 1px solid #e2e2e2;
    background-color: #18bc9c;
    color: #ffffff;
    cursor: default;
}

.en-page {
    text-decoration: none;
    border: 1px solid #e2e2e2;
    background-color: #ffffff;
    color: #333;
    cursor: pointer;
}

.en-page:hover {
    color: #18bc9c;
}

.dis-page {
    text-decoration: none;
    border: 1px solid #e2e2e2;
    background-color: #ffffff;
    color: #d2d2d2;
}

.num-page {
    padding: 0 5px;
    width: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.str-page {
    padding: 0 10px;
}

.page-jump {
    padding: 0 10px;
    color: #999999;
}

.page-jump input {
    width: 36px;
    height: 26px;
    line-height: 26px;
    padding: 0 5px;
    text-align: center;
    margin: 0 10px;
    vertical-align: top;
    box-sizing: border-box;
}

.form {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
}

.form-content {
    padding: 10px;
}

.layui-laydate {
    top: 0 !important;
    left: 50% !important;
}

.form-item {
    margin: 13px 0;
}

.form-label {
    display: inline-block;
    float: left;
    width: 10%;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-inline {
    display: inline-block;
    width: 75%;
    height: 100%;
}

.form-input {
    display: inline-block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-date {
    padding: 0 10px;
    width: 100%;
    min-height: 30px;
    line-height: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 0 2px 2px 0;
    outline: none;
}

.form-upload {
    width: 83%;
}

.select-disable {
    background-color: var(--disable);
}

.form-select {
    display: inline-block;
    float: left;
    width: calc(100% - 20px);
    height: 100%;
}

.form-selector {
    display: inline-block;
    float: left;
    width: 20px;
    height: 30px;
    text-align: center;
}

.form-radio {
    float: left;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
    cursor: pointer;
}

.form-textarea {
    white-space: pre-line;
    height: 150px;
    resize: none;
    overflow: auto;
}

.edui-editor {
    width: calc(100% + 20px) !important;
}

.radio-i {
    margin-right: 5px;
    color: #bbbbbb;
    font-size: 16px;
}

.radio-i:hover {
    color: #18bc9c;
}

.radio-disable .radio-i {
    color: #bbbbbb !important;
}

.fa-toggle-on, .fa-toggle-off {
    font-size: 20px;
}

.fa-dot-circle-o, .fa-toggle-on, .fa-check-square {
    color: #18bc9c;
}

.fa-square-o {
    color: #bbbbbb;
}

.select-ul {
    position: absolute;
    width: calc(75% + 5px);
    max-height: 240px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .08);
    outline: none;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.select-ul li {
    padding: 0 10px;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.li-hover {
    background: #18bc9c;
    color: #ffffff;
}

.li-selected {
    color: #cccccc;
    cursor: no-drop !important;
}

.select-text {
    background: #e6e6e6;
    padding: 0 5px;
    margin-right: 10px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    display: inline-block;
    line-height: 26px;
    height: 26px;
}

.select-text-hover {
    background: #edf1f4;
}

.select-i {
    margin-left: 5px;
}

.thumb-ul {
    margin: 0;
    padding: 0;
    clear: both;
}

.thumb-ul > li {
    display: inline-block;
    float: left;
    width: 100px;
    height: 100px;
    margin: 8px;
}

.thumb-ul .thumb-upload {
    display: block;
    padding: 4px;
    height: 70px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: border 0.2s ease-in-out;
    margin-bottom: 5px;
}

.thumb-ul span {
    width: 96px;
}

.thumb-ul img, .thumb-ul video, .thumb-ul embed {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.loading {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-align: center;
    vertical-align: middle;
    display: none;
}

.loading .svg {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.percent_span {
    display: block;
    height: 20px;
    margin: 0 2px;
    border-radius: 2px;
    background-color: #CCCCCC
}

.percent_div {
    background-color: #1aad19;
    height: 20px;
    border-radius: 2px;
    width: 0;
}

.percent_num {
    text-align: center;
    line-height: 70px;
    font-size: 24px;
}

.check-box {
    width: 100%;
    padding: 0 10px 10px 10px;
    border: 1px solid #e6e6e6;
}

.check-box ul {
    margin-left: 20px;
}

.check-box ul i {
    margin-left: 10px;
}

.check-box li {
    margin-top: 8px;
}

.check-box i {
    width: 14px;
    margin-right: 5px;
    font-size: 16px;
    text-align: center;
    vertical-align: middle
}

.check-box i:hover {
    color: #18bc9c;
}

.check-disable i {
    color: #bbbbbb !important;
}