.relayui-select38 {
    height: 38px;
    padding: 5px;
    border: 1px solid #eee;
    border-radius: 2px;
    cursor: pointer;
}
.relayui-select30 {
    height: 30px;
    padding: 3px;
    border: 1px solid #eee;
    border-radius: 2px;
    cursor: pointer;
}

/* 自定义checkbox */
input[type=checkbox].ace,
input[type=radio].ace {
    opacity: 0;
    position: absolute;
    z-index: 12;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

    input[type=checkbox].ace:checked,
    input[type=radio].ace:checked,
    input[type=checkbox].ace:focus,
    input[type=radio].ace:focus {
        outline: none !important;
    }

    input[type=checkbox].ace + .lbl,
    input[type=radio].ace + .lbl {
        position: relative;
        z-index: 11;
        display: inline-block;
        margin: 0;
        line-height: 20px;
        min-height: 18px;
        min-width: 18px;
        font-weight: normal;
    }

        input[type=checkbox].ace + .lbl::before {
            font-family: fontAwesome;
            font-weight: normal;
            font-size: 12px;
            color: #fff;
            content: "\a0";
            background-color: #fff;
            border: 1px solid #c8c8c8;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border-radius: 0;
            display: inline-block;
            text-align: center;
            vertical-align: middle;
            height: 16px;
            line-height: 14px;
            min-width: 16px;
            margin-right: 5px;
        }

        input[type=radio].ace + .lbl::before {
            font-family: fontAwesome;
            font-weight: normal;
            font-size: 12px;
            color: #fff;
            content: "\a0";
            background-color: #fff;
            border: 1px solid #c8c8c8;
            border-radius: 50%;
            display: inline-block;
            text-align: center;
            vertical-align: middle;
            height: 18px;
            line-height: 16px;
            min-width: 18px;
            margin-right: 5px;
        }

    input[type=checkbox].ace:checked + .lbl::before,
    input[type=radio].ace:checked + .lbl::before {
        display: inline-block;
        content: '\f00c';
        border-color: #5FB878 !important;
        background-color: #5FB878;
    }

    input[type=checkbox].ace:hover + .lbl::before,
    input[type=radio].ace:hover + .lbl::before,
    input[type=checkbox].ace + .lbl:hover::before,
    input[type=radio].ace + .lbl:hover::before {
        border-color: #ff893c;
    }

    input[type=checkbox].ace:active + .lbl::before,
    input[type=radio].ace:active + .lbl::before,
    input[type=checkbox].ace:checked:active + .lbl::before,
    input[type=radio].ace:checked:active + .lbl::before {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    input[type=checkbox].ace.ace-checkbox-2 + .lbl::before,
    input[type=radio].ace.ace-checkbox-2 + .lbl::before {
        box-shadow: none;
    }

    input[type=checkbox].ace.ace-checkbox-2:checked + .lbl::before,
    input[type=radio].ace.ace-checkbox-2:checked + .lbl::before {
        background-color: #f9a021;
        border-color: #f9a021;
        color: #FFF;
    }

    input[type=checkbox].ace:disabled + .lbl::before,
    input[type=radio].ace:disabled + .lbl::before,
    input[type=checkbox].ace[disabled] + .lbl::before,
    input[type=radio].ace[disabled] + .lbl::before,
    input[type=checkbox].ace.disabled + .lbl::before,
    input[type=radio].ace.disabled + .lbl::before {
        background-color: #DDD !important;
        border-color: #CCC !important;
        box-shadow: none !important;
        color: #BBB;
    }

    /* 自定义开关按钮 */
    input[type=checkbox].ace.ace-switch {
        width: 52px;
        height: 23px;
    }

        input[type=checkbox].ace.ace-switch + .lbl {
            margin: 0 4px;
            min-height: 24px;
        }

            input[type=checkbox].ace.ace-switch + .lbl::before {
                font-family: Arial,Helvetica,sans-serif;
                content: "开\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0关";
                color: #999;
                font-weight: bold;
                font-size: 12px;
                line-height: 23px;
                line-height: 21px\9;
                height: 23px;
                overflow: hidden;
                border-radius: 12px;
                background-color: #f5f5f5;
                -webkit-box-shadow: inset 0 2px 2px 0 rgba(0,0,0,.2);
                box-shadow: inset 0 2px 2px 0 rgba(0,0,0,.2);
                border: 1px solid #CCC;
                text-align: left;
                float: left;
                padding: 0;
                width: 52px;
                text-indent: -19px;
                text-indent: -21px\9;
                margin-right: 0;
                -webkit-transition: text-indent .4s ease;
                transition: text-indent .4s ease;
            }

            input[type=checkbox].ace.ace-switch + .lbl::after {
                font-family: Arial,Helvetica,sans-serif;
                content: ''; /*|||*/
                font-size: 10px;
                font-weight: lighter;
                color: #d5d5d5;
                background-color: #FFF;
                text-shadow: -1px 0 0 rgba(0,0,0,0.15);
                text-align: center;
                border-radius: 100%;
                width: 22px;
                height: 22px;
                line-height: 20px;
                position: absolute;
                top: -1px;
                left: 0px;
                padding: 0;
                -webkit-box-shadow: 0 1px 1px 1px rgba(0,0,0,.3);
                box-shadow: 0 1px 1px 1px rgba(0,0,0,.3);
                -webkit-transition: left .4s ease;
                transition: left .4s ease;
            }

        input[type=checkbox].ace.ace-switch:checked + .lbl::before {
            text-indent: 9px;
            color: #FFF;
            background-color: #5FB878;
            border-color: #5FB878;
        }

        input[type=checkbox].ace.ace-switch:checked + .lbl::after {
            left: 34px;
            background-color: #FFF;
            color: #5FB878;
        }


/*文本框输入时联想效果____开始*/
.self-dropdown-txt {
    position: relative;
    margin: 0 auto;
}

.self-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 2px 12px #0000001a;
    z-index: 2;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #eeeeee;
}

.self-dropdown-content::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    background-color: #fff;
    top: -6px;
    left: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 1px solid #eeeeee;
    z-index: 1;
}

