﻿/*#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;
    .leo-input-row scrollbar-track-color: #efeff4;
    -ms-scrollbar-arrow-color: #4A6184;
    scrollbar-arrow-color: #4A6184;
    font-family: Arial,'microsoft Yahei',\5b8b\4f53,'microsoft yahei leo',Roboto,San Francisco,"Helvetica Neue",Helvetica,PingFangSC-Light,"Hiragina Sans GB","WenQuanYi Micro Hei",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: rgb(200,200,200);
}

    ::-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;
}

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;
}



::-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;
}

body {
    overflow: auto;
    line-height: 1;
    color: #333333;
    font-weight: 400;
    background-color: #ffffff;
    font-size: 12px;
    -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);
}

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;
    -moz-outline: 0px;
    outline: 0px;
    color: #0ae;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
        color: #2a6496;
    }

p {
    color: #333333;
    font-size: 12px;
}

table {
    border-collapse: collapse;
    border-spacing: 0 !important;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: normal;
    line-height: 1em;
}

h1, h1 a {
    font-size: 19px;
}

h2, h2 a {
    font-size: 17px;
}

h3, h3 a {
    font-size: 15px;
}

h4, h4 a {
    font-size: 14px;
}

h5, h5 a {
    font-size: 13px;
}

h6, h6 a {
    font-size: 12px;
}

input, button, textarea, select {
    -webkit-appearance: none;
    resize: none;
    -moz-outline: 0;
    outline: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

    input:focus, button:focus {
        -moz-outline: 0;
        outline: 0;
    }

    input[type=checkbox] {
        width: 16px;
        height: 16px;
    }

    input[type=submit], input[type=reset], input[type=button], button {
        filter: chroma(color=#000000);
    }

select {
    background: #fbfbfb url('/Content/Images/drop-arrow-down.png') no-repeat right;
    text-indent: 0.01px;
    -ms-text-overflow: '';
    -o-text-overflow: '';
    text-overflow: '';
    padding-right: 20px !important;
}

input[type="text"], input[type="password"], input[type="number"], input[type="decimal"], input[type="search"], input[type="tel"], input[type="email"], input[type="date"], input[type="datetime-local"], input[type="password"], input[type="time"], input[type="week"], input[type="month"], input[type="url"], textarea, select, .leo-span-input, .leo-multi {
    border: 1px solid #dadbdc;
    background-color: #fff;
    -webkit-box-shadow: inset 0px 1px 6px #ECF3F5;
    -moz-box-shadow: inset 0px 1px 6px #ECF3F5;
    box-shadow: inset 0px 1px 6px #ECF3F5;
    height: 35px;
    line-height: 33px;
    padding: 0 5px;
    _text-indent: 10px;
    *text-indent: 10px;
    _padding: 0;
    *padding: 0;
}

    .leo-form input[type="text"]:focus, .leo-form input[type="password"]:focus, .leo-form input[type="number"]:focus, .leo-form input[type="decimal"]:focus, .leo-form input[type="search"]:focus, .leo-form input[type="tel"]:focus, .leo-form input[type="email"], .leo-form input[type="date"]:focus, .leo-form input[type="datetime-local"]:focus, .leo-span-input:focus, .leo-form input[type="time"]:focus, .leo-form input[type="month"]:focus, .leo-form input[type="url"], .leo-form input[type="week"]:focus, .leo-form input[type="password"]:focus, .leo-form textarea:focus, .leo-form select:focus {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #2fb3ff;
    }

input[type=checkbox], input[type=radio] {
    color: #555;
    width: 16px;
    height: 16px;
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
}

    input[type=checkbox]:checked, input[type=radio]:checked {
        color: #2fb3ff;
    }

    input[type=checkbox]:before {
        content: "\e62f";
    }

    input[type=checkbox]:checked:before {
        content: "\e67d";
    }

input[type=radio] {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

    input[type=radio]:before {
        content: "\e653";
    }

    input[type=radio]:checked:before {
        content: "\e624";
    }

input[readonly], textarea[readonly] {
    background-color: #ebecec;
}

    input[readonly]:focus, textarea[readonly]:focus {
        border-color: #dadbdc !important;
    }

    input[readonly].down, input[readonly].leo-date {
        cursor: pointer;
        background-color: #fff !important;
    }

        input[readonly].down:focus, input[readonly].leo-date:focus {
            border-color: #2fb3ff !important;
        }

pre {
    white-space: pre-wrap;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
}
/*#endregion*/

/*#region com*/

.leo-paytip {
    text-align: center;
    border: 1px solid #f3d995;
    color: #df9c1f;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 5px 20px 5px 15px;
    background: #fefcee;
    position: relative;
    width: 90%;
    margin: 10px auto;
}

.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; /* IE6、7 block 元素 */
    *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,.3);
    display: none;
}

.leo-backdrop2 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,.3);
}

.leo-sumtip {
    position: absolute;
    text-align: right;
    font-size: 12px;
    color: rgb(153, 153, 153);
    padding-right: 10px;
    right: -8px;
    bottom: 11px;
}
/*#endregion*/
.relative.add .leo-input.down {
    background-image: none;
}
/*#region buton*/




/*.leo-btn-blue.xiadan {
    display: none;
}*/

.leo-btn-yellow,
.leo-btn-black,
.leo-btn-blue,
.leo-btn-gray {
    padding: 5px 10px;
    line-height: 28px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    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: 14px;
    text-indent: 0px;
}

    .leo-btn-blue.red {
        color: red !important;
    }

    .leo-btn-black i,
    .leo-btn-blue i,
    .leo-btn-gray i {
        margin-right: 5px;
    }

    .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: #333333;
    background: #d5dde8;
    border-color: #d5dde8;
}

.leo-btn-blue {
    color: #ffffff;
    background: #2fb3ff;
    border: 1px solid #2fb3ff;
}

.leo-btn-yellow {
    color: #ffffff;
    background: #fb660d;
    border-color: #fb660d;
}

.leo-btn-black:hover {
    background-color: #201F20;
    border-color: #201F20;
    text-decoration: none;
}

.leo-btn-gray:hover {
    color: #333333;
    background-color: #D1D1D1;
    text-decoration: none;
}

.leo-btn-blue:hover {
    background-color: #15a0f1;
    color: #ffffff;
    text-decoration: none;
}

.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: #333333;
}

.leo-btn-blue:active {
    background-color: #15a0f1;
    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 dropdown*/
.leo-dropdown {
    display: none;
    border: 1px solid #2fb3ff;
    padding: 5px;
    top: 140px;
    left: 1473px;
    width: 120px;
    position: fixed;
    z-index: 1000000;
    background: #fff;
    color: #333333;
    -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;
}

.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: #333333;
        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: #333333;
            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: 200px;
    overflow-y: auto;
    min-height: 150px;
}

.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;
    }

    .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*/

/*#region form*/
.leo-form {
    padding: 0px 10px 50px 10px;
}

.leo-form-item {
    margin-bottom: 20px;
    padding-left: 100px;
    position: relative;
}

.leo-form-action {
    position: relative;
}

.leo-form-section {
    overflow: auto;
    position: relative;
}

