common.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. /* 滚动条样式 */
  2. ::-webkit-scrollbar {
  3. width: 8px;
  4. }
  5. ::-webkit-scrollbar-thumb {
  6. background-color:rgba(0,0,0,.15);background-clip:content-box;border:1px solid transparent;border-radius:8px
  7. }
  8. ::-webkit-scrollbar-track{background-color:transparent}
  9. ::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.04)}
  10. ::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.4);border:1px solid transparent}
  11. ::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.65)}
  12. ::-moz-scrollbar {
  13. width: 8px;
  14. background-color: transparent;
  15. }
  16. ::-moz-scrollbar-thumb {
  17. background-color: #c1c1c1;
  18. border-radius: 8px;
  19. }
  20. body.right-open{overflow-y:clip;}
  21. div.layui-table-main::-webkit-scrollbar{width:12px;height:12px}
  22. div.layui-table-main::-webkit-scrollbar-thumb{min-width:12px;min-height:12px;background-color:rgba(0,0,0,.15);background-clip:content-box;border:2px solid transparent;border-radius:12px}
  23. div.layui-table-main::-webkit-scrollbar-track{background-color:transparent}
  24. div.layui-table-main::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.04)}
  25. div.layui-table-main::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.4);border:2px solid transparent}
  26. div.layui-table-main::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.65)}
  27. /*placeholder*/
  28. ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  29. color: #aaa;
  30. }
  31. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  32. color: #aaa;
  33. }
  34. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  35. color: #aaa;
  36. }
  37. :-ms-input-placeholder { /* Internet Explorer 10-11 */
  38. color: #aaa;
  39. }
  40. .layui-card { box-shadow: 0 1px 3px 0 rgb(5 32 96 / 10%); margin-bottom:12px!important;}
  41. .layui-table, .layui-table-view{margin:0}
  42. .layui-table td,.layui-table th{padding:9px 10px;}
  43. .layui-table-cell{padding:0 10px;}
  44. .layui-table[lay-size=sm] td, .layui-table[lay-size=sm] th {padding: 5px;}
  45. .layui-form-bar{padding:12px;border:1px solid #eee; border-bottom:none;}
  46. .auth-single .auth-icon{font-size:24px; float:left;}
  47. .auth-single .layui-form-radio,.auth-single .layui-form-checkbox{margin-left:0;}
  48. .auth-single .layui-form-radio{margin-top:0;}
  49. .auth-single .layui-form-radio>i,.auth-single .layui-form-checkbox>i{font-size:20px;}
  50. .layui-select-tags{padding:10px 0;}
  51. .layui-tags-span{padding:5px 8px; font-size:14px; border-radius:3px; margin-bottom:6px; margin-right:6px; border:1px solid #e6e6e6; display:inline-block;cursor:pointer;}
  52. .layui-readonly{background-color: #f5f5f5; color:#999;}
  53. .layui-tags-span:hover{border:1px solid #ddd; background-color:#f2f2f2;}
  54. .layui-tags-span i{margin-left:5px; font-size:14px;}
  55. .layui-tags-span i:hover{border-radius:2px;background-color:#FF6347;color:#fff}
  56. .layui-letter-span{padding:10px 5px; font-size:15px; display:inline-block; cursor:pointer;}
  57. .layui-letter-span.on{color:#FF6347; font-weight:800;}
  58. .layui-letter-span:hover{color:#4285f4;}
  59. .layui-tags-all{float: right; font-weight: 200px; background-color:#4285f4; color:#fff; border-radius: 3px; padding: 2px 6px; cursor: pointer; display: none;}
  60. .layui-table-form{margin-top: 0;}
  61. .layui-table-form tbody tr:hover{background-color: #fff;}
  62. .layui-td-gray{color:#999; width:80px; text-align:right; background-color:#f8f8f8;}
  63. .layui-td-gray2{color:#999; width:100px; text-align:right; background-color:#f8f8f8;}
  64. .layui-td-gray3{color:#999; width:120px; text-align:right; background-color:#f8f8f8;}
  65. .layui-td-gray4{color:#999; width:150px; text-align:right; background-color:#f8f8f8;}
  66. .layui-td-gray font,.layui-td-gray2 font,.layui-td-gray3 font{color:#FF6347; margin-left: 3px;}
  67. .main-body{padding:12px;padding-bottom: 0; min-width: 868px;}
  68. .body-content{background-color:#fff; padding:10px 12px;}
  69. .body-table{background-color:#fff; margin-bottom:12px}
  70. .h3-title{font-size:18px; height:39px; font-weight:800}
  71. .h3-title2{font-size:18px; height:39px; font-weight:800; padding-top:20px}
  72. .body-form-btn{padding:10px 0;}
  73. .span-color--1{color:#999999;}
  74. .span-color-0{color:#5FB878;}
  75. .span-color-1{color:#FF6347;}
  76. .span-color-2{color:#01AAED;}
  77. .span-color-3{color:#d89d00;}
  78. .span-color-4{color:#CC0033;}
  79. .span-color-5{color:#CCCC00;}
  80. .span-color-6{color:#FF33CC;}
  81. .span-color-7{color:#6699FF;}
  82. .span-color-8{color:#CC9933;}
  83. .layui-tab-title .layui-this:after {width:calc(100% - 35px );left:12px; min-width:65px;}
  84. @keyframes layui-rl{
  85. from{transform:translateX(0px);}to{transform:translateX(-100%);}
  86. }
  87. @-webkit-keyframes layui-rl{
  88. from{transform:translateX(0px);}to{transform:translateX(-100%);}
  89. }
  90. .layui-anim {
  91. -webkit-animation-duration: .3s;
  92. animation-duration: .3s;
  93. -webkit-animation-fill-mode: both;
  94. animation-fill-mode: both;
  95. }
  96. .layui-anim-rl {
  97. -webkit-animation-name: layui-rl;
  98. animation-name: layui-rl;
  99. }
  100. .layui-layer-admin-right {
  101. box-shadow: 1px 1px 10px rgba(0,0,0,.1);
  102. border-radius: 0!important;
  103. overflow: auto;
  104. }
  105. .layui-anim-rl.layui-layer-iframe{
  106. overflow:initial!important;
  107. }
  108. .right-popup-close{position: absolute;width:24px;height:60px; padding:30px 6px; line-height:30px;text-align:center; left: -38px;right:0; top: 20%;background-color:#FF5722;color:#fff;border-radius:6px 0 0 6px; cursor:pointer; border:2px solid #fff; border-right:none; font-weight:600; font-size:14px;}
  109. .right-popup-close:hover{opacity:0.88}
  110. .page-content{background-color:#fff;}
  111. @font-face {
  112. font-family: "iconfont"; /* Project id 2936988 */
  113. src: url('/static/layui/font/extend/iconfont.woff2?t=1636884517050') format('woff2'),
  114. url('/static/layui/font/extend/iconfont.woff?t=1636884517050') format('woff'),
  115. url('/static/layui/font/extend/iconfont.ttf?t=1636884517050') format('truetype');
  116. }
  117. .iconfont {
  118. font-family: "iconfont" !important;
  119. font-size: 16px;
  120. font-style: normal;
  121. -webkit-font-smoothing: antialiased;
  122. -moz-osx-font-smoothing: grayscale;
  123. }
  124. .icon-xueshengyidong:before {
  125. content: "\e6e9";
  126. }
  127. .icon-baokao:before {
  128. content: "\e6ea";
  129. }
  130. .icon-chengji:before {
  131. content: "\e6eb";
  132. }
  133. .icon-yuejuan:before {
  134. content: "\e6ec";
  135. }
  136. .icon-kaoheshezhi:before {
  137. content: "\e6ed";
  138. }
  139. .icon-lunwenguanli:before {
  140. content: "\e6ee";
  141. }
  142. .icon-shenbao:before {
  143. content: "\e6ef";
  144. }
  145. .icon-kecheng:before {
  146. content: "\e6f0";
  147. }
  148. .icon-tiku:before {
  149. content: "\e6f1";
  150. }
  151. .icon-jiaowushezhi:before {
  152. content: "\e6f2";
  153. }
  154. .icon-zidingyishezhi:before {
  155. content: "\e6f3";
  156. }
  157. .icon-chaojitongji:before {
  158. content: "\e6f4";
  159. }
  160. .icon-zhaoshengtongji:before {
  161. content: "\e6f5";
  162. }
  163. .icon-tuiguangtongji:before {
  164. content: "\e6f6";
  165. }
  166. .icon-xuexitongji:before {
  167. content: "\e6f7";
  168. }
  169. .icon-diqushujutongji:before {
  170. content: "\e6f8";
  171. }
  172. .icon-shujudaoru:before {
  173. content: "\e6f9";
  174. }
  175. .icon-chengkaoguanli:before {
  176. content: "\e6fb";
  177. }
  178. .icon-yuanchengguanli:before {
  179. content: "\e6fe";
  180. }
  181. .icon-shujiguanli:before {
  182. content: "\e6ff";
  183. }
  184. .icon-guochengxingkaohe:before {
  185. content: "\e700";
  186. }
  187. .icon-xuefenrending:before {
  188. content: "\e701";
  189. }
  190. .icon-kechengdingdan:before {
  191. content: "\e702";
  192. }
  193. .icon-wentifankui:before {
  194. content: "\e703";
  195. }
  196. .icon-zichan:before {
  197. content: "\e704";
  198. }
  199. .icon-KPIguanli:before {
  200. content: "\e705";
  201. }
  202. .icon-xiangmuguanli:before {
  203. content: "\e706";
  204. }
  205. .icon-weixingongzhonghao:before {
  206. content: "\e707";
  207. }
  208. .icon-anquanshezhi:before {
  209. content: "\e708";
  210. }
  211. .icon-fuwuzhongxin:before {
  212. content: "\e709";
  213. }
  214. .icon-qiyefuwu:before {
  215. content: "\e70a";
  216. }
  217. .icon-wangkefuwu:before {
  218. content: "\e70b";
  219. }
  220. .icon-shoufeiguanli:before {
  221. content: "\e70c";
  222. }
  223. .icon-quanxianshezhi:before {
  224. content: "\e70d";
  225. }
  226. .icon-jiaowutongji:before {
  227. content: "\e70f";
  228. }
  229. .icon-jiaoxuetongji:before {
  230. content: "\e710";
  231. }
  232. .icon-shoufeitongji:before {
  233. content: "\e711";
  234. }
  235. .icon-fuwutongji:before {
  236. content: "\e713";
  237. }
  238. .icon-tongzhitongji:before {
  239. content: "\e714";
  240. }
  241. .icon-kaohetongji:before {
  242. content: "\e715";
  243. }
  244. .icon-yonghuhuoyuedu:before {
  245. content: "\e716";
  246. }
  247. .icon-xueshengbaoming:before {
  248. content: "\e717";
  249. }
  250. .icon-xueshengluqu:before {
  251. content: "\e718";
  252. }
  253. .icon-xueshengzhuce:before {
  254. content: "\e719";
  255. }
  256. .icon-zaijixuesheng:before {
  257. content: "\e71a";
  258. }
  259. .icon-huamingce:before {
  260. content: "\e71b";
  261. }
  262. .icon-fenleiguanli:before {
  263. content: "\e71c";
  264. }
  265. .icon-fuwuliebiao:before {
  266. content: "\e71d";
  267. }
  268. .icon-fenleiliebiao:before {
  269. content: "\e71e";
  270. }
  271. .icon-tongzhiliebiao:before {
  272. content: "\e71f";
  273. }
  274. .icon-jiaoxuejihua:before {
  275. content: "\e720";
  276. }
  277. .icon-jiaoxueanpai:before {
  278. content: "\e721";
  279. }
  280. .icon-chengjiguanli:before {
  281. content: "\e722";
  282. }
  283. .icon-tupianguanli:before {
  284. content: "\e723";
  285. }
  286. .icon-kaoshijihua:before {
  287. content: "\e724";
  288. }
  289. .icon-kaoshipeizhi:before {
  290. content: "\e725";
  291. }
  292. .icon-xuexizhongxinguanli:before {
  293. content: "\e726";
  294. }
  295. .icon-kaoheguanli:before {
  296. content: "\e728";
  297. }
  298. .icon-jiaoshiguanli:before {
  299. content: "\e729";
  300. }
  301. .icon-wangkeguanli:before {
  302. content: "\e72a";
  303. }
  304. .icon-bulujiesuan:before {
  305. content: "\e72b";
  306. }
  307. .icon-biyeguanli:before {
  308. content: "\e72c";
  309. }
  310. .icon-kaohezhibiao:before {
  311. content: "\e72d";
  312. }
  313. .icon-qiyeguanli:before {
  314. content: "\e77e";
  315. }
  316. .icon-chubuguanli:before {
  317. content: "\e77f";
  318. }
  319. .icon-hujiaobaobiao:before {
  320. content: "\e780";
  321. }
  322. .icon-saomiaodianjing:before {
  323. content: "\e781";
  324. }
  325. .icon-jiezhang:before {
  326. content: "\e782";
  327. }
  328. .icon-xiaoshoubaobiao:before {
  329. content: "\e783";
  330. }
  331. .icon-pingzheng:before {
  332. content: "\e784";
  333. }
  334. .icon-hetongyidong:before {
  335. content: "\e785";
  336. }
  337. .icon-xiaoshoupin:before {
  338. content: "\e787";
  339. }
  340. .icon-xueshuguanli:before {
  341. content: "\e788";
  342. }
  343. .icon-yihaopin:before {
  344. content: "\e789";
  345. }
  346. .icon-renwuguanli:before {
  347. content: "\e78a";
  348. }
  349. .icon-dianshang:before {
  350. content: "\e78b";
  351. }
  352. .icon-mingpianbaobiao_1:before {
  353. content: "\e78c";
  354. }
  355. .icon-gudingzichan:before {
  356. content: "\e78d";
  357. }
  358. .icon-dongtaiguanli:before {
  359. content: "\e78e";
  360. }
  361. .icon-jichupeizhi:before {
  362. content: "\e78f";
  363. }
  364. .icon-hujiaotongji:before {
  365. content: "\e790";
  366. }
  367. .icon-xiaoshoubaobiao_1:before {
  368. content: "\e791";
  369. }
  370. .icon-dashuju:before {
  371. content: "\e792";
  372. }
  373. .icon-huodongguanli:before {
  374. content: "\e793";
  375. }
  376. .icon-hujiaoshezhi:before {
  377. content: "\e794";
  378. }
  379. .icon-fenxiaoshichang:before {
  380. content: "\e795";
  381. }
  382. .icon-chengjitongji:before {
  383. content: "\e796";
  384. }
  385. .icon-tuiguangshezhi:before {
  386. content: "\e797";
  387. }
  388. .icon-kechengzhongxin:before {
  389. content: "\e798";
  390. }
  391. .icon-hetongshezhi:before {
  392. content: "\e799";
  393. }
  394. .icon-kechengbaoguanli:before {
  395. content: "\e79a";
  396. }
  397. .icon-yonghuguanli:before {
  398. content: "\e79b";
  399. }
  400. .icon-yonghuhuaxiang:before {
  401. content: "\e79c";
  402. }
  403. .icon-zhanghaoguanli:before {
  404. content: "\e79d";
  405. }
  406. .icon-SEMguanli:before {
  407. content: "\e79e";
  408. }
  409. .icon-yusuan:before {
  410. content: "\e79f";
  411. }
  412. .icon-mingpianbaobiao:before {
  413. content: "\e7a0";
  414. }
  415. .icon-dingdanguanli:before {
  416. content: "\e7a1";
  417. }
  418. .icon-tuiguangguanli:before {
  419. content: "\e7a2";
  420. }
  421. .icon-zhuantiguanli:before {
  422. content: "\e7a3";
  423. }
  424. .icon-xinxiliu:before {
  425. content: "\e7a4";
  426. }
  427. .icon-xiaoshoushezhi:before {
  428. content: "\e7a5";
  429. }
  430. .icon-sucaiguanli:before {
  431. content: "\e7a9";
  432. }
  433. .icon-xueshengdaoru:before {
  434. content: "\e7aa";
  435. }
  436. .icon-shangpinguanli:before {
  437. content: "\e7ab";
  438. }
  439. .icon-paikeguanli:before {
  440. content: "\e7ac";
  441. }
  442. .icon-xinxidaoru:before {
  443. content: "\e7ad";
  444. }
  445. .icon-shoufeipeizhi:before {
  446. content: "\e7ae";
  447. }
  448. .icon-yonghuquanxian:before {
  449. content: "\e7af";
  450. }
  451. .icon-zaijixueshengguanli:before {
  452. content: "\e7b0";
  453. }
  454. .icon-xuehaoguanli:before {
  455. content: "\e7b1";
  456. }
  457. .icon-kechengziyuanguanli:before {
  458. content: "\e7b2";
  459. }
  460. .icon-mianshoujiaoxueanpai:before {
  461. content: "\e7b3";
  462. }
  463. .icon-zhangfang:before {
  464. content: "\e7b4";
  465. }
  466. .icon-kaikeguanli:before {
  467. content: "\e7b5";
  468. }
  469. .icon-biyetongji:before {
  470. content: "\e7b6";
  471. }
  472. .icon-zhaoshengzhunbei:before {
  473. content: "\e7b8";
  474. }
  475. .icon-paikeshezhi:before {
  476. content: "\e7b9";
  477. }
  478. .icon-banjiguanli:before {
  479. content: "\e7ba";
  480. }
  481. .icon-jingpinketang:before {
  482. content: "\e7bb";
  483. }
  484. .icon-yuangongtidian:before {
  485. content: "\e7bc";
  486. }
  487. .icon-kaoshianpai:before {
  488. content: "\e7bd";
  489. }
  490. .icon-wangluojiaoxueanpai:before {
  491. content: "\e7bf";
  492. }
  493. .icon-ruxuechengji:before {
  494. content: "\e7c3";
  495. }
  496. .icon-mianshoujiaoxue:before {
  497. content: "\e7c6";
  498. }
  499. .icon-jiaoshijiaoshiguanli:before {
  500. content: "\e7c7";
  501. }
  502. .icon-luquguanli:before {
  503. content: "\e7c8";
  504. }
  505. .icon-luquchengji:before {
  506. content: "\e7c9";
  507. }
  508. .icon-ziyuan:before {
  509. content: "\e7ca";
  510. }
  511. .icon-kejian:before {
  512. content: "\e7cc";
  513. }
  514. .icon-waibukejian:before {
  515. content: "\e7cd";
  516. }
  517. .icon-rizhiguanli:before {
  518. content: "\e7ce";
  519. }
  520. .icon-mobanguanli:before {
  521. content: "\e7cf";
  522. }
  523. .icon-xuelirenzheng:before {
  524. content: "\e7d1";
  525. }
  526. .icon-yiyichuli:before {
  527. content: "\e7d2";
  528. }
  529. .icon-lunwenshenbao:before {
  530. content: "\e7d3";
  531. }
  532. .icon-lunwenshezhi:before {
  533. content: "\e7d4";
  534. }
  535. .icon-jiaoxuedianshezhi:before {
  536. content: "\e7d5";
  537. }
  538. .icon-buluchenjiang:before {
  539. content: "\e7d6";
  540. }
  541. .icon-mokuaishezhi:before {
  542. content: "\e7d7";
  543. }
  544. .icon-ziliaoguanli:before {
  545. content: "\e7d8";
  546. }
  547. .icon-jituanguanli:before {
  548. content: "\e7d9";
  549. }
  550. .icon-yingyongguanli:before {
  551. content: "\e7da";
  552. }
  553. .icon-guanwangshijuan:before {
  554. content: "\e7db";
  555. }
  556. .icon-wodewangke:before {
  557. content: "\e7dc";
  558. }
  559. .icon-jiaobenguanli:before {
  560. content: "\e7dd";
  561. }
  562. .icon-zhuanyeguanliyuan:before {
  563. content: "\e7de";
  564. }
  565. .icon-xueshengchengji:before {
  566. content: "\e7df";
  567. }
  568. .icon-fuwuguanli:before {
  569. content: "\e7e2";
  570. }
  571. .icon-daijinquan:before {
  572. content: "\e7e3";
  573. }
  574. .icon-hujiaozhongxin:before {
  575. content: "\e7e4";
  576. }
  577. .icon-yinjinshoufei:before {
  578. content: "\e7e5";
  579. }
  580. .icon-yingjiaoqingdan:before {
  581. content: "\e7e6";
  582. }
  583. .icon-duizhangdan:before {
  584. content: "\e7e7";
  585. }
  586. .icon-shangjiguanli:before {
  587. content: "\e7e8";
  588. }
  589. .icon-qiyehuihuacundang:before {
  590. content: "\e7e9";
  591. }
  592. .icon-yonghushezhi:before {
  593. content: "\e7ea";
  594. }
  595. .icon-xiaoxishezhi:before {
  596. content: "\e7ec";
  597. }
  598. .icon-yingxiaoshezhi:before {
  599. content: "\e7ed";
  600. }
  601. .icon-fuwushichang:before {
  602. content: "\e7ee";
  603. }
  604. .icon-sucaiziyuan:before {
  605. content: "\e7ef";
  606. }
  607. .icon-yingxiaowanfa:before {
  608. content: "\e7f0";
  609. }
  610. .icon-tuiguang:before {
  611. content: "\e7f1";
  612. }
  613. .icon-yonghuliebiao:before {
  614. content: "\e7f2";
  615. }
  616. .icon-ziyuanguanli:before {
  617. content: "\e692";
  618. }
  619. .icon-kechengguanli:before {
  620. content: "\e693";
  621. }
  622. .icon-kechengbao:before {
  623. content: "\e694";
  624. }
  625. .icon-tikuguanli:before {
  626. content: "\e695";
  627. }
  628. .icon-wangkeshichang:before {
  629. content: "\e696";
  630. }
  631. .icon-gongdan:before {
  632. content: "\e697";
  633. }
  634. .icon-fangkeguanli:before {
  635. content: "\e698";
  636. }
  637. .icon-xiansuoguanli:before {
  638. content: "\e699";
  639. }
  640. .icon-kehuguanli:before {
  641. content: "\e69a";
  642. }
  643. .icon-jituankehu:before {
  644. content: "\e69b";
  645. }
  646. .icon-genjinjilu:before {
  647. content: "\e69c";
  648. }
  649. .icon-hujiaoguanli:before {
  650. content: "\e69d";
  651. }
  652. .icon-gongzuotai:before {
  653. content: "\e69e";
  654. }
  655. .icon-shujubaobiao:before {
  656. content: "\e69f";
  657. }
  658. .icon-fangkebaobiao:before {
  659. content: "\e6a0";
  660. }
  661. .icon-zhangbuguanli:before {
  662. content: "\e6a1";
  663. }
  664. .icon-zhangbuguanli_zi:before {
  665. content: "\e6a2";
  666. }
  667. .icon-zhangbuguanli_zixitong_A:before {
  668. content: "\e6a3";
  669. }
  670. .icon-hetongguanli:before {
  671. content: "\e6a4";
  672. }
  673. .icon-yunyingzheguanli:before {
  674. content: "\e6a5";
  675. }
  676. .icon-zhaopinguanli:before {
  677. content: "\e6a6";
  678. }
  679. .icon-gongziguanli:before {
  680. content: "\e6a7";
  681. }
  682. .icon-wodeshenpi:before {
  683. content: "\e6a8";
  684. }
  685. .icon-biaozhunmobanshezhi:before {
  686. content: "\e6a9";
  687. }
  688. .icon-jichushezhi:before {
  689. content: "\e6aa";
  690. }
  691. .icon-caiwushezhi:before {
  692. content: "\e6ab";
  693. }
  694. .icon-chanpinshezhi:before {
  695. content: "\e6ac";
  696. }
  697. .icon-shenpishezhi:before {
  698. content: "\e6ad";
  699. }
  700. .icon-mubiaoguanli:before {
  701. content: "\e6ae";
  702. }
  703. .icon-zhandianshezhi:before {
  704. content: "\e6af";
  705. }
  706. .icon-renshishezhi:before {
  707. content: "\e6b0";
  708. }
  709. .icon-CRMshezhi:before {
  710. content: "\e6b1";
  711. }
  712. .icon-mingpianshezhi:before {
  713. content: "\e6b2";
  714. }
  715. .icon-wangxiaoshezhi:before {
  716. content: "\e6b3";
  717. }
  718. .icon-wodedianping:before {
  719. content: "\e6b4";
  720. }
  721. .icon-wodexuesheng:before {
  722. content: "\e6b5";
  723. }
  724. .icon-lianxijilu:before {
  725. content: "\e6b8";
  726. }
  727. .icon-tousutiwen:before {
  728. content: "\e6b9";
  729. }
  730. .icon-peixunjihua:before {
  731. content: "\e6ba";
  732. }
  733. .icon-feiyongchaxun:before {
  734. content: "\e6bb";
  735. }
  736. .icon-xueshengjiaofei:before {
  737. content: "\e6bc";
  738. }
  739. .icon-jizhang:before {
  740. content: "\e6bd";
  741. }
  742. .icon-chaxun:before {
  743. content: "\e6be";
  744. }
  745. .icon-chazhang:before {
  746. content: "\e6bf";
  747. }
  748. .icon-baobiao:before {
  749. content: "\e6c0";
  750. }
  751. .icon-shezhi:before {
  752. content: "\e6c2";
  753. }
  754. .icon-daqiajilu:before {
  755. content: "\e6ce";
  756. }
  757. .icon-wangluobanji:before {
  758. content: "\e6d3";
  759. }
  760. .icon-wangxiaoshezhi1:before {
  761. content: "\e6d6";
  762. }
  763. .icon-houtaishezhi:before {
  764. content: "\e6d8";
  765. }
  766. .icon-zhaoshengshezhi:before {
  767. content: "\e6db";
  768. }
  769. .icon-xiaoxizhongxin:before {
  770. content: "\e6df";
  771. }
  772. .icon-zhaoshengbaobiao:before {
  773. content: "\e6e1";
  774. }
  775. .icon-caidanguanli:before {
  776. content: "\e6e2";
  777. }
  778. .icon-jituanshezhi:before {
  779. content: "\e6e3";
  780. }
  781. .icon-shichangguanli:before {
  782. content: "\e6e4";
  783. }
  784. .icon-chuangjianxitong:before {
  785. content: "\e6e5";
  786. }
  787. .icon-gongdanguanli:before {
  788. content: "\e6e6";
  789. }
  790. .icon-duanxin:before {
  791. content: "\e6e7";
  792. }
  793. .icon-bangzhuzhongxin:before {
  794. content: "\e6e8";
  795. }