cy-element-ui 1.0.46 → 1.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (303) hide show
  1. package/README.md +1 -1
  2. package/lib/alert.js +4 -4
  3. package/lib/aside.js +77 -77
  4. package/lib/autocomplete.js +159 -3940
  5. package/lib/avatar.js +108 -108
  6. package/lib/backtop.js +110 -110
  7. package/lib/badge.js +108 -108
  8. package/lib/breadcrumb-item.js +4 -4
  9. package/lib/breadcrumb.js +4 -4
  10. package/lib/button-group.js +4 -4
  11. package/lib/button.js +4 -4
  12. package/lib/calendar.js +46 -1545
  13. package/lib/card.js +96 -96
  14. package/lib/carousel-item.js +108 -452
  15. package/lib/carousel.js +116 -185
  16. package/lib/cascader-panel.js +187 -2270
  17. package/lib/cascader.js +275 -6452
  18. package/lib/checkbox-button.js +11 -43
  19. package/lib/checkbox-group.js +15 -47
  20. package/lib/checkbox.js +15 -47
  21. package/lib/col.js +2 -2
  22. package/lib/collapse-item.js +110 -815
  23. package/lib/collapse.js +108 -108
  24. package/lib/color-picker.js +153 -3953
  25. package/lib/container.js +88 -88
  26. package/lib/date-picker.js +419 -5230
  27. package/lib/descriptions-item.js +2 -2
  28. package/lib/descriptions.js +8 -63
  29. package/lib/dialog.js +22 -1200
  30. package/lib/divider.js +104 -104
  31. package/lib/drawer.js +105 -875
  32. package/lib/dropdown-item.js +11 -43
  33. package/lib/dropdown-menu.js +75 -2277
  34. package/lib/dropdown.js +136 -1072
  35. package/lib/element-ui.common.js +29785 -42723
  36. package/lib/empty.js +7 -603
  37. package/lib/fileUpload.js +109 -2477
  38. package/lib/footer.js +77 -77
  39. package/lib/form-item.js +28 -418
  40. package/lib/form.js +15 -29
  41. package/lib/header.js +77 -77
  42. package/lib/icon.js +4 -4
  43. package/lib/image.js +49 -1376
  44. package/lib/index.js +1 -1
  45. package/lib/infinite-scroll.js +21 -311
  46. package/lib/input-number.js +33 -1422
  47. package/lib/input.js +37 -507
  48. package/lib/link.js +4 -4
  49. package/lib/loading.js +67 -804
  50. package/lib/main.js +64 -64
  51. package/lib/menu-item-group.js +4 -4
  52. package/lib/menu-item.js +61 -2945
  53. package/lib/menu.js +54 -745
  54. package/lib/message-box.js +80 -2537
  55. package/lib/message.js +24 -1102
  56. package/lib/notification.js +25 -1102
  57. package/lib/option-group.js +11 -43
  58. package/lib/option.js +18 -394
  59. package/lib/page-header.js +87 -683
  60. package/lib/pagination.js +139 -6078
  61. package/lib/popconfirm.js +219 -3508
  62. package/lib/popover.js +99 -2624
  63. package/lib/progress.js +4 -4
  64. package/lib/radio-button.js +11 -43
  65. package/lib/radio-group.js +11 -43
  66. package/lib/radio.js +15 -47
  67. package/lib/rate.js +113 -756
  68. package/lib/result.js +4 -4
  69. package/lib/row.js +2 -2
  70. package/lib/scrollbar.js +50 -735
  71. package/lib/select.js +209 -4352
  72. package/lib/selectDisplayInput.js +108 -108
  73. package/lib/skeleton-item.js +2 -2
  74. package/lib/skeleton.js +108 -108
  75. package/lib/slider.js +120 -4266
  76. package/lib/spinner.js +4 -4
  77. package/lib/statistic.js +117 -9605
  78. package/lib/step.js +108 -108
  79. package/lib/steps.js +99 -514
  80. package/lib/subTitle.js +91 -91
  81. package/lib/submenu.js +121 -2442
  82. package/lib/switch.js +21 -476
  83. package/lib/tab-pane.js +4 -4
  84. package/lib/tabDialog.js +37 -1563
  85. package/lib/table-column.js +32 -880
  86. package/lib/table.js +424 -4467
  87. package/lib/tabs.js +12 -425
  88. package/lib/tag.js +4 -4
  89. package/lib/theme-chalk/README.md +33 -0
  90. package/lib/theme-chalk/base.css +1 -1
  91. package/lib/theme-chalk/gulpfile.js +27 -0
  92. package/lib/theme-chalk/index.css +1 -1
  93. package/lib/theme-chalk/package.json +35 -0
  94. package/lib/theme-chalk/src/alert.scss +147 -0
  95. package/lib/theme-chalk/src/aside.scss +7 -0
  96. package/lib/theme-chalk/src/autocomplete.scss +80 -0
  97. package/lib/theme-chalk/src/avatar.scss +51 -0
  98. package/lib/theme-chalk/src/backtop.scss +22 -0
  99. package/lib/theme-chalk/src/badge.scss +57 -0
  100. package/lib/theme-chalk/src/base.scss +2 -0
  101. package/lib/theme-chalk/src/breadcrumb.scss +55 -0
  102. package/lib/theme-chalk/src/button.scss +262 -0
  103. package/lib/theme-chalk/src/calendar.scss +79 -0
  104. package/lib/theme-chalk/src/card.scss +32 -0
  105. package/lib/theme-chalk/src/carousel-item.scss +50 -0
  106. package/lib/theme-chalk/src/carousel.scss +161 -0
  107. package/lib/theme-chalk/src/cascader-panel.scss +120 -0
  108. package/lib/theme-chalk/src/cascader.scss +182 -0
  109. package/lib/theme-chalk/src/checkbox.scss +359 -0
  110. package/lib/theme-chalk/src/col.scss +156 -0
  111. package/lib/theme-chalk/src/collapse.scss +63 -0
  112. package/lib/theme-chalk/src/color-picker.scss +384 -0
  113. package/lib/theme-chalk/src/common/popup.scss +42 -0
  114. package/lib/theme-chalk/src/common/transition.scss +99 -0
  115. package/lib/theme-chalk/src/common/var.scss +1028 -0
  116. package/lib/theme-chalk/src/container.scss +14 -0
  117. package/lib/theme-chalk/src/date-picker/date-picker.scss +97 -0
  118. package/lib/theme-chalk/src/date-picker/date-range-picker.scss +101 -0
  119. package/lib/theme-chalk/src/date-picker/date-table.scss +151 -0
  120. package/lib/theme-chalk/src/date-picker/month-table.scss +82 -0
  121. package/lib/theme-chalk/src/date-picker/picker-panel.scss +117 -0
  122. package/lib/theme-chalk/src/date-picker/picker.scss +197 -0
  123. package/lib/theme-chalk/src/date-picker/time-picker.scss +85 -0
  124. package/lib/theme-chalk/src/date-picker/time-range-picker.scss +31 -0
  125. package/lib/theme-chalk/src/date-picker/time-spinner.scss +110 -0
  126. package/lib/theme-chalk/src/date-picker/year-table.scss +51 -0
  127. package/lib/theme-chalk/src/date-picker.scss +12 -0
  128. package/lib/theme-chalk/src/descriptions-item.scss +42 -0
  129. package/lib/theme-chalk/src/descriptions.scss +111 -0
  130. package/lib/theme-chalk/src/dialog.scss +123 -0
  131. package/lib/theme-chalk/src/display.scss +12 -0
  132. package/lib/theme-chalk/src/divider.scss +47 -0
  133. package/lib/theme-chalk/src/drawer.scss +219 -0
  134. package/lib/theme-chalk/src/dropdown.scss +182 -0
  135. package/lib/theme-chalk/src/empty.scss +45 -0
  136. package/lib/theme-chalk/src/footer.scss +8 -0
  137. package/lib/theme-chalk/src/form.scss +167 -0
  138. package/lib/theme-chalk/src/header.scss +8 -0
  139. package/lib/theme-chalk/src/icon.scss +1167 -0
  140. package/lib/theme-chalk/src/image.scss +179 -0
  141. package/lib/theme-chalk/src/index.scss +90 -0
  142. package/lib/theme-chalk/src/input-number.scss +180 -0
  143. package/lib/theme-chalk/src/input.scss +360 -0
  144. package/lib/theme-chalk/src/link.scss +81 -0
  145. package/lib/theme-chalk/src/loading.scss +96 -0
  146. package/lib/theme-chalk/src/main.scss +12 -0
  147. package/lib/theme-chalk/src/menu.scss +289 -0
  148. package/lib/theme-chalk/src/message-box.scss +226 -0
  149. package/lib/theme-chalk/src/message.scss +120 -0
  150. package/lib/theme-chalk/src/mixins/_button.scss +81 -0
  151. package/lib/theme-chalk/src/mixins/config.scss +4 -0
  152. package/lib/theme-chalk/src/mixins/function.scss +44 -0
  153. package/lib/theme-chalk/src/mixins/mixins.scss +190 -0
  154. package/lib/theme-chalk/src/mixins/utils.scss +39 -0
  155. package/lib/theme-chalk/src/notification.scss +99 -0
  156. package/lib/theme-chalk/src/option-group.scss +42 -0
  157. package/lib/theme-chalk/src/option.scss +36 -0
  158. package/lib/theme-chalk/src/page-header.scss +41 -0
  159. package/lib/theme-chalk/src/pagination.scss +295 -0
  160. package/lib/theme-chalk/src/popconfirm.scss +16 -0
  161. package/lib/theme-chalk/src/popover.scss +40 -0
  162. package/lib/theme-chalk/src/popper.scss +101 -0
  163. package/lib/theme-chalk/src/progress.scss +141 -0
  164. package/lib/theme-chalk/src/radio-button.scss +113 -0
  165. package/lib/theme-chalk/src/radio-group.scss +9 -0
  166. package/lib/theme-chalk/src/radio.scss +199 -0
  167. package/lib/theme-chalk/src/rate.scss +49 -0
  168. package/lib/theme-chalk/src/reset.scss +79 -0
  169. package/lib/theme-chalk/src/result.scss +61 -0
  170. package/lib/theme-chalk/src/row.scss +43 -0
  171. package/lib/theme-chalk/src/scrollbar.scss +72 -0
  172. package/lib/theme-chalk/src/select-dropdown.scss +62 -0
  173. package/lib/theme-chalk/src/select.scss +152 -0
  174. package/lib/theme-chalk/src/skeleton-item.scss +84 -0
  175. package/lib/theme-chalk/src/skeleton.scss +40 -0
  176. package/lib/theme-chalk/src/slider.scss +250 -0
  177. package/lib/theme-chalk/src/spinner.scss +44 -0
  178. package/lib/theme-chalk/src/statistic.scss +38 -0
  179. package/lib/theme-chalk/src/step.scss +317 -0
  180. package/lib/theme-chalk/src/steps.scss +20 -0
  181. package/lib/theme-chalk/src/switch.scss +116 -0
  182. package/lib/theme-chalk/src/table-column.scss +97 -0
  183. package/lib/theme-chalk/src/table.scss +564 -0
  184. package/lib/theme-chalk/src/tabs.scss +602 -0
  185. package/lib/theme-chalk/src/tag.scss +163 -0
  186. package/lib/theme-chalk/src/time-picker.scss +8 -0
  187. package/lib/theme-chalk/src/time-select.scss +37 -0
  188. package/lib/theme-chalk/src/timeline-item.scss +86 -0
  189. package/lib/theme-chalk/src/timeline.scss +14 -0
  190. package/lib/theme-chalk/src/tooltip.scss +141 -0
  191. package/lib/theme-chalk/src/transfer.scss +227 -0
  192. package/lib/theme-chalk/src/tree.scss +123 -0
  193. package/lib/theme-chalk/src/upload.scss +603 -0
  194. package/lib/time-picker.js +285 -5013
  195. package/lib/time-select.js +181 -4949
  196. package/lib/timeline-item.js +108 -108
  197. package/lib/timeline.js +82 -82
  198. package/lib/tooltip.js +41 -2566
  199. package/lib/transfer.js +142 -2136
  200. package/lib/tree.js +55 -1372
  201. package/lib/treeSelect.js +106 -3421
  202. package/lib/upload.js +28 -1047
  203. package/package.json +3 -3
  204. package/packages/theme-chalk/gulpfile.js +1 -14
  205. package/packages/theme-chalk/src/common/var.scss +16 -16
  206. package/packages/theme-cy/gulpfile.js +1 -14
  207. package/src/index.js +1 -1
  208. package/lib/theme-chalk/alert.css +0 -1
  209. package/lib/theme-chalk/aside.css +0 -1
  210. package/lib/theme-chalk/autocomplete.css +0 -1
  211. package/lib/theme-chalk/avatar.css +0 -1
  212. package/lib/theme-chalk/backtop.css +0 -1
  213. package/lib/theme-chalk/badge.css +0 -1
  214. package/lib/theme-chalk/breadcrumb.css +0 -1
  215. package/lib/theme-chalk/button.css +0 -1
  216. package/lib/theme-chalk/calendar.css +0 -1
  217. package/lib/theme-chalk/card.css +0 -1
  218. package/lib/theme-chalk/carousel-item.css +0 -1
  219. package/lib/theme-chalk/carousel.css +0 -1
  220. package/lib/theme-chalk/cascader-panel.css +0 -1
  221. package/lib/theme-chalk/cascader.css +0 -1
  222. package/lib/theme-chalk/checkbox.css +0 -1
  223. package/lib/theme-chalk/col.css +0 -1
  224. package/lib/theme-chalk/collapse.css +0 -1
  225. package/lib/theme-chalk/color-picker.css +0 -1
  226. package/lib/theme-chalk/container.css +0 -1
  227. package/lib/theme-chalk/date-picker.css +0 -1
  228. package/lib/theme-chalk/descriptions-item.css +0 -1
  229. package/lib/theme-chalk/descriptions.css +0 -1
  230. package/lib/theme-chalk/dialog.css +0 -1
  231. package/lib/theme-chalk/display.css +0 -1
  232. package/lib/theme-chalk/divider.css +0 -1
  233. package/lib/theme-chalk/drawer.css +0 -1
  234. package/lib/theme-chalk/dropdown.css +0 -1
  235. package/lib/theme-chalk/empty.css +0 -1
  236. package/lib/theme-chalk/footer.css +0 -1
  237. package/lib/theme-chalk/form.css +0 -1
  238. package/lib/theme-chalk/header.css +0 -1
  239. package/lib/theme-chalk/icon.css +0 -1
  240. package/lib/theme-chalk/image.css +0 -1
  241. package/lib/theme-chalk/input-number.css +0 -1
  242. package/lib/theme-chalk/input.css +0 -1
  243. package/lib/theme-chalk/link.css +0 -1
  244. package/lib/theme-chalk/loading.css +0 -1
  245. package/lib/theme-chalk/main.css +0 -1
  246. package/lib/theme-chalk/menu.css +0 -1
  247. package/lib/theme-chalk/message-box.css +0 -1
  248. package/lib/theme-chalk/message.css +0 -1
  249. package/lib/theme-chalk/notification.css +0 -1
  250. package/lib/theme-chalk/option-group.css +0 -1
  251. package/lib/theme-chalk/option.css +0 -1
  252. package/lib/theme-chalk/page-header.css +0 -1
  253. package/lib/theme-chalk/pagination.css +0 -1
  254. package/lib/theme-chalk/popconfirm.css +0 -1
  255. package/lib/theme-chalk/popover.css +0 -1
  256. package/lib/theme-chalk/popper.css +0 -1
  257. package/lib/theme-chalk/progress.css +0 -1
  258. package/lib/theme-chalk/radio-button.css +0 -1
  259. package/lib/theme-chalk/radio-group.css +0 -1
  260. package/lib/theme-chalk/radio.css +0 -1
  261. package/lib/theme-chalk/rate.css +0 -1
  262. package/lib/theme-chalk/reset.css +0 -1
  263. package/lib/theme-chalk/result.css +0 -1
  264. package/lib/theme-chalk/row.css +0 -1
  265. package/lib/theme-chalk/scrollbar.css +0 -1
  266. package/lib/theme-chalk/select-dropdown.css +0 -1
  267. package/lib/theme-chalk/select.css +0 -1
  268. package/lib/theme-chalk/skeleton-item.css +0 -1
  269. package/lib/theme-chalk/skeleton.css +0 -1
  270. package/lib/theme-chalk/slider.css +0 -1
  271. package/lib/theme-chalk/spinner.css +0 -1
  272. package/lib/theme-chalk/statistic.css +0 -1
  273. package/lib/theme-chalk/step.css +0 -1
  274. package/lib/theme-chalk/steps.css +0 -1
  275. package/lib/theme-chalk/switch.css +0 -1
  276. package/lib/theme-chalk/table-column.css +0 -1
  277. package/lib/theme-chalk/table.css +0 -1
  278. package/lib/theme-chalk/tabs.css +0 -1
  279. package/lib/theme-chalk/tag.css +0 -1
  280. package/lib/theme-chalk/time-picker.css +0 -1
  281. package/lib/theme-chalk/time-select.css +0 -1
  282. package/lib/theme-chalk/timeline-item.css +0 -1
  283. package/lib/theme-chalk/timeline.css +0 -1
  284. package/lib/theme-chalk/tooltip.css +0 -1
  285. package/lib/theme-chalk/transfer.css +0 -1
  286. package/lib/theme-chalk/tree.css +0 -1
  287. package/lib/theme-chalk/upload.css +0 -1
  288. /package/lib/theme-chalk/{breadcrumb-item.css → src/breadcrumb-item.scss} +0 -0
  289. /package/lib/theme-chalk/{button-group.css → src/button-group.scss} +0 -0
  290. /package/lib/theme-chalk/{checkbox-button.css → src/checkbox-button.scss} +0 -0
  291. /package/lib/theme-chalk/{checkbox-group.css → src/checkbox-group.scss} +0 -0
  292. /package/lib/theme-chalk/{collapse-item.css → src/collapse-item.scss} +0 -0
  293. /package/lib/theme-chalk/{dropdown-item.css → src/dropdown-item.scss} +0 -0
  294. /package/lib/theme-chalk/{dropdown-menu.css → src/dropdown-menu.scss} +0 -0
  295. /package/lib/theme-chalk/{fonts → src/fonts}/element-icons.ttf +0 -0
  296. /package/lib/theme-chalk/{fonts → src/fonts}/element-icons.woff +0 -0
  297. /package/lib/theme-chalk/{form-item.css → src/form-item.scss} +0 -0
  298. /package/lib/theme-chalk/{infinite-scroll.css → src/infinite-scroll.scss} +0 -0
  299. /package/lib/theme-chalk/{infiniteScroll.css → src/infiniteScroll.scss} +0 -0
  300. /package/lib/theme-chalk/{menu-item-group.css → src/menu-item-group.scss} +0 -0
  301. /package/lib/theme-chalk/{menu-item.css → src/menu-item.scss} +0 -0
  302. /package/lib/theme-chalk/{submenu.css → src/submenu.scss} +0 -0
  303. /package/lib/theme-chalk/{tab-pane.css → src/tab-pane.scss} +0 -0
