/* @update: 2017-3-9 17:26*/

@charset "UTF-8";

/* === 输入控件基本样式 === */

input[type=text],
input[type=number],
input[type=password],
select,
textarea {
    border: 1px solid #DDD;
    border-radius: 2px;
    padding: 6px;
}

select {
    padding: 2px 6px;
}

input[type=text]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
textarea:disabled,
select:disabled {
    background-color: #EEEEEE;
}

input[type=radio],
input[type=checkbox] {
    width: 15px !important;
    height: 15px !important;
    vertical-align: middle;
    outline: none;
}

/* input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
    border: 1px solid #0099FF !important;
    box-shadow: 0 0 4px rgba(0, 153, 255, 0.5);
} */

/* input[type=text]:enabled:hover,
input[type=number]:enabled:hover,
input[type=password]:enabled:hover,
textarea:enabled:hover,
select:enabled:hover {
    border: 1px solid #ddd;
    box-shadow: 0 0 4px rgba(0, 153, 255, 0.5);
} */

.input:focus,
.field.value:focus,
textarea:focus,
select:focus {
    box-shadow: none;
}

input[type=button]:enabled:hover,
input.button:enabled:hover,
div.button:enabled:hover,
button:enabled:hover {
    box-shadow: none;
}

textarea.borderless {
    border-color: transparent;
    resize: none;
    background-color: #fff !important;
}

textarea.borderless:enabled:hover {
    box-shadow: none;
    border-color: transparent;
}

textarea.borderless:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: transparent !important;
}

/* === buttom   === */