.leo-form-action .leo-btn-blue, .leo-form-action .leo-btn-gray {
    padding: 5px 20px;
    position: relative;
    line-height: 20px;
    color: red;
}

.leo-form-action .leo-btn-gray {
    padding-right: 38px;
    color: #aaa;
}

    .leo-form-action .leo-btn-gray img {
        position: absolute;
        right: 0px;
        top: -5px;
    }

.leo-form-action.fixed {
    position: fixed;
    bottom: 0px;
    border-top: 1px solid #ccc;
    z-index: 999;
    background-color: #fff;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.leo-form-header {
    line-height: 25px;
    border-bottom: 1px dotted #ccc;
    margin: 10px 0;
}

.leo-form .leo-form-header:first-child {
    margin-top: 0;
}

.leo-form-header .toolbar {
    padding-left: 20px;
}

    .leo-form-header .toolbar a {
        padding: 0 5px;
        position: relative;
    }

        .leo-form-header .toolbar a .iconfont {
            font-size: 20px;
        }

        .leo-form-header .toolbar a.submit, .leo-form-header .toolbar a.btn {
            padding: 5px 20px;
            position: relative;
            line-height: 20px;
            display: inline-block;
            margin-bottom: 5px;
        }

.leo-cloud-upload {
}

    .leo-cloud-upload input[type=file] {
        width: 50px;
        opacity: 0;
        position: absolute;
        left: 0;
        cursor: pointer;
    }

.leo-input-txt {
    width: 100%;
    font-size: 12px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #dadbdc;
    background-color: #ebecec;
    text-indent: 5px;
}

.leo-input-row {
    position: relative;
    width: 25%;
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
    padding-bottom: 10px;
    padding-left: 100px;
    font-size: 0;
}

    .leo-input-row.w33 {
        width: 33%;
    }

    .leo-input-row .split {
        font-size: 16px;
        position: absolute;
        top: 50%;
        display: block;
        left: 50%;
        width: 20px;
        margin: -10px 0 0 -10px;
    }

.leo-input-label {
    font-size: 12px;
    font-weight: bold;
    line-height: 35px;
    padding-right: 5px;
    position: absolute;
    left: 0;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: right;
}

    .leo-input-label input[type=checkbox] {
        vertical-align: middle;
        display: inline-block;
        margin-top: -4px;
        margin-left: 5px;
    }

    .leo-input-label.required {
        color: red;
    }

        .leo-input-label.required[for="PurPrice"] {
            color: #333;
        }

.leo-input {
    font-size: 12px;
    width: 100%;
}

    .leo-input.leo-active {
        border: 1px solid #2fb3ff !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.range {
        width: 45% !important;
    }

        .leo-input.range.x2 {
            width: 120px !important;
        }

    .leo-input.error, .leo-input.error:focus {
        border-color: red !important;
    }

    .leo-input.allowadd {
        padding-right: 36px;
    }

        .leo-input.allowadd.down {
            background: none;
        }

.leo-input-row .add.icon-plus {
    position: absolute;
    padding: 6px 8px 7px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    right: 0;
    z-index: 100;
}

.leo-input-row .extraicon {
    position: absolute;
    padding: 6px 8px 7px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    right: 0;
    z-index: 100;
    color: #a8a8a8;
}

.leo-textarea {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    height: auto;
}

    .leo-textarea.rich {
        max-width: 100%;
        height: 500px;
    }

.leo-input-row.full {
    width: 100% !important;
}

    .leo-input-row.full .leo-input, .leo-input-row.full .leo-textarea {
        width: 100%;
    }

.leo-multi {
    line-height: 28px;
    border: 1px solid #dadbdc;
    min-height: 35px;
    height: auto;
}

    .leo-multi p {
        padding: 3px 5px 3px 18px;
        margin: 3px 0 3px 5px;
        position: relative;
        line-height: 13px;
        color: #333;
        cursor: default;
        border: 1px solid #aaaaaa;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
        -moz-background-clip: padding-box;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #e4e4e4;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
        background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
        background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
        background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    }

        .leo-multi p span {
        }

        .leo-multi p i {
            position: absolute;
            left: 3px;
            cursor: pointer;
            color: #2a6496;
            font-size: 12px;
        }

    .leo-multi input {
        width: 100px !important;
        line-height: 28px;
        height: 28px;
        border: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent !important;
    }

        .leo-multi input:focus {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

.leo-select {
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444; /* color: #BFBFBF; */
    text-decoration: none;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border-color: #ccc #ccc #c7c7c7;
    border-radius: 2px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 80%);
}

.leo-checkbox {
    margin: 9px 0 8px;
}

.leo-radio {
    margin: 9px 0 8px;
}

.leo-checkbox-group {
    line-height: 35px;
    border: 1px solid #dadbdc;
}

    .leo-checkbox-group label {
        vertical-align: middle;
        display: inline-block;
        font-size: 14px;
        margin-left: 5px;
    }

    .leo-checkbox-group input {
        vertical-align: middle;
        display: inline-block;
        margin-right: 3px;
    }

.leo-checkbox-list {
    min-height: 35px;
    padding-top: 5px;
}

    .leo-checkbox-list li {
        padding: 3px 10px 3px 0;
    }

        .leo-checkbox-list li label {
            vertical-align: middle;
            display: inline-block;
            font-size: 14px;
        }

        .leo-checkbox-list li input {
            vertical-align: middle;
            display: inline-block;
            margin-right: 3px;
        }

.leo-checkbox-group.permission label {
    display: block;
    border: none;
}

    .leo-checkbox-group.permission label span {
        font-size: 12px;
    }

.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;
        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-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;
    }

.leo-input-row.full .leo-rich-text .leo-textarea {
    width: 50%;
    height: 60px;
}

.leo-rich-content {
    padding: 10px;
    width: 57%;
    font-size: 12px;
    border: 1px solid #ccc;
    margin: 10px 0;
}

    .leo-rich-content a {
        display: block;
        padding: 10px 0;
    }

    .leo-rich-content .text, .leo-rich-content .image {
        margin-bottom: 10px;
    }

        .leo-rich-content .image img {
            max-width: 300px;
        }
/*#endregion*/


.leo-badge {
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    padding: 3px 6px;
    color: #333;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, .15);
}

    .leo-badge.leo-badge-inverted {
        padding: 0 5px 0 0;
        color: #929292;
        background-color: transparent;
    }

.leo-badge-primary, .leo-badge-blue {
    color: #fff;
    background-color: #007aff;
}

    .leo-badge-primary.leo-badge-inverted, .leo-badge-blue.leo-badge-inverted {
        color: #007aff;
        background-color: transparent;
    }

.leo-badge-success, .leo-badge-green {
    color: #fff;
    background-color: #4cd964;
}

    .leo-badge-success.leo-badge-inverted, .leo-badge-green.leo-badge-inverted {
        color: #4cd964;
        background-color: transparent;
    }

.leo-badge-warning, .leo-badge-yellow {
    color: #fff;
    background-color: #f0ad4e;
}

    .leo-badge-warning.leo-badge-inverted, .leo-badge-yellow.leo-badge-inverted {
        color: #f0ad4e;
        background-color: transparent;
    }

