/*#region 设置滚动条的样式*/
/*ie滚动条样式*/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    -ms-scrollbar-face-color: #B4B4B4;
    scrollbar-face-color: #B4B4B4;
    -ms-scrollbar-3dlight-color: #B5CBF7;
    scrollbar-3dlight-color: #B5CBF7;
    -ms-scrollbar-darkshadow-color: #B5CBF7;
    scrollbar-darkshadow-color: #B5CBF7;
    -ms-scrollbar-base-color: #B5CBF7;
    scrollbar-base-color: #B5CBF7;
    -ms-scrollbar-shadow-color: #efeff4;
    scrollbar-shadow-color: #efeff4;
    -ms-scrollbar-highlight-color: #efeff4;
    scrollbar-highlight-color: #efeff4;
    -ms-scrollbar-track-color: #efeff4;
    scrollbar-track-color: #efeff4;
    -ms-scrollbar-arrow-color: #4A6184;
    scrollbar-arrow-color: #4A6184;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,simsun,sans-serif;*/
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/*chrome滚动条样式*/
/*滚动条整体部分，其中的属性有width,height,background,border（就和一个块级元素一样）等。*/
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 10px;
}

::-webkit-scrollbar-track-piece {
    /*内层轨道，滚动条中间部分（除去）。*/
    background: rgb(240, 240, 240);
}

::-webkit-scrollbar-thumb {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*滚动条里面可以拖动的那部分*/
    background: #dee1e6;
}

    ::-webkit-scrollbar-thumb:hover {
        /*滚动条里面可以拖动的那部分*/
        background: rgb(180, 180, 180);
    }

::-webkit-scrollbar-corner {
    /*边角*/
    background: rgb(200, 200, 200);
}

::-webkit-scrollbar-resizer {
    /*定义右下角拖动块的样式*/
    background: rgb(200, 200, 200);
}

::-webkit-scrollbar-track {
    background: #eee;
    border: thin solid lightgray;
    -moz-box-shadow: 0 0 3px #dfdfdf inset;
    -webkit-box-shadow: 0 0 3px #dfdfdf inset;
    box-shadow: 0 0 3px #dfdfdf inset;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.console-aside ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
    background: #152036;
}

.console-aside ::-webkit-scrollbar-thumb {
    background: #485163;
}

.console-aside.bg-white ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
    background: rgb(240, 240, 240);
}

.console-aside.bg-white ::-webkit-scrollbar-thumb {
    background: rgb(180, 180, 180);
}


input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -moz-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
}

input:-internal-autofill-selected {
    background-color: transparent;
    box-shadow: none;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999 !important;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999 !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999 !important;
}

/*#endregion*/

/*#region reset*/

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /*background-color: #F7FAF8;*/
    background-color: #ffffff;
    position: relative;
}

body {
    overflow: auto;
    color: #333333;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font: 12px "Microsoft YaHei", Helvetica Neue, Helvetica, PingFang SC, "Hiragino Sans GB", Tahoma, Arial, sans-serif;
    line-height: 1.28571;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul {
    list-style: none;
}

blockquote {
    quotes: none;
}

    blockquote:before,
    blockquote:after {
        content: '';
        content: none;
    }

del {
    text-decoration: line-through;
}

a {
    text-decoration: none;
    outline: 0px;
    color: #2fb3ff;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
        color: #0071e6;
    }

p {
    color: #333;
    font-size: 0.75rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: normal;
    line-height: 1em;
}

h1,
h1 a {
    font-size: 1.1875rem;
}

h2,
h2 a {
    font-size: 1.0625rem;
}

h3,
h3 a {
    font-size: 0.9375rem;
}

h4,
h4 a {
    font-size: 0.875rem;
}

h5,
h5 a {
    font-size: 0.8125rem;
}

h6,
h6 a {
    font-size: 0.75rem;
}

pre {
    white-space: pre-wrap;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

input,
button,
textarea {
    -webkit-appearance: none;
    resize: none;
    outline: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
}


input {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    height: 2.125rem;
    width: 100%;
    padding: 0 0.625rem;
    border-radius: 3px;
}

    input[readonly], textarea[readonly] {
        background-color: #e8e9e9;
    }

        input[readonly].leo-date {
            background-color: #ffffff;
        }

    input.etip {
        width: 40%;
        margin-left: 5px;
    }

select {
    border: 0.0625rem solid #ced4da;
}

textarea {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    padding: 0.3125rem;
    width: 100%;
    resize: auto;
}


input[type=checkbox],
input[type=radio] {
    width: 1rem;
    height: 1rem;
    padding: 0 !important;
    line-height: 1rem;
    border: none;
    font-family: "iconfont" !important;
    font-size: 0.875rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ced4da;
}

input[type=radio] {
    font-size: 1rem;
}

input[type=checkbox]:before {
    content: "\e60f";
}

input[type=checkbox]:checked:before {
    content: "\e606";
    color: #0071e6;
}

input[type=radio]:before {
    content: "\e7bb";
}

input[type=radio]:checked:before {
    content: "\e888";
    color: #0071e6;
}


/*input:focus {
    border-color: #0071e6;
}*/

input[readonly]:focus, textarea[readonly]:focus {
    border: 0.0625rem solid #ced4da;
}

fieldset {
    /* border: 0.0625rem solid #dee2e6;*/
    padding: 10px;
    border-radius: .25rem;
    /*解决width不生效的问题**/
    min-width: inherit !important;
}

    fieldset legend {
        font-size: 14px;
        padding: 0 5px;
    }

        fieldset legend .font-weight-lighter {
            font-size: 12px;
            font-weight: normal;
        }


    fieldset.active legend {
        color: #28a745;
    }

    fieldset.over {
        opacity: 0.4;
    }

/*#endregion*/

/*#region com*/
.leo-pull-right {
    float: right;
}

.leo-pull-left {
    float: left;
}

.leo-clearfix {
    *zoom: 1;
}

    .leo-clearfix:after {
        clear: both;
        display: table;
        content: " ";
    }

    .leo-clearfix:before {
        display: table;
        content: " ";
    }

.leo-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.leo-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    *white-space: nowrap !important;
    _white-space: nowrap !important;
}

.leo-inline-block {
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
}

.leo-hidden {
    display: none !important;
}

.leo-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,.2);
    display: none;
}


.w-100 {
    width: 100% !important;
}

.w-50 {
    width: 50% !important;
}

.h-100 {
    height: 100% !important;
}

.h-50 {
    height: 50% !important;
}

/*定位*/
.position-absolute {
    position: absolute;
    z-index: 100;
}

.position-fixed {
    position: fixed;
    z-index: 100;
}

.position-relative {
    position: relative;
}

