﻿/*--------------------------------------------


    CSS INDEX
    ===================

    1. Core Css
    2. Dashboard One
        2.1 Sidebar Menu
            2.1.1 Horizontal Menu
        2.2 Header Area
        2.3 Page Title Area
        2.4 Fact Area
        2.5 Overview
        2.6 Market value
        2.7 Live Crypto Price
        2.8 Trading History
        2.9 Letest Post
    3. Dashboard Two
    4. Dashboard Three
    5. Bar Chart
    6. Line Chart
    7. Pie Chart
    8. Accroding
    9. Alert
   10. Badge
   11. Button
   12. Cards
   13. Dropdown Button
   14. List Group
   15. Modal
   16. Pagination
   17. Form
   18. Icons
   19. Table Basic
   20. Datatable
   21. Map
   22. Invoice
   23. Login
   24. Pricing
   25. 404 Page
   26. Offset Sidebar
   27. Select
   28. Scroll
   29. Font
   30. Grid
   31. drop move
   32. tabs
   33. TreeView
   34. ChooseCompanyModal
   35. Input
   36. otp Start
   37. File Button
   
-----------------------------------------------------------------------------------*/

@font-face {
    font-family: 'MontserratBlack';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratLight';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratRegular';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratThin';
    src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
}

html,
body {
    height: 100%;
    background-color: #F8F8F8;
    direction: ltr;
    font-family: 'MontserratRegular', serif !important;
    overflow: hidden;
}


/************* Overrite *****/

.wickedpicker {
    z-index: 10001;
}

/************* Overrite *****/

/*------------------------- 1. Core Css -------------------*/



small {
    color: #999999;
    font-weight: 300;
    line-height: 1;
}

label small {
    color: #999999;
}

#menuName {
    color: #dc3545;
    font-size: 1rem;
    max-width: 200px;
    overflow: hidden;
    display: inline-flex;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

.hover-line-a:hover {
    text-decoration: underline;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.hidden {
    display: none;
}

.disabled {
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none; /* 阻止禁用元素的交互 */
}


.animateDigit {
    display: inline-block;
    letter-spacing: 1px;
}

#lockPage {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgb(0 0 0 / 76%);
    z-index: 999999;
}

.lockBox {
    width: 50%;
    height: 100%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

#lockInputPw {
    text-align: center;
    font-size: 3rem;
}

#leftRightMoveBtn {
    display: none;
    position: fixed;
    z-index: 11111;
}

.no-pointer-events {
    pointer-events: none;
}

.round {
    border: 2px solid white;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: black;
    cursor: pointer;
}

#cta{
    width:100%;
    cursor: pointer;
    position: absolute;
}

#cta .arrow{
    left: 14%;
}

#searchDoc li {
    cursor: pointer;
}

.selectLink {
    background: darkslategrey !important;
    border-radius: 8px !important;
}

.selectLink a {
    color: white !important;
}

.arrow {
    position: absolute;
    bottom: 0;
    margin-left: 0px;
    width: 12px;
    height: 12px;
    background-size: contain;
    top:12px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHN0eWxlPi5zdDB7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTMxOS4xIDIxN2MyMC4yIDIwLjIgMTkuOSA1My4yLS42IDczLjdzLTUzLjUgMjAuOC03My43LjZsLTE5MC0xOTBjLTIwLjEtMjAuMi0xOS44LTUzLjIuNy03My43UzEwOSA2LjggMTI5LjEgMjdsMTkwIDE5MHoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzE5LjEgMjkwLjVjMjAuMi0yMC4yIDE5LjktNTMuMi0uNi03My43cy01My41LTIwLjgtNzMuNy0uNmwtMTkwIDE5MGMtMjAuMiAyMC4yLTE5LjkgNTMuMi42IDczLjdzNTMuNSAyMC44IDczLjcuNmwxOTAtMTkweiIvPjwvc3ZnPg==);
}

@keyframes bounceAlphaLeft {
    0% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
    25%{opacity: 0; transform:translateX(10px) scale(0.9);}
    26%{opacity: 0; transform:translateX(-10px) scale(0.9);}
    55% {opacity: 1; transform: translateX(0px) scale(1);}
}

@keyframes bounceAlphaRight {
    0% {opacity: 1; transform: translateX(0px) scale(1);}
    25%{opacity: 0; transform:translateX(10px) scale(0.9);}
    26%{opacity: 0; transform:translateX(-10px) scale(0.9);}
    55% {opacity: 1; transform: translateX(0px) scale(1);}
}

.leftArrow {
    animation-name: bounceAlphaLeft;
    animation-duration:1.4s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}

.rightArrow {
    animation-name: bounceAlphaRight;
    animation-duration:1.4s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}

.leftArrow2 {
    animation-name: bounceAlphaLeft;
    animation-duration:1.4s;
    animation-delay:0.2s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}
.rightArrow2 {
    animation-name: bounceAlphaRight;
    animation-duration:1.4s;
    animation-delay:0.2s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}


.DocSearch {
    --docsearch-searchbox-background: rgba(0,0,0,0.1);
    --docsearch-searchbox-color: #fff;
    --docsearch-searchbox-focus-background: rgba(0,0,0,0.25);
    --docsearch-searchbox-shadow: 0 0 0 0.25rem rgba(255,228,132,0.4);
    --docsearch-text-color: #fff;
    --docsearch-muted-color: rgba(255,255,255,0.65);
    width: 100%;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 0.375rem;
}


#moveTop {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-right: 10px;
}

#moveBottom {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: rotateX(180deg);
    margin-right: 20px;
}

.leftTopMenu {
    display: flex;
}

.styleBorder {
    border-radius: 6px!important;
    box-shadow: 0 0 4px rgba(0,0,0,.12)!important;
}

