/* Dialog样式重写 2023-04-06 */
.hide{
    display: none !important;
}
.ui-jqgrid-bdiv{
    height: auto !important;
}
.ui-dialog{
    background: #f6f6f6 !important;
    border-radius: 10px !important;
}
.ui-dialog .widget-box{
    margin: 0 !important;
}
.ui-dialog .ui-dialog-content{
    padding: 20px 20px 0 !important;
}
.wizard-steps li.complete .title, .wizard-steps li.active .title {
    color: #888;
}
.block{
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.block hr{
    margin: 8px 0;
    border-top: 1px dashed #eee;
}
.block .flex{
    display: flex;
    justify-content:center;
    align-items: center;
}
.block .flex .col{
    width: 100%;
}
.block .flex .title{
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #888;
}
.block .flex .title .tip{
    font-size: 14px;
    display: inline-block;
    line-height: 27px;
    vertical-align: top;
}
.block .flex .cell{
    display: flex;
    padding: 6px 20px;
    align-items: center;
}
.block .flex .cell-title,
.block .flex .cell-text{
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}
.block .flex .cell-text input[type="radio"],
.block .flex .cell-text input[type="checkbox"] {
    margin: 0 5px 0 10px;
}
.block .flex .cell-text label{
    margin-bottom: 0;
}
.block .flex .cell-text input[type="radio"],
.block .flex .cell-text input[type="checkbox"],
.block .flex .cell-text label{
    cursor: pointer;
}
.block .flex .cell-text input[type="radio"]:nth-child(1),
.block .flex .cell-text input[type="checkbox"]:nth-child(1){
    margin: 0 5px 0 0;
}
.block .flex .cell-title{
    width: 25%;
    color: rgba(0,0,0,.6);
}
.block .flex .cell-text{
    color: rgba(0,0,0,1);
}
.block .flex .cell-img{
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.block .flex .cell-img .img{
    width: 300px;
    height: 220px;
    background: #f9f9f9;
    position: relative;
}
.block .flex .cell-img .img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.block .flex .cell-img .img-title{
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}
.block .flex .cell-img .loading{
    display: flex;
    position: absolute;
    width: 100%;
    height: calc(100% - 22px);
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    color: #ddd;
    z-index: 1;
}

/*表单*/
.block-form .flex .cell-title{
    text-align: right;
    width: 23%;
    padding-bottom: 4px;
}
.block-form .flex .cell-text{
    width: 60%;
}
.block-form .flex .cell-text input[type="text"],
.block-form .flex .cell-text textarea{
    border: 1px solid #ddd;
    width: 100%;
    min-width: 100%;
}
/*按钮*/
.block .flex .cell-button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}


/*高级搜索弹窗*/
.advanced-search,.advanced-search2{
    background: #f4f4f4;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 8px 12px 0 16px;
}
.advanced-search .close-btn,
.advanced-search2 .close-btn{
    float: none;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 22px;
    color: #555;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease-out;
    width: 100px;
}
.advanced-search .close-btn i,
.advanced-search2 .close-btn i{
    margin-right: 10px;
}
.advanced-search .close-btn:hover,
.advanced-search2 .close-btn:hover{
    color: #307EF3;
    transform: scale(1.05);
}

.advanced-search2 .tab-content{
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.advanced-search .win_head,
.advanced-search2 .win_head{
    display: flex;
    justify-content: space-between;
}

.advanced-search2 .ribbon-bookmark{
    height: 43px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .4s ease all;
    color: #eee;
}
.advanced-search2 .ribbon-bookmark i{
    margin-bottom: 2px;
}
.advanced-search2 .ribbon-bookmark:hover{
    cursor: pointer;
    height: 80px;
    color: #fff;
}
.advanced-search2 .ribbon-bookmark:hover .text{
    display: inline-block !important;
    animation-duration: .4s;
}

/*覆盖滚动条样式*/
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width : 6px;  /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px;
}
::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.1);
    background   : #e2e2e2;
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background   : #f2f2f2;
}

