@charset "UTF-8";

/*
按钮注释：整体页面级别为一级按钮（背景加色，字体白色）   部分模块级别按钮为二级按钮（背景白色，字体加色）
背景注释：按钮置灰做成原色的30%透明度
*/
/*
主色
*/
/************************************************************************************
字体
************************************************************************************/
/*导航*/
/*表格*/
/*按钮*/
/*其他*/
/************************************************************************************
背景
************************************************************************************/
/*导航*/
/*表格*/
/*按钮*/
/*其他*/
/************************************************************************************
边框
************************************************************************************/
/*按钮*/
/* =============== 重新定义Html元素 =============== */
html,
body,
div,
ol,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
fieldset,
input {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
pre,
code,
address,
caption,
cite,
code,
em,
strong,
table,
th,
td {
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
}

strong {
    font-weight: bold;
}

ul,
ol {
    list-style: none outside none;
}

fieldset,
img {
    border: medium none;
    vertical-align: middle;
}

caption,
th {
    text-align: center;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font: 12px/20px "Microsoft Yahei", arial, 宋体, "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
    color: #666;
    background: #f0f0f0 none repeat scroll 0 0;
    min-width: 1200px;
}

input,
select,
textarea,
button {
    font: 12px/20px "Microsoft Yahei", Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
}

i,
cite,
em {
    font-style: normal;
}

input,
button,
select,
textarea {
    outline: none;
    border-style: none;
}

button,
input[type="button"] {
    cursor: pointer;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #666;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #666;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #666;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #666;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input[type="text"]:focus,
input[type="password"]:focus,
input.text:focus,
input.password:focus,
textarea:focus {
    color: #666;
    box-shadow: 0 0 0 2px rgba(0, 161, 255, 0.15);
    outline: 0 none;
}

html {
    /*min-height:101%;*/
}

/* 链接 */
a {
    color: #666;
    text-decoration: none;
    outline: medium none;
    -webkit-transition-property: color;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
}

a:link,
a:visited,
a:active {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* 超出隐藏（需要再设置宽高） */
.over_hidden {
    display: block;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scroll {
    overflow-x: scroll;
    max-width: 100%;
    position: relative;
}

/* Clearfix,避免因子元素浮动而导致的父元素高度缺失能问题 */
.clearfix {
    *zoom: 1;
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table;
}

.clearfix:after {
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table;
}

.clearfix:after {
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

*+html .clearfix {
    height: 1%;
}

/* ========================== 为旧版本浏览器格式化Html5元素 ========================== */
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
    display: block;
}

/*文字排版
******************************/
.f12 {
    font-size: 12px !important;
}

.f13 {
    font-size: 13px !important;
}

.f14 {
    font-size: 14px !important;
}

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.f20 {
    font-size: 20px !important;
}

.f24 {
    font-size: 24px !important;
}

.fb {
    font-weight: bold !important;
}

.fn {
    font-weight: normal !important;
}

.t2 {
    text-indent: 2em;
}

.lh150 {
    line-height: 150% !important;
}

.lh180 {
    line-height: 180% !important;
}

.lh200 {
    line-height: 200% !important;
}

.unl {
    text-decoration: underline;
}

.no_unl {
    text-decoration: none;
}

.noborder {
    border-style: none !important;
    border-width: 0 !important;
}

/* 元素性质转换 */
.to-b {
    display: block !important;
}

.to-ib {
    display: inline-block !important;
}

/*定位
******************************/
.tl {
    text-align: left !important;
}

.tc {
    text-align: center !important;
}

.tr {
    text-align: right !important;
}

.bc {
    margin-right: auto;
    margin-left: auto;
}

.fl {
    float: left;
    display: inline;
}

.fr {
    float: right !important;
    display: inline;
}

.cb {
    clear: both;
}

.cl {
    clear: left;
}

.cr {
    clear: right;
}

.vm {
    vertical-align: middle;
}

.vt {
    vertical-align: top;
}

.pr {
    position: relative !important;
}

.pa {
    position: absolute !important;
}

.abs-right {
    position: absolute;
    right: 0;
}

.zoom {
    zoom: 1;
}

/*.hidden { visibility:hidden;}*/
.none {
    display: none;
}

.clear {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
}

/*长度高度
******************************/
.w10 {
    width: 10px;
}

.w20 {
    width: 20px;
}

.w30 {
    width: 30px;
}

.w40 {
    width: 40px !important;
}

.w50 {
    width: 50px !important;
}

.w60 {
    width: 60px !important;
}

.w65 {
    width: 65px !important;
}

.w70 {
    width: 70px !important;
}

.w80 {
    width: 80px !important;
}

.w90 {
    width: 90px !important;
}

.w100 {
    width: 100px !important;
}

.w110 {
    width: 110px !important;
}

.w120 {
    width: 120px !important;
}

.w130 {
    width: 130px !important;
}

.w140 {
    width: 180px !important;
}

.w150 {
    width: 150px !important;
}

.w160 {
    width: 160px !important;
}

.w170 {
    width: 180px !important;
}

.w180 {
    width: 180px !important;
}

.w190 {
    width: 180px !important;
}

.w200 {
    width: 200px !important;
}

.w210 {
    width: 210px !important;
}

.w220 {
    width: 220px !important;
}

.w230 {
    width: 230px !important;
}

.w240 {
    width: 240px !important;
}

.w250 {
    width: 250px !important;
}

.w270 {
    width: 270px !important;
}

.w300 {
    width: 300px !important;
}

.w340 {
    width: 340px !important;
}

.w380 {
    width: 380px !important;
}

.w400 {
    width: 400px !important;
}

.w450 {
    width: 450px !important;
}

.w500 {
    width: 500px !important;
}

.w530 {
    width: 530px !important;
}

.w600 {
    width: 600px !important;
}

.w700 {
    width: 700px !important;
}

.w780 {
    width: 780px !important;
}

.w800 {
    width: 800px !important;
}

.w {
    width: 100% !important;
}

.h12 {
    height: 12px !important;
}

.h24 {
    height: 24px !important;
}

.h36 {
    height: 36px !important;
}

.h38 {
    height: 38px !important;
}

.h50 {
    height: 50px !important;
}

.h80 {
    height: 80px !important;
}

.h100 {
    height: 100px !important;
}

.h200 {
    height: 200px !important;
}

.h500 {
    height: 500px !important;
}

.h {
    height: 100% !important;
}

.hauto {
    height: auto !important;
}

/*边距
******************************/
.m0 {
    margin: 0 !important;
}

.m10 {
    margin: 10px !important;
}

.m20 {
    margin: 20px !important;
}

.m30 {
    margin: 30px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.mb150 {
    margin-bottom: 150px !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.ml50 {
    margin-left: 50px !important;
}

.ml100 {
    margin-left: 100px !important;
}

.ml200 {
    margin-left: 200px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr40 {
    margin-right: 40px !important;
}

.mr50 {
    margin-right: 50px !important;
}

.mr100 {
    margin-right: 100px !important;
}

/*边距
******************************/
.p10 {
    padding: 10px !important;
}

.p15 {
    padding: 15px !important;
}

.p30 {
    padding: 30px !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.pt100 {
    padding-top: 100px !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pb100 {
    padding-bottom: 100px !important;
}

.pl0 {
    padding-left: 0 !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pl10 {
    padding-left: 10px !important;
}

.pl15 {
    padding-left: 15px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.pl30 {
    padding-left: 30px !important;
}

.pl40 {
    padding-left: 40px !important;
}

.pl50 {
    padding-left: 50px !important;
}

.pl100 {
    padding-left: 100px !important;
}

.pr5 {
    padding-right: 5px !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pr15 {
    padding-right: 15px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pr30 {
    padding-right: 30px !important;
}

.pr40 {
    padding-right: 40px !important;
}

.pr50 {
    padding-right: 50px !important;
}

.pr80 {
    padding-right: 80px !important;
}

.pr100 {
    padding-right: 100px !important;
}

.hr {
    font-size: 1px;
    display: block;
    height: 0;
    margin: 12px 0;
    border-top: 1px solid #E3E3E3;
    overflow: hidden;
}

.hr-double {
    height: 1px;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
}

.hr8 {
    margin: 8px 0 !important;
}

.hr12 {
    margin: 12px 0 !important;
}

.hr16 {
    margin: 16px 0 !important;
}

.hr18 {
    margin: 18px 0 !important;
}

.hr24 {
    margin: 24px 0 !important;
}

.hr32 {
    margin: 32px 0 !important;
}

.hr.dotted {
    border-top-style: dotted;
}

.hr-double.dotted {
    border-bottom-style: dotted;
}

/* =============== 组件定义Html元素 =============== */
body {
    font-size: 12px;
    font-family: "Microsoft Yahei";
    color: #666;
}

/*一、字体/背景/边框*/
.fc_main {
    color: #6390f3;
}

.fc_ff {
    color: #fff;
}

.fc_ffe {
    color: #ffe19f;
}

.fc_33 {
    color: #333;
}

.fc_66 {
    color: #666;
}

.fc_98b {
    color: #98b6fe;
}

.fc_48 {
    color: #484848;
}

.fc_fa5 {
    color: #fa5b6d;
}

.fc_ff8 {
    color: #ff8593;
}

.fc_99 {
    color: #999;
}

.bg_main {
    background-color: #6390f3;
}

.bg_ff {
    background-color: #fff;
}

.bg_f2 {
    background-color: #f2f2f2;
}

.bg_f8f {
    background-color: #f8faff;
}

.bg_ea {
    background-color: #eaeaea;
}

.bg_98b {
    background-color: #98b6fe;
}

.bg_ff7 {
    background-color: #ff7f5b;
}

.bg_ffa {
    background-color: #ffaf98;
}

.bg_f8 {
    background-color: #f8f8f8;
}

.bg_f4 {
    background-color: #f4f4f4;
}

.bg_fc6 {
    background-color: #fc6892;
}

.bg_f0 {
    background-color: #f0f0f0;
}

.bg_dd {
    background-color: #ddd;
}

.bd_main {
    border: 1px solid #6390f3;
}

.bd_dee {
    border: 1px solid #dee3e6;
}

.bd_ee {
    border: 1px solid #eee;
}

.bd_98b {
    border: 1px solid #98b6fe;
}

.bd_fa5 {
    border: 1px solid #fa5b6d;
}

.bd_ff8 {
    border: 1px solid #ff8593;
}

/*二、表格*/
.table-list {
    width: 100%;
    border: 1px solid #dee3e6;
    font-size: 12px;
}

.table-list-currentrow-theader {
    height: 40px;
    color: #484848;
    background-color: #f2f2f2;
    border: 1px solid #dee3e6;
}

.table-list-currentrow-tdetail {
    height: 34px;
    color: #666;
    background-color: #fff;
    border: 1px solid #dee3e6;
}

.table-list-currentrowActive .table-list-currentrow-tdetail {
    background-color: #f8faff;
}

.noDataCon {
    width: 100%;
    height: 220px;
    border: 1px solid #dee3e6;
    box-sizing: border-box;
    text-align: center;
}

.noDataCon i {
    display: inline-block;
    width: 130px;
    height: 132px;
    margin-top: 20px;
    margin-bottom: 10px;
    background: url(../images/public-icons.png) -137px -1178px no-repeat;
}

.noDataCon p {
    width: 100%;
    text-align: center;
}

/*三、input框 ,textarea框*/
.inputBase {
    padding: 0 10px;
    font-size: 12px;
    background-color: #fff;
    color: #666;
    border: 1px solid #dee3e6;
    height: 26px;
    border-radius: 2px;
}

.inputBase:focus {
    border: 1px solid #6390f3;
}

.inputBaseBox {
    position: relative;
    background: #fff;
    border: 1px solid #dee3e6;
    width: 282px;
    padding: 1px 6px 0px 10px;
    min-height: 24px;
    max-height: 50px;
    overflow: hidden;
}

.inputBaseList {
    height: 22px;
    line-height: 22px;
    display: inline-block;
    font-size: 12px;
    color: #666;
    background-color: #fff;
    border: 1px solid #6390f3;
    float: left;
    min-width: 20px;
    border-radius: 4px;
    margin-right: 4px;
    margin-bottom: 1px;
}

.inputBaseListCon {
    padding-left: 10px;
    float: left;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inputBaseListDel {
    float: left;
    padding: 0 10px;
    color: #fa5b6d;
    cursor: pointer;
}

.inputBaseListDel:hover {
    color: #ff8593;
}

.textareaBase {
    padding: 0 10px;
    font-size: 12px;
    background-color: #fff;
    color: #666;
    border: 1px solid #dee3e6;
    border-radius: 2px;
}

.textareaBase:focus {
    border: 1px solid #6390f3;
}

/*四、btn按钮*/
.btnBaseBig {
    text-align: center;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
    background-color: #6390f3;
    padding: 0 10px;
    cursor: pointer;
}

.btnBaseBig:hover {
    color: #fff;
    background-color: #98b6fe;
}

.btnBaseCommon {
    text-align: center;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    border-radius: 2px;
    display: inline-block;
    color: #fff;
    background-color: #6390f3;
    padding: 0 10px;
    cursor: pointer;
}

.btnBaseCommon:hover {
    color: #fff;
    background-color: #98b6fe;
}

.btnBaseSave {
    text-align: center;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    border-radius: 2px;
    display: inline-block;
    color: #fff;
    background-color: #ff7f5b;
    padding: 0 10px;
    cursor: pointer;
}

.btnBaseSave:hover {
    color: #fff;
    background-color: #ffaf98;
}

.btnBaseCancel {
    text-align: center;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    border-radius: 2px;
    display: inline-block;
    color: #666;
    background-color: #f8f8f8;
    padding: 0 10px;
    cursor: pointer;
}

.btnBaseCancel:hover {
    color: #666;
    background-color: #f4f4f4;
}

.btnLowNew {
    text-align: center;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    border-radius: 2px;
    display: inline-block;
    color: #6390f3;
    background-color: #fff;
    border: 1px solid #6390f3;
    padding: 0 10px;
    cursor: pointer;
}

.btnLowNew:hover {
    color: #98b6fe;
    background-color: #fff;
    border: 1px solid #98b6fe;
}

.btnLowDel {
    text-align: center;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    border-radius: 2px;
    display: inline-block;
    color: #fa5b6d;
    background-color: #fff;
    border: 1px solid #fa5b6d;
    padding: 0 10px;
    cursor: pointer;
}

.btnLowDel:hover {
    color: #ff8593;
    background-color: #fff;
    border: 1px solid #ff8593;
}

.btnLowImgCom {
    color: #6390f3;
    background-color: #fff;
    cursor: pointer;
}

.btnLowImgCom:hover {
    color: #98b6fe;
    background-color: #fff;
}

.btnLowImgDel {
    color: #fa5b6d;
    background-color: #fff;
    cursor: pointer;
}

.btnLowImgDel:hover {
    color: #ff8593;
    background-color: #fff;
}

.btnLowImg-img {
    margin-right: 4px;
    float: left;
}

.btnLowImg-txt {
    float: left;
}

.changeGary {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

/*5.上传插件*/
/***************公用上传组件样式开始*****************/
.comUpload {
    background: #f2f2f2;
    border: 1px solid #dee3e6;
    width: 79px !important;
    height: 59px !important;
    text-align: center !important;
    cursor: pointer;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 12px !important;
    color: #333 !important;
    display: table-cell !important;
}

.comUpload img.comShowImg {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.comUpload .uploadBtn {
    width: 79px;
    height: 59px;
    position: absolute;
    left: 0;
    top: 0;
}

.comUploadAfter .imgDelete {
    width: 15px;
    height: 16px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2000000001;
}

.comUpload[uploadtype='button'] {
    line-height: 30px;
}

/***************公用上传组件样式结束*****************/
/*6.tab切换*/
.tabMenu-one {
    background: #f2f2f2;
    border: 1px solid #dee3e6;
    width: 100%;
    box-sizing: border-box;
}

.tabMenu-one:after {
    content: "";
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
    display: block;
}

.tabMenu-one li {
    height: 47px;
    float: left;
    cursor: pointer;
}

.tabMenu-one li span {
    min-width: 90px;
    padding: 0px 20px;
    box-sizing: border-box;
    color: #666;
    text-align: center;
    height: 20px;
    display: block;
    border-right: 1px solid #dee3e6;
    margin-top: 14px;
    margin-bottom: 14px;
    margin-right: -1px;
}

.tabMenu-one li.current,
.tabMenu-one li.tabTitLi {
    border-top: 2px solid #6390f3;
    color: #6390f3;
    margin: -1px 0 0 -1px;
    background-color: #fff;
    border-right: 1px solid #dee3e6;
    border-left: 1px solid #dee3e6;
}

.tabMenu-one li.current span,
.tabMenu-one li.tabTitLi span {
    margin-top: 13px;
    color: #6390f3;
}

.tabMenu-two {
    background: #fff;
    border-bottom: 2px solid #dee3e6;
    width: 100%;
    box-sizing: border-box;
}

.tabMenu-two:after {
    content: "";
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
    display: block;
}

.tabMenu-two li {
    height: 47px;
    float: left;
    cursor: pointer;
}

.tabMenu-two li span {
    min-width: 90px;
    font-size: 14px;
    padding: 0px 20px;
    box-sizing: border-box;
    color: #666;
    text-align: center;
    height: 20px;
    display: block;
    margin-top: 14px;
    margin-bottom: 14px;
    margin-right: -1px;
}

.tabMenu-two li.current,
.tabMenu-two li.tabTitLi {
    margin-bottom: -1px;
    border-bottom: 2px solid #6390f3;
}

.tabMenu-two li.current span,
.tabMenu-two li.tabTitLi span {
    margin-top: 14px;
    color: #6390f3;
}

/*tabMenu-two-sm*/
.tabMenu-two-sm {
    background: #fff;
    border-bottom: 2px solid #dee3e6;
    width: 100%;
    box-sizing: border-box;
}

.tabMenu-two-sm:after {
    content: "";
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
    display: block;
}

.tabMenu-two-sm li {
    float: left;
    cursor: pointer;
}

.tabMenu-two-sm li span {
    min-width: 90px;
    padding: 0px 20px;
    box-sizing: border-box;
    color: #666;
    text-align: center;
    height: 20px;
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: -1px;
}

.tabMenu-two-sm li.current,
.tabMenu-two-sm li.tabTitLi {
    margin-bottom: -1px;
    border-bottom: 2px solid #6390f3;
}

.tabMenu-two-sm li.current span,
.tabMenu-two-sm li.tabTitLi span {
    margin-top: 6px;
    color: #6390f3;
}

.tabMenu-three {
    background: #f2f2f2;
    border: 1px solid #dee3e6;
    width: 100%;
    font-size: 14px;
    height: 50px;
    box-sizing: border-box;
}

.tabMenu-three:after {
    content: "";
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
    display: block;
}

.tabMenu-three li {
    height: 47px;
    float: left;
    cursor: pointer;
}

.tabMenu-three li span {
    min-width: 90px;
    padding: 0px 20px;
    box-sizing: border-box;
    color: #666;
    text-align: center;
    height: 20px;
    display: block;
    border-right: 1px solid #dee3e6;
    margin-top: 14px;
    margin-bottom: 14px;
    margin-right: -1px;
}

.tabMenu-three li.current,
.tabMenu-three li.tabTitLi {
    border-top: 2px solid #6390f3;
    color: #6390f3;
    margin-top: -1px;
    margin-left: -1px;
    background-color: #fff;
    border-right: 1px solid #dee3e6;
    border-left: 1px solid #dee3e6;
    height: 48px;
}

.tabMenu-three li.current span,
.tabMenu-three li.tabTitLi span {
    margin-top: 13px;
    color: #6390f3;
    font-weight: bold;
}

.tabMenu-four {
    background: #f2f2f2;
    border: 1px solid #dee3e6;
    width: 100%;
    font-size: 14px;
    height: 40px;
    box-sizing: border-box;
}

.tabMenu-four:after {
    content: "";
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
    display: block;
}

.tabMenu-four li {
    height: 37px;
    float: left;
    cursor: pointer;
}

.tabMenu-four li span {
    min-width: 90px;
    padding: 0px 20px;
    box-sizing: border-box;
    color: #666;
    text-align: center;
    height: 20px;
    display: block;
    border-right: 1px solid #dee3e6;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: -1px;
}

.tabMenu-four li.current,
.tabMenu-four li.tabTitLi {
    border-top: 2px solid #6390f3;
    color: #6390f3;
    margin: -1px 0 0 -1px;
    background-color: #fff;
    border-right: 1px solid #dee3e6;
    border-left: 1px solid #dee3e6;
    height: 38px;
}

.tabMenu-four li.current span,
.tabMenu-four li.tabTitLi span {
    margin-top: 9px;
    color: #6390f3;
}

.tabCon {
    width: 100%;
    border: 1px solid #dee3e6;
    padding: 10px;
    min-height: 170px;
    margin-top: -1px;
    box-sizing: border-box;
}

.tabMenu-five {
    background: #f2f2f2;
    border: 1px solid #dee3e6;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
}

.tabMenu-five:after {
    content: "";
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
    display: block;
}

.tabMenu-five li {
    height: 47px;
    float: left;
    cursor: pointer;
}

.tabMenu-five li span {
    min-width: 105px;
    padding: 0px 20px;
    box-sizing: border-box;
    color: #666;
    text-align: center;
    height: 20px;
    display: block;
    border-right: 1px solid #dee3e6;
    margin-top: 14px;
    margin-bottom: 14px;
    position: relative;
}

.tabMenu-five li i.x-icon {
    vertical-align: top;
    position: absolute;
    right: 10px;
    top: 3px;
}

.tabMenu-five li.current,
.tabMenu-five li.tabTitLi {
    border-top: 2px solid #6390f3;
    color: #6390f3;
    margin: -1px 0 0 -1px;
    background-color: #fff;
    border-right: 1px solid #dee3e6;
    border-left: 1px solid #dee3e6;
}

.tabMenu-five li.current span,
.tabMenu-five li.tabTitLi span {
    margin-top: 13px;
    color: #6390f3;
    margin-right: -1px;
}

/*7.进度条*/
.progressBar_li {
    float: left;
    text-align: center;
    position: relative;
    z-index: 10;
}

.progressBar_li:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #ccc;
    top: 15px;
    left: 0;
    z-index: 9;
}

[comtype="stdProgressBar"][templateidx="1"] .progressBar_li:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    top: 50%;
    z-index: 9;
}

.progressBar_li_first.progressBar_li:after {
    width: 50%;
    right: 0 !important;
    left: auto;
}

.progressBar_li_last.progressBar_li:after {
    width: 50%;
    left: 0;
    right: auto;
}

.progressBar_li_cur.progressBar_li:after {
    background-color: #6390f3;
}

.progressBar_circle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    color: #ccc;
    font-weight: bold;
    background: url("../images/progressGreyCir.png");
    position: relative;
    z-index: 10;
}

.progressBar_li_cur .progressBar_circle {
    color: #fff;
    background: url("../images/progressCir_blue.png");
}

.progressName {
    color: #ccc;
    font-weight: bolder;
    font-size: 14px;
    margin-top: 8px;
    height: 22px;
}

.progressBar_li_cur .progressName {
    color: #6390f3;
    height: 22px;
}

.progressBar_li_data {
    height: 30px;
    line-height: 30px;
}

/********查询条件*********/
.mod-search {
    margin-left: 20px;
    width: 950px;
}

.mod-search_input {
    width: 171px;
    height: 28px;
    line-height: 28px;
}

.mod-search_Every {
    margin: 12px 12px 4px 39px;
    float: left;
    width: 265px;
    height: 28px;
    line-height: 28px;
}

.mod-search_Name {
    float: left;
    display: inline-block;
    width: 60px;
    height: 28px;
    text-align: left;
    padding-left: 6px;
    margin-right: 6px;
}

.mod-search_type {
    width: 193px;
    border: 1px solid #dee3e6 !important;
}

/********页面标题*********/
.mod-title {
    width: 990px;
    height: 45px;
    line-height: 45px;
}

.mod-title-sign {
    float: left;
    display: inline-block;
    width: 5px;
    height: 16px;
    line-height: 16px;
    background: #6390f3;
    margin: 14px 8px 0 10px;
}

.mod-title-tit {
    float: left;
    font-size: 14px;
    font-weight: 600;
    font-family: "SFProText";
}

/********表单操作按钮*********/
.mod-table-button {
    text-align: right;
    margin: 10px 0;
}

.mod-table-button .btnBaseCommon {
    width: 70px;
}

/*****步骤通用***/
#js-mod-step {
    height: 60px;
    line-height: 30px;
    width: 650px;
    margin: 0 auto;
}

#js-mod-step ul li {
    width: 48px;
    text-align: center;
    float: left;
    height: 35px;
    margin-right: 95px;
    position: relative;
    padding-top: 10px;
}

#js-mod-step ul li .imgss {
    width: 30px;
    height: 30px !important;
}

#js-mod-step ul li .arrow {
    position: absolute;
    right: -54px;
    top: 25px;
    width: 30px;
    height: 30px;
}

.og-head-topleft li:nth-child(2) {
    color: #ff0000;
}