@cloudbase/weda-ui 0.2.16 → 1.0.24

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 (194) hide show
  1. package/README.md +41 -169
  2. package/package.json +23 -11
  3. package/src/configs/components/calendar.json +4 -1
  4. package/src/configs/components/chart/bar.json +724 -0
  5. package/src/configs/components/chart/line.json +679 -0
  6. package/src/configs/components/chart/pie.json +497 -0
  7. package/src/configs/components/chart/statisticsCard.json +61 -13
  8. package/src/configs/components/container.json +7 -2
  9. package/src/configs/components/dataView.json +21 -6
  10. package/src/configs/components/form/checkbox.json +97 -5
  11. package/src/configs/components/form/radio.json +96 -4
  12. package/src/configs/components/form/select.json +245 -11
  13. package/src/configs/components/graphicCard.json +84 -73
  14. package/src/configs/components/image.json +7 -2
  15. package/src/configs/components/link.json +19 -3
  16. package/src/configs/components/listView.json +65 -18
  17. package/src/configs/components/lottery.json +151 -0
  18. package/src/configs/components/modal.json +37 -5
  19. package/src/configs/components/navLayout.json +87 -75
  20. package/src/configs/components/navigationBar.json +59 -0
  21. package/src/configs/components/richtextview.json +4 -1
  22. package/src/configs/components/scrollVeiw.json +74 -22
  23. package/src/configs/components/swiper.json +4 -1
  24. package/src/configs/components/tabs.json +51 -8
  25. package/src/configs/components/text.json +33 -25
  26. package/src/configs/components/wxOpenApi/phone.json +141 -0
  27. package/src/configs/components/wxOpenApi/phoneCode.json +121 -0
  28. package/src/configs/components/wxOpenApi/share.json +167 -0
  29. package/src/configs/components/wxOpenApi/userInfo.json +174 -0
  30. package/src/configs/index.js +20 -0
  31. package/src/index.js +2 -0
  32. package/src/mp/components/button/index.wxml +1 -2
  33. package/src/mp/components/chart/bar/index.js +258 -0
  34. package/src/mp/components/chart/bar/index.json +6 -0
  35. package/src/mp/components/chart/bar/index.wxml +3 -0
  36. package/src/mp/components/chart/bar/index.wxss +9 -0
  37. package/src/mp/components/chart/common/config/bar.js +50 -0
  38. package/src/mp/components/chart/common/config/global.js +16 -0
  39. package/src/mp/components/chart/common/config/line.js +48 -0
  40. package/src/mp/components/chart/common/config/pie.js +36 -0
  41. package/src/mp/components/chart/common/core/eChartBar.js +263 -0
  42. package/src/mp/components/chart/common/core/eChartBase.js +375 -0
  43. package/src/mp/components/chart/common/core/eChartLine.js +229 -0
  44. package/src/mp/components/chart/common/core/eChartPie.js +166 -0
  45. package/src/mp/components/chart/common/lib/echarts.min.js +18 -0
  46. package/src/mp/components/chart/ec-canvas/ec-canvas.js +277 -0
  47. package/src/mp/components/chart/ec-canvas/ec-canvas.json +4 -0
  48. package/src/mp/components/chart/ec-canvas/ec-canvas.wxml +4 -0
  49. package/src/mp/components/chart/ec-canvas/ec-canvas.wxss +4 -0
  50. package/src/mp/components/chart/ec-canvas/wx-canvas.js +107 -0
  51. package/src/mp/components/chart/line/index.js +247 -0
  52. package/src/mp/components/chart/line/index.json +6 -0
  53. package/src/mp/components/chart/line/index.wxml +3 -0
  54. package/src/mp/components/chart/line/index.wxss +9 -0
  55. package/src/mp/components/chart/pie/index.js +182 -0
  56. package/src/mp/components/chart/pie/index.json +6 -0
  57. package/src/mp/components/chart/pie/index.wxml +4 -0
  58. package/src/mp/components/chart/pie/index.wxss +9 -0
  59. package/src/mp/components/chart/statisticsCard/index.js +33 -6
  60. package/src/mp/components/form/checkbox/index.js +41 -2
  61. package/src/mp/components/form/checkbox/index.wxml +1 -1
  62. package/src/mp/components/form/form/index.wxml +1 -2
  63. package/src/mp/components/form/input/index.js +1 -1
  64. package/src/mp/components/form/location/index.js +43 -2
  65. package/src/mp/components/form/radio/index.js +38 -0
  66. package/src/mp/components/form/select/index.js +348 -40
  67. package/src/mp/components/form/select/index.wxml +21 -6
  68. package/src/mp/components/form/select/region/index.js +101 -0
  69. package/src/mp/components/form/textarea/index.wxml +6 -5
  70. package/src/mp/components/form/uploader/index.js +76 -44
  71. package/src/mp/components/form/uploader/index.wxml +15 -3
  72. package/src/mp/components/form/uploaderFile/index.js +61 -29
  73. package/src/mp/components/graphicCard/index.js +26 -28
  74. package/src/mp/components/listView/index.js +52 -64
  75. package/src/mp/components/listView/index.wxml +2 -2
  76. package/src/mp/components/listView/index.wxss +5 -0
  77. package/src/mp/components/lottery/index.js +270 -0
  78. package/src/mp/components/lottery/index.json +4 -0
  79. package/src/mp/components/lottery/index.wxml +43 -0
  80. package/src/mp/components/lottery/index.wxss +317 -0
  81. package/src/mp/components/navLayout/index.js +3 -3
  82. package/src/mp/components/navigationBar/index.js +193 -0
  83. package/src/mp/components/navigationBar/index.json +6 -0
  84. package/src/mp/components/navigationBar/index.wxml +88 -0
  85. package/src/mp/components/navigationBar/index.wxss +1257 -0
  86. package/src/mp/components/tabs/index.js +7 -2
  87. package/src/mp/components/tabs/index.wxml +2 -1
  88. package/src/mp/components/text/index.js +0 -25
  89. package/src/mp/components/text/index.wxml +3 -3
  90. package/src/mp/components/wxOpenApi/phone/index.js +117 -0
  91. package/src/mp/components/wxOpenApi/phone/index.json +4 -0
  92. package/src/mp/components/wxOpenApi/phone/index.wxml +15 -0
  93. package/src/mp/components/wxOpenApi/phone/index.wxss +22 -0
  94. package/src/mp/components/wxOpenApi/phoneCode/index.js +89 -0
  95. package/src/mp/components/wxOpenApi/phoneCode/index.json +4 -0
  96. package/src/mp/components/wxOpenApi/phoneCode/index.wxml +15 -0
  97. package/src/mp/components/wxOpenApi/phoneCode/index.wxss +22 -0
  98. package/src/mp/components/wxOpenApi/share/index.js +117 -0
  99. package/src/mp/components/wxOpenApi/share/index.json +4 -0
  100. package/src/mp/components/wxOpenApi/share/index.wxml +15 -0
  101. package/src/mp/components/wxOpenApi/share/index.wxss +22 -0
  102. package/src/mp/components/wxOpenApi/userInfo/index.js +88 -0
  103. package/src/mp/components/wxOpenApi/userInfo/index.json +4 -0
  104. package/src/mp/components/wxOpenApi/userInfo/index.wxml +14 -0
  105. package/src/mp/components/wxOpenApi/userInfo/index.wxss +22 -0
  106. package/src/mp/index.json +10 -1
  107. package/src/mp/style/weda-ui.wxss +2 -0
  108. package/src/mp/utils/constant.js +15 -0
  109. package/src/mp/utils/destr.js +48 -0
  110. package/src/mp/utils/lodash.js +2 -0
  111. package/src/mp/utils/platform.js +25 -0
  112. package/src/mp/utils/tcb.js +44 -0
  113. package/src/setupTests.js +2 -1
  114. package/src/web/components/button/index.css +8 -1
  115. package/src/web/components/button/index.tsx +3 -2
  116. package/src/web/components/chart/bar/index.tsx +140 -0
  117. package/src/web/components/chart/common/config/bar.js +49 -0
  118. package/src/web/components/chart/common/config/global.js +16 -0
  119. package/src/web/components/chart/common/config/line.js +50 -0
  120. package/src/web/components/chart/common/config/pie.js +37 -0
  121. package/src/web/components/chart/common/core/eChartBar.js +265 -0
  122. package/src/web/components/chart/common/core/eChartBase.ts +383 -0
  123. package/src/web/components/chart/common/core/eChartLine.js +231 -0
  124. package/src/web/components/chart/common/core/eChartPie.js +170 -0
  125. package/src/web/components/chart/common/core/type.ts +34 -0
  126. package/src/web/components/chart/common/echart.css +106 -0
  127. package/src/web/components/chart/common/echarts.ts +33 -0
  128. package/src/web/components/chart/common/useChart.tsx +69 -0
  129. package/src/web/components/chart/line/index.tsx +136 -0
  130. package/src/web/components/chart/pie/index.tsx +99 -0
  131. package/src/web/components/chart/statisticsCard/index.tsx +29 -8
  132. package/src/web/components/form/checkbox/index.tsx +61 -23
  133. package/src/web/components/form/formcell/index.tsx +10 -5
  134. package/src/web/components/form/location/components/LocationH5/location.h5.jsx +3 -3
  135. package/src/web/components/form/location/components/LocationPC/location.PC.jsx +2 -2
  136. package/src/web/components/form/radio/index.tsx +90 -53
  137. package/src/web/components/form/select/h5.tsx +371 -72
  138. package/src/web/components/form/select/index.css +10 -0
  139. package/src/web/components/form/select/index.tsx +392 -145
  140. package/src/web/components/form/select/region/index.ts +122 -31
  141. package/src/web/components/form/select/time.jsx +90 -0
  142. package/src/web/components/form/select/year.tsx +170 -0
  143. package/src/web/components/form/tips/index.css +4 -0
  144. package/src/web/components/form/tips/index.tsx +4 -3
  145. package/src/web/components/form/uploader/uploader.h5.tsx +28 -19
  146. package/src/web/components/form/uploader/uploader.pc.tsx +17 -20
  147. package/src/web/components/form/uploaderFile/uploadFile.h5.tsx +48 -44
  148. package/src/web/components/form/uploaderFile/uploadFile.pc.tsx +28 -26
  149. package/src/web/components/graphicCard/index.css +1 -5
  150. package/src/web/components/graphicCard/index.tsx +4 -3
  151. package/src/web/components/image/image.tsx +1 -1
  152. package/src/web/components/image/index.tsx +1 -1
  153. package/src/web/components/index.js +13 -2
  154. package/src/web/components/link/index.tsx +6 -3
  155. package/src/web/components/listView/index.css +4 -0
  156. package/src/web/components/listView/index.tsx +10 -18
  157. package/src/web/components/lottery/index.css +327 -0
  158. package/src/web/components/lottery/index.tsx +567 -0
  159. package/src/web/components/lottery/lotteryUtil.ts +130 -0
  160. package/src/web/components/modal/index.tsx +3 -1
  161. package/src/web/components/navigationBar/chevron-right--double.svg +3 -0
  162. package/src/web/components/navigationBar/common.tsx +198 -0
  163. package/src/web/components/navigationBar/h5Menu.tsx +179 -0
  164. package/src/web/components/navigationBar/horizontalMenu.tsx +200 -0
  165. package/src/web/components/navigationBar/index.css +762 -0
  166. package/src/web/components/navigationBar/index.tsx +231 -0
  167. package/src/web/components/navigationBar/type.d.ts +111 -0
  168. package/src/web/components/navigationBar/verticalMenu.tsx +81 -0
  169. package/src/web/components/phone/index.css +0 -0
  170. package/src/web/components/phone/index.tsx +22 -0
  171. package/src/web/components/phoneCode/index.css +0 -0
  172. package/src/web/components/phoneCode/index.tsx +22 -0
  173. package/src/web/components/richTextView/index.tsx +3 -5
  174. package/src/web/components/share/index.css +0 -0
  175. package/src/web/components/share/index.tsx +38 -0
  176. package/src/web/components/tabs/index.tsx +2 -0
  177. package/src/web/components/tabs/tabs.h5.tsx +43 -33
  178. package/src/web/components/tabs/tabs.pc.tsx +23 -10
  179. package/src/web/components/text/index.tsx +6 -14
  180. package/src/web/components/userInfo/index.css +0 -0
  181. package/src/web/components/userInfo/index.tsx +30 -0
  182. package/src/web/utils/{constant.js → constant.ts} +17 -2
  183. package/src/web/utils/lodash.ts +2 -0
  184. package/src/web/utils/platform.js +10 -1
  185. package/src/web/utils/tcb.js +20 -6
  186. package/src/web/weda-ui.css +2 -0
  187. package/CHANGELOG.md +0 -240
  188. package/src/.DS_Store +0 -0
  189. package/src/configs/.DS_Store +0 -0
  190. package/src/mp/.gitignore +0 -10
  191. package/src/web/.DS_Store +0 -0
  192. package/src/web/components/form/select/region/cities.ts +0 -2410
  193. package/src/web/components/form/select/region/provinces.ts +0 -240
  194. package/src/web/components/form/select/region/regions.ts +0 -20645
