/*分页样式*/
.pages{
	display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}
.pages > li > a, .pages > li > span {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: inherit;
    float: left;
    line-height: 1.42857;
    margin-left: -1px;
    padding: 4px 10px;
    position: relative;
    text-decoration: none;
}
.pages .footable-page.active a {
    background-color: #1ab394;
    border-color: #1ab394;
    color: white;
}

/*通用头部*/
.header-box{
    height: 45px;
    line-height: 45px;
    overflow: visible;
}
.header-contnet .header-nav{
    list-style: none;
    text-align: center;
    font-size: 13px;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    padding: 0;
}
.header-contnet .header-nav{
     border-bottom: 1px solid #e7eaec;
}
.header-contnet .header-nav a{
    flex: 1;
     border-bottom: 2px solid #fff;
     cursor: pointer;
    color: inherit;
    text-decoration:none;
    outline: none;
}
.header-contnet .header-nav .active{
  /*  color: rgb(16, 142, 233);*/
    border-color: rgb(163,166,168);
    font-weight: 800;
}
/*结束*/


/*弹窗样式*/
.cuk-modal-backdrop {
    background: #000;
    opacity: .3;
    z-index: 1050;
    
}
.cuk-modal-backdrop, .cuk-modal-container{
        position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.cuk-modal-container {
    overflow: auto;
    z-index: 1050;
    padding-left:220px;
}
/*.cuk-modal{
    position: relative; 
    margin:80px auto;
    border-radius: 2px;
    background: #fff;
}*/
/*@media screen and (max-width: 1366px) {
    .cuk-content{
        overflow:auto;
        max-height: 500px!important;
    }
    .multiple-windows-box{
        top:40px!important;

    }
    .multiple-windows-new{
        left: 450px!important;
    }
}*/
.multiple-windows-box, .cuk-modal{
    position: absolute;
    top: 90px;
    left: 37rem;
    border-radius: 2px;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,.2);

}
.cuk-modal .cuk-content , .multiple-windows-box .cuk-content{
    padding:10px 30px 30px;
}
.cuk-modal .close-icon,.multiple-windows-box .close-icon{
    width: 22px;
    height: 46px;
    float: right;
    cursor: pointer;
}
.window-top-title{
    background-color: #2f4050;
    color:#fff;
    height: 46px;
    line-height: 46px;padding: 0 10px 0 20px;
}
.com_product-content,.com-plan-add-content{
    width: 100%;
}
.work-button{
    border-radius: 2px;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    transition: all .1s ease;
    font-size: 14px;
    padding: 0 21px;
    height: 30px;
    line-height: 28px;
    border: 1px solid #1ab394;
    background-color: #1ab394;
    color: #fff;
}
.work-button.disabled-button{
    opacity: .5;
    cursor: not-allowed;
    background-color: #1ab394;
}

.work-button.remove-button{
    border: 1px solid #1ab394;
    background-color: transparent;
    color: #1ab394;
}
/*弹窗样式结束*/

/*详情弹窗样式*/
.audit-detail-box{
    overflow-y: auto;
    max-height: calc(100% - 96px);
    height: 100%;
}
.audit-detail-container{
    color: #000;
/*    overflow-y: auto;*/
    max-height: 100%;
    height: 100%;
}
.detail-container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.detail-container {
    overflow: auto;
    z-index: 1050;
    padding-left:220px;
}
.detail-modal {
    position: relative; 
    overflow: hidden;
    width: 620px;
    border-radius: 2px;
    background: #fff;
    border:1px solid #e7eaec;
    box-shadow: -10px 10px 10px #ccc;
    margin: 150px 0 0 auto;
    transform: translate3d(100%,0,0);
}
.detail-modal.show{
    transform: translate3d(0,0,0);
    transition: transform .2s cubic-bezier(0,0,.25,1) 80ms;
}
.detail-modal .detail-content{
    padding:10px 0px 30px 30px;
}
.detail-modal .close-icon{
    width: 22px;
    height: 46px;
    float: right;
    cursor: pointer;
}
.detail-content{
    height: 100%;
}
.detail-top-title{
    color:#000;
    height: 46px;
    line-height: 46px;
    padding: 0 10px 0 20px;
    border-bottom: 1px solid #a3a3a3;
}

