@charset "utf-8";

.left-side-menu ul {
    margin: 0;
    padding: 0
}

.top-side-menu ul {
    height: 55px;
    display: flex;
}

.left-side-menu li {
    list-style: none;
    cursor: pointer;
}

.left-side-menu.lsm-mini ul li {
    height: 55px;
    display: flex;
    align-items: center;
}


/* lsm-sidebar */
.left-side-menu, .lsm-popup.lsm-sidebar ul li, .lsm-container-left.lsm-mini .lsm-sidebar > ul > li.lsm-sidebar-item > ul > li.lsm-sidebar-item > ul {
    background: #3b3e47;
}

.left-side-menu.top-side-menu {
    background: #20222a;
}


.left-side-menu {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: calc(100% - 80px);
    width: 220px;
}

.top-side-menu {
    width: auto;
}

.lsm-container-left {
    height: calc(100% - 30px);
    transition: all .3s;
    z-index: 100
}

.lsm-container-left li > a.active {
    background: #c55b03;
    color: #fff;
}


.lsm-sidebar a {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-height: 40px;
    color: #b2b8be;
    /*transition: all .3s;*/
    transition: none;
}

.lsm-sidebar.top-side-menu a {
    max-height: 55px;
}


.lsm-container-left ul > li > a, .lsm-container-left ul > li > a span {
    line-height: 55px;
    max-height: 55px;
}

.lsm-container-left ul > li > a span {
    width: 130px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lsm-sidebar a span {
    margin-left: 12px;
}

.lsm-sidebar.top-side-menu a span {
    margin-left: 0;
    white-space: nowrap;
}

.lsm-sidebar-item {
    position: relative;
}

.lsm-sidebar-item.lsm-sidebar-show {
    border-bottom: none;
}

.lsm-sidebar-item ul {
    display: none;
    background: rgba(0, 0, 0, .1);
}

.lsm-sidebar-item.lsm-sidebar-show ul {
    display: block;
}


.lsm-container-left ul:first-child > li.lsm-sidebar-item > a:before {
    height: 55px;
}

.lsm-sidebar .lsm-sidebar-icon {
    font-size: 20px;
    position: absolute;
    margin-left: -1px;
}

.lsm-sidebar-more {
    font-size: 12px;
    transition: transform .3s;
}

.lsm-sidebar-show > a > i.lsm-sidebar-more {
    transform: rotate(-180deg);
}

.lsm-sidebar-show > a:before, .lsm-sidebar-item > a:hover:before {
    opacity: 1;
    background: #0b0d0e;
}

.lsm-sidebar-item li > a:hover, .lsm-popup > div > ul > li > a:hover {
    color: #fcc424;
}

.lsm-mini li a i.open-fold {
    display: none;
}

.lsm-expand-btn {
    height: 30px;
    display: flex;
    justify-content: flex-end;
}

.lsm-mini-btn {
    height: 30px;
    width: 35px;
    display: flex;
    align-items: center;
}

.lsm-mini-btn i {
    color: hsla(0, 0%, 100%, .8);
    font-size: 16px;
    cursor: pointer;
}

.lsm-mini-btn i.fold {
    transform: rotate(-180deg);
}

.lsm-mini-btn i:hover {
    color: #fff;
}

.lsm-mini-btn input[type="checkbox"] {
    display: none;
}

.lsm-mini .lsm-container-left, .lsm-mini .lsm-container-left {
    width: 60px;
}

.lsm-container-left .slimScrollDiv {
    position: relative;
    overflow: auto;
    width: auto;
    height: 100%;
    margin-right: -17px;
}

.lsm-container-left .slimScrollDiv .lsm-scroll {
    height: 100%;
    overflow-y: auto;
}

.lsm-container-left .slimScrollDiv .lsm-scroll .lsm-sidebar {
    height: 100%;
    position: relative;
}

.lsm-container-left .slimScrollDiv .lsm-scroll .lsm-sidebar ul:first-child {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    height: 100%;
    width: 100%;
}

.lsm-container-left .slimScrollDiv .lsm-scroll .lsm-sidebar.top-side-menu ul:first-child {
    overflow: hidden;
}


.lsm-container-left.lsm-mini .lsm-sidebar .lsm-sidebar-icon { /* margin-left:-2px; */
}

.left-side-menu.lsm-mini ul:first-child > li.lsm-sidebar-item > a span {
    display: none;
}

.left-side-menu.lsm-mini ul:first-child > li.lsm-sidebar-item > a > i.lsm-sidebar-more {
    margin-right: -20px;
}

.lsm-container-left.lsm-mini .lsm-sidebar > ul > li.lsm-sidebar-item > ul > li.lsm-sidebar-item > ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 180px;
    width: 180px;
    z-index: 99;
    bottom: 0px;
    top: 0px;
    overflow: hidden;
}

.left-side-menu.lsm-mini ul:first-child > li > ul {
    display: none;
}

