body .anticon::before {
    /* 优先调用 sy-anticon 字体 */
    /*font-family: "anticon", "sy-anticon" !important;*/
    font-family    : "iconfont" !important;
    /* 默认样式是这样
        font-family: "anticon" !important;
    */
}

body {
    width: 100% !important;
}

#root-master,
.micro-app-wrapper,
.micro-app-wrapper>div {
    height: 100%;
}

/*容器样式*************************/
/******************************************** rowSingle:单行的Row布局  *********************/
html,
body,
#root,
body .divBody,
body .divPage,
body .divComponent,
body .rowSingle {
    width   : 100%;
    height  : 100%;
    margin  : 0px;
    padding : 0px;
    overflow: hidden;
}

.ContentWrapper {
    height: 100%;
}

:global(#divPopupComponentRoot) {
    width   : 100%;
    height  : 0px;
    position: relative;
}

body .divContent {
    width   : 100%;
    height  : 100%;
    margin  : 0px;
    padding : 0px;
    overflow: auto;
}

/*************************覆盖Antd样式***开始**********************************/

.ant-menu-submenu.ant-menu-submenu-popup {
    background-color: #ffffff;
}

/******************滚动条***开始*****************/

* ::-webkit-scrollbar {
    width           : 8px !important;
    height          : 8px !important;
    border-radius   : 4px;
    background-color: #f1f1f1;
    cursor          : pointer;
}

* ::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius   : 4px;
    cursor          : pointer;
}

* ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
    cursor          : pointer;
}

/******************滚动条***结束*****************/

/******************Row Col***开始*****************/

body .ant-row {
    width: 100%;
}

body .ant-row [class^="ant-col-"] {
    height: 100%;
}

/******************Row Col***结束*****************/

/******************模态窗口垂直居中***开始*****************/

body .ant-modal-wrap {
    display    : -webkit-flex;
    align-items: center;
}

body .ant-modal-wrap>.ant-modal {
    top: 0px;
}

/**********设置模态窗口confirm的确认按钮在左*************/

body .ant-modal-confirm .ant-modal-confirm-btns button {
    margin-left: 8px;
    padding    : 0px 10px;
    float      : right;
}

/******************模态窗口垂直居中***结束*****************/

/******************气泡确认框***开始*****************/

/**设置确认按钮在左**/

body .ant-popover .ant-popover-buttons {
    overflow: hidden;
}

body .ant-popover .ant-popover-buttons button {
    float: right;
}

/******************气泡确认框***结束*****************/

/*****************Layout***开始***************************/

body .ant-layout {
    width     : 100%;
    height    : 100%;
    background: transparent;
}

body .ant-layout>.ant-layout-header {
    height          : auto;
    max-height      : 100%;
    line-height     : normal;
    padding         : 0px;
    background-color: transparent;
}

body .ant-layout>.ant-layout-content {
    flex    : 1;
    overflow: hidden;
}

body .ant-layout>.ant-layout-content,
body .ant-layout>.ant-layout-sider {
    height: 100%;
}

/*****************Layout***结束***************************/

/*------------------------------------------------------------------------------------*/

/*****************Form***开始***************************/

/*body .ant-form .ant-form-item-control-wrapper .ant-form-item-children {
    width: 100%;
    height: 100%;
    display: block;
}

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker, body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
    width: 100%;
}*/

/*****************Form***结束***************************/

/*------------------------------------------------------------------------------------*/

/*****************提醒***开始***************************/

body .ant-notification {
    z-index: 10002 !important;
}

/*****************提醒***结束***************************/

/*****************右键菜单***开始***************************/

body .react-contextmenu-wrapper {
    width : 100%;
    height: 100%;
}

body .react-contextmenu {
    min-width       : 160px;
    padding         : 5px 0;
    margin          : 2px 0 0;
    font-size       : 16px;
    color           : #373a3c;
    text-align      : left;
    background-color: #fff;
    background-clip : padding-box;
    border          : 1px solid rgba(0, 0, 0, 0.15);
    border-radius   : 0.25rem;
    outline         : none;
    opacity         : 0;
    pointer-events  : none;
    transition      : opacity 250ms ease !important;
}

body .react-contextmenu.react-contextmenu--visible {
    opacity       : 1;
    pointer-events: auto;
}

body .react-contextmenu-item {
    padding    : 3px 10px;
    font-weight: 400;
    line-height: 1.5;
    color      : #373a3c;
    text-align : inherit;
    white-space: nowrap;
    background : 0 0;
    border     : 0;
    cursor     : pointer;
}

body .react-contextmenu-item i {
    margin: 0px 5px 0px 5px;
}

body .react-contextmenu-item.react-contextmenu-item--active,
body .react-contextmenu-item.react-contextmenu-item--selected {
    color           : #fff;
    background-color: #20a0ff;
    border-color    : #20a0ff;
    text-decoration : none;
}

body .react-contextmenu-item.react-contextmenu-item--disabled,
body .react-contextmenu-item.react-contextmenu-item--disabled:hover {
    color           : #878a8c;
    background-color: transparent;
    border-color    : rgba(0, 0, 0, 0.15);
}

body .react-contextmenu-item--divider {
    margin-bottom: 3px;
    padding      : 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    cursor       : inherit;
}

body .react-contextmenu-item--divider:hover {
    background-color: transparent;
    border-color    : rgba(0, 0, 0, 0.15);
}

body .react-contextmenu-item.react-contextmenu-submenu {
    padding: 0;
}

body .react-contextmenu-item.react-contextmenu-submenu>.react-contextmenu-item:after {
    content : "▶";
    display : inline-block;
    position: absolute;
    right   : 7px;
}

.example-multiple-targets::after {
    content: attr(data-count);
    display: block;
}

/*****************右键菜单***结束***************************/

/*****************Progress页面进度条***开始***************************/

.divPageProgress .ant-progress {
    width  : 100%;
    height : 100%;
    display: block;
}

.divPageProgress .ant-progress>div {
    width  : 100%;
    height : 100%;
    display: block;
}

.divPageProgress .ant-progress>div .ant-progress-outer {
    width  : 100%;
    height : 100%;
    display: block;
}

.divPageProgress .ant-progress>div .ant-progress-outer .ant-progress-inner {
    width  : 100%;
    height : 100%;
    display: block;
}

/*****************Progress页面进度条***结束***************************/

/*****************按钮***开始***************************/

.divToolBar .btnToolBar {
    margin: 3px 5px 3px 5px;
}

/*****************按钮***结束***************************/

/*****************Card***开始***************************/

body .ant-card {
    width         : 100%;
    height        : 100%;
    display       : flex;
    flex-direction: column;
}

body .ant-card .ant-card-head {
    padding: 0 10px;
}

body .ant-card .ant-card-body {
    flex   : 1;
    padding: unset;
}

/*****************Card***结束***************************/

/*************************覆盖Antd样式***结束**********************************/

body .ant-btn {
    padding: 0 8px;
}

body .ant-btn.withoutIcon {
    padding: 0 16px;
}

body .table-inline-tools .ant-btn {
    height: 20px;
}

body .ant-modal-footer {
    border          : none;
    border-top      : 1px solid #e8e8e8;
    box-shadow      : 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
    background-color: #fafbfc;
    padding         : 14px 16px;
}

body .ant-modal-header {
    border-bottom: 1px solid #c9d1fb;
}

body .ant-collapse.CollapsePanel .ant-collapse-item .ant-collapse-header {
    padding      : 10px 5px;
    position     : relative;
    color        : #697ad4;
    border-bottom: 2px solid #e7e9ed;
}

/*藐似已失效*/
body .ant-collapse.CollapsePanel>.ant-collapse-item>.ant-collapse-header .arrow {
    left : unset;
    right: 0;
    color: #c7c7c7;
}

/*生效*/
body .ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow {
    left : unset;
    right: 10px;
    color: #c7c7c7;
}

body .ant-collapse-borderless.CollapsePanel>.ant-collapse-item {
    border: none;
}

body .ant-collapse-borderless.CollapsePanel .ant-collapse-content {
    padding-top: 10px;
}

/********************设置表单组件禁用背景色***开始*****************************/

/*.ant-input-disabled[mode="choseonly"][_disabled="false"] {
    background: #fff;
    color: rgba(0, 0, 0, 0.65);
    cursor: default;
}*/

/* lcl 20190408*/

body .ant-switch-disabled,
body .ant-switch-disabled *,
.ant-switch-disabled::before,
.ant-switch-disabled::after {
    cursor: default;
}

body .ant-transfer-list-content-item-disabled {
    cursor: default;
}

body .ant-input[disabled],
body .ant-input-number-disabled .ant-input-number-input,
body .ant-radio-button-wrapper-disabled,
body .ant-input-disabled,
body .ant-select-disabled .ant-select-selection,
body .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice,
body .ant-time-picker-input[disabled] {
    cursor          : default;
    color           : rgba(0, 0, 0, 0.65) !important;
    background-color: #f5f5f5 !important;
}