.leo-badge-danger, .leo-badge-red {
    color: #fff;
    background-color: #dd524d;
}

    .leo-badge-danger.leo-badge-inverted, .leo-badge-red.leo-badge-inverted {
        color: #dd524d;
        background-color: transparent;
    }

.leo-badge-royal, .leo-badge-purple {
    color: #fff;
    background-color: #8a6de9;
}

    .leo-badge-royal.leo-badge-inverted, .leo-badge-purple.leo-badge-inverted {
        color: #8a6de9;
        background-color: transparent;
    }


/*#region search*/
.leo-search-container {
    height: 45px;
    position: fixed;
    z-index: 888;
    left: 10px;
    right: 10px;
    top: 41px;
    background-color: #fff;
    overflow: hidden;
    overflow-x: auto;
    padding-right: 70px;
}



.leo-search-list {
    padding: 5px 0;
    height: 45px;
    background-color: #fff;
    overflow: hidden;
    overflow-x: auto;
}

    .leo-search-list.leo-pull-right {
        float: none;
    }


.leo-search-container .icon-gouwucheman {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    cursor: pointer;
}

.leo-footer .icon-gouwucheman {
    position: absolute;
    top: 10px;
    right: 200px;
    font-size: 20px;
    cursor: pointer;
}


.leo-search-list .leo-form {
    padding: 0;
    font-size: 0;
}


    .leo-search-list .leo-form .leo-input-row {
        padding: 0;
        width: 120px;
        margin-right: 3px;
    }

        .leo-search-list .leo-form .leo-input-row.leo-search-daterange, .leo-search-list .leo-form .leo-input-row.leo-search-numrange {
            width: 240px;
        }

            .leo-search-list .leo-form .leo-input-row.leo-search-daterange .daterange1, .leo-search-list .leo-form .leo-input-row.leo-search-numrange .daterange1 {
                margin-right: 4%;
            }

            .leo-search-list .leo-form .leo-input-row.leo-search-daterange .daterange2, .leo-search-list .leo-form .leo-input-row.leo-search-numrange .daterange2 {
                margin-left: 4%;
            }

        .leo-search-list .leo-form .leo-input-row .leo-input {
            width: 100%;
            height: 35px;
            line-height: 35px;
        }

        .leo-search-list .leo-form .leo-input-row.button {
            width: 60px;
            margin-right: 0;
            position: fixed;
            right: 0;
            top: 46px;
        }

    .leo-search-list .leo-form .leo-btn-blue {
        line-height: 32px;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        padding: 0 10px;
    }

    .leo-search-list .leo-form input[type="text"], .leo-search-list .leo-form input[type="password"], .leo-search-list .leo-form input[type="number"], .leo-search-list .leo-form input[type="decimal"], .leo-search-list .leo-form input[type="search"], .leo-search-list .leo-form input[type="tel"], input[type="email"], input[type="date"], .leo-search-list .leo-form input[type="datetime-local"], .leo-search-list .leo-form input[type="password"], .leo-search-list .leo-form input[type="time"], .leo-search-list .leo-form input[type="week"], .leo-search-list .leo-form input[type="month"], .leo-search-list .leo-form input[type="url"], .leo-search-list .leo-form textarea, .leo-search-list .leo-form select {
        border: 1px solid #aaa;
        background-color: #fff;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 100%;
    }

        .leo-search-list .leo-form input[type="text"]:focus, .leo-search-list .leo-form input[type="password"]:focus, .leo-search-list .leo-form input[type="number"]:focus, .leo-search-list .leo-form input[type="decimal"]:focus, .leo-search-list .leo-form input[type="search"]:focus, .leo-search-list .leo-form input[type="tel"]:focus, .leo-search-list .leo-form input[type="email"], .leo-search-list .leo-form input[type="date"]:focus, .leo-search-list .leo-form input[type="datetime-local"]:focus, .leo-search-list .leo-form input[type="time"]:focus, .leo-search-list .leo-form input[type="month"]:focus, .leo-search-list .leo-form input[type="url"], .leo-search-list .leo-form input[type="week"]:focus, .leo-search-list .leo-form input[type="password"]:focus, .leo-search-list .leo-form textarea:focus, .leo-search-list .leo-form select:focus {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border-color: #aaa;
        }

.leo-search-category .icon-right, .leo-search-category .icon-down1 {
    position: absolute;
    left: 5px;
    top: 5px;
}

.leo-search-category .leo-input {
    padding-left: 20px;
}

.leo-search-category {
    position: relative;
    display: none;
}

    .leo-search-category div {
        border: 1px solid #aaa;
        line-height: 33px;
        padding: 0 0px 0 20px;
    }

        .leo-search-category div label {
            width: 130px;
        }

    .leo-search-category .icon-filter {
        border-left: 1px solid #aaa;
        padding: 0 10px;
        cursor: pointer;
    }

    .leo-search-category .icon-yemianshezhi {
        border-left: 1px solid #aaa;
        padding: 0 10px;
        cursor: pointer;
    }
/*#endregion*/

/*#region pagination*/
.leo-pagination {
    margin: 0;
    background-color: #fff;
    text-align: center;
    border: 1px solid #2fb3ff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    line-height: 28px;
}

    .leo-pagination a, .leo-pagination span {
        text-decoration: none;
        background-color: #fff;
        border-right: 1px solid #2fb3ff;
        padding: 0px 10px;
        font-size: 12px;
        float: left;
    }

        .leo-pagination a.icon-right {
            font-size: 16px;
        }

        .leo-pagination a:hover, .leo-pagination a:active {
            color: #2a6496;
            background-color: #eeeeee;
            border-color: #2fb3ff;
        }

        .leo-pagination span.current {
            font-weight: bold;
            color: #fff;
            background-color: #2fb3ff;
        }

        .leo-pagination span.disabled {
            -moz-opacity: 0.5;
            opacity: 0.5;
            cursor: not-allowed;
        }

        .leo-pagination span.page {
            border-color: transparent;
            padding: 0 5px;
        }

        .leo-pagination span.go {
            padding: 0 5px 0 0;
            border-color: transparent;
        }

    .leo-pagination input {
        margin-right: 3px;
        width: 60px;
        height: 28px;
        line-height: 28px;
        background-color: #fff;
        border-top: none;
        border-bottom: none;
        text-align: center;
        padding: 0;
        float: left;
    }
/*#endregion*/

/*#region table**/
.leo-table-content {
    position: relative;
    height: 100%;
}

.leo-table-fixed {
    overflow: auto;
    height: 100%;
}

.leo-table-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    right: 0;
}