.menu-drawer-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgb(0 0 0 / 45%);
    pointer-events: auto;
    display: none;
}


.page-container {
    width: 100%;
    height: 100%;
    /*overflow: auto;*/   /* 如果不去掉，顶部header会覆滚动条 */
    -webkit-transition: padding-left 0.3s ease 0s;
    transition: padding-left 0.3s ease 0s;
}

/* 不包含login-form类 */
.page-container.sbar_collapsed {
    padding-left: var(--sideBar-width);
}

.page-content {
    position: relative;
    padding: 0.5rem;
    transition: all .3s;
    height: calc(100% - 75px - 100px);
    /* 产品页面的滚动条 */
    overflow: auto;
}

main {
    position: relative;
    padding: 0.5rem;
    background: white;
    border-radius: 12px!important;
    box-shadow: 0 5px 10px rgba(0,0,0,.12)!important;

    /*为了一个页面看完全部视图*/
    max-height: 100%;
    height: 100%;
    overflow: auto;
}

.bgClean {
    background: none !important;
    box-shadow: none !important;
}

.card:not(div.dt-processing) {
    /*border: none;*/
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    overflow: hidden;
    transition: all .3s;
    margin-left: 5px;
    margin-right: 5px;
    height: 100%;
    border-radius: 12px;
}

.card-body {
    padding: 10px;
}


.h-full {
    height: 100%;
}

.main-content {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #F3F8FB;
}

.main-content-inner {
    padding: 0 30px 50px;
}

img.menu_prodImg {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid #bebebf;
}

img.menu_prodImg2 {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid #bebebf;
}

.menu_prodImg:hover,
.menu_prodImg2:hover {
    cursor: pointer;
}

.menu_iconImg {
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid #bebebf;
    margin: 5px;
}

.mm-active ul {
    background-color: rgba(0, 0, 0, 0.5);
}

.mm-active ul li:hover {
    background-color: #2266c9;
    transition: all 0.5s;
}

.hide1 {
    opacity: 0;
    position: absolute;
    z-index: -9999;
}


input[disabled],
input[readonly] {
    color: darkgrey;
}

input[readonly]:not(input.select-input) {
    background: #fff7eb !important;
}

.imageRemark {
    color: #0d6efd;
}

/*------------------------- END Core Css -------------------*/


/*-------------------- 2.1 Sidebar Menu -------------------*/

.sidebar-menu {
    position: fixed;
    left: calc(var(--sideBar-width) * -1);
    top: 0;
    z-index: 100;
    height: 100vh;
    width: var(--sideBar-width);
    overflow: hidden;
    background: var(--sideBar-bgColor);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    user-select: none;
}

.sidebar-header {
    padding: 19px 32px 20px;
    background: var(--sideBar-bgColor);
    border-bottom: 1px solid #343e50;
}

.sbar_collapsed .sidebar-menu {
    left: 0;
}

.main-menu {
    height: calc(100% - 150px);
    overflow: hidden;
    padding: 0px 10px 0 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu-inner {
    /*overflow-y: scroll;*/
    height: 100%;
}

.slimScrollBar {
    background: #fff!important;
    opacity: 0.1!important;
}


.sidebar-menu .logo{
    text-align: center;
}
.logo a {
    display: inline-block;
    color: white;
    font-size: 1rem;
}

#sideMenu li.selected {
    background: #998360 !important;
    /*background: aquamarine;*/
}
#sideMenu li.selected a {
    color: black !important;
}

#sideMenu li ul li.selected a {
    color: white;
}

.sideFooter {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 10px;
    color: white;
    font-size: 12px;
}


.point {
    content: "\f111";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 5px;
    font-size: 8px;
}

.linkColorGray a {
    color: slategray;
}

.metismenu li ul li a span {
    margin-left: 0;
}

.metismenu >li >a {
    padding-left: 15px!important;
}
.metismenu li a {
    position: relative;
    display: block;
    color: #8d97ad;
    font-size: 14px;
    text-transform: capitalize;
    padding: 7px 15px;
    letter-spacing: 0;
    font-weight: 400;
}

.metismenu li ul li a {
    font-size: 14px;
}

.metismenu li a i {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.metismenu li a:after {
    position: absolute;
    content: '\203A';
    right: 15px;
    top: -9px;
    color: #8d97ad;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.metismenu li.mm-active > a:after {
    transform: rotate(90deg);
}

.metismenu li a:only-child:after {
    content: '';
}

.metismenu li a span {
    margin-left: 5px;
}

.metismenu li.active>a,
.metismenu li:hover>a {
    color: #fff;
}

.metismenu li li a {
    padding: 8px 20px;
}

.metismenu >li:hover>a,
.metismenu >li.active>a {
    color: #fff;
    background: #5258a1;
}

.metismenu li:hover>a,
.metismenu li.active>a {
    color: #fff;
}

.metismenu li:hover>a i,
.metismenu li.active>a i {
    color: #fff;
}

.metismenu li li a:after {
    top: 6px;
}

#recent {
    border: 1px solid white;
}
#recent a {
    position: relative;
    display: block;
    color: #8d97ad;
    font-size: 14px;
    text-transform: capitalize;
    padding: 7px 15px;
    letter-spacing: 0;
    font-weight: 400;
}
#recent ul a:hover {
    background-color: #2266c9 !important;
    color: white;
    transition: all 0.5s;
}

/*-------------------- END Sidebar Menu -------------------*/


/*-------------------- 2.1.1 Horizontal Menu -------------------*/

/*-------------------- END Horizontal Menu -------------------*/


/*-------------------- 2.2 Header Area -------------------*/