.absolute-top {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-0 {
    top: 0;
}

/*#endregion*/

/*#region buton*/
.leo-btn-yellow,
.leo-btn-black,
.leo-btn-blue,
.leo-btn-gray,
.leo-btn-gray1 {
    padding: 5px 10px;
    line-height: 1.75rem;
    -moz-border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    border-radius: 0.125rem;
    border: solid 1px;
    text-align: center;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-property: background;
    -o-transition-property: background;
    -webkit-transition-property: background;
    transition-property: background;
    font-size: 12px;
    text-indent: 0px;
    cursor: pointer;
}

    .leo-btn-black i,
    .leo-btn-blue i,
    .leo-btn-gray i {
        margin-right: 0.3125rem;
    }

    .leo-btn-yellow:active,
    .leo-btn-blue:active,
    .leo-btn-black:active,
    .leo-btn-gray:active {
        color: #00647f;
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
        -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
    }

.leo-btn-black {
    color: #ffffff;
    background: #494748;
    border: 1px solid #5A5859;
}

.leo-btn-gray {
    color: #000;
    background: #dee2e6;
    border-color: #dee2e6;
}

.leo-btn-gray1 {
    color: #2fb3ff;
    background-color: transparent;
    border-color: #2fb3ff;
}

.leo-btn-blue {
    color: #ffffff;
    background: #2fb3ff;
    border: 1px solid #2fb3ff;
}

.leo-btn-yellow {
    color: #ffffff;
    background: #fb660d;
    /*border-color: #fb660d;*/
    border: none;
    background: -webkit-linear-gradient(right, #fc9857, #ffc736);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #fc9857, #ffc736);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #fc9857, #ffc736);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #fc9857, #ffc736);
    /* 标准的语法 */
}

.leo-btn-black:hover {
    background-color: #201F20;
    border-color: #201F20;
    text-decoration: none;
}

.leo-btn-gray:hover {
    color: #000;
    background-color: #D1D1D1;
    text-decoration: none;
}

.leo-btn-blue:hover {
    background-color: #15a0f1;
    color: #ffffff;
    text-decoration: none;
}

.leo-btn-gray1:hover {
    border-color: #2a6496;
}

.leo-btn-yellow:hover {
    background: #e25b0b;
    border-color: #e25b0b;
    color: #ffffff;
    text-decoration: none;
}

.leo-btn-black:active {
    background-color: #0A0909;
    border-color: #0A0909;
}

.leo-btn-gray:active {
    background-color: #CCCCCC;
    color: #000;
}

.leo-btn-blue:active {
    background-color: #0071e6;
    color: #ffffff;
}

.leo-btn-yellow:active {
    background: #e25b0b;
    color: #ffffff;
}

a.leo-btn-blue:visited {
    color: #fff;
    text-decoration: none;
}

.leo-btn-blue.disabled {
    background-color: #e6e3e3;
    color: #606060;
    border-color: transparent;
}

/*#endregion*/

/*#region pop box*/
.leo-pop-box {
    position: fixed;
    z-index: 3000;
    min-width: 160px;
    padding: 0;
    background-color: #fff;
    border: 1px solid #aaa;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

    .leo-pop-box.leo-condition {
        width: 800px;
        top: 140px;
        left: 10px;
    }

    .leo-pop-box.default {
        top: 50%;
        left: 50%;
    }

    .leo-pop-header, .leo-pop-box .leo-pop-footer {
        left: 0px;
        right: 0px;
        position: absolute;
        padding: 0 10px;
    }

.leo-pop-header {
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    top: 0;
    background-color: #293c55;
    color: #fff;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

    .leo-pop-header .icon-hebingxingzhuang {
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -20px;
        cursor: pointer;
    }

        .leo-pop-header .icon-hebingxingzhuang:hover {
            color: red;
        }

.leo-pop-content {
    min-height: 150px;
    overflow: hidden;
    height: 100%;
}

    .leo-pop-content .leo-form {
        padding: 10px 5px;
    }

.leo-pop-header ~ .leo-pop-content {
    padding-top: 41px;
}

.leo-pop-footer ~ .leo-pop-content {
    padding-bottom: 45px;
}

.leo-pop-iframe {
    height: 100%;
    width: 100%;
}

.leo-pop-footer {
    border-top: 1px solid #ccc;
    bottom: 0;
    line-height: 40px;
    text-align: right;
}

    .leo-pop-footer .leo-btn-blue {
        margin-left: 15px;
    }
/*#endregion*/

/*#region popup*/
.leo-popup {
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000;
    display: none;
    width: 270px;
    overflow: hidden;
    color: #000;
    text-align: center;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    opacity: 0;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: transform, opacity;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.185);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1.185);
    -ms-transform: translate3d(-50%, -50%, 0) scale(1.185);
    -o-transform: translate3d(-50%, -50%, 0) scale(1.185);
    transform: translate3d(-50%, -50%, 0) scale(1.185);
}

    .leo-popup.leo-popup-in {
        display: block;
        opacity: 1;
        -webkit-transition-duration: 400ms;
        -moz-transition-duration: 400ms;
        -o-transition-duration: 400ms;
        transition-duration: 400ms;
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
        -moz-transform: translate3d(-50%, -50%, 0) scale(1);
        -ms-transform: translate3d(-50%, -50%, 0) scale(1);
        -o-transform: translate3d(-50%, -50%, 0) scale(1);
        transform: translate3d(-50%, -50%, 0) scale(1);
    }

.leo-popup-header {
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    top: 0;
    background-color: #293c55;
    color: #fff;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

.leo-popup-inner {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, .95);
    -moz-border-radius: 13px 13px 0 0;
    -webkit-border-radius: 13px 13px 0 0;
    border-radius: 13px 13px 0 0;
}

    .leo-popup-inner:after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: 15;
        display: block;
        width: 100%;
        height: 1px;
        content: '';
        background-color: rgba(0, 0, 0, .2);
        -webkit-transform: scaleY(.5);
        -moz-transform: scaleY(.5);
        -ms-transform: scaleY(.5);
        -o-transform: scaleY(.5);
        transform: scaleY(.5);
        -webkit-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
    }

.leo-popup-title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

    .leo-popup-title + .leo-popup-text {
        margin: 5px 0 0;
        font-family: inherit;
        font-size: 14px;
    }

.leo-popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.leo-popup-button {
    position: relative;
    display: block;
    width: 100%;
    height: 44px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px;
    overflow: hidden;
    font-size: 17px;
    line-height: 44px;
    color: #007aff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background: rgba(255, 255, 255, .95);
    -webkit-box-flex: 1;
}

    .leo-popup-button.leo-popup-button-bold {
        font-weight: 600;
    }

.leo-toast-container {
    line-height: 17px;
    position: fixed;
    z-index: 9999;
    top: 100px;
    left: 50%;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
}

    .leo-toast-container.loading {
        top: 30%;
    }

    .leo-toast-container.leo-active {
        opacity: .9;
    }

.leo-toast-message {
    font-size: 14px;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #323232;
}

    .leo-toast-message span {
        color: #fff;
    }

    .leo-toast-message img {
        display: block;
        margin: 0 auto 10px;
        width: 60px;
    }

.leo-toast-success {
    border: 1px solid #c7ddb9;
    min-width: 200px;
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 1000;
    max-width: 400px;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    background-color: #f2ffea;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
}

    .leo-toast-success p {
        color: #3d8b26;
        text-align: center;
    }

    .leo-toast-success.leo-active {
        opacity: .9;
    }

    .leo-toast-success p strong {
    }

/*#endregion*/

/*#region alert*/
.leo-alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

    .leo-alert .iconfont {
        cursor: pointer;
    }

    .leo-alert .icon-hebingxingzhuang {
        position: absolute;
        top: 50%;
        margin-top: -11px;
        right: 10px;
    }

        .leo-alert .icon-hebingxingzhuang:hover {
            color: #856404;
        }

        .leo-alert .icon-hebingxingzhuang ~ span {
            padding-right: 20px;
        }

    .leo-alert.tiperror {
        position: fixed;
        top: 5px;
        left: 50%;
        margin-left: -100px;
        z-index: 100;
    }

.leo-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #cc858d;
}

.leo-alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.leo-alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.leo-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.leo-alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.leo-alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.leo-alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.leo-alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

/*#endregion*/

/*#region dropdown menu*/

.leo-dropdown-menu {
    -moz-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    padding: 0.1875rem 0;
    min-height: 0;
    background-color: #2fb3ff;
    border-radius: 0.1875rem;
    position: absolute;
    right: 0;
    top: 1.75rem;
    width: 100%;
    min-width: 6.25rem;
    display: none;
}

    .leo-dropdown-menu a {
        display: block;
        /* font-weight: 900; */
        color: #FFFFFF;
        padding: 0.625rem;
        font-size: 0.875rem;
        border-bottom: 0.0625rem solid rgba(175, 172, 172, 0.2);
    }

        .leo-dropdown-menu a:hover {
            color: #FFFFFF !important;
        }

        .leo-dropdown-menu a:last-child {
            border-bottom: none;
        }

        .leo-dropdown-menu a.leo-active {
            background-color: #3f4a61 !important;
            color: #fff;
        }

        .leo-dropdown-menu a i {
            font-size: 0.875rem;
            padding-right: 0.625rem;
        }

        .leo-dropdown-menu a:hover {
            text-decoration: none;
            color: #668cf3;
        }
/*#endregion*/

/*#region dropdown*/
.leo-dropdown {
    display: none;
    border: 1px solid #2fb3ff;
    padding: 5px;
    top: 140px;
    left: 1473px;
    width: 120px;
    position: fixed;
    z-index: 1000;
    background: #fff;
    color: #000;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    background-color: white;
    overflow: auto;
}

.leo-dropdown-search {
    position: relative;
}

    .leo-dropdown-search input {
        width: 100%;
        height: 30px;
        padding: 4px 20px 4px 5px;
        margin: 0;
        outline: 0;
        font-family: sans-serif;
        font-size: 1em;
        border: 1px solid #aaa;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: #fff;
    }

    .leo-dropdown-search .iconfont {
        position: absolute;
        right: 5px;
        top: 50%;
        margin-top: -8px;
    }

.leo-dropdown-conent {
    position: relative;
}

.leo-dropdown-aside {
    width: 100px;
    position: absolute;
    left: -5px;
    bottom: -5px;
    top: 0px;
    overflow: hidden;
    overflow-y: auto;
    background: #eaedf1;
    -moz-box-shadow: 0 0 10px #BDBDBD;
    -webkit-box-shadow: 0 0 10px #BDBDBD;
    box-shadow: 0 0 10px #BDBDBD;
    z-index: 100;
}

    .leo-dropdown-aside p {
        cursor: pointer;
        font-size: 12px;
        position: relative;
        display: block;
        width: 100%;
        color: #000;
        padding: 8px 5px;
        text-align: left;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        border-bottom: 1px solid #dce0e2;
    }

        .leo-dropdown-aside p.leo-active {
            background-color: #fff;
            color: #000;
            font-weight: bold;
        }

        .leo-dropdown-aside p label, .leo-dropdown-aside p input {
            display: inline-block;
            vertical-align: middle;
        }

        .leo-dropdown-aside p label {
            width: 100%;
        }

        .leo-dropdown-aside p input {
            margin-right: 5px;
            font-size: 15px;
            width: 15px;
            height: 15px;
        }

.leo-dropdown-items, .leo-dropdown-items2 {
    padding-top: 5px;
    overflow: hidden;
    max-height: 150px;
    overflow-y: auto;
    /*min-height: 100px;*/
}

.leo-dropdown-aside ~ .leo-dropdown-items2 {
    padding-left: 100px;
}

.leo-dropdown-items2 li {
    border: 1px solid #dce0e2;
    margin-top: 3px;
    margin-left: 3px;
    cursor: pointer;
    width: 30%;
    text-align: center;
    padding: 5px;
    display: inline-block;
    vertical-align: top;
    *display: inline; /* IE6、7 block 元素 */
    *zoom: 1;
}

    .leo-dropdown-items2 li.checkbox {
        width: 46%;
    }

    .leo-dropdown-items2 li:hover {
        background-color: #f1f8ff;
        color: #2fb3ff;
    }

    .leo-dropdown-items2 li.leo-active {
        background-color: #2fb3ff;
        color: #fff;
    }

    .leo-dropdown-items2 li input, .leo-dropdown-items2 label {
        vertical-align: middle;
        display: inline-block;
    }

    .leo-dropdown-items2 li input {
        margin-right: 5px;
        font-size: 15px;
        width: 15px;
        height: 15px;
    }

.leo-dropdown-items li {
    line-height: 30px;
    position: relative;
}

    .leo-dropdown-items li:hover, .leo-dropdown-items li.leo-active2 {
        background-color: #c8e8fb;
    }

    .leo-dropdown-items li.leo-active {
        background-color: #2fb3ff;
        color: #fff;
    }

    .leo-dropdown-items li label {
        cursor: pointer;
        display: inline-block;
        vertical-align: middle;
        padding: 0 3px;
    }

        .leo-dropdown-items li label input {
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
        }

    .leo-dropdown-items li.leo-active .iconfont {
        color: #fff;
    }

    .leo-dropdown-items li .iconfont {
        position: absolute;
        color: #0ae;
        cursor: pointer;
        display: none;
        right: 10px;
        top: 0px;
    }

    .leo-dropdown-items li.leo-active2 .iconfont.icon-duihao {
        display: inline-block;
        position: absolute;
        right: 10px;
    }

    .leo-dropdown-items li:hover .iconfont {
        display: inline-block;
    }

    .leo-dropdown-items li .icon-delete {
        right: 10px;
    }

    .leo-dropdown-items li .icon-iconzhongmingming {
        right: 40px;
    }

    .leo-dropdown-items li.iconfont {
        width: 30px;
        font-size: 20px;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        text-align: center;
    }

/*#endregion*/
.leo-form-content {
    padding: 0.625rem;
}

.leo-form {
    font-size: 0;
}

.leo-input-row {
    width: 33.33333333%;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    border-radius: .25rem;
    position: relative;
    padding: 10px 10px 0 100px;
}

.leo-form-group .leo-input-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.leo-input-row.full {
    width: 100%;
}

.leo-input-row.w50 {
    width: 50%;
}

.leo-input-row.w25 {
    width: 25%;
}

.leo-input-row.w55 {
    width: 56%;
}