body .ant-input-disabled~.anticon {
    color: rgba(0, 0, 0, 0.25);
}

/* body .ant-input-affix-wrapper .ant-input-disabled ~ .ant-input-suffix .anticon,
body .ant-input-disabled ~ .ant-calendar-picker-icon,
body .ant-input-disabled ~ .ant-cascader-picker-arrow,
body .ant-time-picker-input[disabled] ~ .ant-time-picker-icon,
body .ant-select-disabled .ant-select-arrow-icon, */
.formx-container .divInputUser-disabled .divInputUser-picker-icon,
.formx-container .ant-input-search>.ant-input-disabled~.ant-input-suffix {
    display: none;
}

.ant-select-tree-treenode-disabled>.ant-select-tree-node-content-wrapper>.ant-select-tree-title {
    color: rgba(0, 0, 0, 0.5) !important;
}

.ant-select-dropdown-menu-item-disabled {
    color: rgba(0, 0, 0, 0.5) !important;
}

/********************设置表单组件禁用背景色***结束*****************************/

td .divColumnOperate {
    width          : calc(100% - 4px);
    height         : calc(100% - 4px);
    position       : absolute;
    left           : 2px;
    top            : 2px;
    display        : flex;
    flex-direction : row;
    justify-content: center;
    align-items    : center;
}

td .divColumnOperate button {
    height       : 20px;
    line-height  : 20px;
    flex         : 0 1 auto;
    margin       : 0px 5px 0px 5px;
    padding-left : 3px !important;
    padding-right: 3px !important;
}

.import-error-row td:first-child {
    box-shadow: 3px 0px 0px red inset;
}

.Import-Modal {
    position: absolute;
}

.Printable-Modal {
    position: absolute;
}

.ant-form-item .has-error .__divInputUserBox,
.ant-form-item .has-error .__divInputUserBox:hover {
    background-color: #fff;
    border-color    : #f5222d;
}

.ant-form-item .has-error .__divInputUserBox .anticon-search {
    color: #f5222d;
}

body.responsive-size-small .ant-col {
    width: 100%;
}

/* 取消待办任务列表中，流程名称显示红色的效果 */
/* .__todoTaskPage .tablex-table-row-cell[data-columnkey=instanceName] .tablex-table-row-cell-inner label ,
.__todoTaskHomeModule .tablex-table-row-cell[data-columnkey=instanceName] .tablex-table-row-cell-inner label{
    color: #1890ff;
} */
#divHoverTitleContent {
    width: auto;
    min-width: 40px;
    max-width: 400px;
    height: auto;
    min-height: 26px;
    max-height: 300px;
    line-height: 1.4;
    padding: 6px 10px 6px 10px;
    background: rgba(30,30,30,0.8);
    color: rgba(240,240,240,1);
    border-radius: 4px;
    border: 1px solid rgba(100,100,100,0.8);
    z-index: 10005;
    display: none;
    position: absolute;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(40,40,40,0.8);
    font-family: Consolas;
    font-size: 12px;
    word-break: break-all;
    overflow: hidden;
}

#divHoverTitleContentHidden {
    width: auto;
    min-width: 40px;
    max-width: 400px;
    height: auto;
    min-height: 26px;
    max-height: 300px;
    line-height: 1.4;
    padding: 6px 10px 6px 10px;
    background: rgba(30,30,30,0.7);
    color: rgba(240,240,240,1);
    border-radius: 4px;
    border: 1px solid rgba(100,100,100,0.8);
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    box-shadow: 2px 2px 6px rgba(40,40,40,0.8);
    font-family: Consolas;
    font-size: 12px;
    word-break: break-all;
    overflow: hidden;
}

.divEditCell___RLTYc {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 2px;
}