.leo-table {
    table-layout: fixed;
    border: 1px solid #9aabab;
    border-bottom: none;
    width: 100%;
}

    .leo-table .printhj {
        background-color: #fcd5b4;
        padding: 10px 0;
    }

    .leo-table tr.innertr {
    }

        .leo-table tr.innertr .leo-table {
            width: auto;
        }

        .leo-table tr.innertr td, .leo-table tr.innertr th {
            background-color: #ebecec;
        }

    .leo-table tr.red * {
        color: red !important;
    }

    .leo-table th, .leo-table td {
        text-align: center;
        border: none;
        border-bottom: 1px solid #9aabab;
    }

    .leo-table.border td {
        border-right: 1px solid #9aabab;
    }



    .leo-table tbody tr.title td {
        background-color: #ecf3f5;
        border-right: 1px solid #9aabab;
        color: #333333;
        font-weight: bold;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .leo-table th p, .leo-table td p {
        width: 100%;
        max-height: 20px;
        overflow: hidden;
        line-height: 20px;
        word-break: break-all;
        word-wrap: break-word;
    }

    .leo-table th {
        background-color: #ecf3f5;
        border-right: 1px solid #9aabab;
        color: #333333;
        font-weight: bold;
        line-height: 33px;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

        .leo-table th input[type=checkbox] {
            margin: 8px auto 0;
        }

    .leo-table thead tr th:last-child {
        border-right: none;
    }

    .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;
    }

table tbody tr td {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
}

.leo-table tbody tr td.leo-nodata {
    border-bottom: none;
}

    .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 > a.leo-btn-blue {
        padding: 0;
        width: 60px;
        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.select, .leo-table tbody tr:hover {
    background: #ebf5f9 !important;
}

.leo-table tbody tr.leo-tr-innerdetail {
    background-color: #ebf5f9 !important;
}

.leo-table-imgs {
    height: 100%;
    overflow: auto;
}

    .leo-table-imgs img {
        width: 50px;
        height: 50px;
        margin: 0px 10px 0px 0;
    }

.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: #333333;
    }

.leo-table tbody tr td .disabled {
    padding: 0 5px 5px;
    color: #ccc;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
}

.leo-table tfoot tr {
    background-color: #ccc;
    font-weight: bold;
}

.leo-table .iconfont.unfolded {
    font-size: 30px;
    cursor: pointer;
    color: #0ae;
}

.leo-table.sample {
    border: 1px solid #9aabab;
    width: 95%;
    margin: 10px auto;
}

    .leo-table.sample th, .leo-table.sample td {
        border-right: 1px solid #9aabab;
        border-bottom: 1px solid #9aabab;
    }

    .leo-table.sample th {
        background-color: #ecf3f5;
    }

.leo-table.edit {
    -moz-box-shadow: 1px 1px 5px #CCC;
    -webkit-box-shadow: 1px 1px 5px #CCC;
    box-shadow: 1px 1px 5px #CCC;
    width: auto;
}

    .leo-table.edit td {
        border-right: 1px solid #9aabab;
    }

    .leo-table.edit tbody tr td:last-child {
        border-right: 1px solid #9aabab;
    }

    .leo-table.edit tbody tr.select, .leo-table.edit tbody tr:hover {
        background: #fff !important;
    }

    .leo-table.edit tbody tr td {
        padding: 0;
        margin: 0;
        position: relative;
    }

        .leo-table.edit tbody tr td input, .leo-table.edit tbody tr td textarea, .leo-table.edit tbody tr td select, .leo-table.edit tbody tr td textarea {
            height: 100%;
            width: 100%;
            min-height: 33px;
            border: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .leo-table.edit tbody tr td input[type=file] {
                width: 50px;
            }

            .leo-table.edit tbody tr td input[type=checkbox] {
                height: 16px;
                width: 16px;
                margin: 3px auto 3px;
                min-height: 16px;
                display: inline-block;
                vertical-align: middle;
            }

        .leo-table.edit tbody tr td img.remove {
            width: 32px;
            height: 32px;
            cursor: pointer;
        }

        .leo-table.edit tbody tr td textarea {
            height: 52px;
            line-height: 18px;
            padding: 3px;
        }

    .leo-table.edit .leo-upload {
        width: 100%;
        height: 100%;
    }

    .leo-table.edit .leo-upload-btn {
        width: 100%;
        height: 100%;
    }

        .leo-table.edit .leo-upload-btn img {
            display: block;
            margin: -30px auto 0;
            cursor: pointer;
            max-height: 50px;
            max-width: 50px;
        }

.leo-table.filelist {
    width: auto;
}

    .leo-table.filelist th, .leo-table.filelist td {
        text-align: left;
        padding: 0px 5px;
    }

    .leo-table.filelist td {
        padding: 5px;
        line-height: 18px;
    }

        .leo-table.filelist td a {
            padding-top: 5px;
        }

            .leo-table.filelist td a .iconfont {
                font-size: 20px;
                padding-right: 10px;
            }

.leo-td-input {
    width: 100%;
    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;
    }

/*.leo-print {
    padding: 10px;
    width: 680px;
}*/

.leo-print .leo-table {
    border: none;
}

    .leo-print .leo-table th {
        border: none;
    }

    .leo-print .leo-table tbody tr.title td {
        background-color: #ecf3f5;
        border-top: 1px solid #9aabab;
        border-right: 1px solid #9aabab;
        color: #333333;
        font-weight: bold;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .leo-print .leo-table td {
        border-right: 1px solid #9aabab;
        padding: 5px 0;
    }

    .leo-print .leo-table tr td:first-child {
        border-left: 1px solid #9aabab;
    }

    .leo-print .leo-table tr.noborder td {
        border: none !important;
    }

    .leo-print .leo-table tr.split td {
        border-bottom: 2px solid #9aabab;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
    }

    .leo-print .leo-table tr:hover {
        background-color: transparent !important;
    }

    .leo-print .leo-table tr.noborder td.bottom {
        border-bottom: 1px solid #9aabab !important;
    }
/*#endregion*/

/*#region grid*/
.leo-grid {
    width: 100%;
    position: relative;
    background-color: #fff;
    height: 100%;
    overflow: hidden;
}

    .leo-grid .leo-grid-left {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 100;
        background-color: #fff;
        overflow: hidden;
        padding-right: 1px;
    }

    .leo-grid .leo-grid-right {
        overflow: auto;
        width: 100%;
        height: 100%;
    }

.leo-grid-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

    .leo-grid-header .leo-table th {
        position: relative;
    }

.leo-grid .leo-grid-right .leo-table {
    border-right: 1px solid #9aabab;
}

.leo-grid .leo-table {
    width: auto;
    border: none;
    border-top: 1px solid #9aabab;
}

    .leo-grid .leo-table th, .leo-grid .leo-table td {
        border-left: 1px solid #9aabab;
        border-right: none;
    }

    .leo-grid .leo-table td {
        border-left: none;
    }

        .leo-grid .leo-table td img {
            max-width: 90%;
            margin: 0 auto;
            display: block;
        }

    .leo-grid .leo-table th .iconfont {
        font-size: 14px;
        position: absolute;
        cursor: pointer;
        display: none;
        top: 0px;
    }

        .leo-grid .leo-table th .iconfont.icon-setting {
            display: inline-block;
            margin: 0 auto;
        }

        .leo-grid .leo-table th:hover .iconfont, .leo-grid .leo-table th .iconfont.active, .leo-table th .iconfont.icon-sortup, .leo-table th .iconfont.icon-sortdown {
            display: inline-block;
        }

    .leo-grid .leo-table th .icon-pushpin {
        left: 5px;
    }

    .leo-grid .leo-table th .icon-sort, .leo-grid .leo-table th .icon-sortup, .leo-grid .leo-table th .icon-sortdown {
        right: 5px;
    }

    .leo-grid .leo-table th .resize {
        cursor: col-resize;
        padding: 0;
        margin: 0;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 8px;
        right: -5px;
        z-index: 100;
    }


.leo-grid-body {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.leo-grid .leo-grid-left .leo-grid-body {
    overflow-y: hidden;
    border-left: 1px solid #9aabab;
}

.leo-grid-split {
    height: 100%;
    width: 1px;
    position: absolute;
    right: 0;
    top: 0px;
    background-color: #333333;
}

.leo-grid .leo-grid-left .leo-grid-header {
    right: 1px;
}

.leo-grid .leo-grid-right .leo-grid-header {
    overflow: hidden;
    right: 1px;
}

.leo-grid .leo-pagination-content {
    bottom: 4px;
    right: 5px;
}

.leo-grid.edit .leo-table.edit input[type=checkbox] {
    /*display: initial;*/
}

.leo-grid.edit .leo-table.edit td {
    border-right: 1px solid #9aabab;
}

.leo-grid .leo-loading-inner {
    position: absolute;
    top: 40px;
}

.leo-grid.edit td {
    border-bottom: none;
    position: relative;
}

    .leo-grid.edit td:after {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 1px;
        content: '';
        background-color: #9aabab;
    }
/*#endregion*/
/*#region header*/
.leo-header {
    position: fixed;
    z-index: 998;
    left: 0;
    right: 0;
    top: 0;
    height: 60px;
    width: 100%;
    background: #293c55;
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.leo-header-logo {
    width: 160px;
    padding-top: 5px;
    position: absolute;
    left: 10px;
    top: 0;
}

    .leo-header-logo img {
        width: 145px;
        display: block;
        height: 50px;
    }

.leo-rainbow-border {
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    height: 2px;
    background: -webkit-linear-gradient(left,#1e7ff8,#30d4ec 20%,#6e3fec 40%,#ff35fe 60%,#ff1577 80%,#ff9405 100%);
    background: -o-linear-gradient(left,#1e7ff8,#30d4ec 20%,#6e3fec 40%,#ff35fe 60%,#ff1577 80%,#ff9405 100%);
    background: linear-gradient(to right,#1e7ff8,#30d4ec 20%,#6e3fec 40%,#ff35fe 60%,#ff1577 80%,#ff9405 100%);
}

.leo-header-user {
    position: absolute;
    top: 0;
    right: 0;
}

    .leo-header-user .photo {
        padding-top: 12px;
        padding-right: 10px;
        line-height: 0;
    }

        .leo-header-user .photo img {
            width: 36px;
            height: 36px;
            -moz-border-radius: 35px;
            -webkit-border-radius: 35px;
            border-radius: 35px;
        }

.leo-header-nav {
    height: 100%;
}

.leo-header-logo ~ .leo-header-nav {
    padding-left: 175px;
}

.leo-header-user ~ .leo-header-nav {
    padding-right: 80px;
}

.leo-nav {
    font-size: 0;
}

.leo-nav-item {
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
}

    .leo-nav-item > a {
        line-height: 57px;
        font-size: 16px;
        padding: 0 10px;
        color: #A3B1CC;
        display: block;
    }

        .leo-nav-item > a > .iconfont {
            font-size: 14px;
        }

        .leo-nav-item > a:hover {
            text-decoration: none;
            color: #fff;
        }

    .leo-nav-item.leo-active > a {
        background-color: #3f4a61 !important;
        color: #fff;
        border-bottom: 3px solid #ff6100;
    }

    .leo-nav-item menu {
        position: absolute;
        display: none;
        min-width: 166px;
        z-index: 1001;
        -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        padding: 3px 0;
        min-height: 0;
        background-color: #293c55;
    }

    .leo-nav-item:hover menu {
        display: block;
    }

.leo-dropdown-menu a {
    display: block;
    color: #A3B1CC;
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .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: 14px;
        padding-right: 10px;
    }

    .leo-dropdown-menu a:hover {
        text-decoration: none;
        color: #fff;
    }
/*#endregion*/

/*#region location*/
.leo-location {
    line-height: 40px;
    border-bottom: 1px solid #c5d0dc;
    position: fixed;
    z-index: 99;
    left: 10px;
    right: 10px;
    top: 0px;
    background-color: #fff;
}

    .leo-location .iconfont {
        font-size: 20px;
        padding-right: 5px;
    }

    .leo-location a {
        font-size: 14px;
    }

    .leo-location span {
        padding: 0 4px 0 0;
        color: #9a9a9a;
    }

        .leo-location span:last-child {
            display: none;
        }

.leo-toolbar {
    display: inline-block;
    vertical-align: top;
}

    .leo-toolbar a {
        margin-left: 10px;
    }
/*#endregion*/

/*#region pop box*/
.leo-pop-box {
    position: fixed;
    z-index: 1000;
    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-shanchu {
        position: absolute;
        top: 8px;
        cursor: pointer;
        color: red;
        padding: 0 0px;
        border: 4px solid red;
        bottom: 8px;
        line-height: 16px;
        border-radius: 5px;
        right: 8px;
    }

.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: 45px;
}

.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: center;
}

    .leo-pop-footer .leo-btn-blue {
        margin-left: 15px;
    }
/*#endregion*/

/*#region condition*/
.leo-condition {
}

    .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;
            padding-left: 50px;
        }

        .leo-condition a:hover {
            text-decoration: none;
        }

    .leo-condition 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: 120px;
        padding-left: 0;
        padding-bottom: 0;
    }

        .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-content {
    padding: 86px 10px 42px;
    width: 100%;
    position: relative;
    height: 100%;
}

.leo-footer {
    z-index: 99;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #aaa;
    padding: 5px 10px;
    background-color: #fff;
}

/*#endregion*/

/*#region detail*/
.leo-detail {
    padding: 10px;
}

    .leo-detail .leo-content {
        padding: 85px 10px 42px;
    }

        .leo-detail .leo-content .leo-toolbar {
            top: 0;
        }

        .leo-detail .leo-content .leo-search-container {
            top: 30px;
        }

    .leo-detail .leo-table-content {
        padding: 10px 0;
    }

    .leo-detail .leo-table {
        width: auto;
    }

    .leo-detail .leo-table-fixed {
        max-height: 380px;
    }

.leo-detail-info {
    padding: 10px 0;
    font-size: 0;
}

    .leo-detail-info li {
        float: left;
        width: 50%;
        border-bottom: 1px dashed #ddd;
        padding: 8px 0;
        font-size: 12px;
        position: relative;
    }

        .leo-detail-info li label, .leo-detail-info li > p, .leo-detail-info li > span {
            line-height: 20px;
        }

        .leo-detail-info li label {
            text-align: left;
            color: #999;
            max-width: 120px;
            display: block;
            float: left;
            width: 16%;
        }

        .leo-detail-info li > p, .leo-detail-info li > div, .leo-detail-info li > textarea, .leo-detail-info li > pre {
            float: left;
            color: #333333;
            width: 84%;
        }

.leo-detail .leo-toolbar {
    position: static;
    margin: 20px auto 0px;
}

.leo-detail-info li textarea {
    line-height: 18px;
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 20px;
    overflow-y: auto;
    padding: 0;
}

.leo-detail-info.one li {
    width: 100%;
    float: none;
    *zoom: 1;
}

    .leo-detail-info.one li:after {
        clear: both;
        display: table;
        content: " ";
    }

    .leo-detail-info.one li:before {
        display: table;
        content: " ";
    }

    .leo-detail-info.one li label {
        padding-left: 5px;
    }

.leo-detail-info img {
    width: 120px;
}

.leo-inner-title {
    margin-top: 20px;
}

.leo-detail .leo-table-content {
    overflow: auto;
}

.leo-list-pop {
    height: 100%;
}

    .leo-list-pop .leo-content {
        padding: 50px 10px 42px;
    }

        .leo-list-pop .leo-content .leo-toolbar {
            top: 0;
            position: absolute;
            left: 0;
            z-index: 9999;
        }

        .leo-list-pop .leo-content .leo-search-container {
            top: 0px;
        }

    .leo-list-pop .leo-form-action.fixed {
        width: 120px;
        height: 40px;
        border-top: 1px solid #aaa;
    }
/*#endregion*/
.leo-upload {
}

    .leo-upload.w250 .leo-upload-btn input,
    .leo-upload.w250 .leo-upload-btn a.leo-btn-blue {
        width: 250px;
    }

.leo-upload-btn {
    margin: 10px 0;
    position: relative;
}

    .leo-upload-btn input {
        width: 100px;
        overflow: hidden;
        height: 32px;
        position: absolute;
        opacity: 0;
    }

    .leo-upload-btn a.leo-btn-blue {
        display: inline-block;
        width: auto;
        padding: 2px 10px;
    }

.leo-upload-files .leo-table {
    background-color: #fff;
}

    .leo-upload-files .leo-table th, .leo-upload-files .leo-table td {
        text-align: left;
    }

    .leo-upload-files .leo-table th {
        padding: 0 5px;
    }

    .leo-upload-files .leo-table td img {
        width: 50px;
        height: 40px;
    }

    .leo-upload-files .leo-table td .iconfont {
        font-size: 30px;
        color: #2fb3ff;
        width: 50px;
        text-align: center;
    }

    .leo-upload-files .leo-table td label {
        line-height: 18px;
        color: #333333;
    }

/*#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;
}

    .leo-tab-item.select {
        display: block;
    }
/*#endregion*/

/*#region menuright*/
.leo-menuright {
}

    .leo-menuright .leo-form-section {
        display: none;
    }

    .leo-menuright .leo-form-header .iconfont {
        cursor: pointer;
    }

    .leo-menuright label input {
        vertical-align: middle;
        font-size: 14px;
    }

    .leo-menuright ul {
        margin-left: 18px;
    }

.leo-menuright-menu {
    margin-bottom: 10px;
    color: #ccc;
    background-color: #2e3033;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 7px 5px 5px;
}

    .leo-menuright-menu input[type=checkbox] {
        color: #fff;
        margin-right: 5px;
    }

        .leo-menuright-menu input[type=checkbox]:checked {
            color: #2fb3ff;
        }

.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] {
        vertical-align: middle;
        font-size: 14px;
    }

    .leo-menuright-opt select {
        height: 28px;
        line-height: 26px;
        font-size: 12px;
        margin-left: 5px;
    }
/*#endregion*/

/*#region popup*/
.leo-popup {
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000;
    display: none;
    width: 270px;
    overflow: hidden;
    color: #333333;
    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: 65px;
    right: 20px;
    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*/

.leo-stat {
    width: 100%;
    position: relative;
    margin: 10px auto;
}

.leo-stat-menu {
    position: absolute;
    left: 10px;
    top: 0;
    border: 1px solid #eee;
    border-bottom: none;
    width: 200px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    .leo-stat-menu h3 {
        padding: 10px 30px;
        background-color: #eee;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

        .leo-stat-menu h3.leo-active {
        }

        .leo-stat-menu h3 .iconfont {
            position: absolute;
            top: 8px;
            font-size: 18px;
        }

        .leo-stat-menu h3 .icon-menu, .leo-stat-menu h3 .icon-right {
            left: 8px;
        }

        .leo-stat-menu h3 .icon-down2, .leo-stat-menu h3 .icon-up {
            right: 8px;
        }

        .leo-stat-menu h3 a {
            color: #333333;
        }

    .leo-stat-menu menu {
        display: none;
    }

        .leo-stat-menu menu a {
            border-bottom: 1px solid #eee;
            display: block;
            padding: 10px 15px 10px 30px;
            color: #555;
            text-align: left;
        }

            .leo-stat-menu menu a:hover {
                text-decoration: none;
                background-color: #f5f5f5;
            }

            .leo-stat-menu menu a.leo-active {
                background-color: #428bca;
                border: 1px solid #428bca;
                color: #fff;
            }

.leo-stat-content {
    padding-left: 220px;
}

    .leo-stat-content h3 {
        text-align: center;
        margin-bottom: 20px;
    }

/*#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 {
        display: inline-block;
        vertical-align: middle;
        max-width: 140px;
    }

    .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*/

.leo-aside {
    position: absolute;
    left: 10px;
    overflow: auto;
    height: 100%;
}

.leo-content .leo-aside {
    top: 106px;
    left: 10px;
    bottom: 40px;
    overflow: auto;
}

.leo-accordion {
    border: 1px solid #eee;
    border-bottom: none;
    width: 200px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    .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-menu, .leo-accordion h3 .icon-right {
            left: 8px;
        }

        .leo-accordion h3 .icon-down2, .leo-accordion h3 .icon-up {
            right: 8px;
        }

        .leo-accordion h3 a {
            color: #333333;
        }

    .leo-accordion menu {
        display: none;
    }

        .leo-accordion menu a {
            border-bottom: 1px solid #eee;
            display: block;
            padding: 10px 15px 10px 30px;
            color: #555;
            text-align: left;
        }

            .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-aside-next {
    padding-left: 205px;
}

    .leo-aside-next .leo-search-container {
        left: 215px;
    }

    .leo-aside-next .leo-toolbar {
        top: 0;
        right: 20px;
    }

.leo-message-list {
}

    .leo-message-list li {
        line-height: 25px;
        border-bottom: 1px solid #eaeaea;
        padding: 10px 130px 10px 0;
        position: relative;
    }

        .leo-message-list li:last-child {
            border-bottom: none;
        }

        .leo-message-list li.red {
            border: 1px solid red;
        }

        .leo-message-list li .icon-duihao {
            color: rgb(89,189,23);
            font-size: 20px;
        }

        .leo-message-list li .icon-shanchu {
            color: red;
            font-size: 20px;
        }

        .leo-message-list li .txt {
            font-size: 14px;
        }

    .leo-message-list .icon-iconfontyuandian {
        color: #0ae;
        cursor: pointer;
    }

    .leo-message-list .date {
        position: absolute;
        width: 120px;
        right: -10px;
        top: 50%;
        margin-top: -13px;
        color: gray;
        font-size: 12px;
    }
/*#region icon*/
.leo-table-detail {
    font-size: 12px;
    padding: 10px 0;
    width: 100%;
    table-layout: fixed;
}

    .leo-table-detail th {
        height: 15px;
    }

    .leo-table-detail td {
        border-bottom: 1px dashed #ddd;
        padding: 8px 0;
    }

        .leo-table-detail td.label {
        }

        .leo-table-detail td label {
            text-align: left;
            color: #999;
            line-height: 20px;
        }

        .leo-table-detail td img {
            max-width: 120px;
        }

.icon-geshi_txt:before {
    content: "\e6b8";
}

.icon-geshi_doc:before {
    content: "\e6b9";
}

.icon-geshi_ppt:before {
    content: "\e6ba";
}

.icon-geshi_pptx:before {
    content: "\e6bb";
}

.icon-geshi_pdf:before {
    content: "\e6bc";
}

.icon-geshi_htm:before {
    content: "\e6bd";
}

.icon-geshi_html:before {
    content: "\e6be";
}

.icon-geshi_docx:before {
    content: "\e6bf";
}

.icon-geshi_xls:before {
    content: "\e6c0";
}

.icon-geshi_srt:before {
    content: "\e6c1";
}

.icon-geshi_xlsx:before {
    content: "\e6c2";
}

.icon-geshi_mp:before {
    content: "\e6c3";
}

.icon-geshi_wma:before {
    content: "\e6c4";
}

.icon-geshi_wav:before {
    content: "\e6c6";
}

.icon-geshi_ape:before {
    content: "\e6c7";
}

.icon-geshi_midi:before {
    content: "\e6c8";
}

.icon-geshi_flac:before {
    content: "\e6c9";
}

.icon-geshi_aac:before {
    content: "\e6ca";
}

.icon-geshi_wmv:before {
    content: "\e6cb";
}

.icon-geshi_asf:before {
    content: "\e6cc";
}

.icon-geshi_asx:before {
    content: "\e6cd";
}

.icon-geshi_rm:before {
    content: "\e6ce";
}

.icon-geshi_rmvb:before {
    content: "\e6cf";
}

.icon-geshi_gp:before {
    content: "\e6d0";
}

.icon-geshi_mpg:before {
    content: "\e6d1";
}

.icon-geshi_mpe:before {
    content: "\e6d2";
}

.icon-geshi_mpeg:before {
    content: "\e6d3";
}

.icon-geshi_mv:before {
    content: "\e6d5";
}

.icon-geshi_mov:before {
    content: "\e6d6";
}

.icon-geshi_avi:before {
    content: "\e6d7";
}

.icon-geshi_dat:before {
    content: "\e6d8";
}

.icon-geshi_vob:before {
    content: "\e6d9";
}

.icon-geshi_mkv:before {
    content: "\e6da";
}

.icon-geshi_flv:before {
    content: "\e6db";
}

.icon-geshi_fla:before {
    content: "\e6dc";
}

.icon-geshi_swf:before {
    content: "\e6dd";
}

.icon-geshi_jpeg:before {
    content: "\e6df";
}

.icon-geshi_jpg:before {
    content: "\e6e0";
}

.icon-geshi_bmp:before {
    content: "\e6e1";
}

.icon-geshi_tif:before {
    content: "\e6e2";
}

.icon-geshi_png:before {
    content: "\e6e3";
}

.icon-geshi_psd:before {
    content: "\e6e4";
}

.icon-geshi_svg:before {
    content: "\e6e5";
}

.icon-geshi_pcx:before {
    content: "\e6e6";
}

.icon-geshi_wmf:before {
    content: "\e6e7";
}

.icon-geshi_emf:before {
    content: "\e6e8";
}

.icon-geshi_dxf:before {
    content: "\e6e9";
}

.icon-geshi_eps:before {
    content: "\e6ea";
}

.icon-geshi_tga:before {
    content: "\e6eb";
}

.icon-geshi_cdr:before {
    content: "\e6ec";
}

.icon-geshi_zip:before {
    content: "\e6ed";
}

.icon-geshi_rar:before {
    content: "\e6ee";
}

.icon-geshi_cab:before {
    content: "\e6ef";
}

.icon-geshi_iso:before {
    content: "\e6f0";
}

.icon-geshi_tar:before {
    content: "\e6f1";
}

.icon-geshi_weizhi:before {
    content: "\e6f2";
}
/*#endregion **/

[deta-title] {
    position: relative;
    margin: 0 20px;
}

    [deta-title]:after {
        content: attr(deta-title);
        position: absolute;
        left: 50%;
        bottom: 100%;
        transform: translate(-50%,0);
        color: #fff;
        text-shadow: 0 -1px 0px black;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
        background: #383838;
        border-radius: 2px;
        padding: 3px 10px;
        font-size: 12px;
        white-space: nowrap;
        transition: all .3s;
        opacity: 0;
        visibility: hidden;
    }

    [deta-title]:hover:after {
        transition-delay: 100ms;
        visibility: visible;
        transform: translate(-50%,-6px);
        opacity: 1;
    }


/* timeline */
.leo-timeline {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.leo-timeline-item {
    display: flex;
    flex-direction: row;
    position: relative;
    padding-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

    .leo-timeline-item .leo-timeline-item-keynode {
        width: 160px;
        flex-shrink: 0;
        box-sizing: border-box;
        padding-right: 20px;
        text-align: right;
        line-height: 65px;
    }

    .leo-timeline-item .leo-timeline-item-divider {
        flex-shrink: 0;
        position: relative;
        width: 16px;
        height: 16px;
        top: 0;
        border-radius: 50%;
        background-color: #bbb;
    }

.leo-timeline-item-divider::before,
.leo-timeline-item-divider::after {
    position: absolute;
    left: 8px;
    width: 1px;
    height: 100vh;
    content: '';
    background: inherit;
}

.leo-timeline-item-divider::before {
    bottom: 100%;
}

.leo-timeline-item-divider::after {
    top: 100%;
}


.leo-timeline-last-item .leo-timeline-item-divider:after {
    display: none;
}

.leo-timeline-first-item .leo-timeline-item-divider:before {
    display: none;
}

.leo-timeline-item .leo-timeline-item-content {
    padding-left: 20px;
}

.leo-timeline-last-item .bottom-border::after {
    display: none;
}

.leo-timeline-item-content .datetime {
    color: #CCCCCC;
}

/* 自定义节点颜色 */
.leo-timeline-last-item .leo-timeline-item-divider {
    background-color: #1AAD19;
}


.leo-printpreview {
    padding: 10px 0;
}

.leo-optrecord {
    padding: 10px 0;
}

.leo-col-xs-1, .leo-col-sm-1, .leo-col-xs-2, .leo-col-sm-2, .leo-col-xs-3, .leo-col-sm-3, .leo-col-xs-4, .leo-col-sm-4, .leo-col-xs-5, .leo-col-sm-5, .leo-col-xs-6, .leo-col-sm-6, .leo-col-xs-7, .leo-col-sm-7, .leo-col-xs-8, .leo-col-sm-8, .leo-col-xs-9, .leo-col-sm-9, .leo-col-xs-10, .leo-col-sm-10, .leo-col-xs-11, .leo-col-sm-11, .leo-col-xs-12, .leo-col-sm-12 {
    position: relative;
    min-height: 1px;
}

.leo-col-xs-12 {
    width: 100%;
}

.leo-col-xs-11 {
    width: 91.66666667%;
}

.leo-col-xs-10 {
    width: 83.33333333%;
}

.leo-col-xs-9 {
    width: 75%;
}

.leo-col-xs-8 {
    width: 66.66666667%;
}

.leo-col-xs-7 {
    width: 58.33333333%;
}

.leo-col-xs-6 {
    width: 50%;
}

.leo-col-xs-5 {
    width: 41.66666667%;
}

.leo-col-xs-4 {
    width: 33.33333333% !important;
}

.leo-col-xs-3 {
    width: 25%;
}

.leo-col-xs-2 {
    width: 16.66666667%;
}

.leo-col-xs-1 {
    width: 8.33333333%;
}


.leo-card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
}

.leo-card-header {
    border-bottom: 1px solid #eaeaea;
    background: none;
    padding: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.leo-card-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.leo-card-body {
    padding: 10px;
}

.leo-card-toolbar {
    position: absolute;
    right: 10px;
}

    .leo-card-toolbar .iconfont {
        font-size: 25px;
        color: #636262;
        cursor: pointer;
    }

.leo-footer-summary {
    line-height: 25px;
    border-bottom: 2px solid #fd974d;
}

    .leo-footer-summary span {
        font-weight: bold;
        display: inline-block;
        vertical-align: middle;
        padding: 0 10px 0 0px;
    }

    .leo-footer-summary .title {
        margin-right: 10px;
        border-top-right-radius: 20px;
        padding: 0 15px;
        color: #fff;
        background-color: #fd974d;
        background: -webkit-linear-gradient(left, #fd974d, #fe6054);
        background: -o-linear-gradient(right, #fd974d, #fe6054);
        background: -moz-linear-gradient(right, #fd974d, #fe6054);
        background: linear-gradient(to right, #fd974d, #fe6054);
    }

    .leo-footer-summary .innertitle {
        padding: 0;
    }

.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;
    }

        .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: 280px;
    overflow: auto;
}

    .leo-droptree-content a {
        width: 20%;
        font-size: 12px;
        padding: 10px 0;
        margin-right: 5px;
    }

        .leo-droptree-content a:hover {
            color: orangered;
        }



.iants-layout-aside {
    box-shadow: 1px 0 2px 0 rgba(0, 0, 0, .05);
    z-index: 300;
    background-color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 205px;
    color: #555;
}

    .iants-layout-aside ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
        background: #152036;
    }

    .iants-layout-aside ::-webkit-scrollbar-thumb {
        background: #485163;
    }

    .iants-layout-aside.bg-white ::-webkit-scrollbar-track-piece { /*内层轨道，滚动条中间部分（除去）。*/
        background: rgb(240, 240, 240);
    }

    .iants-layout-aside.bg-white ::-webkit-scrollbar-thumb {
        background: rgb(180, 180, 180);
    }

    .iants-layout-aside .nav-title,
    .iants-layout-aside .nav-subtitle {
        border-bottom: 1px #c6c7ca solid;
        cursor: pointer;
    }

    .iants-layout-aside .nav-title {
        background: #dddddd;
        padding: 14px 10px 14px 0px;
    }

        .iants-layout-aside .nav-title.leo-active, .iants-layout-aside .nav-subtitle.leo-active {
            background-color: #000;
            border: 1px solid #000;
            color: #fff;
        }

        .iants-layout-aside .nav-title .first, .iants-layout-aside .nav-subtitle .first {
            width: 30px;
            text-align: center;
        }

    .iants-layout-aside .nav-subtitle {
        padding: 10px 10px;
        border-bottom: 1px #c6c7ca solid;
        background: #eee;
    }

        .iants-layout-aside .nav-subtitle.bg-primary {
            color: white;
            font-weight: bold;
        }

        .iants-layout-aside .nav-subtitle .split {
            width: 3px;
            display: none;
        }

        .iants-layout-aside .nav-subtitle:hover .split {
            display: block;
        }

    .iants-layout-aside ul {
        transition: all .3s;
        -webkit-transition: all .3s;
    }

    .iants-layout-aside.small {
        width: 60px;
    }

        .iants-layout-aside.small .nav-title {
            padding: 14px 0;
        }

            .iants-layout-aside.small .nav-title .first {
                width: 100%;
            }

            /*.iants-layout-aside.small ul ul {
        display: none !important;
    }*/

            .iants-layout-aside.small .nav-title .ml-auto,
            .iants-layout-aside.small .nav-title span {
                display: none !important;
            }


.iants-layout-top {
    left: 208px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    transition: all .3s;
    -webkit-transition: all .3s;
}

    .iants-layout-top menu {
        display: none;
        z-index: 1040;
        top: 34px;
        right: 15px;
    }

    .iants-layout-top .user:hover menu {
        display: block;
    }

    .iants-layout-top menu a:hover {
        color: #E2E2E2;
    }

.iants-layout-aside.small ~ .iants-layout-top {
    left: 60px;
}

.iants-layout-aside.small ~ .iants-layout-body {
    padding-left: 60px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.iants-layout-logo {
    padding: 2px 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
}

    .iants-layout-logo img {
        height: 46px;
    }


.iants-pagetab .absolute-left,
.iants-pagetab .absolute-right {
    width: 36px;
    line-height: 36px;
    text-align: center;
}

.iants-layout-aside.small > .iants-layout-aside > ul > li:hover > ul {
    position: fixed;
    margin-top: -50px;
    background: #333d4b;
    left: 58px;
    display: block !important;
}



/*#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*/

.erp-table-productcolorselect {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

    .erp-table-productcolorselect label {
        margin: 5px;
        display: flex;
        align-items: center;
    }

    /*.erp-table-productcolorselect input {
        margin-right: 2px;
    }*/

    .erp-table-productcolorselect .icon-jia {
        font-size: 20px;
        color: #0ae;
        font-weight: bold;
        margin: 5px;
        cursor: pointer;
    }

.leo-more-excel {
    position: absolute;
    min-width: 166px;
    z-index: 1001;
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 30%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 30%);
    padding: 20px 0 3px;
    min-height: 0;
    background-color: #293c55;
    display: none;
}

    .leo-more-excel .icon-shanchu {
        display: block;
        color: red;
        position: absolute;
        right: 5px;
        top: 5px;
        cursor: pointer;
    }

/*#region 详情页操作按钮*/
.iants-btn-group.fixed-right {
    top: 20px;
    right: 20px;
}

.iants-btn-group a {
    padding: 8px 15px;
    font-weight: bold;
    line-height: normal;
    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;
    color: #000;
    background: #d5dde8;
    border-color: #d5dde8;
    border-radius: unset;
    border-right: 1px solid #a8b0ba;
}

    .iants-btn-group a:first-child {
        border-top-left-radius: 0.125rem;
        border-bottom-left-radius: 0.125rem;
    }

    .iants-btn-group a:last-child {
        border-top-right-radius: 0.125rem;
        border-bottom-right-radius: 0.125rem;
        border: none;
    }

    .iants-btn-group a: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;
    }



    .iants-btn-group a:hover {
        color: #000;
        background-color: #D1D1D1;
        text-decoration: none;
    }


    .iants-btn-group a:active {
        background-color: #CCCCCC;
        color: #000;
    }
/*#endregion*/