.leo-input-row.w66 {
    width: 66.66%;
}
.leo-input-row.w33 {
    width: 33.33%;
}

.leo-input-row.gongxinag {
    width: 10%;
    padding: 10px 0 0 40px;
}

    .leo-input-row.gongxinag .leo-input-label {
        width: 35px !important;
    }

.leo-input-label.required > label {
    color: red;
}

.leo-form .leo-input-row .leo-input-label {
    /*line-height: 2.375rem;*/
    text-align: left;
    color: #333;
    font-size: 12px;
    position: absolute;
    left: 0;
    /*overflow: hidden;*/
    text-align: right;
    width: 90px;
    /*height: 2.375rem;*/
}

    .leo-form .leo-input-row .leo-input-label label.required {
        color: orangered;
    }

    .leo-form .leo-input-row .leo-input-label .leo-alert {
        margin-bottom: 0;
        line-height: 0.75rem;
        padding: 0.5rem;
        margin-top: 0.125rem;
        font-size: 0.75rem !important;
        margin-left: 0.625rem;
        border: none;
    }

        .leo-form .leo-input-row .leo-input-label .leo-alert:before {
            content: "\e603";
            position: absolute;
            left: -8px;
            color: #f8d7da;
        }

.leo-input-row.down:after,
.leo-input-row.date:after {
    position: absolute;
    right: 15px;
    /*  bottom: 8px;*/
    color: #A3B1CC;
}

.leo-input-row.down.plus:after,
.leo-input-row.date.plus:after {
    right: 45px;
}

.leo-input-row.plus .icon-jiashang, .leo-input-row.plus .icon-gengduo, .leo-table.edit .icon-jiashang {
    padding-left: 10px;
    cursor: pointer;
    color: #ced4da;
}

    .leo-input-row.plus .icon-jiashang:hover, .leo-input-row.plus .icon-gengduo:hover, .leo-table.edit .icon-jiashang:hover {
        color: #333333;
    }

.leo-table.edit .icon-jiashang {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -10px;
}

.leo-input-row.down input[readonly] {
    /* background-color: transparent;*/
    background-color: #ffffff;
}

.leo-input-row.down:hover:after,
.leo-input-row.date:hover:after {
    color: #333333;
}

.leo-input-row.down:after {
    content: "\e601";
}

.leo-input-row.date:after {
    content: "\e607";
}

.leo-input-row input:focus ~ label {
    color: #0071e6;
    border-color: #0071e6;
}

.leo-input-row label.checkbox {
    line-height: 2.5rem;
    /*margin-left: 1.125rem;*/
    /*display: block;*/
    font-size: 14px;
}

.leo-input-row .error {
    border-color: orangered;
}

.leo-input.leo-active {
    border: 1px solid #2fb3ff !important;
    border-bottom: none !important;
}

.leo-input.down {
    background: #fff url(/Content/Images/drop-arrow-down.png) no-repeat center right;
}

.leo-input.loading {
    background: #fff url(/Content/Images/loading-s.gif) no-repeat center right;
}

/*.leo-input.leo-date {
    background: url(/Content/Images/date.png) no-repeat center right;
}*/

.leo-input-prepend,
.leo-input-after {
    padding: 0 .75rem;
    line-height: 2rem;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    font-size: 0.75rem;
}

.leo-input-prepend {
    border-top-left-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    border-right: none;
}

.leo-input-after {
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0.3125rem;
    border-left: none;
}

.leo-input-prepend ~ input {
    border-radius: 0;
}

.leo-form-action {
    position: relative;
}

    .leo-form-action .leo-btn-blue, .leo-form-action .leo-btn-gray, .leo-form-action .leo-btn-yellow {
        padding: 12px 50px;
        position: relative;
        line-height: 20px;
    }

    .leo-form-action .leo-btn-gray {
        padding-right: 38px;
        color: #333;
    }

        .leo-form-action .leo-btn-gray img {
            position: absolute;
            right: 0px;
            top: 0;
        }

    .leo-form-action.fixed {
        position: fixed;
        bottom: 0px;
        border-top: 1px solid #ccc;
        z-index: 999;
        background-color: #fff;
        left: 0;
        width: 100%;
        padding: 15px 0 20px;
        text-align: center;
    }

.leo-radio-star label,
.leo-checkbox-group label,
.leo-radio-group label {
    line-height: 2.126rem;
    margin-right: 0.9375rem;
    font-size: 14px;
}

    .leo-radio-star label.iconfont,
    .leo-checkbox-group label.iconfont,
    .leo-radio-group label.iconfont {
        font-size: 20px;
    }

#outputColumns.leo-checkbox-group label, #outputColumns.leo-radio-group label,
#orderColumns.leo-checkbox-group label, #orderColumns.leo-radio-group label {
    width: 120px;
}

.leo-radio-group label input {
    margin-right: 0.1875rem;
}

.leo-radio-group .color {
    width: 16px;
    height: 16px;
    margin-top: 8px;
    margin-left: 2px;
}

.leo-form-header {
    margin: 10px 0;
    background-color: #e6e9ea;
    border-radius: 4px;
    line-height: 40px;
    height: 40px;
    border-bottom: 1px dotted #ccc;
    padding-left: 10px;
}

.leo-form .leo-form-header:first-child {
    margin-top: 0;
}

.leo-form-group {
    margin-bottom: 10px;
}

.leo-form-header .toolbar {
    padding-left: 20px;
    padding-top: 3px;
}

.leo-form-header a {
    font-size: 14px;
    color: #000;
}

.leo-form-header .toolbar a {
    padding: 2px 5px 3px;
    position: relative;
    color: #fff;
    font-size: 12px;
}

    .leo-form-header .toolbar a .iconfont {
        font-size: 20px;
    }

.leo-form-attachs {
    position: relative;
}

    .leo-form-attachs .leo-btn-blue.button, .leo-form-attachs .leo-btn-gray.button {
        position: relative;
        padding: 0px 15px;
        margin-bottom: 10px;
    }

    .leo-form-attachs .button input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

.toolbar .leo-btn-gray {
    margin-right: 10px;
}

.leo-input-vmulti {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    width: 100%;
    padding: 0 0.625rem 0 0;
    min-height: 2.125rem;
}

    .leo-input-vmulti p {
        background-color: #dbe9f1;
        margin: 4px;
        padding: 3px 5px;
        border-radius: 3px;
    }

        .leo-input-vmulti p label {
        }

        .leo-input-vmulti p span {
            padding-left: 3px;
            cursor: pointer;
        }


.leo-iframe-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.leo-toobar {
}

    .leo-toobar.top {
        right: 20px;
        top: 10px;
    }

    .leo-toobar a {
        padding: 7px 10px;
        border-radius: 0;
        border-right: 1px solid #cccccc;
    }

        .leo-toobar a:first-child {
            border-bottom-left-radius: 3px;
            border-top-left-radius: 3px;
        }

        .leo-toobar a:last-child {
            border-bottom-right-radius: 3px;
            border-top-right-radius: 3px;
            border-right: none;
        }

.leo-search-container {
    padding: 0.3125rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background-color: #ffffff;
    /* 	border-bottom: 0.0625rem solid #c5d0dc; */
}


    .leo-search-container input, .leo-search-container select {
        border-radius: 0;
        border: none;
        border-top: 0.0625rem solid #ced4da;
        border-bottom: 0.0625rem solid #ced4da;
        border-radius: 0;
        border-right: 0.0625rem solid #ced4da;
    }

    .leo-search-container .leo-form-group .justify-end h3 + .leo-input-row input {
        border-left: 0.0625rem solid #ced4da;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
    }

    .leo-search-container .iants-search-pop input, .leo-search-container .iants-search-pop select {
        border-radius: 3px;
        border: 0.0625rem solid #ced4da;
    }

    .leo-search-container .leo-search .leo-input-row {
        padding: 0;
    }

        .leo-search-container .leo-search .leo-input-row.fixed-left {
            position: fixed;
            height: 34px;
            top: 5px;
            left: 10px;
            border: none;
        }

            .leo-search-container .leo-search .leo-input-row.fixed-left .leo-radio-group {
                border: none !important;
            }

    .leo-search-container .leo-radio-group {
        border-top: 0.0625rem solid #ced4da;
        border-bottom: 0.0625rem solid #ced4da;
        border-radius: 0;
        height: 2.125rem;
        border-right: 0.0625rem solid #ced4da;
    }

        .leo-search-container .leo-radio-group input {
            border: none !important;
        }

.leo-search {
    text-align: right;
}

    .leo-search.leo-form {
        padding: 0;
    }

    .leo-search .leo-input-row {
        margin-bottom: 0;
        padding: 0 5px 0 0;
        max-width: 8.5rem;
        min-width: 7.5rem;
    }

        .leo-search .leo-input-row.down:after,
        .leo-search .leo-input-row.date:after {
            right: 10px;
            bottom: 8px;
        }

        .leo-search .leo-input-row.date {
            max-width: 300px;
            width: 300px;
        }

            .leo-search .leo-input-row.date input[readonly] {
                background-color: transparent;
            }

            .leo-search .leo-input-row.date select {
                height: 2.125rem;
                /* margin-right: 3px;*/
                padding: 0 0.625rem;
                width: 100px
            }

        .leo-search .leo-input-row.range {
            max-width: 220px;
        }

.leo-input-row.range .leo-input {
    width: 46%;
}

.leo-input-row.range span {
    width: 6%;
    text-align: center;
    line-height: 2.125rem;
}

.leo-search .leo-form-action {
    font-size: 0;
}


.leo-search .leo-btn-blue, .leo-search .leo-btn-gray {
    padding: 0px 0.625rem;
    line-height: 1.99rem;
    border-radius: 0;
    margin: 0;
}

.console-detail {
    padding: 0.625rem 1.25rem;
}

    .console-detail .leo-form .leo-input-row {
        min-height: 30px;
    }

        .console-detail .leo-form .leo-input-row p, .console-detail .leo-form .leo-input-row .leo-input-label {
            line-height: 15px;
        }

        .console-detail .leo-form .leo-input-row .leo-input-label {
            font-size: 12px;
            color: #b3b2b2;
        }

    .console-detail .detail-img {
        width: 50px;
    }

/*#region table */

.leo-conetnt-body {
    position: relative;
    padding-top: 2.75rem;
    padding-bottom: 2.625rem;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.leo-footer {
    z-index: 99;
    height: 2.625rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}

.leo-iframe-body .leo-footer {
    border-top: 1px solid #aaa;
}

.leo-table-content {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}


.leo-table-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    right: 0px;
    overflow: hidden;
}

.leo-table-header-inner {
    width: 100%;
}


