/** 全局样式表。所有页面公用的样式都将在这里进行定义*/

/** body默认样式 */
body {
    font: 13px/150% tahoma, arial, Microsoft YaHei, Hiragino Sans GB, "\u5b8b\u4f53", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #333;
    background: #f5f5f5;
}

/* th {
	font-size: 15px;
} */

/* ----------------- 一链接，列表，输入框等默认样式设置 ----------------- */
/*超链默认样式 */
a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*鼠标经过超链时样式 */
a:hover {
    color: #e23f24!important;
}

ol, ul, li {
    list-style: none;
}

a, address, b, big, blockquote, body, center, cite, code, dd, del, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, label, legend, li, ol, p, pre, small, span, strong, u, ul, var {
    margin: 0;
    padding: 0;
}

input[type=text], input[type=password], input[type=number]{
    display: block;
    height: 32px;
    line-height: 1.42857143;
    color: #333;
    border: 1px solid rgb(204, 204, 204);
    padding: 5px 10px;
    border-radius: 4px;
}

input[type=text]:focus, input[type=password]:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

input::placeholder,textarea::placeholder, input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
    color: #999;
}

*:focus { outline: none; }

/* -----------------webkit浏览器修改滚动条样式----------------- */
::-webkit-scrollbar{
    width:6px;
    height:6px;
    /**/
}

::-webkit-scrollbar-track{
    background: rgb(239, 239, 239);
    border-radius:2px;
}

::-webkit-scrollbar-thumb{
    background: #bfbfbf;
    border-radius:6px;
}

::-webkit-scrollbar-thumb:hover{
    background: #666;
}

::-webkit-scrollbar-corner{
    background: #179a16;
}


/* ------------------------ 表格样式 *--------------------------- */

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    background-color: #fff;
    border-spacing: 0;
    border-collapse: collapse;
}

th {
text-align: left;
}

.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th {
    border-top: 0;
}
.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table-bordered{
    border: solid 1px #ddd;
}

.td-bordered>tbody>tr>td, .td-bordered>tbody>tr>th, .td-bordered>tfoot>tr>td, .td-bordered>tfoot>tr>th, .td-bordered>thead>tr>td, .td-bordered>thead>tr>th {
    border: 1px solid #ddd;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5;
}

.table-condensed>tbody>tr>td, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>td, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>thead>tr>th {
    padding: 5px;
}

.table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active {
    background-color: #f5f5f5;
}

.table>tbody>tr.success>td, .table>tbody>tr.success>th, .table>tbody>tr>td.success, .table>tbody>tr>th.success, .table>tfoot>tr.success>td, .table>tfoot>tr.success>th, .table>tfoot>tr>td.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>thead>tr.success>th, .table>thead>tr>td.success, .table>thead>tr>th.success {
    background-color: #dff0d8;
}

.td-vertical-align>tbody>tr>td, .td-vertical-align>tbody>tr>th, .td-vertical-align>tfoot>tr>td, .td-vertical-align>tfoot>tr>th, .td-vertical-align>thead>tr>td, .td-vertical-align>thead>tr>th {
    vertical-align: middle;
}

.table-fixed-layout {
    table-layout: fixed;
}


/* ----------------------- 导航页签样式 -------------------------- */

/* tab选取样式 */
.tabs {

}

.tabs ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.tabs li {
    margin: 0 15px;
    cursor: pointer;
}

.tabs li.start {
    margin-left: 0;
}

.tabs li.end {
    margin-right: 0;
}

.tabs li b {
    margin: 0 30px;
    color: #e5e5e5;
}

/*.tabs li a {
    padding: 2px 0;
}*/

.tabs li em {
    position: relative;
    display: inline-block;
    height: 15px;
    line-height: 15px;
    font-family: arial;
    top: -5px;
    padding: 0 4px;
    background: #e4393c;
    border-radius: 15px;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    margin: 0 0 0 2px;
}

/*.tabs li a.curr{
    color: #e23f24;
    border-bottom: 2px solid #e23f24;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}*/

.current {
    font-size: 15px;
    color: #e23f24;
    padding-bottom: 5px;
    border-bottom: 2px solid #e23f24;
    cursor: pointer;
    text-decoration: none;
}

/* -------------------------- 下拉框样式 -------------------------- */

.select{
    position: relative;
}

.select-txt {
    position: relative;
    width: 100px;
    height: 32px;
    line-height: 1.42857143;
    text-align: left;
    padding: 5px 10px;
    border: 1px solid rgb(204, 204, 204);
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
}

.select-txt b {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 6px;
    right: 5px;
    overflow: hidden;
    background: url(../img/down.png) no-repeat;
}

.select-list {
    position: absolute;
    /*left: 0;*/
    top: 32px;
    z-index: 2;
    display: none;
    width: 100px;
    max-height: 250px;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-top: 0;

    background: #fff;
    overflow: auto;
    border-radius: 4px;
}

.select-list li {
    height: 32px;
    line-height: 32px;
    text-align: left;
    overflow: hidden;
}

.select-list li:hover{
    background: #f5f5f5;
}

.select-list li a {
    display: block;
    position: relative;
    color: #666;
    height: 26px;
    padding: 0 10px;
}


.select-list li span {
    display: block;
    position: relative;
    color: #666;
    height: 26px;
    padding: 0 10px;
}

/* ---------------------------- 搜索框样式-------------------------- */
.search {

}

.search-txt {
    float: left;
}

.search-btn {
    position: relative;
    float: left;
    width: 52px;
    height: 32px;
    line-height: 99em;
    overflow: hidden;
    border: 1px solid rgb(204, 204, 204);
    border-left: 0;
    text-align: center;
    background-color: #f7f7f7;
    background-image: linear-gradient(to bottom, #f7f7f7 0, #f3f2f2 100%);
}

.search-btn b {
    position: absolute;
    left: 17px;
    top: 7px;
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 16px;
    overflow: hidden;
    background: url(../img/search.png) no-repeat;
}

/* -------------------- 警告样式 -----------------------------*/
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-condensed{
    padding: 4px 15px;
    margin-bottom: 0;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-error {
    color: #e23f24;
    background-color: #f9cce2;
    border-color: #ebccd1;
}

/** ---------------------------- 常用按钮--------------------------- */
.btns{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}

.btn{
    display: inline-block;
    padding: 6px 30px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none;
}

.btn.active, .btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
    box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn-default{
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default.active, .btn-default:active {
    background-image: none;
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default.focus, .btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}

.btn-primary{
    color: #fff;
    background-color: #e23f24;
    border-color: #e23f24;
}

.btn-primary:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.btn-primary.active, .btn-primary:active {
    background-image: none;
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

/* 暖色按钮*/
.btn-warm{
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warm:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}

.btn-warm.focus, .btn-warm:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
}

.btn-warm.active, .btn-warm:active {
    background-image: none;
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn.disabled, .btn[disabled] {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.btn-default.disabled.focus, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled].focus, .btn-default[disabled]:focus, .btn-default[disabled]:hover {
    background-color: #fff;
    border-color: #ccc;
}

/* 停用按钮*/
.btn-disabled{
    height: 30px;
    line-height: 30px;
    margin: 0 15px;
    padding: 0 30px;
    font-family: "Microsoft YaHei";
    font-size: 13px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #d2d2d2;
    border: solid 1px #eee;
    background-color: #FBFBFB;
}

.btn-short{
    height: 30px;
    line-height: 30px;
    margin: 0 15px;
    padding: 0 15px;
    font-family: "Microsoft YaHei";
    font-size: 13px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #666;
    border: solid 1px #d2d2d2;
}

.btn-radius{
    border-radius: 15px;
}

/* --------------------------徽标样式-----------------------------*/
.badge{
    position: relative;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.badge-num{
    position: absolute;
    right: -5px;
    top: -5px;
    padding: 0 6px;
    height: 19px;
    line-height: 19px;
    border-radius: 10px;
    background-color: #e23f24;
    font-size: 14px;
    color: #fff;
}

.badge-dot{
    width: 12px;
    height: 12px;
    position: absolute;
    transform: translateX(-50%);
    transform-origin: 0 center;
    top: -4px;
    right: -8px;
    border-radius: 100%;
    z-index: 10;
    background-color: #e23f24;
}

.badge1{
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}

.badge1-red{
    background-color: #e23f24;
}
/*--------------------------- 表单样式--------------------------*/
.form{
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
}

.form>.field{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.form>.field label{
    width: 100px;
    text-align: right;
    color: #666;
}

.form>.required {
    width: 100px;
    color: #e23f24;
    text-align: right;
}

.form>.required label{
    margin-left: 2px;
}

.form>.field>.value{
    flex: 1;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 8px;
}

.form>.field>.value label{
    width: auto;
    color: #666;
    text-align: left;
    margin-left: 5px;
}

.form>.field>.value img{
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.form>.field>.txt-value{
    line-height: 32px;
    color: #333
}

.form>.field>.value>.desc{

}

.required:before{
    content: "*";
    color: #e23f24;
}


/* -----------------------flex布局支持------------------------*/
.flex-row{
    display: flex;
    flex-flow: row;
}

.flex-col{
    display: flex;
    flex-flow: column;
}

.jc-start{
    justify-content: flex-start;
}

.jc-end{
    justify-content: end;
}

.jc-evenly{
    justify-content: space-evenly;
}

.jc-between{
    justify-content: space-between;
}

.jc-around{
    justify-content: space-around;
}

.jc-initial{
    justify-content: initial;
}

.ai-start{
    align-items: flex-start;
}

.ai-end{
    align-items: flex-end;
}

.ai-stretch{
    align-items: stretch;
}

.ai-center{
    align-items: center;
}

.ai-baseline{
    align-items: baseline;
}

.ai-initial{
    align-items: initial;
}

/* ------------------------------ 面板样式 -------------------------------- */
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-body {
    padding: 15px;
}

.panel-default {
    border-color: #ddd;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-primary {
    border-color: #337ab7;
}

.panel-success {
    border-color: #d6e9c6;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-warning {
    border-color: #faebcc;
}

.panel-danger {
    border-color: #ebccd1;
}

/*------------------------------- 下拉菜单--------------------------- */
.dropdown {
    position: relative;
}

.dropdown-btn{
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 13px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.dropdown-menu>li>a {
    display: block;
    padding: 5px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu>li>a:hover{
    color: #333!important;
    text-decoration: none;
}

.dropdown-menu>li:hover{
    background: #f5f5f5;
}

/* -----------------下面是一些简单的样式定义-------------------- */

/* 内容区div样式 */
.content {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    margin-bottom: 10px;
}

/* 对话框div样式 */
.dialog {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
}

/*单行文本省略**/
.ellip {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*两行文本并省略*/
.line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*三行文本并省略*/
.line3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 蓝色链接 */
.blue-link{
    font-size: 12px;
    color: #4184e8!important;
}

/* 清除背景 */
.empty-bg{
    background-color: transparent;
}

/* 向父组件右对齐 */
.pull-right {
    right: 0;
    left: auto;
}

/** 下箭头 */
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* 水平分割条 */
.hori-divider{
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}


/* 向左流动 */
.fl {
    float: left;
}

/* 向右流动 */
.fr {
    float: right;
}

/* 清除浮动 */
.clearfix{
    display: block;
}

.clearfix:after{
    content: '\20';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

/* 文本左对齐 */
.ta-left {
    text-align: left!important;
}

/* 文本居中对齐 */
.ta-center {
    text-align: center!important;;
}

/* 文本右对齐 */
.ta-right {
    text-align: right!important;;
}

/* 红色文本 */
.red-txt{
    color: #e23f24!important;
}

/* 橙色色文本 */
.orange-txt{
    color: #e28124!important;
}

/* input无效样式 */
.input-disabled{
    color: #888!important;
    cursor: default;
    background-color: #f5f5f5;
}

/* 内容页标题区样式 */
.g-title-box {
    height: 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 10px;
}

/* 内容区div样式 */
.g-content {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    /* margin-bottom: 10px; */
}

.g-tabs-box ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.g-tabs-box li {
    margin-right: 30px;
    cursor: pointer;
}

.g-tabs-box li.start {
    margin-left: 0;
}

.g-tabs-box li.end {
    margin-right: 0;
}

.g-tabs-box li b {
    margin: 0 30px;
    color: #e5e5e5;
}

/*.g-tabs-box li a {
    padding: 2px 0;
}*/

.g-tabs-box li em {
    position: relative;
    display: inline-block;
    height: 15px;
    line-height: 15px;
    font-family: arial;
    top: -5px;
    padding: 0 4px;
    background: #e4393c;
    border-radius: 15px;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    margin: 0 0 0 2px;
}
.g-search-txt {
    float: left;
    width: 180px;
    height: 28px;
    line-height: 24px;
    padding: 2px 5px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #666;
}

.g-search-btn {
    position: relative;
    float: left;
    width: 52px;
    height: 32px;
    line-height: 99em;
    overflow: hidden;
    border: 1px solid #ddd;
    border-left: 0;
    text-align: center;
    background-color: #f7f7f7;
    background-image: linear-gradient(to bottom, #f7f7f7 0, #f3f2f2 100%);
}

.g-search-btn b {
    position: absolute;
    left: 17px;
    top: 8px;
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 16px;
    overflow: hidden;
    background: url(../img/search.png) no-repeat;
}

.g-current {
    font-size: 15px;
    color: #e23f24;
    padding-bottom: 5px;
    border-bottom: 2px solid #e23f24;
    cursor: pointer;
    text-decoration: none;
}

.tabs {
    list-style: none;
    display: flex;
    margin: 5px 0;
    padding: 0;
}

.tabs li:first-child {
    margin-left: 0;
}

.tabs .current {
    font-size: 15px;
    color: #e23f24;
    padding-bottom: 5px;
    border-bottom: 2px solid #e23f24;
    cursor: pointer;
    text-decoration: none;
}

.tabs .current a {
    color: #e23f24;
}

.select-txt-focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.select-list li {
    height: 32px;
    line-height: 32px;
    text-align: left;
    overflow: hidden;
    padding: 0 10px;
}

.list {
    width: 100px;
    background: #fff;
    border: 1px solid #d5d5d5;
    background: #fff;
    overflow: auto;
    max-height: 250px;
}

.list li {
    height: 36px;
    line-height: 36px;
    text-align: left;
    overflow: hidden;
    padding: 0 10px;
    border-bottom: 1px solid #d5d5d5;
}

.list li.selected {
    color: #fff;
    background-color: #e23f24;
}

.form .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.tabs-btns {
    list-style: none;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    padding: 0;
}

.tabs-btns li:first-child {
    margin-left: 0;
}

.tabs-btns .current {
    font-size: 14px;
    color: #e23f24;
    border: solid thin #e23f24;
}

.tabs-btns li {
    border: solid thin #ccc;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px 20px 5px 0;
    padding: 4px 10px;
    text-align: center;
}

.jc-end {
    justify-content: flex-end;
}

.table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active {
    background-color: #e5e5e5;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

.hide {
    display: none;
}

.table-vmiddle > tbody > tr > td, .table-vmiddle > tbody > tr > th, .table-vmiddle > tfoot > tr > td, .table-vmiddle > tfoot > tr > th, .table-vmiddle > thead > tr > td, .table-vmiddle > thead > tr > th {
    vertical-align: middle;
}

.red-txt {
    color: #e23f24 !important;
}

.jc-end {
    justify-content: flex-end;
}

.ai-end {
    align-items: flex-end;
}

.g-editable {
    width: 90%;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: #333;
    margin: 0 6px;
    border: solid 1px #c5c5c5;
}

.sqec-g-dialog {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.g-btn-warm {
    height: 30px;
    line-height: 30px;
    margin: 0 15px;
    padding: 0 30px;
    font-family: "Microsoft YaHei";
    font-size: 13px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: #e23f24;
    width: 120px;
}

.g-btn:hover{
	color: #fff!important;
    background-color: #c9302c;
}

.g-btn-yellow{
	background-color: #FFB800;
}

.g-btn-yellow:hover {
	color : #fff !important;
    background-color: #eeac00;
}

.g-btn-grey{
	background-color: #999;
}

.g-btn-grey:hover {
	color : #fff !important;
    background-color: #7c7c7c;
}

.mr10 {
    margin-right: 10px !important;
}

.tabs-btns .current a {
    color: #e23f24;
}

.tabs-btns li a {
    position: relative;
    display: block;
}
