ocpview-plus 0.0.1

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.
Files changed (195) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +0 -0
  3. package/dist/efviewplus.min.esm.js +99954 -0
  4. package/dist/efviewplus.min.js +142 -0
  5. package/dist/locale/lang.js +1 -0
  6. package/dist/locale/zh-CN.js +1 -0
  7. package/dist/locale/zh-TW.js +1 -0
  8. package/dist/locale/zh-UG.js +1 -0
  9. package/dist/style.css +9 -0
  10. package/dist/styles/efviewplus.css +1 -0
  11. package/package.json +144 -0
  12. package/src/components/base/controlbase.vue +191 -0
  13. package/src/components/base/controlbox.vue +102 -0
  14. package/src/components/base/index.js +3 -0
  15. package/src/components/base/load.js +20 -0
  16. package/src/components/base/probase.js +220 -0
  17. package/src/components/base/size.js +78 -0
  18. package/src/components/billbox/billbox.vue +68 -0
  19. package/src/components/billbox/index.js +2 -0
  20. package/src/components/cascaderbox/cascaderbox.vue +184 -0
  21. package/src/components/cascaderbox/index.js +2 -0
  22. package/src/components/checkbox/checkbox.vue +76 -0
  23. package/src/components/checkbox/checkgroupbox.vue +104 -0
  24. package/src/components/checkbox/index.js +3 -0
  25. package/src/components/colorbox/colorbox.vue +44 -0
  26. package/src/components/colorbox/index.js +2 -0
  27. package/src/components/combobox/combobox.vue +220 -0
  28. package/src/components/combobox/index.js +2 -0
  29. package/src/components/conditionbox/conditionbase.vue +195 -0
  30. package/src/components/conditionbox/conditionbox.vue +63 -0
  31. package/src/components/conditionbox/conditionfilterbox.vue +477 -0
  32. package/src/components/conditionbox/conditionselectorbox.vue +237 -0
  33. package/src/components/conditionbox/index.js +5 -0
  34. package/src/components/conditionbox/queryconditionbox.vue +26 -0
  35. package/src/components/conditionbox/queryconditionboxbase.vue +124 -0
  36. package/src/components/conditionbox/searchconditionbox.vue +114 -0
  37. package/src/components/conditionbox/searchgrid.vue +391 -0
  38. package/src/components/datebox/datebox.vue +129 -0
  39. package/src/components/datebox/daterangebox.vue +155 -0
  40. package/src/components/datebox/index.js +3 -0
  41. package/src/components/form/baseform.vue +677 -0
  42. package/src/components/form/detailsbox.vue +487 -0
  43. package/src/components/form/formbox.vue +29 -0
  44. package/src/components/form/formcardbox.vue +268 -0
  45. package/src/components/form/formcardgroupbox.vue +252 -0
  46. package/src/components/form/formcompro.js +19 -0
  47. package/src/components/form/formdetail.vue +129 -0
  48. package/src/components/form/formdetailtwo.vue +302 -0
  49. package/src/components/form/index.js +8 -0
  50. package/src/components/form/toolanchor.js +46 -0
  51. package/src/components/form/workform.vue +168 -0
  52. package/src/components/grid/basegrid.vue +1061 -0
  53. package/src/components/grid/editgrid.vue +51 -0
  54. package/src/components/grid/editgridbase.vue +947 -0
  55. package/src/components/grid/editgridcard.vue +193 -0
  56. package/src/components/grid/expandrow.vue +137 -0
  57. package/src/components/grid/index.js +6 -0
  58. package/src/components/grid/viewgrid.vue +122 -0
  59. package/src/components/grid/viewgridbase.vue +1284 -0
  60. package/src/components/icon/common-icon.vue +53 -0
  61. package/src/components/icon/eicon.vue +29 -0
  62. package/src/components/icon/icons.vue +42 -0
  63. package/src/components/icon/index.js +2 -0
  64. package/src/components/label/index.js +3 -0
  65. package/src/components/label/showtext.vue +95 -0
  66. package/src/components/load/loadcartoon.vue +228 -0
  67. package/src/components/map/index.js +2 -0
  68. package/src/components/map/mapbox.vue +348 -0
  69. package/src/components/masterplate/appendix.vue +586 -0
  70. package/src/components/masterplate/approval.vue +803 -0
  71. package/src/components/masterplate/base.vue +985 -0
  72. package/src/components/masterplate/billasyncimport.vue +614 -0
  73. package/src/components/masterplate/billconditionbox.vue +224 -0
  74. package/src/components/masterplate/billconditionsbox.vue +427 -0
  75. package/src/components/masterplate/billdetailform.vue +990 -0
  76. package/src/components/masterplate/billimport.vue +263 -0
  77. package/src/components/masterplate/billquerygrid.vue +316 -0
  78. package/src/components/masterplate/billsinglegrid.vue +234 -0
  79. package/src/components/masterplate/birtreport.vue +185 -0
  80. package/src/components/masterplate/detailbtntoolbar.vue +311 -0
  81. package/src/components/masterplate/detailsbox.vue +386 -0
  82. package/src/components/masterplate/editgridcard.vue +222 -0
  83. package/src/components/masterplate/editgridcard2.vue +109 -0
  84. package/src/components/masterplate/formcard.vue +106 -0
  85. package/src/components/masterplate/formcardgroupbox.vue +168 -0
  86. package/src/components/masterplate/formdetailtwo.vue +356 -0
  87. package/src/components/masterplate/gridcolset.vue +227 -0
  88. package/src/components/masterplate/index.js +23 -0
  89. package/src/components/masterplate/layouttemplate.vue +33 -0
  90. package/src/components/masterplate/leftlistrightdetails.vue +474 -0
  91. package/src/components/masterplate/leftlistrightlist.vue +465 -0
  92. package/src/components/masterplate/lefttreerightdetails.vue +619 -0
  93. package/src/components/masterplate/levelreport.vue +510 -0
  94. package/src/components/masterplate/listbtntoolbar.vue +257 -0
  95. package/src/components/masterplate/listdetails.vue +769 -0
  96. package/src/components/masterplate/operlog.vue +272 -0
  97. package/src/components/masterplate/options.vue +110 -0
  98. package/src/components/masterplate/page.vue +102 -0
  99. package/src/components/masterplate/promptmessage.vue +74 -0
  100. package/src/components/masterplate/querybar.vue +490 -0
  101. package/src/components/masterplate/report.vue +357 -0
  102. package/src/components/masterplate/rowbtntoolbar.vue +126 -0
  103. package/src/components/masterplate/simpletree.vue +129 -0
  104. package/src/components/masterplate/simpleviewgrid.vue +144 -0
  105. package/src/components/mychart/bar/bar.vue +202 -0
  106. package/src/components/mychart/basechart.vue +190 -0
  107. package/src/components/mychart/complexmychart/barline.vue +154 -0
  108. package/src/components/mychart/gauge/gauge.vue +83 -0
  109. package/src/components/mychart/index.js +9 -0
  110. package/src/components/mychart/line/line.vue +202 -0
  111. package/src/components/mychart/liquidfill/liquidfill.vue +109 -0
  112. package/src/components/mychart/pie/pie.vue +96 -0
  113. package/src/components/mychart/radar/radar.vue +122 -0
  114. package/src/components/mychart/scatter/scatter.vue +76 -0
  115. package/src/components/numberbox/append.js +11 -0
  116. package/src/components/numberbox/index.js +3 -0
  117. package/src/components/numberbox/numberbox.vue +303 -0
  118. package/src/components/numberbox/numberrangebox.vue +423 -0
  119. package/src/components/picturebox/filebox.vue +365 -0
  120. package/src/components/picturebox/index.js +3 -0
  121. package/src/components/picturebox/picturebox.vue +541 -0
  122. package/src/components/picturebox/uploadbox.vue +164 -0
  123. package/src/components/poptagbox/index.js +2 -0
  124. package/src/components/poptagbox/poptagbox.vue +389 -0
  125. package/src/components/poptextbox/index.js +2 -0
  126. package/src/components/poptextbox/poptextbox.vue +601 -0
  127. package/src/components/radiobox/index.js +2 -0
  128. package/src/components/radiobox/radiogroupbox.vue +76 -0
  129. package/src/components/richtextbox/editor.vue +150 -0
  130. package/src/components/richtextbox/index.js +2 -0
  131. package/src/components/richtextbox/richtextbox.vue +448 -0
  132. package/src/components/textbox/index.js +2 -0
  133. package/src/components/textbox/textbox.vue +98 -0
  134. package/src/components/timebox/index.js +2 -0
  135. package/src/components/timebox/timebox.vue +76 -0
  136. package/src/components/toolbar/ebutton.vue +169 -0
  137. package/src/components/toolbar/index.js +3 -0
  138. package/src/components/toolbar/toolbar.vue +446 -0
  139. package/src/components/tree/basetree.vue +725 -0
  140. package/src/components/tree/index.js +3 -0
  141. package/src/components/tree/treedata.vue +51 -0
  142. package/src/components/tree/treedatabase.vue +189 -0
  143. package/src/components/upload/billimport.vue +233 -0
  144. package/src/components/upload/index.js +2 -0
  145. package/src/components/videobox/index.js +2 -0
  146. package/src/components/videobox/uploadbox.vue +148 -0
  147. package/src/components/videobox/videobox.vue +503 -0
  148. package/src/components/wrichtextbox/editor.vue +219 -0
  149. package/src/components/wrichtextbox/index.js +2 -0
  150. package/src/components/wrichtextbox/wrichtextbox.vue +63 -0
  151. package/src/index.js +215 -0
  152. package/src/locale/format.js +51 -0
  153. package/src/locale/index.js +63 -0
  154. package/src/locale/lang/zh-CN.js +123 -0
  155. package/src/locale/lang/zh-TW.js +114 -0
  156. package/src/locale/lang/zh-UG.js +115 -0
  157. package/src/locale/lang.js +15 -0
  158. package/src/method/case/case.js +1180 -0
  159. package/src/method/config/queryconfig.js +24 -0
  160. package/src/method/const/const.js +815 -0
  161. package/src/method/index.js +8 -0
  162. package/src/static/excel/exportexcel.js +627 -0
  163. package/src/static/iview/coustom.js +463 -0
  164. package/src/store/index.js +19 -0
  165. package/src/store/modules/app.js +53 -0
  166. package/src/styles/README.md +3 -0
  167. package/src/styles/common.less +75 -0
  168. package/src/styles/components/anchor.less +74 -0
  169. package/src/styles/components/approval.less +136 -0
  170. package/src/styles/components/button.less +208 -0
  171. package/src/styles/components/card.less +51 -0
  172. package/src/styles/components/content.less +38 -0
  173. package/src/styles/components/font.less +314 -0
  174. package/src/styles/components/form.less +72 -0
  175. package/src/styles/components/iconfont/fonts/iconfont.less +1376 -0
  176. package/src/styles/components/iconfont/fonts/iconfont.svg +699 -0
  177. package/src/styles/components/iconfont/fonts/iconfont.ttf +0 -0
  178. package/src/styles/components/iconfont/fonts/iconfont.woff +0 -0
  179. package/src/styles/components/iconfont/fonts/iconfont.woff2 +0 -0
  180. package/src/styles/components/index.less +16 -0
  181. package/src/styles/components/input.less +290 -0
  182. package/src/styles/components/modal.less +203 -0
  183. package/src/styles/components/page.less +340 -0
  184. package/src/styles/components/select.less +361 -0
  185. package/src/styles/components/steps.less +367 -0
  186. package/src/styles/components/table.less +544 -0
  187. package/src/styles/components/tabs.less +249 -0
  188. package/src/styles/components/upload.less +83 -0
  189. package/src/styles/custom.less +67 -0
  190. package/src/styles/index.less +6 -0
  191. package/src/styles/pack.less +6 -0
  192. package/src/utils/EfuMessenger.js +155 -0
  193. package/src/utils/assist.js +353 -0
  194. package/src/utils/index.js +1 -0
  195. package/src/utils/random_str.js +10 -0
