@hb-hellotech/hb-ui 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/App.d.ts.map +1 -1
- package/dist/components/func_comp/hb_func_comp_tree/src/tree.d.ts.map +1 -1
- package/dist/components/func_comp/hb_func_file_preview/index.d.ts +6 -0
- package/dist/components/func_comp/hb_func_file_preview/index.d.ts.map +1 -1
- package/dist/components/func_comp/hb_func_file_preview/src/file_preview.d.ts +2 -0
- package/dist/components/func_comp/hb_func_file_preview/src/file_preview.d.ts.map +1 -1
- package/dist/components/func_comp/index.d.ts +1 -2
- package/dist/components/func_comp/index.d.ts.map +1 -1
- package/dist/demo/hb_file_preview.d.ts.map +1 -1
- package/dist/hb_component_lib.css +1 -1
- package/dist/hb_component_lib.js +2534 -2640
- package/dist/hb_component_lib.umd.cjs +3 -4
- package/dist/main.d.ts.map +1 -1
- package/package.json +26 -14
- package/dist/components/func_comp/hb_func_file_preview_safe/index.d.ts +0 -44
- package/dist/components/func_comp/hb_func_file_preview_safe/index.d.ts.map +0 -1
- package/dist/components/func_comp/hb_func_file_preview_safe/src/file_preview.d.ts +0 -44
- package/dist/components/func_comp/hb_func_file_preview_safe/src/file_preview.d.ts.map +0 -1
- package/dist/components/func_comp/hb_func_file_preview_safe/src/type.d.ts +0 -4
- package/dist/components/func_comp/hb_func_file_preview_safe/src/type.d.ts.map +0 -1
- package/dist/demo/HbFileViewSafe.d.ts +0 -4
- package/dist/demo/HbFileViewSafe.d.ts.map +0 -1
package/dist/App.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../src/App.vue"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../src/App.vue"],"names":[],"mappings":";;AA0UA,wBAMG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tree.
|
|
1
|
+
{"version":3,"file":"tree.d.ts","sourceRoot":"","sources":["../../../../../src/components/func_comp/hb_func_comp_tree/src/tree.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAErD,MAAM,MAAM,GAAG,GAAG,MAAM,GAAG,MAAM,CAAA;AAEjC,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,GAAG,CAAA;IACX,GAAG,CAAC,EAAE,GAAG,CAAA;IACT,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAA;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACvB;AAGD,MAAM,WAAW,SAAU,SAAQ,QAAQ,CAAC,WAAW,CAAC;IACtD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,CAAC,EAAE,GAAG,GAAG,IAAI,CAAA;IACtB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,WAAW,CAAA;CACzB;AACD,eAAO,MAAM,UAAU;;uBAGJ,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;uBAwBvB,QAAQ,CAAC,GAAG,EAAE,CAAC;;;;;;;;;;;;;;CAsBxB,CAAA;AAEV,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,gBAAgB,CAAC,OAAO,UAAU,CAAC,CAAC,CAAA"}
|
|
@@ -7,6 +7,7 @@ declare const HbLibFilePreview: WithInstall<{
|
|
|
7
7
|
file: File;
|
|
8
8
|
fileName: string;
|
|
9
9
|
mobile: boolean;
|
|
10
|
+
needSafe: boolean;
|
|
10
11
|
previewVisible: boolean;
|
|
11
12
|
showAttachmentNav: boolean;
|
|
12
13
|
hasPrevAttachment: boolean;
|
|
@@ -19,6 +20,7 @@ declare const HbLibFilePreview: WithInstall<{
|
|
|
19
20
|
readonly file?: File | undefined;
|
|
20
21
|
readonly fileName?: string | undefined;
|
|
21
22
|
readonly mobile?: boolean | undefined;
|
|
23
|
+
readonly needSafe?: boolean | undefined;
|
|
22
24
|
readonly previewVisible?: boolean | undefined;
|
|
23
25
|
readonly showAttachmentNav?: boolean | undefined;
|
|
24
26
|
readonly hasPrevAttachment?: boolean | undefined;
|
|
@@ -40,6 +42,7 @@ declare const HbLibFilePreview: WithInstall<{
|
|
|
40
42
|
file: File;
|
|
41
43
|
fileName: string;
|
|
42
44
|
mobile: boolean;
|
|
45
|
+
needSafe: boolean;
|
|
43
46
|
previewVisible: boolean;
|
|
44
47
|
showAttachmentNav: boolean;
|
|
45
48
|
hasPrevAttachment: boolean;
|
|
@@ -52,6 +55,7 @@ declare const HbLibFilePreview: WithInstall<{
|
|
|
52
55
|
readonly file?: File | undefined;
|
|
53
56
|
readonly fileName?: string | undefined;
|
|
54
57
|
readonly mobile?: boolean | undefined;
|
|
58
|
+
readonly needSafe?: boolean | undefined;
|
|
55
59
|
readonly previewVisible?: boolean | undefined;
|
|
56
60
|
readonly showAttachmentNav?: boolean | undefined;
|
|
57
61
|
readonly hasPrevAttachment?: boolean | undefined;
|
|
@@ -70,6 +74,7 @@ declare const HbLibFilePreview: WithInstall<{
|
|
|
70
74
|
file: File;
|
|
71
75
|
fileName: string;
|
|
72
76
|
mobile: boolean;
|
|
77
|
+
needSafe: boolean;
|
|
73
78
|
previewVisible: boolean;
|
|
74
79
|
showAttachmentNav: boolean;
|
|
75
80
|
hasPrevAttachment: boolean;
|
|
@@ -82,6 +87,7 @@ declare const HbLibFilePreview: WithInstall<{
|
|
|
82
87
|
readonly file?: File | undefined;
|
|
83
88
|
readonly fileName?: string | undefined;
|
|
84
89
|
readonly mobile?: boolean | undefined;
|
|
90
|
+
readonly needSafe?: boolean | undefined;
|
|
85
91
|
readonly previewVisible?: boolean | undefined;
|
|
86
92
|
readonly showAttachmentNav?: boolean | undefined;
|
|
87
93
|
readonly hasPrevAttachment?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/func_comp/hb_func_file_preview/index.ts"],"names":[],"mappings":";;AAGA,QAAA,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/func_comp/hb_func_file_preview/index.ts"],"names":[],"mappings":";;AAGA,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA2B,CAAC;AAElD,eAAe,gBAAgB,CAAC;AAEhC,MAAM,MAAM,wBAAwB,GAAG,YAAY,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
|
@@ -10,6 +10,7 @@ declare const __VLS_component: DefineComponent<{}, {
|
|
|
10
10
|
file: File;
|
|
11
11
|
fileName: string;
|
|
12
12
|
mobile: boolean;
|
|
13
|
+
needSafe: boolean;
|
|
13
14
|
previewVisible: boolean;
|
|
14
15
|
showAttachmentNav: boolean;
|
|
15
16
|
hasPrevAttachment: boolean;
|
|
@@ -22,6 +23,7 @@ declare const __VLS_component: DefineComponent<{}, {
|
|
|
22
23
|
readonly file?: File | undefined;
|
|
23
24
|
readonly fileName?: string | undefined;
|
|
24
25
|
readonly mobile?: boolean | undefined;
|
|
26
|
+
readonly needSafe?: boolean | undefined;
|
|
25
27
|
readonly previewVisible?: boolean | undefined;
|
|
26
28
|
readonly showAttachmentNav?: boolean | undefined;
|
|
27
29
|
readonly hasPrevAttachment?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file_preview.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/func_comp/hb_func_file_preview/src/file_preview.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"file_preview.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/func_comp/hb_func_file_preview/src/file_preview.vue"],"names":[],"mappings":";AAwTA;wBAg7DqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;2OAQG"}
|
|
@@ -4,6 +4,5 @@ import { default as HbLibSort } from './hb_func_comp_sort';
|
|
|
4
4
|
import { default as HbUiConfig } from './hb_ui_config';
|
|
5
5
|
import { default as HbLibLoading } from './hb_func_loading';
|
|
6
6
|
import { default as HbLibFilePreview } from './hb_func_file_preview';
|
|
7
|
-
|
|
8
|
-
export { HbLibCopy, HbLibSort, HbDragInstall as HbLibFuncCompDrag, HbUiConfig, HbLibLoading, HbLibFilePreview, HbLibFilePreviewSafe, };
|
|
7
|
+
export { HbLibCopy, HbLibSort, HbDragInstall as HbLibFuncCompDrag, HbUiConfig, HbLibLoading, HbLibFilePreview, };
|
|
9
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/func_comp/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,aAAa,MAAM,qBAAqB,CAAC;AAChD,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,UAAU,MAAM,gBAAgB,CAAC;AACxC,OAAO,YAAY,MAAM,mBAAmB,CAAC;AAC7C,OAAO,gBAAgB,MAAM,wBAAwB,CAAC;AACtD,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/func_comp/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,aAAa,MAAM,qBAAqB,CAAC;AAChD,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,UAAU,MAAM,gBAAgB,CAAC;AACxC,OAAO,YAAY,MAAM,mBAAmB,CAAC;AAC7C,OAAO,gBAAgB,MAAM,wBAAwB,CAAC;AACtD,OAAO,EACH,SAAS,EACT,SAAS,EACT,aAAa,IAAI,iBAAiB,EAClC,UAAU,EACV,YAAY,EACZ,gBAAgB,GACnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hb_file_preview.vue.d.ts","sourceRoot":"","sources":["../../src/demo/hb_file_preview.vue"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"hb_file_preview.vue.d.ts","sourceRoot":"","sources":["../../src/demo/hb_file_preview.vue"],"names":[],"mappings":";;AAsVA,wBAMG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-657502f3]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-sfcm[data-v-657502f3] .ant-modal-header{border-bottom:1px solid var(--hb-border-color);margin-bottom:var(--hb-space)}.hb-sfcm__title[data-v-657502f3]{font-size:var(--hb-h1-font-size);font-weight:700;color:var(--hb-title-color)}.hb-sfcm__title__tip[data-v-657502f3]{margin-right:var(--hb-space);padding-left:var(--hb-space);color:#080808;font-size:16px;font-weight:500;position:relative}.hb-sfcm__title__tip[data-v-657502f3]:before{content:"";width:6px;height:14px;background:var(--hb-theme-color);position:absolute;top:50%;left:0;transform:translateY(-50%);border-radius:var(--hb-border-radius)}.hb-sfcm__show__tag[data-v-657502f3]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__show__tag__item[data-v-657502f3]{float:left;margin-right:var(--hb-space);padding:2px 9px;background:var(--hb-theme-color);color:#fff;border:1px solid var(--hb-theme-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:move;-webkit-user-select:none;user-select:none;display:flex;align-items:center}.hb-sfcm__show__tag__item.is-linked[data-v-657502f3]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-fixed[data-v-657502f3]{background:none;color:#9ca3af;border:1px solid var(--hb-border-color);cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-657502f3]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-657502f3]:hover{background:#ff7875;border-color:#ff7875}.hb-sfcm__unshow__tag[data-v-657502f3]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__unshow__tag__item[data-v-657502f3]{position:relative;float:left;margin-right:var(--hb-space);padding:2px 9px;color:#9ca3af;border:1px solid var(--hb-border-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:pointer;-webkit-user-select:none;user-select:none}.hb-sfcm__unshow__tag__item.is-linked[data-v-657502f3]{color:#ff7875;border-color:#ff7875}.hb-sfcm__show__tag__item-close[data-v-657502f3]{margin-left:6px;cursor:pointer}.hb-sfcm__show__tag__item-close[data-v-657502f3]:hover{transform:scale(1.3)}.hb-sfcm__unshow__tag__item-add[data-v-657502f3]{position:absolute;width:100%;height:100%;top:0;left:0;background:#1a1818;color:#fff;text-align:center;display:flex;align-items:center;justify-content:center;border-radius:var(--hb-border-radius)}.hb-sfcm__unshow__tag__empty[data-v-657502f3]{text-align:center;color:var(--hb-border-color)}[data-v-f513ff59]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.isNeedFooterCss[data-v-f513ff59]{flex-direction:column}.hb-form[data-v-f513ff59] .ant-form-item{margin-bottom:var(--hb-form-space)}.hb-form .hb-form__footer[data-v-f513ff59]{display:flex;justify-content:space-between;margin-top:-6px}.hb-lib-form--container[data-v-f513ff59]{overflow:hidden;margin:6px}.hide[data-v-f513ff59]{height:0}.hb-form__form-item-col[data-v-f513ff59]{flex:0 0 auto;min-width:200px;width:auto;padding-right:var(--hb-space);margin-bottom:16px}.form-footer[data-v-f513ff59]{display:flex;align-items:center;margin-bottom:10px}.scheme-fontWeight[data-v-f513ff59]{font-weight:600}.form-collapse-enter-active,.form-collapse-leave-active{transition:height .2s ease;overflow:hidden}.form-collapse-enter-from,.form-collapse-leave-to{height:0}.hb-lib-form-svg{margin-right:13px;cursor:pointer;display:flex;align-items:center}.hb-lib-form-svg .icon{width:18px;height:20px}.hb-form-item-ui .ant-form-item.hb-lib-form-item-border--unneed{border:none!important}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll{height:auto!important}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll .ant-select-selection-overflow{flex-wrap:wrap;max-width:373px}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll .ant-form-item-control-input-content{max-width:373px}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll .ant-select-show-arrow{height:var(--hb-f-item-height)!important}.hb-form__footer__right{display:flex;align-items:center;justify-content:space-between;min-width:206px}.ant-row[sublabel] .ant-form-item-label label,.ant-row[sublabellanguage] .ant-form-item-label label{display:none!important}[data-v-c7cd0710]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-act-item[data-v-c7cd0710]{margin-right:var(--hb-space)}[data-v-40c1a746]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-btns-box[data-v-40c1a746]{display:flex;justify-content:space-between;align-items:center;background:#fff;padding:5px 5px 0;margin-top:5px;border-radius:6px 6px 0 0}.hb-lib-list-btns-box .hb-lib-list-btns-right[data-v-40c1a746]{display:flex;align-items:center}.hb-lib-list-btns-act-svg[data-v-40c1a746]{cursor:pointer;width:21px;height:21px;display:inline-block}.hb-lib-list-btns-act-svg .icon[data-v-40c1a746]{width:100%;height:100%}.hb-lib-list-btns-act-open[data-v-40c1a746]{cursor:pointer;width:21px;height:21px;display:flex;justify-content:center;align-items:center}.hb-lib-list-btns-act-open .icon[data-v-40c1a746]{width:100%;height:100%}.hb-lib-list-btns-item[data-v-40c1a746]:not(:last-child){margin-right:10px}.hb-lib-list-btns-left[data-v-40c1a746]{display:flex;align-items:center}.flex-between[data-v-87177371]{display:flex;justify-content:space-between;align-items:center}.flex-center[data-v-87177371]{display:flex;align-items:center}.hb-lib-selector-wrapper[data-v-87177371]{position:relative}.hb-lib-selector-wrapper .ant-input[data-v-87177371]{cursor:pointer}.has-prefix[data-v-87177371]:before{content:attr(data-prefix);position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#262626;font-size:14px;white-space:nowrap;pointer-events:none;z-index:1}.has-prefix[data-v-87177371] .ant-select-selector{padding-left:calc(12px + var(--prefix-width, 0px))}.has-prefix[data-v-87177371] .ant-select-selection-placeholder{padding-left:var(--prefix-width, 0px)}.hb-lib-selector-dropdown[data-v-87177371]{padding:8px;min-width:200px}.hb-lib-selector-search[data-v-87177371]{margin-bottom:8px}.hb-lib-selector-list[data-v-87177371]{max-height:200px;overflow-y:auto}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar{width:6px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.hb-lib-selector-option[data-v-87177371]{display:flex;align-items:center;padding:8px;cursor:pointer;border-radius:4px;transition:all .2s ease;gap:8px}.hb-lib-selector-option[data-v-87177371]:hover{background-color:#f5f5f5}.hb-lib-selector-option.selected[data-v-87177371]{background-color:#e6f7ff}.hb-lib-option-content[data-v-87177371]{flex:1}.hb-lib-option-label[data-v-87177371]{font-weight:500;color:#262626}.hb-lib-selector-empty[data-v-87177371]{text-align:center;color:#bfbfbf;padding:20px 0;font-size:14px}.hb-lib-selector-footer[data-v-87177371]{border-top:1px solid #f0f0f0;padding-top:8px;margin-top:8px;display:flex;justify-content:space-between;align-items:center}.hb-lib-footer-buttons[data-v-87177371]{display:flex;gap:8px}.selector-tag[data-v-87177371]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.selector-tag .tag-label[data-v-87177371]{font-weight:500}.selector-tag .tag-description[data-v-87177371]{margin-left:4px;font-size:12px;opacity:.8}.rotate-180[data-v-87177371]{transform:rotate(180deg)}.transition-transform[data-v-87177371]{transition:transform .2s}.hb-lib-search-tag[data-v-87177371]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.hb-lib-search-tag__description[data-v-87177371]{margin-left:4px;font-size:12px;opacity:.8}.hb-lib-multipleSelectModal-modal .ant-table-filter-trigger{font-size:18px!important}.hb-lib-multipleSelectModal-modal .ant-input-group-addon{border:none!important;cursor:pointer}.hb-lib-multipleSelectModal-modal .ant-modal-body{padding:calc(var(--hb-space) / 2)}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-column-title{color:#000;font-weight:bolder;font-size:18px}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-cell{color:#000;font-weight:bolder;font-size:18px;padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-row .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-form-item-filter-modal-search{padding:8px}.hb-lib-form-item-filter-modal-search-input{width:188px;margin-bottom:8px;display:block}.hb-lib-form-item-filter-modal-buttons{display:flex;justify-content:space-between;margin-top:10px}.hb-lib-table-act-box[data-v-25fd055e]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px}.hb-lib-table-act-box .hb-lib-table-main-action[data-v-25fd055e],.hb-lib-table-act-box .hb-lib-table-more-action[data-v-25fd055e]{text-decoration:none}.hb-lib-table-act-box .hb-lib-table-more-action[data-v-25fd055e]{display:inline-flex;align-items:center}.hb-lib-table-act-box[data-v-25fd055e] .ant-divider:not(:has(+a)){display:none}.hb-lib-table-confirm-modal-content[data-v-25fd055e]{font-size:16px}.hb-lib-table-act-box .ant-divider-vertical{margin:0}.ant-dropdown-menu-title-content>a:hover{color:var(--hb-theme-color)!important}.hb-lib-list-table[data-v-4a8b9aaa]{background:#fff;padding:0 5px;border-radius:0 0 6px 6px}.hb-lib-list-table[data-v-4a8b9aaa] .copy-text-eyevue.ab{position:relative!important;right:0!important;top:0!important}.hb-lib-list-table-act[data-v-4a8b9aaa]{display:flex;justify-content:space-between;align-items:center}.nowrap-table[data-v-4a8b9aaa] .ant-table-tbody>.ant-table-row>td{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;height:var(--hb-lib-table-td-height)!important;box-sizing:content-box}[data-v-07a63550]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.ant-alert[data-v-07a63550]{box-sizing:border-box;margin:0;color:#000000a6;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:8px 15px 8px 37px;word-wrap:break-word;border-radius:var(--hb-border-radius);border:1px solid #ffb27a;background-color:#fff2e6}.ant-alert .com-alert[data-v-07a63550]{display:flex;justify-content:space-between;width:100%;align-items:center}.ant-alert .com-alert a[data-v-07a63550]{color:#ff5000}.select-all-container[data-v-07a63550]{padding:8px 0}.hb-lib-table-setting-box[data-v-07a63550]{display:flex}.hb-lib-table-set-drag[data-v-07a63550]{max-height:300px;overflow-y:auto}.hb-lib-table-drag-item[data-v-07a63550]{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;border:1px solid #f0f0f0;margin-bottom:4px;background-color:#fff;border-radius:var(--hb-border-radius);width:280px}.hb-lib-table-drag-item[data-v-07a63550]:hover{background-color:#f5f5f5}.hb-lib-table-drag-item .drag-handle[data-v-07a63550]{cursor:move;color:#999;padding:4px;-webkit-user-select:none;user-select:none}.ghost[data-v-07a63550]{opacity:.5;background:#c8ebfb}.table-setting-checkbox-group[data-v-07a63550]{display:flex;flex-wrap:wrap}.table-setting-checkbox-group[data-v-07a63550] .ant-checkbox-group-item{margin-right:0;width:33.33%}.hb-lib-table-set-btn-group[data-v-07a63550]{margin-top:10px;display:flex;justify-content:end;align-items:center;border-top:1px solid #f0f0f0;padding-top:8px}.drag-hide[data-v-07a63550]{visibility:hidden}.hb-lib-table-drag-item-act-btn[data-v-07a63550]{display:inline-block;cursor:pointer;width:14px;height:20px}.hb-lib-table-drag-item-act-btn .icon[data-v-07a63550]{width:100%;height:100%}.hb-lib-table-col-set[data-v-07a63550]{display:inline-block;cursor:pointer;width:22px;height:23px}.hb-lib-table-col-set .icon[data-v-07a63550]{width:100%;height:100%}.hb-lib-table-drag-item-act[data-v-07a63550]{display:flex;align-items:center;width:40px;justify-content:space-between}.column_setting_popover{width:auto!important}.hb_lib_form_tooltip_select[data-v-13285691]{width:100%}.hb_lib_form_tooltip_select__option[data-v-13285691]{display:inline-flex;align-items:center;gap:4px}.hb_lib_form_tooltip_select__option.is-ellipsis[data-v-13285691]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hb_lib_form_tooltip_select__dropdown .ant-select-item-option-content{display:flex;align-items:center;gap:4px}.hb_import_btn[data-v-a11cda0f]{text-align:center;margin:0}[data-v-ac23253c]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.log_remark[data-v-ac23253c]{width:85%}.hb_lib_log_modal_content[data-v-ac23253c]{padding:var(--hb-space) 0}.__module-card[data-v-4d8c1b1b]{margin-bottom:6px}.modal__module-card[data-v-4d8c1b1b]{margin-bottom:0}.hb_card[data-v-4d8c1b1b]{box-shadow:var(--box-shadow-base);border-radius:4px;border:1px solid #f3f4f6;background-color:#fff;overflow:hidden;color:#1f2837;-webkit-transition:.3s;transition:.3s;padding-bottom:6px}.hb_card_header[data-v-4d8c1b1b]{padding:6px;box-sizing:border-box}.hb_fix[data-v-4d8c1b1b]{display:flex;justify-content:space-between;align-items:center}.hb_fix .hb_card_header-title[data-v-4d8c1b1b]{display:inline-flex;align-items:center;font-weight:700;font-size:13px;color:#374151bf}.hb_fix .hb_card_header-title[data-v-4d8c1b1b]:before{content:"";margin-right:8px;background:var(--hb-theme-color);display:inline-block;width:4px;height:14px}.hb_card_body[data-v-4d8c1b1b]{padding:0 6px}.hb_card_form[data-v-4d8c1b1b]{display:grid;grid-template-columns:repeat(4,1fr);gap:0 22px}.hb_card_form[data-v-4d8c1b1b] .ant-form-item{width:100%!important;margin-bottom:5px;margin-right:0}.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_2{grid-column:span 2}.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_3{grid-column:span 3}.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_4,.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_all{grid-column:span 4}@media screen and (max-width:1600px){.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_all{grid-column:span 3}}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-label{padding:0 0 2px!important}@media screen and (max-width:1600px){.hb_card_form[data-v-4d8c1b1b]{grid-template-columns:repeat(3,1fr)}.hb_card_form .col_2[data-v-4d8c1b1b]{grid-column:span 2}.hb_card_form .col_3[data-v-4d8c1b1b],.hb_card_form .col_4[data-v-4d8c1b1b]{grid-column:span 3}}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-label>label:after{margin-right:5px;content:""}.hb_card_flex_form[data-v-4d8c1b1b]{display:flex;justify-content:space-between;flex-wrap:wrap}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item{margin-bottom:var(--hb-card-form-item-mb)}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item-label>label:after{margin:0 8px}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item{width:48%!important}.hb_card_flex_form.l1c[data-v-4d8c1b1b] .ant-form-item{width:100%!important}.hb_card_flex_form.l3c[data-v-4d8c1b1b] .ant-form-item{width:30%!important}.hb_card_flex_form.l3c[data-v-4d8c1b1b] .ant-form-item.col_2{width:65%!important}.hb_card_flex_form.l4c[data-v-4d8c1b1b] .ant-form-item{width:23%!important}.hb_card_flex_form.l4c[data-v-4d8c1b1b] .ant-form-item.col_2{width:48.7%!important}.hb_card_flex_form.l4c[data-v-4d8c1b1b] .ant-form-item.col_3{width:74.4%!important}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item.col_all{width:100%!important}.anchors[data-v-d51548d8]{position:fixed;right:-10px;transform:translate(calc(100% - 31px));padding:8px 24px 8px 5px;box-shadow:0 10px 15px -3 #00000014,0 4px 6px -2 #0000000a;border-radius:4px 0 0 4px;border:1px solid #e5e7eb;border-right:none;background-color:#fff;transition:all .2s ease-in-out;z-index:9999}.anchors[data-v-d51548d8]:hover{transform:translate(0)}.anchors .anchor-item[data-v-d51548d8]{padding:8px 0;display:flex;text-align:left;cursor:pointer}.anchors .anchor-item .step[data-v-d51548d8]{width:20px;padding-top:4px;position:relative}.anchors .anchor-item .step .line[data-v-d51548d8]{position:absolute;width:2px;left:4px;height:44px;background-color:#ebeef5}.anchors .anchor-item .step .circle[data-v-d51548d8]{position:absolute;z-index:2;width:10px;height:10px;border-radius:50%;border:2px solid #d5dae5;background-color:#fff;box-sizing:border-box;transition:all .3s ease}.anchors .anchor-item .step .circle[data-v-d51548d8]:after{width:4px;height:4px;border-radius:100%;background-color:#fff;content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);transition:transform .3s ease}.anchors .anchor-item .title[data-v-d51548d8]{height:18px;line-height:18px;color:#374151;transition:color .3s ease;max-width:260px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.anchors .anchor-item.isActive .circle[data-v-d51548d8]{border-color:var(--hb-theme-color);background-color:var(--hb-theme-color)}.anchors .anchor-item.isActive .circle[data-v-d51548d8]:after{transform:translate(-50%,-50%) scale(1)}.anchors .anchor-item.isActive .title[data-v-d51548d8]{color:var(--hb-theme-color)}.anchors .anchor-item:last-child .step .line[data-v-d51548d8]{width:0}.hb_detail_top_wrapper_sticky[data-v-f2c2c397]{position:sticky;top:0;background:#fff;margin-bottom:5px;padding:5px;z-index:1000;transition:all .3s ease}.hb_detail_top_act_sticky[data-v-f2c2c397]{opacity:0;position:fixed;background:#fff;top:112px;z-index:0;left:160px;right:0;padding:10px 16px;box-shadow:0 2px 8px #00000026}.hb_detail_top_act_sticky.can_show[data-v-f2c2c397]{z-index:88888;opacity:1}.hb_detail_wrapper[data-v-f2c2c397]{position:relative;background:#f1f2f5;width:100%;height:100%;box-sizing:border-box;overflow:hidden;padding-bottom:150px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-content::-webkit-scrollbar-thumb{background:#f3f4f6}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-content::-webkit-scrollbar-thumb:hover{background:#ff5000}.hb_detail_wrapper[data-v-f2c2c397] .ant-form-item-label>label{font-size:13px;color:#374151}.hb_detail_wrapper[data-v-f2c2c397] .anchorStyle{position:fixed;right:-76px;top:114px!important;z-index:90000!important;padding:0 15px!important;background:#fff;border:1px;box-shadow:0 0 11px 3px #ccc;border-radius:6px;transition:all .3s ease}.hb_detail_wrapper[data-v-f2c2c397] .anchorStyle:hover{right:0}.hb_detail_wrapper[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{padding:6px!important;font-size:13px}.hb_detail_wrapper.hb_need_set_desc_label_width[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{width:var(--hb-detail-desc-label-width)}.hb_detail_wrapper.hb_need_set_desc_value_width[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{width:var(--hb-detail-desc-value-width)}.hb_detail_wrapper[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{padding:6px!important;font-size:13px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-pagination.ant-pagination{margin:5px 0}.hb_detail_wrapper[data-v-f2c2c397] .ant-table.ant-table-middle .ant-table-thead>tr>th{padding:6px 4px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table.ant-table-middle .ant-table-tbody>tr>td{padding:6px 4px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-tbody>tr>td{padding:6px;font-size:13px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}.hb_detail_wrapper[data-v-f2c2c397] .ant-empty-normal{margin:0}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-footer{padding:6px 16px}.hb_detail_wrapper .hb_detail_top_wrapper[data-v-f2c2c397]{background:#fff;margin-bottom:10px;padding:10px}.hb_detail_wrapper .hb_detail_all_info[data-v-f2c2c397]{display:flex}.hb_detail_wrapper .hb_detail_all_info .hb_detail_info_title[data-v-f2c2c397]{font-size:16px;font-weight:700}.hb_detail_wrapper .hb_detail_all_info .hb_detail_info_content[data-v-f2c2c397]{font-size:15px;color:gray}.hb_detail_wrapper .hb_detail_all_info .hb_detail_info_content .create_by[data-v-f2c2c397]{margin-right:10px}.hb_detail_wrapper[data-v-f2c2c397] .ant-tabs{background:#fff;padding:0 6px}.hb-back-top-inner[data-v-f2c2c397]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:#fff;border-radius:50%;color:var(--hb-theme-color);font-size:30px;box-shadow:0 0 8px 2px #0000004d}.hb_edit_detail_content_wrapper[data-v-f2c2c397]{height:100%;overflow:auto}.hb_detail_content[data-v-f2c2c397]{min-width:800px;margin:0 auto;box-sizing:border-box}.hb_detail_content .anticon-rollback[data-v-f2c2c397]{color:var(--hb-theme-color)}.ml6[data-v-f2c2c397]{margin-left:6px}.footer-affix-wrapper[data-v-23f13fb5]{left:var(--pageHeaderOrFonterLeft);position:fixed;bottom:0;right:0;z-index:1000000}.page-footer-bar[data-v-23f13fb5]{display:flex;justify-content:center;align-items:center;height:56px;background:#fff;border-top:1px solid #f0f0f0;box-shadow:0 -2px 8px #0000000f;width:100%}.page-footer-bar.page_footer_btn_left[data-v-23f13fb5]{justify-content:flex-start;padding-left:var(--hb-space)}.page-footer-bar.page_footer_btn_right[data-v-23f13fb5]{justify-content:flex-end;padding-right:var(--hb-space)}.hb_list_page_button[data-v-23f13fb5]:not(:last-child){margin-right:var(--hb-space)}.__module-card[data-v-866a050a]{margin-bottom:6px}.modal__module-card[data-v-866a050a]{margin-bottom:0}.hb_card[data-v-866a050a]{box-shadow:var(--box-shadow-base);border-radius:4px;border:1px solid #f3f4f6;background-color:#fff;overflow:hidden;color:#1f2837;-webkit-transition:.3s;transition:.3s;padding-bottom:6px}.hb_card_header[data-v-866a050a]{padding:6px;box-sizing:border-box}.hb_fix[data-v-866a050a]{display:flex;justify-content:space-between;align-items:center}.hb_fix .hb_card_header-title[data-v-866a050a]{display:inline-flex;align-items:center;font-weight:700;font-size:13px;color:#374151bf}.hb_fix .hb_card_header-title[data-v-866a050a]:before{content:"";margin-right:8px;background:var(--hb-theme-color);display:inline-block;width:4px;height:14px}.hb_card_body[data-v-866a050a]{padding:0 6px}.hb_card_form[data-v-866a050a]{display:grid;grid-template-columns:repeat(4,1fr);gap:0 22px}.hb_card_form[data-v-866a050a] .ant-form-item{width:100%!important;margin-bottom:5px;margin-right:0}.hb_card_form[data-v-866a050a] .ant-form-item.col_2{grid-column:span 2}.hb_card_form[data-v-866a050a] .ant-form-item.col_3{grid-column:span 3}.hb_card_form[data-v-866a050a] .ant-form-item.col_4,.hb_card_form[data-v-866a050a] .ant-form-item.col_all{grid-column:span 4}@media screen and (max-width:1600px){.hb_card_form[data-v-866a050a] .ant-form-item.col_all{grid-column:span 3}}.hb_card_form[data-v-866a050a] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_form[data-v-866a050a] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_form[data-v-866a050a] .ant-form-item-label{padding:0 0 2px!important}@media screen and (max-width:1600px){.hb_card_form[data-v-866a050a]{grid-template-columns:repeat(3,1fr)}.hb_card_form .col_2[data-v-866a050a]{grid-column:span 2}.hb_card_form .col_3[data-v-866a050a],.hb_card_form .col_4[data-v-866a050a]{grid-column:span 3}}.hb_card_form[data-v-866a050a] .ant-form-item-label>label:after{margin-right:5px;content:""}.hb_card_flex_form[data-v-866a050a]{display:flex;justify-content:space-between;flex-wrap:wrap}.hb_card_flex_form[data-v-866a050a] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_flex_form[data-v-866a050a] .ant-form-item{margin-bottom:var(--hb-card-form-item-mb)}.hb_card_flex_form[data-v-866a050a] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_flex_form[data-v-866a050a] .ant-form-item-label>label:after{margin:0 8px}.hb_card_flex_form[data-v-866a050a] .ant-form-item{width:48%!important}.hb_card_flex_form.l1c[data-v-866a050a] .ant-form-item{width:100%!important}.hb_card_flex_form.l3c[data-v-866a050a] .ant-form-item{width:30%!important}.hb_card_flex_form.l3c[data-v-866a050a] .ant-form-item.col_2{width:65%!important}.hb_card_flex_form.l4c[data-v-866a050a] .ant-form-item{width:23%!important}.hb_card_flex_form.l4c[data-v-866a050a] .ant-form-item.col_2{width:48.7%!important}.hb_card_flex_form.l4c[data-v-866a050a] .ant-form-item.col_3{width:74.4%!important}.hb_card_flex_form[data-v-866a050a] .ant-form-item.col_all{width:100%!important}.hb_modal_wrapper .__module-card[data-v-866a050a]{margin-bottom:0!important}.hb_modal_wrapper[data-v-866a050a] .hb_card{border:none!important;box-shadow:var(--box-shadow-base);background-color:#fff;overflow:hidden;color:#1f2837;-webkit-transition:.3s;transition:.3s}.hb_modal_wrapper[data-v-866a050a] .hb_card_header{padding:6px;box-sizing:border-box}.hb_modal_wrapper[data-v-866a050a] .hb_fix{display:flex;justify-content:space-between;align-items:center}.hb_modal_wrapper[data-v-866a050a] .hb_fix .hb_card_header-title{display:inline-flex;align-items:center;font-weight:700;font-size:13px;color:#374151bf}.hb_modal_wrapper[data-v-866a050a] .hb_fix .hb_card_header-title:before{content:"";margin-right:8px;background:var(--hb-theme-color);display:inline-block;width:4px;height:14px}.hb_modal_wrapper[data-v-866a050a] .ant-form-vertical .ant-form-item-label{padding:0 0 2px}.hb_modal_wrapper[data-v-866a050a] .hb_card_body{padding:0 6px}.hb_modal_wrapper[data-v-866a050a] .ant-form-item-label>label{font-size:13px;color:#000000ad}.hb_modal_wrapper .hb_card_form_sub_title[data-v-866a050a]{font-size:13px;color:#374151bf}.hb_modal_wrapper[data-v-866a050a] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}.hb_modal_wrapper[data-v-866a050a] .ant-table-pagination.ant-pagination{margin:5px 0}.hb_modal_wrapper[data-v-866a050a] .ant-table-tbody>tr>td{padding:6px;font-size:13px}.hb_modal_wrapper[data-v-866a050a] .ant-table-content>table>tbody>tr>td{padding:6px;font-size:13px}.hb_modal_wrapper[data-v-866a050a] .ant-empty-normal{margin:0}.hb_modal_wrapper[data-v-866a050a] .ant-table-footer{padding:6px 16px}.hb_detail_modal_wrapper .__module-card[data-v-866a050a]{margin-bottom:0!important}.hb_detail_modal_wrapper[data-v-866a050a] .hb_card_body{padding-top:0}.hb_detail_modal_wrapper[data-v-866a050a] .ant-form-item-label>label:after{margin:0 8px}.hb_detail_modal_wrapper .hb_card_form_sub_title[data-v-866a050a]{font-size:13px;font-weight:700}.hb_detail_modal_wrapper[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{padding:6px!important;font-size:13px}.hb_detail_modal_wrapper.hb_need_set_desc_label_width[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{width:var(--hb-detail-desc-label-width)}.hb_detail_modal_wrapper.hb_need_set_desc_value_width[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{width:var(--hb-detail-desc-value-width)}.hb_detail_modal_wrapper[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{padding:6px!important;font-size:13px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-pagination.ant-pagination{margin:5px 0}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-tbody>tr>td{padding:6px;font-size:13px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-content>table>tbody>tr>td{padding:6px;font-size:13px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-empty-normal{margin:0}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-footer{padding:6px 16px}.hb_detail_modal_wrapper[data-v-866a050a] .hb_card{border:none}.__detail-content[data-v-41f1fc73]{min-width:800px;margin:0 auto;padding-top:33px;padding-bottom:80px;box-sizing:border-box;background-color:#f0f2f5}.hb-back-top-inner[data-v-41f1fc73]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:#fff;border-radius:50%;color:var(--hb-theme-color);font-size:30px;box-shadow:0 0 8px 2px #0000004d}.hb_edit_detail_content_wrapper[data-v-41f1fc73]{height:100%;overflow:auto}.hb_detail_content[data-v-41f1fc73]{min-width:800px;margin:0 auto;box-sizing:border-box}.hb_detail_content .anticon-rollback[data-v-41f1fc73]{color:var(--hb-theme-color)}[data-v-41f1fc73] .ant-table-content::-webkit-scrollbar-thumb{background:#f3f4f6}[data-v-41f1fc73] .ant-table-content::-webkit-scrollbar-thumb:hover{background:#ff5000}[data-v-41f1fc73] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label,[data-v-41f1fc73] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{padding:6px!important;font-size:13px}[data-v-41f1fc73] .ant-table-pagination.ant-pagination{margin:6px 0}[data-v-41f1fc73] .ant-table.ant-table-middle .ant-table-thead>tr>th{padding:6px 4px}[data-v-41f1fc73] .ant-table.ant-table-middle .ant-table-tbody>tr>td{padding:6px 4px}[data-v-41f1fc73] .ant-table-tbody>tr>td{padding:6px;font-size:13px}[data-v-41f1fc73] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}[data-v-41f1fc73] .ant-empty-normal{margin:0}[data-v-41f1fc73] .ant-table-footer{padding:6px 16px}.hb_edit_wrapper[data-v-41f1fc73] .ant-form-item-label>label{font-size:13px;color:#374151}.hb_edit_header[data-v-83fcd208]{left:var(--pageHeaderOrFonterLeft);position:fixed;width:100%;z-index:9;justify-content:space-between;box-sizing:border-box;display:flex;height:34px;padding-left:0;background:#fff;align-items:center;box-shadow:0 1px 2px #0000000f,0 1px 3px #0000001a}.hb_edit_header_left[data-v-83fcd208]{font-size:14px;font-weight:700;color:#374151;height:100%;display:flex;align-items:center;padding-left:10px}.hb_edit_header_left .anticon-rollback[data-v-83fcd208]{color:var(--hb-theme-color)}.hb_edit_header_left .backBtn[data-v-83fcd208]{margin-left:6px;height:100%;display:flex;align-items:center}.hb-lib-copy-text-eyevue[data-v-2b6710a1]{cursor:pointer;font-size:20px;display:inline-flex;justify-content:center;align-items:center;width:17px;height:17px;margin-left:8px}.hb-lib-copy-text-eyevue svg[data-v-2b6710a1]{width:13px;height:14px}.drag-slot-wrapper[data-v-15b227f5]{cursor:move;padding:8px;background-color:#f9f9f9;border:1px solid #eee;margin-bottom:10px}[data-v-cf0b0a0d]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.activted[data-v-cf0b0a0d]{color:var(--hb-theme-color)}.ant-dropdown-link[data-v-cf0b0a0d]{cursor:pointer}.hb_lib_loading_loading_anima[data-v-22f438b9]{background-color:#f0f0f059;display:flex;justify-content:center;align-items:center;perspective:800px;position:fixed;inset:0}.cube[data-v-22f438b9]{position:relative;width:100px;height:100px;transform-style:preserve-3d;animation:rotate-22f438b9 4s infinite linear}.side[data-v-22f438b9]{position:absolute;width:100px;height:100px;background:#ff5000cc;border:3px solid #fff;opacity:.9;box-shadow:inset 0 0 15px #ffffff80}.front[data-v-22f438b9]{transform:translateZ(50px);background:#ff5000f2}.back[data-v-22f438b9]{transform:rotateY(180deg) translateZ(50px);background:#e64800e6}.right[data-v-22f438b9]{transform:rotateY(90deg) translateZ(50px);background:#ff6626e6}.left[data-v-22f438b9]{transform:rotateY(-90deg) translateZ(50px);background:#ff4000e6}.top[data-v-22f438b9]{transform:rotateX(90deg) translateZ(50px);background:#ff8040e6}.bottom[data-v-22f438b9]{transform:rotateX(-90deg) translateZ(50px);background:#cc4000e6}@keyframes rotate-22f438b9{0%{transform:rotateX(0) rotateY(0) rotate(0)}to{transform:rotateX(360deg) rotateY(360deg) rotate(360deg)}}.hb_lib_loading_load_tips[data-v-22f438b9]{position:absolute;bottom:36%;text-align:center;font-size:16px;color:#666}.file-preview-modal-wrap.ant-modal-wrap .ant-modal-content[data-v-24ce269f]{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden}.file-preview-modal-wrap--mobile.ant-modal-wrap .ant-modal[data-v-24ce269f]{width:100%!important;max-width:100vw;top:0;padding-bottom:0;margin:0}.file-preview-modal-wrap--mobile.ant-modal-wrap .ant-modal-content[data-v-24ce269f]{border-radius:0;display:flex;flex-direction:column;max-height:100vh}@media screen and (max-width:768px){.file-preview-modal-footer__close[data-v-24ce269f]{margin-left:0!important}.file-preview-modal-title[data-v-24ce269f]{width:90%}}.file-preview-modal-body--fill[data-v-24ce269f]{flex:1;min-height:0;width:100%;height:100%;display:flex;flex-direction:column;box-sizing:border-box}.file-preview-modal-title__tip[data-v-24ce269f]{font-size:11px;color:red;margin-left:10px}.file-preview-modal-body__iframe[data-v-24ce269f]{flex:1;min-height:0;width:100%;align-self:stretch}.file-preview-modal-body--fill[data-v-24ce269f]>:not(.file-preview-modal-body__img):not(.no-preview){flex:1;min-height:0;width:100%;display:flex;flex-direction:column;overflow:hidden;align-self:stretch}.file-preview-modal-body--fill[data-v-24ce269f] .vue-office-excel,.file-preview-modal-body--fill[data-v-24ce269f] .vue-office-docx,.file-preview-modal-body--fill[data-v-24ce269f] div[class*=vue-office]{flex:1;min-height:0!important;height:100%!important;overflow:auto}.file-preview-modal-body__plaintext[data-v-24ce269f]{flex:1;min-height:0;width:100%;display:flex;flex-direction:column;align-items:stretch;justify-content:center;overflow:hidden}.file-preview-modal-body__pre[data-v-24ce269f]{flex:1;min-height:0;margin:0;padding:12px;overflow:auto;white-space:pre-wrap;word-break:break-word;font-size:1.3rem;line-height:1.5;color:#000000d9;background:#00000005;border-radius:4px}.file-preview-modal-body__img[data-v-24ce269f]{display:block;max-width:100%;max-height:70vh;margin:0 auto;object-fit:contain}.file-preview-modal-body__hint[data-v-24ce269f]{margin:8px 0 0;font-size:12px;line-height:1.5;color:#00000073}.no-preview[data-v-24ce269f]{padding:24px 16px;text-align:center;color:#00000073}.file-preview-modal-footer[data-v-24ce269f]{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px;width:100%}.file-preview-modal-footer__nav[data-v-24ce269f]{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.file-preview-modal-footer--mobile[data-v-24ce269f]{flex-direction:column;align-items:stretch;gap:12px}.file-preview-modal-footer--mobile .file-preview-modal-footer__nav[data-v-24ce269f]{display:grid;grid-template-columns:1fr 1fr;gap:10px;width:100%}.file-preview-modal-footer--mobile .file-preview-modal-footer__nav[data-v-24ce269f] .ant-btn{min-height:44px}.vue-office-docx{height:100%;overflow-y:auto}.vue-office-docx .docx-wrapper>section.docx{margin-bottom:5px}@media screen and (max-width:800px){.vue-office-docx .docx-wrapper{padding:10px}.vue-office-docx .docx-wrapper>section.docx{padding:10px!important;width:100%!important}}body{margin:0}.x-spreadsheet{font-size:13px;line-height:normal;-webkit-user-select:none;user-select:none;-moz-user-select:none;font-family:Lato,Source Sans Pro,Roboto,Helvetica,Arial,sans-serif;box-sizing:content-box;background:#fff;-webkit-font-smoothing:antialiased}.x-spreadsheet textarea{font:400 13px Arial,Lato,Source Sans Pro,Roboto,Helvetica,sans-serif}.x-spreadsheet-sheet{position:relative;overflow:hidden}.x-spreadsheet-table{vertical-align:bottom}.x-spreadsheet-tooltip{font-family:inherit;position:absolute;padding:5px 10px;color:#fff;border-radius:1px;background:#000;font-size:12px;z-index:201}.x-spreadsheet-tooltip:before{pointer-events:none;position:absolute;left:calc(50% - 4px);top:-4px;content:"";width:8px;height:8px;background:inherit;-webkit-transform:rotate(45deg);transform:rotate(45deg);z-index:1;box-shadow:1px 1px 3px -1px #0000004d}.x-spreadsheet-color-palette{padding:5px}.x-spreadsheet-color-palette table{margin:0;padding:0;border-collapse:separate;border-spacing:2;background:#fff}.x-spreadsheet-color-palette table td{margin:0;cursor:pointer;border:1px solid transparent}.x-spreadsheet-color-palette table td:hover{border-color:#ddd}.x-spreadsheet-color-palette table td .x-spreadsheet-color-palette-cell{width:16px;height:16px}.x-spreadsheet-border-palette{padding:6px}.x-spreadsheet-border-palette table{margin:0;padding:0;border-collapse:separate;border-spacing:0;background:#fff;table-layout:fixed}.x-spreadsheet-border-palette table td{margin:0}.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left{border-right:1px solid #eee;padding-right:6px}.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell{width:30px;height:30px;cursor:pointer;text-align:center}.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell:hover{background-color:#eee}.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right{padding-left:6px}.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-line-type{position:relative;left:0;top:-3px}.x-spreadsheet-dropdown{position:relative}.x-spreadsheet-dropdown .x-spreadsheet-dropdown-content{position:absolute;z-index:200;background:#fff;box-shadow:1px 2px 5px 2px #33333326}.x-spreadsheet-dropdown.bottom-left .x-spreadsheet-dropdown-content{top:calc(100% + 5px);left:0}.x-spreadsheet-dropdown.bottom-right .x-spreadsheet-dropdown-content{top:calc(100% + 5px);right:0}.x-spreadsheet-dropdown.top-left .x-spreadsheet-dropdown-content{bottom:calc(100% + 5px);left:0}.x-spreadsheet-dropdown.top-right .x-spreadsheet-dropdown-content{bottom:calc(100% + 5px);right:0}.x-spreadsheet-dropdown .x-spreadsheet-dropdown-title{padding:0 5px;display:inline-block}.x-spreadsheet-resizer{position:absolute;z-index:11}.x-spreadsheet-resizer .x-spreadsheet-resizer-hover{background-color:#4b89ff40}.x-spreadsheet-resizer .x-spreadsheet-resizer-line{position:absolute}.x-spreadsheet-resizer.horizontal{cursor:row-resize}.x-spreadsheet-resizer.horizontal .x-spreadsheet-resizer-line{border-bottom:2px dashed #4b89ff;left:0;bottom:0}.x-spreadsheet-resizer.vertical{cursor:col-resize}.x-spreadsheet-resizer.vertical .x-spreadsheet-resizer-line{border-right:2px dashed #4b89ff;top:0;right:0}.x-spreadsheet-scrollbar{position:absolute;bottom:0;right:0;background-color:#f4f5f8;opacity:.9;z-index:12}.x-spreadsheet-scrollbar.horizontal{right:15px;overflow-x:scroll;overflow-y:hidden}.x-spreadsheet-scrollbar.horizontal>div{height:1px;background:#ddd}.x-spreadsheet-scrollbar.vertical{bottom:15px;overflow-x:hidden;overflow-y:scroll}.x-spreadsheet-scrollbar.vertical>div{width:1px;background:#ddd}.x-spreadsheet-overlayer{position:absolute;left:0;top:0;z-index:10}.x-spreadsheet-overlayer .x-spreadsheet-overlayer-content{position:absolute;overflow:hidden;pointer-events:none;width:100%;height:100%}.x-spreadsheet-editor,.x-spreadsheet-selector{box-sizing:content-box;position:absolute;overflow:hidden;pointer-events:none;top:0;left:0;width:100%;height:100%}.x-spreadsheet-selector .hide-input{position:absolute;z-index:0}.x-spreadsheet-selector .hide-input input{padding:0;width:0;border:none!important}.x-spreadsheet-selector .x-spreadsheet-selector-area{position:absolute;border:2px solid #4b89ff;background:#4b89ff1a;z-index:5}.x-spreadsheet-selector .x-spreadsheet-selector-clipboard,.x-spreadsheet-selector .x-spreadsheet-selector-autofill{position:absolute;background:transparent;z-index:100}.x-spreadsheet-selector .x-spreadsheet-selector-clipboard{border:2px dashed #4b89ff}.x-spreadsheet-selector .x-spreadsheet-selector-autofill{border:1px dashed rgba(0,0,0,.45)}.x-spreadsheet-selector .x-spreadsheet-selector-corner{pointer-events:auto;position:absolute;cursor:crosshair;font-size:0;height:5px;width:5px;right:-5px;bottom:-5px;border:2px solid #ffffff;background:#4b89ff}.x-spreadsheet-editor{z-index:20}.x-spreadsheet-editor .x-spreadsheet-editor-area{position:absolute;text-align:left;border:2px solid #4b89ff;line-height:0;z-index:100;pointer-events:auto}.x-spreadsheet-editor .x-spreadsheet-editor-area textarea{box-sizing:content-box;border:none;padding:0 3px;outline:none;resize:none;text-align:start;overflow-y:hidden;font:400 13px Arial,Lato,Source Sans Pro,Roboto,Helvetica,sans-serif;color:inherit;white-space:normal;word-wrap:break-word;line-height:22px;margin:0}.x-spreadsheet-editor .x-spreadsheet-editor-area .textline{overflow:hidden;visibility:hidden;position:fixed;top:0;left:0}.x-spreadsheet-item{-webkit-user-select:none;user-select:none;background:0;border:1px solid transparent;outline:none;height:26px;color:#000000e6;line-height:26px;list-style:none;padding:2px 10px;cursor:default;text-align:left;overflow:hidden}.x-spreadsheet-item.disabled{pointer-events:none;opacity:.5}.x-spreadsheet-item:hover,.x-spreadsheet-item.active{background:#0000000d}.x-spreadsheet-item.divider{height:0;padding:0;margin:5px 0;border:none;border-bottom:1px solid rgba(0,0,0,.1)}.x-spreadsheet-item .label{float:right;opacity:.65;font-size:1em}.x-spreadsheet-item.state,.x-spreadsheet-header.state{padding-left:35px!important;position:relative}.x-spreadsheet-item.state:before,.x-spreadsheet-header.state:before{content:"";position:absolute;width:10px;height:10px;left:12px;top:calc(50% - 5px);background:#00000014;border-radius:2px}.x-spreadsheet-item.state.checked:before,.x-spreadsheet-header.state.checked:before{background:#4b89ff}.x-spreadsheet-checkbox{position:relative;display:inline-block;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;font-size:1rem;line-height:1em}.x-spreadsheet-checkbox>input{position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:-1}.x-spreadsheet-suggest,.x-spreadsheet-contextmenu,.x-spreadsheet-sort-filter{position:absolute;box-shadow:1px 2px 5px 2px #33333326;background:#fff;z-index:100;width:260px;pointer-events:auto;overflow:auto}.x-spreadsheet-suggest{width:200px}.x-spreadsheet-filter{border:1px solid #e9e9e9;font-size:12px;margin:10px}.x-spreadsheet-filter .x-spreadsheet-header{padding:.5em .75em;background:#f8f8f9;border-bottom:1px solid #e9e9e9;border-left:1px solid transparent}.x-spreadsheet-filter .x-spreadsheet-body{height:200px;overflow-y:auto}.x-spreadsheet-filter .x-spreadsheet-body .x-spreadsheet-item{height:20px;line-height:20px}.x-spreadsheet-sort-filter .x-spreadsheet-buttons{margin:10px}.x-spreadsheet-bottombar{height:40px;padding:0 30px;text-align:left;background:#f5f6f7;display:flex}.x-spreadsheet-bottombar{position:relative;border-top:1px solid #e0e2e4}.x-spreadsheet-bottombar .x-spreadsheet-menu>li{line-height:40px;height:40px;padding-top:0;padding-bottom:0;vertical-align:middle;border-right:1px solid #e8eaed}.x-spreadsheet-menu{display:flex;overflow-x:auto;list-style:none;margin:0;padding:0;-webkit-user-select:none;user-select:none}.x-spreadsheet-menu>li{float:left;line-height:1.25em;padding:.785em 1em;margin:0;vertical-align:middle;text-align:left;font-weight:400;color:#80868b;white-space:nowrap;cursor:pointer;transition:all .3s;font-weight:700}.x-spreadsheet-menu>li.active{background-color:#fff;color:#000000a6}.x-spreadsheet-menu>li .x-spreadsheet-dropdown{display:inline-block}.x-spreadsheet-print{position:absolute;left:0;top:0;z-index:100;width:100%;height:100%;display:flex;flex-direction:column}.x-spreadsheet-print-bar{background:#424242;height:60px;line-height:60px;padding:0 30px}.x-spreadsheet-print-bar .-title{color:#fff;font-weight:700;font-size:1.2em;float:left}.x-spreadsheet-print-bar .-right{float:right;margin-top:12px}.x-spreadsheet-print-content{display:flex;flex:auto;flex-direction:row;background:#d0d0d0;height:calc(100% - 60px)}.x-spreadsheet-print-content .-sider{flex:0 0 300px;width:300px;border-left:2px solid #ccc;background:#fff}.x-spreadsheet-print-content .-content{flex:auto;overflow-x:auto;overflow-y:scroll;height:100%}.x-spreadsheet-canvas-card-wraper{margin:40px 20px}.x-spreadsheet-canvas-card{background:#fff;margin:auto;page-break-before:auto;page-break-after:always;box-shadow:0 8px 10px 1px #00000024,0 3px 14px 3px #0000001f,0 4px 5px #0003}.x-spreadsheet-calendar{color:#000000a6;background:#fff;-webkit-user-select:none;user-select:none}.x-spreadsheet-calendar .calendar-header{font-weight:700;line-height:30px;text-align:center;width:100%;float:left;background:#f9fafb}.x-spreadsheet-calendar .calendar-header .calendar-header-left{padding-left:5px;float:left}.x-spreadsheet-calendar .calendar-header .calendar-header-right{float:right}.x-spreadsheet-calendar .calendar-header .calendar-header-right a{padding:3px 0;margin-right:2px;border-radius:2px}.x-spreadsheet-calendar .calendar-header .calendar-header-right a:hover{background:#00000014}.x-spreadsheet-calendar .calendar-body{border-collapse:collapse;border-spacing:0}.x-spreadsheet-calendar .calendar-body th,.x-spreadsheet-calendar .calendar-body td{width:14.28571429%;min-width:32px;text-align:center;font-weight:700;line-height:30px;padding:0}.x-spreadsheet-calendar .calendar-body td>.cell:hover{background:#ecf6fd}.x-spreadsheet-calendar .calendar-body td>.cell.active,.x-spreadsheet-calendar .calendar-body td>.cell.active:hover{background:#ecf6fd;color:#2185d0}.x-spreadsheet-calendar .calendar-body td>.cell.disabled{pointer-events:none;opacity:.5}.x-spreadsheet-datepicker{box-shadow:2px 2px 5px #0003;position:absolute;left:0;top:calc(100% + 5px);z-index:10;width:auto}.x-spreadsheet-buttons{display:flex;justify-content:flex-end}.x-spreadsheet-buttons .x-spreadsheet-button{margin-left:8px}.x-spreadsheet-button{display:inline-block;border-radius:3px;line-height:1em;min-height:1em;white-space:nowrap;text-align:center;cursor:pointer;font-size:1em;font-weight:700;padding:.75em 1em;color:#0009;background:#e0e1e2;text-decoration:none;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;outline:none;vertical-align:baseline;zoom:1;-webkit-user-select:none;user-select:none;transition:all .1s linear}.x-spreadsheet-button.active,.x-spreadsheet-button:hover{background-color:#c0c1c2;color:#000c}.x-spreadsheet-button.primary{color:#fff;background-color:#2185d0}.x-spreadsheet-button.primary:hover,.x-spreadsheet-button.primary.active{color:#fff;background-color:#1678c2}.x-spreadsheet-form-input{font-size:1em;position:relative;font-weight:400;display:inline-flex;color:#000000de}.x-spreadsheet-form-input input{z-index:1;margin:0;max-width:100%;flex:1 0 auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:30px;height:30px;padding:0 8px;background:#fff;border:1px solid #e9e9e9;border-radius:3px;transition:box-shadow .1s ease,border-color .1s ease;box-shadow:inset 0 1px 2px #0a0a0a0f}.x-spreadsheet-form-input input:focus{border-color:#4b89ff;box-shadow:inset 0 1px 2px #4b89ff33}.x-spreadsheet-form-select{position:relative;display:inline-block;background:#fff;border:1px solid #e9e9e9;border-radius:2px;cursor:pointer;color:#000000de;-webkit-user-select:none;user-select:none;box-shadow:inset 0 1px 2px #0a0a0a0f}.x-spreadsheet-form-select .input-text{text-overflow:ellipsis;white-space:nowrap;min-width:60px;width:auto;height:30px;line-height:30px;padding:0 8px}.x-spreadsheet-form-fields{display:flex;flex-direction:row;flex-wrap:wrap}.x-spreadsheet-form-fields .x-spreadsheet-form-field{flex:0 1 auto}.x-spreadsheet-form-fields .x-spreadsheet-form-field .label{display:inline-block;margin:0 10px 0 0}.x-spreadsheet-form-field{display:block;vertical-align:middle;margin-left:10px;margin-bottom:10px}.x-spreadsheet-form-field:first-child{margin-left:0}.x-spreadsheet-form-field.error .x-spreadsheet-form-select,.x-spreadsheet-form-field.error input{border-color:#f04134}.x-spreadsheet-form-field .tip{color:#f04134;font-size:.9em}.x-spreadsheet-dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:#0009;opacity:0;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;transition:background-color .5s linear;-webkit-user-select:none;user-select:none;z-index:1000}.x-spreadsheet-dimmer.active{display:block;opacity:1}form fieldset{border:none}form fieldset label{display:block;margin-bottom:.5em;font-size:1em;color:#666}form fieldset select{font-size:1.1em;width:100%;background-color:#fff;border:none;border-bottom:2px solid #ddd;padding:.5em .85em;border-radius:2px}.x-spreadsheet-modal,.x-spreadsheet-toast{font-size:13px;position:fixed;z-index:1001;text-align:left;line-height:1.25em;min-width:360px;color:#000000de;font-family:Lato,Source Sans Pro,Roboto,Helvetica,Arial,sans-serif;border-radius:4px;border:1px solid rgba(0,0,0,.1);background-color:#fff;background-clip:padding-box;box-shadow:#0003 0 2px 8px}.x-spreadsheet-toast{background-color:#ffffffd9}.x-spreadsheet-modal-header,.x-spreadsheet-toast-header{font-weight:600;background-clip:padding-box;background-color:#ffffffd9;border-bottom:1px solid rgba(0,0,0,.05);border-radius:4px 4px 0 0}.x-spreadsheet-toast-header{color:#f2711c}.x-spreadsheet-modal-header{border-bottom:1px solid #e0e2e4;background:#00000014;font-size:1.0785em}.x-spreadsheet-modal-header,.x-spreadsheet-modal-content,.x-spreadsheet-toast-header,.x-spreadsheet-toast-content{padding:.75em 1em}.x-spreadsheet-menu li:first-child{display:none}.vue-office-excel{height:100%}.hb-file-preview-s-wrap.ant-modal-wrap .ant-modal-content{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden}.hb-file-preview-s-wrap--mobile.ant-modal-wrap .ant-modal{width:100%!important;max-width:100vw;top:0;padding-bottom:0;margin:0}.hb-file-preview-s-wrap--mobile.ant-modal-wrap .ant-modal-content{border-radius:0;display:flex;flex-direction:column;max-height:100vh}.hb-file-preview-s__title-tip[data-v-4a9301ca]{font-size:11px;color:#fa8c16;margin-left:10px}.hb-file-preview-s__body--fill[data-v-4a9301ca]{flex:1;min-height:0;width:100%;height:100%;display:flex;flex-direction:column;box-sizing:border-box;position:relative}.hb-file-preview-s__spin[data-v-4a9301ca]{flex:1;display:flex;align-items:center;justify-content:center;min-height:200px}.hb-file-preview-s__state[data-v-4a9301ca]{flex:1;display:flex;align-items:center;justify-content:center;padding:24px 16px;text-align:center;color:#00000073;font-size:14px}.hb-file-preview-s__state--error[data-v-4a9301ca]{color:#cf1322}.hb-file-preview-s__office[data-v-4a9301ca]{flex:1;min-height:0;width:100%;height:100%}.hb-file-preview-s__body--fill[data-v-4a9301ca] .vue-office-pdf,.hb-file-preview-s__body--fill[data-v-4a9301ca] .vue-office-docx,.hb-file-preview-s__body--fill[data-v-4a9301ca] .vue-office-excel,.hb-file-preview-s__body--fill[data-v-4a9301ca] .vue-office-pptx,.hb-file-preview-s__body--fill[data-v-4a9301ca] div[class*=vue-office]{flex:1;min-height:0!important;height:100%!important;overflow:auto}.hb-file-preview-s__img-wrap[data-v-4a9301ca]{flex:1;min-height:0;overflow:auto;display:flex;align-items:center;justify-content:center;padding:8px;box-sizing:border-box}.hb-file-preview-s__img[data-v-4a9301ca]{display:block;max-width:100%;max-height:100%;object-fit:contain}.hb-file-preview-s__pre[data-v-4a9301ca]{flex:1;min-height:0;margin:0;padding:12px;overflow:auto;white-space:pre-wrap;word-break:break-word;font-size:1.3rem;line-height:1.5;color:#000000d9;background:#00000005;border-radius:4px}.hb-file-preview-s__footer[data-v-4a9301ca]{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px;width:100%}.hb-file-preview-s__nav[data-v-4a9301ca]{display:flex;flex-wrap:wrap;gap:8px}.hb-file-preview-s__footer--mobile[data-v-4a9301ca]{flex-direction:column;align-items:stretch;gap:12px}.hb-file-preview-s__footer--mobile .hb-file-preview-s__nav[data-v-4a9301ca]{display:grid;grid-template-columns:1fr 1fr;gap:10px;width:100%}.hb-file-preview-s__footer--mobile .hb-file-preview-s__nav[data-v-4a9301ca] .ant-btn{min-height:44px}@media screen and (max-width:768px){.hb-file-preview-s__close[data-v-4a9301ca]{margin-left:0!important}.hb-file-preview-s__title[data-v-4a9301ca]{width:90%}}:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-container{background:#fff}.hb-lib-list-page-container .hb_list_page_button{height:var(--hb-list-button-height)!important;padding:0 var(--hb-space)!important}.hb-lib-list-page-container .hb_list_page_button:not(:last-child){margin-right:var(--hb-space)}.hb-lib-list-page-container .hb_list_page_button .buttonText{line-height:var(--hb-list-button-height)!important}.hb-lib-list-page-container .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0}.list-page-box{padding:5px 0 0}.list-page-box .ant-table-row .ant-table-cell,.list-page-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.list-page-box .ant-input-search-button{border:none!important}.list-page-box .ant-tabs-top>.ant-tabs-nav{margin-bottom:calc(var(--hb-space) / 2)!important}.list-page-box .ant-tabs-nav .ant-tabs-nav-list .ant-tabs-tab{padding:calc(var(--hb-space) / 2) 0!important}.list-page-box .ant-table-body::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:var(--hb-border-radius)}.list-page-box .ant-table-bordered.ant-table-fixed-header .ant-table-body{height:var(--hb-list-table-height)!important;max-height:none!important}.hb-lib-list-page-act-box{background:#fff;display:flex;justify-content:space-between;box-shadow:0 4px 3px #f0f0f0cf;padding:calc(var(--hb-space) / 2) var(--hb-space)}.hb-lib-list-page-act{display:flex;align-items:center}.hb-lib-list-page-act .hb-lib-list-page-act-svg{display:inline-block;width:18px;height:18px;cursor:pointer}.hb-lib-list-page-act .hb-lib-list-page-act-svg:not(:last-child){margin-right:calc(var(--hb-space) / 2)}.hb-lib-list-page-act .hb-lib-list-page-act-svg .icon{width:100%;height:100%}.hb-lib-list-page-breadcrumb{font-size:var(--hb-text-font-size);color:#3e3e3e;display:flex;align-items:center}.hb-lib-list-page-form-box{display:flex;justify-content:space-between;background:#fff;border-radius:8px}.hb-form-item-ui{flex:1}.hb-form-item-ui .ant-form-item{border:1px solid #d1d5dbb3!important;border-radius:var(--hb-border-radius)!important;margin-bottom:var(--hb-form-space)!important;margin-right:var(--hb-form-space)!important;height:var(--hb-f-item-height);min-width:250px!important}.hb-form-item-ui .ant-input{border:none!important;border-radius:var(--hb-border-radius)!important;padding:4px var(--hb-space) 4px 0px!important}.hb-form-item-ui .ant-input:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-input-number{border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-input-number:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-form-item-label>label{padding:0 0 0 var(--hb-form-space)}.hb-form-item-ui .ant-select-selector{border:none!important;border-radius:var(--hb-border-radius)!important;padding:0px var(--hb-form-space) 0px var(--hb-form-space)!important;outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-selector:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-focused{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper{height:var(--hb-f-item-content-height)!important;border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-input-affix-wrapper:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-picker,.hb-form-item-ui .ant-picker-range{border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-picker-focused{box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper:focus,.hb-form-item-ui .ant-input-affix-wrapper-focused{box-shadow:none!important}.hb-form-item-ui .ant-form-item-control-input-content{display:flex}.hb-form-item-ui .ant-select-selection-item{display:flex;align-items:center}.hb-form-item-ui .ant-select-selection-placeholder{padding-left:var(--hb-form-space)!important}.hb-form-item-ui .ant-select-selection-overflow{flex-wrap:nowrap;overflow:hidden}.hb-form-item-ui .ant-input-group-addon{border:none!important}body{overflow-x:hidden}.btn_pd{padding-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card{margin-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card-head{min-height:var(--hb-card-head)!important}.hb-lib-detail-box .ant-card-head .ant-card-head-title{padding:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-card-body{padding:var(--hb-space)!important}.hb-lib-detail-box .ant-table-row .ant-table-cell,.hb-lib-detail-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-detail-box .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-descriptions-row,.hb-lib-detail-box .ant-descriptions-item{padding-bottom:calc(var(--hb-space) / 2)!important}.isNotMb{margin-bottom:0!important}.hb_form_item_mb{margin-bottom:var(--hb-form-item-margin)!important}.hb_small_button{height:var(--hb-list-button-height)!important;padding:0 var(--hb-space)!important}.ant-form-item .ant-input-textarea-show-count:after{margin-bottom:-9px}
|
|
1
|
+
[data-v-657502f3]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-sfcm[data-v-657502f3] .ant-modal-header{border-bottom:1px solid var(--hb-border-color);margin-bottom:var(--hb-space)}.hb-sfcm__title[data-v-657502f3]{font-size:var(--hb-h1-font-size);font-weight:700;color:var(--hb-title-color)}.hb-sfcm__title__tip[data-v-657502f3]{margin-right:var(--hb-space);padding-left:var(--hb-space);color:#080808;font-size:16px;font-weight:500;position:relative}.hb-sfcm__title__tip[data-v-657502f3]:before{content:"";width:6px;height:14px;background:var(--hb-theme-color);position:absolute;top:50%;left:0;transform:translateY(-50%);border-radius:var(--hb-border-radius)}.hb-sfcm__show__tag[data-v-657502f3]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__show__tag__item[data-v-657502f3]{float:left;margin-right:var(--hb-space);padding:2px 9px;background:var(--hb-theme-color);color:#fff;border:1px solid var(--hb-theme-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:move;-webkit-user-select:none;user-select:none;display:flex;align-items:center}.hb-sfcm__show__tag__item.is-linked[data-v-657502f3]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-fixed[data-v-657502f3]{background:none;color:#9ca3af;border:1px solid var(--hb-border-color);cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-657502f3]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-657502f3]:hover{background:#ff7875;border-color:#ff7875}.hb-sfcm__unshow__tag[data-v-657502f3]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__unshow__tag__item[data-v-657502f3]{position:relative;float:left;margin-right:var(--hb-space);padding:2px 9px;color:#9ca3af;border:1px solid var(--hb-border-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:pointer;-webkit-user-select:none;user-select:none}.hb-sfcm__unshow__tag__item.is-linked[data-v-657502f3]{color:#ff7875;border-color:#ff7875}.hb-sfcm__show__tag__item-close[data-v-657502f3]{margin-left:6px;cursor:pointer}.hb-sfcm__show__tag__item-close[data-v-657502f3]:hover{transform:scale(1.3)}.hb-sfcm__unshow__tag__item-add[data-v-657502f3]{position:absolute;width:100%;height:100%;top:0;left:0;background:#1a1818;color:#fff;text-align:center;display:flex;align-items:center;justify-content:center;border-radius:var(--hb-border-radius)}.hb-sfcm__unshow__tag__empty[data-v-657502f3]{text-align:center;color:var(--hb-border-color)}[data-v-f513ff59]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.isNeedFooterCss[data-v-f513ff59]{flex-direction:column}.hb-form[data-v-f513ff59] .ant-form-item{margin-bottom:var(--hb-form-space)}.hb-form .hb-form__footer[data-v-f513ff59]{display:flex;justify-content:space-between;margin-top:-6px}.hb-lib-form--container[data-v-f513ff59]{overflow:hidden;margin:6px}.hide[data-v-f513ff59]{height:0}.hb-form__form-item-col[data-v-f513ff59]{flex:0 0 auto;min-width:200px;width:auto;padding-right:var(--hb-space);margin-bottom:16px}.form-footer[data-v-f513ff59]{display:flex;align-items:center;margin-bottom:10px}.scheme-fontWeight[data-v-f513ff59]{font-weight:600}.form-collapse-enter-active,.form-collapse-leave-active{transition:height .2s ease;overflow:hidden}.form-collapse-enter-from,.form-collapse-leave-to{height:0}.hb-lib-form-svg{margin-right:13px;cursor:pointer;display:flex;align-items:center}.hb-lib-form-svg .icon{width:18px;height:20px}.hb-form-item-ui .ant-form-item.hb-lib-form-item-border--unneed{border:none!important}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll{height:auto!important}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll .ant-select-selection-overflow{flex-wrap:wrap;max-width:373px}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll .ant-form-item-control-input-content{max-width:373px}.hb-form-item-ui .ant-form-item.hb_lib_form_item--needShowAll .ant-select-show-arrow{height:var(--hb-f-item-height)!important}.hb-form__footer__right{display:flex;align-items:center;justify-content:space-between;min-width:206px}.ant-row[sublabel] .ant-form-item-label label,.ant-row[sublabellanguage] .ant-form-item-label label{display:none!important}[data-v-c7cd0710]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-act-item[data-v-c7cd0710]{margin-right:var(--hb-space)}[data-v-40c1a746]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-btns-box[data-v-40c1a746]{display:flex;justify-content:space-between;align-items:center;background:#fff;padding:5px 5px 0;margin-top:5px;border-radius:6px 6px 0 0}.hb-lib-list-btns-box .hb-lib-list-btns-right[data-v-40c1a746]{display:flex;align-items:center}.hb-lib-list-btns-act-svg[data-v-40c1a746]{cursor:pointer;width:21px;height:21px;display:inline-block}.hb-lib-list-btns-act-svg .icon[data-v-40c1a746]{width:100%;height:100%}.hb-lib-list-btns-act-open[data-v-40c1a746]{cursor:pointer;width:21px;height:21px;display:flex;justify-content:center;align-items:center}.hb-lib-list-btns-act-open .icon[data-v-40c1a746]{width:100%;height:100%}.hb-lib-list-btns-item[data-v-40c1a746]:not(:last-child){margin-right:10px}.hb-lib-list-btns-left[data-v-40c1a746]{display:flex;align-items:center}.flex-between[data-v-87177371]{display:flex;justify-content:space-between;align-items:center}.flex-center[data-v-87177371]{display:flex;align-items:center}.hb-lib-selector-wrapper[data-v-87177371]{position:relative}.hb-lib-selector-wrapper .ant-input[data-v-87177371]{cursor:pointer}.has-prefix[data-v-87177371]:before{content:attr(data-prefix);position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#262626;font-size:14px;white-space:nowrap;pointer-events:none;z-index:1}.has-prefix[data-v-87177371] .ant-select-selector{padding-left:calc(12px + var(--prefix-width, 0px))}.has-prefix[data-v-87177371] .ant-select-selection-placeholder{padding-left:var(--prefix-width, 0px)}.hb-lib-selector-dropdown[data-v-87177371]{padding:8px;min-width:200px}.hb-lib-selector-search[data-v-87177371]{margin-bottom:8px}.hb-lib-selector-list[data-v-87177371]{max-height:200px;overflow-y:auto}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar{width:6px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.hb-lib-selector-option[data-v-87177371]{display:flex;align-items:center;padding:8px;cursor:pointer;border-radius:4px;transition:all .2s ease;gap:8px}.hb-lib-selector-option[data-v-87177371]:hover{background-color:#f5f5f5}.hb-lib-selector-option.selected[data-v-87177371]{background-color:#e6f7ff}.hb-lib-option-content[data-v-87177371]{flex:1}.hb-lib-option-label[data-v-87177371]{font-weight:500;color:#262626}.hb-lib-selector-empty[data-v-87177371]{text-align:center;color:#bfbfbf;padding:20px 0;font-size:14px}.hb-lib-selector-footer[data-v-87177371]{border-top:1px solid #f0f0f0;padding-top:8px;margin-top:8px;display:flex;justify-content:space-between;align-items:center}.hb-lib-footer-buttons[data-v-87177371]{display:flex;gap:8px}.selector-tag[data-v-87177371]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.selector-tag .tag-label[data-v-87177371]{font-weight:500}.selector-tag .tag-description[data-v-87177371]{margin-left:4px;font-size:12px;opacity:.8}.rotate-180[data-v-87177371]{transform:rotate(180deg)}.transition-transform[data-v-87177371]{transition:transform .2s}.hb-lib-search-tag[data-v-87177371]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.hb-lib-search-tag__description[data-v-87177371]{margin-left:4px;font-size:12px;opacity:.8}.hb-lib-multipleSelectModal-modal .ant-table-filter-trigger{font-size:18px!important}.hb-lib-multipleSelectModal-modal .ant-input-group-addon{border:none!important;cursor:pointer}.hb-lib-multipleSelectModal-modal .ant-modal-body{padding:calc(var(--hb-space) / 2)}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-column-title{color:#000;font-weight:bolder;font-size:18px}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-cell{color:#000;font-weight:bolder;font-size:18px;padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-row .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-form-item-filter-modal-search{padding:8px}.hb-lib-form-item-filter-modal-search-input{width:188px;margin-bottom:8px;display:block}.hb-lib-form-item-filter-modal-buttons{display:flex;justify-content:space-between;margin-top:10px}.hb-lib-table-act-box[data-v-25fd055e]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px}.hb-lib-table-act-box .hb-lib-table-main-action[data-v-25fd055e],.hb-lib-table-act-box .hb-lib-table-more-action[data-v-25fd055e]{text-decoration:none}.hb-lib-table-act-box .hb-lib-table-more-action[data-v-25fd055e]{display:inline-flex;align-items:center}.hb-lib-table-act-box[data-v-25fd055e] .ant-divider:not(:has(+a)){display:none}.hb-lib-table-confirm-modal-content[data-v-25fd055e]{font-size:16px}.hb-lib-table-act-box .ant-divider-vertical{margin:0}.ant-dropdown-menu-title-content>a:hover{color:var(--hb-theme-color)!important}.hb-lib-list-table[data-v-4a8b9aaa]{background:#fff;padding:0 5px;border-radius:0 0 6px 6px}.hb-lib-list-table[data-v-4a8b9aaa] .copy-text-eyevue.ab{position:relative!important;right:0!important;top:0!important}.hb-lib-list-table-act[data-v-4a8b9aaa]{display:flex;justify-content:space-between;align-items:center}.nowrap-table[data-v-4a8b9aaa] .ant-table-tbody>.ant-table-row>td{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;height:var(--hb-lib-table-td-height)!important;box-sizing:content-box}[data-v-07a63550]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.ant-alert[data-v-07a63550]{box-sizing:border-box;margin:0;color:#000000a6;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:8px 15px 8px 37px;word-wrap:break-word;border-radius:var(--hb-border-radius);border:1px solid #ffb27a;background-color:#fff2e6}.ant-alert .com-alert[data-v-07a63550]{display:flex;justify-content:space-between;width:100%;align-items:center}.ant-alert .com-alert a[data-v-07a63550]{color:#ff5000}.select-all-container[data-v-07a63550]{padding:8px 0}.hb-lib-table-setting-box[data-v-07a63550]{display:flex}.hb-lib-table-set-drag[data-v-07a63550]{max-height:300px;overflow-y:auto}.hb-lib-table-drag-item[data-v-07a63550]{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;border:1px solid #f0f0f0;margin-bottom:4px;background-color:#fff;border-radius:var(--hb-border-radius);width:280px}.hb-lib-table-drag-item[data-v-07a63550]:hover{background-color:#f5f5f5}.hb-lib-table-drag-item .drag-handle[data-v-07a63550]{cursor:move;color:#999;padding:4px;-webkit-user-select:none;user-select:none}.ghost[data-v-07a63550]{opacity:.5;background:#c8ebfb}.table-setting-checkbox-group[data-v-07a63550]{display:flex;flex-wrap:wrap}.table-setting-checkbox-group[data-v-07a63550] .ant-checkbox-group-item{margin-right:0;width:33.33%}.hb-lib-table-set-btn-group[data-v-07a63550]{margin-top:10px;display:flex;justify-content:end;align-items:center;border-top:1px solid #f0f0f0;padding-top:8px}.drag-hide[data-v-07a63550]{visibility:hidden}.hb-lib-table-drag-item-act-btn[data-v-07a63550]{display:inline-block;cursor:pointer;width:14px;height:20px}.hb-lib-table-drag-item-act-btn .icon[data-v-07a63550]{width:100%;height:100%}.hb-lib-table-col-set[data-v-07a63550]{display:inline-block;cursor:pointer;width:22px;height:23px}.hb-lib-table-col-set .icon[data-v-07a63550]{width:100%;height:100%}.hb-lib-table-drag-item-act[data-v-07a63550]{display:flex;align-items:center;width:40px;justify-content:space-between}.column_setting_popover{width:auto!important}.hb_lib_form_tooltip_select[data-v-13285691]{width:100%}.hb_lib_form_tooltip_select__option[data-v-13285691]{display:inline-flex;align-items:center;gap:4px}.hb_lib_form_tooltip_select__option.is-ellipsis[data-v-13285691]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hb_lib_form_tooltip_select__dropdown .ant-select-item-option-content{display:flex;align-items:center;gap:4px}.hb_import_btn[data-v-a11cda0f]{text-align:center;margin:0}[data-v-ac23253c]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.log_remark[data-v-ac23253c]{width:85%}.hb_lib_log_modal_content[data-v-ac23253c]{padding:var(--hb-space) 0}.__module-card[data-v-4d8c1b1b]{margin-bottom:6px}.modal__module-card[data-v-4d8c1b1b]{margin-bottom:0}.hb_card[data-v-4d8c1b1b]{box-shadow:var(--box-shadow-base);border-radius:4px;border:1px solid #f3f4f6;background-color:#fff;overflow:hidden;color:#1f2837;-webkit-transition:.3s;transition:.3s;padding-bottom:6px}.hb_card_header[data-v-4d8c1b1b]{padding:6px;box-sizing:border-box}.hb_fix[data-v-4d8c1b1b]{display:flex;justify-content:space-between;align-items:center}.hb_fix .hb_card_header-title[data-v-4d8c1b1b]{display:inline-flex;align-items:center;font-weight:700;font-size:13px;color:#374151bf}.hb_fix .hb_card_header-title[data-v-4d8c1b1b]:before{content:"";margin-right:8px;background:var(--hb-theme-color);display:inline-block;width:4px;height:14px}.hb_card_body[data-v-4d8c1b1b]{padding:0 6px}.hb_card_form[data-v-4d8c1b1b]{display:grid;grid-template-columns:repeat(4,1fr);gap:0 22px}.hb_card_form[data-v-4d8c1b1b] .ant-form-item{width:100%!important;margin-bottom:5px;margin-right:0}.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_2{grid-column:span 2}.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_3{grid-column:span 3}.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_4,.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_all{grid-column:span 4}@media screen and (max-width:1600px){.hb_card_form[data-v-4d8c1b1b] .ant-form-item.col_all{grid-column:span 3}}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-label{padding:0 0 2px!important}@media screen and (max-width:1600px){.hb_card_form[data-v-4d8c1b1b]{grid-template-columns:repeat(3,1fr)}.hb_card_form .col_2[data-v-4d8c1b1b]{grid-column:span 2}.hb_card_form .col_3[data-v-4d8c1b1b],.hb_card_form .col_4[data-v-4d8c1b1b]{grid-column:span 3}}.hb_card_form[data-v-4d8c1b1b] .ant-form-item-label>label:after{margin-right:5px;content:""}.hb_card_flex_form[data-v-4d8c1b1b]{display:flex;justify-content:space-between;flex-wrap:wrap}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item{margin-bottom:var(--hb-card-form-item-mb)}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item-label>label:after{margin:0 8px}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item{width:48%!important}.hb_card_flex_form.l1c[data-v-4d8c1b1b] .ant-form-item{width:100%!important}.hb_card_flex_form.l3c[data-v-4d8c1b1b] .ant-form-item{width:30%!important}.hb_card_flex_form.l3c[data-v-4d8c1b1b] .ant-form-item.col_2{width:65%!important}.hb_card_flex_form.l4c[data-v-4d8c1b1b] .ant-form-item{width:23%!important}.hb_card_flex_form.l4c[data-v-4d8c1b1b] .ant-form-item.col_2{width:48.7%!important}.hb_card_flex_form.l4c[data-v-4d8c1b1b] .ant-form-item.col_3{width:74.4%!important}.hb_card_flex_form[data-v-4d8c1b1b] .ant-form-item.col_all{width:100%!important}.anchors[data-v-d51548d8]{position:fixed;right:-10px;transform:translate(calc(100% - 31px));padding:8px 24px 8px 5px;box-shadow:0 10px 15px -3 #00000014,0 4px 6px -2 #0000000a;border-radius:4px 0 0 4px;border:1px solid #e5e7eb;border-right:none;background-color:#fff;transition:all .2s ease-in-out;z-index:9999}.anchors[data-v-d51548d8]:hover{transform:translate(0)}.anchors .anchor-item[data-v-d51548d8]{padding:8px 0;display:flex;text-align:left;cursor:pointer}.anchors .anchor-item .step[data-v-d51548d8]{width:20px;padding-top:4px;position:relative}.anchors .anchor-item .step .line[data-v-d51548d8]{position:absolute;width:2px;left:4px;height:44px;background-color:#ebeef5}.anchors .anchor-item .step .circle[data-v-d51548d8]{position:absolute;z-index:2;width:10px;height:10px;border-radius:50%;border:2px solid #d5dae5;background-color:#fff;box-sizing:border-box;transition:all .3s ease}.anchors .anchor-item .step .circle[data-v-d51548d8]:after{width:4px;height:4px;border-radius:100%;background-color:#fff;content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);transition:transform .3s ease}.anchors .anchor-item .title[data-v-d51548d8]{height:18px;line-height:18px;color:#374151;transition:color .3s ease;max-width:260px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.anchors .anchor-item.isActive .circle[data-v-d51548d8]{border-color:var(--hb-theme-color);background-color:var(--hb-theme-color)}.anchors .anchor-item.isActive .circle[data-v-d51548d8]:after{transform:translate(-50%,-50%) scale(1)}.anchors .anchor-item.isActive .title[data-v-d51548d8]{color:var(--hb-theme-color)}.anchors .anchor-item:last-child .step .line[data-v-d51548d8]{width:0}.hb_detail_top_wrapper_sticky[data-v-f2c2c397]{position:sticky;top:0;background:#fff;margin-bottom:5px;padding:5px;z-index:1000;transition:all .3s ease}.hb_detail_top_act_sticky[data-v-f2c2c397]{opacity:0;position:fixed;background:#fff;top:112px;z-index:0;left:160px;right:0;padding:10px 16px;box-shadow:0 2px 8px #00000026}.hb_detail_top_act_sticky.can_show[data-v-f2c2c397]{z-index:88888;opacity:1}.hb_detail_wrapper[data-v-f2c2c397]{position:relative;background:#f1f2f5;width:100%;height:100%;box-sizing:border-box;overflow:hidden;padding-bottom:150px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-content::-webkit-scrollbar-thumb{background:#f3f4f6}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-content::-webkit-scrollbar-thumb:hover{background:#ff5000}.hb_detail_wrapper[data-v-f2c2c397] .ant-form-item-label>label{font-size:13px;color:#374151}.hb_detail_wrapper[data-v-f2c2c397] .anchorStyle{position:fixed;right:-76px;top:114px!important;z-index:90000!important;padding:0 15px!important;background:#fff;border:1px;box-shadow:0 0 11px 3px #ccc;border-radius:6px;transition:all .3s ease}.hb_detail_wrapper[data-v-f2c2c397] .anchorStyle:hover{right:0}.hb_detail_wrapper[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{padding:6px!important;font-size:13px}.hb_detail_wrapper.hb_need_set_desc_label_width[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{width:var(--hb-detail-desc-label-width)}.hb_detail_wrapper.hb_need_set_desc_value_width[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{width:var(--hb-detail-desc-value-width)}.hb_detail_wrapper[data-v-f2c2c397] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{padding:6px!important;font-size:13px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-pagination.ant-pagination{margin:5px 0}.hb_detail_wrapper[data-v-f2c2c397] .ant-table.ant-table-middle .ant-table-thead>tr>th{padding:6px 4px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table.ant-table-middle .ant-table-tbody>tr>td{padding:6px 4px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-tbody>tr>td{padding:6px;font-size:13px}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}.hb_detail_wrapper[data-v-f2c2c397] .ant-empty-normal{margin:0}.hb_detail_wrapper[data-v-f2c2c397] .ant-table-footer{padding:6px 16px}.hb_detail_wrapper .hb_detail_top_wrapper[data-v-f2c2c397]{background:#fff;margin-bottom:10px;padding:10px}.hb_detail_wrapper .hb_detail_all_info[data-v-f2c2c397]{display:flex}.hb_detail_wrapper .hb_detail_all_info .hb_detail_info_title[data-v-f2c2c397]{font-size:16px;font-weight:700}.hb_detail_wrapper .hb_detail_all_info .hb_detail_info_content[data-v-f2c2c397]{font-size:15px;color:gray}.hb_detail_wrapper .hb_detail_all_info .hb_detail_info_content .create_by[data-v-f2c2c397]{margin-right:10px}.hb_detail_wrapper[data-v-f2c2c397] .ant-tabs{background:#fff;padding:0 6px}.hb-back-top-inner[data-v-f2c2c397]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:#fff;border-radius:50%;color:var(--hb-theme-color);font-size:30px;box-shadow:0 0 8px 2px #0000004d}.hb_edit_detail_content_wrapper[data-v-f2c2c397]{height:100%;overflow:auto}.hb_detail_content[data-v-f2c2c397]{min-width:800px;margin:0 auto;box-sizing:border-box}.hb_detail_content .anticon-rollback[data-v-f2c2c397]{color:var(--hb-theme-color)}.ml6[data-v-f2c2c397]{margin-left:6px}.footer-affix-wrapper[data-v-23f13fb5]{left:var(--pageHeaderOrFonterLeft);position:fixed;bottom:0;right:0;z-index:1000000}.page-footer-bar[data-v-23f13fb5]{display:flex;justify-content:center;align-items:center;height:56px;background:#fff;border-top:1px solid #f0f0f0;box-shadow:0 -2px 8px #0000000f;width:100%}.page-footer-bar.page_footer_btn_left[data-v-23f13fb5]{justify-content:flex-start;padding-left:var(--hb-space)}.page-footer-bar.page_footer_btn_right[data-v-23f13fb5]{justify-content:flex-end;padding-right:var(--hb-space)}.hb_list_page_button[data-v-23f13fb5]:not(:last-child){margin-right:var(--hb-space)}.__module-card[data-v-866a050a]{margin-bottom:6px}.modal__module-card[data-v-866a050a]{margin-bottom:0}.hb_card[data-v-866a050a]{box-shadow:var(--box-shadow-base);border-radius:4px;border:1px solid #f3f4f6;background-color:#fff;overflow:hidden;color:#1f2837;-webkit-transition:.3s;transition:.3s;padding-bottom:6px}.hb_card_header[data-v-866a050a]{padding:6px;box-sizing:border-box}.hb_fix[data-v-866a050a]{display:flex;justify-content:space-between;align-items:center}.hb_fix .hb_card_header-title[data-v-866a050a]{display:inline-flex;align-items:center;font-weight:700;font-size:13px;color:#374151bf}.hb_fix .hb_card_header-title[data-v-866a050a]:before{content:"";margin-right:8px;background:var(--hb-theme-color);display:inline-block;width:4px;height:14px}.hb_card_body[data-v-866a050a]{padding:0 6px}.hb_card_form[data-v-866a050a]{display:grid;grid-template-columns:repeat(4,1fr);gap:0 22px}.hb_card_form[data-v-866a050a] .ant-form-item{width:100%!important;margin-bottom:5px;margin-right:0}.hb_card_form[data-v-866a050a] .ant-form-item.col_2{grid-column:span 2}.hb_card_form[data-v-866a050a] .ant-form-item.col_3{grid-column:span 3}.hb_card_form[data-v-866a050a] .ant-form-item.col_4,.hb_card_form[data-v-866a050a] .ant-form-item.col_all{grid-column:span 4}@media screen and (max-width:1600px){.hb_card_form[data-v-866a050a] .ant-form-item.col_all{grid-column:span 3}}.hb_card_form[data-v-866a050a] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_form[data-v-866a050a] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_form[data-v-866a050a] .ant-form-item-label{padding:0 0 2px!important}@media screen and (max-width:1600px){.hb_card_form[data-v-866a050a]{grid-template-columns:repeat(3,1fr)}.hb_card_form .col_2[data-v-866a050a]{grid-column:span 2}.hb_card_form .col_3[data-v-866a050a],.hb_card_form .col_4[data-v-866a050a]{grid-column:span 3}}.hb_card_form[data-v-866a050a] .ant-form-item-label>label:after{margin-right:5px;content:""}.hb_card_flex_form[data-v-866a050a]{display:flex;justify-content:space-between;flex-wrap:wrap}.hb_card_flex_form[data-v-866a050a] .ant-form-item-with-help{margin-bottom:0!important}.hb_card_flex_form[data-v-866a050a] .ant-form-item{margin-bottom:var(--hb-card-form-item-mb)}.hb_card_flex_form[data-v-866a050a] .ant-form-item-with-help .ant-form-item-explain{font-size:12px;min-height:20px}.hb_card_flex_form[data-v-866a050a] .ant-form-item-label>label:after{margin:0 8px}.hb_card_flex_form[data-v-866a050a] .ant-form-item{width:48%!important}.hb_card_flex_form.l1c[data-v-866a050a] .ant-form-item{width:100%!important}.hb_card_flex_form.l3c[data-v-866a050a] .ant-form-item{width:30%!important}.hb_card_flex_form.l3c[data-v-866a050a] .ant-form-item.col_2{width:65%!important}.hb_card_flex_form.l4c[data-v-866a050a] .ant-form-item{width:23%!important}.hb_card_flex_form.l4c[data-v-866a050a] .ant-form-item.col_2{width:48.7%!important}.hb_card_flex_form.l4c[data-v-866a050a] .ant-form-item.col_3{width:74.4%!important}.hb_card_flex_form[data-v-866a050a] .ant-form-item.col_all{width:100%!important}.hb_modal_wrapper .__module-card[data-v-866a050a]{margin-bottom:0!important}.hb_modal_wrapper[data-v-866a050a] .hb_card{border:none!important;box-shadow:var(--box-shadow-base);background-color:#fff;overflow:hidden;color:#1f2837;-webkit-transition:.3s;transition:.3s}.hb_modal_wrapper[data-v-866a050a] .hb_card_header{padding:6px;box-sizing:border-box}.hb_modal_wrapper[data-v-866a050a] .hb_fix{display:flex;justify-content:space-between;align-items:center}.hb_modal_wrapper[data-v-866a050a] .hb_fix .hb_card_header-title{display:inline-flex;align-items:center;font-weight:700;font-size:13px;color:#374151bf}.hb_modal_wrapper[data-v-866a050a] .hb_fix .hb_card_header-title:before{content:"";margin-right:8px;background:var(--hb-theme-color);display:inline-block;width:4px;height:14px}.hb_modal_wrapper[data-v-866a050a] .ant-form-vertical .ant-form-item-label{padding:0 0 2px}.hb_modal_wrapper[data-v-866a050a] .hb_card_body{padding:0 6px}.hb_modal_wrapper[data-v-866a050a] .ant-form-item-label>label{font-size:13px;color:#000000ad}.hb_modal_wrapper .hb_card_form_sub_title[data-v-866a050a]{font-size:13px;color:#374151bf}.hb_modal_wrapper[data-v-866a050a] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}.hb_modal_wrapper[data-v-866a050a] .ant-table-pagination.ant-pagination{margin:5px 0}.hb_modal_wrapper[data-v-866a050a] .ant-table-tbody>tr>td{padding:6px;font-size:13px}.hb_modal_wrapper[data-v-866a050a] .ant-table-content>table>tbody>tr>td{padding:6px;font-size:13px}.hb_modal_wrapper[data-v-866a050a] .ant-empty-normal{margin:0}.hb_modal_wrapper[data-v-866a050a] .ant-table-footer{padding:6px 16px}.hb_detail_modal_wrapper .__module-card[data-v-866a050a]{margin-bottom:0!important}.hb_detail_modal_wrapper[data-v-866a050a] .hb_card_body{padding-top:0}.hb_detail_modal_wrapper[data-v-866a050a] .ant-form-item-label>label:after{margin:0 8px}.hb_detail_modal_wrapper .hb_card_form_sub_title[data-v-866a050a]{font-size:13px;font-weight:700}.hb_detail_modal_wrapper[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{padding:6px!important;font-size:13px}.hb_detail_modal_wrapper.hb_need_set_desc_label_width[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{width:var(--hb-detail-desc-label-width)}.hb_detail_modal_wrapper.hb_need_set_desc_value_width[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{width:var(--hb-detail-desc-value-width)}.hb_detail_modal_wrapper[data-v-866a050a] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{padding:6px!important;font-size:13px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-pagination.ant-pagination{margin:5px 0}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-tbody>tr>td{padding:6px;font-size:13px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-content>table>tbody>tr>td{padding:6px;font-size:13px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}.hb_detail_modal_wrapper[data-v-866a050a] .ant-empty-normal{margin:0}.hb_detail_modal_wrapper[data-v-866a050a] .ant-table-footer{padding:6px 16px}.hb_detail_modal_wrapper[data-v-866a050a] .hb_card{border:none}.__detail-content[data-v-41f1fc73]{min-width:800px;margin:0 auto;padding-top:33px;padding-bottom:80px;box-sizing:border-box;background-color:#f0f2f5}.hb-back-top-inner[data-v-41f1fc73]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:#fff;border-radius:50%;color:var(--hb-theme-color);font-size:30px;box-shadow:0 0 8px 2px #0000004d}.hb_edit_detail_content_wrapper[data-v-41f1fc73]{height:100%;overflow:auto}.hb_detail_content[data-v-41f1fc73]{min-width:800px;margin:0 auto;box-sizing:border-box}.hb_detail_content .anticon-rollback[data-v-41f1fc73]{color:var(--hb-theme-color)}[data-v-41f1fc73] .ant-table-content::-webkit-scrollbar-thumb{background:#f3f4f6}[data-v-41f1fc73] .ant-table-content::-webkit-scrollbar-thumb:hover{background:#ff5000}[data-v-41f1fc73] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label,[data-v-41f1fc73] .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content{padding:6px!important;font-size:13px}[data-v-41f1fc73] .ant-table-pagination.ant-pagination{margin:6px 0}[data-v-41f1fc73] .ant-table.ant-table-middle .ant-table-thead>tr>th{padding:6px 4px}[data-v-41f1fc73] .ant-table.ant-table-middle .ant-table-tbody>tr>td{padding:6px 4px}[data-v-41f1fc73] .ant-table-tbody>tr>td{padding:6px;font-size:13px}[data-v-41f1fc73] .ant-table-thead>tr>th{color:#6b7280;font-weight:600;background:#f3f4f6;font-size:13px;padding:6px}[data-v-41f1fc73] .ant-empty-normal{margin:0}[data-v-41f1fc73] .ant-table-footer{padding:6px 16px}.hb_edit_wrapper[data-v-41f1fc73] .ant-form-item-label>label{font-size:13px;color:#374151}.hb_edit_header[data-v-83fcd208]{left:var(--pageHeaderOrFonterLeft);position:fixed;width:100%;z-index:9;justify-content:space-between;box-sizing:border-box;display:flex;height:34px;padding-left:0;background:#fff;align-items:center;box-shadow:0 1px 2px #0000000f,0 1px 3px #0000001a}.hb_edit_header_left[data-v-83fcd208]{font-size:14px;font-weight:700;color:#374151;height:100%;display:flex;align-items:center;padding-left:10px}.hb_edit_header_left .anticon-rollback[data-v-83fcd208]{color:var(--hb-theme-color)}.hb_edit_header_left .backBtn[data-v-83fcd208]{margin-left:6px;height:100%;display:flex;align-items:center}.hb-lib-copy-text-eyevue[data-v-2b6710a1]{cursor:pointer;font-size:20px;display:inline-flex;justify-content:center;align-items:center;width:17px;height:17px;margin-left:8px}.hb-lib-copy-text-eyevue svg[data-v-2b6710a1]{width:13px;height:14px}.drag-slot-wrapper[data-v-15b227f5]{cursor:move;padding:8px;background-color:#f9f9f9;border:1px solid #eee;margin-bottom:10px}[data-v-cf0b0a0d]:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.activted[data-v-cf0b0a0d]{color:var(--hb-theme-color)}.ant-dropdown-link[data-v-cf0b0a0d]{cursor:pointer}.hb_lib_loading_loading_anima[data-v-22f438b9]{background-color:#f0f0f059;display:flex;justify-content:center;align-items:center;perspective:800px;position:fixed;inset:0}.cube[data-v-22f438b9]{position:relative;width:100px;height:100px;transform-style:preserve-3d;animation:rotate-22f438b9 4s infinite linear}.side[data-v-22f438b9]{position:absolute;width:100px;height:100px;background:#ff5000cc;border:3px solid #fff;opacity:.9;box-shadow:inset 0 0 15px #ffffff80}.front[data-v-22f438b9]{transform:translateZ(50px);background:#ff5000f2}.back[data-v-22f438b9]{transform:rotateY(180deg) translateZ(50px);background:#e64800e6}.right[data-v-22f438b9]{transform:rotateY(90deg) translateZ(50px);background:#ff6626e6}.left[data-v-22f438b9]{transform:rotateY(-90deg) translateZ(50px);background:#ff4000e6}.top[data-v-22f438b9]{transform:rotateX(90deg) translateZ(50px);background:#ff8040e6}.bottom[data-v-22f438b9]{transform:rotateX(-90deg) translateZ(50px);background:#cc4000e6}@keyframes rotate-22f438b9{0%{transform:rotateX(0) rotateY(0) rotate(0)}to{transform:rotateX(360deg) rotateY(360deg) rotate(360deg)}}.hb_lib_loading_load_tips[data-v-22f438b9]{position:absolute;bottom:36%;text-align:center;font-size:16px;color:#666}.file-preview-modal-wrap.ant-modal-wrap .ant-modal-content[data-v-d14508e1]{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden}.file-preview-modal-wrap--mobile.ant-modal-wrap .ant-modal[data-v-d14508e1]{width:100%!important;max-width:100vw;top:0;padding-bottom:0;margin:0}.file-preview-modal-wrap--mobile.ant-modal-wrap .ant-modal-content[data-v-d14508e1]{border-radius:0;display:flex;flex-direction:column;max-height:100vh}@media screen and (max-width:768px){.file-preview-modal-footer__close[data-v-d14508e1]{margin-left:0!important}.file-preview-modal-title[data-v-d14508e1]{width:90%}}.file-preview-modal-body--fill[data-v-d14508e1]{flex:1;min-height:0;width:100%;height:100%;display:flex;flex-direction:column;box-sizing:border-box}.file-preview-modal-title__tip[data-v-d14508e1]{font-size:11px;color:red;margin-left:10px}.file-preview-modal-body__iframe[data-v-d14508e1]{flex:1;min-height:0;width:100%;align-self:stretch}.file-preview-modal-body--fill[data-v-d14508e1]>:not(.file-preview-modal-body__img):not(.no-preview){flex:1;min-height:0;width:100%;display:flex;flex-direction:column;overflow:hidden;align-self:stretch}.file-preview-modal-body--fill[data-v-d14508e1] .vue-office-excel,.file-preview-modal-body--fill[data-v-d14508e1] .vue-office-docx,.file-preview-modal-body--fill[data-v-d14508e1] div[class*=vue-office]{flex:1;min-height:0!important;height:100%!important;overflow:auto}.file-preview-modal-body__plaintext[data-v-d14508e1]{flex:1;min-height:0;width:100%;display:flex;flex-direction:column;align-items:stretch;justify-content:center;overflow:hidden}.file-preview-modal-body__pre[data-v-d14508e1]{flex:1;min-height:0;margin:0;padding:12px;overflow:auto;white-space:pre-wrap;word-break:break-word;font-size:1.3rem;line-height:1.5;color:#000000d9;background:#00000005;border-radius:4px}.file-preview-modal-body__img[data-v-d14508e1]{display:block;max-width:100%;max-height:70vh;margin:0 auto;object-fit:contain}.file-preview-modal-body__hint[data-v-d14508e1]{margin:8px 0 0;font-size:12px;line-height:1.5;color:#00000073}.no-preview[data-v-d14508e1]{padding:24px 16px;text-align:center;color:#00000073}.file-preview-modal-footer[data-v-d14508e1]{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px;width:100%}.file-preview-modal-footer__nav[data-v-d14508e1]{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.file-preview-modal-footer--mobile[data-v-d14508e1]{flex-direction:column;align-items:stretch;gap:12px}.file-preview-modal-footer--mobile .file-preview-modal-footer__nav[data-v-d14508e1]{display:grid;grid-template-columns:1fr 1fr;gap:10px;width:100%}.file-preview-modal-footer--mobile .file-preview-modal-footer__nav[data-v-d14508e1] .ant-btn{min-height:44px}[data-v-d14508e1] .pdf-preview,[data-v-d14508e1] .pdf-iframe{width:100%;height:100%}:root{--hb-form-item-margin: 10px;--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-form-space: 6px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-container{background:#fff}.hb-lib-list-page-container .hb_list_page_button{height:var(--hb-list-button-height)!important;padding:0 var(--hb-space)!important}.hb-lib-list-page-container .hb_list_page_button:not(:last-child){margin-right:var(--hb-space)}.hb-lib-list-page-container .hb_list_page_button .buttonText{line-height:var(--hb-list-button-height)!important}.hb-lib-list-page-container .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0}.list-page-box{padding:5px 0 0}.list-page-box .ant-table-row .ant-table-cell,.list-page-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.list-page-box .ant-input-search-button{border:none!important}.list-page-box .ant-tabs-top>.ant-tabs-nav{margin-bottom:calc(var(--hb-space) / 2)!important}.list-page-box .ant-tabs-nav .ant-tabs-nav-list .ant-tabs-tab{padding:calc(var(--hb-space) / 2) 0!important}.list-page-box .ant-table-body::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:var(--hb-border-radius)}.list-page-box .ant-table-bordered.ant-table-fixed-header .ant-table-body{height:var(--hb-list-table-height)!important;max-height:none!important}.hb-lib-list-page-act-box{background:#fff;display:flex;justify-content:space-between;box-shadow:0 4px 3px #f0f0f0cf;padding:calc(var(--hb-space) / 2) var(--hb-space)}.hb-lib-list-page-act{display:flex;align-items:center}.hb-lib-list-page-act .hb-lib-list-page-act-svg{display:inline-block;width:18px;height:18px;cursor:pointer}.hb-lib-list-page-act .hb-lib-list-page-act-svg:not(:last-child){margin-right:calc(var(--hb-space) / 2)}.hb-lib-list-page-act .hb-lib-list-page-act-svg .icon{width:100%;height:100%}.hb-lib-list-page-breadcrumb{font-size:var(--hb-text-font-size);color:#3e3e3e;display:flex;align-items:center}.hb-lib-list-page-form-box{display:flex;justify-content:space-between;background:#fff;border-radius:8px}.hb-form-item-ui{flex:1}.hb-form-item-ui .ant-form-item{border:1px solid #d1d5dbb3!important;border-radius:var(--hb-border-radius)!important;margin-bottom:var(--hb-form-space)!important;margin-right:var(--hb-form-space)!important;height:var(--hb-f-item-height);min-width:250px!important}.hb-form-item-ui .ant-input{border:none!important;border-radius:var(--hb-border-radius)!important;padding:4px var(--hb-space) 4px 0px!important}.hb-form-item-ui .ant-input:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-input-number{border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-input-number:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-form-item-label>label{padding:0 0 0 var(--hb-form-space)}.hb-form-item-ui .ant-select-selector{border:none!important;border-radius:var(--hb-border-radius)!important;padding:0px var(--hb-form-space) 0px var(--hb-form-space)!important;outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-selector:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-focused{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper{height:var(--hb-f-item-content-height)!important;border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-input-affix-wrapper:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-picker,.hb-form-item-ui .ant-picker-range{border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-picker-focused{box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper:focus,.hb-form-item-ui .ant-input-affix-wrapper-focused{box-shadow:none!important}.hb-form-item-ui .ant-form-item-control-input-content{display:flex}.hb-form-item-ui .ant-select-selection-item{display:flex;align-items:center}.hb-form-item-ui .ant-select-selection-placeholder{padding-left:var(--hb-form-space)!important}.hb-form-item-ui .ant-select-selection-overflow{flex-wrap:nowrap;overflow:hidden}.hb-form-item-ui .ant-input-group-addon{border:none!important}body{overflow-x:hidden}.btn_pd{padding-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card{margin-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card-head{min-height:var(--hb-card-head)!important}.hb-lib-detail-box .ant-card-head .ant-card-head-title{padding:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-card-body{padding:var(--hb-space)!important}.hb-lib-detail-box .ant-table-row .ant-table-cell,.hb-lib-detail-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-detail-box .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-descriptions-row,.hb-lib-detail-box .ant-descriptions-item{padding-bottom:calc(var(--hb-space) / 2)!important}.isNotMb{margin-bottom:0!important}.hb_form_item_mb{margin-bottom:var(--hb-form-item-margin)!important}.hb_small_button{height:var(--hb-list-button-height)!important;padding:0 var(--hb-space)!important}.ant-form-item .ant-input-textarea-show-count:after{margin-bottom:-9px}
|