@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,327 @@
1
+ /* pc style start */
2
+ .weda-lottery {
3
+ width: 326px;
4
+ height: 326px;
5
+ position: relative;
6
+ }
7
+ .weda-lottery .weda-lottery__wrap {
8
+ position: relative;
9
+ width: 100%;
10
+ height: 100%;
11
+ background: #FF465C;
12
+ border: 1px solid rgba(255, 255, 255, 0.6);
13
+ box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.5);
14
+ border-radius: 10px;
15
+ }
16
+
17
+ .weda-lottery .weda-lottery__dot-top {
18
+ position: absolute;
19
+ top: 4px;
20
+ left: calc((100% - 217px) / 2);
21
+ }
22
+
23
+ .weda-lottery .weda-lottery__dot-bottom {
24
+ position: absolute;
25
+ bottom: 4px;
26
+ left: calc((100% - 217px) / 2);
27
+ }
28
+
29
+ .weda-lottery .weda-lottery__dot-left {
30
+ position: absolute;
31
+ left: 4px;
32
+ top: calc((100% - 217px) / 2);
33
+ }
34
+
35
+ .weda-lottery .weda-lottery__dot-right {
36
+ position: absolute;
37
+ right: 4px;
38
+ top: calc((100% - 217px) / 2);
39
+ }
40
+
41
+ .weda-lottery .weda-lottery__dot {
42
+ display: flex;
43
+ }
44
+
45
+ .weda-lottery .weda-lottery__dot-horizontal {
46
+ flex-direction: row;
47
+ }
48
+
49
+ .weda-lottery .weda-lottery__dot-vertical {
50
+ flex-direction: column;
51
+ }
52
+
53
+ .weda-lottery .weda-lottery__dot .weda-lottery__dot-item,
54
+ .weda-lottery .weda-lottery__dot-single {
55
+ width: 9px;
56
+ height: 9px;
57
+ box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
58
+ border-radius: 50%;
59
+ background: #FFFFFF;
60
+ }
61
+
62
+ .weda-lottery .weda-lottery__dot .weda-lottery__dot-item:nth-child(odd) {
63
+ background: #FFEE52;
64
+ }
65
+
66
+ .weda-lottery .weda-lottery__dot .weda-lottery__dot-item:nth-child(even) {
67
+ background: #FFFFFF
68
+ }
69
+
70
+ .weda-lottery .weda-lottery__dot-horizontal .weda-lottery__dot-item {
71
+ margin-right: 43px;
72
+ }
73
+
74
+ .weda-lottery .weda-lottery__dot-horizontal .weda-lottery__dot-item:last-child {
75
+ margin-right: 0 !important;
76
+ }
77
+
78
+ .weda-lottery .weda-lottery__dot-vertical .weda-lottery__dot-item {
79
+ margin-bottom: 43px;
80
+ }
81
+
82
+ .weda-lottery .weda-lottery__dot-vertical .weda-lottery__dot-item:last-child {
83
+ margin-bottom: 0 !important;
84
+ }
85
+
86
+ .weda-lottery .weda-lottery__dot-left-top {
87
+ position: absolute;
88
+ top: 9px;
89
+ left: 6px;
90
+ }
91
+
92
+ .weda-lottery .weda-lottery__dot-right-top {
93
+ position: absolute;
94
+ top: 9px;
95
+ right: 6px;
96
+ }
97
+
98
+ .weda-lottery .weda-lottery__dot-left-bottom {
99
+ position: absolute;
100
+ left: 6px;
101
+ bottom: 9px;
102
+ }
103
+
104
+ .weda-lottery .weda-lottery__dot-right-bottom {
105
+ position: absolute;
106
+ right: 6px;
107
+ bottom: 9px;
108
+ }
109
+
110
+ .weda-lottery .weda-lottery__inner {
111
+ padding: 18px;
112
+ width: 100%;
113
+ height: 100%;
114
+ box-sizing: border-box;
115
+ }
116
+
117
+ .weda-lottery .weda-lottery__inner .weda-lottery__inner-wrap {
118
+ position: relative;
119
+ width: 100%;
120
+ box-sizing: border-box;
121
+ background: linear-gradient(180deg, #DD0D00 0%, #D80027 100%);
122
+ border: 1px solid rgba(255, 255, 255, 0.25);
123
+ box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.5);
124
+ border-radius: 10px;
125
+ height: 100%;
126
+ }
127
+
128
+ .weda-lottery .weda-lottery__inner .weda-lottery__list {
129
+ position: absolute;
130
+ top: 0;
131
+ left: 0;
132
+ right: 0;
133
+ bottom: 0;
134
+ z-index: 1;
135
+ box-sizing: border-box;
136
+ }
137
+
138
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item {
139
+ position: absolute;
140
+ width: calc((100% - 32px)/ 3);
141
+ height: calc((100% - 32px)/ 3);
142
+ font-size: 0;
143
+ text-align: center;
144
+ background: #FFF8EE;
145
+ box-shadow: inset 0px -2px 0px #FFDDBD;
146
+ border-radius: 8px;
147
+ }
148
+
149
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item.is-actived {
150
+ background: #FFF8EE;
151
+ box-shadow: 0px 0px 6px #FFFFFF;
152
+ }
153
+
154
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item.is-selected {
155
+ background: #FF6666;
156
+ box-shadow: inset 0px -2px 0px #FFA4A4;
157
+ }
158
+
159
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:first-child {
160
+ top: 8px;
161
+ left: 8px;
162
+ }
163
+
164
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(2) {
165
+ top: 8px;
166
+ left: calc((100% - 32px)/ 3 + 16px);
167
+ }
168
+
169
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(3) {
170
+ top: 8px;
171
+ right: 8px;
172
+ }
173
+
174
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(4) {
175
+ top: calc((100% - 32px)/ 3 + 16px);
176
+ right: 8px;
177
+ }
178
+
179
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(5) {
180
+ bottom: 8px;
181
+ right: 8px;
182
+ }
183
+
184
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(6) {
185
+ bottom: 8px;
186
+ left: calc((100% - 32px)/ 3 + 16px);
187
+ }
188
+
189
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(7) {
190
+ bottom: 8px;
191
+ left: 8px;
192
+ }
193
+
194
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item:nth-child(8) {
195
+ bottom: calc((100% - 32px)/ 3 + 16px);
196
+ left: 8px;
197
+ }
198
+
199
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-cell {
200
+ width: 100%;
201
+ height: 100%;
202
+ max-width: 100%;
203
+ max-height: 100%;
204
+ box-sizing: border-box;
205
+ border-style: solid;
206
+ border-color: transparent;
207
+ border-radius: 8px;
208
+ display: flex;
209
+ flex-direction: column;
210
+ align-items: center;
211
+ }
212
+
213
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item.is-actived .weda-lottery__turntable-cell {
214
+ border-color: #FFE05F;
215
+ }
216
+
217
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-cell-image {
218
+ height: 40px;
219
+ display: flex;
220
+ align-items: center;
221
+ justify-content: center;
222
+ }
223
+
224
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-cell-icon {
225
+ display: block;
226
+ width: 40px;
227
+ height: 40px;
228
+ object-fit: contain;
229
+ }
230
+
231
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-cell-desc {
232
+ margin-top: 6px;
233
+ font-weight: 400;
234
+ font-size: 12px;
235
+ line-height: 17px;
236
+ text-align: center;
237
+ color: #BA0000;
238
+ white-space: nowrap;
239
+ text-overflow: ellipsis;
240
+ overflow: hidden;
241
+ width: 100%;
242
+ }
243
+
244
+ .weda-lottery .weda-lottery__inner .weda-lottery__turntable-item.is-selected .weda-lottery__turntable-cell-desc {
245
+ color: #FFFFFF;
246
+ }
247
+
248
+ .weda-lottery .weda-lottery__turntable-btn {
249
+ z-index: 2;
250
+ position: absolute;
251
+ width: calc((100% - 32px)/ 3);
252
+ height: calc((100% - 32px)/ 3);
253
+ top: calc((100% - 32px)/ 3 + 16px);
254
+ left: calc((100% - 32px)/ 3 + 16px);
255
+ background: linear-gradient(180deg, #FFEE81 0%, #FFD646 100%);
256
+ box-shadow: inset 0px -2px 0px #FF7A00;
257
+ border-radius: 50%;
258
+ }
259
+
260
+ .weda-lottery .weda-lottery__turntable-btn.is-actived {
261
+ background: linear-gradient(180deg, #FFEE81 0%, #FFD646 100%);
262
+ box-shadow: inset 0px 2px 0px #FFFFFF;
263
+ }
264
+
265
+ .weda-lottery .weda-lottery__btn-inner {
266
+ padding: 9px;
267
+ width: 100%;
268
+ height: 100%;
269
+ }
270
+
271
+ .weda-lottery .weda-lottery__btn {
272
+ width: 100%;
273
+ height: 100%;
274
+ background: linear-gradient(180deg, #FF922D 0%, #FF3C76 100%);
275
+ box-shadow: inset 0px 0px 8px rgba(234, 27, 53, 0.5);
276
+ border-radius: 50%;
277
+ display: flex;
278
+ align-items: center;
279
+ justify-content: center;
280
+ }
281
+
282
+ .weda-lottery .weda-lottery__turntable-btn.is-actived .weda-lottery__btn {
283
+ background: linear-gradient(180deg, #FF922D 0%, #FF3C76 100%);
284
+ box-shadow: inset 0px 0px 8px rgba(234, 27, 53, 0.5);
285
+ }
286
+
287
+ .weda-lottery .weda-lottery__btn-image {
288
+ padding: 11px 15px;
289
+ width: 100%;
290
+ height: 100%;
291
+ box-sizing: border-box;
292
+ display: flex;
293
+ align-items: center;
294
+ text-decoration: none
295
+ }
296
+
297
+ .weda-lottery .weda-lottery__btn-image .weda-lottery__btn-text {
298
+ font-weight: 600;
299
+ font-size: 18px;
300
+ line-height: 22px;
301
+ text-align: center;
302
+ color: #FFFFFF;
303
+ text-shadow: 0px 0.5px 0px #E42B27;
304
+ max-height: 100%;
305
+ display: -webkit-box;
306
+ overflow: hidden;
307
+ text-overflow: ellipsis;
308
+ -webkit-box-orient: vertical;
309
+ -webkit-line-clamp: 2;
310
+ width: 100%;
311
+ }
312
+
313
+ .weda-lottery .weda-lottery__turntable-btn.is-actived .weda-lottery__btn-image {
314
+ opacity: 0.6;
315
+ }
316
+ /* pc style end */
317
+
318
+ /* mobile style start */
319
+ .weda-lottery-mobile {
320
+ width: 100%;
321
+ }
322
+
323
+ .weda-lottery-mobile .weda-lottery__wrap,
324
+ .weda-lottery-mobile .weda-lottery__content {
325
+ width: 100%;
326
+ }
327
+ /* mobile style end */