.divFormItemMessage___FcL8D {
  /*display: none;*/
}
 {
  /************���ñ�����ײ�margin��С**************/
  /************����RadioButton�Ĵ�����ʽ**************/
  /************����CheckboxGroup�Ĵ�����ʽ**************/
  /************����Switch�Ĵ�����ʽ**************/
}
.ant-form .ant-form-item.ant-form-item-with-tooltip {
  margin: 0px 0px 3px 0px;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-radio-group > .ant-radio-button-wrapper {
  color: #f5222d;
  border-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-radio-group > .ant-radio-button-wrapper:before {
  background-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-checkbox-group > .ant-checkbox-wrapper {
  color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-switch {
  background-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-checkbox-group > .ant-checkbox-wrapper > .ant-checkbox > .ant-checkbox-inner {
  border-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-disabled, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-cascader-picker-disabled, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-radio-group .ant-radio-button-wrapper-disabled {
  cursor: default;
  color: rgba(0, 0, 0, 0.65);
  background-color: #f5f5f5 !important;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
  width: 100%;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-disabled[mode="choseonly"][_disabled="false"] {
  background-color: #fff !important;
  color: rgba(0, 0, 0, 0.65);
  cursor: default;
}

/***********************没有Children的布局方式样式***********************************/
.__spinEmptyChildren {
    width: 100%;
    height: 100%;
    max-height: unset;
}

/***********************block布局方式样式***********************************/
.__spinDisplayBlock {
    width: 100%;
    height: 100%;
    position: relative;
}

.__spinDisplayBlock>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayBlock>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 2;
}

.__spinDisplayBlock>.ant-spin-container {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
}

.__spinDisplayBlock>.ant-spin-container::after {
    display: none;
}

/***********************flex的row布局方式样式***********************************/
.__spinDisplayFlexRow {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.__spinDisplayFlexRow>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayFlexRow>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 2;
}

.__spinDisplayFlexRow>.ant-spin-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}


/***********************flex的column布局方式样式***********************************/
.__spinDisplayFlexColumn {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.__spinDisplayFlexColumn>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayFlexColumn>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 4;
}

.__spinDisplayFlexColumn>.ant-spin-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.__spinDisplayFlexColumn>.ant-spin-container::after {
    display: none;
}
.divImageBox___fup2v {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ant-input-link{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: 'tnum', "tnum";
    position: relative;
    display: block;
    float: left;
    clear: both;
    width: 100%;
    height: 32px;
    padding: 4px 11px;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all 0.3s;
    outline: none;
}

.ant-input-link:not(.ant-input-link-disabled):focus{
    border-color: #40a9ff;
    border-right-width: 1px !important;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-input-link.ant-input-link-disabled{
    color: rgba(0, 0, 0, 0.25);
    background-color: #f5f5f5;
}
.divMessageBox___Bh85R {
  width: 100%;
  height: auto;
  max-height: 40vh;
  padding-right: 16px;
  overflow: auto;
}
.divMessageRow___Gg\+Ar {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 26px;
  text-align: left;
}
.__platformMessageBox .ant-message .ant-message-notice-content {
  max-width: 100%;
  padding: 10px 0px 10px 16px;
}
.__platformMessageBox .ant-message .ant-message-custom-content {
  display: flex;
  flex-direction: row;
}
.__platformMessageBox .ant-message .ant-message-custom-content > i {
  flex: 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__platformMessageBox .ant-message .ant-message-custom-content > span {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.dialogWrap___MGV4w {
  position: absolute !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(50, 50, 50, 0.3);
  border-radius: 4px;
}
.dialogWrap___MGV4w .rc-dialog {
  pointer-events: auto;
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: unset;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-close {
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-close > .anticon-close {
  width: 38px;
  height: 38px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-header {
  flex: 0 0 auto;
  display: flex;
  padding: unset;
  height: auto;
  border-bottom: unset;
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-header > .rc-dialog-title {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-body {
  flex: 1;
  padding: unset;
  overflow: hidden;
  /*����chrome�Ͱ汾�����*/
  width: 100%;
  height: 100%;
}
.dialogWrap___MGV4w .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-footer {
  flex: 0 0 auto;
  display: flex;
  padding: unset;
  height: auto;
  border: unset;
}
.dialogWrapAutoHeight___1eH27 .rc-dialog > .rc-dialog-div-resize {
  height: auto;
}
.dialogWrapAutoHeight___1eH27 .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box {
  height: auto;
}
.dialogWrapAutoHeight___1eH27 .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content {
  height: auto;
}
.dialogBox___Gv1VL {
  width: 100%;
  margin: unset !important;
}
.divModalContent___Qt77i {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: auto;
}
/*******************modalRender���***************************/
.divResizeBox___e3dGV {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: unset;
}
/*******************dragHandle���***************************/
.divDragHandle___HnZiT {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.divDragHandle___HnZiT:hover {
  cursor: all-scroll;
}
/*******************title���***************************/
.divDialogTitle___b41qL {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0px 10px;
  min-height: 38px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #e8e8e8;
}
/*******************footer���***************************/
.divDialogFooter___zhNDf {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
}
.divDialogFooter___zhNDf .ant-btn {
  padding: 0px 12px;
}
.divDialogFooter___zhNDf button + button {
  margin-left: 10px;
}

.divResize___RE9F6 {
  width: 100%;
  height: 100%;
}

.rc-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.rc-dialog-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.rc-dialog-title {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
}
.rc-dialog-content {
  position: relative;
  background-color: #ffffff;
  border: none;
  border-radius: 6px 6px;
  background-clip: padding-box;
}
.rc-dialog-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 21px;
  position: absolute;
  right: 20px;
  top: 12px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  text-decoration: none;
}
.rc-dialog-close-x:after {
  content: '×';
}
.rc-dialog-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}
.rc-dialog-header {
  padding: 13px 20px 14px 20px;
  border-radius: 5px 5px 0 0;
  background: #fff;
  color: #666;
  border-bottom: 1px solid #e9e9e9;
}
.rc-dialog-body {
  padding: 20px;
}
.rc-dialog-footer {
  border-top: 1px solid #e9e9e9;
  padding: 10px 20px;
  text-align: right;
  border-radius: 0 0 5px 5px;
}
.rc-dialog-zoom-enter,
.rc-dialog-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.rc-dialog-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.rc-dialog-zoom-enter.rc-dialog-zoom-enter-active,
.rc-dialog-zoom-appear.rc-dialog-zoom-appear-active {
  animation-name: rcDialogZoomIn;
  animation-play-state: running;
}
.rc-dialog-zoom-leave.rc-dialog-zoom-leave-active {
  animation-name: rcDialogZoomOut;
  animation-play-state: running;
}
@keyframes rcDialogZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes rcDialogZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@media (min-width: 768px) {
  .rc-dialog {
    width: 600px;
    margin: 30px auto;
  }
}
.rc-dialog-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #373737;
  background-color: rgba(55, 55, 55, 0.6);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1050;
}
.rc-dialog-mask-hidden {
  display: none;
}
.rc-dialog-fade-enter,
.rc-dialog-fade-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}
.rc-dialog-fade-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}
.rc-dialog-fade-enter.rc-dialog-fade-enter-active,
.rc-dialog-fade-appear.rc-dialog-fade-appear-active {
  animation-name: rcDialogFadeIn;
  animation-play-state: running;
}
.rc-dialog-fade-leave.rc-dialog-fade-leave-active {
  animation-name: rcDialogFadeOut;
  animation-play-state: running;
}
@keyframes rcDialogFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.divPageProgress___U8SDQ {
  width: 100%;
  height: 3px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}

.antdSelect___0we5G .ant-select-selection__rendered > .ant-select-selection__placeholder {
  width: 100%;
}
.divDropdownRender___0XfaY {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.divDropdownRender___0XfaY > .divDropdownMenu___GzAtp {
  flex: 1;
}
.divDropdownRender___0XfaY > .divSelectAll___bHqph {
  border-top: 1px solid #e8e8e8;
  flex: 0 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.divDropdownRender___0XfaY > .divSelectAll___bHqph > .divSelectAllCheckbox___RoL9x {
  flex: 0 0 30px;
  display: flex;
  justify-content: center;
  padding-left: 5px;
}
.divDropdownRender___0XfaY > .divSelectAll___bHqph > .divSelectAllText___Rtq6G {
  flex: 1;
  cursor: pointer;
}

.fit-tabs{
    height:100%;
    display: flex;
    flex-direction:column;
}
.fit-tabs .ant-tabs-bar{
    flex:0 0 auto;
}
.fit-tabs .ant-tabs-content{
    flex:1 1;
}

.title {
  text-align: center;
}
.btns {
  margin: 0 12px;
}
.btns button {
  margin: 0 12px;
}
.accTable {
  margin: 12px;
  height: 250px;
}
.grayline {
  border-right: 1px solid #dfdfdf !important;
}
.blueline {
  border-right: 1px solid #a7d9f5 !important;
}
.redline {
  border-right: 1px solid #edb9b9 !important;
}
.money {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}
.moneyInput {
  position: absolute;
  width: 260px;
  top: 8px;
  z-index: 2;
}
.grayline,
.blueline,
.redline {
  padding: 0 !important;
  position: relative;
}

.form-voucher-card .ant-form .ant-form-item-label{
  width: 90px;
}
.form-voucher-card .ant-form .ant-form-item-control-wrapper{
  overflow: hidden;
}

.formx-container .form-voucher-card .ant-form >.ant-row{
  display: block !important;
}
.formx-container .form-voucher-card .ant-form >.ant-row .ant-form-item{
  display: flex !important;
}

.title___HyTQx {
  text-align: center;
  margin-top: 12px;
}
.btns___C152o {
  margin: 0 12px;
}
.btns___C152o button {
  margin: 0 12px;
}
.accTable___F6CQk {
  margin: 12px;
  height: 250px;
}
.grayline___1yFAr {
  border-right: 1px solid #dfdfdf !important;
}
.blueline___Kixna {
  border-right: 1px solid #a7d9f5 !important;
}
.redline___l6h9D {
  border-right: 1px solid #edb9b9 !important;
}
.money___jICHL {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}
.moneyInput___F\+l8J {
  position: absolute;
  width: 260px;
  top: 8px;
  z-index: 2;
}
.grayline___1yFAr,
.blueline___Kixna,
.redline___l6h9D {
  padding: 0 !important;
  position: relative;
}
.table___wBqDO {
  margin-top: 8px;
}
.ant-table-small___h6K\+i > .ant-table-content___MMZsp > .ant-table-body___0MwJR {
  margin: 0 !important;
}

.self-component-collapse-sider {
  height: 100%;
}
.self-component-collapse-sider .sider-title {
  font-size: 16px;
  font-weight: bold;
}
.self-component-collapse-sider .sider-trigger svg {
  margin-top: 3px;
  font-size: 21px;
}
.self-component-collapse-sider .collapse-sider-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-right: 12px;
}
.self-component-collapse-sider .collapse-sider-body .body-sider-top {
  padding-bottom: 10px;
}
.self-component-collapse-sider .collapse-sider-body .sider-trigger {
  float: right;
  position: relative;
  margin-right: 10px;
}
.self-component-collapse-sider .collapse-sider-collapsed {
  position: relative;
}
.self-component-collapse-sider .collapse-sider-collapsed .sider-title {
  position: absolute;
  top: 35px;
  line-height: 48px;
}
.self-component-collapse-sider .collapse-sider-collapsed .sider-trigger {
  position: absolute;
  left: 14px;
}


#divHoverTitleContent {
    width: auto;
    min-width: 40px;
    max-width: 400px;
    height: auto;
    min-height: 26px;
    max-height: 300px;
    line-height: 1.4;
    padding: 6px 10px 6px 10px;
    background: rgba(30,30,30,0.8);
    color: rgba(240,240,240,1);
    border-radius: 4px;
    border: 1px solid rgba(100,100,100,0.8);
    z-index: 10005;
    display: none;
    position: absolute;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(40,40,40,0.8);
    font-family: Consolas;
    font-size: 12px;
    word-break: break-all;
    overflow: hidden;
}

#divHoverTitleContentHidden {
    width: auto;
    min-width: 40px;
    max-width: 400px;
    height: auto;
    min-height: 26px;
    max-height: 300px;
    line-height: 1.4;
    padding: 6px 10px 6px 10px;
    background: rgba(30,30,30,0.7);
    color: rgba(240,240,240,1);
    border-radius: 4px;
    border: 1px solid rgba(100,100,100,0.8);
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    box-shadow: 2px 2px 6px rgba(40,40,40,0.8);
    font-family: Consolas;
    font-size: 12px;
    word-break: break-all;
    overflow: hidden;
}

.divEditCell___2n1rx {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 2px;
}

.divFormItemMessage___CXwkC {
  /*display: none;*/
}
 {
  /************���ñ�����ײ�margin��С**************/
  /************����RadioButton�Ĵ�����ʽ**************/
  /************����CheckboxGroup�Ĵ�����ʽ**************/
  /************����Switch�Ĵ�����ʽ**************/
}
.ant-form .ant-form-item.ant-form-item-with-tooltip {
  margin: 0px 0px 3px 0px;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-radio-group > .ant-radio-button-wrapper {
  color: #f5222d;
  border-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-radio-group > .ant-radio-button-wrapper:before {
  background-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-checkbox-group > .ant-checkbox-wrapper {
  color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-switch {
  background-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-checkbox-group > .ant-checkbox-wrapper > .ant-checkbox > .ant-checkbox-inner {
  border-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-disabled, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-cascader-picker-disabled, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-radio-group .ant-radio-button-wrapper-disabled {
  cursor: default;
  color: rgba(0, 0, 0, 0.65);
  background-color: #f5f5f5 !important;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
  width: 100%;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-disabled[mode="choseonly"][_disabled="false"] {
  background-color: #fff !important;
  color: rgba(0, 0, 0, 0.65);
  cursor: default;
}

/***********************没有Children的布局方式样式***********************************/
.__spinEmptyChildren {
    width: 100%;
    height: 100%;
    max-height: unset;
}

/***********************block布局方式样式***********************************/
.__spinDisplayBlock {
    width: 100%;
    height: 100%;
    position: relative;
}

.__spinDisplayBlock>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayBlock>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 2;
}

.__spinDisplayBlock>.ant-spin-container {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
}

.__spinDisplayBlock>.ant-spin-container::after {
    display: none;
}

/***********************flex的row布局方式样式***********************************/
.__spinDisplayFlexRow {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.__spinDisplayFlexRow>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayFlexRow>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 2;
}

.__spinDisplayFlexRow>.ant-spin-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}


/***********************flex的column布局方式样式***********************************/
.__spinDisplayFlexColumn {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.__spinDisplayFlexColumn>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayFlexColumn>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 4;
}

.__spinDisplayFlexColumn>.ant-spin-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.__spinDisplayFlexColumn>.ant-spin-container::after {
    display: none;
}
.divImageBox___PCOX5 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ant-input-link{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: 'tnum', "tnum";
    position: relative;
    display: block;
    float: left;
    clear: both;
    width: 100%;
    height: 32px;
    padding: 4px 11px;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all 0.3s;
    outline: none;
}

.ant-input-link:not(.ant-input-link-disabled):focus{
    border-color: #40a9ff;
    border-right-width: 1px !important;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-input-link.ant-input-link-disabled{
    color: rgba(0, 0, 0, 0.25);
    background-color: #f5f5f5;
}
.divMessageBox___837dH {
  width: 100%;
  height: auto;
  max-height: 40vh;
  padding-right: 16px;
  overflow: auto;
}
.divMessageRow___A66fT {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 26px;
  text-align: left;
}
.__platformMessageBox .ant-message .ant-message-notice-content {
  max-width: 100%;
  padding: 10px 0px 10px 16px;
}
.__platformMessageBox .ant-message .ant-message-custom-content {
  display: flex;
  flex-direction: row;
}
.__platformMessageBox .ant-message .ant-message-custom-content > i {
  flex: 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__platformMessageBox .ant-message .ant-message-custom-content > span {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.dialogWrap___sahUi {
  position: absolute !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(50, 50, 50, 0.3);
  border-radius: 4px;
}
.dialogWrap___sahUi .rc-dialog {
  pointer-events: auto;
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: unset;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-close {
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-close > .anticon-close {
  width: 38px;
  height: 38px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-header {
  flex: 0 0 auto;
  display: flex;
  padding: unset;
  height: auto;
  border-bottom: unset;
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-header > .rc-dialog-title {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-body {
  flex: 1;
  padding: unset;
  overflow: hidden;
  /*����chrome�Ͱ汾�����*/
  width: 100%;
  height: 100%;
}
.dialogWrap___sahUi .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-footer {
  flex: 0 0 auto;
  display: flex;
  padding: unset;
  height: auto;
  border: unset;
}
.dialogWrapAutoHeight___OUQJK .rc-dialog > .rc-dialog-div-resize {
  height: auto;
}
.dialogWrapAutoHeight___OUQJK .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box {
  height: auto;
}
.dialogWrapAutoHeight___OUQJK .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content {
  height: auto;
}
.dialogBox___exmOJ {
  width: 100%;
  margin: unset !important;
}
.divModalContent___X2h\+e {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: auto;
}
/*******************modalRender���***************************/
.divResizeBox___-X2uC {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: unset;
}
/*******************dragHandle���***************************/
.divDragHandle___NzCj2 {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.divDragHandle___NzCj2:hover {
  cursor: all-scroll;
}
/*******************title���***************************/
.divDialogTitle___GAfeR {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0px 10px;
  min-height: 38px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #e8e8e8;
}
/*******************footer���***************************/
.divDialogFooter___QEjIB {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
}
.divDialogFooter___QEjIB .ant-btn {
  padding: 0px 12px;
}
.divDialogFooter___QEjIB button + button {
  margin-left: 10px;
}

.divResize___TsiAV {
  width: 100%;
  height: 100%;
}

.divPageProgress___BhQqq {
  width: 100%;
  height: 3px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}

.antdSelect___gFduF .ant-select-selection__rendered > .ant-select-selection__placeholder {
  width: 100%;
}
.divDropdownRender___gxq9k {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.divDropdownRender___gxq9k > .divDropdownMenu___EusCp {
  flex: 1;
}
.divDropdownRender___gxq9k > .divSelectAll___2xlPe {
  border-top: 1px solid #e8e8e8;
  flex: 0 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.divDropdownRender___gxq9k > .divSelectAll___2xlPe > .divSelectAllCheckbox___pA55T {
  flex: 0 0 30px;
  display: flex;
  justify-content: center;
  padding-left: 5px;
}
.divDropdownRender___gxq9k > .divSelectAll___2xlPe > .divSelectAllText___2KQDr {
  flex: 1;
  cursor: pointer;
}

.fit-tabs{
    height:100%;
    display: flex;
    flex-direction:column;
}
.fit-tabs .ant-tabs-bar{
    flex:0 0 auto;
}
.fit-tabs .ant-tabs-content{
    flex:1 1;
}
.datePickerCss___OXAf8 {
  width: 50% !important;
  margin-Left: 8px;
  display: inline-block;
}



body .anticon:before {
    /* 优先调用 sy-anticon 字体 */
    /*font-family: "anticon", "sy-anticon" !important;*/
    font-family: "iconfont" !important;
    /* 默认样式是这样
        font-family: "anticon" !important;
    */
}

/*容器样式*************************/

/******************************************** rowSingle:单行的Row布局  *********************/

html, body, :global(#root),body .divBody,body .divPage,body .divComponent,body .rowSingle {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}


.ContentWrapper {
    height: 100%;
}

:global(#divPopupComponentRoot) {
    width: 100%;
    height: 0px;
    position: relative;
}

body .divContent {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: auto;
}

/*************************覆盖Antd样式***开始**********************************/

.ant-menu-submenu.ant-menu-submenu-popup
{
background-color: #ffffff;
}
/******************滚动条***开始*****************/

* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #f1f1f1;
    cursor: pointer;
}

* ::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 4px;
}

* ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

/******************滚动条***结束*****************/

/******************Row Col***开始*****************/

body .ant-row {
    width: 100%;
}

body .ant-row [class^=ant-col-] {
    height: 100%;
}

/******************Row Col***结束*****************/

/******************模态窗口垂直居中***开始*****************/

body .ant-modal-wrap {
    display: -webkit-flex;
    align-items: center;
}

body .ant-modal-wrap > .ant-modal {
        top: 0px;
    }

/**********设置模态窗口confirm的确认按钮在左*************/

body .ant-modal-confirm .ant-modal-confirm-btns button {
    margin-left: 8px;
    padding: 0px 10px;
    float: right;
}

/******************模态窗口垂直居中***结束*****************/

/******************气泡确认框***开始*****************/

/**设置确认按钮在左**/

body .ant-popover .ant-popover-buttons {
    overflow: hidden;
}

body .ant-popover .ant-popover-buttons button {
    float: right;
}

/******************气泡确认框***结束*****************/



/*****************Layout***开始***************************/

body .ant-layout {
    width: 100%;
    height: 100%;
    background: unset;
}

body .ant-layout > .ant-layout-header {
        height: auto;
        max-height: 100%;
        line-height: unset;
        padding: 0px;
        background: unset;
    }

    body .ant-layout > .ant-layout-content {
        flex: 1;
        overflow: hidden;
    }

/*****************Layout***结束***************************/

/*------------------------------------------------------------------------------------*/

/*****************Form***开始***************************/

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children {
    width: 100%;
    height: 100%;
    display: block;
}

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker,
body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
        width: 100%;
    }

/*****************Form***结束***************************/

/*------------------------------------------------------------------------------------*/
/*****************提醒***开始***************************/

body .ant-notification {
    z-index: 10002 !important;
}

/*****************提醒***结束***************************/


/*****************右键菜单***开始***************************/

body .react-contextmenu-wrapper {
    width: 100%;
    height: 100%;
}

body .react-contextmenu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    color: #373a3c;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    outline: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease !important;
}

body .react-contextmenu.react-contextmenu--visible {
    opacity: 1;
    pointer-events: auto;
}

body .react-contextmenu-item {
    padding: 3px 10px;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
    cursor: pointer;
}

body .react-contextmenu-item i {
    margin: 0px 5px 0px 5px;
}

body .react-contextmenu-item.react-contextmenu-item--active,body  .react-contextmenu-item.react-contextmenu-item--selected {
    color: #fff;
    background-color: #20a0ff;
    border-color: #20a0ff;
    text-decoration: none;
}

body .react-contextmenu-item.react-contextmenu-item--disabled,body  .react-contextmenu-item.react-contextmenu-item--disabled:hover {
    color: #878a8c;
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item--divider {
    margin-bottom: 3px;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    cursor: inherit;
}

body .react-contextmenu-item--divider:hover {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item.react-contextmenu-submenu {
    padding: 0;
}

body .react-contextmenu-item.react-contextmenu-submenu>.react-contextmenu-item:after {
    content: "▶";
    display: inline-block;
    position: absolute;
    right: 7px;
}

.example-multiple-targets::after {
    content: attr(data-count);
    display: block;
}

/*****************右键菜单***结束***************************/

/*****************Progress页面进度条***开始***************************/

.divPageProgress .ant-progress {
    width: 100%;
    height: 100%;
    display: block;
}

    .divPageProgress .ant-progress > div {
        width: 100%;
        height: 100%;
        display: block;
    }

        .divPageProgress .ant-progress > div .ant-progress-outer {
            width: 100%;
            height: 100%;
            display: block;
        }

            .divPageProgress .ant-progress > div .ant-progress-outer .ant-progress-inner {
                width: 100%;
                height: 100%;
                display: block;
            }

/*****************Progress页面进度条***结束***************************/

/*****************按钮***开始***************************/

.divToolBar .btnToolBar {
    margin: 3px 5px 3px 5px;
}

/*****************按钮***结束***************************/

/*****************Card***开始***************************/

body .ant-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body .ant-card .ant-card-head {
        padding: 0 10px;
    }

    body .ant-card .ant-card-body {
        flex: 1;
        padding: unset;
    }

/*****************Card***结束***************************/

/*************************覆盖Antd样式***结束**********************************/

body .ant-btn {
    padding: 0 8px;
}

body .ant-btn.withoutIcon {
        padding: 0 16px;
    }

body .table-inline-tools .ant-btn {
    height: 20px;
}


body .ant-modal-footer {
    border: none;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, .1);
    background-color: #fafbfc;
    padding: 14px 16px;
}

body .ant-modal-header {
    border-bottom: 1px solid #c9d1fb;
}

body .ant-collapse.CollapsePanel .ant-collapse-item .ant-collapse-header {
    padding: 10px 5px;
    position: relative;
    color: #697ad4;
    border-bottom: 2px solid #e7e9ed;
}

body .ant-collapse.CollapsePanel>.ant-collapse-item>.ant-collapse-header .arrow {
    left: unset;
    right: 0;
    color: #c7c7c7;
}

body .ant-collapse-borderless.CollapsePanel>.ant-collapse-item {
    border: none;
}

body .ant-collapse-borderless.CollapsePanel .ant-collapse-content {
    padding-top: 10px;
}


/********************设置表单组件禁用背景色***开始*****************************/

/* body .ant-input-disabled,
body .ant-select-disabled .ant-select-selection {
    background-color: rgba(254,254,254,1);
} */
.ant-input-disabled[mode="choseonly"][_disabled="false"]{
    color:rgba(0, 0, 0, 0.65);
}

body .ant-switch-disabled {
    cursor: not-allowed;
}

/********************设置表单组件禁用背景色***结束*****************************/


td .divColumnOperate {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    td .divColumnOperate button {
        height: 20px;
        line-height:20px;
        flex: 0 1 auto;
        margin: 7px 5px auto 5px;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }




body .anticon:before {
    /* 优先调用 sy-anticon 字体 */
    /*font-family: "anticon", "sy-anticon" !important;*/
    font-family: "iconfont" !important;
    /* 默认样式是这样
        font-family: "anticon" !important;
    */
}

/*容器样式*************************/

/******************************************** rowSingle:单行的Row布局  *********************/

html, body, :global(#root),body .divBody,body .divPage,body .divComponent,body .rowSingle {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}


.ContentWrapper {
    height: 100%;
}

:global(#divPopupComponentRoot) {
    width: 100%;
    height: 0px;
    position: relative;
}

body .divContent {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: auto;
}

/*************************覆盖Antd样式***开始**********************************/

.ant-menu-submenu.ant-menu-submenu-popup
{
background-color: #ffffff;
}
/******************滚动条***开始*****************/

* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #f1f1f1;
    cursor: pointer;
}

* ::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 4px;
}

* ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

/******************滚动条***结束*****************/

/******************Row Col***开始*****************/

body .ant-row {
    width: 100%;
}

body .ant-row [class^=ant-col-] {
    height: 100%;
}

/******************Row Col***结束*****************/

/******************模态窗口垂直居中***开始*****************/

body .ant-modal-wrap {
    display: -webkit-flex;
    align-items: center;
}

body .ant-modal-wrap > .ant-modal {
        top: 0px;
    }

/**********设置模态窗口confirm的确认按钮在左*************/

body .ant-modal-confirm .ant-modal-confirm-btns button {
    margin-left: 8px;
    padding: 0px 10px;
    float: right;
}

/******************模态窗口垂直居中***结束*****************/

/******************气泡确认框***开始*****************/

/**设置确认按钮在左**/

body .ant-popover .ant-popover-buttons {
    overflow: hidden;
}

body .ant-popover .ant-popover-buttons button {
    float: right;
}

/******************气泡确认框***结束*****************/



/*****************Layout***开始***************************/

body .ant-layout {
    width: 100%;
    height: 100%;
    background: unset;
}

body .ant-layout > .ant-layout-header {
        height: auto;
        max-height: 100%;
        line-height: unset;
        padding: 0px;
        background: unset;
    }

    body .ant-layout > .ant-layout-content {
        flex: 1;
        overflow: hidden;
    }

/*****************Layout***结束***************************/

/*------------------------------------------------------------------------------------*/

/*****************Form***开始***************************/

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children {
    width: 100%;
    height: 100%;
    display: block;
}

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker,
body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
        width: 100%;
    }

/*****************Form***结束***************************/

/*------------------------------------------------------------------------------------*/
/*****************提醒***开始***************************/

body .ant-notification {
    z-index: 10002 !important;
}

/*****************提醒***结束***************************/


/*****************右键菜单***开始***************************/

body .react-contextmenu-wrapper {
    width: 100%;
    height: 100%;
}

body .react-contextmenu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    color: #373a3c;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    outline: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease !important;
}

body .react-contextmenu.react-contextmenu--visible {
    opacity: 1;
    pointer-events: auto;
}

body .react-contextmenu-item {
    padding: 3px 10px;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
    cursor: pointer;
}

body .react-contextmenu-item i {
    margin: 0px 5px 0px 5px;
}

body .react-contextmenu-item.react-contextmenu-item--active,body  .react-contextmenu-item.react-contextmenu-item--selected {
    color: #fff;
    background-color: #20a0ff;
    border-color: #20a0ff;
    text-decoration: none;
}

body .react-contextmenu-item.react-contextmenu-item--disabled,body  .react-contextmenu-item.react-contextmenu-item--disabled:hover {
    color: #878a8c;
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item--divider {
    margin-bottom: 3px;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    cursor: inherit;
}

body .react-contextmenu-item--divider:hover {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item.react-contextmenu-submenu {
    padding: 0;
}

body .react-contextmenu-item.react-contextmenu-submenu>.react-contextmenu-item:after {
    content: "▶";
    display: inline-block;
    position: absolute;
    right: 7px;
}

.example-multiple-targets::after {
    content: attr(data-count);
    display: block;
}

/*****************右键菜单***结束***************************/

/*****************Progress页面进度条***开始***************************/

.divPageProgress .ant-progress {
    width: 100%;
    height: 100%;
    display: block;
}

    .divPageProgress .ant-progress > div {
        width: 100%;
        height: 100%;
        display: block;
    }

        .divPageProgress .ant-progress > div .ant-progress-outer {
            width: 100%;
            height: 100%;
            display: block;
        }

            .divPageProgress .ant-progress > div .ant-progress-outer .ant-progress-inner {
                width: 100%;
                height: 100%;
                display: block;
            }

/*****************Progress页面进度条***结束***************************/

/*****************按钮***开始***************************/

.divToolBar .btnToolBar {
    margin: 3px 5px 3px 5px;
}

/*****************按钮***结束***************************/

/*****************Card***开始***************************/

body .ant-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body .ant-card .ant-card-head {
        padding: 0 10px;
    }

    body .ant-card .ant-card-body {
        flex: 1;
        padding: unset;
    }

/*****************Card***结束***************************/

/*************************覆盖Antd样式***结束**********************************/

body .ant-btn {
    padding: 0 8px;
}

body .ant-btn.withoutIcon {
        padding: 0 16px;
    }

body .table-inline-tools .ant-btn {
    height: 20px;
}


body .ant-modal-footer {
    border: none;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, .1);
    background-color: #fafbfc;
    padding: 14px 16px;
}

body .ant-modal-header {
    border-bottom: 1px solid #c9d1fb;
}

body .ant-collapse.CollapsePanel .ant-collapse-item .ant-collapse-header {
    padding: 10px 5px;
    position: relative;
    color: #697ad4;
    border-bottom: 2px solid #e7e9ed;
}

body .ant-collapse.CollapsePanel>.ant-collapse-item>.ant-collapse-header .arrow {
    left: unset;
    right: 0;
    color: #c7c7c7;
}

body .ant-collapse-borderless.CollapsePanel>.ant-collapse-item {
    border: none;
}

body .ant-collapse-borderless.CollapsePanel .ant-collapse-content {
    padding-top: 10px;
}


/********************设置表单组件禁用背景色***开始*****************************/

body .ant-input-disabled,
body .ant-select-disabled .ant-select-selection {
    background-color: rgba(254,254,254,1);
}
.ant-input-disabled[mode="choseonly"][_disabled="false"]{
    color:rgba(0, 0, 0, 0.65);
}

body .ant-switch-disabled {
    cursor: not-allowed;
}

/********************设置表单组件禁用背景色***结束*****************************/


td .divColumnOperate {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    td .divColumnOperate button {
        height: 20px;
        line-height:20px;
        flex: 0 1 auto;
        margin: 7px 5px auto 5px;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }




body .anticon:before {
    /* 优先调用 sy-anticon 字体 */
    /*font-family: "anticon", "sy-anticon" !important;*/
    font-family: "iconfont" !important;
    /* 默认样式是这样
        font-family: "anticon" !important;
    */
}

/*容器样式*************************/

/******************************************** rowSingle:单行的Row布局  *********************/

html, body, :global(#root),body .divBody,body .divPage,body .divComponent,body .rowSingle {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}


.ContentWrapper {
    height: 100%;
}

:global(#divPopupComponentRoot) {
    width: 100%;
    height: 0px;
    position: relative;
}

body .divContent {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: auto;
}

/*************************覆盖Antd样式***开始**********************************/

.ant-menu-submenu.ant-menu-submenu-popup
{
background-color: #ffffff;
}
/******************滚动条***开始*****************/

* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #f1f1f1;
    cursor: pointer;
}

* ::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 4px;
}

* ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

/******************滚动条***结束*****************/

/******************Row Col***开始*****************/

body .ant-row {
    width: 100%;
}

body .ant-row [class^=ant-col-] {
    height: 100%;
}

/******************Row Col***结束*****************/

/******************模态窗口垂直居中***开始*****************/

body .ant-modal-wrap {
    display: -webkit-flex;
    align-items: center;
}

body .ant-modal-wrap > .ant-modal {
        top: 0px;
    }

/**********设置模态窗口confirm的确认按钮在左*************/

body .ant-modal-confirm .ant-modal-confirm-btns button {
    margin-left: 8px;
    padding: 0px 10px;
    float: right;
}

/******************模态窗口垂直居中***结束*****************/

/******************气泡确认框***开始*****************/

/**设置确认按钮在左**/

body .ant-popover .ant-popover-buttons {
    overflow: hidden;
}

body .ant-popover .ant-popover-buttons button {
    float: right;
}

/******************气泡确认框***结束*****************/



/*****************Layout***开始***************************/

body .ant-layout {
    width: 100%;
    height: 100%;
    background: unset;
}

body .ant-layout > .ant-layout-header {
        height: auto;
        max-height: 100%;
        line-height: unset;
        padding: 0px;
        background: unset;
    }

    body .ant-layout > .ant-layout-content {
        flex: 1;
        overflow: hidden;
    }

/*****************Layout***结束***************************/

/*------------------------------------------------------------------------------------*/

/*****************Form***开始***************************/

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children {
    width: 100%;
    height: 100%;
    display: block;
}

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker,
body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
        width: 100%;
    }

/*****************Form***结束***************************/

/*------------------------------------------------------------------------------------*/
/*****************提醒***开始***************************/

body .ant-notification {
    z-index: 10002 !important;
}

/*****************提醒***结束***************************/


/*****************右键菜单***开始***************************/

body .react-contextmenu-wrapper {
    width: 100%;
    height: 100%;
}

body .react-contextmenu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    color: #373a3c;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    outline: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease !important;
}

body .react-contextmenu.react-contextmenu--visible {
    opacity: 1;
    pointer-events: auto;
}

body .react-contextmenu-item {
    padding: 3px 10px;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
    cursor: pointer;
}

body .react-contextmenu-item i {
    margin: 0px 5px 0px 5px;
}

body .react-contextmenu-item.react-contextmenu-item--active,body  .react-contextmenu-item.react-contextmenu-item--selected {
    color: #fff;
    background-color: #20a0ff;
    border-color: #20a0ff;
    text-decoration: none;
}

body .react-contextmenu-item.react-contextmenu-item--disabled,body  .react-contextmenu-item.react-contextmenu-item--disabled:hover {
    color: #878a8c;
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item--divider {
    margin-bottom: 3px;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    cursor: inherit;
}

body .react-contextmenu-item--divider:hover {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item.react-contextmenu-submenu {
    padding: 0;
}

body .react-contextmenu-item.react-contextmenu-submenu>.react-contextmenu-item:after {
    content: "▶";
    display: inline-block;
    position: absolute;
    right: 7px;
}

.example-multiple-targets::after {
    content: attr(data-count);
    display: block;
}

/*****************右键菜单***结束***************************/

/*****************Progress页面进度条***开始***************************/

.divPageProgress .ant-progress {
    width: 100%;
    height: 100%;
    display: block;
}

    .divPageProgress .ant-progress > div {
        width: 100%;
        height: 100%;
        display: block;
    }

        .divPageProgress .ant-progress > div .ant-progress-outer {
            width: 100%;
            height: 100%;
            display: block;
        }

            .divPageProgress .ant-progress > div .ant-progress-outer .ant-progress-inner {
                width: 100%;
                height: 100%;
                display: block;
            }

/*****************Progress页面进度条***结束***************************/

/*****************按钮***开始***************************/

.divToolBar .btnToolBar {
    margin: 3px 5px 3px 5px;
}

/*****************按钮***结束***************************/

/*****************Card***开始***************************/

body .ant-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body .ant-card .ant-card-head {
        padding: 0 10px;
    }

    body .ant-card .ant-card-body {
        flex: 1;
        padding: unset;
    }

/*****************Card***结束***************************/

/*************************覆盖Antd样式***结束**********************************/

body .ant-btn {
    padding: 0 8px;
}

body .ant-btn.withoutIcon {
        padding: 0 16px;
    }

body .table-inline-tools .ant-btn {
    height: 20px;
}


body .ant-modal-footer {
    border: none;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, .1);
    background-color: #fafbfc;
    padding: 14px 16px;
}

body .ant-modal-header {
    border-bottom: 1px solid #c9d1fb;
}

body .ant-collapse.CollapsePanel .ant-collapse-item .ant-collapse-header {
    padding: 10px 5px;
    position: relative;
    color: #697ad4;
    border-bottom: 2px solid #e7e9ed;
}

body .ant-collapse.CollapsePanel>.ant-collapse-item>.ant-collapse-header .arrow {
    left: unset;
    right: 0;
    color: #c7c7c7;
}

body .ant-collapse-borderless.CollapsePanel>.ant-collapse-item {
    border: none;
}

body .ant-collapse-borderless.CollapsePanel .ant-collapse-content {
    padding-top: 10px;
}


/********************设置表单组件禁用背景色***开始*****************************/

body .ant-input-disabled,
body .ant-select-disabled .ant-select-selection {
    background-color: rgba(254,254,254,1);
}
.ant-input-disabled[mode="choseonly"][_disabled="false"]{
    color:rgba(0, 0, 0, 0.65);
}

body .ant-switch-disabled {
    cursor: not-allowed;
}

/********************设置表单组件禁用背景色***结束*****************************/


td .divColumnOperate {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    td .divColumnOperate button {
        height: 20px;
        line-height:20px;
        flex: 0 1 auto;
        margin: 7px 5px auto 5px;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }



.divEditCell___7aIUx {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 2px;
}

.divFormItemMessage___rnxFc {
  /*display: none;*/
}
 {
  /************���ñ�����ײ�margin��С**************/
  /************����RadioButton�Ĵ�����ʽ**************/
  /************����CheckboxGroup�Ĵ�����ʽ**************/
  /************����Switch�Ĵ�����ʽ**************/
}
.ant-form .ant-form-item.ant-form-item-with-tooltip {
  margin: 0px 0px 3px 0px;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-radio-group > .ant-radio-button-wrapper {
  color: #f5222d;
  border-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-radio-group > .ant-radio-button-wrapper:before {
  background-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-checkbox-group > .ant-checkbox-wrapper {
  color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-switch {
  background-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper > .has-error .ant-checkbox-group > .ant-checkbox-wrapper > .ant-checkbox > .ant-checkbox-inner {
  border-color: #f5222d;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-disabled, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-cascader-picker-disabled, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-radio-group .ant-radio-button-wrapper-disabled {
  cursor: default;
  color: rgba(0, 0, 0, 0.65);
  background-color: #f5f5f5 !important;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker, .ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
  width: 100%;
}
.ant-form .ant-form-item .ant-form-item-control-wrapper .ant-form-item-children .ant-input-disabled[mode="choseonly"][_disabled="false"] {
  background-color: #fff !important;
  color: rgba(0, 0, 0, 0.65);
  cursor: default;
}

/***********************没有Children的布局方式样式***********************************/
.__spinEmptyChildren {
    width: 100%;
    height: 100%;
    max-height: unset;
}

/***********************block布局方式样式***********************************/
.__spinDisplayBlock {
    width: 100%;
    height: 100%;
    position: relative;
}

.__spinDisplayBlock>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayBlock>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 2;
}

.__spinDisplayBlock>.ant-spin-container {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
}

.__spinDisplayBlock>.ant-spin-container::after {
    display: none;
}

/***********************flex的row布局方式样式***********************************/
.__spinDisplayFlexRow {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.__spinDisplayFlexRow>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayFlexRow>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 2;
}

.__spinDisplayFlexRow>.ant-spin-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}


/***********************flex的column布局方式样式***********************************/
.__spinDisplayFlexColumn {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.__spinDisplayFlexColumn>div:not(.ant-spin-container) {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0);
}

.__spinDisplayFlexColumn>div:not(.ant-spin-container)>.ant-spin-spinning {
    width: 100%;
    height: 100%;
    max-height: unset;
    z-index: 4;
}

.__spinDisplayFlexColumn>.ant-spin-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.__spinDisplayFlexColumn>.ant-spin-container::after {
    display: none;
}
.divImageBox___Ana2C {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ant-input-link{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: 'tnum', "tnum";
    position: relative;
    display: block;
    float: left;
    clear: both;
    width: 100%;
    height: 32px;
    padding: 4px 11px;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all 0.3s;
    outline: none;
}

.ant-input-link:not(.ant-input-link-disabled):focus{
    border-color: #40a9ff;
    border-right-width: 1px !important;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-input-link.ant-input-link-disabled{
    color: rgba(0, 0, 0, 0.25);
    background-color: #f5f5f5;
}
.divMessageBox___2Upa2 {
  width: 100%;
  height: auto;
  max-height: 40vh;
  padding-right: 16px;
  overflow: auto;
}
.divMessageRow___ZOL2t {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 26px;
  text-align: left;
}
.__platformMessageBox .ant-message .ant-message-notice-content {
  max-width: 100%;
  padding: 10px 0px 10px 16px;
}
.__platformMessageBox .ant-message .ant-message-custom-content {
  display: flex;
  flex-direction: row;
}
.__platformMessageBox .ant-message .ant-message-custom-content > i {
  flex: 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__platformMessageBox .ant-message .ant-message-custom-content > span {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.dialogWrap___iVc9z {
  position: absolute !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(50, 50, 50, 0.3);
  border-radius: 4px;
}
.dialogWrap___iVc9z .rc-dialog {
  pointer-events: auto;
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: unset;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-close {
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-close > .anticon-close {
  width: 38px;
  height: 38px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-header {
  flex: 0 0 auto;
  display: flex;
  padding: unset;
  height: auto;
  border-bottom: unset;
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-header > .rc-dialog-title {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-body {
  flex: 1;
  padding: unset;
  overflow: hidden;
  /*����chrome�Ͱ汾�����*/
  width: 100%;
  height: 100%;
}
.dialogWrap___iVc9z .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content > .rc-dialog-footer {
  flex: 0 0 auto;
  display: flex;
  padding: unset;
  height: auto;
  border: unset;
}
.dialogWrapAutoHeight___wk2Ku .rc-dialog > .rc-dialog-div-resize {
  height: auto;
}
.dialogWrapAutoHeight___wk2Ku .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box {
  height: auto;
}
.dialogWrapAutoHeight___wk2Ku .rc-dialog > .rc-dialog-div-resize > .rc-dialog-resize-box > .rc-dialog-content {
  height: auto;
}
.dialogBox___zmuiQ {
  width: 100%;
  margin: unset !important;
}
.divModalContent___tNUAr {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: auto;
}
/*******************modalRender���***************************/
.divResizeBox___gLu4w {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: unset;
}
/*******************dragHandle���***************************/
.divDragHandle___kwu0V {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.divDragHandle___kwu0V:hover {
  cursor: all-scroll;
}
/*******************title���***************************/
.divDialogTitle___IWOPb {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0px 10px;
  min-height: 38px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #e8e8e8;
}
/*******************footer���***************************/
.divDialogFooter___\+Z7b7 {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
}
.divDialogFooter___\+Z7b7 .ant-btn {
  padding: 0px 12px;
}
.divDialogFooter___\+Z7b7 button + button {
  margin-left: 10px;
}

.divResize___Xm-2c {
  width: 100%;
  height: 100%;
}

.divPageProgress___q3nCg {
  width: 100%;
  height: 3px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}

.antdSelect___w1bMf .ant-select-selection__rendered > .ant-select-selection__placeholder {
  width: 100%;
}
.divDropdownRender___Qbfok {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.divDropdownRender___Qbfok > .divDropdownMenu___SE6qL {
  flex: 1;
}
.divDropdownRender___Qbfok > .divSelectAll___9-o-9 {
  border-top: 1px solid #e8e8e8;
  flex: 0 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.divDropdownRender___Qbfok > .divSelectAll___9-o-9 > .divSelectAllCheckbox___ypLUt {
  flex: 0 0 30px;
  display: flex;
  justify-content: center;
  padding-left: 5px;
}
.divDropdownRender___Qbfok > .divSelectAll___9-o-9 > .divSelectAllText___Zeavh {
  flex: 1;
  cursor: pointer;
}

.fit-tabs{
    height:100%;
    display: flex;
    flex-direction:column;
}
.fit-tabs .ant-tabs-bar{
    flex:0 0 auto;
}
.fit-tabs .ant-tabs-content{
    flex:1 1;
}
#divHoverTitleContent {
    width: auto;
    min-width: 40px;
    max-width: 400px;
    height: auto;
    min-height: 26px;
    max-height: 300px;
    line-height: 1.4;
    padding: 6px 10px 6px 10px;
    background: rgba(30,30,30,0.8);
    color: rgba(240,240,240,1);
    border-radius: 4px;
    border: 1px solid rgba(100,100,100,0.8);
    z-index: 10005;
    display: none;
    position: absolute;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(40,40,40,0.8);
    font-family: Consolas;
    font-size: 12px;
    word-break: break-all;
    overflow: hidden;
}

#divHoverTitleContentHidden {
    width: auto;
    min-width: 40px;
    max-width: 400px;
    height: auto;
    min-height: 26px;
    max-height: 300px;
    line-height: 1.4;
    padding: 6px 10px 6px 10px;
    background: rgba(30,30,30,0.7);
    color: rgba(240,240,240,1);
    border-radius: 4px;
    border: 1px solid rgba(100,100,100,0.8);
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    box-shadow: 2px 2px 6px rgba(40,40,40,0.8);
    font-family: Consolas;
    font-size: 12px;
    word-break: break-all;
    overflow: hidden;
}

.choice_invoice_popup___aEd75 .invoice_select_hightLight___p4o0O {
  background: aquamarine !important;
}
.invoice_split_content___yT5OQ .ant-tabs {
  height: 100%;
}
.invoice_split_content___yT5OQ .ant-tabs .ant-tabs-top-content.ant-tabs-content-animated,
.invoice_split_content___yT5OQ .ant-tabs .ant-tabs-bottom-content.ant-tabs-content-animated {
  height: calc(100% - 65px);
}
.invoice_table_action___6kd-V {
  display: flex;
  align-items: center;
  justify-content: center;
}
.invoice_table_action___6kd-V .action_btn___OYBQA {
  font-size: 16px;
  margin: 0 4px 0 0 !important;
  padding: 0;
  width: 20px;
}

.choice_invoice_popup___MxVZ- .invoice_select_hightLight___mkFJL {
  background: aquamarine !important;
}
.invoice_split_content___3jKqK .ant-tabs {
  height: 100%;
}
.invoice_split_content___3jKqK .ant-tabs .ant-tabs-top-content.ant-tabs-content-animated,
.invoice_split_content___3jKqK .ant-tabs .ant-tabs-bottom-content.ant-tabs-content-animated {
  height: calc(100% - 65px);
}
.invoice_table_action___h9MsJ {
  display: flex;
  align-items: center;
  justify-content: center;
}
.invoice_table_action___h9MsJ .action_btn___dO5j2 {
  font-size: 16px;
  margin: 0 4px 0 0 !important;
  padding: 0;
  width: 20px;
}
.invoice_push_modal_content___6CvjX .ant-collapse-header {
  background: #fafafa;
}
.invoice_push_modal_content___6CvjX .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  left: 16px !important;
  right: unset !important;
  color: inherit !important;
}

.red___ZujrH {
  background: #ff6666 !important;
}
.yellow___WVltn {
  background: #ffff80 !important;
}
.contractTable_className___oo\+dW .error_contract_row {
  background-color: #ff6666 !important;
  background: #ff6666 !important;
}
.contractTable_className___oo\+dW .warn_contract_row {
  background-color: #ffff80 !important;
  background: #ffff80 !important;
}
.contractTable_className___oo\+dW .tablex-table .tablex-table-row.tablex__row--selected.error_contract_row,
.contractTable_className___oo\+dW .tablex-table .tablex-table-row.tablex__row--selected .tablex-table-row-cell-rowspan.error_contract_row {
  background-color: #ff6666 !important;
  background: #ff6666 !important;
}
.contractTable_className___oo\+dW .tablex-table .tablex-table-row.tablex__row--selected.warn_contract_row,
.contractTable_className___oo\+dW .tablex-table .tablex-table-row.tablex__row--selected .tablex-table-row-cell-rowspan.warn_contract_row {
  background-color: #ffff80 !important;
  background: #ffff80 !important;
}

.debt_payment_table_inputNum___24ifL .ant-input-number-handler-wrap {
  display: none;
}

.business_travel_details_icon___jWADs {
  cursor: pointer;
  color: #40a9ff;
  font-size: 16px;
}

.salary_table .salary_expand_table .tablex-table-head-cell, .salary_table .salary_expand_table .tablex-table-head-group-cell {
  background: #ddd !important;
}
.salary_table .salary_table_row {
  background: #fbdb9b !important;
}


body .anticon:before {
    /* 优先调用 sy-anticon 字体 */
    /*font-family: "anticon", "sy-anticon" !important;*/
    font-family: "iconfont" !important;
    /* 默认样式是这样
        font-family: "anticon" !important;
    */
}

/*容器样式*************************/

/******************************************** rowSingle:单行的Row布局  *********************/

html, body, :global(#root),body .divBody,body .divPage,body .divComponent,body .rowSingle {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}


.ContentWrapper {
    height: 100%;
}

:global(#divPopupComponentRoot) {
    width: 100%;
    height: 0px;
    position: relative;
}

body .divContent {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: auto;
}

/*************************覆盖Antd样式***开始**********************************/

.ant-menu-submenu.ant-menu-submenu-popup
{
background-color: #ffffff;
}
/******************滚动条***开始*****************/

* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #f1f1f1;
    cursor: pointer;
}

* ::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 4px;
}

* ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

/******************滚动条***结束*****************/

/******************Row Col***开始*****************/

body .ant-row {
    width: 100%;
}

body .ant-row [class^=ant-col-] {
    height: 100%;
}

/******************Row Col***结束*****************/

/******************模态窗口垂直居中***开始*****************/

body .ant-modal-wrap {
    display: -webkit-flex;
    align-items: center;
}

body .ant-modal-wrap > .ant-modal {
        top: 0px;
    }

/**********设置模态窗口confirm的确认按钮在左*************/

body .ant-modal-confirm .ant-modal-confirm-btns button {
    margin-left: 8px;
    padding: 0px 10px;
    float: right;
}

/******************模态窗口垂直居中***结束*****************/

/******************气泡确认框***开始*****************/

/**设置确认按钮在左**/

body .ant-popover .ant-popover-buttons {
    overflow: hidden;
}

body .ant-popover .ant-popover-buttons button {
    float: right;
}

/******************气泡确认框***结束*****************/



/*****************Layout***开始***************************/

body .ant-layout {
    width: 100%;
    height: 100%;
    background: unset;
}

body .ant-layout > .ant-layout-header {
        height: auto;
        max-height: 100%;
        line-height: unset;
        padding: 0px;
        background: unset;
    }

    body .ant-layout > .ant-layout-content {
        flex: 1;
        overflow: hidden;
    }

/*****************Layout***结束***************************/

/*------------------------------------------------------------------------------------*/

/*****************Form***开始***************************/

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children {
    width: 100%;
    height: 100%;
    display: block;
}

body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-calendar-picker,
body .ant-form .ant-form-item-control-wrapper .ant-form-item-children .ant-input-number {
        width: 100%;
    }

/*****************Form***结束***************************/

/*------------------------------------------------------------------------------------*/
/*****************提醒***开始***************************/

body .ant-notification {
    z-index: 10002 !important;
}

/*****************提醒***结束***************************/


/*****************右键菜单***开始***************************/

body .react-contextmenu-wrapper {
    width: 100%;
    height: 100%;
}

body .react-contextmenu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    color: #373a3c;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    outline: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease !important;
}

body .react-contextmenu.react-contextmenu--visible {
    opacity: 1;
    pointer-events: auto;
}

body .react-contextmenu-item {
    padding: 3px 10px;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
    cursor: pointer;
}

body .react-contextmenu-item i {
    margin: 0px 5px 0px 5px;
}

body .react-contextmenu-item.react-contextmenu-item--active,body  .react-contextmenu-item.react-contextmenu-item--selected {
    color: #fff;
    background-color: #20a0ff;
    border-color: #20a0ff;
    text-decoration: none;
}

body .react-contextmenu-item.react-contextmenu-item--disabled,body  .react-contextmenu-item.react-contextmenu-item--disabled:hover {
    color: #878a8c;
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item--divider {
    margin-bottom: 3px;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    cursor: inherit;
}

body .react-contextmenu-item--divider:hover {
    background-color: transparent;
    border-color: rgba(0, 0, 0, .15);
}

body .react-contextmenu-item.react-contextmenu-submenu {
    padding: 0;
}

body .react-contextmenu-item.react-contextmenu-submenu>.react-contextmenu-item:after {
    content: "▶";
    display: inline-block;
    position: absolute;
    right: 7px;
}

.example-multiple-targets::after {
    content: attr(data-count);
    display: block;
}

/*****************右键菜单***结束***************************/

/*****************Progress页面进度条***开始***************************/

.divPageProgress .ant-progress {
    width: 100%;
    height: 100%;
    display: block;
}

    .divPageProgress .ant-progress > div {
        width: 100%;
        height: 100%;
        display: block;
    }

        .divPageProgress .ant-progress > div .ant-progress-outer {
            width: 100%;
            height: 100%;
            display: block;
        }

            .divPageProgress .ant-progress > div .ant-progress-outer .ant-progress-inner {
                width: 100%;
                height: 100%;
                display: block;
            }

/*****************Progress页面进度条***结束***************************/

/*****************按钮***开始***************************/

.divToolBar .btnToolBar {
    margin: 3px 5px 3px 5px;
}

/*****************按钮***结束***************************/

/*****************Card***开始***************************/

body .ant-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body .ant-card .ant-card-head {
        padding: 0 10px;
    }

    body .ant-card .ant-card-body {
        flex: 1;
        padding: unset;
    }

/*****************Card***结束***************************/

/*************************覆盖Antd样式***结束**********************************/

body .ant-btn {
    padding: 0 8px;
}

body .ant-btn.withoutIcon {
        padding: 0 16px;
    }

body .table-inline-tools .ant-btn {
    height: 20px;
}


body .ant-modal-footer {
    border: none;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, .1);
    background-color: #fafbfc;
    padding: 14px 16px;
}

body .ant-modal-header {
    border-bottom: 1px solid #c9d1fb;
}

body .ant-collapse.CollapsePanel .ant-collapse-item .ant-collapse-header {
    padding: 10px 5px;
    position: relative;
    color: #697ad4;
    border-bottom: 2px solid #e7e9ed;
}

body .ant-collapse.CollapsePanel>.ant-collapse-item>.ant-collapse-header .arrow {
    left: unset;
    right: 0;
    color: #c7c7c7;
}

body .ant-collapse-borderless.CollapsePanel>.ant-collapse-item {
    border: none;
}

body .ant-collapse-borderless.CollapsePanel .ant-collapse-content {
    padding-top: 10px;
}


/********************设置表单组件禁用背景色***开始*****************************/

/* body .ant-input-disabled,
body .ant-select-disabled .ant-select-selection {
    background-color: rgba(254,254,254,1);
} */
.ant-input-disabled[mode="choseonly"][_disabled="false"]{
    color:rgba(0, 0, 0, 0.65);
}

body .ant-switch-disabled {
    cursor: not-allowed;
}

/********************设置表单组件禁用背景色***结束*****************************/


td .divColumnOperate {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    td .divColumnOperate button {
        height: 20px;
        line-height:20px;
        flex: 0 1 auto;
        margin: 7px 5px auto 5px;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }




