iconfont.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523
  1. @font-face {
  2. font-family: "icon-ym"; /* Project id 3271933 */
  3. src: url('iconfont.woff2?t=1736927716603') format('woff2'),
  4. url('iconfont.woff?t=1736927716603') format('woff'),
  5. url('iconfont.ttf?t=1736927716603') format('truetype');
  6. }
  7. .icon-ym {
  8. font-family: "icon-ym" !important;
  9. font-size: 16px;
  10. font-style: normal;
  11. -webkit-font-smoothing: antialiased;
  12. -moz-osx-font-smoothing: grayscale;
  13. }
  14. .icon-ym-harmonyOS:before {
  15. content: "\e979";
  16. }
  17. .icon-ym-flow-node-paste:before {
  18. content: "\e974";
  19. }
  20. .icon-ym-flow-node-parallel:before {
  21. content: "\e975";
  22. }
  23. .icon-ym-flow-node-copy:before {
  24. content: "\e976";
  25. }
  26. .icon-ym-ai-list:before {
  27. content: "\e977";
  28. }
  29. .icon-ym-flow-node-condition-multiple:before {
  30. content: "\e978";
  31. }
  32. .icon-ym-flow-node-cope:before {
  33. content: "\e96f";
  34. }
  35. .icon-ym-select-cell:before {
  36. content: "\e970";
  37. }
  38. .icon-ym-flow-node-condition-single:before {
  39. content: "\e971";
  40. }
  41. .icon-ym-shortcut1:before {
  42. content: "\e972";
  43. }
  44. .icon-ym-ai-form:before {
  45. content: "\e973";
  46. }
  47. .icon-ym-right-join:before {
  48. content: "\e96b";
  49. }
  50. .icon-ym-left-join:before {
  51. content: "\e96c";
  52. }
  53. .icon-ym-inner-join:before {
  54. content: "\e96d";
  55. }
  56. .icon-ym-full-join:before {
  57. content: "\e96e";
  58. }
  59. .icon-ym-flow-trigger-timer:before {
  60. content: "\e968";
  61. }
  62. .icon-ym-flow-trigger-event:before {
  63. content: "\e969";
  64. }
  65. .icon-ym-dataLog:before {
  66. content: "\e96a";
  67. }
  68. .icon-ym-save:before {
  69. content: "\e962";
  70. }
  71. .icon-ym-flow-view:before {
  72. content: "\e963";
  73. }
  74. .icon-ym-batch-action:before {
  75. content: "\e964";
  76. }
  77. .icon-ym-print-template:before {
  78. content: "\e965";
  79. }
  80. .icon-ym-flow-trigger-webhook:before {
  81. content: "\e966";
  82. }
  83. .icon-ym-flow-trigger-notice:before {
  84. content: "\e967";
  85. }
  86. .icon-ym-kit:before {
  87. content: "\e960";
  88. }
  89. .icon-ym-kit-fill:before {
  90. content: "\e961";
  91. }
  92. .icon-ym-tip:before {
  93. content: "\e934";
  94. }
  95. .icon-ym-flow-minus:before {
  96. content: "\e935";
  97. }
  98. .icon-ym-flow-history:before {
  99. content: "\e936";
  100. }
  101. .icon-ym-flow-align-middle:before {
  102. content: "\e938";
  103. }
  104. .icon-ym-flow-align-bottom:before {
  105. content: "\e93c";
  106. }
  107. .icon-ym-beautify-horizontal:before {
  108. content: "\e949";
  109. }
  110. .icon-ym-flow-aerial-view:before {
  111. content: "\e94a";
  112. }
  113. .icon-ym-flow-align-center:before {
  114. content: "\e950";
  115. }
  116. .icon-ym-beautify-vertical:before {
  117. content: "\e954";
  118. }
  119. .icon-ym-flow-align-left:before {
  120. content: "\e90a";
  121. }
  122. .icon-ym-flow-selection:before {
  123. content: "\e911";
  124. }
  125. .icon-ym-flow-node-timer1:before {
  126. content: "\e915";
  127. }
  128. .icon-ym-flow-shortcut:before {
  129. content: "\e91d";
  130. }
  131. .icon-ym-flow-focus:before {
  132. content: "\e922";
  133. }
  134. .icon-ym-flow-node-approve:before {
  135. content: "\e923";
  136. }
  137. .icon-ym-flow-plus:before {
  138. content: "\e925";
  139. }
  140. .icon-ym-flow-node-system-task:before {
  141. content: "\e927";
  142. }
  143. .icon-ym-flow-move:before {
  144. content: "\e92b";
  145. }
  146. .icon-ym-flow-align-let:before {
  147. content: "\e92c";
  148. }
  149. .icon-ym-redo:before {
  150. content: "\e92d";
  151. }
  152. .icon-ym-flow-align-right:before {
  153. content: "\e930";
  154. }
  155. .icon-ym-undo:before {
  156. content: "\e932";
  157. }
  158. .icon-ym-flow-align-top:before {
  159. content: "\e904";
  160. }
  161. .icon-ym-hLine:before {
  162. content: "\e951";
  163. }
  164. .icon-ym-vLine:before {
  165. content: "\e953";
  166. }
  167. .icon-ym-header-notice:before {
  168. content: "\e95f";
  169. }
  170. .icon-ym-header-fullscreen1:before {
  171. content: "\e917";
  172. }
  173. .icon-ym-cell:before {
  174. content: "\e928";
  175. }
  176. .icon-ym-header-search:before {
  177. content: "\e92e";
  178. }
  179. .icon-ym-header-config:before {
  180. content: "\e92f";
  181. }
  182. .icon-ym-header-fullscreen-exit1:before {
  183. content: "\e956";
  184. }
  185. .icon-ym-flowToSign:before {
  186. content: "\e95d";
  187. }
  188. .icon-ym-flowDoing:before {
  189. content: "\e95e";
  190. }
  191. .icon-ym-header-chat:before {
  192. content: "\e907";
  193. }
  194. .icon-ym-header-sys-toggle:before {
  195. content: "\e90d";
  196. }
  197. .icon-ym-schedule:before {
  198. content: "\e910";
  199. }
  200. .icon-ym-caret-left:before {
  201. content: "\e95c";
  202. }
  203. .icon-ym-btn-export1:before {
  204. content: "\e959";
  205. }
  206. .icon-ym-caret-right:before {
  207. content: "\e95a";
  208. }
  209. .icon-ym-btn-import1:before {
  210. content: "\e95b";
  211. }
  212. .icon-ym-rect:before {
  213. content: "\e955";
  214. }
  215. .icon-ym-combination:before {
  216. content: "\e957";
  217. }
  218. .icon-ym-oval:before {
  219. content: "\e958";
  220. }
  221. .icon-ym-header-star-fill:before {
  222. content: "\e952";
  223. }
  224. .icon-ym-flow-node-subFlow:before {
  225. content: "\e93a";
  226. }
  227. .icon-ym-flow-node-end:before {
  228. content: "\e93d";
  229. }
  230. .icon-ym-flow-node-branch:before {
  231. content: "\e943";
  232. }
  233. .icon-ym-flow-node-condition:before {
  234. content: "\e919";
  235. }
  236. .icon-ym-flow-node-timer:before {
  237. content: "\e92a";
  238. }
  239. .icon-ym-flow-node-interflow:before {
  240. content: "\e933";
  241. }
  242. .icon-ym-recovery:before {
  243. content: "\e94f";
  244. }
  245. .icon-ym-share-cancel:before {
  246. content: "\e94e";
  247. }
  248. .icon-ym-upload1:before {
  249. content: "\e91f";
  250. }
  251. .icon-ym-add-folder:before {
  252. content: "\e94d";
  253. }
  254. .icon-ym-tile-mode:before {
  255. content: "\e94b";
  256. }
  257. .icon-ym-folder:before {
  258. content: "\e94c";
  259. }
  260. .icon-ym-app-more:before {
  261. content: "\e916";
  262. }
  263. .icon-ym-add-cancel:before {
  264. content: "\e940";
  265. }
  266. .icon-ym-app-rename:before {
  267. content: "\e941";
  268. }
  269. .icon-ym-flow-node-start:before {
  270. content: "\e942";
  271. }
  272. .icon-ym-app-role-toggle:before {
  273. content: "\e944";
  274. }
  275. .icon-ym-auth-group:before {
  276. content: "\e945";
  277. }
  278. .icon-ym-app-delete:before {
  279. content: "\e946";
  280. }
  281. .icon-ym-app-share:before {
  282. content: "\e947";
  283. }
  284. .icon-ym-app-schedule:before {
  285. content: "\e948";
  286. }
  287. .icon-ym-dark:before {
  288. content: "\e937";
  289. }
  290. .icon-ym-app-todo:before {
  291. content: "\e939";
  292. }
  293. .icon-ym-app-download:before {
  294. content: "\e93b";
  295. }
  296. .icon-ym-app-move:before {
  297. content: "\e93e";
  298. }
  299. .icon-ym-app-document:before {
  300. content: "\e93f";
  301. }
  302. .icon-ym-header-star:before {
  303. content: "\e929";
  304. }
  305. .icon-ym-msg-read-all:before {
  306. content: "\e931";
  307. }
  308. .icon-ym-more-vertical:before {
  309. content: "\e91e";
  310. }
  311. .icon-ym-more:before {
  312. content: "\e920";
  313. }
  314. .icon-ym-header-fullscreen:before {
  315. content: "\e921";
  316. }
  317. .icon-ym-nav-home-fill:before {
  318. content: "\e924";
  319. }
  320. .icon-ym-tip-filled:before {
  321. content: "\e926";
  322. }
  323. .icon-ym-flow-line:before {
  324. content: "\e912";
  325. }
  326. .icon-ym-header-refresh:before {
  327. content: "\e913";
  328. }
  329. .icon-ym-shareMe-filled:before {
  330. content: "\e914";
  331. }
  332. .icon-ym-share-filled:before {
  333. content: "\e918";
  334. }
  335. .icon-ym-trash-filled:before {
  336. content: "\e91a";
  337. }
  338. .icon-ym-header-lang:before {
  339. content: "\e91b";
  340. }
  341. .icon-ym-app-entrust:before {
  342. content: "\e91c";
  343. }
  344. .icon-ym-release:before {
  345. content: "\e90e";
  346. }
  347. .icon-ym-star-filled:before {
  348. content: "\e90f";
  349. }
  350. .icon-ym-header-role-toggle:before {
  351. content: "\e906";
  352. }
  353. .icon-ym-light:before {
  354. content: "\e908";
  355. }
  356. .icon-ym-header-fullscreen-exit:before {
  357. content: "\e909";
  358. }
  359. .icon-ym-org-tree:before {
  360. content: "\e90b";
  361. }
  362. .icon-ym-app-checkAll:before {
  363. content: "\e90c";
  364. }
  365. .icon-ym-thumb-mode:before {
  366. content: "\e905";
  367. }
  368. .icon-ym-generator-steps:before {
  369. content: "\e7ed";
  370. }
  371. .icon-ym-portal-custom-echart:before {
  372. content: "\e903";
  373. }
  374. .icon-ym-signature1:before {
  375. content: "\e902";
  376. }
  377. .icon-ym-launch:before {
  378. content: "\e901";
  379. }
  380. .icon-ym-turn:before {
  381. content: "\e8fa";
  382. }
  383. .icon-ym-roll-call:before {
  384. content: "\e8fb";
  385. }
  386. .icon-ym-comment-img:before {
  387. content: "\e8fc";
  388. }
  389. .icon-ym-condition:before {
  390. content: "\e8fd";
  391. }
  392. .icon-ym-generator-iframe:before {
  393. content: "\e8fe";
  394. }
  395. .icon-ym-edit:before {
  396. content: "\e8ff";
  397. }
  398. .icon-ym-comment-file:before {
  399. content: "\e900";
  400. }
  401. .icon-ym-emoji:before {
  402. content: "\e8f7";
  403. }
  404. .icon-ym-generator-location:before {
  405. content: "\e8f8";
  406. }
  407. .icon-ym-chat:before {
  408. content: "\e8f9";
  409. }
  410. .icon-ym-synForThird:before {
  411. content: "\e8f6";
  412. }
  413. .icon-ym-authGroup:before {
  414. content: "\e8f2";
  415. }
  416. .icon-ym-fail:before {
  417. content: "\e8f3";
  418. }
  419. .icon-ym-success:before {
  420. content: "\e8f4";
  421. }
  422. .icon-ym-clock:before {
  423. content: "\e8f5";
  424. }
  425. .icon-ym-view:before {
  426. content: "\e8f1";
  427. }
  428. .icon-ym-shortcut:before {
  429. content: "\e8f0";
  430. }
  431. .icon-ym-liveData:before {
  432. content: "\e8ef";
  433. }
  434. .icon-ym-generator-autoComplete:before {
  435. content: "\e8eb";
  436. }
  437. .icon-ym-contacts:before {
  438. content: "\e8ec";
  439. }
  440. .icon-ym-portal-text:before {
  441. content: "\e8ed";
  442. }
  443. .icon-ym-portal-mapChart:before {
  444. content: "\e8ee";
  445. }
  446. .icon-ym-generator-tableGrid:before {
  447. content: "\e8db";
  448. }
  449. .icon-ym-portal-card:before {
  450. content: "\e8dc";
  451. }
  452. .icon-ym-portal-carousel:before {
  453. content: "\e8dd";
  454. }
  455. .icon-ym-generator-insertCol:before {
  456. content: "\e8de";
  457. }
  458. .icon-ym-generator-insertRow:before {
  459. content: "\e8df";
  460. }
  461. .icon-ym-btn-batch:before {
  462. content: "\e8e0";
  463. }
  464. .icon-ym-portal-collapse:before {
  465. content: "\e8e1";
  466. }
  467. .icon-ym-portal-rankList:before {
  468. content: "\e8e2";
  469. }
  470. .icon-ym-portal-image:before {
  471. content: "\e8e3";
  472. }
  473. .icon-ym-portal-tab:before {
  474. content: "\e8e4";
  475. }
  476. .icon-ym-portal-video:before {
  477. content: "\e8e5";
  478. }
  479. .icon-ym-generator-TableSettings:before {
  480. content: "\e8e6";
  481. }
  482. .icon-ym-btn-common:before {
  483. content: "\e8e7";
  484. }
  485. .icon-ym-portal-iframe:before {
  486. content: "\e8e8";
  487. }
  488. .icon-ym-portal-timeAxis:before {
  489. content: "\e8e9";
  490. }
  491. .icon-ym-portal-schedule:before {
  492. content: "\e8ea";
  493. }
  494. .icon-ym-flowEntrust-app:before {
  495. content: "\e8da";
  496. }
  497. .icon-ym-btn-download:before {
  498. content: "\e8d9";
  499. }
  500. .icon-ym-btn-upload:before {
  501. content: "\e8d7";
  502. }
  503. .icon-ym-right:before {
  504. content: "\e8d4";
  505. }
  506. .icon-ym-left:before {
  507. content: "\e8d5";
  508. }
  509. .icon-ym-arrow-down:before {
  510. content: "\e8d6";
  511. }
  512. .icon-ym-add-flow:before {
  513. content: "\e8d8";
  514. }
  515. .icon-ym-launchFlow:before {
  516. content: "\e8d2";
  517. }
  518. .icon-ym-funcFlow:before {
  519. content: "\e8d3";
  520. }
  521. .icon-ym-accountConfig:before {
  522. content: "\e8cb";
  523. }
  524. .icon-ym-sendConfig:before {
  525. content: "\e8cc";
  526. }
  527. .icon-ym-smsConfig:before {
  528. content: "\e8cd";
  529. }
  530. .icon-ym-emailConfig:before {
  531. content: "\e8ce";
  532. }
  533. .icon-ym-msgCenter:before {
  534. content: "\e8cf";
  535. }
  536. .icon-ym-msgTemplate:before {
  537. content: "\e8d0";
  538. }
  539. .icon-ym-msgMonitor:before {
  540. content: "\e8d1";
  541. }
  542. .icon-ym-logo-webhook:before {
  543. content: "\e8ca";
  544. }
  545. .icon-ym-logo-github:before {
  546. content: "\e8b0";
  547. }
  548. .icon-ym-logo-feishu:before {
  549. content: "\e8c5";
  550. }
  551. .icon-ym-logo-dingding:before {
  552. content: "\e8c6";
  553. }
  554. .icon-ym-logo-wechat:before {
  555. content: "\e8c7";
  556. }
  557. .icon-ym-logo-qq:before {
  558. content: "\e8c8";
  559. }
  560. .icon-ym-logo-wxWork:before {
  561. content: "\e8c9";
  562. }
  563. .icon-ym-position1:before {
  564. content: "\e8c3";
  565. }
  566. .icon-ym-generator-popupTableSelect:before {
  567. content: "\e8c4";
  568. }
  569. .icon-ym-gradeManage:before {
  570. content: "\e8c2";
  571. }
  572. .icon-ym-fold:before {
  573. content: "\e829";
  574. }
  575. .icon-ym-customForm:before {
  576. content: "\e857";
  577. }
  578. .icon-ym-branch:before {
  579. content: "\e8b1";
  580. }
  581. .icon-ym-codeGeneration1:before {
  582. content: "\e8b2";
  583. }
  584. .icon-ym-filter:before {
  585. content: "\e8b3";
  586. }
  587. .icon-ym-download:before {
  588. content: "\e8b4";
  589. }
  590. .icon-ym-functionForm:before {
  591. content: "\e8b5";
  592. }
  593. .icon-ym-unfold:before {
  594. content: "\e8b6";
  595. }
  596. .icon-ym-node:before {
  597. content: "\e8b7";
  598. }
  599. .icon-ym-nav-home:before {
  600. content: "\e8b8";
  601. }
  602. .icon-ym-systemForm:before {
  603. content: "\e8b9";
  604. }
  605. .icon-ym-generator-link:before {
  606. content: "\e8ba";
  607. }
  608. .icon-ym-timer:before {
  609. content: "\e8bb";
  610. }
  611. .icon-ym-generator-alert:before {
  612. content: "\e8bc";
  613. }
  614. .icon-ym-generator-group1:before {
  615. content: "\e8bd";
  616. }
  617. .icon-ym-generator-role:before {
  618. content: "\e8be";
  619. }
  620. .icon-ym-systemToggle:before {
  621. content: "\e8bf";
  622. }
  623. .icon-ym-upload:before {
  624. content: "\e8c0";
  625. }
  626. .icon-ym-generator-department1:before {
  627. content: "\e8c1";
  628. }
  629. .icon-ym-signature:before {
  630. content: "\e8af";
  631. }
  632. .icon-ym-yingyong:before {
  633. content: "\e81e";
  634. }
  635. .icon-ym-generator-section:before {
  636. content: "\e853";
  637. }
  638. .icon-ym-lianxi:before {
  639. content: "\e873";
  640. }
  641. .icon-ym-bigScreenExampl:before {
  642. content: "\e755";
  643. }
  644. .icon-ym-appForm:before {
  645. content: "\e756";
  646. }
  647. .icon-ym-authorize:before {
  648. content: "\e75c";
  649. }
  650. .icon-ym-dataApplication:before {
  651. content: "\e75d";
  652. }
  653. .icon-ym-dataDictionary:before {
  654. content: "\e76c";
  655. }
  656. .icon-ym-codeGeneration:before {
  657. content: "\e76f";
  658. }
  659. .icon-ym-documentPreviewExample:before {
  660. content: "\e77b";
  661. }
  662. .icon-ym-dataInterface:before {
  663. content: "\e78f";
  664. }
  665. .icon-ym-bigScreenDesign:before {
  666. content: "\e7a7";
  667. }
  668. .icon-ym-dataSync:before {
  669. content: "\e7ab";
  670. }
  671. .icon-ym-extend:before {
  672. content: "\e7b1";
  673. }
  674. .icon-ym-flowForm:before {
  675. content: "\e7b2";
  676. }
  677. .icon-ym-dataModel:before {
  678. content: "\e7bb";
  679. }
  680. .icon-ym-formExample:before {
  681. content: "\e7c8";
  682. }
  683. .icon-ym-department:before {
  684. content: "\e812";
  685. }
  686. .icon-ym-dataSource:before {
  687. content: "\e816";
  688. }
  689. .icon-ym-flowLaunch:before {
  690. content: "\e81b";
  691. }
  692. .icon-ym-flowForm1:before {
  693. content: "\e81f";
  694. }
  695. .icon-ym-formDesign:before {
  696. content: "\e827";
  697. }
  698. .icon-ym-highchartsWordcloud:before {
  699. content: "\e82c";
  700. }
  701. .icon-ym-dataBackup:before {
  702. content: "\e830";
  703. }
  704. .icon-ym-flowEntrust:before {
  705. content: "\e831";
  706. }
  707. .icon-ym-role:before {
  708. content: "\e832";
  709. }
  710. .icon-ym-information:before {
  711. content: "\e834";
  712. }
  713. .icon-ym-portalDesign:before {
  714. content: "\e83b";
  715. }
  716. .icon-ym-highchartsColumn:before {
  717. content: "\e83c";
  718. }
  719. .icon-ym-onlineUser:before {
  720. content: "\e83f";
  721. }
  722. .icon-ym-sysMonitor:before {
  723. content: "\e842";
  724. }
  725. .icon-ym-sysCache:before {
  726. content: "\e843";
  727. }
  728. .icon-ym-organization:before {
  729. content: "\e845";
  730. }
  731. .icon-ym-flowTodo:before {
  732. content: "\e847";
  733. }
  734. .icon-ym-pause:before {
  735. content: "\e849";
  736. }
  737. .icon-ym-report-icon-preview-pageIndex:before {
  738. content: "\e84c";
  739. }
  740. .icon-ym-sysProvince:before {
  741. content: "\e850";
  742. }
  743. .icon-ym-sysNotice:before {
  744. content: "\e851";
  745. }
  746. .icon-ym-wf-finishedProduct:before {
  747. content: "\e852";
  748. }
  749. .icon-ym-reportExample:before {
  750. content: "\e85d";
  751. }
  752. .icon-ym-wf-crmOrder:before {
  753. content: "\e864";
  754. }
  755. .icon-ym-signetExample:before {
  756. content: "\e866";
  757. }
  758. .icon-ym-position:before {
  759. content: "\e867";
  760. }
  761. .icon-ym-permission:before {
  762. content: "\e868";
  763. }
  764. .icon-ym-user:before {
  765. content: "\e871";
  766. }
  767. .icon-ym-wf-expenseExpenditure:before {
  768. content: "\e877";
  769. }
  770. .icon-ym-onlineDevelopment:before {
  771. content: "\e87a";
  772. }
  773. .icon-ym-sysBillRule:before {
  774. content: "\e88b";
  775. }
  776. .icon-ym-system:before {
  777. content: "\e892";
  778. }
  779. .icon-ym-reportDesign:before {
  780. content: "\e896";
  781. }
  782. .icon-ym-sysQuartz:before {
  783. content: "\e897";
  784. }
  785. .icon-ym-workFlow:before {
  786. content: "\e89e";
  787. }
  788. .icon-ym-sysIcon:before {
  789. content: "\e8a4";
  790. }
  791. .icon-ym-huibao:before {
  792. content: "\e8a5";
  793. }
  794. .icon-ym-webForm:before {
  795. content: "\e8a6";
  796. }
  797. .icon-ym-wf-staffOvertime:before {
  798. content: "\e8a7";
  799. }
  800. .icon-ym-tree-manage1:before {
  801. content: "\e8a8";
  802. }
  803. .icon-ym-webDesign:before {
  804. content: "\e8a9";
  805. }
  806. .icon-ym-wf-receiptSign:before {
  807. content: "\e8aa";
  808. }
  809. .icon-ym-windows:before {
  810. content: "\e8ab";
  811. }
  812. .icon-ym-systemTemplate:before {
  813. content: "\e8ac";
  814. }
  815. .icon-ym-sysLog:before {
  816. content: "\e8ad";
  817. }
  818. .icon-ym-sysConfig:before {
  819. content: "\e8ae";
  820. }
  821. .icon-ym-header-pannel:before {
  822. content: "\e7cf";
  823. }
  824. .icon-ym-search:before {
  825. content: "\e804";
  826. }
  827. .icon-ym-header-message:before {
  828. content: "\e810";
  829. }
  830. .icon-ym-generator-jobs:before {
  831. content: "\e819";
  832. }
  833. .icon-ym-clean:before {
  834. content: "\e83e";
  835. }
  836. .icon-ym-header-IM:before {
  837. content: "\e899";
  838. }
  839. .icon-ym-header-language:before {
  840. content: "\e8a3";
  841. }
  842. .icon-ym-flowDone-app:before {
  843. content: "\e7a6";
  844. }
  845. .icon-ym-flowLaunch-app:before {
  846. content: "\e7b3";
  847. }
  848. .icon-ym-addFlow:before {
  849. content: "\e7b8";
  850. }
  851. .icon-ym-flowCopy-app:before {
  852. content: "\e7bf";
  853. }
  854. .icon-ym-flowTodo-app:before {
  855. content: "\e8a2";
  856. }
  857. .icon-ym-mobile:before {
  858. content: "\e7dc";
  859. }
  860. .icon-ym-pc:before {
  861. content: "\e7ee";
  862. }
  863. .icon-ym-video-play:before {
  864. content: "\e8a1";
  865. }
  866. .icon-ym-header-collapse1:before {
  867. content: "\e809";
  868. }
  869. .icon-ym-xitong:before {
  870. content: "\e814";
  871. }
  872. .icon-ym-full-screen1:before {
  873. content: "\e7d0";
  874. }
  875. .icon-ym-file-html1:before {
  876. content: "\e7d1";
  877. }
  878. .icon-ym-generator-area:before {
  879. content: "\e7d2";
  880. }
  881. .icon-ym-generator-modifytime:before {
  882. content: "\e7d3";
  883. }
  884. .icon-ym-generator-fold:before {
  885. content: "\e7d4";
  886. }
  887. .icon-ym-generator-founder:before {
  888. content: "\e7d5";
  889. }
  890. .icon-ym-generator-line:before {
  891. content: "\e7d6";
  892. }
  893. .icon-ym-generator-department:before {
  894. content: "\e7d7";
  895. }
  896. .icon-ym-generator-function:before {
  897. content: "\e7d8";
  898. }
  899. .icon-ym-generator-notice:before {
  900. content: "\e7d9";
  901. }
  902. .icon-ym-generator-Provinces:before {
  903. content: "\e7da";
  904. }
  905. .icon-ym-generator-popup-attr:before {
  906. content: "\e7dd";
  907. }
  908. .icon-ym-generator-divider:before {
  909. content: "\e7de";
  910. }
  911. .icon-ym-generator-radio:before {
  912. content: "\e7df";
  913. }
  914. .icon-ym-generator-menu:before {
  915. content: "\e7e0";
  916. }
  917. .icon-ym-generator-popup:before {
  918. content: "\e7e1";
  919. }
  920. .icon-ym-generator-input:before {
  921. content: "\e7e2";
  922. }
  923. .icon-ym-generator-rich-text:before {
  924. content: "\e7e3";
  925. }
  926. .icon-ym-generator-Panel:before {
  927. content: "\e7e4";
  928. }
  929. .icon-ym-generator-table:before {
  930. content: "\e7e5";
  931. }
  932. .icon-ym-generator-radar:before {
  933. content: "\e7e6";
  934. }
  935. .icon-ym-generator-password:before {
  936. content: "\e7e7";
  937. }
  938. .icon-ym-generator-component:before {
  939. content: "\e7e8";
  940. }
  941. .icon-ym-generator-station:before {
  942. content: "\e7e9";
  943. }
  944. .icon-ym-generator-rate:before {
  945. content: "\e7ea";
  946. }
  947. .icon-ym-generator-subFlow1:before {
  948. content: "\e7eb";
  949. }
  950. .icon-ym-generator-number:before {
  951. content: "\e7ec";
  952. }
  953. .icon-ym-generator-flow:before {
  954. content: "\e7ef";
  955. }
  956. .icon-ym-generator-color:before {
  957. content: "\e7f0";
  958. }
  959. .icon-ym-generator-label:before {
  960. content: "\e7f1";
  961. }
  962. .icon-ym-generator-nature:before {
  963. content: "\e7f2";
  964. }
  965. .icon-ym-generator-select:before {
  966. content: "\e7f3";
  967. }
  968. .icon-ym-generator-slider:before {
  969. content: "\e7f4";
  970. }
  971. .icon-ym-generator-qrcode:before {
  972. content: "\e7f5";
  973. }
  974. .icon-ym-generator-group:before {
  975. content: "\e7f6";
  976. }
  977. .icon-ym-generator-time:before {
  978. content: "\e7f7";
  979. }
  980. .icon-ym-generator-user:before {
  981. content: "\e7f8";
  982. }
  983. .icon-ym-generator-modifier:before {
  984. content: "\e7f9";
  985. }
  986. .icon-ym-h5:before {
  987. content: "\e7fa";
  988. }
  989. .icon-ym-generator-tree:before {
  990. content: "\e7fb";
  991. }
  992. .icon-ym-gonggao:before {
  993. content: "\e7fc";
  994. }
  995. .icon-ym-generator-kanban:before {
  996. content: "\e7fd";
  997. }
  998. .icon-ym-generator-textarea:before {
  999. content: "\e7fe";
  1000. }
  1001. .icon-ym-generator-todo:before {
  1002. content: "\e7ff";
  1003. }
  1004. .icon-ym-header-loginOut:before {
  1005. content: "\e800";
  1006. }
  1007. .icon-ym-header-expand:before {
  1008. content: "\e801";
  1009. }
  1010. .icon-ym-generator-time-range:before {
  1011. content: "\e802";
  1012. }
  1013. .icon-ym-header-lockScreen:before {
  1014. content: "\e803";
  1015. }
  1016. .icon-ym-generator-switch:before {
  1017. content: "\e805";
  1018. }
  1019. .icon-ym-header-feedBack:before {
  1020. content: "\e806";
  1021. }
  1022. .icon-ym-header-skins:before {
  1023. content: "\e807";
  1024. }
  1025. .icon-ym-global-role:before {
  1026. content: "\e808";
  1027. }
  1028. .icon-ym-highchartsBullet:before {
  1029. content: "\e80b";
  1030. }
  1031. .icon-ym-header-userInfo:before {
  1032. content: "\e80c";
  1033. }
  1034. .icon-ym-generator-upload:before {
  1035. content: "\e80d";
  1036. }
  1037. .icon-ym-generator-todolist:before {
  1038. content: "\e80e";
  1039. }
  1040. .icon-ym-highchartsArea:before {
  1041. content: "\e80f";
  1042. }
  1043. .icon-ym-highchartsFunnel:before {
  1044. content: "\e811";
  1045. }
  1046. .icon-ym-highcharts:before {
  1047. content: "\e813";
  1048. }
  1049. .icon-ym-header-about:before {
  1050. content: "\e815";
  1051. }
  1052. .icon-ym-importAndExportExample:before {
  1053. content: "\e817";
  1054. }
  1055. .icon-ym-highchartsScatter:before {
  1056. content: "\e818";
  1057. }
  1058. .icon-ym-header-language1:before {
  1059. content: "\e81a";
  1060. }
  1061. .icon-ym-mpMenu:before {
  1062. content: "\e81c";
  1063. }
  1064. .icon-ym-group:before {
  1065. content: "\e81d";
  1066. }
  1067. .icon-ym-nav-close:before {
  1068. content: "\e820";
  1069. }
  1070. .icon-ym-highchartsLine:before {
  1071. content: "\e821";
  1072. }
  1073. .icon-ym-ios:before {
  1074. content: "\e822";
  1075. }
  1076. .icon-ym-highchartsBellcurve:before {
  1077. content: "\e823";
  1078. }
  1079. .icon-ym-mpMaterial:before {
  1080. content: "\e824";
  1081. }
  1082. .icon-ym-mpMessage:before {
  1083. content: "\e825";
  1084. }
  1085. .icon-ym-message:before {
  1086. content: "\e826";
  1087. }
  1088. .icon-ym-java:before {
  1089. content: "\e828";
  1090. }
  1091. .icon-ym-orderDemo:before {
  1092. content: "\e82a";
  1093. }
  1094. .icon-ym-position-1:before {
  1095. content: "\e82b";
  1096. }
  1097. .icon-ym-nav-next:before {
  1098. content: "\e82d";
  1099. }
  1100. .icon-ym-projectExample:before {
  1101. content: "\e82f";
  1102. }
  1103. .icon-ym-mapExample:before {
  1104. content: "\e833";
  1105. }
  1106. .icon-ym-qyUser:before {
  1107. content: "\e835";
  1108. }
  1109. .icon-ym-scanCode1:before {
  1110. content: "\e836";
  1111. }
  1112. .icon-ym-report-icon-picture:before {
  1113. content: "\e837";
  1114. }
  1115. .icon-ym-mpConfig:before {
  1116. content: "\e838";
  1117. }
  1118. .icon-ym-options1:before {
  1119. content: "\e839";
  1120. }
  1121. .icon-ym-nav-prev:before {
  1122. content: "\e83a";
  1123. }
  1124. .icon-ym-scheduleExample:before {
  1125. content: "\e83d";
  1126. }
  1127. .icon-ym-Refresh:before {
  1128. content: "\e840";
  1129. }
  1130. .icon-ym-options:before {
  1131. content: "\e841";
  1132. }
  1133. .icon-ym-saolian:before {
  1134. content: "\e844";
  1135. }
  1136. .icon-ym-shezhi:before {
  1137. content: "\e846";
  1138. }
  1139. .icon-ym-sysMenu:before {
  1140. content: "\e848";
  1141. }
  1142. .icon-ym-barCodeExample:before {
  1143. content: "\e73b";
  1144. }
  1145. .icon-ym-sysLanguage:before {
  1146. content: "\e84a";
  1147. }
  1148. .icon-ym-report-icon-pie:before {
  1149. content: "\e84b";
  1150. }
  1151. .icon-ym-bigScreenExample1:before {
  1152. content: "\e73e";
  1153. }
  1154. .icon-ym-bigDataExample:before {
  1155. content: "\e73f";
  1156. }
  1157. .icon-ym-orderExample:before {
  1158. content: "\e84d";
  1159. }
  1160. .icon-ym-preview-excel-paging:before {
  1161. content: "\e84e";
  1162. }
  1163. .icon-ym-btn-import:before {
  1164. content: "\e741";
  1165. }
  1166. .icon-ym-tableExample:before {
  1167. content: "\e84f";
  1168. }
  1169. .icon-ym-btn-collapse:before {
  1170. content: "\e742";
  1171. }
  1172. .icon-ym-btn-edit:before {
  1173. content: "\e743";
  1174. }
  1175. .icon-ym-chartExample:before {
  1176. content: "\e744";
  1177. }
  1178. .icon-ym-btn-refresh:before {
  1179. content: "\e746";
  1180. }
  1181. .icon-ym-tree-department:before {
  1182. content: "\e855";
  1183. }
  1184. .icon-ym-checktriangle:before {
  1185. content: "\e747";
  1186. }
  1187. .icon-ym-btn-fields:before {
  1188. content: "\e748";
  1189. }
  1190. .icon-ym-tree-department2:before {
  1191. content: "\e858";
  1192. }
  1193. .icon-ym-btn-export:before {
  1194. content: "\e749";
  1195. }
  1196. .icon-ym-tree-normal1:before {
  1197. content: "\e859";
  1198. }
  1199. .icon-ym-btn-preview:before {
  1200. content: "\e74a";
  1201. }
  1202. .icon-ym-tree-normal:before {
  1203. content: "\e85a";
  1204. }
  1205. .icon-ym-tree-organization3:before {
  1206. content: "\e85b";
  1207. }
  1208. .icon-ym-btn-add:before {
  1209. content: "\e74c";
  1210. }
  1211. .icon-ym-tree-position2:before {
  1212. content: "\e85c";
  1213. }
  1214. .icon-ym-btn-expand:before {
  1215. content: "\e74e";
  1216. }
  1217. .icon-ym-tree-user2:before {
  1218. content: "\e85e";
  1219. }
  1220. .icon-ym-daiban1:before {
  1221. content: "\e74f";
  1222. }
  1223. .icon-ym-tree-department1:before {
  1224. content: "\e85f";
  1225. }
  1226. .icon-ym-daka:before {
  1227. content: "\e750";
  1228. }
  1229. .icon-ym-tableExample1:before {
  1230. content: "\e860";
  1231. }
  1232. .icon-ym-tree-manage:before {
  1233. content: "\e861";
  1234. }
  1235. .icon-ym-android:before {
  1236. content: "\e752";
  1237. }
  1238. .icon-ym-wf-applyDeliverGoods:before {
  1239. content: "\e862";
  1240. }
  1241. .icon-ym-darg:before {
  1242. content: "\e753";
  1243. }
  1244. .icon-ym-wechat1:before {
  1245. content: "\e863";
  1246. }
  1247. .icon-ym-duties:before {
  1248. content: "\e754";
  1249. }
  1250. .icon-ym-tree-position1:before {
  1251. content: "\e865";
  1252. }
  1253. .icon-ym-echartsColumn:before {
  1254. content: "\e757";
  1255. }
  1256. .icon-ym-delete:before {
  1257. content: "\e758";
  1258. }
  1259. .icon-ym-echartsCandlestick:before {
  1260. content: "\e759";
  1261. }
  1262. .icon-ym-visual-studio:before {
  1263. content: "\e869";
  1264. }
  1265. .icon-ym-btn-remove:before {
  1266. content: "\e75a";
  1267. }
  1268. .icon-ym-wf-conBilling:before {
  1269. content: "\e86a";
  1270. }
  1271. .icon-ym-echartsFunnel:before {
  1272. content: "\e75b";
  1273. }
  1274. .icon-ym-wf-batchPack:before {
  1275. content: "\e86b";
  1276. }
  1277. .icon-ym-tree-department-1:before {
  1278. content: "\e86c";
  1279. }
  1280. .icon-ym-wf-articlesWarehous:before {
  1281. content: "\e86d";
  1282. }
  1283. .icon-ym-emailExample:before {
  1284. content: "\e75e";
  1285. }
  1286. .icon-ym-wf-applyMeeting:before {
  1287. content: "\e86e";
  1288. }
  1289. .icon-ym-dingdang:before {
  1290. content: "\e75f";
  1291. }
  1292. .icon-ym-wf-batchTable:before {
  1293. content: "\e86f";
  1294. }
  1295. .icon-ym-echartsLineArea:before {
  1296. content: "\e760";
  1297. }
  1298. .icon-ym-wf-applyBanquet:before {
  1299. content: "\e870";
  1300. }
  1301. .icon-ym-crm:before {
  1302. content: "\e761";
  1303. }
  1304. .icon-ym-extend-ambulance:before {
  1305. content: "\e762";
  1306. }
  1307. .icon-ym-wf-documentApproval:before {
  1308. content: "\e872";
  1309. }
  1310. .icon-ym-echartsScatter:before {
  1311. content: "\e763";
  1312. }
  1313. .icon-ym-wf-archivalBorrow:before {
  1314. content: "\e874";
  1315. }
  1316. .icon-ym-dbLink:before {
  1317. content: "\e764";
  1318. }
  1319. .icon-ym-wf-debitBill:before {
  1320. content: "\e875";
  1321. }
  1322. .icon-ym-dot-net:before {
  1323. content: "\e765";
  1324. }
  1325. .icon-ym-weChat:before {
  1326. content: "\e876";
  1327. }
  1328. .icon-ym-extend-exclamation-triangle:before {
  1329. content: "\e766";
  1330. }
  1331. .icon-ym-btn-copy:before {
  1332. content: "\e767";
  1333. }
  1334. .icon-ym-wf-contractApproval:before {
  1335. content: "\e879";
  1336. }
  1337. .icon-ym-documentExample:before {
  1338. content: "\e768";
  1339. }
  1340. .icon-ym-echartsLineBar:before {
  1341. content: "\e769";
  1342. }
  1343. .icon-ym-wf-documentSigning:before {
  1344. content: "\e87b";
  1345. }
  1346. .icon-ym-extend-clock:before {
  1347. content: "\e76a";
  1348. }
  1349. .icon-ym-wf-contractApprovalSheet:before {
  1350. content: "\e87d";
  1351. }
  1352. .icon-ym-extend-check-circle-o:before {
  1353. content: "\e76b";
  1354. }
  1355. .icon-ym-wf-leaveApply:before {
  1356. content: "\e87f";
  1357. }
  1358. .icon-ym-wf-letterService:before {
  1359. content: "\e880";
  1360. }
  1361. .icon-ym-erweima:before {
  1362. content: "\e76d";
  1363. }
  1364. .icon-ym-wf-officeSupplies:before {
  1365. content: "\e881";
  1366. }
  1367. .icon-ym-echartsBarAcross:before {
  1368. content: "\e76e";
  1369. }
  1370. .icon-ym-wf-payDistribution:before {
  1371. content: "\e882";
  1372. }
  1373. .icon-ym-wf-incomeRecognition:before {
  1374. content: "\e883";
  1375. }
  1376. .icon-ym-extend-eye:before {
  1377. content: "\e770";
  1378. }
  1379. .icon-ym-wf-postBatchTab:before {
  1380. content: "\e884";
  1381. }
  1382. .icon-ym-extend-circle:before {
  1383. content: "\e771";
  1384. }
  1385. .icon-ym-wf-quotationApproval:before {
  1386. content: "\e885";
  1387. }
  1388. .icon-ym-extend-bar-chart:before {
  1389. content: "\e772";
  1390. }
  1391. .icon-ym-wf-rewardPunishment:before {
  1392. content: "\e886";
  1393. }
  1394. .icon-ym-extend-mail-forward:before {
  1395. content: "\e773";
  1396. }
  1397. .icon-ym-wf-monthlyReport:before {
  1398. content: "\e887";
  1399. }
  1400. .icon-ym-extend-car:before {
  1401. content: "\e774";
  1402. }
  1403. .icon-ym-wf-materialRequisition:before {
  1404. content: "\e888";
  1405. }
  1406. .icon-ym-extend-meh:before {
  1407. content: "\e775";
  1408. }
  1409. .icon-ym-wf-procurementMaterial:before {
  1410. content: "\e889";
  1411. }
  1412. .icon-ym-extend-cog:before {
  1413. content: "\e776";
  1414. }
  1415. .icon-ym-wf-outboundOrder:before {
  1416. content: "\e88a";
  1417. }
  1418. .icon-ym-extend-minus-circle:before {
  1419. content: "\e777";
  1420. }
  1421. .icon-ym-echartsPie:before {
  1422. content: "\e778";
  1423. }
  1424. .icon-ym-wf-receiptProcessing:before {
  1425. content: "\e88c";
  1426. }
  1427. .icon-ym-extend-envelope:before {
  1428. content: "\e779";
  1429. }
  1430. .icon-ym-wf-salesOrder:before {
  1431. content: "\e88d";
  1432. }
  1433. .icon-ym-compress-screen:before {
  1434. content: "\e77a";
  1435. }
  1436. .icon-ym-wf-salesSupport:before {
  1437. content: "\e88e";
  1438. }
  1439. .icon-ym-wf-travelApply:before {
  1440. content: "\e88f";
  1441. }
  1442. .icon-ym-echartsTree:before {
  1443. content: "\e77c";
  1444. }
  1445. .icon-ym-wf-paymentApply:before {
  1446. content: "\e890";
  1447. }
  1448. .icon-ym-extend-star-o:before {
  1449. content: "\e77d";
  1450. }
  1451. .icon-ym-wf-violationHandling:before {
  1452. content: "\e891";
  1453. }
  1454. .icon-ym-extend-paper-plane:before {
  1455. content: "\e77e";
  1456. }
  1457. .icon-ym-extend-history:before {
  1458. content: "\e77f";
  1459. }
  1460. .icon-ym-wf-purchaseList:before {
  1461. content: "\e893";
  1462. }
  1463. .icon-ym-echartsGauge:before {
  1464. content: "\e780";
  1465. }
  1466. .icon-ym-wf-warehouseReceipt:before {
  1467. content: "\e894";
  1468. }
  1469. .icon-ym-extend-edit:before {
  1470. content: "\e781";
  1471. }
  1472. .icon-ym-wf-workContactSheet:before {
  1473. content: "\e895";
  1474. }
  1475. .icon-ym-extend-plane:before {
  1476. content: "\e782";
  1477. }
  1478. .icon-ym-file-blank:before {
  1479. content: "\e783";
  1480. }
  1481. .icon-ym-extend-folder-open:before {
  1482. content: "\e784";
  1483. }
  1484. .icon-ym-wf-travelReimbursement:before {
  1485. content: "\e898";
  1486. }
  1487. .icon-ym-extend-thumbs-up:before {
  1488. content: "\e785";
  1489. }
  1490. .icon-ym-extend-truck:before {
  1491. content: "\e786";
  1492. }
  1493. .icon-ym-wf-supplementCard:before {
  1494. content: "\e89a";
  1495. }
  1496. .icon-ym-extend-folder:before {
  1497. content: "\e787";
  1498. }
  1499. .icon-ym-zhanghao:before {
  1500. content: "\e89b";
  1501. }
  1502. .icon-ym-extend-paperclip:before {
  1503. content: "\e788";
  1504. }
  1505. .icon-ym-zuzhi:before {
  1506. content: "\e89c";
  1507. }
  1508. .icon-ym-extend-star:before {
  1509. content: "\e789";
  1510. }
  1511. .icon-ym-xingcheng:before {
  1512. content: "\e89d";
  1513. }
  1514. .icon-ym-extend-train:before {
  1515. content: "\e78a";
  1516. }
  1517. .icon-ym-extend-motorcycle:before {
  1518. content: "\e78b";
  1519. }
  1520. .icon-ym-wf-vehicleApply:before {
  1521. content: "\e89f";
  1522. }
  1523. .icon-ym-file-photo:before {
  1524. content: "\e78c";
  1525. }
  1526. .icon-ym-zujian:before {
  1527. content: "\e8a0";
  1528. }
  1529. .icon-ym-extend-subway:before {
  1530. content: "\e78d";
  1531. }
  1532. .icon-ym-extend-envelope-open-o:before {
  1533. content: "\e78e";
  1534. }
  1535. .icon-ym-file-csv1:before {
  1536. content: "\e790";
  1537. }
  1538. .icon-ym-extend-pencil:before {
  1539. content: "\e791";
  1540. }
  1541. .icon-ym-extend-bicycle:before {
  1542. content: "\e792";
  1543. }
  1544. .icon-ym-extend-save:before {
  1545. content: "\e793";
  1546. }
  1547. .icon-ym-extend-trash:before {
  1548. content: "\e795";
  1549. }
  1550. .icon-ym-extend-bus:before {
  1551. content: "\e796";
  1552. }
  1553. .icon-ym-file-eps:before {
  1554. content: "\e797";
  1555. }
  1556. .icon-ym-file-ai:before {
  1557. content: "\e798";
  1558. }
  1559. .icon-ym-extend-share:before {
  1560. content: "\e799";
  1561. }
  1562. .icon-ym-file-audio:before {
  1563. content: "\e79b";
  1564. }
  1565. .icon-ym-file-word:before {
  1566. content: "\e79c";
  1567. }
  1568. .icon-ym-file-pdf:before {
  1569. content: "\e79d";
  1570. }
  1571. .icon-ym-file-code:before {
  1572. content: "\e79f";
  1573. }
  1574. .icon-ym-flowCirculate:before {
  1575. content: "\e7a1";
  1576. }
  1577. .icon-ym-file-ppt:before {
  1578. content: "\e7a4";
  1579. }
  1580. .icon-ym-file-video:before {
  1581. content: "\e7a5";
  1582. }
  1583. .icon-ym-file-zip:before {
  1584. content: "\e7a8";
  1585. }
  1586. .icon-ym-flowDone:before {
  1587. content: "\e7a9";
  1588. }
  1589. .icon-ym-file-psd:before {
  1590. content: "\e7aa";
  1591. }
  1592. .icon-ym-gangwei2:before {
  1593. content: "\e7ac";
  1594. }
  1595. .icon-ym-full-screen:before {
  1596. content: "\e7ad";
  1597. }
  1598. .icon-ym-file-rar:before {
  1599. content: "\e7ae";
  1600. }
  1601. .icon-ym-file-visio-1:before {
  1602. content: "\e7af";
  1603. }
  1604. .icon-ym-file-movie:before {
  1605. content: "\e7b0";
  1606. }
  1607. .icon-ym-generator-barcode:before {
  1608. content: "\e7b4";
  1609. }
  1610. .icon-ym-flowDesign:before {
  1611. content: "\e7b5";
  1612. }
  1613. .icon-ym-formExample1:before {
  1614. content: "\e7b7";
  1615. }
  1616. .icon-ym-file-xml:before {
  1617. content: "\e7b9";
  1618. }
  1619. .icon-ym-flowMonitor:before {
  1620. content: "\e7ba";
  1621. }
  1622. .icon-ym-extend-rocket:before {
  1623. content: "\e7bc";
  1624. }
  1625. .icon-ym-file-image:before {
  1626. content: "\e7bd";
  1627. }
  1628. .icon-ym-generator-bar:before {
  1629. content: "\e7be";
  1630. }
  1631. .icon-ym-generator-date-range:before {
  1632. content: "\e7c0";
  1633. }
  1634. .icon-ym-generator-date:before {
  1635. content: "\e7c1";
  1636. }
  1637. .icon-ym-generator-card:before {
  1638. content: "\e7c2";
  1639. }
  1640. .icon-ym-file-visio:before {
  1641. content: "\e7c3";
  1642. }
  1643. .icon-ym-generator-dictionary:before {
  1644. content: "\e7c4";
  1645. }
  1646. .icon-ym-generator-email:before {
  1647. content: "\e7c5";
  1648. }
  1649. .icon-ym-generator-company:before {
  1650. content: "\e7c6";
  1651. }
  1652. .icon-ym-generator-annular:before {
  1653. content: "\e7c7";
  1654. }
  1655. .icon-ym-generator-button:before {
  1656. content: "\e7c9";
  1657. }
  1658. .icon-ym-generator-count:before {
  1659. content: "\e7ca";
  1660. }
  1661. .icon-ym-generator-layout:before {
  1662. content: "\e7cb";
  1663. }
  1664. .icon-ym-file-excel:before {
  1665. content: "\e7cc";
  1666. }
  1667. .icon-ym-generator-cascader:before {
  1668. content: "\e7cd";
  1669. }
  1670. .icon-ym-generator-checkbox:before {
  1671. content: "\e7ce";
  1672. }
  1673. .icon-ym-highchartsGauge:before {
  1674. content: "\e856";
  1675. }
  1676. .icon-ym-wf-outgoingApply:before {
  1677. content: "\e854";
  1678. }
  1679. .icon-ym-mac:before {
  1680. content: "\e7db";
  1681. }
  1682. .icon-ym-appDesign:before {
  1683. content: "\e6f9";
  1684. }
  1685. .icon-ym-generator-pie:before {
  1686. content: "\e60b";
  1687. }
  1688. .icon-ym-scanCode:before {
  1689. content: "\e87e";
  1690. }
  1691. .icon-ym-mpUser:before {
  1692. content: "\e794";
  1693. }
  1694. .icon-ym-printExample:before {
  1695. content: "\e79a";
  1696. }
  1697. .icon-ym-qyOrg:before {
  1698. content: "\e79e";
  1699. }
  1700. .icon-ym-qyMessage:before {
  1701. content: "\e7a0";
  1702. }
  1703. .icon-ym-generator-subFlow:before {
  1704. content: "\e61b";
  1705. }
  1706. .icon-ym-reportExample1:before {
  1707. content: "\e7a2";
  1708. }
  1709. .icon-ym-qyConfig:before {
  1710. content: "\e7a3";
  1711. }
  1712. .icon-ym-saoyisao:before {
  1713. content: "\e623";
  1714. }
  1715. .icon-ym-highcharts-Pie:before {
  1716. content: "\e7b6";
  1717. }
  1718. .icon-ym-report-icon-area:before {
  1719. content: "\e63e";
  1720. }
  1721. .icon-ym-report-icon-arrow-down:before {
  1722. content: "\e63f";
  1723. }
  1724. .icon-ym-report-icon-align-left:before {
  1725. content: "\e640";
  1726. }
  1727. .icon-ym-report-icon-align-top:before {
  1728. content: "\e641";
  1729. }
  1730. .icon-ym-report-icon-border-all:before {
  1731. content: "\e642";
  1732. }
  1733. .icon-ym-report-icon-align-bottom:before {
  1734. content: "\e643";
  1735. }
  1736. .icon-ym-report-icon-align-right:before {
  1737. content: "\e644";
  1738. }
  1739. .icon-ym-report-icon-bold:before {
  1740. content: "\e645";
  1741. }
  1742. .icon-ym-report-icon-border-bottom:before {
  1743. content: "\e646";
  1744. }
  1745. .icon-ym-report-icon-align-center:before {
  1746. content: "\e647";
  1747. }
  1748. .icon-ym-report-icon-border-right:before {
  1749. content: "\e648";
  1750. }
  1751. .icon-ym-report-icon-bubble:before {
  1752. content: "\e649";
  1753. }
  1754. .icon-ym-report-icon-diagram:before {
  1755. content: "\e64a";
  1756. }
  1757. .icon-ym-report-icon-enlarge:before {
  1758. content: "\e64b";
  1759. }
  1760. .icon-ym-report-icon-align-middle:before {
  1761. content: "\e64c";
  1762. }
  1763. .icon-ym-report-icon-preview-pagePre:before {
  1764. content: "\e64e";
  1765. }
  1766. .icon-ym-report-icon-border-left:before {
  1767. content: "\e64f";
  1768. }
  1769. .icon-ym-report-icon-font:before {
  1770. content: "\e652";
  1771. }
  1772. .icon-ym-report-icon-border-top:before {
  1773. content: "\e653";
  1774. }
  1775. .icon-ym-report-icon-background-color:before {
  1776. content: "\e656";
  1777. }
  1778. .icon-ym-report-icon-border-custom:before {
  1779. content: "\e657";
  1780. }
  1781. .icon-ym-report-icon-horizontal-column:before {
  1782. content: "\e65c";
  1783. }
  1784. .icon-ym-report-icon-column:before {
  1785. content: "\e65d";
  1786. }
  1787. .icon-ym-report-icon-font-type:before {
  1788. content: "\e65e";
  1789. }
  1790. .icon-ym-report-icon-import-excel:before {
  1791. content: "\e65f";
  1792. }
  1793. .icon-ym-report-icon-restore:before {
  1794. content: "\e662";
  1795. }
  1796. .icon-ym-report-icon-oblique-head:before {
  1797. content: "\e663";
  1798. }
  1799. .icon-ym-report-icon-preview-pdf:before {
  1800. content: "\e664";
  1801. }
  1802. .icon-ym-report-icon-preview-pageNext:before {
  1803. content: "\e665";
  1804. }
  1805. .icon-ym-report-icon-preview-print:before {
  1806. content: "\e666";
  1807. }
  1808. .icon-ym-report-icon-preview-pageLast:before {
  1809. content: "\e667";
  1810. }
  1811. .icon-ym-report-icon-preview-excel-paging:before {
  1812. content: "\e669";
  1813. }
  1814. .icon-ym-report-icon-radar:before {
  1815. content: "\e66a";
  1816. }
  1817. .icon-ym-report-icon-border-none:before {
  1818. content: "\e66b";
  1819. }
  1820. .icon-ym-report-icon-preview-word:before {
  1821. content: "\e66c";
  1822. }
  1823. .icon-ym-report-icon-scatter:before {
  1824. content: "\e66f";
  1825. }
  1826. .icon-ym-report-icon-preview-printPreview:before {
  1827. content: "\e670";
  1828. }
  1829. .icon-ym-report-icon-preview-excel-with-paging-sheet:before {
  1830. content: "\e671";
  1831. }
  1832. .icon-ym-report-icon-fontsize:before {
  1833. content: "\e672";
  1834. }
  1835. .icon-ym-report-icon-search-setting:before {
  1836. content: "\e673";
  1837. }
  1838. .icon-ym-report-icon-preview-excel:before {
  1839. content: "\e674";
  1840. }
  1841. .icon-ym-report-icon-undo:before {
  1842. content: "\e675";
  1843. }
  1844. .icon-ym-report-icon-shrink:before {
  1845. content: "\e676";
  1846. }
  1847. .icon-ym-report-icon-configuration:before {
  1848. content: "\e677";
  1849. }
  1850. .icon-ym-report-icon-preview-refresh:before {
  1851. content: "\e678";
  1852. }
  1853. .icon-ym-report-icon-underline:before {
  1854. content: "\e679";
  1855. }
  1856. .icon-ym-report-icon-italic:before {
  1857. content: "\e67b";
  1858. }
  1859. .icon-ym-report-icon-preview-printPdf:before {
  1860. content: "\e67c";
  1861. }
  1862. .icon-ym-report-icon-merge-cell:before {
  1863. content: "\e67a";
  1864. }
  1865. .icon-ym-report-icon-polar-plot:before {
  1866. content: "\e650";
  1867. }
  1868. .icon-ym-report-icon-page-preview:before {
  1869. content: "\e668";
  1870. }
  1871. .icon-ym-report-icon-doughnut:before {
  1872. content: "\e66e";
  1873. }
  1874. .icon-ym-report-icon-preview:before {
  1875. content: "\e655";
  1876. }
  1877. .icon-ym-pageDesign:before {
  1878. content: "\e684";
  1879. }
  1880. .icon-ym-customUrl:before {
  1881. content: "\e685";
  1882. }
  1883. .icon-ym-btn-clearn:before {
  1884. content: "\e80a";
  1885. }
  1886. .icon-ym-tree-organization1:before {
  1887. content: "\e82e";
  1888. }
  1889. .icon-ym-generator-documents:before {
  1890. content: "\e878";
  1891. }
  1892. .icon-ym-generator-createtime:before {
  1893. content: "\e87c";
  1894. }