.swb-btn {
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #0c64eb;
    color: #fff;
    background-color: #0c64eb;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all 0.1s;
    outline: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.swb-btn:hover,
.swb-btn-link:hover {
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.swb-btn:active,
.swb-btn-link:active {
    opacity: 1;
    filter: alpha(opacity=100);
}

.swb-btn.swb-btn-primary {
    background: #fff;
    border: 1px solid #dadada;
    color: #5a5e66;
}

.swb-btn.swb-btn-success {
    color: #fff;
    background-color: #67c23a;
    border-color: #67c23a;
}

.swb-btn.swb-btn-info {
    color: #fff;
    background-color: #878d99;
    border-color: #878d99;
}

.swb-btn.swb-btn-warning {
    color: #fff;
    background-color: #eb9e05;
    border-color: #eb9e05;
}

.swb-btn.swb-btn-danger {
    color: #fff;
    background-color: #D71718;
    border-color: #D71718;
}

.swb-btn.swb-btn-outlined {
    color: #0c64eb;
    background: #fff;
    border-color: #b3d8ff;
}

.swb-btn.swb-btn-success.swb-btn-outlined {
    color: #67c23a;
    background-color: #fff;
    border-color: #67c23a;
}

.swb-btn.swb-btn-info.swb-btn-outlined {
    color: #878d99;
    background-color: #fff;
    border-color: #878d99;
}

.swb-btn.swb-btn-warning.swb-btn-outlined {
    color: #eb9e05;
    background-color: #fff;
    border-color: #eb9e05;
}

.swb-btn.swb-btn-danger.swb-btn-outlined {
    color: #0c64eb;
    background: #fff;
    border-color: #0c64eb;
}

.swb-btn.swb-btn-disabled,
.swb-btn.swb-btn-disabled:focus,
.swb-btn.swb-btn-disabled:hover {
    cursor: not-allowed;
    background-image: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.swb-btn.swb-btn-link,
.swb-btn-link {
    line-height: 1;
    border: none;
    font-size: 12px;
    color: #0c64eb;
    background: transparent;
    padding: 4px 6px;
    display: inline-block;
    white-space: nowrap;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all 0.2s;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.swb-btn-link.swb-btn-disabled,
.swb-btn-link.swb-btn-disabled:focus,
.swb-btn-link.swb-btn-disabled:hover {
    cursor: not-allowed;
    background-image: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: #888;
}

.swb-btn.swb-btn-small {
    padding: 8px 14px;
}

.swb-btn.swb-btn-mini {
    padding: 4px 7px;
}

/* ============ 枚举标签列表 ============ */
.enum-list.mask .enum-item .hover-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    line-height: 28px;
    text-align: center;
    display: none;
}

.enum-list.mask .enum-item:hover .hover-mask {
    display: block;
}

.enum-list {
    overflow: hidden;
    height: inherit;
}

.enum-item {
    height: 30px;
    width: auto;
    background-color: white;
    line-height: 16px;
    padding: 6px;
    min-width: 80px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    float: left;
}

.enum-list .enum-item .delete {
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    background: #C0C4CC;
}

.enum-list .enum-item .delete:hover {
    background: #909399;
}

.enum-item.checked {
    border: 1px solid #ff612a;
    cursor: pointer;
}

.enum-item.checked i {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 18px;
    background: url(../image/icons.png) no-repeat -122px -120px;
}

/* === 小红点 === */
sup.badge {
    background-color: #ff4949;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    height: 18px;
    line-height: 17px;
    padding: 0 6px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #fff;
    top: 0;
    right: 2px;
    position: absolute;
    transform: translateY(-50%) translateX(100%);
}

/* === 简单表格布局 ===  */

.simple-tbl {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 2px;
    border-color: gray;
    color: #666;
}

.simple-tbl.no-border > .body > .row > td {
    border-width: 0;
    padding: 0;
}

.simple-tbl > .body > .row.active > td {
    background-color: #F1F1F1;
}

.simple-tbl > .body > .row {
    -webkit-transition: background-color .3s cubic-bezier(.65, .05, .35, .5);
    -moz-transition: background-color .3s cubic-bezier(.65, .05, .35, .5);
    transition: background-color .3s cubic-bezier(.65, .05, .35, .5);
}

.simple-tbl > .body > .row:hover:not(.active) {
    background-color: #F6F6F6;
}

.simple-tbl > .head > .row {
    height: 32px;
    line-height: 20px;
}

.simple-tbl > .head > .row > th,
.simple-tbl > .head > .row > td {
    text-align: left;
    font-weight: normal;
    background-color: #EEEEEE;
    padding: 0 10px;
}

.simple-tbl > .head.normal-head > .row > th {
    background-color: #fff;
    border: 1px solid #e5e5e5;
}

.simple-tbl > .head > .row.center > th,
.simple-tbl > .body > .row.center > td {
    text-align: center;
}

.simple-tbl > .body > .row {
    height: 32px;
    line-height: 20px;
    background-color: #FFF;
}

.simple-tbl > .body > tr > td {
    border: 1px solid #e5e5e5;
}

.simple-tbl > .body > .even.row {
    background-color: #FCFCFC;
}

.simple-tbl > .body > .sep.row {
    height: 20px;
}

.simple-tbl > .body > .sep.row > td {
    border: none;
}

.simple-tbl > .body > .head.row {
    background: #f5f5f5;
}

.simple-tbl > .body > .head.row > td {
    background: #f5f5f5;
    border-bottom-color: #f5f5f5;
    padding: 0 10px;
}

.simple-tbl > .body > .row > td {
    vertical-align: top;
    padding: 4px;
}

.simple-tbl > .body > .head.row span.label {
    float: left;
    padding-top: 6px;
}

.simple-tbl .row input {
    width: 100% !important;
}

/* === 树形列表页 === */
.menu-tree {
    width: 100%;
    height: auto;
    z-index: 100;
    padding-bottom: 40px;
}

.menu-tree.show {
    transform: translateX(0);
}

.menu-tree .catalog {
    background-color: #1b75d4;
    padding: 0 15px;
    line-height: 38px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.menu-tree .first-menu {
    height: auto;
    width: 100%;
    margin-top: 6px;
    background-color: #fff;
}

.menu-tree .first-menu > .menu-content {
    padding: 0 15px;
    line-height: 38px;
    border-bottom: 2px solid #e3e3e3;
    cursor: pointer;
    background-color: #0c64eb;
    color: #fff;
}

.menu-tree .first-menu .second-menu li {
    line-height: 38px;
    padding-left: 40px;
    background-color: #fff;
    cursor: pointer;
}

.menu-tree .first-menu .second-menu li.current {
    background-color: #59a8fa;
    color: #fff;
}

.menu-tree .first-menu .second-menu li:not(.current):hover {
    background-color: #f5f5f5;
}

/* === 树形列表2 === */
.tree-menu {
    width: 100%;
    color: #ffffff;
    overflow: hidden;
}

.tree-menu .tree-caption {
    height: 34px;
    line-height: 34px;
    background-color: #009688;
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    position: relative;
    cursor: pointer;
}

.tree-menu li {
    cursor: pointer;
    overflow: hidden;
}

.tree-menu li .first-title:hover,
.tree-menu li .second-title:hover,
.tree-menu li .third-title:hover {
    background-color: #0c64eb;
}

li.first-menu {
}

.tree-menu .menu-title {
    line-height: 38px;
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 10px;
    text-overflow: ellipsis;
}

.tree-menu .menu-title.current {
    background-color: #0c64eb !important;
}

.tree-menu .menu-title.first-title {
    background-color: #42485a;
    padding-left: 38px;
    font-size: 13px;
}

.tree-menu .menu-title.second-title {
    padding-left: 48px;
    font-size: 12px;
}

/*.tree-menu .menu-title.third-title {*/
/*background-color: #323644;*/
/*padding-left: 82px;*/
/*}*/

/*.tree-menu .menu-title.fourth-title {*/
/*background-color: #42485B;*/
/*padding-left: 105px;*/
/*}*/

.menu-title.first-title > .flexible-icon,
.menu-title.second-title > .flexible-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    font-size: 20px;
}

.menu-title.first-title > .catalog-icon,
.menu-title.second-title > .catalog-icon {
    width: 30px;
    height: 20px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 6px;
    margin-top: -13px;
    font-size: 16px;
    color: #ececec;
}

[v-cloak] {
    display: none;
}

/* === 页面翻转 === */
.flip-container,
.front,
.back {
    width: 100%;
    height: 100%;
}

.flip-container {
    perspective: 1200;
    -webkit-perspective: 1200;
    -ms-perspective: 1200;
    -moz-perspective: 1200;

    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -ms-ptransform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
}

.flipper {
    position: relative;
    transition: 1s;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -ms-ptransform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    width: 100%;
    height: 100%;
}

.flipper .front {
    z-index: 10;
}

.front,
.back {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome 和 Safari */
    -moz-backface-visibility: hidden; /* Firefox */
    -ms-backface-visibility: hidden;
}

.front {
    transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    z-index: 2;
}

.back {
    transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.flipper-back {
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.flipper-front {
    transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
}

.form-toolbar {
    clear: both;
    width: 100%;
    line-height: 46px;
    min-height: 46px;
    text-align: center;
}

/* ===图片中心放大=== */

.center-largen {
    overflow: hidden;
}

.center-largen img {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.center-largen img:hover {
    transform: scale(1.5);
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
}

.center-largen.minute {
    overflow: hidden;
}

.center-largen.minute img {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.center-largen.minute img:hover {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* ===图片左移动=== */
.left-move {
    overflow: hidden;
}

.left-move img {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.left-move:hover img {
    transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -o-transform: translateX(-10px);
}

/* ===图片透明背景=== */
.opacity-bg {
    overflow: hidden;
}

.opacity-bg img {
    transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
}

.opacity-bg:hover img {
    opacity: 0.6;
}

/* === 常规搜索栏 === */

.search-container {
    width: 500px;
    height: 38px;
    border: 1px solid #0c64eb;
    position: relative;
    display: inline-block;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.search-container .form-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.form-box .input-field {
    width: calc(100% - 124px);
    height: 100%;
    float: left;
    background: #fff;
    padding: 6px 12px 6px 12px;
    border: none;
}

.form-box .search-btn {
    width: 124px;
    float: left;
    height: 100%;
    color: #fff;
    line-height: 35px;
    font-size: 14px;
    background: #0c64eb;
    text-align: center;
}

.form-box .search-btn i {
    vertical-align: middle;
    margin-right: 5px;
}

/* === small搜索框 === */

.search-container.small {
    width: 370px;
}

.search-container.small .search-btn {
    width: 80px;
}

.search-container.small .input-field {
    width: calc(100% - 80px);
}

/* === 原始（primary）搜索框 === */

.search-container.primary {
    width: 260px;
    border: 1px solid #ccc;
}

.search-container.primary .input-field {
    width: calc(100% - 40px);
}

.search-container.primary .search-btn {
    width: 40px;
    font-size: 15px;
    background: #eee;
    border-left: 1px solid #eee;
}

.search-container.primary .search-btn i {
    margin-right: 0;
    color: #111;
    font-weight: 600;
}

/* === type（状态）搜索框 === */
.search-container.type {
    width: 520px;
}

.search-container.type .search-type {
    float: left;
    width: 94px;
    height: 100%;
    line-height: 36px;
    background: #fff;
    position: relative;
    z-index: 10;
}

.search-type .search-type-label {
    line-height: 36px;
    height: 36px;
    padding-left: 20px;
    overflow: hidden;
    border-right: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    transition: all .3s;
    z-index: 10;
    cursor: pointer;
}

.search-type .search-type-item {
    height: 35px;
    line-height: 35px;
    padding-left: 20px;
    cursor: pointer;
    border-right: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
}

.search-type .search-type-item:hover a {
    color: #2c8cf0;
}

.search-type .search-type-list {
    background: #f9f9f9;
    z-index: 10;
    border-bottom: 1px solid #ddd;
}

.search-type i.arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -16px;
}

.search-container.type .form-box {
    width: calc(100% - 94px);
}

.search-container.type .search-btn {
    width: 80px;
}

.search-container.type .input-field {
    width: calc(100% - 80px);
}

.search-container .keyword-container {
    height: 30px;
    line-height: 30px;
    width: 100%;
    position: absolute;
    bottom: -30px;
    left: 0;
    padding-right: 68px;
    overflow: hidden;
}

.keyword-container .keyword-item {
    font-family: tahoma, arial, "Hiragino Sans GB", 宋体, sans-serif;
    color: #666;
    margin-right: 5px;
}

.search-container .tip-btn {
    position: absolute;
    right: 2px;
    top: 42px;
    width: 52px;
    height: auto;
    font-size: 13px;
}

/* === rank（高級）搜索框 === */

.search-container.rank {
    width: 520px;
    height: 42px;
    border: none;
    padding: 2px 2px 2px 1px;
    position: relative;
    background-color: #0c64eb;
    border-radius: 10px/5px 0 0 0;
}

.search-container.rank .search-nav {
    position: absolute;
    top: -20px;
    left: 10px;
}

.search-container.rank .nav-item {
    height: 22px;
    line-height: 22px;
    float: left;
    padding: 0 25px;
    margin-right: 5px;
    background-color: #0c64eb;
    color: #fff;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
}

.search-container.rank .nav-item.current {
    position: relative;
    top: -4px;
    height: 26px;
    line-height: 26px;
}

.search-container.rank .input-field {
    width: calc(100% - 80px);
}

.search-container.rank .search-btn {
    width: 80px;
    position: relative;
}

.search-container.rank .tip-btn {
    position: absolute;
    right: 6px;
    top: 50px;
    width: 52px;
    height: auto;
    font-size: 13px;
}

/* === precise（精准）搜索框 === */
.search-container.precise .search-btn {
    width: 100px;
    position: relative;
}

.search-container.precise .input-field {
    width: calc(100% - 100px);
}

.form-box .search-btn > span,
.form-box .search-btn > label {
    display: inline-block;
    width: 48%;
    height: 100%;
    font-size: 13px;
    text-align: center;
    float: left;
    cursor: pointer;
}

.form-box .search-btn > label {
    background: #fff;
    color: #999;
    cursor: pointer;
}

.form-box .search-btn.active > label {
    color: #0c64eb;

}

/* === double（双搜索）搜索框 === */
.search-container.double {
    border: none;
}

.search-container.double .search-type {
    border: 1px solid #0c64eb;
    border-right: none;
}

.search-container.type.double .input-field {
    border-left: none;
}

.search-container.double .input-field {
    border: 1px solid #0c64eb;
}

.search-container.double .input-field {
    width: calc(100% - 100px);
}

.search-container .form-box .double-search {
    width: 100px;
    float: left;
    height: 100%;
    color: #fff;
    line-height: 35px;
    font-size: 12px;
    background: #0c64eb
}

.search-container .form-box .double-search .search-btn {
    width: 50%;
    font-size: 12px;
    position: relative;
}

.search-container .form-box .double-search .search-btn:nth-child(2) {
    background-color: #666;
    border: 1px solid #666;
    z-index: 2;
    font-size: 12px;
}

/* === 简单搜索框 === */

.search-container.simple {
    width: 200px;
    height: 32px;
}

.search-container.simple .input-field {
    width: calc(100% - 35px);
}

.search-container.simple .input-field {
    padding: 3px 6px 3px 6px;
}

.search-container.simple .search-btn {
    width: 35px;
    background: transparent;
}

.search-container.simple .search-btn i {
    font-size: 22px;
    color: #2D8CF0;
    font-weight: 600;
    margin-right: 0;
    position: relative;
    top: -2px;
}

/*!* === 带状态的搜索框 === *!*/
/*.search-container.type .search-type.show .search-type-label {*/
/*background: #f9f9f9;*/
/*}*/
/* === 小的搜索栏 === */
/*!* === flexible搜索栏 === *!*/
/*.search-container.flexible {*/
/*width: 100%;*/
/*}*/
/*.search-container.flexible .input-field {*/
/*width: 150px;*/
/*}*/

/*.search-container.flexible .search-btn {*/
/*width: calc(100% - 150px);*/
/*font-size: 15px;*/
/*}*/

/* === primary搜索框 === */
/*.search-container.primary {*/
/*width: 100%;*/
/*border: 1px solid #ccc;*/
/*}*/

/*.search-container.primary .input-field {*/
/*width: calc(100% - 40px);*/
/*}*/

/*.search-container.primary .search-btn {*/
/*width: 40px;*/
/*font-size: 15px;*/
/*background: #eee;*/
/*border-left: 1px solid #eee;*/
/*}*/

/*.search-container.primary .search-btn i {*/
/*margin-right: 0;*/
/*color: #111;*/
/*font-weight: 600;*/
/*}*/

/*!* === 搜索框颜色 === *!*/
/*.search-container.blue {*/
/*border: 1px solid #007aff;*/
/*}*/

/*.search-container.blue .search-btn {*/
/*background: #007aff;*/
/*background-image: -webkit-linear-gradient(-45deg, #007aff, #3690f3);*/
/*background-image: -o-linear-gradient(-45deg, #007aff, #3690f3);*/
/*background-image: linear-gradient(-45deg, #007aff, #3690f3);*/
/*}*/

/*!* === 特殊搜索框 special=== *!*/
/*.search-container.special {*/
/*width: 480px;*/
/*height: 76px;*/
/*border: none;*/
/*padding: 6px 5px 6px 1px;*/
/*position: relative;*/
/*margin-top: 100px;*/
/*background-color: #0099FF;*/
/*border-radius: 21px/9px 0 0 0;*/
/*}*/

/*.search-container.special .search-nav {*/
/*position: absolute;*/
/*top: -28px;*/
/*left: 10px;*/
/*}*/

/*.search-container.special .nav-list {*/
/*overflow: hidden;*/
/*}*/

/*.search-container.special .nav-item {*/
/*height: 30px;*/
/*line-height: 30px;*/
/*float: left;*/
/*padding: 0 25px;*/
/*margin-right: 5px;*/
/*background-color: #007FFF;*/
/*color: #fff;*/
/*border-radius: 4px 4px 0 0;*/
/*cursor: pointer;*/
/*}*/

/*.search-container.special .nav-item.current {*/
/*position: relative;*/
/*top: -8px;*/
/*height: 38px;*/
/*line-height: 38px;*/
/*}*/

/*.search-container.special .form-box {*/
/*height: 38px;*/
/*}*/

/*.search-container.special .input-field {*/
/*width: 430px;*/
/*}*/

/*.search-container.special .search-btn {*/
/*width: calc(100% - 430px);*/
/*background: #fff;*/
/*color: #000;*/
/*font-weight: 600;*/
/*border-left: 1px solid #ddd;*/
/*position: relative;*/
/*}*/

/*.search-container.special .tip-btn {*/
/*width: 100px;*/
/*height: 28px;*/
/*line-height: 28px;*/
/*position: static;*/
/*float: right;*/
/*text-align: right;*/
/*}*/

/*.search-container.special .tip-btn a {*/
/*color: #fff;*/
/*}*/

/*.search-container.special .search-panel {*/
/*width: 480px;*/
/*height: auto;*/
/*position: absolute;*/
/*bottom: -197px;*/
/*left: 0;*/
/*background: #138dea;*/
/*overflow: hidden;*/
/*padding: 10px 20px;*/
/*border-radius: 0 0 5px 5px;*/
/*}*/

/*.search-panel .search-label {*/
/*float: left;*/
/*border-right: 1px solid #fafafa;*/
/*}*/

/*.search-panel .label-item {*/
/*width: 100px;*/
/*height: 38px;*/
/*line-height: 38px;*/
/*color: #fff;*/
/*margin: 5px 0;*/
/*}*/

/*.search-panel .search-value {*/
/*float: left;*/
/*}*/

/*.search-panel .value-item {*/
/*width: 320px;*/
/*height: 38px;*/
/*line-height: 38px;*/
/*color: #fff;*/
/*padding-left: 30px;*/
/*margin: 5px 0;*/
/*}*/

/*.search-panel .value-item .el-slider__bar {*/
/*background-color: #cacdd0;*/
/*}*/

/*.search-panel .value-item .el-slider__button {*/
/*background-color: #fff;*/
/*}*/

/* 提示信息  */
.hint {
    color: #999;
    display: inline-block;
}

.hint .title {
    color: #666;
    margin-bottom: 6px;
}

.hint.block {
    width: 100%;
    padding: 10px;
    background-color: #fffdee;
    border-radius: 2px;
    margin-top: 10px;
}

.hint.block.row {
    height: auto;
    line-height: initial;
    font-size: 12px;
}

.hint.fixed {
    position: absolute;
    top: -44px;
}

.hint.block.row .title {
    display: inline;
    margin-bottom: 0;
}

/* 设置滚动条的样式 */

/*webkit内核*/
.open-sidebar-area::-webkit-scrollbar
    /*.content-area::-webkit-scrollbar */
{
    width: 0;
    height: 0;
}

.open-sidebar-area::-webkit-scrollbar-button
    /*.content-area::-webkit-scrollbar-button*/
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-track
    /*.content-area::-webkit-scrollbar-track */
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-track-piece
    /*.content-area::-webkit-scrollbar-track-piece */
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-thumb
    /*.content-area::-webkit-scrollbar-thumb*/
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-corner
    /*.content-area::-webkit-scrollbar-corner */
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-resizer
    /*.content-area::-webkit-scrollbar-resizer */
{
    background-color: rgba(0, 0, 0, 0);
}

/*o内核*/
.open-sidebar-area .-o-scrollbar,
    /*.content-area .-o-scrollbar,*/
.fixed-tree .-o-scrollbar {
    -moz-appearance: none !important;
    background: rgba(0, 255, 0, 0) !important;
}

.open-sidebar-area::-o-scrollbar-button,
    /*.content-area::-o-scrollbar-button,*/
.fixed-tree ::-o-scrollbar-button {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-track,
    /*.content-area::-o-scrollbar-track,*/
.fixed-tree ::-o-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-track-piece,
    /*.content-area::-o-scrollbar-track-piece,*/
.fixed-tree ::-o-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-thumb,
    /*.content-area::-o-scrollbar-thumb,*/
.fixed-tree ::-o-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-corner,
    /*.content-area::-o-scrollbar-corner,*/
.fixed-tree ::-o-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-resizer,
    /*.content-area::-o-scrollbar-resizer,*/
.fixed-tree ::-o-scrollbar-resizer {
    background-color: rgba(0, 0, 0, 0);
}

/*IE10,IE11,IE12*/
.open-sidebar-area
    /*.content-area */
{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}

/* === label搜索 === */
.search-layout.label {
    border: none;
}

.search-layout.label .search-label {
    display: inline-block;
}

/* === 步骤条 === */
.steps-container {
    font-size: 0;
    overflow: hidden;
    line-height: 0;
    margin: 18px 0;
}

.steps-container .wrap {
    display: inline-block;
}

.steps-container .wrap > div {
    width: 195px;
    height: 32px;
    display: inline-block;
    line-height: 32px;
    vertical-align: top;
    font-size: 14px;
    position: relative;
}

.steps-container .step.finished {
    background-color: #28a3ef;
    color: #ffffff;
}

.steps-container .wrap > div > label {
    margin-left: 26px;
    cursor: default;
}

.steps-container .round {
    display: inline-block;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    line-height: 16px;
}

.steps-container .step.finished .round {
    background-color: #fff;
    color: #28a3ef;
}

.steps-container .step.finished .round > i {
    color: #28a3ef;
    font-size: 12px;
    vertical-align: middle;
}

.steps-container .round .steps-icon {
    vertical-align: -1px;
}

.steps-container .triangle-right-bg {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    z-index: 1;
    border-width: 20px;
    right: -40px;
    border-color: transparent transparent transparent #FFF;
    top: -4px;
}

.steps-container div.finished .triangle-right {
    border-color: transparent transparent transparent #28a3ef;
}

.steps-container .triangle-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px;
    position: absolute;
    right: -31px;
    z-index: 1;
    border-color: transparent transparent transparent #eee;
}

.steps-container div.current {
    background-color: #4cb9fc;
    color: #fff;
}

.steps-container div.current .round {
    background-color: #ffffff;
    color: #4cb9fc;
}

.steps-container div.current .triangle-right {
    border-color: transparent transparent transparent #4cb9fc;
}

.steps-container .step {
    background-color: #eeeeee;
    color: #999999;
}

.steps-container .step .round {
    background-color: #ffffff;
}

.steps-auto {
    display: table;
    width: 100%;
}

.steps-auto .wrap {
    display: table-cell;
}

.steps-auto .wrap > div {
    width: 100%;
}

.steps-container .steps1 {
    background-color: #4cb9fc;
    color: #ffffff;
}

.steps-container .steps1 .triangle-right {
    border-color: transparent transparent transparent #4cb9fc;
}

.steps-container .steps1 .round {
    background-color: #fff;
    color: #4cb9fc;
}

.steps-container .steps1 .round > i {
    color: #4cb9fc;
    font-size: 12px;
    vertical-align: middle;
}

.steps-container .steps2 {
    background-color: #eee;
    color: #999;
}

.steps-container .steps2 .triangle-right {
    border-color: transparent transparent transparent #eee;
}

.steps-container .steps2 .round {
    color: #999;
    background-color: #ffffff;
}

/* === 通用对话框 === */

.msg-box {
    width: 380px;
    height: 66px;
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    display: table;
    z-index: 5;
}

.msg-box > .msg-icon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 66px;
    font-size: 30px;
    text-align: center;
    line-height: 66px;
    border-radius: 2px 0 0 2px;
    z-index: 2;
}

.msg-box.loading {
    /*background-color: transparent;*/
    background: rgba(255, 255, 255, 0.3)
}

.msg-box.loading > .text {
    color: #0c64eb;
}

.msg-box.loading > .icon-loading {
    background: url("../image/loading.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    left: 20px;
    top: 16px;
    animation: spin 800ms infinite reverse linear;
}

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.msg-box > .text {
    padding-left: 81px;
    line-height: 20px;
    height: 100%;
    font-size: 14px;
    color: rgb(131, 145, 165);
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
}

.msg-box.warning > .msg-icon {
    color: #f0ad4e;
}

.msg-box.success > .msg-icon {
    color: #5cb85c;
}

.msg-box.info > .msg-icon {
    color: #5bc0de;
}

.msg-box.error > .msg-icon {
    color: #d9534f;
}

.msg-box.failure > .msg-icon {
    color: #d9534f;
}

/* === 自定义表格 === */

.custom-tbl {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 2px;
    border-color: #dfe6ec;
    color: #1f2d3d;
    font-size: 14px;
    background-color: #fff;
}

.custom-tbl > .head > .row > th,
.custom-tbl > .body > .row > td,
.custom-tbl > .foot > .row > td {
    font-weight: normal;
    padding: 0 4px;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
    text-align: center;
    height: 40px;
    line-height: 24px;
}

.custom-tbl.align-left > .head > .row > th,
.custom-tbl.align-left > .body > .row > td,
.custom-tbl.align-left > .foot > .row > td {
    text-align: left;
}

.custom-tbl > .head > .row,
.custom-tbl > .body > .row,
.custom-tbl > .foot > .row {
    transition: all .2s;
    -webkit-transition: all .2s;
}

.custom-tbl > .head > .row > th {
    background-color: #f5f5f6;
    border: 1px solid #EBEEF5;
    padding: 0 4px;
    color: #606266;
    font-weight: bold;
}

.custom-tbl > .body > tr > td,
.custom-tbl > .foot > tr > td {
    border: 1px solid #EBEEF5;
    word-break: normal;
    /*white-space: pre-wrap;*/
    overflow: hidden;
    color: #606266;
}

.custom-tbl > .body > tr > td > a,
.custom-tbl > .foot > tr > td > a {
    display: initial;
}

.custom-tbl > .head > .row > th.align-left {
    text-align: left;
}

.custom-tbl > .body > .row > td.align-left {
    text-align: left;
}

.custom-tbl > .head > .row > th.align-right {
    text-align: right;
}

.custom-tbl > .body > .row > td.align-right {
    text-align: right;
}

.custom-tbl > .body > .row {
    -webkit-transition: background-color .3s cubic-bezier(.65, .05, .35, .5);
    -moz-transition: background-color .3s cubic-bezier(.65, .05, .35, .5);
    transition: background-color .3s cubic-bezier(.65, .05, .35, .5);
}

.custom-tbl > .body > .row:hover {
    background-color: #f1f4f9;
}

.custom-tbl.hide-hover > .body > .row:hover {
    background-color: transparent;
}

.custom-tbl > .body > .row.highlight-gray {
    background-color: #e8e8e8;
    color: #888;
}

.custom-tbl.hide-border > .body > tr > td,
.custom-tbl.hide-border > .foot > tr > td {
    border: 0;
}

.custom-tbl.fixed-ellipsis > .body > tr > td,
.custom-tbl.hide-border > .foot > tr > td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.custom-tbl.color > .head > .row > th {
    background-color: #eef1f6;
    border: 1px solid #dfe6ec;
}

/* === 分页 === */

.pager-wrapper {
    overflow: hidden;
    height: 42px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: 14px;
    clear: both;
}

.pager {
    float: right;
    margin-right: 10px;
    height: 40px;
    width: auto;
    line-height: 38px;
    font-size: 14px;
    text-align: right;
}

.pager span,
.pager span > a,
.pager span > em,
.pager span > b {
    font-size: inherit;
}

.pager > .nums {
    display: inline-block;
}

.pager > .jump {
    display: inline-block;
    margin-left: 20px;
}

.pager > .nums > a {
    display: inline-block;
    width: 44px;
    height: 38px;
    text-align: center;
    margin-left: 4px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
}

.pager > .nums > b {
    display: inline-block;
    height: 38px;
    width: 38px;
    text-align: center;
    line-height: 38px;
    cursor: default;
}

.pager > .nums > a.prev,
.pager > .nums > a.next {
    width: 100px;
}

.pager > .nums > a.disabled {
    cursor: default;
    color: #AAA;
    background-color: #FFF;
}

.pager > .nums > a.active {
    color: red;
    border: none;
    background-color: transparent;
    cursor: default;
}

.pager > .jump > .pageNo {
    width: 40px;
    text-align: center;
    height: 28px;
    margin: 0 4px;
    margin-bottom: 4px;
}

.pager > .jump > .pageNo.error {
    color: red;
}

.pager > .jump > .btn-ok {
    display: inline-block;
    width: 60px;
    height: 38px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
}

.pager > .jump > em b {
    font-weight: bold;
}

.overflow-hidden {
    overflow: hidden;
}

/* 设置滚动条的样式 */

/*webkit内核*/
.open-sidebar-area::-webkit-scrollbar
    /*.content-area::-webkit-scrollbar */
{
    width: 0;
    height: 0;
}

.open-sidebar-area::-webkit-scrollbar-button
    /*.content-area::-webkit-scrollbar-button*/
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-track
    /*.content-area::-webkit-scrollbar-track */
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-track-piece
    /*.content-area::-webkit-scrollbar-track-piece */
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-thumb
    /*.content-area::-webkit-scrollbar-thumb*/
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-corner
    /*.content-area::-webkit-scrollbar-corner */
{
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-webkit-scrollbar-resizer
    /*.content-area::-webkit-scrollbar-resizer */
{
    background-color: rgba(0, 0, 0, 0);
}

/*o内核*/
.open-sidebar-area .-o-scrollbar,
    /*.content-area .-o-scrollbar,*/
.fixed-tree .-o-scrollbar {
    -moz-appearance: none !important;
    background: rgba(0, 255, 0, 0) !important;
}

.open-sidebar-area::-o-scrollbar-button,
    /*.content-area::-o-scrollbar-button,*/
.fixed-tree ::-o-scrollbar-button {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-track,
    /*.content-area::-o-scrollbar-track,*/
.fixed-tree ::-o-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-track-piece,
    /*.content-area::-o-scrollbar-track-piece,*/
.fixed-tree ::-o-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-thumb,
    /*.content-area::-o-scrollbar-thumb,*/
.fixed-tree ::-o-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-corner,
    /*.content-area::-o-scrollbar-corner,*/
.fixed-tree ::-o-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
}

.open-sidebar-area::-o-scrollbar-resizer,
    /*.content-area::-o-scrollbar-resizer,*/
.fixed-tree ::-o-scrollbar-resizer {
    background-color: rgba(0, 0, 0, 0);
}

/*IE10,IE11,IE12*/
.open-sidebar-area
    /*.content-area */
{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}

/*宽度*/

.width-1x {
    width: 160px;
}

.width-1-5x {
    width: 240px;
}

.width-2x {
    width: 320px;
}

.width-3x {
    width: 480px;
}

.width-4x {
    width: 640px;
}

/*文件图标集合 fileType*/
.file-type-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url("../image/fileType.png");
    background-repeat: no-repeat;
}

.file-type-icon.small {
    width: 32px;
    height: 32px;
}

.file-type-icon.big {
    width: 75px;
    height: 75px;
}

.file-type-icon.doc {
    background-position: -100px 0;
}

.file-type-icon.xls {
    background-position: -68px 0;
}

.file-type-icon.ppt {
    background-position: -132px 0;
}

.file-type-icon.pdf {
    background-position: -548px 0;
}

.file-type-icon.txt {
    background-position: -708px 0;
}

.file-type-icon.xml {
    background-position: -420px 0;
}

.file-type-icon.json {
    background-position: -420px 0;
}

.file-type-icon.html {
    background-position: -324px 0;
}

.file-type-icon.css {
    background-position: -388px 0;
}

.file-type-icon.js {
    background-position: -356px 0;
}

.file-type-icon.jpg {
    background-position: -36px -33px;
}

.file-type-icon.png {
    background-position: -100px -33px;
}

.file-type-icon.gif {
    background-position: -68px -33px;
}

.file-type-icon.bmp {
    background-position: -132px -33px;
}

.file-type-icon.ico {
    background-position: -260px -33px;
}

.file-type-icon.svg {
    background-position: -420px 0;
}

.file-type-icon.webp {
    background-position: -420px 0;
}

.file-type-icon.eot {
    background-position: -516px 0;
}

.file-type-icon.otf {
    background-position: -516px 0;
}

.file-type-icon.ttf {
    background-position: -516px 0;
}

.file-type-icon.woff {
    background-position: -516px 0;
}

.file-type-icon.zip {
    background-position: -228px 0;
}

.file-type-icon.rar {
    background-position: -196px 0;
}

.file-type-icon.gzip {
    background-position: -420px 0;
}

.file-type-icon.tar {
    background-position: -420px 0;
}

.file-type-icon.zip7 {
    background-position: -164px 0;
}

.file-type-icon.small.doc {
    background-position: -100px -65px;
}

.file-type-icon.small.xls {
    background-position: -68px -65px;
}

.file-type-icon.small.ppt {
    background-position: -132px -65px;
}

.file-type-icon.small.pdf {
    background-position: -548px -65px;
}

.file-type-icon.small.txt {
    background-position: -709px -65px;
}

.file-type-icon.small.xml {
    background-position: -421px -65px;
}

.file-type-icon.small.json {
    background-position: -421px -65px;
}

.file-type-icon.small.html {
    background-position: -324px -65px;
}

.file-type-icon.small.css {
    background-position: -388px -65px;
}

.file-type-icon.small.js {
    background-position: -356px -65px;
}

.file-type-icon.small.jpg {
    background-position: -36px -97px;
}

.file-type-icon.small.png {
    background-position: -100px -97px;
}

.file-type-icon.small.gif {
    background-position: -68px -97px;
}

.file-type-icon.small.bmp {
    background-position: -132px -97px;
}

.file-type-icon.small.ico {
    background-position: -260px -97px;
}

.file-type-icon.small.svg {
    background-position: -421px -65px;
}

.file-type-icon.small.webp {
    background-position: -421px -65px;
}

.file-type-icon.small.eot {
    background-position: -516px -65px;
}

.file-type-icon.small.otf {
    background-position: -516px -65px;
}

.file-type-icon.small.ttf {
    background-position: -516px -65px;
}

.file-type-icon.small.woff {
    background-position: -516px -65px;
}

.file-type-icon.small.zip {
    background-position: -229px -65px;
}

.file-type-icon.small.rar {
    background-position: -197px -65px;
}

.file-type-icon.small.gzip {
    background-position: -420px -65px;
}

.file-type-icon.small.tar {
    background-position: -420px -65px;
}

.file-type-icon.small.zip7 {
    background-position: -165px -65px;
}

.file-type-icon.big.doc {
    background-position: -186px -145px;
}

.file-type-icon.big.xls {
    background-position: -111px -145px;
}

.file-type-icon.big.ppt {
    background-position: -261px -145px;
}

.file-type-icon.big.pdf {
    background-position: -336px -220px;
}

.file-type-icon.big.txt {
    background-position: -715px -220px;
}

.file-type-icon.big.xml {
    background-position: -40px -220px;
}

.file-type-icon.big.json {
    background-position: -40px -220px;
}

.file-type-icon.big.html {
    background-position: -711px -145px;
}

.file-type-icon.big.css {
    background-position: -861px -145px;
}

.file-type-icon.big.js {
    background-position: -786px -145px;
}

.file-type-icon.big.jpg {
    background-position: -411px -295px;
}

.file-type-icon.big.png {
    background-position: -561px -295px;
}

.file-type-icon.big.gif {
    background-position: -486px -295px;
}

.file-type-icon.big.bmp {
    background-position: -636px -295px;
}

.file-type-icon.big.ico {
    background-position: -36px -370px;
}

.file-type-icon.big.svg {
    background-position: -40px -220px;
}

.file-type-icon.big.webp {
    background-position: -40px -220px;
}

.file-type-icon.big.eot {
    background-position: -261px -220px;
}

.file-type-icon.big.otf {
    background-position: -261px -220px;
}

.file-type-icon.big.ttf {
    background-position: -261px -220px;
}

.file-type-icon.big.woff {
    background-position: -261px -220px;
}

.file-type-icon.big.zip {
    background-position: -489px -145px;
}

.file-type-icon.big.rar {
    background-position: -415px -145px;
}

.file-type-icon.big.gzip {
    background-position: -40px -220px;
}

.file-type-icon.big.tar {
    background-position: -40px -220px;
}

.file-type-icon.big.zip7 {
    background-position: -338px -145px;
}