.header-area {
    padding: 5px 30px;
    background: #fff;
    border-bottom: 1px solid #d8e3e7;
    /*position: fixed;*/
    width: 100%;
    height: 60px;
    display: flex;
    z-index: 20;
    top: 0;
    right: 0;
    box-shadow: 0 1px 4px rgb(0 21 41 / 8%);
    transition: all 0.3s ease 0s;
}

.header-navbar {
    margin: 10px auto auto;
    transition: all 0.3s ease 0s;
}

#btnShowBar {
    display: none;
    position: fixed;
    right: 6px;
    top: 60px;
    width: 50px;
    height: 50px;
    z-index: 111;
    cursor: pointer;
}

#btnShowBarText {
    display: none;
    position: fixed;
    right: -5px;
    top: 103px;
    width: 50px;
    height: 50px;
    z-index: 111;
    cursor: pointer;
    font-size: 10px;
    color: #D580FF;
    z-index: 1111111;
}

.hideNavTool {
    display: none;
    height: 0 !important;
    transition: all .6s;
}

.header-navbar {
    width: calc(100% - 50px);
}

.header-area .row {
    justify-content: space-between !important;
    width: 100%;
    flex-wrap: nowrap;
}

.header-area .row .clearfix {
    width: auto !important;
}


.nav-btn {
    margin-right: 25px;
    margin-top: 5px;
    cursor: pointer;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.nav-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #b3aaaa;
    margin: 4px 0;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    box-shadow: 0 0 0 4px rgba(99, 96, 96, 0.03);
}

/* notification-area */

.notification-area {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 1;
    /*overflow-x: auto;*/
    /*overflow-y: hidden;*/
    height: 50px;
    display: flex;
    align-items: center;
}

.notification-area > li {
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.notification-area li.settings-btn.active i {
    color: #007BFF;
}

.tableIcon,
.notification-area li i {
    font-size: 26px;
    color: #bdbcbc;
    vertical-align: middle;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.notification-area li:hover > a > i,
.notification-area li:hover > i {
    color: var(--primary-color);
}

/*鼠标移动到浮动窗口里的选项背景*/
.notification-area li > a:hover {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}

.notify-box {
    display: block;
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: fixed;
    right: -350px;
    top: 50px;
    transition: all .4s;
}

.notify-title {
    background: var(--primary-color);
    display: block;
    padding: 18px 30px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
    overflow: hidden;
}

.notify-title a {
    float: right;
    display: inline-block;
    color: #ffee1d;
    font-size: 13px;
    text-decoration: underline;
}

.nofity-list {
    padding: 30px 0;
}

.nofity-list a {
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f2f2;
    padding: 0 30px 15px;
}

.nofity-list a:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.notify-thumb {
    float: left;
    margin-right: 20px;
}

.notify-thumb i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: block;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 23px;
}

.notify-text {
    overflow: hidden;
}

.notify-text p {
    font-size: 14px;
    color: #4e4e4e;
    line-height: 22px;
    margin-bottom: 4px;
}

.notify-text span {
    letter-spacing: 0;
    color: #272626;
    font-size: 11px;
    font-weight: 300;
}

/* notify envelope */

.expanded .notification-area li#full-view-exit {
    display: inline-block;
}

.notification-area li#full-view-exit {
    display: none;
}

.expanded .notification-area li#full-view {
    display: none;
}

.notification-area li#full-view {
    display: inline-block;
}

.nt-enveloper-box .notify-text p {
    margin-bottom: 0;
}

.notify-text span.msg {
    display: block;
    font-size: 12px;
    color: #4e4e4e;
    line-height: 22px;
    margin-bottom: 4px;
    font-weight: 400;
}

.notify-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 4px;
}

/*-------------------- END Header Area -------------------*/

/*-------------------- 2.3 Page Title Area -------------------*/

/*-------------------- END Page Title Area -------------------*/


/*-------------------- 2.4 Fact Area ------------------- */

/*-------------------- END Fact Area ------------------- */


/*-------------------- 2.5 Overview ------------------- */


/*-------------------- END Overview ------------------- */


/*-------------------- 2.6 Market value ------------------- */

/*-------------------- END Market value ------------------- */


/*-------------------- 2.7 Live Crypto Price ------------------- */

/*-------------------- END Live Crypto Price ------------------- */


/*-------------------- 2.8 Trading History ------------------- */


/*-------------------- END Trading History ------------------- */


/*-------------------- 2.9 Letest Post ------------------- */

/*-------------------- END Letest Post ------------------- */


/*-------------------- 3. Dashboard Two ------------------- */

/*-------------------- END Dashboard Two ------------------- */


/*-------------------- 4. Dashboard Three ------------------- */

.testimonial-carousel {
    margin: 60px 0 28px;
}

.tstu-img {
    width: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 20px;
}

.tstu-content {
    overflow: hidden;
}

.tstu-name {
    font-size: 20px;
    color: #fff;
    letter-spacing: 0;
}

.tst-item p {
    color: #fff;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 60px;
}

.testimonial-carousel .owl-dots>div {
    height: 11px;
    width: 11px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.testimonial-carousel .owl-dots .active {
    background: #f7cb3f;
}

/*-------------------- END Dashboard Three ------------------- */


/*-------------------- 5. Bar Chart ------------------- */

/*-------------------- END Bar Chart ------------------- */


/*-------------------- 6. Line Chart ------------------- */


/*-------------------- END Line Chart ------------------- */


/*-------------------- 7. Pie Chart ------------------- */


/*-------------------- END Pie Chart ------------------- */

/*-------------------- 8. Accroding ------------------- */


/*!*-------------------- END Accroding ------------------- *!*/


/*-------------------- 9. Alert------------------- */

.alert {
    letter-spacing: 0;
    font-size: 13px;
    padding: 10px 16px;
}


/* additional content */

.alert-heading {
    margin-bottom: 7px;
}

.alert-dismiss .alert {
    padding: 13px 15px;
}

.alert-dismiss .alert-dismissible .close {
    top: 4px;
    outline: none;
    font-size: 13px;
}

/*-------------------- END Alert------------------- */


/*-------------------- 10. Badge------------------- */

.nav-pills .nav-link {
    padding: 16px 48px;
    padding: 1rem 3rem;
    line-height: 19px;
}

.position-relative {
    overflow: unset !important;
}
/*-------------------- END Badge------------------- */


/*-------------------- 11. Button------------------- */

.btn {
    letter-spacing: 0;
}

.btn-xl {
    padding: 19px 24px;
}

.btn-lg {
    padding: 15px 22px;
}

.btn-md {
    padding: 12px 19px;
}

.btn-xs {
    padding: 3px 5px;
    font-size: 0.75rem;
}

.btn-wd {
    min-width: 100px;
}

#btnHideBar {
    display: none;
}

.is-today button {
    color: white !important;
    background: darkslateblue;
    border-radius: 3px;
}

.btn-flat {
    border-radius: 0;
}

.btn-rounded {
    border-radius: 50px;
}

.btn-orange {
    color: #fff!important;
    background-color: #d68824!important;
    border-color: #d68824!important;
}

.btn-pink {
    color: #fff;
    background: #ff7875 !important;
    border-color: #ff7875 !important;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12) !important;
}

.btn-pink:hover {
    color: #fff;
    background-color: #ff7875;
    border-color: #ff7875;
}

.btn-outline-pink {
    color: #ff7875;
    border-color: #ff7875;
    background-color: transparent;
}

.btn-outline-pink:hover {
    color: #fff;
    border-color: #ff7875;
    background-color: #ff7875;
}

.btn-outline-blue {
    color: #535cc7;
    border-color: #535cc7;
    background-color: transparent;
}

.btn-blue {
    color: #fff!important;
    border-color: #535cc7!important;
    background-color: #535cc7!important;
}

/*文件上传按钮*/
.btn-upload {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.btn-upload + label {
    color: white;
    display: inline-block;
    background: #dc3545;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 3px 5px;
    cursor: pointer;
}

.btn-upload:focus + label,
.btn-upload + label:hover {
    background-color: red;
}

.btn-upload-new {
    cursor: pointer;
}


.popMenu {
    position: fixed;
    padding: 5px;
    background-color: #111;
    width: 180px;
    z-index: 99;
    border-radius: 4px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 200ms linear;
}

#popLocationList.popMenu {
    width: 300px;
    max-height: 400px;
    overflow: auto;
}

.popMenu a {
    position: relative;
    color: #fff;
    transition: all 200ms linear;
    font-weight: 500;
    font-size: 15px;
    border-radius: 2px;
    padding: 5px 15px 5px 20px;
    margin: 2px 0;
    text-align: left;
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    -ms-flex-pack: distribute;
    user-select: none;
}

#popMenuBar {
    position: absolute !important;
}

.popMenuBarShow {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(20px);
}


.popMenu a:hover {
    color: #102770;
    background-color: #ffeba7 !important;
}

.popMenuShow {
    opacity: 1;
    pointer-events: auto;
}

.nav .nav-item button {
    border: 0;
    margin: 4px;
    padding: 4px 12px;
    cursor: pointer;
    background: transparent;
}

.nav .nav-item button.active,
.nav .nav-item button.active:hover {
    background: #e13300;
    color: #fff;
}

.nav-pills .nav-link {
    padding: 0.5rem 1.2rem !important;
    font-size: 1rem;
}

/*!*-------------------- END Button ------------------- *!*/

/*-------------------- 12. Cards ------------------- */

.title {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

.card-bordered {
    border: 1px solid rgba(0, 0, 0, .125);
}

p.card-text {
    margin-bottom: 23px;
}

.card-hoverable {
    cursor: pointer;
}

.card-hoverable:hover {
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 3px 6px 0 rgb(0 0 0 / 14%), 0 5px 12px 4px rgb(0 0 0 / 13%) !important;
}

/*!*-------------------- END Cards ------------------- *!*/


/*!*-------------------- 13. Dropdown Button ------------------- *!*/

.drop-buttons .btn {
    margin-bottom: 1.3em;
}

.dropdown-item {
    font-size: 14px;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}

.select-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    cursor: pointer;
}

/*!*-------------------- END Dropdown Button ------------------- *!*/


/*!*-------------------- 14. List Group ------------------- *!*/

.list-group-item {
    color: #444;
    font-size: 13px;
}

.media-body {
    font-size: 13px;
    line-height: 27px;
}


/*!*-------------------- END List Group ------------------- *!*/


/*!*-------------------- 15. Modal ------------------- *!*/

.child-media {
    padding-left: 100px;
}

.modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.show {
    opacity: 0;
}

#errorModal,
#succModal,
#warModal,
#saveModal,
#confirmModal,
#toastModal {
    z-index: 10001;
}

.modal .modal-dialog {
    transform: translate(0, 0px) !important;
}

.modal.fade .modal-content {
    opacity: 0;
    transform: scale(0.95);
    transition: all .2s ease-in;
}

.modal.show .modal-content {
    opacity: 1;
    /* 从中心放大 */
    transform: scale(1);
    transition: all .2s ease-out;
}


.modal-header {
    padding: 0.5rem 1rem;
}

.modal-footer {
    padding: 0.5rem 1rem;
}

/*-------------------- END Modal ------------------- */


/*-------------------- 16. Pagination ------------------- */


/*-------------------- END Pagination ------------------- */


/*-------------------- 17. Form ------------------- */

#searchPageslist .list-group-item-action:focus,
#searchPageslist .list-group-item-action:hover {
    background-color: rgb(79 70 229);
    border-radius: 8px;
}

