iconfont.css 34 KB

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