/* 954L补充：2023-04-25 */
.dialog-div .cell, .dialog-div .cell-text { width: 100%; }
.dialog-div .cell-title { text-align: right; }
.dialog-div .cell-text input, .dialog-div .cell-text .dropzone { width: 90%; }
.block .required:before { content: '*'; color: red; font-size: 18px;
    vertical-align: middle; margin-right: 2px }
.block .flex .cell-button button { margin: 0 10px; }



.query-form-right {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}

.mr-3{
    margin-right: 3px !important;
}

/* byh补充：2024-08-23 */
.mb-10{
    margin-bottom: 10px;
}
.mr-5{
    margin-right: 5px;
}
.ml-5{
    margin-left: 5px;
}
span.input-icon{
    display: table;
}
span.input-icon i{
    cursor: pointer;
    line-height: 34px !important;
}
div.input-daterange input{
    cursor: pointer !important;
}

.search-box{
    width: 100%;
    border: 1px dashed #e5e5e5;
    margin-bottom: 10px;
    padding: 8px 0 0 8px;
    box-sizing: border-box;
}
.search-box .search-item{
    margin-right: 8px;
    margin-bottom: 8px;
}
.search-box .input-group{
    display: flex;
    align-items: center;
}
.search-box .input-group-addon{
    width: 40px;height: 34px;line-height: 1.3;
}
.search-box .input-sm{
    width: 108px;
}
/* 菜单图标文本垂直居中对齐 */
.nav-list .dropdown-toggle{
    display: flex !important;
    align-items: center !important;
}


/* byh补充：2024-08-27 drop zone 附件上传 重写样式 列表形式,在文件上传外层form加class [drop-zone-reset] */
.drop-zone-reset .dz-preview{
    width: calc(100% - 44px);
    margin: 0 0 12px 0 !important;
}
.drop-zone-reset .dz-preview:nth-last-child(1){
    margin-bottom: 0 !important;
}
.drop-zone-reset .dz-details{
    width: calc(100% - 96px) !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    float: left !important;
    margin-bottom: 0 !important;
    bottom: 0 !important;
    top: 0 !important;
}
.drop-zone-reset .dz-details .dz-filename{
    text-overflow: ellipsis;
}
.drop-zone-reset.dropzone .progress{
    float: left !important;
    margin-top: 5px !important;
    width: 100% !important;
}
.drop-zone-reset .dz-details .dz-size{
    position: static !important;
    min-width: 60px;
    text-align: right;
}
.drop-zone-reset .dz-details img {
    display: none !important;
}
.drop-zone-reset .dz-remove{
    margin-top: 0 !important;
    width: 90px;
    position: absolute;
    right: 6px;
    height: 32px;
    line-height: 24px;
    padding: 4px 10px;
}
.drop-zone-reset .dz-error-mark,.drop-zone-reset .dz-success-mark{
    right: -51px !important;
    top: 1px !important;
}
.drop-zone-reset .dz-error-message{
    left: -1px !important;
    top: -1px !important;
    background: rgba(245, 245, 245, 0.9) !important;
    color: #D15B47 !important;
    min-width: 120px !important;
}
.file-upload .dropzone{
    border-radius: var(--bs-border-radius) !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
}
.drop-zone-reset{
    border-radius: var(--bs-border-radius) !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    /*background: none !important;*/
}


.file_ul a{display: inline-block; vertical-align: middle; position: relative;}
.file_ul a img{width: 64px; height: 64px; }
.file_ul li{display: inline-block; width: 120px; margin-left: 5px; text-align: center; padding: 5px;}
.file_ul li span{font-size: 12px; color: #666; width: 120px; text-align: center; display: block; margin-top: 5px; text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
.file_ul li .del{
    position: absolute;
    right: 0px;
    top: -10px;
    z-index: 99999;
    cursor: pointer;
}
.file_ul li a .del img{
    width: 25px;
    height: 25px;
    display: none;
}
.file_ul li .hover .del img{display: block;}
.file_ul li a:hover .del img{display: block;}