.leo-table-fixed {
    position: absolute;
    top: 0;
    /*bottom: 0.625rem;*/
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .12);
    background-color: #ffffff;
}

    .leo-table-fixed.fixed-right {
        /*  right: 10px;*/
        right: 0px;
        width: 7.5rem;
        text-align: center;
    }

    .leo-table-fixed.fixed-left {
        left: 0;
        width: 200px;
    }

    .leo-table-fixed.fixed-right ~ .leo-table-scroll {
        padding-right: 7.5rem;
    }

.leo-table-scroll {
    overflow: auto;
    height: 100%;
    padding-left: 1px;
    /*  max-height:400px;*/
    /* padding-right: 10px;*/
}

.leo-table {
    table-layout: fixed;
    border: none;
    width: 100%;
}

.console-detail .leo-table {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.leo-table th,
.leo-table td {
    text-align: center;
    border: none;
    border-bottom: 1px solid #eeeeee;
}

.leo-table th {
    /* background-color: #dbe9f1;*/
    background-color: #f1f3f4;
    color: #000;
    font-weight: bold;
    line-height: 33px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 12px;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

    .leo-table th .iconfont {
        font-size: 14px;
        color: #ccc;
        cursor: pointer;
    }

        .leo-table th .iconfont.icon-sortdown,
        .leo-table th .iconfont.icon-sortup {
            color: #000;
        }

/*  .leo-table th input[type=checkbox] {
            background-color: #dbe9f1;
        }
*/

.leo-table tbody tr td,
.leo-table tfoot tr td {
    padding: 5px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    line-height: 20px;
    position: relative;
}

.leo-table tbody tr.noborder td {
    border: none;
}

    .leo-table tbody tr.noborder td.border-right {
        border-right: 1px solid #eeeeee
    }

.leo-table .icon-jisuanqi, .leo-table .icon-jiagebiangeng {
    position: absolute;
    right: 10px;
    z-index: 100;
    top: 50%;
    font-size: 30px;
    margin-top: -10px;
    cursor: pointer;
    color: #0ae;
}

.leo-table td .icon-jiagebiangeng {
    font-size: 12px;
    top: 10px;
    right: 5px;
}

.leo-table tbody tr td.leo-nodata {
    border-bottom: none;
}

.leo-table tbody tr.success, .leo-table tbody tr.success p, .leo-table tbody tr.success:hover {
    /*   color: #9bfab1;
    font-weight: bold;*/
    background-color: #9bfab1 !important;
}

.leo-table tbody tr.danger, .leo-table tbody tr.danger:hover {
    background-color: #c6c6e7 !important;
}

    .leo-table tbody tr.danger, .leo-table tbody tr.danger p {
        /*color: #fc4444;
    font-weight: bold;*/
        background-color: #c6c6e7;
    }


.leo-table tbody tr td.leo-nodata img {
    display: block;
    margin: 0 auto;
    width: 459px;
    height: 213px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.leo-table tbody tr td > a {
    padding: 2px 5px;
    display: inline-block;
    vertical-align: top;
}

.leo-table tbody tr td pre {
    text-align: left;
}


.leo-table-imgs {
    height: 100%;
    overflow: auto;
}

    .leo-table-imgs img {
        width: 50px;
        height: 50px;
        margin: 0px 10px 0px 0;
    }

.leo-table .groupstat {
    text-align: left;
}

    .leo-table .groupstat span {
        padding: 0 20px;
    }

.leo-table th p,
.leo-table td p {
    width: 100%;
    max-height: 45px;
    overflow: hidden;
    line-height: 20px;
    padding: 2px 0;
}

.leo-table tbody tr td > a.leo-btn-blue,
.leo-table tbody tr td > a.leo-btn-gray,
.leo-table tbody tr td > a.leo-btn-gray1 {
    padding: 0 5px;
    line-height: 22px;
    margin: 2px auto;
    font-size: 12px;
    margin-left: 5px;
}

.leo-table tbody tr td > img,
.leo-table tbody tr td > a img {
    width: 50px;
    /*height: 50px;*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.leo-table tbody tr td img.unfolded,
.leo-table tbody tr td img.folded {
    width: 25px;
    height: 25px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    cursor: pointer;
}

/*.leo-table tbody tr:nth-child(2n) {
    background-color: #f8f8f8;
}*/

.leo-table tbody tr.select,
.leo-table tbody tr:hover {
    background: #f8f8f8 !important;
}

.leo-table.nohover tbody tr:hover {
    background-color: transparent !important;
}

.leo-table tbody tr.leo-tr-innerdetail {
    background-color: #f8f8f8 !important;
}

.leo-table-innerdiv {
    padding: 20px;
    overflow: auto;
    width: 100%;
}

    .leo-table-innerdiv .leo-table {
        background-color: #fff;
    }

.leo-table tbody tr.warn {
    background-color: red !important;
    color: #fff;
}

    .leo-table tbody tr.warn:hover {
        background-color: red;
    }

    .leo-table tbody tr.warn * {
        color: #000;
    }

.leo-table tbody tr td .opt.icon-delete {
    font-size: 20px;
    padding: 0 5px;
}

.leo-table tbody tr td .opt.icon-edit {
    font-size: 25px;
    padding: 0 5px;
}

.leo-table-inner {
    position: relative;
    padding: 10px 20px;
}

    .leo-table-inner .leo-table-header {
        left: 20px;
        top: 10px;
        right: 20px;
    }

    .leo-table-inner .leo-table th {
        background-color: #f0f5f7;
    }

    .leo-table-inner .leo-table tbody tr.select,
    .leo-table-inner .leo-table tbody tr:hover {
        background-color: #fff !important;
    }

.leo-table tbody tr.bordertop > td {
    border-top: 1px solid #2fb3ff !important;
}

.leo-table tbody tr.borderbottom > td {
    border-bottom: 1px solid #2fb3ff !important;
}


.leo-table .icon-xiala1, .leo-table .icon-xiala {
    cursor: pointer;
    color: #0ae;
}

.leo-table tfoot tr {
    background-color: #ccc;
    font-weight: bold;
}

.leo-table .iconfont.unfolded {
    font-size: 30px;
    cursor: pointer;
    color: #0ae;
}

.leo-table.edit {
    border: 1px solid #ddd;
}

    .leo-table.edit td {
        padding: 0;
        min-height: 45px;
    }

    .leo-table.edit td, .leo-table.edit th {
        border: 1px solid #ddd;
    }

        .leo-table.edit td.bg-gray {
            background-color: #f5f6f7;
        }

    .leo-table.edit input, .leo-table.edit select {
        border-color: transparent;
        border-radius: 0;
        text-align: center;
        height: 100%;
        width: 100%;
    }

        .leo-table.edit input[type=radio],
        .leo-table.edit input[type=checkbox] {
            width: auto;
        }

    .leo-table.edit .leo-input-vmulti {
        border: none;
    }

        .leo-table.edit .leo-input-vmulti p {
            width: auto;
            padding: 3px 5px;
        }

    .leo-table.edit input[type=checkbox] {
        height: 16px;
        width: 16px;
        margin: 3px auto 3px;
        min-height: 16px;
        display: inline-block;
        vertical-align: middle;
    }

    .leo-table.edit textarea {
        border-color: transparent;
        border-radius: 0;
        text-align: left;
        height: 100%;
        -webkit-appearance: none;
        resize: none;
        -moz-outline: 0;
        outline: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }


    .leo-table.edit .group {
        display: flex !important;
        flex-direction: row;
        height: 90%;
        align-items: center;
        justify-items: center;
        padding: 3px 0;
    }

        .leo-table.edit .group input {
            border: 0.0625rem solid #ced4da;
        }
    /*.leo-table.edit input:focus, .leo-table.edit textarea:focus {
        border-color: #0071e6;
    }*/
    .leo-table.edit tbody tr:nth-child(2n) {
        background-color: transparent !important;
    }

    .leo-table.edit tbody tr.select,
    .leo-table.edit tbody tr:hover {
        background-color: transparent !important;
    }

    .leo-table.edit .relative {
        height: 100%;
        position: relative;
    }

.leo-loading-inner,
.leo-nodata {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    line-height: 28px;
    color: #636262;
}

    .leo-loading-inner img {
        margin-right: 10px;
    }

    .leo-loading-inner p {
        color: #c8c9ca;
    }

/*#endregion*/

/*#region leo-pagination**/
.leo-pagination {
    background-color: #FFFFFF;
    padding: 0.3125rem 0.3125rem;
    border-top: 0.0625rem solid #c5d0dc;
    height: 2.5rem;
}

.leo-footer .leo-pagination {
    border-top: none;
}

.leo-pagination.fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: right;
}

.leo-pagination .total {
    padding: 0.375rem 0.625rem;
}

.leo-pagination .leo-input-row {
    width: 6.25rem;
    padding: 0;
}

    .leo-pagination .leo-input-row select {
        width: 100%;
        text-align: center;
        height: 1.75rem;
        border: 0.0625rem solid #ced4da;
        padding: 0 0.625rem;
    }

    .leo-pagination .leo-input-row input {
        height: 1.75rem;
    }

    .leo-pagination .leo-input-row.down:after {
        right: 10px;
    }

    .leo-pagination .leo-input-row.go {
        font-size: 0;
        width: 90px;
        margin-right: 30px;
    }

        .leo-pagination .leo-input-row.go input {
            width: 40px;
            text-align: center;
        }

.leo-pagination .leo-input-prepend,
.leo-pagination .leo-input-after {
    line-height: 1.6875rem;
    padding: 0 2px;
    background-color: transparent;
    border: none;
}

    .leo-pagination .leo-input-prepend ~ input {
        border-radius: .25rem;
    }

.leo-pagination .leo-input-row.page {
    line-height: 1.75rem;
    width: auto;
}

    .leo-pagination .leo-input-row.page span {
        display: inline-block;
        vertical-align: top;
        padding: 0 0.625rem;
        font-weight: bold;
    }

        .leo-pagination .leo-input-row.page span.disabled {
            cursor: not-allowed;
            color: #c8c9ca;
        }

/*#endregion **/

/*#region leo-accordion**/
.leo-accordion {
    border: 1px solid #eee;
    border-bottom: none;
    width: 180px;
    position: relative;
    /*-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;*/
}

.console-aside .leo-accordion {
    background-color: #ffffff;
}

.leo-accordion h3 {
    padding: 10px 30px;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    .leo-accordion h3.leo-active {
    }

    .leo-accordion h3 .iconfont {
        position: absolute;
        top: 8px;
        font-size: 18px;
    }

    .leo-accordion h3 .icon-caidan {
        left: 8px;
    }

    .leo-accordion h3 .icon-xiala, .leo-accordion h3 .icon-xiala2 {
        right: 8px;
    }

    .leo-accordion h3 a {
        color: #000;
    }

.leo-accordion menu {
    display: none;
}

.leo-accordion h3.absolute-top ~ menu {
    overflow: auto;
    padding-top: 40px;
}

.leo-accordion menu a {
    border-bottom: 1px solid #9aabab;
    display: block;
    padding: 10px 15px 10px 30px;
    color: #555;
    text-align: left;
    position: relative;
}

    .leo-accordion menu a:hover {
        text-decoration: none;
        background-color: #f5f5f5;
    }

    .leo-accordion menu a.leo-active {
        background-color: #428bca;
        border: 1px solid #428bca;
        color: #fff;
    }

    .leo-accordion menu a .iconfont {
        display: none;
        position: absolute;
    }

    .leo-accordion menu a:hover .iconfont {
        display: block;
    }


    .leo-accordion menu a .icon-xiugai {
        right: 40px;
        top: 9px;
        font-size: 14px;
    }

    .leo-accordion menu a .icon-hebingxingzhuang {
        right: 10px;
        font-size: 20px;
        top: 5px;
    }
/*#endregion **/

/*#region condition*/
.leo-condition {
}

.leo-input-row .leo-condition {
    margin-top: 5px;
}

.leo-condition ul li {
    margin-bottom: 5px;
    line-height: 25px;
}

.leo-condition select {
    line-height: 25px !important;
    height: 25px !important;
    font-size: 12px;
    margin-right: 5px;
}

.leo-condition a {
    padding-left: 10px;
}

    .leo-condition a.icon-delete {
        font-size: 18px;
    }

    .leo-condition a:hover {
        text-decoration: none;
    }

.leo-condition .authority-relation label {
    margin-right: 10px;
    color: #ccc;
    background-color: #2e3033;
    line-height: 24px;
    padding: 0 5px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.leo-condition ul li ul {
    margin-top: 5px;
    padding-left: 70px;
}

.leo-condition .leo-input-row {
    width: 150px;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 2px;
}

    .leo-condition .leo-input-row.full {
        width: 120px !important;
    }

    .leo-condition .leo-input-row input, .leo-condition .leo-input-row select, .leo-condition .leo-input-row textarea {
        line-height: 25px !important;
        height: 25px !important;
    }

.leo-condition .leo-checkbox {
    margin: 4px 0 8px;
}

.leo-condition .leo-input-row label.checkbox {
    line-height: normal;
}

/*#endregion*/

/*#region lodding*/
.lodding {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #FFF;
    text-align: center;
    /*新增by pekey 20171211*/
    padding-top: 250px;
}

.loading_tit {
    padding: 20px 0px 0px 15px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    font-family: 微軟正黑體;
    text-align: center;
}

#circularG {
    position: relative;
    width: 58px;
    height: 58px;
    margin: auto;
}

.circularG {
    position: absolute;
    background-color: rgb(27,95,172);
    width: 14px;
    height: 14px;
    border-radius: 9px;
    -o-border-radius: 9px;
    -ms-border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    animation-name: bounce_circularG;
    -o-animation-name: bounce_circularG;
    -ms-animation-name: bounce_circularG;
    -webkit-animation-name: bounce_circularG;
    -moz-animation-name: bounce_circularG;
    animation-duration: 1.1s;
    -o-animation-duration: 1.1s;
    -ms-animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    -moz-animation-duration: 1.1s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#circularG_1 {
    left: 0;
    top: 23px;
    animation-delay: 0.41s;
    -o-animation-delay: 0.41s;
    -ms-animation-delay: 0.41s;
    -webkit-animation-delay: 0.41s;
    -moz-animation-delay: 0.41s;
}

#circularG_2 {
    left: 6px;
    top: 6px;
    animation-delay: 0.55s;
    -o-animation-delay: 0.55s;
    -ms-animation-delay: 0.55s;
    -webkit-animation-delay: 0.55s;
    -moz-animation-delay: 0.55s;
}

#circularG_3 {
    top: 0;
    left: 23px;
    animation-delay: 0.69s;
    -o-animation-delay: 0.69s;
    -ms-animation-delay: 0.69s;
    -webkit-animation-delay: 0.69s;
    -moz-animation-delay: 0.69s;
}

#circularG_4 {
    right: 6px;
    top: 6px;
    animation-delay: 0.83s;
    -o-animation-delay: 0.83s;
    -ms-animation-delay: 0.83s;
    -webkit-animation-delay: 0.83s;
    -moz-animation-delay: 0.83s;
}

#circularG_5 {
    right: 0;
    top: 23px;
    animation-delay: 0.97s;
    -o-animation-delay: 0.97s;
    -ms-animation-delay: 0.97s;
    -webkit-animation-delay: 0.97s;
    -moz-animation-delay: 0.97s;
}