.list-group-item-action a {
    transition: none;
}

.list-group-item-action:hover a {
    color: white;
}


.form-control:focus:not(input[readonly]) {
    border: 2px solid rgb(79 70 229) !important;
}

.border-form {
    border: 1px solid lightgray;
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
}

.input-group select {
    border-top-left-radius: .375rem !important;
    border-bottom-left-radius: .375rem !important;
}

.checkbox-orange.form-check-input:checked {
    background-color: #d78b00;
}

input::placeholder {
    color: #cfb9b9 !important;
}

.form-control:not(select) {
    height: 32px;
    font-size: 0.9rem;
}

.input-group-text {
    height: 32px;
    font-size: 0.9rem;
}

.form-control-sm,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    padding: .25rem .5rem;
}

.form-control-lg,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
    padding: .85rem 1rem;
}

label {
    font-weight: 500;
    color: #666;
    display: inline-block;
}

/*-------------------- END Form ------------------- */


/*-------------------- 18. Icons ------------------- */

.simplecolorpicker.fontawesome span.color[data-selected]:after {
    font-family: bootstrap-icons, serif !important;
    content: '\f633' !important;
}

/*-------------------- END Icons ------------------- */


/*-------------------- 19. Table Basic ------------------- */


.xkBorder-bootom-1 {
    border-bottom: 1px solid lightgray;
}

.xk_PropTitleFont {
    color: #8a2be2;
    font-size: 0.9rem;
    font-weight: bold;
}

table .sortIcon {
    width: 20px;
}

.table-bordered {
    /*box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;*/
    border: 0 solid #6c757d2e;
}

table tbody tr,
table tbody tr td {
    transition: background-color .5s;
}

/*
table 上有此类属性，行的颜色都是统一的
加上下线，不然看起来很奇怪
*/
.none-row tbody tr td {
    border-bottom: 1px solid lightgray;
}

table > thead > tr:first-child > th:first-child {
    border-top-left-radius: 10px;
}

table > thead > tr:first-child > th:last-child {
    border-top-right-radius: 10px;
}

/* 最后一行显示一个下线 */
table.dataTable tbody tr:last-of-type td {
    border-bottom: 3px solid #009879 !important;
}

.single-table .table {
    margin-bottom: 0;
}

table thead tr th {
    border-right: 1px solid white !important;
}

table thead tr,
table thead tr th {
    background-color: #009879 !important;
    color: #ffffff !important;
    text-align: left;
    font-weight: 500 !important;
}

/* font */
table thead tr th {
    border-bottom: none;
    font-weight: normal;
}

table thead tr th,
table tbody tr td {
    padding: 5px;
    border-bottom: 1px solid #dddddd;
}

table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

table tr td [class^="ti-"] {
    cursor: pointer;
}

.status-p {
    color: #fff;
    padding: 0px 20px 1px;
    border-radius: 20px;
    display: inline-block;
    text-transform: capitalize;
    vertical-align: middle;
}

/*-------------------- END Table Basic ------------------- */


/*-------------------- 20. Datatable ------------------- */
.dt-scroll-body table.dataTable {
    min-height: 100px;
}

.table.dataTable tr td {
    font-size: 0.75rem;
    color: #6e777f;
    padding: 0.5rem;
}

.dataTable tr.dtrg-group th {
    text-align: left !important;
    color: black;
    padding: 0.5rem;
}