.self-dropdown-content .self-dropdown-menu {
    margin: 0px 0;
    max-height: 360px;
    overflow-y: auto;
    padding: 5px 0;
    position: relative;
    z-index: 3;
    background: #fff;
}

.self-dropdown-content .self-dropdown-menu li {
    padding: 5px 10px;
    cursor: pointer;
    color: #5a5a5a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.self-dropdown-content .self-dropdown-menu li:hover {
    background-color: #f0f0f0;
}

.self-dropdown-content .self-dropdown-menu::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.self-dropdown-content .self-dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #eee
}

.self-dropdown-content .self-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color: #ddd
}
/*文本框输入时联想效果____结束*/


/*.layui-card-header .layui-icon {
    line-height: unset;
}

.layui-bg-black {
    background-color: #ccc !important;
}
.layui-textarea{
    min-height:75px;
}
.layui-form-select dl dd.layui-this {
    background-color: #1e9fff;
    color: #fff;
}*/
/*table行--鼠标悬停行时高亮*/
.layui-table tbody tr:hover, .layui-table-hover {
    background-color: #ffe6d4 !important;
}
/*table行--拖拽时的延迟时间（平滑过渡效果）*/
.layui-table tr {
    transition: all 0s;
    -webkit-transition: all 0s;
}

.layui-layer-tips .layui-layer-content {
    background: #fff;
    color: #333;
}
.quote-tips {
    background: #ffce5133;
    border-left: 5px solid #ff6600;
    color: #ff6600;
    font-size:14px!important;
    padding: 5px!important;
}

