@cloudbase/weda-ui 0.2.15 → 1.0.21

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