@@ -0,0 +1,1376 @@
1
+ @font-face {
2
+ font-family: "iconfont"; /* Project id 4464454 */
3
+ src: url('iconfont.woff2?t=1732177892909') format('woff2'),
4
+ url('iconfont.woff?t=1732177892909') format('woff'),
5
+ url('iconfont.ttf?t=1732177892909') format('truetype'),
6
+ url('iconfont.svg?t=1732177892909#iconfont') format('svg');
7
+ }
8
+
9
+ .iconfont {
10
+ font-family: "iconfont" !important;
11
+ font-size: 16px;
12
+ font-style: normal;
13
+ -webkit-font-smoothing: antialiased;
14
+ -moz-osx-font-smoothing: grayscale;
15
+ }
16
+
17
+ .icon-custom-qushitu:before {
18
+ content: "\e7fa";
19
+ }
20
+
21
+ .icon-custom-shu-biaoji:before {
22
+ content: "\e7f9";
23
+ }
24
+
25
+ .icon-custom-dibuduiqi:before {
26
+ content: "\e7f8";
27
+ }
28
+
29
+ .icon-custom-hengxiangjuzhongduiqi:before {
30
+ content: "\e7ef";
31
+ }
32
+
33
+ .icon-custom-shangyi:before {
34
+ content: "\e7f0";
35
+ }
36
+
37
+ .icon-custom-xiayi:before {
38
+ content: "\e7f1";
39
+ }
40
+
41
+ .icon-custom-youyi:before {
42
+ content: "\e7f2";
43
+ }
44
+
45
+ .icon-custom-zongxiangjuzhongduiqi:before {
46
+ content: "\e7f3";
47
+ }
48
+
49
+ .icon-custom-zuoyi:before {
50
+ content: "\e7f4";
51
+ }
52
+
53
+ .icon-custom-zuoduiqi:before {
54
+ content: "\e7f5";
55
+ }
56
+
57
+ .icon-custom-youduiqi:before {
58
+ content: "\e7f6";
59
+ }
60
+
61
+ .icon-custom-dingbuduiqi:before {
62
+ content: "\e7f7";
63
+ }
64
+
65
+ .icon-custom-syncpop:before {
66
+ content: "\e7ed";
67
+ }
68
+
69
+ .icon-custom-synctags:before {
70
+ content: "\e7ee";
71
+ }
72
+
73
+ .icon-custom-tiaoma:before {
74
+ content: "\e7e9";
75
+ }
76
+
77
+ .icon-custom-erweima:before {
78
+ content: "\e7ea";
79
+ }
80
+
81
+ .icon-custom-yixuanmendian:before {
82
+ content: "\e7eb";
83
+ }
84
+
85
+ .icon-custom-wenben:before {
86
+ content: "\e7ec";
87
+ }
88
+
89
+ .icon-custom-shangchuanbeijingtu:before {
90
+ content: "\e7e8";
91
+ }
92
+
93
+ .icon-custom-anniu-shejibuju:before {
94
+ content: "\e7e7";
95
+ }
96
+
97
+ .icon-custom-shangchuanlogo:before {
98
+ content: "\e7e6";
99
+ }
100
+
101
+ .icon-custom-anniu-daochutaizhang:before {
102
+ content: "\e7d9";
103
+ }
104
+
105
+ .icon-custom-anniu-daochuTXT:before {
106
+ content: "\e7da";
107
+ }
108
+
109
+ .icon-custom-anniu-yinruyuebao:before {
110
+ content: "\e7db";
111
+ }
112
+
113
+ .icon-custom-anniu-luruwuliuma:before {
114
+ content: "\e7dc";
115
+ }
116
+
117
+ .icon-custom-anniu-yizhongzhi:before {
118
+ content: "\e7dd";
119
+ }
120
+
121
+ .icon-custom-anniu-yinrushiyongrenzheng:before {
122
+ content: "\e7de";
123
+ }
124
+
125
+ .icon-custom-anniu-daochuqingdan:before {
126
+ content: "\e7df";
127
+ }
128
+
129
+ .icon-custom-anniu-dangqian:before {
130
+ content: "\e7e0";
131
+ }
132
+
133
+ .icon-custom-anniu-qiangzhishenhe:before {
134
+ content: "\e7e1";
135
+ }
136
+
137
+ .icon-custom-anniu-yichuli:before {
138
+ content: "\e7e2";
139
+ }
140
+
141
+ .icon-custom-anniu-yichangtijiao:before {
142
+ content: "\e7e3";
143
+ }
144
+
145
+ .icon-custom-anniu-daochuliebiao:before {
146
+ content: "\e7e4";
147
+ }
148
+
149
+ .icon-custom-anniu-moban:before {
150
+ content: "\e7e5";
151
+ }
152
+
153
+ .icon-custom-anniu-daizhongzhi:before {
154
+ content: "\e7ce";
155
+ }
156
+
157
+ .icon-custom-anniu-shougongshuaxinkeliu:before {
158
+ content: "\e7cf";
159
+ }
160
+
161
+ .icon-custom-anniu-gongdanpingjia:before {
162
+ content: "\e7d0";
163
+ }
164
+
165
+ .icon-custom-anniu-yiwancheng:before {
166
+ content: "\e7d1";
167
+ }
168
+
169
+ .icon-custom-anniu-chengchangzhitiaozheng:before {
170
+ content: "\e7d2";
171
+ }
172
+
173
+ .icon-custom-anniu-yanqi:before {
174
+ content: "\e7d3";
175
+ }
176
+
177
+ .icon-custom-anniu-kaipiao:before {
178
+ content: "\e7d4";
179
+ }
180
+
181
+ .icon-custom-anniu-qiangzhishengjiangji:before {
182
+ content: "\e7d5";
183
+ }
184
+
185
+ .icon-custom-anniu-daipaidan:before {
186
+ content: "\e7d6";
187
+ }
188
+
189
+ .icon-custom-anniu-xiaopiaochuli:before {
190
+ content: "\e7d7";
191
+ }
192
+
193
+ .icon-custom-anniu-yixiangjinshouqu:before {
194
+ content: "\e7d8";
195
+ }
196
+
197
+ .icon-custom-anniu-ceshilianjie:before {
198
+ content: "\e7c0";
199
+ }
200
+
201
+ .icon-custom-anniu-daoruzhibiao:before {
202
+ content: "\e7c1";
203
+ }
204
+
205
+ .icon-custom-anniu-chakanInsertjiaoben:before {
206
+ content: "\e7c2";
207
+ }
208
+
209
+ .icon-custom-anniu-hexiao:before {
210
+ content: "\e7c3";
211
+ }
212
+
213
+ .icon-custom-anniu-zhuangtaiguanli:before {
214
+ content: "\e7c4";
215
+ }
216
+
217
+ .icon-custom-anniu-tianjiazhibiao:before {
218
+ content: "\e7c5";
219
+ }
220
+
221
+ .icon-custom-anniu-mobanhao:before {
222
+ content: "\e7c6";
223
+ }
224
+
225
+ .icon-custom-anniu-chakanshitujiaoben:before {
226
+ content: "\e7c7";
227
+ }
228
+
229
+ .icon-custom-anniu-xiaoxiceshi:before {
230
+ content: "\e7c8";
231
+ }
232
+
233
+ .icon-custom-anniu-paidan:before {
234
+ content: "\e7c9";
235
+ }
236
+
237
+ .icon-custom-anniu-daoruwuliuma:before {
238
+ content: "\e7ca";
239
+ }
240
+
241
+ .icon-custom-anniu-tianjiadaorenwuzu:before {
242
+ content: "\e7cb";
243
+ }
244
+
245
+ .icon-custom-anniu-daorupandianjieguo:before {
246
+ content: "\e7cc";
247
+ }
248
+
249
+ .icon-custom-anniu-taotai:before {
250
+ content: "\e7cd";
251
+ }
252
+
253
+ .icon-custom-anniu-qingkong:before {
254
+ content: "\e7bc";
255
+ }
256
+
257
+ .icon-custom-anniu-chakanpingzhengshuju:before {
258
+ content: "\e7bd";
259
+ }
260
+
261
+ .icon-custom-anniu-benxiang:before {
262
+ content: "\e7be";
263
+ }
264
+
265
+ .icon-custom-anniu-ceshi:before {
266
+ content: "\e7bf";
267
+ }
268
+
269
+ .icon-custom-anniu-xinfangfa:before {
270
+ content: "\e7b8";
271
+ }
272
+
273
+ .icon-custom-anniu-rizhi:before {
274
+ content: "\e7b9";
275
+ }
276
+
277
+ .icon-custom-anniu-gengxinziliao:before {
278
+ content: "\e7ba";
279
+ }
280
+
281
+ .icon-custom-anniu-gengxinjiage:before {
282
+ content: "\e7bb";
283
+ }
284
+
285
+ .icon-custom-anniu-rizhichaxun:before {
286
+ content: "\e7b6";
287
+ }
288
+
289
+ .icon-custom-anniu-SQLchaxun:before {
290
+ content: "\e7b7";
291
+ }
292
+
293
+ .icon-custom-anniu-dayinkuaidimiandan:before {
294
+ content: "\e7b5";
295
+ }
296
+
297
+ .icon-custom-anniu-shanchuzhangtao:before {
298
+ content: "\e7aa";
299
+ }
300
+
301
+ .icon-custom-anniu-dayinjiaokuantongzhi:before {
302
+ content: "\e7ab";
303
+ }
304
+
305
+ .icon-custom-anniu-shanchupinggumingxi:before {
306
+ content: "\e7ac";
307
+ }
308
+
309
+ .icon-custom-anniu-dayinshoukuandan:before {
310
+ content: "\e7ad";
311
+ }
312
+
313
+ .icon-custom-anniu-shanchumendiancanshu:before {
314
+ content: "\e7ae";
315
+ }
316
+
317
+ .icon-custom-anniu-saoma:before {
318
+ content: "\e7af";
319
+ }
320
+
321
+ .icon-custom-anniu-dayinshangpintiaoma:before {
322
+ content: "\e7b0";
323
+ }
324
+
325
+ .icon-custom-anniu-dayinyulan:before {
326
+ content: "\e7b1";
327
+ }
328
+
329
+ .icon-custom-anniu-shanchupingfenmingxi:before {
330
+ content: "\e7b2";
331
+ }
332
+
333
+ .icon-custom-anniu-dayinwujiabiaoqian:before {
334
+ content: "\e7b3";
335
+ }
336
+
337
+ .icon-custom-anniu-dayinkapian:before {
338
+ content: "\e7b4";
339
+ }
340
+
341
+ .icon-custom-anniu-shanchuliebiao:before {
342
+ content: "\e7a4";
343
+ }
344
+
345
+ .icon-custom-anniu-xinzengmoban:before {
346
+ content: "\e7a5";
347
+ }
348
+
349
+ .icon-custom-anniu-baopidan:before {
350
+ content: "\e7a6";
351
+ }
352
+
353
+ .icon-custom-anniu-shanchuzhibiao:before {
354
+ content: "\e7a7";
355
+ }
356
+
357
+ .icon-custom-anniu-shanchurenwu:before {
358
+ content: "\e7a8";
359
+ }
360
+
361
+ .icon-custom-anniu-xinzengguizu:before {
362
+ content: "\e7a9";
363
+ }
364
+
365
+ .icon-custom-anniu-shanchumoban:before {
366
+ content: "\e79e";
367
+ }
368
+
369
+ .icon-custom-anniu-shanchumingxi:before {
370
+ content: "\e79f";
371
+ }
372
+
373
+ .icon-custom-anniu-xinzengpingfenmingxi:before {
374
+ content: "\e7a0";
375
+ }
376
+
377
+ .icon-custom-anniu-xinzengzhangtao:before {
378
+ content: "\e7a1";
379
+ }
380
+
381
+ .icon-custom-anniu-shanhang:before {
382
+ content: "\e7a2";
383
+ }
384
+
385
+ .icon-custom-anniu-xinzengpinggumingxi:before {
386
+ content: "\e7a3";
387
+ }
388
+
389
+ .icon-custom-anniu-xinzengmingxi:before {
390
+ content: "\e798";
391
+ }
392
+
393
+ .icon-custom-anniu-xinzengzhibiaozu:before {
394
+ content: "\e799";
395
+ }
396
+
397
+ .icon-custom-anniu-xinzenglaiyuanbiao:before {
398
+ content: "\e79a";
399
+ }
400
+
401
+ .icon-custom-anniu-xinzengbenxiang:before {
402
+ content: "\e79b";
403
+ }
404
+
405
+ .icon-custom-anniu-xinzengzhibiao:before {
406
+ content: "\e79c";
407
+ }
408
+
409
+ .icon-custom-anniu-xinzengbenji:before {
410
+ content: "\e79d";
411
+ }
412
+
413
+ .icon-custom-anniu-xinzengfenlei:before {
414
+ content: "\e792";
415
+ }
416
+
417
+ .icon-custom-anniu-xinzengzirenwu:before {
418
+ content: "\e793";
419
+ }
420
+
421
+ .icon-custom-anniu-xinzengzixiang:before {
422
+ content: "\e794";
423
+ }
424
+
425
+ .icon-custom-anniu-xinzengziduan:before {
426
+ content: "\e795";
427
+ }
428
+
429
+ .icon-custom-anniu-xinzengliebiao:before {
430
+ content: "\e796";
431
+ }
432
+
433
+ .icon-custom-anniu-xinzengfenzu:before {
434
+ content: "\e797";
435
+ }
436
+
437
+ .icon-custom-anniu-chushidaoru:before {
438
+ content: "\e78c";
439
+ }
440
+
441
+ .icon-custom-anniu-xinzengrenwu:before {
442
+ content: "\e78d";
443
+ }
444
+
445
+ .icon-custom-anniu-xinzengqueshengcanshu:before {
446
+ content: "\e78e";
447
+ }
448
+
449
+ .icon-custom-anniu-xinzengxiaji:before {
450
+ content: "\e78f";
451
+ }
452
+
453
+ .icon-custom-anniu-chushishangbao:before {
454
+ content: "\e790";
455
+ }
456
+
457
+ .icon-custom-anniu-xinzengmendiancanshu:before {
458
+ content: "\e791";
459
+ }
460
+
461
+ .icon-custom-anniu-xieci:before {
462
+ content: "\e786";
463
+ }
464
+
465
+ .icon-custom-anniu-quanxuan:before {
466
+ content: "\e787";
467
+ }
468
+
469
+ .icon-custom-anniu-quanqing:before {
470
+ content: "\e788";
471
+ }
472
+
473
+ .icon-custom-anniu-tingyongTSSzhanghao:before {
474
+ content: "\e789";
475
+ }
476
+
477
+ .icon-custom-anniu-qitaguidang:before {
478
+ content: "\e78a";
479
+ }
480
+
481
+ .icon-custom-anniu-chuangjianshitu:before {
482
+ content: "\e78b";
483
+ }
484
+
485
+ .icon-custom-anniu-baozhengjintuiqu:before {
486
+ content: "\e780";
487
+ }
488
+
489
+ .icon-custom-anniu-tingyong:before {
490
+ content: "\e781";
491
+ }
492
+
493
+ .icon-custom-anniu-xiugaiziduanxianshi:before {
494
+ content: "\e782";
495
+ }
496
+
497
+ .icon-custom-anniu-zuofei:before {
498
+ content: "\e783";
499
+ }
500
+
501
+ .icon-custom-anniu-baocunziduan:before {
502
+ content: "\e784";
503
+ }
504
+
505
+ .icon-custom-anniu-huiyuanhuanka:before {
506
+ content: "\e785";
507
+ }
508
+
509
+ .icon-custom-anniu-fukuanzhuanyajin:before {
510
+ content: "\e77a";
511
+ }
512
+
513
+ .icon-custom-anniu-huiyuankadongjie:before {
514
+ content: "\e77b";
515
+ }
516
+
517
+ .icon-custom-anniu-huiyuanhebing:before {
518
+ content: "\e77c";
519
+ }
520
+
521
+ .icon-custom-anniu-huiyuankazhuxiao:before {
522
+ content: "\e77d";
523
+ }
524
+
525
+ .icon-custom-anniu-huiyuanhuifangtiaocha:before {
526
+ content: "\e77e";
527
+ }
528
+
529
+ .icon-custom-anniu-huiyuanfaka:before {
530
+ content: "\e77f";
531
+ }
532
+
533
+ .icon-custom-anniu-weihuzhong:before {
534
+ content: "\e774";
535
+ }
536
+
537
+ .icon-custom-anniu-huoqushouquanmendian:before {
538
+ content: "\e775";
539
+ }
540
+
541
+ .icon-custom-anniu-jiebang:before {
542
+ content: "\e776";
543
+ }
544
+
545
+ .icon-custom-anniu-bianji:before {
546
+ content: "\e777";
547
+ }
548
+
549
+ .icon-custom-anniu-zongheguanlibuguidang:before {
550
+ content: "\e778";
551
+ }
552
+
553
+ .icon-custom-anniu-jieshu:before {
554
+ content: "\e779";
555
+ }
556
+
557
+ .icon-custom-anniu-shezhikehujingli:before {
558
+ content: "\e76e";
559
+ }
560
+
561
+ .icon-custom-anniu-fukuan:before {
562
+ content: "\e76f";
563
+ }
564
+
565
+ .icon-custom-anniu-zerenrenbiangeng:before {
566
+ content: "\e770";
567
+ }
568
+
569
+ .icon-custom-anniu-tiaozheng:before {
570
+ content: "\e771";
571
+ }
572
+
573
+ .icon-custom-anniu-chengyijinshouqu:before {
574
+ content: "\e772";
575
+ }
576
+
577
+ .icon-custom-anniu-caiwuguidang:before {
578
+ content: "\e773";
579
+ }
580
+
581
+ .icon-custom-anniu-zhongzhi1:before {
582
+ content: "\e76b";
583
+ }
584
+
585
+ .icon-custom-anniu-lijichuli:before {
586
+ content: "\e76c";
587
+ }
588
+
589
+ .icon-custom-anniu-hongchong:before {
590
+ content: "\e76d";
591
+ }
592
+
593
+ .icon-custom-anniu-jifenxiaoshoubulu:before {
594
+ content: "\e768";
595
+ }
596
+
597
+ .icon-custom-anniu-queren:before {
598
+ content: "\e769";
599
+ }
600
+
601
+ .icon-custom-anniu-jifenshougongtiaoshi:before {
602
+ content: "\e76a";
603
+ }
604
+
605
+ .icon-custom-anniu-zhongzhiTSSmima:before {
606
+ content: "\e762";
607
+ }
608
+
609
+ .icon-custom-anniu-zhongzhimima:before {
610
+ content: "\e763";
611
+ }
612
+
613
+ .icon-custom-anniu-bohuishanghu:before {
614
+ content: "\e764";
615
+ }
616
+
617
+ .icon-custom-anniu-yushen:before {
618
+ content: "\e765";
619
+ }
620
+
621
+ .icon-custom-anniu-fujian:before {
622
+ content: "\e766";
623
+ }
624
+
625
+ .icon-custom-anniu-yanshoudanshengcheng:before {
626
+ content: "\e767";
627
+ }
628
+
629
+ .icon-custom-anniu-zhongxinshengcheng:before {
630
+ content: "\e75c";
631
+ }
632
+
633
+ .icon-custom-anniu-zhongxinqiyong:before {
634
+ content: "\e75d";
635
+ }
636
+
637
+ .icon-custom-anniu-tongzhifasong:before {
638
+ content: "\e75e";
639
+ }
640
+
641
+ .icon-custom-anniu-xuanzepici:before {
642
+ content: "\e75f";
643
+ }
644
+
645
+ .icon-custom-anniu-zhongxinfasong:before {
646
+ content: "\e760";
647
+ }
648
+
649
+ .icon-custom-anniu-zhongxinjisuan:before {
650
+ content: "\e761";
651
+ }
652
+
653
+ .icon-custom-anniu-zhongsuan:before {
654
+ content: "\e756";
655
+ }
656
+
657
+ .icon-custom-anniu-zhongzhi:before {
658
+ content: "\e757";
659
+ }
660
+
661
+ .icon-custom-anniu-kesuyijianjilu:before {
662
+ content: "\e758";
663
+ }
664
+
665
+ .icon-custom-anniu-yunyingguidang:before {
666
+ content: "\e759";
667
+ }
668
+
669
+ .icon-custom-anniu-tuidanchuli:before {
670
+ content: "\e75a";
671
+ }
672
+
673
+ .icon-custom-anniu-xuanze:before {
674
+ content: "\e75b";
675
+ }
676
+
677
+ .icon-custom-anniu-fuzhi:before {
678
+ content: "\e750";
679
+ }
680
+
681
+ .icon-custom-anniu-zenghang:before {
682
+ content: "\e751";
683
+ }
684
+
685
+ .icon-custom-anniu-wancheng:before {
686
+ content: "\e752";
687
+ }
688
+
689
+ .icon-custom-anniu-zixiang:before {
690
+ content: "\e753";
691
+ }
692
+
693
+ .icon-custom-anniu-beiwanglu:before {
694
+ content: "\e754";
695
+ }
696
+
697
+ .icon-custom-anniu-chuli:before {
698
+ content: "\e755";
699
+ }
700
+
701
+ .icon-custom-anniu-shuaxin:before {
702
+ content: "\e74f";
703
+ }
704
+
705
+ .icon-custom-anniu-zengjiapinleijihua:before {
706
+ content: "\e749";
707
+ }
708
+
709
+ .icon-custom-anniu-zhouqixingfeiyongjiesuan:before {
710
+ content: "\e74a";
711
+ }
712
+
713
+ .icon-custom-anniu-zengjiamendiannianjihua:before {
714
+ content: "\e74b";
715
+ }
716
+
717
+ .icon-custom-anniu-huishou:before {
718
+ content: "\e74c";
719
+ }
720
+
721
+ .icon-custom-anniu-shangpindaoru:before {
722
+ content: "\e74d";
723
+ }
724
+
725
+ .icon-custom-anniu-qiyongjiesuan:before {
726
+ content: "\e74e";
727
+ }
728
+
729
+ .icon-custom-anniu-tongbu:before {
730
+ content: "\e743";
731
+ }
732
+
733
+ .icon-custom-anniu-hetongshangbao:before {
734
+ content: "\e744";
735
+ }
736
+
737
+ .icon-custom-anniu-qiyongTSSzhanghao:before {
738
+ content: "\e745";
739
+ }
740
+
741
+ .icon-custom-anniu-hetongchaxun:before {
742
+ content: "\e746";
743
+ }
744
+
745
+ .icon-custom-anniu-biangenghetong:before {
746
+ content: "\e747";
747
+ }
748
+
749
+ .icon-custom-anniu-biangeng:before {
750
+ content: "\e748";
751
+ }
752
+
753
+ .icon-custom-anniu-shangchuan:before {
754
+ content: "\e73f";
755
+ }
756
+
757
+ .icon-custom-anniu-fasongxiaoxi:before {
758
+ content: "\e740";
759
+ }
760
+
761
+ .icon-custom-anniu-faqitongzhi:before {
762
+ content: "\e741";
763
+ }
764
+
765
+ .icon-custom-anniu-fasongyoujian:before {
766
+ content: "\e742";
767
+ }
768
+
769
+ .icon-custom-anniu-quxiaohexiao:before {
770
+ content: "\e73d";
771
+ }
772
+
773
+ .icon-custom-anniu-quxiao:before {
774
+ content: "\e73e";
775
+ }
776
+
777
+ .icon-custom-anniu-fasong:before {
778
+ content: "\e739";
779
+ }
780
+
781
+ .icon-custom-anniu-fabu:before {
782
+ content: "\e73a";
783
+ }
784
+
785
+ .icon-custom-anniu-faqihuiqian:before {
786
+ content: "\e73b";
787
+ }
788
+
789
+ .icon-custom-anniu-fabubiaoqian:before {
790
+ content: "\e73c";
791
+ }
792
+
793
+ .icon-custom-anniu-fasongshanghu:before {
794
+ content: "\e737";
795
+ }
796
+
797
+ .icon-custom-anniu-fasongshanghuduan:before {
798
+ content: "\e738";
799
+ }
800
+
801
+ .icon-custom-anniu-xiazaituzhi:before {
802
+ content: "\e731";
803
+ }
804
+
805
+ .icon-custom-anniu-shangchuanfujian:before {
806
+ content: "\e732";
807
+ }
808
+
809
+ .icon-custom-anniu-xiazaiwuliumamoban:before {
810
+ content: "\e733";
811
+ }
812
+
813
+ .icon-custom-anniu-xiazaitupian:before {
814
+ content: "\e734";
815
+ }
816
+
817
+ .icon-custom-anniu-xiazaidayinmoban:before {
818
+ content: "\e735";
819
+ }
820
+
821
+ .icon-custom-anniu-xiazaimoban:before {
822
+ content: "\e736";
823
+ }
824
+
825
+ .icon-custom-anniu-fashen:before {
826
+ content: "\e72f";
827
+ }
828
+
829
+ .icon-custom-anniu-lishitongzhishanchu:before {
830
+ content: "\e730";
831
+ }
832
+
833
+ .icon-custom-anniu-xiazaifujian:before {
834
+ content: "\e72c";
835
+ }
836
+
837
+ .icon-custom-anniu-qianyitian:before {
838
+ content: "\e72d";
839
+ }
840
+
841
+ .icon-custom-anniu-xiecha:before {
842
+ content: "\e72e";
843
+ }
844
+
845
+ .icon-custom-anniu-VIPxiuxishi:before {
846
+ content: "\e726";
847
+ }
848
+
849
+ .icon-custom-anniu-VRkanpu:before {
850
+ content: "\e727";
851
+ }
852
+
853
+ .icon-custom-anniu-shangchuantupian:before {
854
+ content: "\e728";
855
+ }
856
+
857
+ .icon-custom-anniu-OAshenpirizhi:before {
858
+ content: "\e729";
859
+ }
860
+
861
+ .icon-custom-anniu-OAtijiao:before {
862
+ content: "\e72a";
863
+ }
864
+
865
+ .icon-custom-anniu-shangchuantuzhi:before {
866
+ content: "\e72b";
867
+ }
868
+
869
+ .icon-custom-anniu-shensutongguo:before {
870
+ content: "\e722";
871
+ }
872
+
873
+ .icon-custom-anniu-shengchengshouqizhangdan:before {
874
+ content: "\e723";
875
+ }
876
+
877
+ .icon-custom-anniu-shensubohui:before {
878
+ content: "\e724";
879
+ }
880
+
881
+ .icon-custom-anniu-shensu:before {
882
+ content: "\e725";
883
+ }
884
+
885
+ .icon-custom-anniu-shengchengjiesuandan:before {
886
+ content: "\e720";
887
+ }
888
+
889
+ .icon-custom-anniu-shengchengzhangdan:before {
890
+ content: "\e721";
891
+ }
892
+
893
+ .icon-custom-anniu-feiyongchaxun:before {
894
+ content: "\e71c";
895
+ }
896
+
897
+ .icon-custom-anniu-zhuanweiyixianghetong:before {
898
+ content: "\e71d";
899
+ }
900
+
901
+ .icon-custom-anniu-feiyongchushihua:before {
902
+ content: "\e71e";
903
+ }
904
+
905
+ .icon-custom-anniu-zhangdanfujianyulan:before {
906
+ content: "\e71f";
907
+ }
908
+
909
+ .icon-custom-anniu-zhuanweizhengshihetong:before {
910
+ content: "\e71a";
911
+ }
912
+
913
+ .icon-custom-anniu-ziliaobiangeng:before {
914
+ content: "\e71b";
915
+ }
916
+
917
+ .icon-custom-anniu-shengchengyuedujihua:before {
918
+ content: "\e717";
919
+ }
920
+
921
+ .icon-custom-anniu-shengchengshuju:before {
922
+ content: "\e718";
923
+ }
924
+
925
+ .icon-custom-anniu-shengchengpingzheng:before {
926
+ content: "\e719";
927
+ }
928
+
929
+ .icon-custom-anniu-shengchengyingxiangbianma:before {
930
+ content: "\e714";
931
+ }
932
+
933
+ .icon-custom-anniu-shengchengshoukuandan:before {
934
+ content: "\e715";
935
+ }
936
+
937
+ .icon-custom-anniu-shengchengchechangzhangdan:before {
938
+ content: "\e716";
939
+ }
940
+
941
+ .icon-custom-anniu-zizhishenhe:before {
942
+ content: "\e713";
943
+ }
944
+
945
+ .icon-custom-anniu-zhuanzhengshanghu:before {
946
+ content: "\e70e";
947
+ }
948
+
949
+ .icon-custom-anniu-zhuanchu:before {
950
+ content: "\e70f";
951
+ }
952
+
953
+ .icon-custom-anniu-shengchengfukuanma:before {
954
+ content: "\e710";
955
+ }
956
+
957
+ .icon-custom-anniu-feiyongyusuan:before {
958
+ content: "\e711";
959
+ }
960
+
961
+ .icon-custom-anniu-shengcheng:before {
962
+ content: "\e712";
963
+ }
964
+
965
+ .icon-custom-anniu-zhanghaodongjie:before {
966
+ content: "\e70b";
967
+ }
968
+
969
+ .icon-custom-anniu-zhangdanshengcheng:before {
970
+ content: "\e70c";
971
+ }
972
+
973
+ .icon-custom-anniu-zhangdanwenjian:before {
974
+ content: "\e70d";
975
+ }
976
+
977
+ .icon-custom-anniu-zhanghaozhuxiao:before {
978
+ content: "\e708";
979
+ }
980
+
981
+ .icon-custom-anniu-zhangdanpidao:before {
982
+ content: "\e709";
983
+ }
984
+
985
+ .icon-custom-anniu-zhanghaojiedong:before {
986
+ content: "\e70a";
987
+ }
988
+
989
+ .icon-custom-baopidan:before {
990
+ content: "\e707";
991
+ }
992
+
993
+ .icon-custom-yemian:before {
994
+ content: "\e704";
995
+ }
996
+
997
+ .icon-custom-wenjianshouqi:before {
998
+ content: "\e705";
999
+ }
1000
+
1001
+ .icon-custom-wenjianzhankai:before {
1002
+ content: "\e706";
1003
+ }
1004
+
1005
+ .icon-custom-tishi:before {
1006
+ content: "\e703";
1007
+ }
1008
+
1009
+ .icon-custom-jiaqian:before {
1010
+ content: "\e702";
1011
+ }
1012
+
1013
+ .icon-custom-weishenpi:before {
1014
+ content: "\e6fe";
1015
+ }
1016
+
1017
+ .icon-custom-chehui:before {
1018
+ content: "\e6ff";
1019
+ }
1020
+
1021
+ .icon-custom-wancheng:before {
1022
+ content: "\e700";
1023
+ }
1024
+
1025
+ .icon-custom-daishenpi:before {
1026
+ content: "\e701";
1027
+ }
1028
+
1029
+ .icon-custom-quanshan:before {
1030
+ content: "\e6e1";
1031
+ }
1032
+
1033
+ .icon-custom-filedown:before {
1034
+ content: "\e6fa";
1035
+ }
1036
+
1037
+ .icon-custom-filerecall:before {
1038
+ content: "\e6fb";
1039
+ }
1040
+
1041
+ .icon-custom-filesearch:before {
1042
+ content: "\e6fc";
1043
+ }
1044
+
1045
+ .icon-custom-filedel:before {
1046
+ content: "\e6fd";
1047
+ }
1048
+
1049
+ .icon-custom-fileupload:before {
1050
+ content: "\e6f9";
1051
+ }
1052
+
1053
+ .icon-custom-approve:before {
1054
+ content: "\e6f8";
1055
+ }
1056
+
1057
+ .icon-custom-become:before {
1058
+ content: "\e6f6";
1059
+ }
1060
+
1061
+ .icon-custom-back:before {
1062
+ content: "\e6f7";
1063
+ }
1064
+
1065
+ .icon-custom-flow:before {
1066
+ content: "\e6ea";
1067
+ }
1068
+
1069
+ .icon-custom-shujuluru:before {
1070
+ content: "\e6dc";
1071
+ }
1072
+
1073
+ .icon-custom-addsub:before {
1074
+ content: "\e6da";
1075
+ }
1076
+
1077
+ .icon-custom-reset:before {
1078
+ content: "\e6d5";
1079
+ }
1080
+
1081
+ .icon-custom-shoukuan:before {
1082
+ content: "\e6d0";
1083
+ }
1084
+
1085
+ .icon-custom-cancelsend:before {
1086
+ content: "\e6eb";
1087
+ }
1088
+
1089
+ .icon-custom-folder:before {
1090
+ content: "\e6ec";
1091
+ }
1092
+
1093
+ .icon-custom-batchappraise:before {
1094
+ content: "\e6ed";
1095
+ }
1096
+
1097
+ .icon-custom-batchreject:before {
1098
+ content: "\e6ee";
1099
+ }
1100
+
1101
+ .icon-custom-memreg:before {
1102
+ content: "\e6ef";
1103
+ }
1104
+
1105
+ .icon-custom-batchaddadmin:before {
1106
+ content: "\e6f0";
1107
+ }
1108
+
1109
+ .icon-custom-baofeibaoshi:before {
1110
+ content: "\e6f1";
1111
+ }
1112
+
1113
+ .icon-custom-submitshop:before {
1114
+ content: "\e6f2";
1115
+ }
1116
+
1117
+ .icon-custom-sortset:before {
1118
+ content: "\e6f3";
1119
+ }
1120
+
1121
+ .icon-custom-rowadd3:before {
1122
+ content: "\e6f4";
1123
+ }
1124
+
1125
+ .icon-custom-rowdel3:before {
1126
+ content: "\e6f5";
1127
+ }
1128
+
1129
+ .icon-custom-passwordreset:before {
1130
+ content: "\e6db";
1131
+ }
1132
+
1133
+ .icon-custom-sunyi:before {
1134
+ content: "\e6dd";
1135
+ }
1136
+
1137
+ .icon-custom-zhibiaobidui:before {
1138
+ content: "\e6e6";
1139
+ }
1140
+
1141
+ .icon-custom-chechang:before {
1142
+ content: "\e6e7";
1143
+ }
1144
+
1145
+ .icon-custom-exportdata:before {
1146
+ content: "\e6e8";
1147
+ }
1148
+
1149
+ .icon-custom-shoushen:before {
1150
+ content: "\e6e9";
1151
+ }
1152
+
1153
+ .icon-custom-addconfig:before {
1154
+ content: "\e6e3";
1155
+ }
1156
+
1157
+ .icon-custom-masterplateprint:before {
1158
+ content: "\e6e4";
1159
+ }
1160
+
1161
+ .icon-custom-delconfig:before {
1162
+ content: "\e6e5";
1163
+ }
1164
+
1165
+ .icon-custom-batchadd:before {
1166
+ content: "\e6d7";
1167
+ }
1168
+
1169
+ .icon-custom-downtemplate2:before {
1170
+ content: "\e6d8";
1171
+ }
1172
+
1173
+ .icon-custom-batchedit:before {
1174
+ content: "\e6d9";
1175
+ }
1176
+
1177
+ .icon-custom-adddetail:before {
1178
+ content: "\e6de";
1179
+ }
1180
+
1181
+ .icon-custom-additem:before {
1182
+ content: "\e6df";
1183
+ }
1184
+
1185
+ .icon-custom-invquota:before {
1186
+ content: "\e6e0";
1187
+ }
1188
+
1189
+ .icon-custom-deldetail:before {
1190
+ content: "\e6e2";
1191
+ }
1192
+
1193
+ .icon-custom-becomeapply:before {
1194
+ content: "\e6ce";
1195
+ }
1196
+
1197
+ .icon-custom-batchdel:before {
1198
+ content: "\e6cf";
1199
+ }
1200
+
1201
+ .icon-custom-downtemplate:before {
1202
+ content: "\e6d1";
1203
+ }
1204
+
1205
+ .icon-custom-help:before {
1206
+ content: "\e6d2";
1207
+ }
1208
+
1209
+ .icon-custom-masterplateinit:before {
1210
+ content: "\e6d3";
1211
+ }
1212
+
1213
+ .icon-custom-batchaudit:before {
1214
+ content: "\e6d4";
1215
+ }
1216
+
1217
+ .icon-custom-colset:before {
1218
+ content: "\e6d6";
1219
+ }
1220
+
1221
+ .icon-custom-del2:before {
1222
+ content: "\e6c3";
1223
+ }
1224
+
1225
+ .icon-custom-import:before {
1226
+ content: "\e6c4";
1227
+ }
1228
+
1229
+ .icon-custom-indexcontrast:before {
1230
+ content: "\e6c5";
1231
+ }
1232
+
1233
+ .icon-custom-pre:before {
1234
+ content: "\e6c6";
1235
+ }
1236
+
1237
+ .icon-custom-add2:before {
1238
+ content: "\e6cc";
1239
+ }
1240
+
1241
+ .icon-custom-revenuebudget:before {
1242
+ content: "\e6cd";
1243
+ }
1244
+
1245
+ .icon-custom-next:before {
1246
+ content: "\e6c2";
1247
+ }
1248
+
1249
+ .icon-custom-addsort:before {
1250
+ content: "\e6c1";
1251
+ }
1252
+
1253
+ .icon-custom-recall:before {
1254
+ content: "\e6b4";
1255
+ }
1256
+
1257
+ .icon-custom-submit:before {
1258
+ content: "\e6b5";
1259
+ }
1260
+
1261
+ .icon-custom-print:before {
1262
+ content: "\e6b6";
1263
+ }
1264
+
1265
+ .icon-custom-clean:before {
1266
+ content: "\e6b7";
1267
+ }
1268
+
1269
+ .icon-custom-cancel:before {
1270
+ content: "\e6b8";
1271
+ }
1272
+
1273
+ .icon-custom-reject:before {
1274
+ content: "\e6b9";
1275
+ }
1276
+
1277
+ .icon-custom-export:before {
1278
+ content: "\e6ba";
1279
+ }
1280
+
1281
+ .icon-custom-edit:before {
1282
+ content: "\e6bb";
1283
+ }
1284
+
1285
+ .icon-custom-blockup:before {
1286
+ content: "\e6bc";
1287
+ }
1288
+
1289
+ .icon-custom-del:before {
1290
+ content: "\e6bd";
1291
+ }
1292
+
1293
+ .icon-custom-save:before {
1294
+ content: "\e6be";
1295
+ }
1296
+
1297
+ .icon-custom-startusing:before {
1298
+ content: "\e6bf";
1299
+ }
1300
+
1301
+ .icon-custom-copy:before {
1302
+ content: "\e6c0";
1303
+ }
1304
+
1305
+ .icon-custom-audit:before {
1306
+ content: "\e6a5";
1307
+ }
1308
+
1309
+ .icon-custom-delay:before {
1310
+ content: "\e6a6";
1311
+ }
1312
+
1313
+ .icon-custom-search:before {
1314
+ content: "\e6a7";
1315
+ }
1316
+
1317
+ .icon-custom-preview:before {
1318
+ content: "\e6b3";
1319
+ }
1320
+
1321
+ .icon-custom-stick:before {
1322
+ content: "\e6b0";
1323
+ }
1324
+
1325
+ .icon-custom-sort:before {
1326
+ content: "\e6b1";
1327
+ }
1328
+
1329
+ .icon-custom-fixed:before {
1330
+ content: "\e6cb";
1331
+ }
1332
+
1333
+ .icon-custom-delcard:before {
1334
+ content: "\e6c9";
1335
+ }
1336
+
1337
+ .icon-custom-recallcard:before {
1338
+ content: "\e6ca";
1339
+ }
1340
+
1341
+ .icon-custom-delcond:before {
1342
+ content: "\e6c7";
1343
+ }
1344
+
1345
+ .icon-custom-addcond:before {
1346
+ content: "\e6c8";
1347
+ }
1348
+
1349
+ .icon-custom-excel:before {
1350
+ content: "\e6b2";
1351
+ }
1352
+
1353
+ .icon-custom-rowdel:before {
1354
+ content: "\e6ae";
1355
+ }
1356
+
1357
+ .icon-custom-rowadd:before {
1358
+ content: "\e6af";
1359
+ }
1360
+
1361
+ .icon-custom-spread:before {
1362
+ content: "\e6aa";
1363
+ }
1364
+
1365
+ .icon-custom-pack:before {
1366
+ content: "\e6ab";
1367
+ }
1368
+
1369
+ .icon-custom-add:before {
1370
+ content: "\e6a4";
1371
+ }
1372
+
1373
+ .icon-custom-filter:before {
1374
+ content: "\e6a3";
1375
+ }
1376
+