/*详情弹窗样式结束*/


/*弹窗动画*/
.window-anim{
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:.3s;
    animation-duration:.3s
    }

    @-webkit-keyframes layer-bounceIn
    {   0%{
            opacity:0;-webkit-transform:scale(.5);transform:scale(.5)
        }
        100%{
            opacity:1;-webkit-transform:scale(1);transform:scale(1)
            }
    }
    @keyframes layer-bounceIn{
        0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}
        100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}
    }
.window-anim-open{
    -webkit-animation-name:layer-bounceIn;
    animation-name:layer-bounceIn
    }

    @-webkit-keyframes layer-zoomInDown
    {
        0%{
            opacity:0;
            -webkit-transform:scale(.1) translateY(-2000px);
            transform:scale(.1) translateY(-2000px);
            -webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out
        }
        60%{
            opacity:1;
            -webkit-transform:scale(.475) translateY(60px);
            transform:scale(.475) translateY(60px);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    }
    @keyframes layer-zoomInDown
    {
        0%{
            opacity:0;
            -webkit-transform:scale(.1) translateY(-2000px);
            -ms-transform:scale(.1) translateY(-2000px);
            transform:scale(.1) translateY(-2000px);
            -webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out
        }
        60%{
            opacity:1;
            -webkit-transform:scale(.475) translateY(60px);
            -ms-transform:scale(.475) translateY(60px);
            transform:scale(.475) translateY(60px);
            -webkit-animation-timing-function:ease-out;animation-timing-function:ease-out
            }
    }

@-webkit-keyframes layer-bounceOut
{
    100%{
        opacity:0;
        -webkit-transform:scale(.7);
        transform:scale(.7)
        }
    30%{
        -webkit-transform:scale(1.05);
        transform:scale(1.05)
    }
    0%{
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes layer-bounceOut
{
    100%{
        opacity:0;
        -webkit-transform:scale(.7);
        transform:scale(.7)
        }
    30%{
        -webkit-transform:scale(1.05);
        transform:scale(1.05)
    }
    0%{
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
.window-anim-close{
    -webkit-animation-name:layer-bounceOut;
    animation-name:layer-bounceOut;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:.2s;
    animation-duration:.2s
}
/*结束*/

/*时间线样式*/
.activity-timeline{
    position: relative;
    margin-bottom: 30px;
}
.activity-timeline.notlast:before{
    content: '';
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 21px;
    width: 0;
    height: calc(100% + 30px);
    border-left: 1px solid #dadfe6;
}
.activity-timeline:after{
    content: "";
    display: block;
    clear: both;
}
.activity-timeline .time-show{
    position: relative;
    margin-left: 30px;
    width: calc(100% - 220px);
    margin: 5px 0 0 45px;
    float: left;
}
.activity-timeline .time-show:before{
    content: "";
    position: absolute;
    top: 5px;
    left: -27px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background : #dadfe6;;
}
.activity-timeline .time-detail-show .time-activity{
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}
.activity-timeline .time-detail-show .time-remark{
     overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}
.activity-timeline .time-detail-show{
    float:left;
    margin: 5px 0 0 15px;
    width: 155px;
}
/*时间线样式结束*/


/*多选、单选样式*/
.ky-options a, .check-box{
    display: block;
    line-height: 34px;
    font-size: 14px;
    color: #535d6a;
    margin-right: 2px;
}
.ky-options .inputSty, .check-box .inputSty{
     background: url(/images/icon2.png) no-repeat;
}
.ky-options .inputSty{
    display: block;
    cursor: pointer;
    width: 13px;
    height: 13px;
    float: left;
    background-position: -27px 0px;
    margin-top: 11px;
    margin-right: 5px;
    margin-left: 20px;
}

.check-box .inputSty{
    display: block;
    cursor: pointer;
    width: 13px;
    height: 13px;
    float: left;
    background-position: -27px 0px;
    margin-top: 2px;
    margin-right: 5px;
   
}
.ky-options .inputSty.checked, .check-box .inputSty.checked{
    background-position: 0 0;
}
.ky-options .inputSty.left, .check-box .inputSty.left{
    margin-left: 0;
    margin-right: 20px;
}
.clearfix{ clear:both} 
/*多选样式结束*/

.table-td-middle > tbody > tr > td{
    vertical-align: middle;
}

/*更多搜索*/
.moreBtn i{
    background: url(/images/icon2.png) no-repeat;
}
.moreBtn {
    width: 188px;
    line-height: 28px;
    font-size: 12px;
    color: #8e99a9;
    text-align: center;
    overflow: hidden;
    margin: 10px auto;
    position: relative;
}
.bor1, .bor2 {
    position: absolute;
    display: block;
    height: 1px;
    width: 60px;
    background: #eaeaea;
    top: 15px;
}
.bor1 {
    left: 0px;
}
.bor2 {
    right: 0px;
}
.moreBtn span {
    cursor: pointer;
    display: block;
}
.moreBtn .mBg {
    display: inline-block;
    padding-left: 10px;
    padding-top: 2px;
    width: 10px;
    height: 3px;
    background-position: -145px -10px;
    vertical-align: middle;
}
.cuk-hide{
    display: none!important;
}
.hide-search.search-hide{
    height: 0px!important;
   /* visibility: hidden;*/
    overflow: hidden;
    box-sizing: border-box;
}
.hide-search{
  /*  height: 227px;*/
    overflow: hidden;
    box-sizing: border-box;
    transition: height .5s ease-in-out;
}

.moreBtn .mBg.iCur {
    background-position: -144px 0px;
}
.clear-search{
    width: 100%;
    text-align: center;
    color: rgb(16, 142, 233);
    font-size: 16px;
    cursor: pointer;
}



/*类型table的div样式*/
.like-tr.active > .like-tr-content:first-child > .like-td:first-child{
   /* border: 2px solid #2f4050;*/
   border: 2px solid rgb(163,166,168);
   border-bottom: none;
   background-color: rgba(218, 223, 230, 0.5);
}
.like-tr.active > .like-tr-content:not(:first-child) > .like-td{

   background-color: rgba(218, 223, 230, 0.5);
}
.like-tr.active > .like-tr-content:not(:first-child) > .like-td:first-child{
   border-left: 2px solid rgb(163,166,168);
}
.like-tr.active > .like-tr-content:not(:first-child) > .like-td:last-child{
   border-right: 2px solid rgb(163,166,168);
}
.like-tr.active > .like-tr-content:nth-child(2) > .like-td:not(:first-child){
    border-top: 2px solid rgb(163,166,168);
}
.like-tr.active > .like-tr-content:last-child > .like-td{
    border-bottom: 2px solid rgb(163,166,168);
}
.like-th , .like-td{
    line-height: 1.42857;
    padding: 8px;
    vertical-align: top;
    border-bottom: 1px solid #DDDDDD;
    border-top: 0;
    cursor: pointer;
 /*   font-weight: 600;*/
}
.tr-focus:hover{
    background-color: #F5F7FA;
    font-size: 14px;
    font-weight: 800;
}
.record-list-icon.active{
    transform: rotate(180deg);
}
.like-tr .child-record{
    font-size: 10px;
}


/*加载样式*/
 .loding-mask{
    position: absolute;
    z-index: 100000;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #FBFBFB;
    opacity: 0.4;
 }
 .loding-icon{
    position: absolute;
    z-index: 100001;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    opacity: 1;
    text-align: center;
 }

 /*操作按钮列表样式*/
 .manage-btn-list{
    position: absolute;
    background-color: #fff;
    z-index: 10000;
    width: 100px;
}
.manage-btn-list li{
/*  border: 1px solid #e7eaec;*/
    text-align: center;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    margin-top: 3px;
}
.manage-btn-list li:hover{
/*  border-color: none;*/
    box-shadow: 5px 8px 10px rgba(204,204,204,0.7);
    color:  #1ab394;
    transform: scale(1.05);
}
.manage-btn-list .manage-btn{
    width: 100%;
    height: 30px;
    margin-top: -5px;
}


/*多文件上传样式*/
.multiple-file-table-show{
    width: 80%;
    margin:0 auto;
}
.mul-files-upload-span{
    min-width: 10%;
    display: inline-block;
}


/*用章出图章名和附件名显示*/
.chapter-selected{
    position: relative;
    display: inline-block;
/*    background-color: rgba(26,179,148,0.9);*/
/*  background-color: rgba(255,102,0,0.8);*/
    /*background-color: rgb(52, 116, 116,0.8);*/
    background-color: rgb(247, 119, 84);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px 10px 0px;
    text-align: center;
}
.chapter-selected.file-show{
    background: rgb(92, 113, 209);
    color: #fff;
}


/*按钮通用*/
.btn-edit{
    background-color: #1ab394;
    color:#fff;
}
.btn-common{
    height: 35px;
    width: 100px;
}
.btn-blue{
    border-color: rgb(16, 142, 233);
    background-color: rgb(16, 142, 233);
    color: #fff;
}
.btn-black{
    background-color: #2F4050;
    border-color: #2F4050;
    color: #FFF;
    width: 100px;
}
.btn-del{
    border-color: #ed5565;
    background-color: #ed5565;
    color: #fff;
    width: 100px;
    
}
.btn-red{
    border-color: #ed5565;
    background-color: #ed5565;
    color: #fff;
    
}
.btn-search{
    width: 35px;
    line-height: 22px;
    height: 35px;
}
.btn-add{
    line-height: 22px;
    height: 35px;
}
.btn-shadow{
    box-shadow: 5px 5px 10px #ccc;
}
.confirm-btn{
    text-align: center;
}
.confirm-btn button{
    width: 100px;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}


.table-td-focus tbody>tr:hover{
    background-color: #F5F7FA;
    /*transform: scale(1.05);*/
    font-size: 14px;
    font-weight: 800;
}

.customer-search-content tbody{
    border-bottom: 1px solid #DDDDDD;
    cursor: pointer;
}
/*抱歉提示*/
.sorry-result{
    position: absolute;
    top: 100px;
    left: 280px;
    display: flex;
}
.sorry-result.common-list{
    top: 200px;
    left: 40%;
}


/*鼠标放上，现在操作按钮，如编辑财务*/
.common-operate-show{
    position: relative;
}
.common-operate-show .operate-btn{
    position: absolute;
    left: 0;
    top: 0.8em;
    opacity: 0;
    cursor: pointer;
    color: #fff;
}
.common-operate-show:hover .operate-btn{
    opacity: 1;
    z-index: 1000;
}
.common-operate-show:hover .operate-span{
    opacity: 0.3;
}
/*鼠标放上，现在操作按钮，如编辑财务结束*/

/*通用列表页面最小高度*/
.common-div-min-height{
    min-height: calc(100vh - 130px);
    box-sizing: border-box;
}


/*消息中心样式*/
.notice-btn:hover .fa-bell::before{
    color: #1ab394;
}
/*.notice-btn:hover .dropdown-toggle.count-info.notice-icon::after{
     display: inline-block;
}*/
/*.dropdown-toggle.count-info.notice-icon::after{
    content: '';
    display: none;
    height: 16px;
    width: 16px;
    border: 8px solid transparent;
    border-bottom-color: #ff6600;
    position: absolute;
    left: 6px;
    bottom: 10px;

}*/
.notice-btn:hover .notice-show{
    display: block;
}
.notice-show{
    position: absolute;
    right: 0;
    top: calc(100% - 10px);
    z-index: 999;
    width: 150px;
    border: medium none;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
    background-color: #fff;
    padding: 10px;
    text-align: left;
    display: none;
}
.notice-show >li{
    display: block;
}

.notice-show::before{
     content: '';
    display: inline-block;
    height: 5px;
    width: 150px;
    border-radius: 10px 10px 0px 0px;
    background-color: #ff6600;
    position: absolute;
    right: 0;
    top: -3px;
}
.notice-show .notice-contianer{
    width: 100%;
    display: flex;
        padding: 6px 7px;
    margin-bottom: .5rem;
}
.notice-contianer:hover{
    color: #ff6600;
    background-color: rgba(255,102,0,0.1);
}
.notice-content{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    cursor: pointer;
    line-height: 18px;  
    margin-bottom: 0;
}

.notice-num{
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    background-color: #ff6600;
    color: #FFFFFF;
    margin-left: 5px;
    font-size: 10px;
    font-family: Helvetica,Arial,sans-serif;
}

.notice-read{
    font-weight: 500;
    color: #1ab394;
    border: 1px solid #1ab394;
    padding: 0 5px;
    font-size: 10px;
    height: 15px;
    line-height: 13px;
    margin: auto 3px;
}
.notice-noread{
     font-weight: 500;
    color: #FF3030;
    border: 1px solid #FF3030;
    padding: 0 5px;
    font-size: 10px;
    height: 15px;
    line-height: 13px;
    margin: auto 3px;
}
.notice-item-title{
    display: inline-block;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/*弹窗新增/编辑的input框*/
.module-edit-input{
    border: none;
    outline:none;
    border-bottom: 1px solid #676a6c ;
}
.module-edit-input.onlyread{
    border-bottom: none;
}
.module-edit-input.onlyread-bg{
    background-color:#E4E4E4;
}
.base-info-span {
    min-width: 4.3rem;
    display: inline-block;
    text-align: right;
}
/*
.notice-show{
    position: absolute;
    right: 0;
    top: calc(100% - 10px);
    z-index: 999;
    width: 150px;
    border: medium none;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
    background-color: #fff;
    padding: 10px;
    text-align: left;
}
.notice-show >li{
    display: block;
}
.dropdown-toggle.count-info.notice-icon::after{
    content: '';
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 8px solid transparent;
    border-bottom-color: #18a689;
    position: absolute;
    left: 6px;
    bottom: 10px;

}
.notice-show::before{
     content: '';
    display: inline-block;
    height: 5px;
    width: 150px;
    border-radius: 10px 10px 0px 0px;
    background-color: #18a689;
    position: absolute;
    right: 0;
    top: -3px;
}
.notice-show .notice-contianer{
    width: 100%;
}
.notice-content{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    line-height: 18px;
    padding: 6px 7px;
}
.notice-content:hover{
    color: #18a689;
    background-color: rgba(24,166,137,0.1);
}*/

.data-loding{
    text-align: center;
    color: #999;
    left: 45%;
    position: absolute;
}

/**
 * 上传样式
 */
 .upload-lable{
    position: relative;
    height: 38px;
    width: 100px;
 }
 #fileup, .fileup{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 38px;
    width: 100%;
    cursor: pointer;
 }
 .upload-btn{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    box-sizing: border-box;
    cursor: pointer;
 }
 .upload-btn :hover{
    opacity: .8;
    color: #fff;
 }

 /*下拉操作按钮*/
 .invest-btn-list{
    position: absolute;
    background-color: #fff;
    z-index: 10000;
    width: 100px;
}
.invest-btn-list li{
/*  border: 1px solid #e7eaec;*/
    text-align: center;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    margin-top: 3px;
}
.invest-btn-list li:hover{
/*  border-color: none;*/
    box-shadow: 5px 8px 10px rgba(204,204,204,0.7);
    color:  #1ab394;
    transform: scale(1.05);
}
.invest-btn-list .invest-btn{
    width: 100%;
    height: 30px;
    margin-top: -5px;
}




/*搜索框样式*/
.top-search-container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
}
.top-search-input{
    flex: 0 1 auto;
}
.top-search-btn{
    flex: 0 0 auto;
}
@media screen and (max-width: 1366px){
    .top-search-container{
        flex-wrap: wrap;
    }
    .top-search-input{
        flex: 1;
    }
    .top-search-btn{
        flex: 1;
    }
}

.clear-search-btn{
    width: 100%;
    text-align: center;
    color: rgb(16, 142, 233);
    font-size: 16px;
    cursor:pointer;
}










/*---------------------通用------------------------*/
.ta-center{
    text-align: center;
}
.ta-left{
    text-align: left;
}
.ta-right{
    text-align: right;
}

.dis-flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.dis-flex.wrap{
    flex-wrap: wrap;
}
.dis-flex.nowrap{
    flex-wrap: nowrap;
}
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.fs-12{
    font-size: 12px;
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.fs-15{
    font-size: 15px;
}
.fs-16{
    font-size: 16px;
}
.fs-17{
    font-size: 17px;
}
.fs-18{
    font-size: 18px;
}
.fs-19{
    font-size: 19px;
}
.fs-20{
    font-size: 20px;
}

.hide{
    display: none!important;
}


.mt-0 {
    margin-top: 0px!important;
}
.mt-5 {
    margin-top: 5px!important;
}
.mt-10 {
    margin-top: 10px!important;
}
.mt-20 {
    margin-top: 20px!important;
}
.mt-30 {
    margin-top: 30px!important;
}
.mt-40 {
    margin-top: 40px!important;
}


.mb-0 {
    margin-bottom: 0px!important;
}
.mb-5 {
    margin-bottom: 5px!important;
}
.mb-10 {
    margin-bottom: 10px!important;
}
.mb-20 {
    margin-bottom: 20px!important;
}
.mb-30 {
    margin-bottom: 30px!important;
}
.mb-40 {
    margin-bottom: 40px!important;
}

.ml-0 {
    margin-left: 0px!important;
}
.ml-5 {
    margin-left: 5px!important;
}
.ml-10 {
    margin-left: 10px!important;
}
.ml-20 {
    margin-left: 20px!important;
}
.ml-30 {
    margin-left: 30px!important;
}
.ml-40 {
    margin-left: 40px!important;
}

.mr-0 {
    margin-right: 0px!important;
}
.mr-5 {
    margin-right: 5px!important;
}
.mr-10 {
    margin-right: 10px!important;
}
.mr-20 {
    margin-right: 20px!important;
}
.mr-30 {
    margin-right: 30px!important;
}
.mr-40 {
    margin-right: 40px!important;
}

.pd-0 {
    padding: 0px!important;
}
.pd-5 {
    padding: 5px!important;
}
.pd-10 {
    padding: 10px!important;
}
.pd-20 {
    padding: 20px!important;
}
.pd-30 {
    padding: 30px!important;
}
.pd-40 {
    padding: 40px!important;
}

.mg-0 {
    margin:0px!important;
}
.mg-5 {
    margin:5px!important;
}
.mg-10 {
    margin:10px!important;
}
.mg-20 {
    margin:20px!important;
}
.mg-30 {
    margin:30px!important;
}
.mg-40 {
    margin:40px!important;
}

.red-tips{
    color: #FF3030;
}
.tips-images{
    width: 15px;
    height: 15px;
    position: absolute;
    left: -5px;
    top: 0;
    cursor: help;
}
.tips-content{
    display: none;
    position: absolute;
    background-color: #fff;
    width: 400px;
    z-index: 1000;
    border: 1px solid #FF3030;
    left: 0;
    top: 20px;
    line-height: 35px;
    text-align: left;
    color: #000;
}
.tips-images:hover + .tips-content{
    display: block;
}

.border-common{
    border: 1px solid #e7eaec;
}
.border-bottom{
    border-bottom: 1px solid #e7eaec;
}
.border-top{
    border-top: 1px solid #e7eaec;
}
.border-left{
    border-left: 1px solid #e7eaec;
}
.border-right{
    border-right: 1px solid #e7eaec;
}


/*字体颜色*/
.color-gray{
    color: #858E99;
}
.color-more-gray{
    color: rgba(0,0,0,0.3);;
}
.color-red{
    color: #FF3030;
}

.red-record{
    color: #FF3030;
}

body .layui-layer-btn .layui-layer-btn0{
    color: #fff;
}