@@ -0,0 +1,1167 @@
1
+ @import "common/var";
2
+
3
+ @font-face {
4
+ font-family: 'element-icons';
5
+ src: url('#{$--font-path}/element-icons.woff') format('woff'), /* chrome, firefox */
6
+ url('#{$--font-path}/element-icons.ttf') format('truetype'); /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
7
+ font-weight: normal;
8
+ font-display: $--font-display;
9
+ font-style: normal;
10
+ }
11
+
12
+ [class^="el-icon-"], [class*=" el-icon-"] {
13
+ /* use !important to prevent issues with browser extensions that change fonts */
14
+ font-family: 'element-icons' !important;
15
+ speak: none;
16
+ font-style: normal;
17
+ font-weight: normal;
18
+ font-variant: normal;
19
+ text-transform: none;
20
+ line-height: 1;
21
+ vertical-align: baseline;
22
+ display: inline-block;
23
+
24
+ /* Better Font Rendering =========== */
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+ }
28
+
29
+ .el-icon-ice-cream-round:before {
30
+ content: "\e6a0";
31
+ }
32
+
33
+ .el-icon-ice-cream-square:before {
34
+ content: "\e6a3";
35
+ }
36
+
37
+ .el-icon-lollipop:before {
38
+ content: "\e6a4";
39
+ }
40
+
41
+ .el-icon-potato-strips:before {
42
+ content: "\e6a5";
43
+ }
44
+
45
+ .el-icon-milk-tea:before {
46
+ content: "\e6a6";
47
+ }
48
+
49
+ .el-icon-ice-drink:before {
50
+ content: "\e6a7";
51
+ }
52
+
53
+ .el-icon-ice-tea:before {
54
+ content: "\e6a9";
55
+ }
56
+
57
+ .el-icon-coffee:before {
58
+ content: "\e6aa";
59
+ }
60
+
61
+ .el-icon-orange:before {
62
+ content: "\e6ab";
63
+ }
64
+
65
+ .el-icon-pear:before {
66
+ content: "\e6ac";
67
+ }
68
+
69
+ .el-icon-apple:before {
70
+ content: "\e6ad";
71
+ }
72
+
73
+ .el-icon-cherry:before {
74
+ content: "\e6ae";
75
+ }
76
+
77
+ .el-icon-watermelon:before {
78
+ content: "\e6af";
79
+ }
80
+
81
+ .el-icon-grape:before {
82
+ content: "\e6b0";
83
+ }
84
+
85
+ .el-icon-refrigerator:before {
86
+ content: "\e6b1";
87
+ }
88
+
89
+ .el-icon-goblet-square-full:before {
90
+ content: "\e6b2";
91
+ }
92
+
93
+ .el-icon-goblet-square:before {
94
+ content: "\e6b3";
95
+ }
96
+
97
+ .el-icon-goblet-full:before {
98
+ content: "\e6b4";
99
+ }
100
+
101
+ .el-icon-goblet:before {
102
+ content: "\e6b5";
103
+ }
104
+
105
+ .el-icon-cold-drink:before {
106
+ content: "\e6b6";
107
+ }
108
+
109
+ .el-icon-coffee-cup:before {
110
+ content: "\e6b8";
111
+ }
112
+
113
+ .el-icon-water-cup:before {
114
+ content: "\e6b9";
115
+ }
116
+
117
+ .el-icon-hot-water:before {
118
+ content: "\e6ba";
119
+ }
120
+
121
+ .el-icon-ice-cream:before {
122
+ content: "\e6bb";
123
+ }
124
+
125
+ .el-icon-dessert:before {
126
+ content: "\e6bc";
127
+ }
128
+
129
+ .el-icon-sugar:before {
130
+ content: "\e6bd";
131
+ }
132
+
133
+ .el-icon-tableware:before {
134
+ content: "\e6be";
135
+ }
136
+
137
+ .el-icon-burger:before {
138
+ content: "\e6bf";
139
+ }
140
+
141
+ .el-icon-knife-fork:before {
142
+ content: "\e6c1";
143
+ }
144
+
145
+ .el-icon-fork-spoon:before {
146
+ content: "\e6c2";
147
+ }
148
+
149
+ .el-icon-chicken:before {
150
+ content: "\e6c3";
151
+ }
152
+
153
+ .el-icon-food:before {
154
+ content: "\e6c4";
155
+ }
156
+
157
+ .el-icon-dish-1:before {
158
+ content: "\e6c5";
159
+ }
160
+
161
+ .el-icon-dish:before {
162
+ content: "\e6c6";
163
+ }
164
+
165
+ .el-icon-moon-night:before {
166
+ content: "\e6ee";
167
+ }
168
+
169
+ .el-icon-moon:before {
170
+ content: "\e6f0";
171
+ }
172
+
173
+ .el-icon-cloudy-and-sunny:before {
174
+ content: "\e6f1";
175
+ }
176
+
177
+ .el-icon-partly-cloudy:before {
178
+ content: "\e6f2";
179
+ }
180
+
181
+ .el-icon-cloudy:before {
182
+ content: "\e6f3";
183
+ }
184
+
185
+ .el-icon-sunny:before {
186
+ content: "\e6f6";
187
+ }
188
+
189
+ .el-icon-sunset:before {
190
+ content: "\e6f7";
191
+ }
192
+
193
+ .el-icon-sunrise-1:before {
194
+ content: "\e6f8";
195
+ }
196
+
197
+ .el-icon-sunrise:before {
198
+ content: "\e6f9";
199
+ }
200
+
201
+ .el-icon-heavy-rain:before {
202
+ content: "\e6fa";
203
+ }
204
+
205
+ .el-icon-lightning:before {
206
+ content: "\e6fb";
207
+ }
208
+
209
+ .el-icon-light-rain:before {
210
+ content: "\e6fc";
211
+ }
212
+
213
+ .el-icon-wind-power:before {
214
+ content: "\e6fd";
215
+ }
216
+
217
+ .el-icon-baseball:before {
218
+ content: "\e712";
219
+ }
220
+
221
+ .el-icon-soccer:before {
222
+ content: "\e713";
223
+ }
224
+
225
+ .el-icon-football:before {
226
+ content: "\e715";
227
+ }
228
+
229
+ .el-icon-basketball:before {
230
+ content: "\e716";
231
+ }
232
+
233
+ .el-icon-ship:before {
234
+ content: "\e73f";
235
+ }
236
+
237
+ .el-icon-truck:before {
238
+ content: "\e740";
239
+ }
240
+
241
+ .el-icon-bicycle:before {
242
+ content: "\e741";
243
+ }
244
+
245
+ .el-icon-mobile-phone:before {
246
+ content: "\e6d3";
247
+ }
248
+
249
+ .el-icon-service:before {
250
+ content: "\e6d4";
251
+ }
252
+
253
+ .el-icon-key:before {
254
+ content: "\e6e2";
255
+ }
256
+
257
+ .el-icon-unlock:before {
258
+ content: "\e6e4";
259
+ }
260
+
261
+ .el-icon-lock:before {
262
+ content: "\e6e5";
263
+ }
264
+
265
+ .el-icon-watch:before {
266
+ content: "\e6fe";
267
+ }
268
+
269
+ .el-icon-watch-1:before {
270
+ content: "\e6ff";
271
+ }
272
+
273
+ .el-icon-timer:before {
274
+ content: "\e702";
275
+ }
276
+
277
+ .el-icon-alarm-clock:before {
278
+ content: "\e703";
279
+ }
280
+
281
+ .el-icon-map-location:before {
282
+ content: "\e704";
283
+ }
284
+
285
+ .el-icon-delete-location:before {
286
+ content: "\e705";
287
+ }
288
+
289
+ .el-icon-add-location:before {
290
+ content: "\e706";
291
+ }
292
+
293
+ .el-icon-location-information:before {
294
+ content: "\e707";
295
+ }
296
+
297
+ .el-icon-location-outline:before {
298
+ content: "\e708";
299
+ }
300
+
301
+ .el-icon-location:before {
302
+ content: "\e79e";
303
+ }
304
+
305
+ .el-icon-place:before {
306
+ content: "\e709";
307
+ }
308
+
309
+ .el-icon-discover:before {
310
+ content: "\e70a";
311
+ }
312
+
313
+ .el-icon-first-aid-kit:before {
314
+ content: "\e70b";
315
+ }
316
+
317
+ .el-icon-trophy-1:before {
318
+ content: "\e70c";
319
+ }
320
+
321
+ .el-icon-trophy:before {
322
+ content: "\e70d";
323
+ }
324
+
325
+ .el-icon-medal:before {
326
+ content: "\e70e";
327
+ }
328
+
329
+ .el-icon-medal-1:before {
330
+ content: "\e70f";
331
+ }
332
+
333
+ .el-icon-stopwatch:before {
334
+ content: "\e710";
335
+ }
336
+
337
+ .el-icon-mic:before {
338
+ content: "\e711";
339
+ }
340
+
341
+ .el-icon-copy-document:before {
342
+ content: "\e718";
343
+ }
344
+
345
+ .el-icon-full-screen:before {
346
+ content: "\e719";
347
+ }
348
+
349
+ .el-icon-switch-button:before {
350
+ content: "\e71b";
351
+ }
352
+
353
+ .el-icon-aim:before {
354
+ content: "\e71c";
355
+ }
356
+
357
+ .el-icon-crop:before {
358
+ content: "\e71d";
359
+ }
360
+
361
+ .el-icon-odometer:before {
362
+ content: "\e71e";
363
+ }
364
+
365
+ .el-icon-time:before {
366
+ content: "\e71f";
367
+ }
368
+
369
+ .el-icon-bangzhu:before {
370
+ content: "\e724";
371
+ }
372
+
373
+ .el-icon-close-notification:before {
374
+ content: "\e726";
375
+ }
376
+
377
+ .el-icon-microphone:before {
378
+ content: "\e727";
379
+ }
380
+
381
+ .el-icon-turn-off-microphone:before {
382
+ content: "\e728";
383
+ }
384
+
385
+ .el-icon-position:before {
386
+ content: "\e729";
387
+ }
388
+
389
+ .el-icon-postcard:before {
390
+ content: "\e72a";
391
+ }
392
+
393
+ .el-icon-message:before {
394
+ content: "\e72b";
395
+ }
396
+
397
+ .el-icon-chat-line-square:before {
398
+ content: "\e72d";
399
+ }
400
+
401
+ .el-icon-chat-dot-square:before {
402
+ content: "\e72e";
403
+ }
404
+
405
+ .el-icon-chat-dot-round:before {
406
+ content: "\e72f";
407
+ }
408
+
409
+ .el-icon-chat-square:before {
410
+ content: "\e730";
411
+ }
412
+
413
+ .el-icon-chat-line-round:before {
414
+ content: "\e731";
415
+ }
416
+
417
+ .el-icon-chat-round:before {
418
+ content: "\e732";
419
+ }
420
+
421
+ .el-icon-set-up:before {
422
+ content: "\e733";
423
+ }
424
+
425
+ .el-icon-turn-off:before {
426
+ content: "\e734";
427
+ }
428
+
429
+ .el-icon-open:before {
430
+ content: "\e735";
431
+ }
432
+
433
+ .el-icon-connection:before {
434
+ content: "\e736";
435
+ }
436
+
437
+ .el-icon-link:before {
438
+ content: "\e737";
439
+ }
440
+
441
+ .el-icon-cpu:before {
442
+ content: "\e738";
443
+ }
444
+
445
+ .el-icon-thumb:before {
446
+ content: "\e739";
447
+ }
448
+
449
+ .el-icon-female:before {
450
+ content: "\e73a";
451
+ }
452
+
453
+ .el-icon-male:before {
454
+ content: "\e73b";
455
+ }
456
+
457
+ .el-icon-guide:before {
458
+ content: "\e73c";
459
+ }
460
+
461
+ .el-icon-news:before {
462
+ content: "\e73e";
463
+ }
464
+
465
+ .el-icon-price-tag:before {
466
+ content: "\e744";
467
+ }
468
+
469
+ .el-icon-discount:before {
470
+ content: "\e745";
471
+ }
472
+
473
+ .el-icon-wallet:before {
474
+ content: "\e747";
475
+ }
476
+
477
+ .el-icon-coin:before {
478
+ content: "\e748";
479
+ }
480
+
481
+ .el-icon-money:before {
482
+ content: "\e749";
483
+ }
484
+
485
+ .el-icon-bank-card:before {
486
+ content: "\e74a";
487
+ }
488
+
489
+ .el-icon-box:before {
490
+ content: "\e74b";
491
+ }
492
+
493
+ .el-icon-present:before {
494
+ content: "\e74c";
495
+ }
496
+
497
+ .el-icon-sell:before {
498
+ content: "\e6d5";
499
+ }
500
+
501
+ .el-icon-sold-out:before {
502
+ content: "\e6d6";
503
+ }
504
+
505
+ .el-icon-shopping-bag-2:before {
506
+ content: "\e74d";
507
+ }
508
+
509
+ .el-icon-shopping-bag-1:before {
510
+ content: "\e74e";
511
+ }
512
+
513
+ .el-icon-shopping-cart-2:before {
514
+ content: "\e74f";
515
+ }
516
+
517
+ .el-icon-shopping-cart-1:before {
518
+ content: "\e750";
519
+ }
520
+
521
+ .el-icon-shopping-cart-full:before {
522
+ content: "\e751";
523
+ }
524
+
525
+ .el-icon-smoking:before {
526
+ content: "\e752";
527
+ }
528
+
529
+ .el-icon-no-smoking:before {
530
+ content: "\e753";
531
+ }
532
+
533
+ .el-icon-house:before {
534
+ content: "\e754";
535
+ }
536
+
537
+ .el-icon-table-lamp:before {
538
+ content: "\e755";
539
+ }
540
+
541
+ .el-icon-school:before {
542
+ content: "\e756";
543
+ }
544
+
545
+ .el-icon-office-building:before {
546
+ content: "\e757";
547
+ }
548
+
549
+ .el-icon-toilet-paper:before {
550
+ content: "\e758";
551
+ }
552
+
553
+ .el-icon-notebook-2:before {
554
+ content: "\e759";
555
+ }
556
+
557
+ .el-icon-notebook-1:before {
558
+ content: "\e75a";
559
+ }
560
+
561
+ .el-icon-files:before {
562
+ content: "\e75b";
563
+ }
564
+
565
+ .el-icon-collection:before {
566
+ content: "\e75c";
567
+ }
568
+
569
+ .el-icon-receiving:before {
570
+ content: "\e75d";
571
+ }
572
+
573
+ .el-icon-suitcase-1:before {
574
+ content: "\e760";
575
+ }
576
+
577
+ .el-icon-suitcase:before {
578
+ content: "\e761";
579
+ }
580
+
581
+ .el-icon-film:before {
582
+ content: "\e763";
583
+ }
584
+
585
+ .el-icon-collection-tag:before {
586
+ content: "\e765";
587
+ }
588
+
589
+ .el-icon-data-analysis:before {
590
+ content: "\e766";
591
+ }
592
+
593
+ .el-icon-pie-chart:before {
594
+ content: "\e767";
595
+ }
596
+
597
+ .el-icon-data-board:before {
598
+ content: "\e768";
599
+ }
600
+
601
+ .el-icon-data-line:before {
602
+ content: "\e76d";
603
+ }
604
+
605
+ .el-icon-reading:before {
606
+ content: "\e769";
607
+ }
608
+
609
+ .el-icon-magic-stick:before {
610
+ content: "\e76a";
611
+ }
612
+
613
+ .el-icon-coordinate:before {
614
+ content: "\e76b";
615
+ }
616
+
617
+ .el-icon-mouse:before {
618
+ content: "\e76c";
619
+ }
620
+
621
+ .el-icon-brush:before {
622
+ content: "\e76e";
623
+ }
624
+
625
+ .el-icon-headset:before {
626
+ content: "\e76f";
627
+ }
628
+
629
+ .el-icon-umbrella:before {
630
+ content: "\e770";
631
+ }
632
+
633
+ .el-icon-scissors:before {
634
+ content: "\e771";
635
+ }
636
+
637
+ .el-icon-mobile:before {
638
+ content: "\e773";
639
+ }
640
+
641
+ .el-icon-attract:before {
642
+ content: "\e774";
643
+ }
644
+
645
+ .el-icon-monitor:before {
646
+ content: "\e775";
647
+ }
648
+
649
+ .el-icon-search:before {
650
+ content: "\e778";
651
+ }
652
+
653
+ .el-icon-takeaway-box:before {
654
+ content: "\e77a";
655
+ }
656
+
657
+ .el-icon-paperclip:before {
658
+ content: "\e77d";
659
+ }
660
+
661
+ .el-icon-printer:before {
662
+ content: "\e77e";
663
+ }
664
+
665
+ .el-icon-document-add:before {
666
+ content: "\e782";
667
+ }
668
+
669
+ .el-icon-document:before {
670
+ content: "\e785";
671
+ }
672
+
673
+ .el-icon-document-checked:before {
674
+ content: "\e786";
675
+ }
676
+
677
+ .el-icon-document-copy:before {
678
+ content: "\e787";
679
+ }
680
+
681
+ .el-icon-document-delete:before {
682
+ content: "\e788";
683
+ }
684
+
685
+ .el-icon-document-remove:before {
686
+ content: "\e789";
687
+ }
688
+
689
+ .el-icon-tickets:before {
690
+ content: "\e78b";
691
+ }
692
+
693
+ .el-icon-folder-checked:before {
694
+ content: "\e77f";
695
+ }
696
+
697
+ .el-icon-folder-delete:before {
698
+ content: "\e780";
699
+ }
700
+
701
+ .el-icon-folder-remove:before {
702
+ content: "\e781";
703
+ }
704
+
705
+ .el-icon-folder-add:before {
706
+ content: "\e783";
707
+ }
708
+
709
+ .el-icon-folder-opened:before {
710
+ content: "\e784";
711
+ }
712
+
713
+ .el-icon-folder:before {
714
+ content: "\e78a";
715
+ }
716
+
717
+ .el-icon-edit-outline:before {
718
+ content: "\e764";
719
+ }
720
+
721
+ .el-icon-edit:before {
722
+ content: "\e78c";
723
+ }
724
+
725
+ .el-icon-date:before {
726
+ content: "\e78e";
727
+ }
728
+
729
+ .el-icon-c-scale-to-original:before {
730
+ content: "\e7c6";
731
+ }
732
+
733
+ .el-icon-view:before {
734
+ content: "\e6ce";
735
+ }
736
+
737
+ .el-icon-loading:before {
738
+ content: "\e6cf";
739
+ }
740
+
741
+ .el-icon-rank:before {
742
+ content: "\e6d1";
743
+ }
744
+
745
+ .el-icon-sort-down:before {
746
+ content: "\e7c4";
747
+ }
748
+
749
+ .el-icon-sort-up:before {
750
+ content: "\e7c5";
751
+ }
752
+
753
+ .el-icon-sort:before {
754
+ content: "\e6d2";
755
+ }
756
+
757
+ .el-icon-finished:before {
758
+ content: "\e6cd";
759
+ }
760
+
761
+ .el-icon-refresh-left:before {
762
+ content: "\e6c7";
763
+ }
764
+
765
+ .el-icon-refresh-right:before {
766
+ content: "\e6c8";
767
+ }
768
+
769
+ .el-icon-refresh:before {
770
+ content: "\e6d0";
771
+ }
772
+
773
+ .el-icon-video-play:before {
774
+ content: "\e7c0";
775
+ }
776
+
777
+ .el-icon-video-pause:before {
778
+ content: "\e7c1";
779
+ }
780
+
781
+ .el-icon-d-arrow-right:before {
782
+ content: "\e6dc";
783
+ }
784
+
785
+ .el-icon-d-arrow-left:before {
786
+ content: "\e6dd";
787
+ }
788
+
789
+ .el-icon-arrow-up:before {
790
+ content: "\e6e1";
791
+ }
792
+
793
+ .el-icon-arrow-down:before {
794
+ content: "\e6df";
795
+ }
796
+
797
+ .el-icon-arrow-right:before {
798
+ content: "\e6e0";
799
+ }
800
+
801
+ .el-icon-arrow-left:before {
802
+ content: "\e6de";
803
+ }
804
+
805
+ .el-icon-top-right:before {
806
+ content: "\e6e7";
807
+ }
808
+
809
+ .el-icon-top-left:before {
810
+ content: "\e6e8";
811
+ }
812
+
813
+ .el-icon-top:before {
814
+ content: "\e6e6";
815
+ }
816
+
817
+ .el-icon-bottom:before {
818
+ content: "\e6eb";
819
+ }
820
+
821
+ .el-icon-right:before {
822
+ content: "\e6e9";
823
+ }
824
+
825
+ .el-icon-back:before {
826
+ content: "\e6ea";
827
+ }
828
+
829
+ .el-icon-bottom-right:before {
830
+ content: "\e6ec";
831
+ }
832
+
833
+ .el-icon-bottom-left:before {
834
+ content: "\e6ed";
835
+ }
836
+
837
+ .el-icon-caret-top:before {
838
+ content: "\e78f";
839
+ }
840
+
841
+ .el-icon-caret-bottom:before {
842
+ content: "\e790";
843
+ }
844
+
845
+ .el-icon-caret-right:before {
846
+ content: "\e791";
847
+ }
848
+
849
+ .el-icon-caret-left:before {
850
+ content: "\e792";
851
+ }
852
+
853
+ .el-icon-d-caret:before {
854
+ content: "\e79a";
855
+ }
856
+
857
+ .el-icon-share:before {
858
+ content: "\e793";
859
+ }
860
+
861
+ .el-icon-menu:before {
862
+ content: "\e798";
863
+ }
864
+
865
+ .el-icon-s-grid:before {
866
+ content: "\e7a6";
867
+ }
868
+
869
+ .el-icon-s-check:before {
870
+ content: "\e7a7";
871
+ }
872
+
873
+ .el-icon-s-data:before {
874
+ content: "\e7a8";
875
+ }
876
+
877
+ .el-icon-s-opportunity:before {
878
+ content: "\e7aa";
879
+ }
880
+
881
+ .el-icon-s-custom:before {
882
+ content: "\e7ab";
883
+ }
884
+
885
+ .el-icon-s-claim:before {
886
+ content: "\e7ad";
887
+ }
888
+
889
+ .el-icon-s-finance:before {
890
+ content: "\e7ae";
891
+ }
892
+
893
+ .el-icon-s-comment:before {
894
+ content: "\e7af";
895
+ }
896
+
897
+ .el-icon-s-flag:before {
898
+ content: "\e7b0";
899
+ }
900
+
901
+ .el-icon-s-marketing:before {
902
+ content: "\e7b1";
903
+ }
904
+
905
+ .el-icon-s-shop:before {
906
+ content: "\e7b4";
907
+ }
908
+
909
+ .el-icon-s-open:before {
910
+ content: "\e7b5";
911
+ }
912
+
913
+ .el-icon-s-management:before {
914
+ content: "\e7b6";
915
+ }
916
+
917
+ .el-icon-s-ticket:before {
918
+ content: "\e7b7";
919
+ }
920
+
921
+ .el-icon-s-release:before {
922
+ content: "\e7b8";
923
+ }
924
+
925
+ .el-icon-s-home:before {
926
+ content: "\e7b9";
927
+ }
928
+
929
+ .el-icon-s-promotion:before {
930
+ content: "\e7ba";
931
+ }
932
+
933
+ .el-icon-s-operation:before {
934
+ content: "\e7bb";
935
+ }
936
+
937
+ .el-icon-s-unfold:before {
938
+ content: "\e7bc";
939
+ }
940
+
941
+ .el-icon-s-fold:before {
942
+ content: "\e7a9";
943
+ }
944
+
945
+ .el-icon-s-platform:before {
946
+ content: "\e7bd";
947
+ }
948
+
949
+ .el-icon-s-order:before {
950
+ content: "\e7be";
951
+ }
952
+
953
+ .el-icon-s-cooperation:before {
954
+ content: "\e7bf";
955
+ }
956
+
957
+ .el-icon-bell:before {
958
+ content: "\e725";
959
+ }
960
+
961
+ .el-icon-message-solid:before {
962
+ content: "\e799";
963
+ }
964
+
965
+ .el-icon-video-camera:before {
966
+ content: "\e772";
967
+ }
968
+
969
+ .el-icon-video-camera-solid:before {
970
+ content: "\e796";
971
+ }
972
+
973
+ .el-icon-camera:before {
974
+ content: "\e779";
975
+ }
976
+
977
+ .el-icon-camera-solid:before {
978
+ content: "\e79b";
979
+ }
980
+
981
+ .el-icon-download:before {
982
+ content: "\e77c";
983
+ }
984
+
985
+ .el-icon-upload2:before {
986
+ content: "\e77b";
987
+ }
988
+
989
+ .el-icon-upload:before {
990
+ content: "\e7c3";
991
+ }
992
+
993
+ .el-icon-picture-outline-round:before {
994
+ content: "\e75f";
995
+ }
996
+
997
+ .el-icon-picture-outline:before {
998
+ content: "\e75e";
999
+ }
1000
+
1001
+ .el-icon-picture:before {
1002
+ content: "\e79f";
1003
+ }
1004
+
1005
+ .el-icon-close:before {
1006
+ content: "\e6db";
1007
+ }
1008
+
1009
+ .el-icon-check:before {
1010
+ content: "\e6da";
1011
+ }
1012
+
1013
+ .el-icon-plus:before {
1014
+ content: "\e6d9";
1015
+ }
1016
+
1017
+ .el-icon-minus:before {
1018
+ content: "\e6d8";
1019
+ }
1020
+
1021
+ .el-icon-help:before {
1022
+ content: "\e73d";
1023
+ }
1024
+
1025
+ .el-icon-s-help:before {
1026
+ content: "\e7b3";
1027
+ }
1028
+
1029
+ .el-icon-circle-close:before {
1030
+ content: "\e78d";
1031
+ }
1032
+
1033
+ .el-icon-circle-check:before {
1034
+ content: "\e720";
1035
+ }
1036
+
1037
+ .el-icon-circle-plus-outline:before {
1038
+ content: "\e723";
1039
+ }
1040
+
1041
+ .el-icon-remove-outline:before {
1042
+ content: "\e722";
1043
+ }
1044
+
1045
+ .el-icon-zoom-out:before {
1046
+ content: "\e776";
1047
+ }
1048
+
1049
+ .el-icon-zoom-in:before {
1050
+ content: "\e777";
1051
+ }
1052
+
1053
+ .el-icon-error:before {
1054
+ content: "\e79d";
1055
+ }
1056
+
1057
+ .el-icon-success:before {
1058
+ content: "\e79c";
1059
+ }
1060
+
1061
+ .el-icon-circle-plus:before {
1062
+ content: "\e7a0";
1063
+ }
1064
+
1065
+ .el-icon-remove:before {
1066
+ content: "\e7a2";
1067
+ }
1068
+
1069
+ .el-icon-info:before {
1070
+ content: "\e7a1";
1071
+ }
1072
+
1073
+ .el-icon-question:before {
1074
+ content: "\e7a4";
1075
+ }
1076
+
1077
+ .el-icon-warning-outline:before {
1078
+ content: "\e6c9";
1079
+ }
1080
+
1081
+ .el-icon-warning:before {
1082
+ content: "\e7a3";
1083
+ }
1084
+
1085
+ .el-icon-goods:before {
1086
+ content: "\e7c2";
1087
+ }
1088
+
1089
+ .el-icon-s-goods:before {
1090
+ content: "\e7b2";
1091
+ }
1092
+
1093
+ .el-icon-star-off:before {
1094
+ content: "\e717";
1095
+ }
1096
+
1097
+ .el-icon-star-on:before {
1098
+ content: "\e797";
1099
+ }
1100
+
1101
+ .el-icon-more-outline:before {
1102
+ content: "\e6cc";
1103
+ }
1104
+
1105
+ .el-icon-more:before {
1106
+ content: "\e794";
1107
+ }
1108
+
1109
+ .el-icon-phone-outline:before {
1110
+ content: "\e6cb";
1111
+ }
1112
+
1113
+ .el-icon-phone:before {
1114
+ content: "\e795";
1115
+ }
1116
+
1117
+ .el-icon-user:before {
1118
+ content: "\e6e3";
1119
+ }
1120
+
1121
+ .el-icon-user-solid:before {
1122
+ content: "\e7a5";
1123
+ }
1124
+
1125
+ .el-icon-setting:before {
1126
+ content: "\e6ca";
1127
+ }
1128
+
1129
+ .el-icon-s-tools:before {
1130
+ content: "\e7ac";
1131
+ }
1132
+
1133
+ .el-icon-delete:before {
1134
+ content: "\e6d7";
1135
+ }
1136
+
1137
+ .el-icon-delete-solid:before {
1138
+ content: "\e7c9";
1139
+ }
1140
+
1141
+ .el-icon-eleme:before {
1142
+ content: "\e7c7";
1143
+ }
1144
+
1145
+ .el-icon-platform-eleme:before {
1146
+ content: "\e7ca";
1147
+ }
1148
+
1149
+ .el-icon-loading {
1150
+ animation: rotating 2s linear infinite;
1151
+ }
1152
+
1153
+ .el-icon--right {
1154
+ margin-left: 5px;
1155
+ }
1156
+ .el-icon--left {
1157
+ margin-right: 5px;
1158
+ }
1159
+
1160
+ @keyframes rotating {
1161
+ 0% {
1162
+ transform: rotateZ(0deg);
1163
+ }
1164
+ 100% {
1165
+ transform: rotateZ(360deg);
1166
+ }
1167
+ }