.dt-container .dt-buttons .btn {
    border: 1px solid;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* 正常行的颜色 */
table>tbody>tr,
table.table.dataTable>tbody>tr>td {
    box-shadow: unset !important;
    background-color: white;   /* 不设置的话,第一列背景会是透明的 */
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_desc:after{
    right: 5px;
}

table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before {
    color: #e6e6e6;
    opacity: 1;
}

.dt-button-collection .dropdown-menu a.dt-button {
    border-bottom: 1px solid #f9eeee5e;
    background-color: #275fb3;
}

div.dt-container .dt-paging .dt-paging-button {
    padding: unset !important;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    border: unset !important;
    background: unset !important;
}

.even td,
.odd td {
    color: slategray !important;
}

.dtr-details li {
    max-width: unset;
    
    text-align: unset !important;
}

.dtr-title {
    min-width: 150px !important;
    text-align: left;
}

.none-hover.even:hover,
.none-hover.odd:hover {
    background-color: unset !important;
}

/* 偶数行的颜色 */
table.table.dataTable:not(.none-row)>tbody>tr:nth-of-type(even)>td {
    background-color: #f3f3f3;
}

/*鼠标移动上的颜色*/
table>tbody>tr:not(.none-hover):not(.fc-scrollgrid-section):not(.selected):hover td:not(.fc-view td),
table.table.dataTable>tbody>tr:not(.none-hover):not(.selected):hover:not(.selected) td:not(.fc-view td) {
    background-color: #e0ebff;
}

.selected,
table.table.dataTable>tbody>tr.selected>td {
    background: #7a7dbf !important;
    color: white;
}

/*修改过的行颜色*/
.modified:not(th):not(tfoot td)>td {
    background-color: rgba(250, 235, 215, 0.40) !important;
    cursor: pointer;
}
.modified:not(th):not(tfoot td) {
    background-color: rgba(250, 235, 215, 0.40) !important;
    cursor: pointer;
}

/* 修改的input */
.modifiedInput {
    background: antiquewhite;
    border: 2px solid #6c757d;
}

/* 可修改的单元格 */
.canModify {
    background-color: #9ae5e5;
}

table.dataTable.table-striped>tbody>tr.odd.selected>*,
table.dataTable>tbody>tr.selected>* {
    box-shadow: inset 0 0 0 9999px rgb(93 159 255 / 90%);
    color: white !important;
}

table.dataTable.table-striped>tbody>tr.odd>* {
    box-shadow: unset;
}

.smallCell {
    /* 有的字母太长了就会看不到了 */
    /*max-width: 70px;*/
    text-align: center;
}

.middleCell {
    max-width: 100px;
    text-align: center;
}

.largeCell {
    max-width: 200px;
    min-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

table.dataTable > thead > tr > th.smallCell {
    white-space: break-spaces !important;
}

.nowrap {
    white-space: nowrap !important;
}

/*显示多少数量*/
div.dataTables_wrapper div.dataTables_info {
    color: #a5a3ae;
}

/* align */
table thead,
table tbody {
    vertical-align: middle !important;
}

div.dataTables_wrapper div.dataTables_length select {
    width: 76px;
    margin: 0 10px;
}

/* datatable-primary */

.datatable-primary thead {
    background: #4336fb;
    color: #fff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: none;
    background: transparent;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0.3rem;
}

div.dt-container .dt-paging .dt-paging-button:active {
    background: unset !important;
    box-shadow: unset !important;
}

.page-link {
    text-align: center;
    color: #5d596c;
    border: 0 !important;
    box-shadow: 0 0.125rem 0.25rem rgb(165 163 174 / 30%) !important;
    padding: 0.594rem 0.35rem;
    min-width: calc( 1.938rem + 0px );
    font-size: .75rem;
    border-radius: 0.375rem;
    transform: scale(0.98);
    line-height: 1;
}

.page-link.ellipsis {
    height: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.disabled>.page-link, .page-link.disabled {
    color: #cdcdcd;
}

/*选中和悬停在元素上的风格*/
.paginate_button.active .page-link,
.paginate_button .page-link:hover {
    color: #fff;
    background-color: #666ee8 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
    border: none;
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    position: relative;
    top: 2px;
}

table.dataTable.no-footer {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13) !important;
}

table.dataTable thead th,
table.dataTable thead td {
    border-bottom-color: transparent;
}

.datatable-primary .dataTables_paginate .page-item.active .page-link,
.datatable-primary .dataTables_paginate .page-item .page-link:hover {
    background-color: #4336fb;
    border-color: #4336fb;
    color: #fff;
}

.datatable-primary .dataTables_paginate .page-link {
    color: #4336fb;
    border: 1px solid #4336fb;
}

.datatable-primary .dataTables_paginate .paginate_button.disabled,
.datatable-primary .dataTables_paginate .paginate_button.disabled:hover,
.datatable-primary .dataTables_paginate .paginate_button.disabled:active {
    color: #4336fb!important;
    border: none;
}

.datatable-primary .dataTables_paginate .page-item.disabled .page-link {
    color: #9f98f7;
    background-color: #f9f9f9;
    border-color: #c9c6f5;
}

/* datatable-dark */

.datatable-dark thead {
    background: #444;
    color: #fff;
}

.datatable-dark .dataTables_paginate .page-item.active .page-link,
.datatable-dark .dataTables_paginate .page-item .page-link:hover {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.datatable-dark .dataTables_paginate .previous .page-item.active .page-link,
.datatable-dark .dataTables_paginate .page-item .page-link:hover {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.datatable-dark .dataTables_paginate .page-link {
    color: #444;
    border: 1px solid #444;
}

.datatable-dark .dataTables_paginate .paginate_button.disabled,
.datatable-dark .dataTables_paginate .paginate_button.disabled:hover,
.datatable-dark .dataTables_paginate .paginate_button.disabled:active {
    color: #444!important;
    border: none;
}

.datatable-dark .dataTables_paginate .page-item.active .page-link,
.datatable-dark .dataTables_paginate .page-item .page-link:hover {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.datatable-dark .disabled>.page-link, .page-link.disabled {
    color: #999;
    background-color: #f9f9f9;
    border-color: #999;
}

.datatable-dark .dataTables_paginate .active>.page-link,
.datatable-dark .dataTables_paginate .page-link.active,
.datatable-dark .dataTables_paginate .page-link:hover {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.dt-column-order {
    position: absolute;
    right: 3px !important;
    top: 0;
    bottom: 0;
    width: 10px !important;
}

/*-------------------- END Datatable ------------------- */


/*-------------------- 21. Map Start ------------------- */


/*-------------------- END Map Start ------------------- */

/*-------------------- 22. Invoice ------------------- */

/*-------------------- END Invoice ------------------- */


/*-------------------- 23. Login ------------------- */

.login-area {
    background: #F3F8FB;
}

.login-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
}

.login-box form {
    margin: auto;
    width: 450px;
    max-width: 100%;
    background: #fff;
    border-radius: 3px;
}

.login-form-head {
    text-align: center;
    background: #8655FC;
    padding: 50px;
}

.login-form-head h4 {
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 7px;
    color: #fff;
}

.login-form-head p {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.login-form-body {
    padding: 50px;
}

.form-group {
    margin: 10px 0px 10px 0px;
}

.form-gp {
    margin-bottom: 25px;
    position: relative;
}

.form-gp label {
    position: absolute;
    left: 0;
    top: 0;
    color: #b3b2b2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.form-gp.focused label {
    top: -15px;
    color: #7e74ff;
}

.form-gp input {
    width: 100%;
    height: 30px;
    border: none;
    border-bottom: 1px solid #e6e6e6;
}

.form-gp input::-webkit-input-placeholder {
    color: #dad7d7;
}

.form-gp input::-moz-placeholder {
    color: #dad7d7;
}

.form-gp input:-ms-input-placeholder {
    color: #dad7d7;
}

.form-gp input:-moz-placeholder {
    color: #dad7d7;
}

.form-gp i {
    position: absolute;
    right: 5px;
    bottom: 15px;
    color: #7e74ff;
    font-size: 16px;
}


/*登录按钮*/
.log-bwn button {
    font-weight: 500;
}

/*-------------------- END Login ------------------- */


/*-------------------- 24. Pricing ------------------- */



/*-------------------- END Pricing ------------------- */


/*-------------------- 25. 404 Page ------------------- */


/*-------------------- END 404 Page ------------------- */


/*-------------------- 26. Offset Sidebar ------------------- */


/*-------------------- END Offset Sidebar ------------------- */

/*-------------------- 27. Select ------------------- */

select {
    height: 32px;
    font-size: 0.85rem ! IMPORTANT;
    padding: 0.2rem 2rem 0.4rem 0.4rem !IMPORTANT;
    border: 1px solid lightgray;
    border-radius: 6px;
}

.select-wrapper {
    align-self: baseline;
    height: 32px;
}

.form-select {
    font-size: 0.9rem;
}

.select-input.focused {
    color: #616161;
    outline: 0;
}

.form-outline {
    position: relative;
    width: 100%;
    height: 100%;
}

.form-outline .form-control {
    min-height: auto;
    transition: all .2s linear;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #ced4da;
}

.form-control:disabled, .form-control[readonly] {
    opacity: 1;
}

INPUT:not(:-webkit-autofill), SELECT:not(:-webkit-autofill), TEXTAREA:not(:-webkit-autofill) {
    animation-name: onautofillcancel;
}

.select-input {
    cursor: pointer;
}

.select-arrow {
    color: #000;
    text-align: center;
    font-size: .8rem;
    position: absolute;
    top: 5px;
    right: 9px;
    /*z-index: -1;*/
}

.select-arrow:before {
    content: "▼";
}

.select-input.focused~.select-arrow {
    color: #1266f1;
}

.form-outline .form-control~.form-notch {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
    pointer-events: none;
}

.select-input.focused~.form-notch .form-notch-leading {
    border-color: #1266f1;
    box-shadow: -1px 0 0 0 #1266f1, 0 1px 0 0 #1266f1, 0 -1px 0 0 #1266f1;
}

.form-outline .form-control~.form-notch .form-notch-leading {
    left: 0;
    top: 0;
    height: 100%;
    width: 0.5rem;
    border-right: none;
    border-radius: 0.25rem 0 0 0.25rem;
}

.form-outline .form-control~.form-notch div {
    pointer-events: none;
    border: 1px solid rgba(170, 170, 170, .3);
    box-sizing: border-box;
    background: transparent;
    transition: all .2s linear;
}

.form-outline .form-control.active~.form-notch .form-notch-middle, .form-outline .form-control:focus~.form-notch .form-notch-middle {
    border-right: none;
    border-left: none;
    border-top: 1px solid transparent;
}

.select-input.focused~.form-notch .form-notch-middle {
    border-color: #1266f1;
    box-shadow: 0 1px 0 0 #1266f1;
    border-top: 1px solid transparent;
}

.select-input.focused~.form-notch .form-notch-trailing {
    border-color: #1266f1;
    box-shadow: 1px 0 0 0 #1266f1, 0 -1px 0 0 #1266f1, 0 1px 0 0 #1266f1;
}

.form-outline .form-control~.form-notch .form-notch-trailing {
    flex-grow: 1;
    height: 100%;
    border-left: none;
    border-radius: 0 0.25rem 0.25rem 0;
}

.select-dropdown {
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    margin: 0;
    min-width: 100px;
    outline: 0;
    position: relative;
    transform: scaleY(.8);
    opacity: 0;
    transition: all .2s;
    border-radius: 6px;
}

.select-dropdown.open {
    transform: scaleY(1);
    opacity: 1;
}

.select-dropdown>.input-group {
    padding: 10px;
}

.input-group {
    width: auto;
    align-items: center;
}

.select-options-wrapper {
    overflow-y: auto;
    max-height: 300px;
}

.select-options-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select-dropdown > .select-option,
.select-dropdown > .select-option:hover {
    background-color: #c7aaaa !important;
}

.select-option-Head {
    pointer-events: none;
    background: #e3e3e3 !important;
    color: black !important;
}

.select-option {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: rgba(0,0,0,.87);
    padding-left: 16px;
    padding-right: 16px;
    font-size: 1rem;
    font-weight: 400;
    background-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    height: 38px;
}

.select-option.selected {
    background-color: rgba(0,0,0,.02);
}

.select-option.active, .select-option.selected.active, .select-option:hover:not(.disabled) {
    background-color: #0d6efd26;
}

.form-check-input {
    /*margin-top: 0 !important;*/
}

.select-option-text {
    display: flex;
}

.select-option-text .form-check-input {
    margin-right: 10px;
}

.select-filter-input:focus {
    border: 2px solid #7367F0;
}

/**::-webkit-scrollbar {*/
/*    width: 12px;*/
/*    height: 10px;*/
/*}*/

/**::-webkit-scrollbar-track {*/
/*    background: rgba(0, 0, 0, 0.15);*/
/*    border-radius: 2px;*/
/*}*/

/**::-webkit-scrollbar-thumb {*/
/*    background: rgba(136, 136, 136, 0.63);*/
/*    border-radius: 2px;*/
/*}*/


.cScrollBar::-webkit-scrollbar {
    width: 12px;
    height: 10px;
}

.cScrollBar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
}

.cScrollBar::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 6px;
}

.cScrollBar:hover::-webkit-scrollbar-thumb {
    background: #888;
}

.cScrollBar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.select-options-wrapper::-webkit-scrollbar:vertical {
    width: 11px;
}

.select-options-wrapper::-webkit-scrollbar:horizontal {
    height: 11px;
}

.select-options-wrapper::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, .5);
}


/*-------------------- Select End------------------- */

/*-------------------- 29. Font Start------------------- */
.size-1 {
    width: 1.2rem;
    height: 1.2rem;
}

.size-2 {
    width: 1.5rem;
    height: 1.5rem;
}

.fs-7 {
    font-size: 0.875rem !important;
}

.fs-8 {
    font-size: 0.75rem !important; 
}

.info {
    color: rgba(0,0,0,.45);
}

/*-------------------- 29. Font End------------------- */

/*-------------------- 30. Grid Start------------------- */
.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}

.box-header .box-title {
    display: inline-block;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.box-primary {
    color: #fff;
    border: 1px solid #3c8dbc;
    width: 100%;
    max-width: 400px;
}

.box-primary .box-header {
    color: #fff;
    background-color: #3c8dbc;
}

.box-success {
    color: #fff;
    border: 1px solid #00a65a;
    width: 100%;
    max-width: 400px;
}

.box-success .box-header {
    color: #fff;
    background: #00a65a;
}
/*-------------------- 30. Grid End------------------- */

/*-------------------- 31. Grid Start------------------- */


/*-------------------- 31. Grid End------------------- */


/*-------------------- 32. tabs Start------------------- */
.nav-tabs .nav-link {
    background-color: #e7ddf1!important;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: #8a2be2!important;
    border-bottom: 5px solid #ffb000;
}



/*-------------------- 32. tabs End------------------- */

/*-------------------- 33. Treeview Start------------------- */
/* original idea http://www.bootply.com/phf8mnMtpe */

.xktreeview {
    background: rgba(0,0,0,0);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
    border: 1px solid #9f8f8f4a;
    border-radius: 6px;
}

.xktreeview a {
    color: #6f6b7c !important;
    user-select: none;
}

.tree-container-ul {
    position: relative;
    display: inline-block;
    min-width: 100%;
}

.tree-node {
    margin-right: 0;
    margin-left: 0;
}

.tree-children {
    display: block;
    list-style-type: none;
    list-style-image: none;
    margin: 0;
    padding: 0 0 0 25px;
}

.tree-row-ul {
    position: relative;
    display: inline-block;
    min-width: 100%;
}

.tree-anchor {
    white-space: nowrap;
    height: 24px;
    line-height: 24px;
    vertical-align: top;
    position: relative;
    pointer-events: none;
    padding-left: 25px;
}

.tree-wholerow {
    width: 100%;
    cursor: pointer;
    position: absolute;
    height: 24px;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tree-wholerow:hover {
    background-color: #bfbfbf36;
    color: orange !important;
}

.tree-partialCheck > .tree-wholerow,
.tree-rowSelect > .tree-wholerow {
    background-color: #7367f0 !important;
    color: #fff !important;
}

.tree-partialCheck > a,
.tree-rowSelect > a {
    color: white !important;
}

.tree-partialCheck > span > .tree-status-icon,
.tree-rowSelect > span > .tree-status-icon {
    color: orange;
}

.tree-partialCheck > .tree-anchor .form-check-input:checked,
.tree-rowSelect > .tree-anchor .form-check-input:checked {
    background-color: darkgoldenrod !important;
    border-color: white !important;
}

.tree-partialCheck > .tree-anchor .form-check-input:checked  {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='line' stroke-linejoin='line' stroke-width='11' d='m10 5 0 11 12'/%3e%3c/svg%3e") !important;
}

.tree-wholerow,
.tree-anchor {
    transition: background-color .15s,box-shadow .15s;
    transition-property: background-color, box-shadow;
    transition-duration: 0.15s, 0.15s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
}

.tree-leaf {
}

.tree-group-status-container {
    position: absolute;
    transition: all .25s;
}

.tree-status-icon {
    color: #0080ff;
    height: 24px;
}

.xktreeview input[type=checkbox] {
    pointer-events: none;
}

/*-------------------- 33. Treeview End------------------- */

/*-------------------- 34. ChooseCompany End------------------- */
.systemManage {
    background: #ecbaba;
    border-radius: 10px;
    height: 50px;
    line-height: 50px;
    font-size: 1.1rem;
    padding-left: 100px;
}

.subs {
    max-height: 500px;
    overflow: auto;
}

.subs .cmpItem {
    display: flex;
    border-bottom: 1px solid darkgray;
    padding: 1rem!important;
}

.subs .cmpItem .cmpImg {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.8509803921568627);
    font-size: 14px;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: transparent;
}

.subs .cmpItem .cmpImg img {
    width: 100%;
    height: 100%;
}

.systemManage:hover,
.subs .cmpItem:hover {
    background: antiquewhite;
    cursor: pointer;
}

.subs .cmpItem .cmpInfo {
    padding-left: 20px;
    width: 100%;
}

.subs .cmpItem .cmpInfo .cmpName {
    margin-bottom: 4px;
    color: rgba(0,0,0,.85);
    font-size: 14px;
    line-height: 1.5715;
}

.subs .cmpItem .cmpInfo .cmpAddr {
    color: rgba(0,0,0,.45);
    font-size: 14px;
    line-height: 1.5715;
}
/*-------------------- 34. ChooseCompany End------------------- */


/*-------------------- 35. Input Start------------------- */


/* 隐藏数字输入框的微调控件 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none; /* Chrome 和 Safari */
    margin: 0; /* 删除微调控件的默认边距 */
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}


/*-------------------- 35. Input End------------------- */

/*-------------------- 36. otp Start------------------- */

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.otp-input {
    width: 40px;
    height: 40px;
    padding: 0 !important;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/*-------------------- 36. otp End------------------- */

/*-------------------- 37. File Button Start------------------- */

input[type="file"] {
    cursor: pointer;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f5f5f5;
}

::file-selector-button {
    background: #1F2937;
    color: white;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    margin-right: 1rem;
}

/*-------------------- 37. File Button End------------------- */