.transform {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.lsm-popup {
    z-index: 1;
    display: block;
    position: absolute;
}

.lsm-popup.second {
    left: 59px;
    max-height: calc(100% - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    width: 187px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.top-side-menu .lsm-popup.second {
    top: 55px;
    background-color: #20222a;
    border: none;
    max-height: 300px;
    position: fixed;
}

.left-side-menu.lsm-mini .lsm-popup.second ul li {
    height: 40px;
}

.left-side-menu.lsm-mini .lsm-popup.third ul li {
    height: 40px;
}

.lsm-popup.second li a i.open-fold {
    display: block;
    transform: rotate(-90deg);
}

.left-side-menu .lsm-popup.second ul li i.open-fold {
    right: 10px;
}

.lsm-popup.second a {
    height: 40px;
    width: 100%;
}

.lsm-popup.third {
    left: 245px;
    width: 187px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 2;
}

.lsm-sidebar.lsm-popup i {
    margin-left: 10px;
}

.lsm-sidebar.lsm-popup span {
    width: 117px;
    text-indent: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lsm-sidebar.lsm-popup.second ul li span {
    width: 130px;
}

.lsm-sidebar.lsm-popup.third ul li span {
    width: 140px;
}

.lsm-popup.third a {
    height: 40px;
}

.lsm-popup.third.lsm-sidebar > div > ul {
    display: block;
}

.lsm-popup div {
    background: #0b0d0e;
    border-radius: 5px;
}

.lsm-popup .lsm-sidebar-icon {
    display: none;
}

.lsm-popup.lsm-sidebar a span {
    margin-left: 0px;
}

.lsm-popup.lsm-sidebar > div > ul > li.lsm-sidebar-item > ul {
    position: absolute;
    top: 0px;
    left: 180px;
    width: 180px;
    z-index: 99;
}

.lsm-popup.lsm-sidebar ul li:last-child, .lsm-popup > div > ul > li:last-child > a {
    border-radius: 0 0 5px 5px;
}

.lsm-sidebar i {
    width: 20px;
    text-align: center;
    margin-left: 20px;
    font-size: 14px;
}

.lsm-sidebar.top-side-menu i {
    width: auto;
    margin-left: 0;
}

.lsm-sidebar span {
    font-size: 12px;
}

.left-side-menu ul li ul li i {
    margin-left: 30px;
}

.left-side-menu ul li i.open-fold {
    position: absolute;
    top: 0;
    right: 20px;
}

.top-side-menu ul li i.open-fold {
    position: inherit;
    margin-left: 5px;
}

.left-side-menu .second ul li i.open-fold {
    top: -8px;
}

.left-side-menu ul li ul li ul li i {
    margin-left: 45px;
}

.left-side-menu ul li a {
    text-decoration: none;
    border-left: 2px solid rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
}

.top-side-menu ul li a {
    border: none;
}

.left-side-menu ul li a:hover {
    border-left: 2px solid #0071C6;
    color: #fcc424;
    background: #0b0d0e;
}

.top-side-menu ul li a:hover {
    border: none;
}

.left-side-menu.lsm-mini ul li a {
    border-left: none;
    height: 100%;
    width: 100%;
}

.left-side-menu ul li.current a {
    border-left: 2px solid #0071C6;
    background: #0b0d0e;
    color: #fcc424;
}

.left-side-menu.lsm-mini ul li.current a {
    border-left: none;
}

.left-side-menu.lsm-mini ul li.current-parent > a:first-child {
    background: #0b0d0e;
}

.left-side-menu ul li.current-parent > a:first-child {
    color: #fcc424;
}

.slimScrollDiv::-webkit-scrollbar {
    width: 17px;
    height: 17px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar, ::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(144, 146, 152, .3);
}

::-webkit-scrollbar, ::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

.header .header-nav-search .header-nav-search-input::-ms-clear {
    display: none;
}

.header .header-nav-search .header-nav-search-input::-ms-reveal {
    display: none;
}

.header .nav-bar.top-side-menu li a {
    padding: 0 0 0 5px;
}

.header .nav-bar.top-side-menu .second li {
    height: 40px;
    width: 100%;
}

.header .nav-bar.top-side-menu .second li a {
    padding: 0;
}

.header .nav-bar.top-side-menu .second li a i:first-child {
    margin-left: 15px;
    width: 15px;
}

.header .nav-bar.top-side-menu .second li a span {
    text-align: left;
}

.header .nav-bar.top-side-menu .second li a i.open-fold {
    position: absolute;
    right: 10px;
    margin: 0;
}

.top-side-menu .lsm-popup.third {
    border: none;
    background-color: #20222a;
}

.top-side-menu .lsm-popup div {
    background-color: #20222a;
}

.header .nav-bar.top-side-menu .third li {
    height: 40px;
}

.header .nav-bar.top-side-menu .third li a {
    padding: 0;
    margin-left: 15px;
}


.header .nav-bar.top-side-menu .third li a span {
    text-align: left;
    width: 150px;
}


.left-side-menu .second li.current-parent > a:first-child {
    background: #0b0d0e;
}

.left-side-menu .second li.current-parent > a:first-child {
    color: #fcc424;
}

.top-side-menu {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

#rightTabs {
    position: relative;
}

#rightTabs ul:first-child {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}

.top-prev-btn, .top-next-btn {
    font-size: 15px;
    position: absolute;
    top: 0;
    color: hsla(0, 0%, 100%, .7) !important;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.top-prev-btn:hover, .top-next-btn:hover {
    color: #fff;
}