#circularG_6 {
    right: 6px;
    bottom: 6px;
    animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
}

#circularG_7 {
    left: 23px;
    bottom: 0;
    animation-delay: 1.24s;
    -o-animation-delay: 1.24s;
    -ms-animation-delay: 1.24s;
    -webkit-animation-delay: 1.24s;
    -moz-animation-delay: 1.24s;
}

#circularG_8 {
    left: 6px;
    bottom: 6px;
    animation-delay: 1.38s;
    -o-animation-delay: 1.38s;
    -ms-animation-delay: 1.38s;
    -webkit-animation-delay: 1.38s;
    -moz-animation-delay: 1.38s;
}



@keyframes bounce_circularG {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(.3);
    }
}

@-o-keyframes bounce_circularG {
    0% {
        -o-transform: scale(1);
    }

    100% {
        -o-transform: scale(.3);
    }
}

@-ms-keyframes bounce_circularG {
    0% {
        -ms-transform: scale(1);
    }

    100% {
        -ms-transform: scale(.3);
    }
}

@-webkit-keyframes bounce_circularG {
    0% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(.3);
    }
}

@-moz-keyframes bounce_circularG {
    0% {
        -moz-transform: scale(1);
    }

    100% {
        -moz-transform: scale(.3);
    }
}
/*#endregion*/


/*#region leo-tree*/
.leo-tree {
    padding-left: 10px;
    padding-bottom: 15px;
    background-color: #fff;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 40px;
    height: auto;
}

    .leo-tree ul ul {
        display: none;
    }

.leo-tree-item {
    height: 30px;
    position: relative;
}

    .leo-tree-item.leo-tree-sub {
        padding-left: 3px;
    }

    .leo-tree-item span, .leo-tree-item label {
        display: inline-block;
        vertical-align: middle;
        max-width: 120px;
    }

    .leo-tree-item input[type=checkbox] {
        vertical-align: middle;
    }

    .leo-tree-item a {
        display: inline-block;
        vertical-align: middle;
        padding-right: 10px;
    }

.leo-tree-open-line {
    background: url(/Content/Images/Tree/tree-open-line.png) no-repeat left center;
    width: 13px;
    height: 100%;
    cursor: pointer;
}

.leo-tree-open {
    background: url(/Content/Images/Tree/tree-open.png) no-repeat left center;
    width: 15px;
    height: 100%;
    cursor: pointer;
}

.leo-tree-close-line {
    background: url(/Content/Images/Tree/tree-close-line.png) no-repeat 1px center;
    width: 13px;
    height: 100%;
    cursor: pointer;
}

.leo-tree-close {
    background: url(/Content/Images/Tree/tree-close.png) no-repeat center center;
    width: 15px;
    height: 10px;
    cursor: pointer;
}

.leo-tree-vline {
    width: 17px;
    height: 100%;
    background: url(/Content/Images/Tree/vline.png) no-repeat left center;
}

.leo-tree-text {
    color: #3d5266;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-left: 3px;
    cursor: pointer;
    height: 20px;
    padding: 0 2px;
    line-height: 18px;
    border: 1px solid transparent;
    display: inline-block;
    margin-right: 10px;
}

    .leo-tree-text.select {
        background-color: #fff5e5;
        border: 1px solid #efd6af;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

.leo-tree-last-node {
    background: url(/Content/Images/Tree/last.png) no-repeat center center;
    width: 13px;
    height: 11px;
}

.leo-tree-vlinelast {
    width: 17px;
    height: 100%;
    background: url(/Content/Images/Tree/vlinelast.png) no-repeat left center;
}

.leo-tree-hline {
    width: 20px;
    height: 100%;
    background: url(/Content/Images/Tree/hline.png) repeat-y left center;
}
/*#endregion*/

/*#region tree2*/
.leo-tree2 {
    display: block;
    position: relative;
    padding: 5px 15px;
}

    .leo-tree2 .leo-alert {
        padding: 2px;
        margin-left: 10px;
    }

    .leo-tree2 li > label {
        display: inline-block;
        box-sizing: border-box;
        height: 30px;
        line-height: 28px;
        min-width: 60px;
        text-align: center;
        color: #888;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 0 8px;
    }

    .leo-tree2 ul {
        position: relative;
        padding-left: 60px;
        margin: 0;
    }

        .leo-tree2 ul > li {
            position: relative;
            padding: 5px 0;
        }

    .leo-tree2 > ul {
        padding: 0;
        margin: 0;
    }
        /** 水平方向连线 */
        .leo-tree2 > ul ul > li:after {
            content: ' ';
            position: absolute;
            top: 20px;
            left: -45px;
            width: 45px;
            border: none;
            border-top: 1px solid #ddd;
        }
    /** 垂直方向连线 */
    .leo-tree2 ul > li:not(:last-child):before {
        content: ' ';
        position: absolute;
        top: 0;
        left: -45px;
        height: 100%;
        border: none;
        border-left: 1px solid #ddd;
    }

    .leo-tree2 ul > li:last-child:before {
        content: ' ';
        position: absolute;
        top: 0;
        left: -45px;
        height: 20px;
        border: none;
        border-left: 1px solid #ddd;
    }
/*#endregion*/

/*#region atlas*/
.leo-atlas {
    display: block;
    position: relative;
    padding: 5px 15px;
    display: flex;
}

    .leo-atlas ul li.autoleft:after {
        left: 70px;
        right: 232px;
    }

    .leo-atlas ul li.left:after {
        border-bottom: none;
    }





    .leo-atlas .line-no:after, .leo-atlas .line-no:before, .leo-atlas .line-no label:after {
        border: none;
    }

.line-no-top:before {
    border: none !important;
}


.leo-atlas ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .leo-atlas ul ul {
        align-items: flex-start;
    }

    .leo-atlas ul li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        position: relative;
    }