@@ -0,0 +1,1257 @@
1
+ @font-face {
2
+ font-family: 'lcap-icon';
3
+ font-weight: normal;
4
+ font-style: normal;
5
+ src: url(data:application/font-woff2;charset=utf-8;base64,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)
6
+ format('woff2');
7
+ }
8
+ .t-icon {
9
+ /* use !important to prevent issues with browser extensions that change fonts */
10
+ font-family: 't' !important;
11
+ display: inline-block;
12
+ speak: none;
13
+ font-style: normal;
14
+ font-weight: normal;
15
+ font-variant: normal;
16
+ text-transform: none;
17
+ line-height: 1;
18
+ text-align: center;
19
+ /* Better Font Rendering =========== */
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ }
23
+
24
+ .t-icon-add-circle:before {
25
+ content: '\E001';
26
+ }
27
+
28
+ .t-icon-add-rectangle:before {
29
+ content: '\E002';
30
+ }
31
+
32
+ .t-icon-add:before {
33
+ content: '\E003';
34
+ }
35
+
36
+ .t-icon-app:before {
37
+ content: '\E004';
38
+ }
39
+
40
+ .t-icon-arrow-down-rectangle:before {
41
+ content: '\E005';
42
+ }
43
+
44
+ .t-icon-arrow-down:before {
45
+ content: '\E006';
46
+ }
47
+
48
+ .t-icon-arrow-left:before {
49
+ content: '\E007';
50
+ }
51
+
52
+ .t-icon-arrow-right:before {
53
+ content: '\E008';
54
+ }
55
+
56
+ .t-icon-arrow-up:before {
57
+ content: '\E009';
58
+ }
59
+
60
+ .t-icon-attach:before {
61
+ content: '\E00A';
62
+ }
63
+
64
+ .t-icon-backtop-rectangle:before {
65
+ content: '\E00B';
66
+ }
67
+
68
+ .t-icon-backtop:before {
69
+ content: '\E00C';
70
+ }
71
+
72
+ .t-icon-backward:before {
73
+ content: '\E00D';
74
+ }
75
+
76
+ .t-icon-barcode:before {
77
+ content: '\E00E';
78
+ }
79
+
80
+ .t-icon-books:before {
81
+ content: '\E00F';
82
+ }
83
+
84
+ .t-icon-browse-off:before {
85
+ content: '\E010';
86
+ }
87
+
88
+ .t-icon-browse:before {
89
+ content: '\E011';
90
+ }
91
+
92
+ .t-icon-bulletpoint:before {
93
+ content: '\E012';
94
+ }
95
+
96
+ .t-icon-calendar:before {
97
+ content: '\E013';
98
+ }
99
+
100
+ .t-icon-call:before {
101
+ content: '\E014';
102
+ }
103
+
104
+ .t-icon-caret-down-small:before {
105
+ content: '\E015';
106
+ }
107
+
108
+ .t-icon-caret-down:before {
109
+ content: '\E016';
110
+ }
111
+
112
+ .t-icon-caret-left-small:before {
113
+ content: '\E017';
114
+ }
115
+
116
+ .t-icon-caret-left:before {
117
+ content: '\E018';
118
+ }
119
+
120
+ .t-icon-caret-right-small:before {
121
+ content: '\E019';
122
+ }
123
+
124
+ .t-icon-caret-right:before {
125
+ content: '\E01A';
126
+ }
127
+
128
+ .t-icon-caret-up-small:before {
129
+ content: '\E01B';
130
+ }
131
+
132
+ .t-icon-caret-up:before {
133
+ content: '\E01C';
134
+ }
135
+
136
+ .t-icon-cart:before {
137
+ content: '\E01D';
138
+ }
139
+
140
+ .t-icon-chart-bar:before {
141
+ content: '\E01E';
142
+ }
143
+
144
+ .t-icon-chart-bubble:before {
145
+ content: '\E01F';
146
+ }
147
+
148
+ .t-icon-chart-pie:before {
149
+ content: '\E020';
150
+ }
151
+
152
+ .t-icon-chart:before {
153
+ content: '\E021';
154
+ }
155
+
156
+ .t-icon-chat:before {
157
+ content: '\E022';
158
+ }
159
+
160
+ .t-icon-check-circle-filled:before {
161
+ content: '\E023';
162
+ }
163
+
164
+ .t-icon-check-circle:before {
165
+ content: '\E024';
166
+ }
167
+
168
+ .t-icon-check-rectangle-filled:before {
169
+ content: '\E025';
170
+ }
171
+
172
+ .t-icon-check-rectangle:before {
173
+ content: '\E026';
174
+ }
175
+
176
+ .t-icon-check:before {
177
+ content: '\E027';
178
+ }
179
+
180
+ .t-icon-chevron-down-circle:before {
181
+ content: '\E028';
182
+ }
183
+
184
+ .t-icon-chevron-down-rectangle:before {
185
+ content: '\E029';
186
+ }
187
+
188
+ .t-icon-chevron-down:before {
189
+ content: '\E02A';
190
+ }
191
+
192
+ .t-icon-chevron-left-circle:before {
193
+ content: '\E02B';
194
+ }
195
+
196
+ .t-icon-chevron-left-double:before {
197
+ content: '\E02C';
198
+ }
199
+
200
+ .t-icon-chevron-left-rectangle:before {
201
+ content: '\E02D';
202
+ }
203
+
204
+ .t-icon-chevron-left:before {
205
+ content: '\E02E';
206
+ }
207
+
208
+ .t-icon-chevron-right-circle:before {
209
+ content: '\E02F';
210
+ }
211
+
212
+ .t-icon-chevron-right-double:before {
213
+ content: '\E030';
214
+ }
215
+
216
+ .t-icon-chevron-right-rectangle:before {
217
+ content: '\E031';
218
+ }
219
+
220
+ .t-icon-chevron-right:before {
221
+ content: '\E032';
222
+ }
223
+
224
+ .t-icon-chevron-up-circle:before {
225
+ content: '\E033';
226
+ }
227
+
228
+ .t-icon-chevron-up-rectangle:before {
229
+ content: '\E034';
230
+ }
231
+
232
+ .t-icon-chevron-up:before {
233
+ content: '\E035';
234
+ }
235
+
236
+ .t-icon-circle:before {
237
+ content: '\E036';
238
+ }
239
+
240
+ .t-icon-clear:before {
241
+ content: '\E037';
242
+ }
243
+
244
+ .t-icon-close-circle-filled:before {
245
+ content: '\E038';
246
+ }
247
+
248
+ .t-icon-close-circle:before {
249
+ content: '\E039';
250
+ }
251
+
252
+ .t-icon-close-rectangle:before {
253
+ content: '\E03A';
254
+ }
255
+
256
+ .t-icon-close:before {
257
+ content: '\E03B';
258
+ }
259
+
260
+ .t-icon-cloud-download:before {
261
+ content: '\E03C';
262
+ }
263
+
264
+ .t-icon-cloud-upload:before {
265
+ content: '\E03D';
266
+ }
267
+
268
+ .t-icon-cloud:before {
269
+ content: '\E03E';
270
+ }
271
+
272
+ .t-icon-code:before {
273
+ content: '\E03F';
274
+ }
275
+
276
+ .t-icon-control-platform:before {
277
+ content: '\E040';
278
+ }
279
+
280
+ .t-icon-creditcard:before {
281
+ content: '\E041';
282
+ }
283
+
284
+ .t-icon-dashboard:before {
285
+ content: '\E042';
286
+ }
287
+
288
+ .t-icon-delete:before {
289
+ content: '\E043';
290
+ }
291
+
292
+ .t-icon-desktop:before {
293
+ content: '\E044';
294
+ }
295
+
296
+ .t-icon-discount-filled:before {
297
+ content: '\E045';
298
+ }
299
+
300
+ .t-icon-discount:before {
301
+ content: '\E046';
302
+ }
303
+
304
+ .t-icon-download:before {
305
+ content: '\E047';
306
+ }
307
+
308
+ .t-icon-edit-1:before {
309
+ content: '\E048';
310
+ }
311
+
312
+ .t-icon-edit:before {
313
+ content: '\E049';
314
+ }
315
+
316
+ .t-icon-ellipsis:before {
317
+ content: '\E04A';
318
+ }
319
+
320
+ .t-icon-enter:before {
321
+ content: '\E04B';
322
+ }
323
+
324
+ .t-icon-error-circle-filled:before {
325
+ content: '\E04C';
326
+ }
327
+
328
+ .t-icon-error-circle:before {
329
+ content: '\E04D';
330
+ }
331
+
332
+ .t-icon-error:before {
333
+ content: '\E04E';
334
+ }
335
+
336
+ .t-icon-file-add:before {
337
+ content: '\E04F';
338
+ }
339
+
340
+ .t-icon-file-copy:before {
341
+ content: '\E050';
342
+ }
343
+
344
+ .t-icon-file-excel:before {
345
+ content: '\E051';
346
+ }
347
+
348
+ .t-icon-file-image:before {
349
+ content: '\E052';
350
+ }
351
+
352
+ .t-icon-file-paste:before {
353
+ content: '\E053';
354
+ }
355
+
356
+ .t-icon-file-pdf:before {
357
+ content: '\E054';
358
+ }
359
+
360
+ .t-icon-file-powerpoint:before {
361
+ content: '\E055';
362
+ }
363
+
364
+ .t-icon-file-unknown:before {
365
+ content: '\E056';
366
+ }
367
+
368
+ .t-icon-file-word:before {
369
+ content: '\E057';
370
+ }
371
+
372
+ .t-icon-file:before {
373
+ content: '\E058';
374
+ }
375
+
376
+ .t-icon-filter-clear:before {
377
+ content: '\E059';
378
+ }
379
+
380
+ .t-icon-filter:before {
381
+ content: '\E05A';
382
+ }
383
+
384
+ .t-icon-flag:before {
385
+ content: '\E05B';
386
+ }
387
+
388
+ .t-icon-folder-add:before {
389
+ content: '\E05C';
390
+ }
391
+
392
+ .t-icon-folder-open:before {
393
+ content: '\E05D';
394
+ }
395
+
396
+ .t-icon-folder:before {
397
+ content: '\E05E';
398
+ }
399
+
400
+ .t-icon-fork:before {
401
+ content: '\E05F';
402
+ }
403
+
404
+ .t-icon-format-horizontal-align-bottom:before {
405
+ content: '\E060';
406
+ }
407
+
408
+ .t-icon-format-horizontal-align-center:before {
409
+ content: '\E061';
410
+ }
411
+
412
+ .t-icon-format-horizontal-align-top:before {
413
+ content: '\E062';
414
+ }
415
+
416
+ .t-icon-format-vertical-align-center:before {
417
+ content: '\E063';
418
+ }
419
+
420
+ .t-icon-format-vertical-align-left:before {
421
+ content: '\E064';
422
+ }
423
+
424
+ .t-icon-format-vertical-align-right:before {
425
+ content: '\E065';
426
+ }
427
+
428
+ .t-icon-forward:before {
429
+ content: '\E066';
430
+ }
431
+
432
+ .t-icon-fullscreen-exit:before {
433
+ content: '\E067';
434
+ }
435
+
436
+ .t-icon-fullscreen:before {
437
+ content: '\E068';
438
+ }
439
+
440
+ .t-icon-gender-female:before {
441
+ content: '\E069';
442
+ }
443
+
444
+ .t-icon-gender-male:before {
445
+ content: '\E06A';
446
+ }
447
+
448
+ .t-icon-gift:before {
449
+ content: '\E06B';
450
+ }
451
+
452
+ .t-icon-heart-filled:before {
453
+ content: '\E06C';
454
+ }
455
+
456
+ .t-icon-heart:before {
457
+ content: '\E06D';
458
+ }
459
+
460
+ .t-icon-help-circle-filled:before {
461
+ content: '\E06E';
462
+ }
463
+
464
+ .t-icon-help-circle:before {
465
+ content: '\E06F';
466
+ }
467
+
468
+ .t-icon-help:before {
469
+ content: '\E070';
470
+ }
471
+
472
+ .t-icon-history:before {
473
+ content: '\E071';
474
+ }
475
+
476
+ .t-icon-home:before {
477
+ content: '\E072';
478
+ }
479
+
480
+ .t-icon-hourglass:before {
481
+ content: '\E073';
482
+ }
483
+
484
+ .t-icon-image:before {
485
+ content: '\E074';
486
+ }
487
+
488
+ .t-icon-info-circle-filled:before {
489
+ content: '\E075';
490
+ }
491
+
492
+ .t-icon-info-circle:before {
493
+ content: '\E076';
494
+ }
495
+
496
+ .t-icon-internet:before {
497
+ content: '\E077';
498
+ }
499
+
500
+ .t-icon-jump:before {
501
+ content: '\E078';
502
+ }
503
+
504
+ .t-icon-laptop:before {
505
+ content: '\E079';
506
+ }
507
+
508
+ .t-icon-layers:before {
509
+ content: '\E07A';
510
+ }
511
+
512
+ .t-icon-link-unlink:before {
513
+ content: '\E07B';
514
+ }
515
+
516
+ .t-icon-link:before {
517
+ content: '\E07C';
518
+ }
519
+
520
+ .t-icon-loading:before {
521
+ content: '\E07D';
522
+ }
523
+
524
+ .t-icon-location:before {
525
+ content: '\E07E';
526
+ }
527
+
528
+ .t-icon-lock-off:before {
529
+ content: '\E07F';
530
+ }
531
+
532
+ .t-icon-lock-on:before {
533
+ content: '\E080';
534
+ }
535
+
536
+ .t-icon-login:before {
537
+ content: '\E081';
538
+ }
539
+
540
+ .t-icon-logo-android:before {
541
+ content: '\E082';
542
+ }
543
+
544
+ .t-icon-logo-apple-filled:before {
545
+ content: '\E083';
546
+ }
547
+
548
+ .t-icon-logo-apple:before {
549
+ content: '\E084';
550
+ }
551
+
552
+ .t-icon-logo-chrome-filled:before {
553
+ content: '\E085';
554
+ }
555
+
556
+ .t-icon-logo-chrome:before {
557
+ content: '\E086';
558
+ }
559
+
560
+ .t-icon-logo-codepen:before {
561
+ content: '\E087';
562
+ }
563
+
564
+ .t-icon-logo-github-filled:before {
565
+ content: '\E088';
566
+ }
567
+
568
+ .t-icon-logo-github:before {
569
+ content: '\E089';
570
+ }
571
+
572
+ .t-icon-logo-ie-filled:before {
573
+ content: '\E08A';
574
+ }
575
+
576
+ .t-icon-logo-ie:before {
577
+ content: '\E08B';
578
+ }
579
+
580
+ .t-icon-logo-windows-filled:before {
581
+ content: '\E08C';
582
+ }
583
+
584
+ .t-icon-logo-windows:before {
585
+ content: '\E08D';
586
+ }
587
+
588
+ .t-icon-logout:before {
589
+ content: '\E08E';
590
+ }
591
+
592
+ .t-icon-mail:before {
593
+ content: '\E08F';
594
+ }
595
+
596
+ .t-icon-menu-fold:before {
597
+ content: '\E090';
598
+ }
599
+
600
+ .t-icon-menu-unfold:before {
601
+ content: '\E091';
602
+ }
603
+
604
+ .t-icon-minus-circle-filled:before {
605
+ content: '\E092';
606
+ }
607
+
608
+ .t-icon-minus-circle:before {
609
+ content: '\E093';
610
+ }
611
+
612
+ .t-icon-minus-rectangle:before {
613
+ content: '\E094';
614
+ }
615
+
616
+ .t-icon-mobile-vibrate:before {
617
+ content: '\E095';
618
+ }
619
+
620
+ .t-icon-mobile:before {
621
+ content: '\E096';
622
+ }
623
+
624
+ .t-icon-money-circle:before {
625
+ content: '\E097';
626
+ }
627
+
628
+ .t-icon-more:before {
629
+ content: '\E098';
630
+ }
631
+
632
+ .t-icon-move:before {
633
+ content: '\E099';
634
+ }
635
+
636
+ .t-icon-next:before {
637
+ content: '\E09A';
638
+ }
639
+
640
+ .t-icon-notification-filled:before {
641
+ content: '\E09B';
642
+ }
643
+
644
+ .t-icon-notification:before {
645
+ content: '\E09C';
646
+ }
647
+
648
+ .t-icon-order-adjustment-column:before {
649
+ content: '\E09D';
650
+ }
651
+
652
+ .t-icon-order-ascending:before {
653
+ content: '\E09E';
654
+ }
655
+
656
+ .t-icon-order-descending:before {
657
+ content: '\E09F';
658
+ }
659
+
660
+ .t-icon-page-first:before {
661
+ content: '\E0A0';
662
+ }
663
+
664
+ .t-icon-page-last:before {
665
+ content: '\E0A1';
666
+ }
667
+
668
+ .t-icon-pause-circle-filled:before {
669
+ content: '\E0A2';
670
+ }
671
+
672
+ .t-icon-photo:before {
673
+ content: '\E0A3';
674
+ }
675
+
676
+ .t-icon-pin:before {
677
+ content: '\E0A4';
678
+ }
679
+
680
+ .t-icon-play-circle-filled:before {
681
+ content: '\E0A5';
682
+ }
683
+
684
+ .t-icon-play-circle-stroke:before {
685
+ content: '\E0A6';
686
+ }
687
+
688
+ .t-icon-play-circle:before {
689
+ content: '\E0A7';
690
+ }
691
+
692
+ .t-icon-play:before {
693
+ content: '\E0A8';
694
+ }
695
+
696
+ .t-icon-poweroff:before {
697
+ content: '\E0A9';
698
+ }
699
+
700
+ .t-icon-precise-monitor:before {
701
+ content: '\E0AA';
702
+ }
703
+
704
+ .t-icon-previous:before {
705
+ content: '\E0AB';
706
+ }
707
+
708
+ .t-icon-print:before {
709
+ content: '\E0AC';
710
+ }
711
+
712
+ .t-icon-qrcode:before {
713
+ content: '\E0AD';
714
+ }
715
+
716
+ .t-icon-queue:before {
717
+ content: '\E0AE';
718
+ }
719
+
720
+ .t-icon-rectangle:before {
721
+ content: '\E0AF';
722
+ }
723
+
724
+ .t-icon-refresh:before {
725
+ content: '\E0B0';
726
+ }
727
+
728
+ .t-icon-remove:before {
729
+ content: '\E0B1';
730
+ }
731
+
732
+ .t-icon-rollback:before {
733
+ content: '\E0B2';
734
+ }
735
+
736
+ .t-icon-root-list:before {
737
+ content: '\E0B3';
738
+ }
739
+
740
+ .t-icon-round:before {
741
+ content: '\E0B4';
742
+ }
743
+
744
+ .t-icon-save:before {
745
+ content: '\E0B5';
746
+ }
747
+
748
+ .t-icon-scan:before {
749
+ content: '\E0B6';
750
+ }
751
+
752
+ .t-icon-search:before {
753
+ content: '\E0B7';
754
+ }
755
+
756
+ .t-icon-secured:before {
757
+ content: '\E0B8';
758
+ }
759
+
760
+ .t-icon-server:before {
761
+ content: '\E0B9';
762
+ }
763
+
764
+ .t-icon-service:before {
765
+ content: '\E0BA';
766
+ }
767
+
768
+ .t-icon-setting:before {
769
+ content: '\E0BB';
770
+ }
771
+
772
+ .t-icon-share:before {
773
+ content: '\E0BC';
774
+ }
775
+
776
+ .t-icon-shop:before {
777
+ content: '\E0BD';
778
+ }
779
+
780
+ .t-icon-slash:before {
781
+ content: '\E0BE';
782
+ }
783
+
784
+ .t-icon-sound:before {
785
+ content: '\E0BF';
786
+ }
787
+
788
+ .t-icon-star-filled:before {
789
+ content: '\E0C0';
790
+ }
791
+
792
+ .t-icon-star:before {
793
+ content: '\E0C1';
794
+ }
795
+
796
+ .t-icon-stop-circle-1:before {
797
+ content: '\E0C2';
798
+ }
799
+
800
+ .t-icon-stop-circle-filled:before {
801
+ content: '\E0C3';
802
+ }
803
+
804
+ .t-icon-stop-circle:before {
805
+ content: '\E0C4';
806
+ }
807
+
808
+ .t-icon-stop:before {
809
+ content: '\E0C5';
810
+ }
811
+
812
+ .t-icon-swap-left:before {
813
+ content: '\E0C6';
814
+ }
815
+
816
+ .t-icon-swap-right:before {
817
+ content: '\E0C7';
818
+ }
819
+
820
+ .t-icon-swap:before {
821
+ content: '\E0C8';
822
+ }
823
+
824
+ .t-icon-thumb-down:before {
825
+ content: '\E0C9';
826
+ }
827
+
828
+ .t-icon-thumb-up:before {
829
+ content: '\E0CA';
830
+ }
831
+
832
+ .t-icon-time-filled:before {
833
+ content: '\E0CB';
834
+ }
835
+
836
+ .t-icon-time:before {
837
+ content: '\E0CC';
838
+ }
839
+
840
+ .t-icon-tips:before {
841
+ content: '\E0CD';
842
+ }
843
+
844
+ .t-icon-tools:before {
845
+ content: '\E0CE';
846
+ }
847
+
848
+ .t-icon-unfold-less:before {
849
+ content: '\E0CF';
850
+ }
851
+
852
+ .t-icon-unfold-more:before {
853
+ content: '\E0D0';
854
+ }
855
+
856
+ .t-icon-upload:before {
857
+ content: '\E0D1';
858
+ }
859
+
860
+ .t-icon-usb:before {
861
+ content: '\E0D2';
862
+ }
863
+
864
+ .t-icon-user-add:before {
865
+ content: '\E0D3';
866
+ }
867
+
868
+ .t-icon-user-avatar:before {
869
+ content: '\E0D4';
870
+ }
871
+
872
+ .t-icon-user-circle:before {
873
+ content: '\E0D5';
874
+ }
875
+
876
+ .t-icon-user-clear:before {
877
+ content: '\E0D6';
878
+ }
879
+
880
+ .t-icon-user-talk:before {
881
+ content: '\E0D7';
882
+ }
883
+
884
+ .t-icon-user:before {
885
+ content: '\E0D8';
886
+ }
887
+
888
+ .t-icon-usergroup-add:before {
889
+ content: '\E0D9';
890
+ }
891
+
892
+ .t-icon-usergroup-clear:before {
893
+ content: '\E0DA';
894
+ }
895
+
896
+ .t-icon-usergroup:before {
897
+ content: '\E0DB';
898
+ }
899
+
900
+ .t-icon-video:before {
901
+ content: '\E0DC';
902
+ }
903
+
904
+ .t-icon-view-column:before {
905
+ content: '\E0DD';
906
+ }
907
+
908
+ .t-icon-view-list:before {
909
+ content: '\E0DE';
910
+ }
911
+
912
+ .t-icon-view-module:before {
913
+ content: '\E0DF';
914
+ }
915
+
916
+ .t-icon-wallet:before {
917
+ content: '\E0E0';
918
+ }
919
+
920
+ .t-icon-wifi:before {
921
+ content: '\E0E1';
922
+ }
923
+
924
+ .t-icon-zoom-in:before {
925
+ content: '\E0E2';
926
+ }
927
+
928
+ .t-icon-zoom-out:before {
929
+ content: '\E0E3';
930
+ }
931
+ @font-face {
932
+ font-family: 't';
933
+ src: url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.eot'),
934
+ /* for IE 9*/ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.eot?#iefix')
935
+ format('embedded-opentype'),
936
+ /* under IE9 */ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.woff')
937
+ format('woff'),
938
+ /* chrome, firefox */
939
+ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.ttf') format('truetype'),
940
+ /* opera, Safari, Android, iOS 4.2+ */
941
+ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.svg') format('svg'); /* iOS 4.1- */
942
+ font-weight: normal;
943
+ font-style: normal;
944
+ }
945
+
946
+ .lcap-icon {
947
+ font-size: 34px;
948
+ display: inline-block;
949
+ font-family: 'lcap-icon' !important;
950
+ speak: none;
951
+ font-style: normal;
952
+ font-weight: normal;
953
+ font-variant: normal;
954
+ text-transform: none;
955
+ text-rendering: auto;
956
+ line-height: 1;
957
+ -webkit-font-smoothing: antialiased;
958
+ -moz-osx-font-smoothing: grayscale;
959
+ }
960
+ .lcap-icon-nointernet:before {
961
+ content: '\e900';
962
+ }
963
+ .lcap-icon-success:before {
964
+ content: '\e901';
965
+ }
966
+ .lcap-icon-warning:before {
967
+ content: '\e902';
968
+ }
969
+ .lcap-icon-pending:before {
970
+ content: '\e903';
971
+ }
972
+ .lcap-icon-refresh:before {
973
+ content: '\e904';
974
+ }
975
+ .lcap-icon-folder:before {
976
+ content: '\e905';
977
+ }
978
+ .lcap-icon-arrowup:before {
979
+ content: '\e906';
980
+ }
981
+ .lcap-icon-arrowdown:before {
982
+ content: '\e907';
983
+ }
984
+ .lcap-icon-arrowleft:before {
985
+ content: '\e908';
986
+ }
987
+ .lcap-icon-arrowright:before {
988
+ content: '\e909';
989
+ }
990
+ .lcap-icon-chevronup:before {
991
+ content: '\e90a';
992
+ }
993
+ .lcap-icon-chevrondown:before {
994
+ content: '\e90b';
995
+ }
996
+ .lcap-icon-chevronleft:before {
997
+ content: '\e90c';
998
+ }
999
+ .lcap-icon-chevronright:before {
1000
+ content: '\e90d';
1001
+ }
1002
+ .lcap-icon-delete:before {
1003
+ content: '\e90e';
1004
+ }
1005
+ .lcap-icon-edit:before {
1006
+ content: '\e90f';
1007
+ }
1008
+ .lcap-icon-search:before {
1009
+ content: '\e910';
1010
+ }
1011
+ .lcap-icon-check:before {
1012
+ content: '\e911';
1013
+ }
1014
+ .lcap-icon-close:before {
1015
+ content: '\e912';
1016
+ }
1017
+ .lcap-icon-add:before {
1018
+ content: '\e913';
1019
+ }
1020
+ .lcap-icon-download:before {
1021
+ content: '\e914';
1022
+ }
1023
+ .lcap-icon-success-fill:before {
1024
+ content: '\e915';
1025
+ }
1026
+ .lcap-icon-close-fill:before {
1027
+ content: '\e916';
1028
+ }
1029
+ .lcap-icon-minus-fill:before {
1030
+ content: '\e917';
1031
+ }
1032
+ .lcap-icon-add-fill:before {
1033
+ content: '\e918';
1034
+ }
1035
+ .lcap-icon-info-fill:before {
1036
+ content: '\e919';
1037
+ }
1038
+ .lcap-icon-pending-fill:before {
1039
+ content: '\e91a';
1040
+ }
1041
+ .lcap-icon-warning-fill:before {
1042
+ content: '\e91b';
1043
+ }
1044
+ .lcap-icon-more:before {
1045
+ content: '\e91c';
1046
+ }
1047
+ .lcap-icon-star:before {
1048
+ content: '\e91d';
1049
+ }
1050
+ .lcap-icon-star-fill:before {
1051
+ content: '\e91e';
1052
+ }
1053
+ .lcap-icon-location:before {
1054
+ content: '\e91f';
1055
+ }
1056
+ .lcap-icon-question:before {
1057
+ content: '\e920';
1058
+ }
1059
+
1060
+ .weda-menu-mobile {
1061
+ display: block;
1062
+ position: relative;
1063
+ z-index: 1000;
1064
+ width: 100%;
1065
+ }
1066
+
1067
+ .weda-menu-mobile .weda-menu__wrapper {
1068
+ display: flex;
1069
+ align-items: center;
1070
+ justify-content: space-between;
1071
+ padding: 0 20px 0 16px;
1072
+ height: 64px;
1073
+ background-color: #fff;
1074
+ position: relative;
1075
+ box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
1076
+ box-sizing: border-box;
1077
+ }
1078
+
1079
+ .weda-menu-mobile .weda-menu__bar-main {
1080
+ flex: 1;
1081
+ display: flex;
1082
+ align-items: center;
1083
+ }
1084
+
1085
+ .weda-menu-mobile .weda-menu__bar-main .weda-menu__main-logo {
1086
+ font-weight: normal;
1087
+ font-size: 18px;
1088
+ color: #000000;
1089
+ text-decoration: none;
1090
+ display: flex;
1091
+ align-items: center;
1092
+ }
1093
+
1094
+ .weda-menu-mobile .weda-menu__bar-main .weda-menu__main-icon {
1095
+ width: 32px;
1096
+ height: 32px;
1097
+ margin-right: 12px;
1098
+ }
1099
+
1100
+ .weda-menu-mobile .weda-menu__bar-extra {
1101
+ display: flex;
1102
+ align-items: center;
1103
+ cursor: pointer;
1104
+ }
1105
+
1106
+ .weda-menu-mobile .weda-menu__bar-extra .weda-menu__bar-btn,
1107
+ .weda-menu-mobile .weda-menu__bar-extra .weda-menu__bar-btn--close {
1108
+ width: 24px;
1109
+ height: 24px;
1110
+ font-size: 24px;
1111
+ }
1112
+ .weda-menu-mobile .weda-menu__bar-extra .weda-menu__bar-btn--close {
1113
+ font-size: 28px;
1114
+ }
1115
+ .weda-menu-mobile__drawer {
1116
+ width: 100%;
1117
+ position: fixed;
1118
+ left: 0;
1119
+ right: auto;
1120
+ bottom: 0;
1121
+ top: 0;
1122
+ flex-direction: column;
1123
+ background-color: #fff;
1124
+ box-shadow: 0 0.14286rem 0.28571rem 0 rgb(54 58 80 / 32%);
1125
+ display: flex;
1126
+ color: rgba(0, 0, 0, 0.9);
1127
+ z-index: 1001;
1128
+ }
1129
+
1130
+ .weda-menu-mobile__drawer .weda-drawer-drawer__body {
1131
+ padding: 0;
1132
+ flex: 1 1 auto;
1133
+ overflow: auto;
1134
+ }
1135
+
1136
+ .weda-menu-mobile__drawer .weda-drawer-menu--light {
1137
+ position: relative;
1138
+ width: 100%;
1139
+ background-color: #1e222d;
1140
+ display: flex;
1141
+ flex-direction: column;
1142
+ height: 100%;
1143
+ vertical-align: top;
1144
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1145
+ overflow-x: hidden;
1146
+ background-color: #fff;
1147
+ }
1148
+
1149
+ .weda-menu-mobile__drawer .weda-menu__drawer-menu .weda-drawer-menu__body {
1150
+ width: 100%;
1151
+ border: none;
1152
+ flex: 1;
1153
+ overflow: auto;
1154
+ overflow-x: hidden;
1155
+ }
1156
+
1157
+ .weda-menu-mobile__drawer .weda-menu__drawer-menu .weda-drawer-menu__item {
1158
+ padding: 14px 16px 16px 16px;
1159
+ border-bottom: 1px solid rgba(160, 160, 160, 0.2);
1160
+ display: flex;
1161
+ align-items: center;
1162
+ }
1163
+ .weda-grid-navigation__icon {
1164
+ display: flex;
1165
+ align-items: center;
1166
+ }
1167
+
1168
+ .weda-menu-mobile__drawer .weda-menu__drawer-menu .weda-drawer-menu__list {
1169
+ padding-bottom: 0;
1170
+ }
1171
+
1172
+ .weda-menu-mobile__drawer
1173
+ .weda-menu__drawer-menu
1174
+ .weda-drawer-menu__submenu
1175
+ .weda-drawer-menu__list
1176
+ .weda-drawer-menu__item {
1177
+ padding-left: 50px;
1178
+ }
1179
+
1180
+ .weda-menu-mobile__drawer
1181
+ .weda-menu__drawer-menu
1182
+ .weda-menu__submenu
1183
+ .weda-drawer-menu__list
1184
+ .weda-drawer-menu__item {
1185
+ padding-left: 70px;
1186
+ }
1187
+
1188
+ .weda-menu-mobile__drawer .weda-menu__drawer-menu .weda-drawer-menu__list-icon {
1189
+ width: 20px;
1190
+ height: 20px;
1191
+ margin-right: 4px;
1192
+ margin-top: 0;
1193
+ vertical-align: text-top;
1194
+ }
1195
+
1196
+ .weda-menu-mobile__drawer .weda-menu__drawer-menu .weda-drawer-menu__text,
1197
+ .weda-menu-mobile__drawer .weda-menu__drawer-menu .weda-drawer-menu__submenu,
1198
+ .weda-drawer-menu__item .weda-drawer-menu__text,
1199
+ .weda-menu-mobile__drawer
1200
+ .weda-drawer-menu--light
1201
+ .weda-drawer-menu__submenu.is-expanded
1202
+ > .weda-drawer-menu__item
1203
+ > .weda-drawer-menu__text,
1204
+ .weda-menu-mobile__drawer
1205
+ .weda-drawer-menu--light
1206
+ .weda-drawer-menu__submenu
1207
+ .weda-drawer-menu__list
1208
+ .weda-drawer-menu__text {
1209
+ font-size: 16px;
1210
+ line-height: 20px;
1211
+ color: rgba(0, 0, 0, 0.9);
1212
+ padding: 0;
1213
+ max-width: 100%;
1214
+ font-weight: normal;
1215
+ display: inline-block;
1216
+ }
1217
+
1218
+ .weda-menu-mobile__drawer
1219
+ .weda-menu__drawer-menu
1220
+ .weda-drawer-menu__submenu
1221
+ .weda-drawer-menu__list
1222
+ .weda-drawer-menu__text {
1223
+ font-weight: normal;
1224
+ }
1225
+
1226
+ .weda-drawer-menu__submenu {
1227
+ width: 100%;
1228
+ }
1229
+
1230
+ .wedatea2td-menu--light.wedatea2td-menu.weda-menu__drawer-menu {
1231
+ width: 100%;
1232
+ }
1233
+
1234
+ .weda-menu-mobile__drawer .weda-grid-navigation__icon .weda-icon {
1235
+ width: 16px;
1236
+ height: 16px;
1237
+ font-size: 16px;
1238
+ margin-right: 4px;
1239
+ }
1240
+
1241
+ .weda-drawer-menu__submenu > .weda-drawer-menu__list {
1242
+ display: none;
1243
+ }
1244
+ .weda-drawer-menu__submenu.expand > .weda-drawer-menu__list {
1245
+ display: block;
1246
+ }
1247
+ .weda-menu__bar-btn-expand {
1248
+ top: 10px;
1249
+ right: 10px;
1250
+ font-size: 16px;
1251
+ margin-left: auto;
1252
+ }
1253
+ .weda-drawer-menu__submenu.expand
1254
+ > .weda-drawer-menu__item
1255
+ > .weda-menu__bar-btn-expand {
1256
+ transform: scaleY(-1);
1257
+ }