.customTips span{border:#fff dashed 1px;}
.customTips input{padding:0 !important;font-size:12px;width:500px;}



.modal-dialog{margin-top:50px !important;}
.modal-header {
    padding: 8px!important;
    border-bottom: 0!important;
}

/*拖放时占位符的样式*/
.ui-sortable-placeholder {
    outline: 2px dashed #ff6600;
    visibility: visible !important;
}
/*validate验证控件的样式*/
label.error {clear: both;color: red;font-weight: normal;font-size:14px;margin: 0;padding: 0;}
input.error, select.error,textarea.error { border: 1px solid red !important;}

/*可以隐藏未编译的 Mustache 标签直到实例准备完毕（HTML绑定Vue实例，在页面加载时会闪烁）*/
[v-cloak] { display: none;}

.center{ text-align:center !important;}
.left{ text-align:left !important;}
.right{text-align:right !important;}

.font12{font-size:12px !important;}
.font16{font-size:16px !important;}
.font18{font-size:18px !important;}
.font20{font-size:20px !important;}
.font22{font-size:22px !important;}
.font24{font-size:24px !important;}
.font26{font-size:26px !important;}
.font30{font-size:30px !important;}
.font32{font-size:32px !important;}
.font36{font-size:36px !important;}

.white{color:#fff !important;}
.gray{color:#888 !important;}
.gray2{color:#d2d2d2 !important;}
.black{color:#111 !important;}
.black2{color:#666 !important;}
.blue{color:blue !important;}
.blue2{color:#217DC6 !important;}
.green{color:green !important;}
.green2 { color:#5fc11e !important; }
.red{color:red !important;}
.orange{color:#ff6600 !important;}
.yellow{color:yellow !important;}

.bg-yellow, .bg-yellow td{background:yellow !important;}
.bg-waring,.bg-waring td{background-color:#ffe8d7 !important;}
.bg-blue, .bg-blue td {background: #d5f4fe !important;}

.table th { background:#eee; font-weight:normal;color:#000;}
.table .foot td{background:yellow !important; font-weight:bold;}
.hand{cursor:pointer !important;}
.nohand{cursor:default !important;}
.text-bold {font-weight: bold !important;}

.width30{width:30px !important;}
.width40{width:40px !important;}
.width50{width:50px !important;}
.width60{width:60px !important;}
.width70{width:70px !important;}
.width80{width:80px !important;}
.width90{width:90px !important;}
.width100{width:100px !important;word-break:break-all;}
.width110{width:110px !important;word-break:break-all;}
.width120{width:120px !important;word-break:break-all;}
.width150{width:150px !important;word-break:break-all;}
.width180{width:180px !important;word-break:break-all;}
.width200{width:200px !important;word-break:break-all;}
.width250{width:250px !important;word-break:break-all;}
.width280{width:280px !important;word-break:break-all;}
.width300{width:300px !important;word-break:break-all;}
.width350{width:350px !important;word-break:break-all;}
.width500{width:500px !important;word-break:break-all;}

.padding-0{padding:0 !important;}
.padding-10 {padding:10px !important;}
.padding-lr-0{padding-left:0 !important;padding-right:0 !important;}
.padding-tb-0{padding-top:0 !important;padding-bottom:0 !important;}

.padding-top-0{padding-top:0 !important;}
.padding-top-5{padding-top:5px !important;}
.padding-top-10{padding-top:10px !important;}
.padding-top-15{padding-top:15px !important;}

.padding-bottom-0{padding-bottom:0 !important;}
.padding-bottom-5{padding-bottom:5px !important;}
.padding-bottom-10{padding-bottom:10px !important;}
.padding-bottom-15{padding-bottom:15px !important;}

.padding-left-0{padding-left:0 !important;}
.padding-left-5{padding-left:5px !important;}
.padding-left-10{padding-left:10px !important;}
.padding-left-15{padding-left:15px !important;}

.padding-right-0{padding-right:0 !important;}
.padding-right-5{padding-right:5px !important;}
.padding-right-10{padding-right:10px !important;}
.padding-right-15{padding-right:15px !important;}

.margin-top-0{margin-top:0 !important;}
.margin-top-5{margin-top:5px !important;}
.margin-top-10{margin-top:10px !important;}
.margin-top-20{margin-top:20px !important;}
.margin-top-50{margin-top:50px !important;}
.margin-bottom-0{margin-bottom:0 !important;}
.margin-bottom-5{margin-bottom:5px !important;}
.margin-bottom-10{margin-bottom:10px !important;}
.margin-bottom-20{margin-bottom:20px !important;}
.margin-bottom-50{margin-bottom:50px !important;}
.margin-left-0{margin-left:0 !important;}
.margin-left-5{margin-left:5px !important;}
.margin-left-10{margin-left:10px !important;}
.margin-left-20{margin-left:20px !important;}
.margin-left-50{margin-left:50px !important;}
.margin-right-0{margin-right:0 !important;}
.margin-right-5{margin-right:5px !important;}
.margin-right-10{margin-right:10px !important;}
.margin-right-20{margin-right:20px !important;}
.margin-right-50{margin-right:50px !important;}
.margin-right-100{margin-right:100px !important;}

.new{margin:0;padding:0px 5px; text-align:center;font-size:12px;color:#fff; background:#ff2f46;margin-left:5px;border-radius:10px;}
.audit{border-top:#ff6600 dashed 1px;padding:10px 0;background:#ffecdf;}