.leo-atlas li label {
    display: inline-block;
    box-sizing: border-box;
    height: 30px;
    line-height: 28px;
    min-width: 60px;
    text-align: center;
    color: #888;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 8px;
    margin-bottom: 20px;
}

    .leo-atlas li label:after {
        content: ' ';
        position: absolute;
        top: 30px;
        left: 50%;
        height: 12px;
        border: none;
        border-left: 1px solid #ddd;
    }

    .leo-atlas li label:before {
        content: ' ';
        position: absolute;
        top: -10px;
        left: 50%;
        height: 12px;
        border: none;
        border-left: 1px solid #ddd;
    }

.leo-atlas ul li div {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 10px;
    position: absolute;
    top: 30px;
    left: 30px;
    right: 40px;
}
/*#endregion*/

/*#region leo-droptree*/
.leo-droptree {
    top: 320px;
    left: 235px;
    padding: 10px;
    width: 793px;
}

.leo-droptree-tab {
    border-bottom: 2px solid red;
    height: 44px;
}

    .leo-droptree-tab a {
        border: 1px solid #CECBCE;
        padding: 10px;
        display: inline-block;
        vertical-align: top;
        background-color: #fff;
        border-bottom-color: #fff;
        border-right: none;
    }

        .leo-droptree-tab a.select {
            border: 2px solid red;
            border-bottom: none;
            height: 44px;
        }

.leo-droptree-content {
    padding-top: 10px;
    font-size: 0;
    max-height: 200px;
    overflow: auto;
    position: relative;
}

    .leo-droptree-content .icon-plus {
        position: absolute;
        font-size: 22px;
        color: #0ae;
        right: 10px;
        font-weight: bold;
        cursor: pointer;
        top: 0;
    }

    .leo-droptree-content a {
        width: 20%;
        font-size: 12px;
        padding: 10px 0;
        margin-right: 5px;
    }

        .leo-droptree-content a:hover {
            color: orangered;
        }

/*#endregion*/

/*#region leo-numbox*/
.leo-numbox {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 35px;
    padding: 0 40px;
    overflow: hidden;
    vertical-align: top;
    vertical-align: middle;
    background-color: #efeff4;
    border: solid 1px #bbb;
    border-radius: 3px;
}

.leo-table .leo-numbox {
    margin: 5px;
}

.leo-numbox .leo-numbox-minus, .leo-numbox .leo-numbox-plus {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    padding: 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    color: #555;
    background-color: #f9f9f9;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.leo-numbox .leo-numbox-minus {
    left: 0;
    border-right: solid 1px #bbb;
}

.leo-numbox .leo-numbox-plus {
    right: 0;
    border-left: solid 1px #bbb;
}

.leo-numbox .leo-input-numbox {
    text-align: center;
    width: 100% !important;
}
/*#endregion*/


/*#region switch*/
.leo-switch {
    position: relative;
    display: block;
    width: 74px;
    height: 30px;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: background-color, border;
    transition-property: background-color, border;
    border: 2px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    background-clip: padding-box;
}

.leo-table .leo-switch {
    margin: 0 auto;
}

.leo-switch.leo-disabled {
    opacity: .3;
}

.leo-switch .leo-switch-handle {
    position: absolute;
    z-index: 1;
    top: -1px;
    left: -1px;
    width: 28px;
    height: 28px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -webkit-transition-property: -webkit-transform, width,left;
    transition-property: transform, width,left;
    border-radius: 16px;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
}

.leo-switch:before {
    font-size: 13px;
    position: absolute;
    top: 3px;
    right: 11px;
    content: 'Off';
    text-transform: uppercase;
    color: #999;
}

.leo-switch.leo-dragging {
    border-color: #f7f7f7;
    background-color: #f7f7f7;
}

    .leo-switch.leo-dragging .leo-switch-handle {
        width: 38px;
    }

    .leo-switch.leo-dragging.leo-active .leo-switch-handle {
        left: -11px;
        width: 38px;
    }

.leo-switch.leo-active {
    border-color: #4cd964;
    background-color: #4cd964;
}

    .leo-switch.leo-active .leo-switch-handle {
        -webkit-transform: translate(43px, 0);
        transform: translate(43px, 0);
    }

    .leo-switch.leo-active:before {
        right: auto;
        left: 15px;
        content: 'On';
        color: #fff;
    }

.leo-switch input[type='checkbox'] {
    display: none;
}

.leo-switch-mini {
    width: 47px;
}

    .leo-switch-mini:before {
        display: none;
    }

    .leo-switch-mini.leo-active .leo-switch-handle {
        -webkit-transform: translate(16px, 0);
        transform: translate(16px, 0);
    }

.leo-switch-blue.leo-active {
    border: 2px solid #007aff;
    background-color: #007aff;
}
/*#endregion*/

/*#region upload*/
.leo-input-upload {
    font-size: 12px;
    width: 96%;
    max-width: 250px;
    position: relative;
    margin-left: 4px;
    padding: 4px 0;
}

    .leo-input-upload img {
        width: 50px;
        max-height: 50px;
        cursor: pointer;
        display: block;
    }

    .leo-input-upload input {
        overflow: hidden;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

    .leo-input-upload p {
        color: #abaaaa;
        position: absolute;
        bottom: 2px;
        left: 60px;
        overflow: hidden;
    }

    .leo-input-upload .iconfont {
        color: #ccc;
        position: absolute;
        cursor: pointer;
        left: 60px;
        top: 0px;
    }

    .leo-input-upload.detail {
        min-height: 50px;
    }

    .leo-input-upload .files div {
        width: 50px;
        /* height: 50px;*/
        position: relative;
        margin-right: 10px;
    }

        .leo-input-upload .files div .icon-shanchu {
            left: 36px;
            top: -8px;
            display: none;
        }

        .leo-input-upload .files div:hover .icon-shanchu {
            display: block;
        }

    .leo-input-upload .placeholder {
        width: 50px;
        height: 50px;
        position: relative;
    }

    .leo-input-upload.detail .iconfont {
        color: #ccc;
        position: relative;
        cursor: pointer;
        left: 0;
        top: 0px;
        display: block;
    }

    .leo-input-upload.detail .files div {
        text-align: center;
    }

.leo-rich-text {
}

    .leo-rich-text .leo-input-upload {
        width: 80px;
    }

        .leo-rich-text .leo-input-upload img, .leo-rich-text .leo-input-upload input {
            height: 60px;
            width: 60px;
        }

    .leo-rich-text .leo-btn-blue {
        height: 60px;
        line-height: 60px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: bold;
    }
/*#endregion*/


.leo-menuright-opt {
    margin-bottom: 10px;
}

    .leo-menuright-opt div {
        line-height: 30px;
    }

    .leo-menuright-opt label {
        padding-left: 20px;
    }

    .leo-menuright-opt input[type=checkbox] {
        font-size: 14px;
        margin-right: 5px;
    }

    .leo-menuright-opt select {
        height: 28px;
        line-height: 26px;
        font-size: 12px;
        margin-left: 5px;
    }

/*#region tab*/
.leo-tab {
    display: block;
    width: 100%;
}

.leo-search-container .leo-tab {
    position: absolute;
    left: 0;
    top: 5px;
}

.leo-tab .leo-tab-header {
    text-align: left;
}

.leo-tab-header {
    clear: both;
    font-size: 0;
}

    .leo-tab-header a {
        font-size: 12px;
        cursor: pointer;
        line-height: 30px;
        border: 1px solid #e5e5e5;
        border-left: none;
        display: inline-block;
        background: #fafafa;
        position: relative;
        padding: 0 15px;
    }

        .leo-tab-header a:first-child {
            border-left: 1px solid #e5e5e5;
        }

        .leo-tab-header a:hover {
            text-decoration: none;
        }

        .leo-tab-header a.select {
            background: #2fb3ff;
            padding-top: 1px;
            color: #fff;
            border: 1px solid #2fb3ff;
        }

            .leo-tab-header a.select::after {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
                background-color: inherit;
                position: absolute;
                display: block;
                bottom: -2px;
                content: "";
                height: 5px;
                width: 5px;
                right: 50%;
            }

    .leo-tab-header img.plus, .leo-tab-header img.select, .leo-tab-header img.reload, .leo-tab-header img.piliangtianjia {
        width: 32px;
        height: 32px;
        cursor: pointer;
        margin-left: 5px;
    }

    .leo-tab-header img.piliangtianjia {
        width: 28px;
        height: 28px;
    }

.leo-tab-content {
}

.leo-tab-item {
    display: none;
    position: relative;
    padding-top: 20px;
}

    .leo-tab-item.select {
        display: block;
    }
/*#endregion*/

/*#region steps*/
.leo-steps {
}

    .leo-steps .steps-item:last-child .steps-text {
        border: none;
    }

    .leo-steps .steps-line {
        width: 30px;
    }

        .leo-steps .steps-line .line-before,
        .leo-steps .steps-line .line-circle,
        .leo-steps .steps-line .line-after {
            width: 1px;
            background-color: #999;
        }

    .leo-steps .steps-item.active .steps-line .line-before,
    .leo-steps .steps-item.active .steps-line .line-circle,
    .leo-steps .steps-item.active .steps-line .line-after {
        background-color: #28a745;
    }

    .leo-steps .steps-item.active .steps-text {
        color: #28a745;
    }

    .leo-steps .steps-line .line-before {
        height: 6px;
    }

        .leo-steps .steps-line .line-before.first {
            background-color: transparent !important;
        }



    .leo-steps .steps-line .line-circle {
        width: 5px;
        height: 5px;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        background-color: #999;
    }

    .leo-steps .steps-line .line-after {
    }

    .leo-steps .steps-line .line-check {
        font-size: 12px;
        color: #999;
    }

        .leo-steps .steps-line .line-check.active {
            color: #28a745;
        }
/*#endregion**/

.leo-detail-table {
    width: 710px;
    margin: 0 auto;
}

    .leo-detail-table table {
        width: 100%;
        border-left: 1px solid #000000;
        border-top: 1px solid #000000;
        table-layout: fixed;
    }

        .leo-detail-table table td, .leo-detail-table table td th {
            border-right: 1px solid #000000;
            border-bottom: 1px solid #000000;
            padding: 10px;
            font-size: 14px;
        }

            .leo-detail-table table td th {
                font-weight: normal !important;
                width: 25%;
            }

            .leo-detail-table table td td {
                text-align: center;
                border: none;
                border-top: 1px solid #000000;
                border-left: 1px solid #000000;
            }

        .leo-detail-table table table {
            width: 100%;
            border: none;
            margin-left: -1px;
        }

            .leo-detail-table table table thead tr th:last-child {
                border-right: none;
            }

.leo-card {
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
    border: 0.0625rem solid #dee2e6;
}

.leo-card-header {
    border-bottom: 1px solid #dee2e6;
    padding: 10px;
}

.leo-card-title {
    font-size: 0.125rem;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.leo-card-body {
    padding: 10px;
}

@media screen and (max-width:600px) {
    .leo-input-row {
        width: 100%;
    }
}

@media screen and (min-width:601px) and (max-width:901px) {
    .leo-input-row {
        width: 50%;
    }
}

/*@media screen and (min-width:1200px) {
    .leo-input-row {
        width: 25%;
    }
}
*/

/*.toolbar {
    text-align: right;
}
*/
/*#region console*/
.console-header {
    background: #ffffff;
    -webkit-box-shadow: 0 1px 1px 0 #dadada;
    box-shadow: 0 1px 1px 0 #dadada;
    left: 180px;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 999;
    height: 3.625rem;
}

.console-header-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0.3125rem 0 0 1.25rem;
}

    .console-header-left .title {
        margin-bottom: 0.25rem;
        font-weight: 600;
        color: #333;
        font-size: 1.25rem;
    }

    .console-header-left .message {
        color: #555;
    }

.console-header-right {
    float: right;
    position: relative;
    padding-right: 0.625rem;
}

    .console-header-right .user {
        cursor: pointer;
        height: 3.625rem;
        position: relative;
        background-color: #fff;
        padding-top: 0.5rem;
    }

        .console-header-right .user img {
            width: 2.5rem;
            height: 2.5rem;
            position: absolute;
            left: 0.125rem;
            top: 0.5rem;
            border-radius: 2.5rem;
        }

        .console-header-right .user h3 {
            height: 1.75rem;
            line-height: 1.75rem;
            padding: 0 1.875rem 0 3.125rem;
            color: #668dff;
        }

        .console-header-right .user h4 {
            margin-top: -0.3125rem;
            font-size: 0.75rem;
            color: #555;
            padding: 0 1.875rem 0 3.125rem;
        }

        .console-header-right .user .more {
            position: absolute;
            right: 0.625rem;
            top: 50%;
            margin-top: -0.625rem;
            color: #dadada;
        }

        .console-header-right .user:hover .more {
            color: #555555;
        }

        .console-header-right .user .more:before {
            content: "\e601";
        }

        .console-header-right .user:hover .more:before {
            content: "\e602";
        }

        .console-header-right .user .leo-dropdown-menu {
            top: 3.625rem;
        }

        .console-header-right .user:hover .leo-dropdown-menu {
            display: block;
        }

    .console-header-right .tool.user {
        padding: 0;
    }

    .console-header-right .tool a {
        display: inline-block;
        width: 2.5rem;
        height: 3.625rem;
        line-height: 3.625rem;
        text-align: center;
        font-size: 1.25rem;
        color: #9ba3af;
        position: relative;
        padding: 0;
    }

        .console-header-right .tool a i {
            height: 0.3125rem;
            width: 0.3125rem;
            border-radius: 50%;
            background: #f90000;
            position: absolute;
            right: 0.625rem;
            top: 0.8125rem;
            display: none;
        }

.console-aside {
    position: fixed;
    z-index: 100;
    width: 180px;
    top: 0;
    bottom: 0px;
    overflow: hidden;
    -moz-box-shadow: 0 0 0.625rem #BDBDBD;
    -webkit-box-shadow: 0 0 0.625rem #BDBDBD;
    box-shadow: 0 0 0.625rem #BDBDBD;
    background-color: #1b2a47;
    background-color: #222b3b;
    padding-top: 125px;
}

    .console-aside.bg-white {
        background-color: #ffffff;
        overflow: auto;
    }

body > .console-aside.bg-white {
    top: 0px;
}

.console-aside .logo {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #222b3b;
}

    .console-aside .logo .md {
        width: 170px;
        margin-top: 10px;
    }

    .console-aside .logo .sm {
        height: 3.125rem;
        display: none;
    }


.console-aside .nav {
    overflow: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #222b3b;
    width: 100%;
}

    .console-aside .nav .nav-main {
        cursor: pointer;
        border-bottom: 1px solid #354156;
        -webkit-transition: all .15s ease-out 0s;
        transition: all .15s ease-out 0s;
    }

        .console-aside .nav .nav-main .title {
            background-color: transparent;
            line-height: 49px;
            color: #245582;
            position: relative;
            border-bottom: 1px solid #354156a8;
        }

            .console-aside .nav .nav-main .title a {
                display: block;
            }

        .console-aside .nav .nav-main.active {
            background-color: #222b3b;
        }

            .console-aside .nav .nav-main.active .title {
                background-color: #222b3b;
                color: #fff;
            }

                .console-aside .nav .nav-main.active .title .iconfont,
                .console-aside .nav .nav-main.active .title .text {
                    color: #fff;
                }

        .console-aside .nav .nav-main .iconfont {
            width: 1.875rem;
            height: 2.5rem;
            text-align: center;
            color: #8b919e;
            position: absolute;
            /* left: 0; */
            top: 0;
        }

        .console-aside .nav .nav-main .text {
            color: #8b919e;
            font-size: 0.875rem;
            padding-left: 1.875rem;
        }

        .console-aside .nav .nav-main .active .text {
            color: #f0f5ff;
        }

        .console-aside .nav .nav-main ul {
            display: none;
            -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
        }

        .console-aside .nav .nav-main.active > ul {
            display: block;
        }

        .console-aside .nav .nav-main ul li {
            line-height: 2.5rem;
            position: relative;
        }

            .console-aside .nav .nav-main ul li:hover {
                background-color: #131B28;
            }
            /* 
.console-aside .nav .nav-main ul li:after {
	content: "";
	width: 100%;
	height: 0.0625rem;
	background: #283040;
	display: table;
	margin: 0 auto;
} */

            .console-aside .nav .nav-main ul li:last-child:after {
                background-color: transparent;
            }

            .console-aside .nav .nav-main ul li a {
                display: block;
                text-indent: 0.875rem;
                height: 2.5rem;
                overflow: hidden;
                position: relative;
                padding-right: 0.625rem;
            }


            .console-aside .nav .nav-main ul li .text {
                padding-left: 1.25rem;
            }

            .console-aside .nav .nav-main ul li.active {
                background-color: #131B28;
                color: #fff !important;
            }

                .console-aside .nav .nav-main ul li.active .iconfont {
                    color: #fff !important;
                }

.console-body {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.console-header ~ .console-body {
    padding-top: 3.625rem;
}

.console-aside ~ .console-body {
    margin-left: 180px;
}

    .console-aside ~ .console-body .leo-table-content {
        overflow: auto;
    }

.console-body-iframe {
    width: 100%;
    height: 100%;
}
/*#endregion*/

/*#region renshi nav **/
.renshi-nav {
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .renshi-nav ul li {
        border-bottom: 0;
        line-height: 35px;
        display: block;
    }

    .renshi-nav ul > li, .renshi-nav ul > li > a, .renshi-nav > ul > li > a > .iconfont {
        line-height: 49px;
    }

    .renshi-nav > ul > li {
        background: #2B3648;
    }

    .renshi-nav ul li a {
        color: #fff;
        border-bottom: 1px solid #354156a8;
        display: block;
    }

        .renshi-nav ul li a .iconfont {
            height: 49px;
            width: 40px;
            text-align: center;
        }

        .renshi-nav ul li a .txt {
            font-size: 16px;
        }

    .renshi-nav ul li li .iconfont {
        line-height: 35px;
        height: 35px;
        width: 35px;
    }

    .renshi-nav ul li .inactive {
    }

    .renshi-nav ul li .inactives {
        background: #1e9fffa8;
    }

        .renshi-nav ul li .inactives ~ ul {
            display: block;
        }

    .renshi-nav ul li li .inactives {
        background: #1e9fff63;
    }

        .renshi-nav ul li li .inactives span {
            transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }

    .renshi-nav ul li ul {
        display: none;
    }

    .renshi-nav ul li ul {
        background: #222b3b;
    }

        .renshi-nav ul li ul li, .renshi-nav ul li ul li a {
            line-height: 35px;
        }

            .renshi-nav ul li ul li ul {
                display: none;
            }

            .renshi-nav ul li ul li a {
                padding-left: 8px;
            }

            .renshi-nav ul li ul li ul li {
                background-color: #222b3b;
            }

                .renshi-nav ul li ul li ul li a {
                    color: #20262f;
                    padding-left: 43px;
                    color: #ffffffa8;
                }

                    .renshi-nav ul li ul li ul li a:hover {
                        color: #fff;
                    }
/*#endregion*/

/*#region login*/
.leo-login {
   /* background-image: url('../Images/login/login_bg.png');*/
    background-repeat: no-repeat;
    background-size: 60% 100%;
    width: 100%;
    height: 100%;
}

    .leo-login .leo-alert-danger {
        overflow: hidden;
        margin-top: 20px;
        border-radius: 0.125rem;
    }

.leo-login-logo {
    width: 12.5rem;
    margin: 1.875rem 5.5rem;
}

.leo-login-image {
    width: 30%;
    position: absolute;
    top: 50%;
    margin-top: -18%;
    left: 14%;
}

.leo-login-right {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
}

.leo-login .langauge {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 100;
}

    .leo-login .langauge:hover .leo-dropdown-menu {
        display: block;
    }

    .leo-login .langauge a {
        border-radius: 0rem;
        padding: 0.625rem;
    }

    .leo-login .langauge .iconfont {
        font-size: 0.75rem;
        margin-left: 0.3125rem;
    }

        .leo-login .langauge .iconfont:before {
            content: "\e601";
        }

    .leo-login .langauge:hover .iconfont:before {
        content: "\e602";
    }

    .leo-login .langauge .leo-dropdown-menu {
        background-color: #2fb3ff;
        box-shadow: none;
        color: #fff;
        border-radius: 0rem;
    }

.leo-login-form {
    width: 80%;
    max-width: 400px;
    padding: 1.25rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30%;
    margin-top: -250px;
}

    .leo-login-form h1 {
        padding: 1.25rem;
        text-align: center;
        font-size: 1.375rem;
        margin-bottom: 10px;
    }

    .leo-login-form .leo-input-row {
        margin-bottom: 26px;
        width: 100%;
        padding: 0;
    }

        .leo-login-form .leo-input-row label {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 48px;
            line-height: 48px;
            text-align: center;
            color: #888;
        }

        .leo-login-form .leo-input-row input {
            padding-left: 48px;
            border-radius: 0.125rem;
            height: 48px;
        }

            .leo-login-form .leo-input-row input:focus ~ label {
                color: #0071e6;
            }

    .leo-login-form .leo-btn-blue, .leo-login-form .leo-btn-gray {
        width: 100%;
        display: block;
        position: relative;
        cursor: pointer;
    }

        .leo-login-form .leo-btn-gray img {
            position: absolute;
            right: 0px;
            top: 8px;
        }

    .leo-login-form .forget {
        font-size: 0.75rem;
        font-weight: normal;
        text-align: right;
        display: block;
        color: #888;
    }

        .leo-login-form .forget:hover {
            text-decoration: underline;
        }

.leo-login .leo-footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: auto;
}

    .leo-login .leo-footer p {
        color: #888888;
        text-align: center;
        padding-bottom: 0.625rem;
    }

@media screen and (max-width:700px) {
    .leo-login {
        background-image: none;
        background-color: #4294ff;
    }

    .leo-login-image {
        display: none;
    }

    .leo-login-right {
        width: 100%;
    }

    .leo-login .langauge {
        top: 2.8125rem;
    }

    .leo-login-form h1 {
        color: #FFFFFF;
    }

    .leo-login-form .forget {
        color: #FFFFFF;
    }

    .leo-login .leo-footer p {
        color: #FFFFFF;
        padding: 0 1.25rem;
    }

        .leo-login .leo-footer p.browser {
            display: none;
        }

    .leo-login .leo-footer {
        background-color: transparent;
    }

    .leo-login .leo-login-form {
        margin-left: -45%;
        max-width: none;
        width: 90%;
    }
}
/*#endregion*/

/*#region tdc*/
.tdc-title {
    font-weight: bold;
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
}

.tdc-brief {
    width: 100%;
    background-color: #f8f8f9;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
}

.tdc-article p {
    line-height: 20px;
}

.tdc-article pre {
    border-radius: 5px;
    background-color: #e6e9ea;
    padding: 10px !important;
}
/*#endregion*/

/*#region doc*/
.doc-body {
    height: 100%;
    width: 100%;
}

.doc-nav {
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 4px #e1e5e9;
    padding: 14px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: fixed;
    background: #fff;
    padding: 9px 0;
    margin: 0;
}

    .doc-nav h1 {
        font-weight: bold;
    }

.doc-content {
}

.doc-nav ~ .doc-content {
    padding-top: 43px;
}

.doc-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.doc-toolbar {
    background-color: #f9fafb;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 10px;
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    z-index: 100;
}

.doc-toolbar-btns a {
    color: #09AAFF;
    padding: 0 10px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #83bdff;
    line-height: 32px;
    margin-top: 7px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

    .doc-toolbar-btns a:hover {
        color: #0071e6;
    }

    .doc-toolbar-btns a i {
        margin-right: 5px;
    }

.doc-search {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 100;
    width: 340px;
}

.doc-search-form {
    padding-left: 15px;
    padding-right: 54px;
    background: #f1f2f4;
    border-radius: 33px;
    width: 250px;
    margin-top: 6px;
    position: relative;
}

    .doc-search-form input {
        width: 100%;
        height: 38px;
        background: 0 0;
        border: 0;
        outline: 0;
        font-size: 12px;
    }

    .doc-search-form .iconfont {
        position: absolute;
        top: 0;
        height: 38px;
        display: block;
        line-height: 38px;
        font-size: 18px;
        font-weight: bold;
        right: 0;
        width: 38px;
        text-align: center;
        z-index: 200;
        cursor: pointer;
    }

.doc-search-sort {
    margin-top: 6px;
    position: relative;
    padding-left: 5px;
}

    .doc-search-sort .iconfont {
        font-size: 20px;
        line-height: 38px;
        padding: 0 5px;
        cursor: pointer;
    }

        .doc-search-sort .iconfont:hover, .doc-search-form .iconfont:hover {
            color: #0071e6;
        }

.doc-loc {
    line-height: 40px;
    position: relative;
}

.doc-loc-nav {
    color: #666;
}

    .doc-loc-nav a {
        padding: 0 5px;
    }

    .doc-loc-nav .iconfont {
        font-size: 14px;
        line-height: 30px;
    }

.doc-files {
    width: 100%;
    padding-top: 50px;
    overflow: auto;
}

.doc-loc-page a, .doc-loc-page span {
    padding: 0 5px;
}

.doc-checkall {
    padding-bottom: 10px;
}

    .doc-checkall span {
        padding-left: 5px;
    }

.doc-files {
    padding-top: 112px;
    overflow: auto;
    height: 100%;
}

.doc-file {
    width: 120px;
    height: 127px;
    float: left;
    margin: 4px 0 0 6px;
    text-align: center;
    border: 1px solid #fff;
    position: relative;
    border-radius: 5px;
    position: relative;
}

    .doc-file input {
        position: absolute;
        top: 5px;
        left: 5px;
        background-color: #f1f5fa;
        display: none;
    }

    .doc-file p {
        margin: 6px 5px 5px;
        font-size: 14px;
    }

    .doc-file.leo-active, .doc-file:hover {
        background-color: #f1f5fa;
        border: 1px solid #83bdff;
    }

        .doc-file.leo-active input, .doc-file:hover input {
            display: block;
        }

.doc-media {
    position: relative;
    margin: 9px auto 0;
    width: 84px;
    height: 84px;
    overflow: hidden;
}

    .doc-media .iconfont {
        font-size: 70px;
        color: #ffd659;
    }

    .doc-media img {
        width: 100%;
    }
/*#endregion*/

/*#region doc upload*/
.doc-upload {
    height: 100%;
    width: 100%;
}

.doc-uploadfiles {
    padding-bottom: 112px;
    overflow: auto;
    height: 100%;
}

.doc-uploadfile {
    width: 120px;
    float: left;
    margin: 4px 0 0 6px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    border: 0.0625rem solid #ced4da;
}

    .doc-uploadfile .icon-shanchu {
        position: absolute;
        left: 0;
        top: 0;
        padding: 3px;
        cursor: pointer;
        z-index: 100;
    }

    .doc-uploadfile .icon-tijiaochenggong {
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 100;
        color: #26d769;
        display: none;
    }

    .doc-uploadfile .progress {
        position: absolute;
        left: 0;
        bottom: 2px;
        right: 0;
        z-index: 100;
        width: 100%;
        background-color: #ddd;
        height: 18px;
        border-radius: 16px;
        display: none;
    }

        .doc-uploadfile .progress div {
            width: 0%;
            background-color: #26d769;
            height: 100%;
            border-radius: 16px;
            line-height: 20px;
            color: #ffffff;
        }

.doc-uploadmedia {
    position: relative;
    margin: 0px auto 0;
    width: 84px;
    height: 84px;
    overflow: hidden;
}

    .doc-uploadmedia .iconfont {
        font-size: 70px;
        color: #ffd659;
    }

    .doc-uploadmedia img {
        width: 100%;
    }

.doc-uploadfile input {
    border: none;
    border-top: 0.0625rem solid #ced4da;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}

.doc-uploadplaceholder {
    width: 120px;
    margin: 4px 0 0 6px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    padding-top: 10px;
}

    .doc-uploadplaceholder input {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

.doc-contextmenu {
    -moz-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    padding: 0.1875rem 0;
    min-height: 0;
    background-color: #245582;
    border-radius: 0.1875rem;
    position: fixed;
    left: 100px;
    top: 50px;
    width: 150px;
    color: #ffffff;
    padding: 8px 0;
    z-index: 1000;
}

    .doc-contextmenu a {
        color: #ffffff;
        display: block;
        font-size: 14px;
        padding: 8px;
    }

        .doc-contextmenu a:hover {
            color: #8b919e;
        }

        .doc-contextmenu a i {
            margin-right: 5px;
        }

    .doc-contextmenu span {
        border-bottom: 2px solid #697386;
        display: block;
        margin: 5px 8px;
    }

.doc-gtlist {
    padding: 20px 20px 0 20px;
    overflow: auto;
    height: 100%;
}

.doc-gtitem {
    position: relative;
    width: 60%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.doc-gtitem-photo {
    position: absolute;
    left: 0;
    top: 0;
}

.doc-gtitem.leo-pull-right .doc-gtitem-photo {
    left: auto;
    right: 0;
}

.doc-gtitem-photo img {
    width: 45px;
    height: 45px;
    border-radius: 45px;
}

.doc-gtitem-photo p {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

    .doc-gtitem-photo p .leo-alert {
        padding: 5px 8px;
        display: block;
        margin-bottom: 4px;
    }

.doc-gtitem-photo a {
    display: block;
    padding: 10px;
}

.doc-gtitem-content {
    padding-left: 60px;
    min-height: 120px;
}

.doc-gtitem.leo-pull-right .doc-gtitem-content {
    padding-left: 0;
    padding-right: 60px;
    text-align: right;
}

.doc-gtitem-content .tool {
    padding-bottom: 10px;
}

    .doc-gtitem-content .tool span {
        line-height: 20px;
        color: #9b9ea0;
    }

    .doc-gtitem-content .tool a {
        line-height: 20px;
        padding: 0 10px;
    }

    .doc-gtitem-content .tool .leo-alert {
        padding: 5px 8px;
    }


.doc-article {
    padding-top: 54px;
    padding-left: 250px;
    overflow: auto;
}

.doc-article-item {
    margin: 15px 25px 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

    .doc-article-item h3 {
        font-size: 14px;
        color: #161616;
        font-weight: 500;
        width: 90%;
        padding-bottom: 10px;
    }

        .doc-article-item h3 a {
            color: #161616;
        }

.doc-article-summary {
    color: #6c6c6c;
    line-height: 20px;
}

.doc-article-time {
    font-size: 12px;
    font-weight: normal;
    color: #999;
    line-height: 30px;
}

    .doc-article-time span {
        margin-right: 10px;
    }

.doc-article-tool a {
    line-height: 20px;
    padding: 0 10px;
}

    .doc-article-tool a.icon-icon_chakan {
        font-weight: bold;
        font-size: 20px;
    }
/*#endregion*/


.card-small a {
    width: 46%;
    padding: 8%;
    margin-right: 4%;
}

    .card-small a:hover {
        color: #ffffff;
    }


.leo-btn-gray.fixed-right {
    display: block;
    padding: 2px 15px;
    top: 20px;
}

p.statuscolor {
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}
