@taole/newgiftbar 0.0.1-rc.1

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.
@@ -0,0 +1,1328 @@
1
+ @charset "UTF-8";.giftbar-lib-root {
2
+ width: 665px;
3
+ display: none;
4
+ }
5
+
6
+ /* 弹层挂在 body 上,不要吃宿主 html/body。IM 全局是 14px,厅内默认 16px;旧 IM 栏开盒按钮也写死 16px */
7
+ [data-giftbar-modal] {
8
+ font-size: 16px;
9
+ }
10
+
11
+ .giftbar-shell {
12
+ position: relative;
13
+ width: 665px;
14
+ }
15
+
16
+ .giftbar-panel {
17
+ width: 665px;
18
+ background: #fff;
19
+ border: solid 1px #ddd;
20
+ display: -webkit-box;
21
+ display: -ms-flexbox;
22
+ display: flex;
23
+ -webkit-box-orient: vertical;
24
+ -webkit-box-direction: normal;
25
+ -ms-flex-direction: column;
26
+ flex-direction: column;
27
+ }
28
+
29
+ .giftbar-flex {
30
+ display: -webkit-box;
31
+ display: -ms-flexbox;
32
+ display: flex;
33
+ }
34
+
35
+ .giftbar-head {
36
+ display: -webkit-box;
37
+ display: -ms-flexbox;
38
+ display: flex;
39
+ background: #eee;
40
+ -webkit-box-align: center;
41
+ -ms-flex-align: center;
42
+ align-items: center;
43
+ }
44
+
45
+ .giftbar-tabs {
46
+ display: -webkit-box;
47
+ display: -ms-flexbox;
48
+ display: flex;
49
+ -webkit-box-align: center;
50
+ -ms-flex-align: center;
51
+ align-items: center;
52
+ text-align: center;
53
+ height: 50px;
54
+ padding: 0 16px;
55
+ color: #333;
56
+ max-width: 528px;
57
+ }
58
+
59
+ .giftbar-tab {
60
+ width: 80px;
61
+ position: relative;
62
+ cursor: pointer;
63
+ }
64
+
65
+ .giftbar-tab span {
66
+ padding-bottom: 2px;
67
+ /* 不要继承宿主 html/body。IM 全局是 14px,旧栏 Tab 写死 16px;厅内默认也是 16px */
68
+ font-size: 16px;
69
+ }
70
+
71
+ .giftbar-tab-on span {
72
+ border-bottom: solid 2px #333;
73
+ }
74
+
75
+ .giftbar-tab-dot {
76
+ position: absolute;
77
+ background: red;
78
+ width: 6px;
79
+ height: 6px;
80
+ border-radius: 50%;
81
+ right: 14px;
82
+ top: 0;
83
+ }
84
+
85
+ .giftbar-tip {
86
+ -webkit-box-flex: 1;
87
+ -ms-flex: 1;
88
+ flex: 1;
89
+ display: -webkit-box;
90
+ display: -ms-flexbox;
91
+ display: flex;
92
+ -webkit-box-pack: end;
93
+ -ms-flex-pack: end;
94
+ justify-content: flex-end;
95
+ -webkit-box-align: center;
96
+ -ms-flex-align: center;
97
+ align-items: center;
98
+ text-align: right;
99
+ }
100
+
101
+ .giftbar-tip a {
102
+ margin-right: 10px;
103
+ color: #999;
104
+ font-size: 14px;
105
+ text-decoration: none;
106
+ display: -webkit-box;
107
+ display: -ms-flexbox;
108
+ display: flex;
109
+ -webkit-box-align: center;
110
+ -ms-flex-align: center;
111
+ align-items: center;
112
+ }
113
+
114
+ .giftbar-tip a img {
115
+ width: 40px;
116
+ height: auto;
117
+ margin-right: 5px;
118
+ }
119
+
120
+ /* 对标旧栏 #level_up */
121
+ .giftbar-nobility {
122
+ display: -webkit-box;
123
+ display: -ms-flexbox;
124
+ display: flex;
125
+ -webkit-box-align: center;
126
+ -ms-flex-align: center;
127
+ align-items: center;
128
+ -webkit-box-pack: center;
129
+ -ms-flex-pack: center;
130
+ justify-content: center;
131
+ cursor: pointer;
132
+ margin-right: 10px;
133
+ font-size: 12px;
134
+ color: #d58608;
135
+ -ms-flex-negative: 0;
136
+ flex-shrink: 0;
137
+ }
138
+
139
+ .giftbar-nobility img {
140
+ width: 16px;
141
+ height: 16px;
142
+ margin-right: 2px;
143
+ }
144
+
145
+ .giftbar-grid {
146
+ display: -webkit-box;
147
+ display: -ms-flexbox;
148
+ display: flex;
149
+ -ms-flex-wrap: wrap;
150
+ flex-wrap: wrap;
151
+ padding: 10px;
152
+ height: 234px;
153
+ width: 646px;
154
+ overflow-y: auto;
155
+ overflow-x: hidden;
156
+ }
157
+
158
+ .giftbar-grid::-webkit-scrollbar {
159
+ width: 6px;
160
+ background-color: #f9f9f9;
161
+ }
162
+
163
+ .giftbar-grid::-webkit-scrollbar-thumb {
164
+ border-radius: 10px;
165
+ background-color: #ccc;
166
+ }
167
+
168
+ .giftbar-item {
169
+ position: relative;
170
+ padding: 10px;
171
+ text-align: center;
172
+ color: #333;
173
+ font-size: 14px;
174
+ width: 72px;
175
+ height: 96px;
176
+ margin-right: 12px;
177
+ border: solid 1px #fff;
178
+ cursor: pointer;
179
+ -webkit-box-sizing: content-box;
180
+ box-sizing: content-box;
181
+ }
182
+
183
+ .giftbar-item-on {
184
+ border: solid 1px #f91b00;
185
+ border-radius: 10px;
186
+ }
187
+
188
+ /* 对标 css/common/_coverVendor.scss .tooltip,挂 body 避免被网格裁切 */
189
+ .giftbar-item-tooltip {
190
+ position: fixed;
191
+ -webkit-transform: translate(-50%, -100%);
192
+ transform: translate(-50%, -100%);
193
+ padding: 5px;
194
+ font-size: 12px;
195
+ opacity: 1;
196
+ pointer-events: none;
197
+ z-index: 1100;
198
+ }
199
+ .giftbar-item-tooltip-inner {
200
+ padding: 5px 10px;
201
+ pointer-events: none;
202
+ text-align: left;
203
+ background-color: #fff;
204
+ font-size: 12px;
205
+ color: #666;
206
+ border-radius: 3px;
207
+ -webkit-box-shadow: 0 7px 21px rgba(0, 0, 0, 0.1);
208
+ box-shadow: 0 7px 21px rgba(0, 0, 0, 0.1);
209
+ line-height: 20px;
210
+ }
211
+ .giftbar-item-tooltip-arrow {
212
+ position: absolute;
213
+ bottom: -1px;
214
+ left: 50%;
215
+ -webkit-transform: translateX(-50%);
216
+ transform: translateX(-50%);
217
+ width: 12px;
218
+ height: 6px;
219
+ background: url(https://res.tuwan.com/templet/play/chat/v10/images/tooltip.png?v=1) no-repeat 0 0;
220
+ z-index: 3;
221
+ }
222
+
223
+ .giftbar-item-pic.gift-select-animation {
224
+ -webkit-animation: giftSelectEffect 0.3s ease-in-out;
225
+ animation: giftSelectEffect 0.3s ease-in-out;
226
+ }
227
+
228
+ @-webkit-keyframes giftSelectEffect {
229
+ 0% {
230
+ -webkit-transform: scale(1);
231
+ transform: scale(1);
232
+ }
233
+ 50% {
234
+ -webkit-transform: scale(1.2);
235
+ transform: scale(1.2);
236
+ }
237
+ 100% {
238
+ -webkit-transform: scale(1);
239
+ transform: scale(1);
240
+ }
241
+ }
242
+
243
+ @keyframes giftSelectEffect {
244
+ 0% {
245
+ -webkit-transform: scale(1);
246
+ transform: scale(1);
247
+ }
248
+ 50% {
249
+ -webkit-transform: scale(1.2);
250
+ transform: scale(1.2);
251
+ }
252
+ 100% {
253
+ -webkit-transform: scale(1);
254
+ transform: scale(1);
255
+ }
256
+ }
257
+
258
+ .giftbar-item img.giftbar-item-pic {
259
+ height: 64px;
260
+ width: 64px;
261
+ -o-object-fit: cover;
262
+ object-fit: cover;
263
+ }
264
+
265
+ .giftbar-item-title {
266
+ width: 80px;
267
+ margin-left: -4px;
268
+ overflow: hidden;
269
+ text-overflow: ellipsis;
270
+ white-space: nowrap;
271
+ }
272
+
273
+ .giftbar-item-unit {
274
+ font-size: 12px;
275
+ color: #666;
276
+ display: -webkit-box;
277
+ display: -ms-flexbox;
278
+ display: flex;
279
+ -webkit-box-pack: center;
280
+ -ms-flex-pack: center;
281
+ justify-content: center;
282
+ -webkit-box-align: center;
283
+ -ms-flex-align: center;
284
+ align-items: center;
285
+ width: 90px;
286
+ margin-left: -9px;
287
+ }
288
+
289
+ .giftbar-item-unit img {
290
+ width: 12px;
291
+ height: 9px;
292
+ margin-right: 3px;
293
+ }
294
+
295
+ .giftbar-item-unit img.is-crystal {
296
+ height: 12px;
297
+ }
298
+
299
+ .giftbar-item-tag {
300
+ position: absolute;
301
+ top: 0;
302
+ right: 0;
303
+ background: rgba(255, 90, 136, 1);
304
+ color: #fff;
305
+ font-size: 12px;
306
+ line-height: 1.4;
307
+ padding: 1px 4px;
308
+ border-radius: 4px;
309
+ white-space: nowrap;
310
+ -webkit-transform: scale(0.9);
311
+ transform: scale(0.9);
312
+ -webkit-transform-origin: top right;
313
+ transform-origin: top right;
314
+ z-index: 1;
315
+ font-weight: bold;
316
+ }
317
+
318
+ .giftbar-empty {
319
+ color: #999;
320
+ text-align: center;
321
+ margin-top: 100px;
322
+ width: 100%;
323
+ }
324
+
325
+ .giftbar-count.is-locked input {
326
+ cursor: default;
327
+ }
328
+
329
+ .giftbar-empty-img {
330
+ margin: 47px auto 0;
331
+ width: 140px;
332
+ height: 140px;
333
+ display: block;
334
+ }
335
+
336
+ .giftbar-footer {
337
+ height: 40px;
338
+ background: #efefef;
339
+ display: -webkit-box;
340
+ display: -ms-flexbox;
341
+ display: flex;
342
+ -webkit-box-align: center;
343
+ -ms-flex-align: center;
344
+ align-items: center;
345
+ }
346
+
347
+ .giftbar-sendgift-user {
348
+ display: -webkit-box;
349
+ display: -ms-flexbox;
350
+ display: flex;
351
+ -webkit-box-align: center;
352
+ -ms-flex-align: center;
353
+ align-items: center;
354
+ }
355
+
356
+ .giftbar-send-label {
357
+ font-size: 14px;
358
+ margin-left: 6px;
359
+ color: #666;
360
+ }
361
+
362
+ .giftbar-btns {
363
+ display: -webkit-box;
364
+ display: -ms-flexbox;
365
+ display: flex;
366
+ -webkit-box-align: center;
367
+ -ms-flex-align: center;
368
+ align-items: center;
369
+ }
370
+
371
+ .giftbar-user-static {
372
+ cursor: default;
373
+ }
374
+
375
+ .giftbar-count,
376
+ .giftbar-user {
377
+ height: 30px;
378
+ line-height: 30px;
379
+ margin-left: 6px;
380
+ padding-left: 10px;
381
+ background: #fff;
382
+ position: relative;
383
+ display: -webkit-box;
384
+ display: -ms-flexbox;
385
+ display: flex;
386
+ -webkit-box-align: center;
387
+ -ms-flex-align: center;
388
+ align-items: center;
389
+ cursor: pointer;
390
+ }
391
+
392
+ .giftbar-count span,
393
+ .giftbar-user span {
394
+ font-size: 14px;
395
+ color: #666;
396
+ }
397
+
398
+ .giftbar-count input {
399
+ border: none;
400
+ outline: none;
401
+ height: 24px;
402
+ width: 18px;
403
+ text-align: center;
404
+ color: #333;
405
+ }
406
+
407
+ .giftbar-count-list,
408
+ .giftbar-user-list {
409
+ position: absolute;
410
+ background: #fff;
411
+ border: solid 1px #ddd;
412
+ bottom: 38px;
413
+ left: 0;
414
+ padding: 6px 10px;
415
+ z-index: 9;
416
+ line-height: 24px;
417
+ }
418
+
419
+ .giftbar-count-list {
420
+ width: 280px;
421
+ display: -webkit-box;
422
+ display: -ms-flexbox;
423
+ display: flex;
424
+ -webkit-box-pack: justify;
425
+ -ms-flex-pack: justify;
426
+ justify-content: space-between;
427
+ }
428
+
429
+ .giftbar-count-list span {
430
+ display: inline-block;
431
+ background: #fdfdfd;
432
+ text-align: center;
433
+ width: 50px;
434
+ border-radius: 4px;
435
+ border: solid 1px #eee;
436
+ }
437
+
438
+ .giftbar-count-list span:hover,
439
+ .giftbar-count-list span.on {
440
+ border: solid 1px #ff6600;
441
+ color: #ff6600;
442
+ }
443
+
444
+ .giftbar-user-name {
445
+ max-width: 88px;
446
+ overflow: hidden;
447
+ text-overflow: ellipsis;
448
+ white-space: nowrap;
449
+ }
450
+
451
+ .giftbar-user-list {
452
+ right: 0;
453
+ left: auto;
454
+ width: 200px;
455
+ /* 对标旧栏 .gift-send-teacher-list */
456
+ max-height: 600px;
457
+ overflow-y: auto;
458
+ padding: 10px 0;
459
+ line-height: 30px;
460
+ text-align: center;
461
+ font-size: 14px;
462
+ }
463
+
464
+ .giftbar-user-list::-webkit-scrollbar {
465
+ width: 6px;
466
+ background-color: #f9f9f9;
467
+ }
468
+
469
+ .giftbar-user-list::-webkit-scrollbar-thumb {
470
+ border-radius: 10px;
471
+ -webkit-box-shadow: inset 0 0 6px rgba(220, 220, 220, 0.3);
472
+ box-shadow: inset 0 0 6px rgba(220, 220, 220, 0.3);
473
+ background-color: #ccc;
474
+ }
475
+
476
+ .giftbar-user-list p {
477
+ line-height: 30px;
478
+ text-align: center;
479
+ padding: 0;
480
+ margin: 0;
481
+ font-size: 14px;
482
+ }
483
+
484
+ .giftbar-user-list p:hover {
485
+ background: #eee;
486
+ }
487
+
488
+ .giftbar-box-title {
489
+ margin-left: 10px;
490
+ height: 30px;
491
+ padding: 0 10px;
492
+ background: #fff;
493
+ border-radius: 3px;
494
+ display: -webkit-box;
495
+ display: -ms-flexbox;
496
+ display: flex;
497
+ -webkit-box-align: center;
498
+ -ms-flex-align: center;
499
+ align-items: center;
500
+ font-size: 14px;
501
+ color: #666;
502
+ }
503
+
504
+ .giftbar-send-btn,
505
+ .giftbar-use-btn {
506
+ background: #f91b00;
507
+ font-size: 14px;
508
+ color: #fff;
509
+ height: 30px;
510
+ line-height: 30px;
511
+ padding: 0 10px;
512
+ margin-left: 6px;
513
+ border-radius: 4px;
514
+ cursor: pointer;
515
+ }
516
+
517
+ .giftbar-open-btn {
518
+ background: #5081ff;
519
+ font-size: 14px;
520
+ color: #fff;
521
+ height: 30px;
522
+ line-height: 30px;
523
+ padding: 0 10px;
524
+ margin-left: 6px;
525
+ border-radius: 4px;
526
+ cursor: pointer;
527
+ }
528
+
529
+ .giftbar-money {
530
+ font-size: 12px;
531
+ margin-left: 10px;
532
+ color: #333;
533
+ display: -webkit-box;
534
+ display: -ms-flexbox;
535
+ display: flex;
536
+ }
537
+
538
+ .giftbar-money p {
539
+ margin: 0;
540
+ }
541
+
542
+ .giftbar-money span {
543
+ color: #ff0000;
544
+ }
545
+
546
+ .giftbar-money-diamond {
547
+ display: -webkit-box;
548
+ display: -ms-flexbox;
549
+ display: flex;
550
+ -webkit-box-orient: vertical;
551
+ -webkit-box-direction: normal;
552
+ -ms-flex-direction: column;
553
+ flex-direction: column;
554
+ width: 106px;
555
+ }
556
+
557
+ .giftbar-money-coin {
558
+ width: 118px;
559
+ display: -webkit-box;
560
+ display: -ms-flexbox;
561
+ display: flex;
562
+ -webkit-box-orient: vertical;
563
+ -webkit-box-direction: normal;
564
+ -ms-flex-direction: column;
565
+ flex-direction: column;
566
+ -webkit-box-pack: end;
567
+ -ms-flex-pack: end;
568
+ justify-content: flex-end;
569
+ }
570
+
571
+ .giftbar-btns,
572
+ .giftbar-money {
573
+ -ms-flex-negative: 0;
574
+ flex-shrink: 0;
575
+ }
576
+
577
+ .giftbar-recharge {
578
+ text-align: right;
579
+ -webkit-box-flex: 1;
580
+ -ms-flex: 1 1 auto;
581
+ flex: 1 1 auto;
582
+ min-width: -webkit-fit-content;
583
+ min-width: -moz-fit-content;
584
+ min-width: fit-content;
585
+ }
586
+
587
+ .giftbar-recharge a {
588
+ font-size: 14px;
589
+ background: #faba05;
590
+ padding: 6px 10px;
591
+ border-radius: 5px;
592
+ color: #f91b00;
593
+ margin-right: 10px;
594
+ text-decoration: none;
595
+ }
596
+
597
+ .giftbar-arrow {
598
+ padding: 0 10px;
599
+ }
600
+
601
+ .giftbar-banner {
602
+ /* 对齐旧 .topHeadImgCtn:浮在白底面板上方,透明 PNG 才能透出聊天区 */
603
+ position: absolute;
604
+ left: 0;
605
+ top: -110px;
606
+ width: 100%;
607
+ height: 110px;
608
+ background: transparent;
609
+ overflow: visible;
610
+ }
611
+
612
+ .giftbar-banner img {
613
+ width: 100%;
614
+ height: 100%;
615
+ display: block;
616
+ background: transparent;
617
+ }
618
+ .giftbar-consume-mask.svelte-176nyps{position:fixed;inset:0;z-index:1000000;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0, 0, 0, 0.5)}.giftbar-consume-dialog.svelte-176nyps{width:300px;height:155px;background:#fff;border-radius:14px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;-webkit-box-shadow:0 8px 32px rgba(0, 0, 0, 0.12);box-shadow:0 8px 32px rgba(0, 0, 0, 0.12)}.giftbar-consume-body.svelte-176nyps{text-align:center;height:102px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.giftbar-consume-msg.svelte-176nyps{margin:0 auto;width:210px;font-size:16px;line-height:24px;color:#333;text-align:center}.giftbar-consume-footer.svelte-176nyps{display:-webkit-box;display:-ms-flexbox;display:flex;height:48px;width:100%;border-top:1px solid #e8e8e8;position:absolute;bottom:0}.giftbar-consume-btn.svelte-176nyps{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:0;padding:0;border:none;background:transparent;font-size:16px;line-height:48px;cursor:pointer}.giftbar-consume-cancel.svelte-176nyps{color:#888;border-right:1px solid #e8e8e8}.giftbar-consume-ok.svelte-176nyps{color:#ff5a77;font-weight:600}.giftbar-pardon-mask.svelte-g6r0kj.svelte-g6r0kj{position:fixed;inset:0;z-index:1000000;background:rgba(0, 0, 0, 0.5)}.giftbar-pardon-dialog.svelte-g6r0kj.svelte-g6r0kj{position:absolute;left:50%;top:50%;z-index:1000001;margin-left:-300px;margin-top:-234px;width:600px;height:468px;background:#fff;border-radius:30px;text-align:center;-webkit-transform:scale(0.6);transform:scale(0.6);padding:20px 40px;-webkit-box-sizing:border-box;box-sizing:border-box}.listOuterCtn.svelte-g6r0kj.svelte-g6r0kj{width:100%;overflow-x:auto;padding-bottom:5px;min-height:80px}.titleCtn.svelte-g6r0kj.svelte-g6r0kj{width:100%;font-weight:bold;font-size:40px;color:#000}.subTitleCtn.svelte-g6r0kj.svelte-g6r0kj{font-size:28px;color:#000;margin:40px 0 20px}.listCtn.svelte-g6r0kj.svelte-g6r0kj{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:4px}.listCtn.flexCenter.svelte-g6r0kj.svelte-g6r0kj{-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.listCtn.flexCenter.svelte-g6r0kj .item.svelte-g6r0kj{margin-right:0}.item.svelte-g6r0kj.svelte-g6r0kj{width:100px;margin-right:30px;padding-top:5px;cursor:pointer;position:relative}.imgCtn.svelte-g6r0kj.svelte-g6r0kj,.innerImg.svelte-g6r0kj.svelte-g6r0kj{width:100px;height:100px;border-radius:50%}.typeTagCtn.svelte-g6r0kj.svelte-g6r0kj{position:absolute;right:-30px;top:0;background:#ff6691;padding:5px 13px;color:#fff;font-size:18px;border-top-left-radius:22px;border-bottom-right-radius:22px}.item.active.svelte-g6r0kj .innerImg.svelte-g6r0kj{outline:4px solid #ff7a9f}.nickCtn.svelte-g6r0kj.svelte-g6r0kj{font-weight:500;font-size:22px;color:#000;margin-top:8px}.confirmBtn.svelte-g6r0kj.svelte-g6r0kj{width:300px;height:80px;background:#ff6691;border-radius:40px;font-weight:bold;font-size:34px;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:30px auto 0;cursor:pointer}.confirmBtn.is-paying.svelte-g6r0kj.svelte-g6r0kj{opacity:0.7;pointer-events:none}.noDataTipsCtn.svelte-g6r0kj.svelte-g6r0kj{font-size:30px;height:110px;line-height:110px}.giftbar-confirm-mask.svelte-qctpdt.svelte-qctpdt{position:fixed;inset:0;z-index:1000000;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0, 0, 0, 0.5)}.giftbar-confirm-dialog.svelte-qctpdt.svelte-qctpdt{width:320px;background:#fff;border-radius:14px;overflow:hidden;position:relative;padding-bottom:36px}.giftbar-confirm-title.svelte-qctpdt.svelte-qctpdt{text-align:center;font-size:16px;color:#333;padding:18px 16px 0;font-weight:600}.giftbar-confirm-body.svelte-qctpdt.svelte-qctpdt{min-height:72px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;padding:12px 24px;font-size:15px;line-height:22px;color:#333}.giftbar-confirm-footer.svelte-qctpdt.svelte-qctpdt{display:-webkit-box;display:-ms-flexbox;display:flex;height:48px;border-top:1px solid #e8e8e8}.giftbar-confirm-btn.svelte-qctpdt.svelte-qctpdt{-webkit-box-flex:1;-ms-flex:1;flex:1;border:none;background:transparent;font-size:16px;cursor:pointer;line-height:48px}.giftbar-confirm-cancel.svelte-qctpdt.svelte-qctpdt{color:#888;border-right:1px solid #e8e8e8}.giftbar-confirm-ok.svelte-qctpdt.svelte-qctpdt{color:#ff5a77;font-weight:600}.giftbar-confirm-choice.svelte-qctpdt.svelte-qctpdt{position:absolute;left:0;right:0;bottom:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:12px;color:#999;cursor:pointer}.giftbar-confirm-choice.svelte-qctpdt i.svelte-qctpdt{width:12px;height:12px;border:1px solid #ccc;border-radius:2px;margin-right:6px;display:inline-block}.giftbar-confirm-choice.actived.svelte-qctpdt i.svelte-qctpdt{background:#ff5a77;border-color:#ff5a77}.giftbar-iframe-mask.svelte-1ma5gxj{position:fixed;inset:0;z-index:9999;background:transparent;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.giftbar-iframe-wrap.svelte-1ma5gxj{background:transparent;overflow:hidden}iframe.svelte-1ma5gxj{border:0;display:block;background:transparent}@-webkit-keyframes svelte-1vc2nij-result_anmi{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes svelte-1vc2nij-result_anmi{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.gift_item_container.svelte-1vc2nij.svelte-1vc2nij{width:168px;height:168px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:60px}.gift_item_container.svelte-1vc2nij .gift_item_wrapper.svelte-1vc2nij{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;-webkit-animation-name:svelte-1vc2nij-result_anmi;animation-name:svelte-1vc2nij-result_anmi;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:100ms;animation-duration:100ms;width:100%;height:100%;background-size:100% 100%;-webkit-transform:scale(0);transform:scale(0)}.gift_item_container.svelte-1vc2nij .gift_item_wrapper img.svelte-1vc2nij{width:100px;height:100px}.gift_item_container.svelte-1vc2nij .gift_item_wrapper .num.svelte-1vc2nij{font-size:22px;font-weight:400;color:#FFFFFF;line-height:26px;position:absolute;bottom:14px;left:16px}.gift_item_container.bigger.svelte-1vc2nij.svelte-1vc2nij{width:250px;height:250px}.gift_item_container.bigger.svelte-1vc2nij .gift_item_wrapper.svelte-1vc2nij{width:100%;height:100%}.gift_item_container.bigger.svelte-1vc2nij .gift_item_wrapper img.svelte-1vc2nij{width:195px;height:195px}.gift_item_container.svelte-1vc2nij .gift_item_wrapper.costly.svelte-1vc2nij{background:url("https://asset.tuwan.com/goldMagic/result_item_bg1.png");background-size:100% 100%}.gift_item_container.bigger.svelte-1vc2nij.svelte-1vc2nij{margin-top:-21px}.gift_item_container.bigger.svelte-1vc2nij .gift_item_wrapper .gift_item_costly_border.svelte-1vc2nij{width:200px;height:200px;left:-30px}.gift_item_container.bigger.svelte-1vc2nij .gift_item_wrapper .num.svelte-1vc2nij{font-size:22px;font-weight:400;color:#FFFFFF;line-height:26px;position:absolute;bottom:25px;right:0;padding-left:7px}.gift_item_container.bigger.svelte-1vc2nij .gift_item_wrapper .gift_item_desc.svelte-1vc2nij{position:absolute;font-size:24px;font-weight:400;color:#FFFFFF;line-height:28px;opacity:0.6;width:420px;text-align:center;bottom:-50px}.subNumCtn.svelte-n207n1.svelte-n207n1{position:absolute;left:141px;bottom:-23px;font-size:18px;color:#ededed}.blindBoxFooter.svelte-n207n1.svelte-n207n1{position:absolute;bottom:42px;width:100%;left:0}.blindBoxFooter.svelte-n207n1 .radioImg.svelte-n207n1{margin-right:6px}.blindBoxFooter.svelte-n207n1 .footerBottomCtn.svelte-n207n1{margin-top:5px;text-align:center;font-size:24px;color:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioOutCtn.svelte-n207n1{display:-webkit-box;display:-ms-flexbox;display:flex;width:20px;margin-right:10px}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .footerBottomSubCtn.svelte-n207n1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:268px;cursor:pointer}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn.svelte-n207n1{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn .changeWordCtn.svelte-n207n1{margin-left:-4px}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn .radioImg.svelte-n207n1{margin-right:8px}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn .radioImg.default.svelte-n207n1{width:26px}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn .radioImg.selected.svelte-n207n1{display:none;width:26px}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn.active .default.svelte-n207n1{display:none}.blindBoxFooter.svelte-n207n1 .footerBottomCtn .radioCtn.active .selected.svelte-n207n1{display:inline-block}.outer_result_container.svelte-n207n1.svelte-n207n1{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:100%;height:100%;position:absolute;background-size:100% 100%}.result_container.svelte-n207n1.svelte-n207n1{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:99999;width:100%;height:100%;position:absolute;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.result_container.svelte-n207n1 .mainTitleCtn.svelte-n207n1{width:337px;height:166px;position:relative;margin:0 auto}.result_container.svelte-n207n1 .mainTitleCtn .titleImg.svelte-n207n1{position:absolute;top:0;left:0;z-index:2;width:100%;height:100%}.result_container.svelte-n207n1 .mainTitleCtn .bgImg.svelte-n207n1{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%}.result_container.svelte-n207n1 .title img.svelte-n207n1{height:64.6px}.result_container.svelte-n207n1 .result_wrapper.svelte-n207n1{width:553px;height:588px;display:-webkit-box;display:-ms-flexbox;display:flex;overflow-y:auto;margin-top:44px;margin-left:-10px}.result_container.svelte-n207n1 .result_wrapper .result_content.svelte-n207n1{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:9px;padding-left:20px}.result_container.svelte-n207n1 .result_info_container span.svelte-n207n1{font-size:13px;font-weight:400;color:#ffffff;line-height:16px;opacity:0.5}.result_container.svelte-n207n1 .vapOutContainer2.svelte-n207n1{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9}.result_container.svelte-n207n1 .vapOutContainer2 .vapUpBg.svelte-n207n1{position:absolute;left:0;top:0;width:100%;height:100%;z-index:10;background-size:100% 100%}.result_container.svelte-n207n1 .vapOutContainer2 .result_vap_anim2.svelte-n207n1{pointer-events:none;width:87%;height:91%;position:absolute;z-index:9;left:50%;top:53%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);overflow:hidden;z-index:9}.result_container.svelte-n207n1 .vapOutContainer2 .result_vap_anim2.svelte-n207n1 canvas{width:100% !important;height:100% !important}.footerBottomCtn.svelte-n207n1.svelte-n207n1{margin-top:-4px;text-align:center;font-size:14px;color:#9d8bcd;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.footerBottomCtn.svelte-n207n1 .radioCtn.svelte-n207n1{width:127px;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footerBottomCtn.svelte-n207n1 .radioCtn .changeWordCtn.svelte-n207n1{margin-left:5px}.footerBottomCtn.svelte-n207n1 .radioCtn .radioImg.default.svelte-n207n1{width:13px}.footerBottomCtn.svelte-n207n1 .radioCtn .radioImg.selected.svelte-n207n1{display:none;width:13px}.footerBottomCtn.svelte-n207n1 .radioCtn.active .default.svelte-n207n1{display:none}.footerBottomCtn.svelte-n207n1 .radioCtn.active .selected.svelte-n207n1{display:inline-block}.buttonCtn.svelte-n207n1.svelte-n207n1{text-align:center}.buttonCtn.svelte-n207n1 .normalBtn.svelte-n207n1{cursor:pointer;display:inline-block;width:268px;height:116px;background-size:100% 100%;overflow:hidden}.buttonCtn.svelte-n207n1 .normalBtn .rightCtn.svelte-n207n1{width:100%;height:100%;font-weight:bold;text-align:center;font-size:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.buttonCtn.svelte-n207n1 .inputNumCtn.svelte-n207n1{width:490px;height:79px;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);border-radius:7px;margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-size:100% 100%}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper.svelte-n207n1{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper .inp.svelte-n207n1{background:no-repeat;border:none;outline:0;width:313px;color:#fff;padding:0 10px;line-height:1px !important;font-size:30px;padding-left:50px;-webkit-box-sizing:border-box;box-sizing:border-box}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper .inp.svelte-n207n1::-webkit-input-placeholder{color:#fff}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper .inp.svelte-n207n1::-moz-placeholder{color:#fff}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper .inp.svelte-n207n1:-ms-input-placeholder{color:#fff}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper .inp.svelte-n207n1::-ms-input-placeholder{color:#fff}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper .inp.svelte-n207n1::placeholder{color:#fff}.buttonCtn.svelte-n207n1 .inputNumCtn .inputNumWarpper div.svelte-n207n1{color:aliceblue;position:absolute;right:0;font-size:12px}.buttonCtn.svelte-n207n1 .inputNumCtn .totalDiamondCtn.svelte-n207n1{color:white;font-size:26px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:-21px;position:absolute;right:212px;top:0;height:100%}.buttonCtn.svelte-n207n1 .inputNumCtn .smallBtnCtn.svelte-n207n1{cursor:pointer;overflow:hidden;color:white;font-weight:700;font-size:32px;width:170px;height:86px;text-align:center;margin-right:-1px;margin-top:-4px;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.outer_result_container.svelte-1jy4tw0.svelte-1jy4tw0{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:100%;height:100%;position:absolute;background-size:100% 100%;border-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.history_container.svelte-1jy4tw0.svelte-1jy4tw0{width:100%;height:100%;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.history_container.svelte-1jy4tw0 .mainTitleCtn.svelte-1jy4tw0{width:337px;height:166px;position:relative;margin:0 auto}.history_container.svelte-1jy4tw0 .mainTitleCtn .titleImg.svelte-1jy4tw0{position:absolute;top:0;left:0;z-index:2;width:100%;height:100%}.history_container.svelte-1jy4tw0 .mainTitleCtn .bgImg.svelte-1jy4tw0{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%}.history_container.svelte-1jy4tw0 .history_close_button.svelte-1jy4tw0{cursor:pointer;width:148px;height:69px;font-size:32px;margin-top:18px;font-weight:bold;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;background-size:contain}.history_container.svelte-1jy4tw0 .history_wrapper.svelte-1jy4tw0{margin-top:53px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.history_container.svelte-1jy4tw0 .history_wrapper .history_content.svelte-1jy4tw0{padding:0 10px;font-size:14px;font-weight:400;line-height:16px;height:656px;overflow-y:auto}.history_container.svelte-1jy4tw0 .history_wrapper .history_content.svelte-1jy4tw0::-webkit-scrollbar{display:none}.history_container.svelte-1jy4tw0 .history_wrapper .history_content .history_content_item.svelte-1jy4tw0{font-size:26px;margin-bottom:47px}.history_container.svelte-1jy4tw0 .history_wrapper .history_content .history_content_item img.svelte-1jy4tw0{max-width:54px;max-height:54px}.history_container.svelte-1jy4tw0 .noDataTipCtn.svelte-1jy4tw0{margin-top:290px;font-size:26px}.fireSvgaCtn {
619
+ position: absolute;
620
+ width: 67px;
621
+ height: 73px;
622
+ z-index: 9;
623
+ top: 115px;
624
+ right: 37px;
625
+ }
626
+
627
+ .innerOpenBoxCtn {
628
+ position: fixed;
629
+ width: 750px;
630
+ height: 1016px;
631
+ left: 50%;
632
+ top: 50%;
633
+ -webkit-transform: translate(-50%, -50%);
634
+ transform: translate(-50%, -50%);
635
+ z-index: 2;
636
+ }
637
+ .innerOpenBoxCtn .result_vap_anim {
638
+ pointer-events: none;
639
+ width: 87%;
640
+ height: 91%;
641
+ position: absolute;
642
+ z-index: 9;
643
+ left: 52%;
644
+ top: 53%;
645
+ -webkit-transform: translate(-50%, -50%);
646
+ transform: translate(-50%, -50%);
647
+ overflow: hidden;
648
+ }
649
+ .innerOpenBoxCtn .result_vap_anim canvas {
650
+ width: 100% !important;
651
+ height: 95% !important;
652
+ margin-top: 44px;
653
+ margin-left: -19px;
654
+ }
655
+ .innerOpenBoxCtn .title {
656
+ -webkit-transform: translateX(-50%);
657
+ transform: translateX(-50%);
658
+ position: absolute;
659
+ left: 50%;
660
+ top: 2px;
661
+ width: 150px;
662
+ height: 57px;
663
+ }
664
+ .innerOpenBoxCtn .subTitle {
665
+ color: white;
666
+ text-align: center;
667
+ position: absolute;
668
+ left: 0;
669
+ width: 100%;
670
+ top: 45px;
671
+ font-size: 12px;
672
+ }
673
+ .innerOpenBoxCtn .leftTopCtn {
674
+ position: absolute;
675
+ left: 26px;
676
+ top: 60px;
677
+ color: #eccf49;
678
+ font-weight: bold;
679
+ }
680
+ .innerOpenBoxCtn .leftTopCtn .subCtn {
681
+ margin-bottom: 10px;
682
+ position: relative;
683
+ background: #300072;
684
+ border: 1px solid rgba(255, 230, 177, 0.24);
685
+ border-radius: 0px 10px 10px 0px;
686
+ height: 20px;
687
+ width: 67px;
688
+ display: -webkit-box;
689
+ display: -ms-flexbox;
690
+ display: flex;
691
+ -webkit-box-align: center;
692
+ -ms-flex-align: center;
693
+ align-items: center;
694
+ font-size: 14px;
695
+ }
696
+ .innerOpenBoxCtn .leftTopCtn .subCtn .imgIcon {
697
+ width: 28.5px;
698
+ height: 27.5px;
699
+ position: absolute;
700
+ left: -15px;
701
+ top: -4px;
702
+ }
703
+ .innerOpenBoxCtn .leftTopCtn .subCtn .wordCtn {
704
+ display: inline-block;
705
+ margin-left: 18px;
706
+ font-size: 13px;
707
+ color: #FFEB8E;
708
+ }
709
+ .innerOpenBoxCtn .rightTopCtn {
710
+ position: absolute;
711
+ right: 12px;
712
+ top: 60px;
713
+ text-align: center;
714
+ }
715
+ .innerOpenBoxCtn .rightTopCtn .subCtn {
716
+ cursor: pointer;
717
+ margin-bottom: 3px;
718
+ }
719
+ .innerOpenBoxCtn .rightTopCtn .subCtn .imgIcon {
720
+ width: 27px;
721
+ }
722
+ .innerOpenBoxCtn .mainShowerCtn .mainImgCtn {
723
+ width: 600px;
724
+ height: 600px;
725
+ position: absolute;
726
+ top: 260px;
727
+ left: 50%;
728
+ -webkit-transform: translateX(-50%);
729
+ transform: translateX(-50%);
730
+ }.blindCloseIcon.svelte-gsqpd6.svelte-gsqpd6{width:65px;height:65px;cursor:pointer;position:absolute;right:33px;top:77px;z-index:99}.blindCloseIcon.svelte-gsqpd6 .blindCloseImg.svelte-gsqpd6{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.vapOutContainer.svelte-gsqpd6.svelte-gsqpd6{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9}.vapOutContainer.svelte-gsqpd6 .vapUpBg.svelte-gsqpd6{position:absolute;left:0;top:0;width:100%;height:100%;z-index:10;background-size:100% 100%}.leftTopContainer.svelte-gsqpd6.svelte-gsqpd6{position:absolute;top:218px;left:77px;z-index:9}.leftTopContainer.svelte-gsqpd6 .itemCtn.svelte-gsqpd6{width:-webkit-min-content;width:-moz-min-content;width:min-content;height:40px;position:relative;padding-left:57px;font-size:24px;font-weight:bold;color:#fff;margin-bottom:23px;background-size:150% 150%;background-position:-10px -10px;padding-right:0;border-radius:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.leftTopContainer.svelte-gsqpd6 .itemCtn .imgIcon.svelte-gsqpd6{position:absolute;top:-17px;left:0;width:57px;height:57px}.leftTopContainer.svelte-gsqpd6 .itemCtn .plus_btn.svelte-gsqpd6{width:50px;height:50px}.innerOpenBoxCtn.svelte-gsqpd6 .mainTitleCtn.svelte-gsqpd6{width:337px;height:166px;position:relative;margin:0 auto}.innerOpenBoxCtn.svelte-gsqpd6 .mainTitleCtn .titleImg.svelte-gsqpd6{position:absolute;top:0;left:0;z-index:2;width:100%;height:100%}.innerOpenBoxCtn.svelte-gsqpd6 .mainTitleCtn .titleImg.top31.svelte-gsqpd6{top:31px}.innerOpenBoxCtn.svelte-gsqpd6 .mainTitleCtn .introCtn.svelte-gsqpd6{position:absolute;width:100%;bottom:-57px;text-align:center;font-size:28px;color:white}.innerOpenBoxCtn.svelte-gsqpd6 .mainTitleCtn .bgImg.svelte-gsqpd6{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%}.blindBoxFooter.svelte-gsqpd6.svelte-gsqpd6{position:absolute;bottom:42px;width:100%;left:0;z-index:2}.blindBoxFooter.svelte-gsqpd6 .radioImg.svelte-gsqpd6{margin-right:6px}.blindBoxFooter.svelte-gsqpd6 .topTipsCtn.svelte-gsqpd6{text-align:center;color:#eccf49;font-size:14px;margin-bottom:10px}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn.svelte-gsqpd6{margin-top:5px;text-align:center;font-size:24px;color:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioOutCtn.svelte-gsqpd6{display:-webkit-box;display:-ms-flexbox;display:flex;width:20px;margin-right:10px}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .footerBottomSubCtn.svelte-gsqpd6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:268px;cursor:pointer}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn.svelte-gsqpd6{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn .changeWordCtn.svelte-gsqpd6{margin-left:-4px}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn .radioImg.svelte-gsqpd6{margin-right:8px}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn .radioImg.default.svelte-gsqpd6{width:26px}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn .radioImg.selected.svelte-gsqpd6{display:none;width:26px}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn.active .default.svelte-gsqpd6{display:none}.blindBoxFooter.svelte-gsqpd6 .footerBottomCtn .radioCtn.active .selected.svelte-gsqpd6{display:inline-block}.buttonCtn.svelte-gsqpd6.svelte-gsqpd6{text-align:center}.buttonCtn.svelte-gsqpd6 .normalBtn.svelte-gsqpd6{cursor:pointer;display:inline-block;width:268px;height:116px;background-size:100% 100%;overflow:hidden}.buttonCtn.svelte-gsqpd6 .inputNumCtn.svelte-gsqpd6{width:541px;height:79px;border-radius:44px;border:3px solid white;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-size:100% 100%}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper.svelte-gsqpd6{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper .inp.svelte-gsqpd6{background:no-repeat;border:none;outline:0;width:313px;color:#fff;padding:0 10px;line-height:1px !important;font-size:30px;padding-left:50px;-webkit-box-sizing:border-box;box-sizing:border-box}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper .inp.svelte-gsqpd6::-webkit-input-placeholder{color:#fff}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper .inp.svelte-gsqpd6::-moz-placeholder{color:#fff}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper .inp.svelte-gsqpd6:-ms-input-placeholder{color:#fff}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper .inp.svelte-gsqpd6::-ms-input-placeholder{color:#fff}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper .inp.svelte-gsqpd6::placeholder{color:#fff}.buttonCtn.svelte-gsqpd6 .inputNumCtn .inputNumWarpper div.svelte-gsqpd6{color:aliceblue;position:absolute;right:0;font-size:12px}.buttonCtn.svelte-gsqpd6 .inputNumCtn .totalDiamondCtn.svelte-gsqpd6{color:white;font-size:26px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:-21px;position:absolute;right:212px;top:0;height:100%}.buttonCtn.svelte-gsqpd6 .inputNumCtn .smallBtnCtn.svelte-gsqpd6{cursor:pointer;overflow:hidden;color:white;font-weight:700;font-size:32px;width:190px;height:100px;text-align:center;margin-right:-4px;margin-top:-12px;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.blindBoxContainer.svelte-6oc75b .coverBg.svelte-6oc75b{position:fixed;width:100%;height:100%;left:0;top:0;z-index:9999}.blindBoxContainer.svelte-6oc75b .outerContainer.svelte-6oc75b{position:absolute;width:750px;height:1016px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%) scale(0.56);transform:translate(-50%, -50%) scale(0.56);z-index:10000}.blindBoxContainer.svelte-6oc75b .lowLevelBg.svelte-6oc75b{border-radius:10px;position:absolute;width:102%;height:100%;z-index:1;background-size:100% 100%;left:-10px}.blindBoxContainer.svelte-6oc75b .boxCtn.svelte-6oc75b{position:absolute;width:100%;height:100%;z-index:2;border-radius:10px;background-size:100% 100%}.blindBoxContainer.svelte-6oc75b .boxCtn .rightTopCtn.svelte-6oc75b{position:absolute;top:206px;right:77px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;z-index:3}.blindBoxContainer.svelte-6oc75b .boxCtn .rightTopCtn .imgIcon.svelte-6oc75b{cursor:pointer;width:63px;height:63px;margin-bottom:10px}@-webkit-keyframes svelte-znipg1-result_anmi{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes svelte-znipg1-result_anmi{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.gift_item_container.svelte-znipg1.svelte-znipg1{width:98px;height:98px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:11px}.gift_item_container.svelte-znipg1 .gift_item_wrapper.svelte-znipg1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;-webkit-animation-name:svelte-znipg1-result_anmi;animation-name:svelte-znipg1-result_anmi;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:100ms;animation-duration:100ms;width:100%;height:100%;background:url("https://asset.tuwan.com/goldMagic/result_item_bg2.png");background-size:100% 100%;-webkit-transform:scale(0);transform:scale(0)}.gift_item_container.svelte-znipg1 .gift_item_wrapper .gift_item_costly_border.svelte-znipg1{width:140px;height:140px;position:absolute;background:url("https://asset.tuwan.com/goldMagic/border.png");background-size:100% 100%;left:-24px}.gift_item_container.svelte-znipg1 .gift_item_wrapper .gift_item_badge.svelte-znipg1{position:absolute;right:-3px;top:-4px;z-index:3;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid transparent;border-image-slice:17 17 17 17 fill;border-image-width:15px;border-image-repeat:stretch;background:none;padding:0 2px}.gift_item_container.svelte-znipg1 .gift_item_wrapper .gift_item_badge .gift_item_badge_content.svelte-znipg1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;white-space:nowrap;gap:0}.gift_item_container.svelte-znipg1 .gift_item_wrapper .gift_item_badge .gift_item_badge_icon.svelte-znipg1{width:19px;height:17px;-ms-flex-negative:0;flex-shrink:0;-o-object-fit:contain;object-fit:contain}.gift_item_container.svelte-znipg1 .gift_item_wrapper .gift_item_badge .gift_item_badge_num.svelte-znipg1{font-weight:bold;font-size:14px;line-height:1}.gift_item_container.svelte-znipg1 .gift_item_wrapper img.svelte-znipg1{max-width:80px;max-height:80px;width:100%;height:100%}.gift_item_container.svelte-znipg1 .gift_item_wrapper .num.svelte-znipg1{font-size:14px;font-weight:400;color:#ffffff;line-height:17px;position:absolute;bottom:8px;right:6px}.gift_item_container.svelte-znipg1 .gift_item_wrapper.costly.svelte-znipg1{background:url("https://asset.tuwan.com/goldMagic/result_item_bg1.png");background-size:100% 100%}.gift_item_container.bigger.svelte-znipg1.svelte-znipg1{width:147px;height:147px;margin-top:-21px}.gift_item_container.bigger.svelte-znipg1 .gift_item_wrapper .gift_item_costly_border.svelte-znipg1{width:200px;height:200px;left:-30px}.gift_item_container.bigger.svelte-znipg1 .gift_item_wrapper img.svelte-znipg1{max-width:110px;max-height:110px}.gift_item_container.bigger.svelte-znipg1 .gift_item_wrapper .num.svelte-znipg1{font-size:22px;font-weight:400;color:#FFFFFF;line-height:26px;position:absolute;bottom:11px;right:11px}.gift_item_container.bigger.svelte-znipg1 .gift_item_wrapper .gift_item_desc.svelte-znipg1{position:absolute;font-size:16px;font-weight:400;color:#FFFFFF;line-height:28px;opacity:0.6;width:420px;text-align:center;bottom:-50px}.gift_item_container.bigger.svelte-znipg1 .gift_item_wrapper .gift_item_hit.svelte-znipg1{position:absolute;width:67px;height:73px;background:url("https://asset.tuwan.com/goldMagic/fireIcon.png?v1");background-size:100% 100%;right:-72px;top:-30px}.result_container.svelte-1upze7n.svelte-1upze7n{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:420px;height:530px;position:absolute;background:url("https://asset.tuwan.com/goldMagic/magicMainBg.png?v1") no-repeat;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.result_container.svelte-1upze7n .title.svelte-1upze7n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:13px}.result_container.svelte-1upze7n .title img.svelte-1upze7n{height:64.6px}.result_container.svelte-1upze7n .result_wrapper .result_content.svelte-1upze7n{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:distribute;justify-content:space-around;width:100%}.result_container.svelte-1upze7n .result_wrapper.svelte-1upze7n{margin-top:11px;width:320px;height:330px;display:-webkit-box;display:-ms-flexbox;display:flex}.result_container.svelte-1upze7n .result_action_container.svelte-1upze7n{display:-webkit-box;display:-ms-flexbox;display:flex;width:420px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px}.result_container.svelte-1upze7n .result_action_container .result_action.svelte-1upze7n{cursor:pointer;width:169px;height:57px;font-size:18px;font-weight:600;color:#70451f;line-height:57px;background:url("https://asset.tuwan.com/goldMagic/buttonBg.png") no-repeat;background-size:100% 100%;text-align:center}.result_container.svelte-1upze7n .result_info_container.svelte-1upze7n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:8px}.result_container.svelte-1upze7n .result_info_container span.svelte-1upze7n{font-size:13px;font-weight:400;color:#ffffff;line-height:16px;opacity:0.5}.result_container.svelte-1upze7n .result_info_container .result_action_ignore.svelte-1upze7n{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}.result_container.svelte-1upze7n .result_info_container .result_action_ignore i.svelte-1upze7n{width:15px;height:15px;background:url("https://asset.tuwan.com/goldMagic/radioDefault.png") no-repeat;background-size:100% 100%;display:block;content:" ";margin-right:2px}.result_container.svelte-1upze7n .result_info_container .result_action_ignore.ignore i.svelte-1upze7n{background:url("https://asset.tuwan.com/goldMagic/radioSelect.png") no-repeat;background-size:100% 100%}.result_container.svelte-1upze7n .result_vap_anim.svelte-1upze7n{pointer-events:none;width:420px;height:530px;position:absolute;top:0;border-radius:10px;overflow:hidden}.result_container.glod.svelte-1upze7n.svelte-1upze7n{background:url("https://asset.tuwan.com/goldMagic/goldMainBg.png?v1") no-repeat;background-size:100% 100%}.result_container.svelte-fnhz36.svelte-fnhz36{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:420px;height:530px;position:absolute;background:url("https://asset.tuwan.com/goldMagic/magicMainBg.png?v1") no-repeat;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.result_container.svelte-fnhz36 .title.svelte-fnhz36{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:13px}.result_container.svelte-fnhz36 .title img.svelte-fnhz36{height:64.6px}.result_container.svelte-fnhz36 .result_wrapper .result_content.svelte-fnhz36{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:distribute;justify-content:space-around;width:100%}.result_container.svelte-fnhz36 .result_wrapper.svelte-fnhz36{margin-top:11px;width:320px;height:330px;display:-webkit-box;display:-ms-flexbox;display:flex}.result_container.svelte-fnhz36 .result_action_container.svelte-fnhz36{display:-webkit-box;display:-ms-flexbox;display:flex;width:420px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px}.result_container.svelte-fnhz36 .result_action_container .result_action.svelte-fnhz36{cursor:pointer;width:169px;height:57px;font-size:18px;font-weight:600;color:#70451f;line-height:57px;background:url("https://asset.tuwan.com/goldMagic/buttonBg.png") no-repeat;background-size:100% 100%;text-align:center}.result_container.svelte-fnhz36 .result_info_container.svelte-fnhz36{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:8px}.result_container.svelte-fnhz36 .result_info_container span.svelte-fnhz36{font-size:13px;font-weight:400;color:#ffffff;line-height:16px;opacity:0.5}.result_container.svelte-fnhz36 .result_info_container .result_action_ignore.svelte-fnhz36{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}.result_container.svelte-fnhz36 .result_info_container .result_action_ignore i.svelte-fnhz36{width:15px;height:15px;background:url("https://asset.tuwan.com/goldMagic/radioDefault.png") no-repeat;background-size:100% 100%;display:block;content:" ";margin-right:2px}.result_container.svelte-fnhz36 .result_info_container .result_action_ignore.ignore i.svelte-fnhz36{background:url("https://asset.tuwan.com/goldMagic/radioSelect.png") no-repeat;background-size:100% 100%}.result_container.svelte-fnhz36 .result_vap_anim.svelte-fnhz36{pointer-events:none;width:420px;height:530px;position:absolute;top:0;border-radius:10px;overflow:hidden}.history_container.svelte-cl45pf.svelte-cl45pf{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:420px;height:530px;position:absolute;background:url("https://asset.tuwan.com/goldMagic/magicMainBg.png?v1") no-repeat;background-size:100% 100%;border-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.history_container.svelte-cl45pf .title.svelte-cl45pf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.history_container.svelte-cl45pf .title img.svelte-cl45pf{height:60.6px}.history_container.svelte-cl45pf .history_close_button.svelte-cl45pf{cursor:pointer;width:34px;height:18px;font-size:18px;font-weight:bold;color:#70451F;line-height:57px;width:158px;height:57px;text-align:center;background:url("https://asset.tuwan.com/goldMagic/buttonBg.png") no-repeat;background-size:100% 100%}.history_container.svelte-cl45pf .history_wrapper.svelte-cl45pf{height:350px;margin-top:26px}.history_container.svelte-cl45pf .history_wrapper .history_content.svelte-cl45pf{padding:0 10px;font-size:14px;font-weight:400;color:#FFFFFF;line-height:16px}.history_container.svelte-cl45pf .history_wrapper .history_content .history_content_item.svelte-cl45pf{color:#ffffff;margin-bottom:20px}.history_container.svelte-cl45pf .history_wrapper .history_content .history_content_item img.svelte-cl45pf{max-width:32px;max-height:32px}.history_container.svelte-cl45pf .noDataTipCtn.svelte-cl45pf{margin-top:150px}.history_container.glod.svelte-cl45pf.svelte-cl45pf{background:url("https://asset.tuwan.com/goldMagic/goldMainBg.png?v1") no-repeat;background-size:100% 100%}.fireSvgaCtnMagic.svelte-1imwmuq.svelte-1imwmuq{position:absolute;width:67px;height:73px;z-index:9;top:115px;right:37px;cursor:pointer}.MagicCtn.svelte-1imwmuq.svelte-1imwmuq{position:fixed;width:420px;height:530px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:2}.MagicCtn.svelte-1imwmuq .result_vap_anim.svelte-1imwmuq{pointer-events:none;width:422px;height:531px;position:absolute;top:0;z-index:9}.MagicCtn.svelte-1imwmuq .title.svelte-1imwmuq{-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;left:50%;top:2px;width:150px;height:57px}.MagicCtn.svelte-1imwmuq .subTitle.svelte-1imwmuq{color:white;text-align:center;position:absolute;left:0;width:100%;top:52px;font-size:14px}.MagicCtn.svelte-1imwmuq .leftTopCtn.svelte-1imwmuq{position:absolute;left:26px;top:60px;color:#eccf49;font-weight:bold}.MagicCtn.svelte-1imwmuq .leftTopCtn .subCtn.svelte-1imwmuq{margin-bottom:10px;position:relative;background:#300072;border:1px solid rgba(255, 230, 177, 0.24);border-radius:0px 10px 10px 0px;height:20px;width:67px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px}.MagicCtn.svelte-1imwmuq .leftTopCtn .subCtn .imgIcon.svelte-1imwmuq{width:28.5px;height:27.5px;position:absolute;left:-15px;top:-4px}.MagicCtn.svelte-1imwmuq .leftTopCtn .subCtn .wordCtn.svelte-1imwmuq{display:inline-block;margin-left:18px;font-size:13px;color:#ffeb8e}.MagicCtn.svelte-1imwmuq .rightTopCtn .subCtn.svelte-1imwmuq{cursor:pointer;margin-bottom:3px}.MagicCtn.svelte-1imwmuq .rightTopCtn .subCtn .imgIcon.svelte-1imwmuq{width:27px}.MagicCtn.svelte-1imwmuq .mainShowerCtn .mainImgCtn.svelte-1imwmuq{width:260px;position:absolute;top:126px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);height:230px}.MagicCtn.svelte-1imwmuq .footer.svelte-1imwmuq{position:absolute;top:390px;width:100%;left:0}.MagicCtn.svelte-1imwmuq .footer .topTipsCtn.svelte-1imwmuq{text-align:center;color:#eccf49;font-size:14px;margin-bottom:10px}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn.svelte-1imwmuq{margin-top:5px;text-align:center;font-size:14px;color:#9d8bcd;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .subTips.svelte-1imwmuq{display:inline-block;margin-right:10px;line-height:20px}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn.svelte-1imwmuq{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn .spCtn.svelte-1imwmuq{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:25px;height:25px;-ms-flex-negative:0;flex-shrink:0}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn .changeWordCtn.svelte-1imwmuq{line-height:20px}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn .radioImg.default.svelte-1imwmuq{width:20px;margin-top:0}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn .radioImg.selected.svelte-1imwmuq{display:none;width:18px}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn.active .default.svelte-1imwmuq{display:none}.MagicCtn.svelte-1imwmuq .footer .footerBottomCtn .radioCtn.active .selected.svelte-1imwmuq{display:inline-block}.MagicCtn.svelte-1imwmuq .buttonCtn.svelte-1imwmuq{text-align:center}.MagicCtn.svelte-1imwmuq .buttonCtn .normalBtn.svelte-1imwmuq{cursor:pointer;display:inline-block;width:157px;height:49px;background:url(https://asset.tuwan.com/goldMagic/buttonBg.png);background-size:cover;overflow:hidden}.MagicCtn.svelte-1imwmuq .buttonCtn .normalBtn .leftCtn.svelte-1imwmuq{float:left;height:100%;position:relative;text-align:center;width:50px;margin-left:15px}.MagicCtn.svelte-1imwmuq .buttonCtn .normalBtn .leftCtn .icon.svelte-1imwmuq{width:20px;margin-top:10px}.MagicCtn.svelte-1imwmuq .buttonCtn .normalBtn .leftCtn .numCtn.svelte-1imwmuq{position:absolute;top:24px;left:50%;font-size:14px;color:#ffffff;text-shadow:0 -1.5px #753903, 1.5px -1.5px #753903, 1.5px 0 #753903, 1.5px 1.5px #753903, 0 1.5px #753903, -1.5px 0 #753903, -1.5px -1.5px #753903;font-weight:bold;text-align:center;display:inline-block;-webkit-transform:translateX(-51%);transform:translateX(-51%)}.MagicCtn.svelte-1imwmuq .buttonCtn .normalBtn .rightCtn.svelte-1imwmuq{float:left;width:93px;height:49px;line-height:49px;color:#943800;font-weight:bold;text-align:center;margin-left:-10px;font-size:16px}.MagicCtn.svelte-1imwmuq .buttonCtn .inputNumCtn.svelte-1imwmuq{width:305px;height:40px;background:#2e147f;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);border-radius:7px;margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.MagicCtn.svelte-1imwmuq .buttonCtn .inputNumCtn .inputNumWarpper.svelte-1imwmuq{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.MagicCtn.svelte-1imwmuq .buttonCtn .inputNumCtn .inputNumWarpper .inp.svelte-1imwmuq{background:no-repeat;border:none;outline:0;width:200px;font-size:14px;color:#fff;line-height:37px;padding:0 10px;line-height:1px !important}.MagicCtn.svelte-1imwmuq .buttonCtn .inputNumCtn .inputNumWarpper div.svelte-1imwmuq{color:aliceblue;position:absolute;right:0;font-size:12px}.MagicCtn.svelte-1imwmuq .buttonCtn .inputNumCtn .smallBtnCtn.svelte-1imwmuq{cursor:pointer;overflow:hidden;color:#943800;font-weight:700;font-size:16px;width:100px;text-align:center;background:url(https://asset.tuwan.com/goldMagic/middleButtonBg.png);background-size:cover;height:45px;margin-top:-2px;line-height:46px}
731
+ .fireSvgaCtn {
732
+ position: absolute;
733
+ width: 67px;
734
+ height: 73px;
735
+ z-index: 9;
736
+ top: 115px;
737
+ right: 37px;
738
+ }
739
+
740
+ .GoldCtn {
741
+ position: fixed;
742
+ width: 420px;
743
+ height: 530px;
744
+ left: 50%;
745
+ top: 50%;
746
+ -webkit-transform: translate(-50%, -50%);
747
+ transform: translate(-50%, -50%);
748
+ z-index: 2;
749
+ }
750
+ .GoldCtn.magic {
751
+ background: url(https://asset.tuwan.com/goldMagic/magicMainBg.png);
752
+ background-size: cover;
753
+ }
754
+ .GoldCtn.gold {
755
+ background: url(https://asset.tuwan.com/goldMagic/goldMainBg.png);
756
+ background-size: cover;
757
+ }
758
+ .GoldCtn .result_vap_anim {
759
+ pointer-events: none;
760
+ width: 422px;
761
+ height: 531px;
762
+ position: absolute;
763
+ top: 0;
764
+ z-index: 9;
765
+ }
766
+ .GoldCtn .title {
767
+ -webkit-transform: translateX(-50%);
768
+ transform: translateX(-50%);
769
+ position: absolute;
770
+ left: 50%;
771
+ top: 2px;
772
+ width: 150px;
773
+ height: 57px;
774
+ }
775
+ .GoldCtn .subTitle {
776
+ color: white;
777
+ text-align: center;
778
+ position: absolute;
779
+ left: 0;
780
+ width: 100%;
781
+ top: 45px;
782
+ font-size: 12px;
783
+ }
784
+ .GoldCtn .leftTopCtn {
785
+ position: absolute;
786
+ left: 26px;
787
+ top: 60px;
788
+ color: #eccf49;
789
+ font-weight: bold;
790
+ }
791
+ .GoldCtn .leftTopCtn .subCtn {
792
+ margin-bottom: 10px;
793
+ position: relative;
794
+ background: #300072;
795
+ border: 1px solid rgba(255, 230, 177, 0.24);
796
+ border-radius: 0px 10px 10px 0px;
797
+ height: 20px;
798
+ width: 67px;
799
+ display: -webkit-box;
800
+ display: -ms-flexbox;
801
+ display: flex;
802
+ -webkit-box-align: center;
803
+ -ms-flex-align: center;
804
+ align-items: center;
805
+ font-size: 14px;
806
+ }
807
+ .GoldCtn .leftTopCtn .subCtn .imgIcon {
808
+ width: 28.5px;
809
+ height: 27.5px;
810
+ position: absolute;
811
+ left: -15px;
812
+ top: -4px;
813
+ }
814
+ .GoldCtn .leftTopCtn .subCtn .wordCtn {
815
+ display: inline-block;
816
+ margin-left: 18px;
817
+ font-size: 13px;
818
+ color: #FFEB8E;
819
+ }
820
+ .GoldCtn .rightTopCtn {
821
+ position: absolute;
822
+ right: 12px;
823
+ top: 60px;
824
+ text-align: center;
825
+ }
826
+ .GoldCtn .rightTopCtn .subCtn {
827
+ cursor: pointer;
828
+ margin-bottom: 3px;
829
+ }
830
+ .GoldCtn .rightTopCtn .subCtn .imgIcon {
831
+ width: 27px;
832
+ }
833
+ .GoldCtn .mainShowerCtn .mainImgCtn {
834
+ width: 260px;
835
+ position: absolute;
836
+ top: 126px;
837
+ left: 50%;
838
+ -webkit-transform: translateX(-50%);
839
+ transform: translateX(-50%);
840
+ height: 230px;
841
+ }
842
+ .GoldCtn .footer {
843
+ position: absolute;
844
+ top: 386px;
845
+ width: 100%;
846
+ left: 0;
847
+ }
848
+ .GoldCtn .footer .topTipsCtn {
849
+ text-align: center;
850
+ color: #eccf49;
851
+ font-size: 14px;
852
+ margin-bottom: 10px;
853
+ margin-top: 10px;
854
+ }
855
+ .GoldCtn .footer .topTipsCtn .sp {
856
+ color: #DECC86;
857
+ font-weight: bold;
858
+ }
859
+ .GoldCtn .footer .footerBottomCtn {
860
+ margin-top: 11px;
861
+ text-align: center;
862
+ font-size: 14px;
863
+ color: white;
864
+ }
865
+ .GoldCtn .footer .footerBottomCtn .subTips {
866
+ display: inline-block;
867
+ margin-right: 10px;
868
+ color: #9D8BCD;
869
+ }
870
+ .GoldCtn .footer .progressCtn {
871
+ background: url(https://asset.tuwan.com/goldMagic/progressCtn.png);
872
+ background-size: cover;
873
+ width: 283px;
874
+ position: absolute;
875
+ left: 50%;
876
+ height: 10px;
877
+ -webkit-transform: translateX(-50%);
878
+ transform: translateX(-50%);
879
+ top: -15px;
880
+ }
881
+ .GoldCtn .footer .progressCtn .showBar {
882
+ position: absolute;
883
+ background: url(https://asset.tuwan.com/goldMagic/progressBg.png);
884
+ position: absolute;
885
+ width: 10%;
886
+ height: 10px;
887
+ left: 0;
888
+ top: 0px;
889
+ background-size: cover;
890
+ }
891
+ .GoldCtn .buttonCtn {
892
+ height: 54px;
893
+ text-align: center;
894
+ /* 对齐 IM 旧栏 OpenGoldAction:flex 居中。
895
+ showEl 会把 #goldNormalBtn 写成 display:block,仅靠 text-align 无法居中。 */
896
+ display: -webkit-box;
897
+ display: -ms-flexbox;
898
+ display: flex;
899
+ -webkit-box-pack: center;
900
+ -ms-flex-pack: center;
901
+ justify-content: center;
902
+ -webkit-box-align: center;
903
+ -ms-flex-align: center;
904
+ align-items: center;
905
+ }
906
+ .GoldCtn .buttonCtn .normalBtn {
907
+ color: #943800;
908
+ font-weight: bold;
909
+ cursor: pointer;
910
+ display: inline-block;
911
+ width: 226px;
912
+ height: 60px;
913
+ line-height: 60px;
914
+ background: url(https://asset.tuwan.com/goldMagic/openMagicBg.png);
915
+ background-size: cover;
916
+ font-size: 21px;
917
+ }
918
+ .GoldCtn .buttonCtn .normalBtn .leftCtn {
919
+ float: left;
920
+ height: 100%;
921
+ position: relative;
922
+ text-align: center;
923
+ width: 50px;
924
+ margin-left: 10px;
925
+ }
926
+ .GoldCtn .buttonCtn .normalBtn .leftCtn .icon {
927
+ width: 20px;
928
+ margin-top: 8px;
929
+ }
930
+ .GoldCtn .buttonCtn .normalBtn .leftCtn .numCtn {
931
+ position: absolute;
932
+ top: 22px;
933
+ left: 50%;
934
+ font-size: 14px;
935
+ color: #FFFFFF;
936
+ text-shadow: 0 -1px #753903, 1px -1px #753903, 1px 0 #753903, 1px 1px #753903, 0 1px #753903, -1px 0 #753903, -1px -1px #753903;
937
+ font-weight: bold;
938
+ text-align: center;
939
+ display: inline-block;
940
+ -webkit-transform: translateX(-51%);
941
+ transform: translateX(-51%);
942
+ }
943
+ .GoldCtn .buttonCtn .normalBtn .rightCtn {
944
+ float: left;
945
+ width: 78px;
946
+ height: 45px;
947
+ line-height: 45px;
948
+ color: #943800;
949
+ font-weight: bold;
950
+ text-align: center;
951
+ margin-left: -10px;
952
+ }
953
+ .GoldCtn .buttonCtn .normalBtn .innerCtn {
954
+ position: relative;
955
+ display: inline-block;
956
+ width: 45px;
957
+ height: 40px;
958
+ line-height: 40px;
959
+ }
960
+ .GoldCtn .buttonCtn .normalBtn .innerCtn .icon {
961
+ width: 21px;
962
+ margin-top: -9px;
963
+ }
964
+ .GoldCtn .buttonCtn .normalBtn .innerCtn .numCtn {
965
+ position: absolute;
966
+ left: 50%;
967
+ top: 11px;
968
+ font-size: 14px;
969
+ display: inline-block;
970
+ width: 100px;
971
+ text-align: center;
972
+ -webkit-transform: translateX(-50%);
973
+ transform: translateX(-50%);
974
+ color: white;
975
+ text-shadow: 0 -1px #753903, 1px -1px #753903, 1px 0 #753903, 1px 1px #753903, 0 1px #753903, -1px 0 #753903, -1px -1px #753903;
976
+ }
977
+ .GoldCtn .buttonCtn .firedButton {
978
+ width: 256.8px;
979
+ height: 92.4px;
980
+ display: none;
981
+ margin-top: -20px;
982
+ cursor: pointer;
983
+ }
984
+ .GoldCtn .buttonCtn .inputNumCtn {
985
+ display: inline-block;
986
+ width: 145px;
987
+ height: 40px;
988
+ background: #2E147F;
989
+ line-height: 37px;
990
+ text-align: center;
991
+ overflow: hidden;
992
+ -webkit-transform: translateY(-2px);
993
+ transform: translateY(-2px);
994
+ border-radius: 7px;
995
+ }
996
+ .GoldCtn .buttonCtn .inputNumCtn .inp {
997
+ background: no-repeat;
998
+ border: none;
999
+ outline: none;
1000
+ width: 58px;
1001
+ font-size: 14px;
1002
+ color: white;
1003
+ line-height: 37px;
1004
+ display: inline-block;
1005
+ float: left;
1006
+ padding: 0 10px;
1007
+ }
1008
+ .GoldCtn .buttonCtn .inputNumCtn .smallBtnCtn {
1009
+ cursor: pointer;
1010
+ overflow: hidden;
1011
+ color: #943800;
1012
+ font-weight: bold;
1013
+ font-size: 16px;
1014
+ display: inline-block;
1015
+ width: 67px;
1016
+ text-align: center;
1017
+ background: url(https://asset.tuwan.com/goldMagic/smallButtonBg.png);
1018
+ background-size: cover;
1019
+ height: 45px;
1020
+ margin-top: -2px;
1021
+ line-height: 46px;
1022
+ }.fireSvgaCtnNewYear.svelte-19uzw0u.svelte-19uzw0u{position:absolute;width:67px;height:73px;z-index:9;top:115px;right:37px;cursor:pointer}.NewYearCtn.svelte-19uzw0u.svelte-19uzw0u{position:fixed;width:420px;height:530px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:2}.NewYearCtn.svelte-19uzw0u .result_vap_anim.svelte-19uzw0u{pointer-events:none;width:422px;height:531px;position:absolute;top:0;z-index:9}.NewYearCtn.svelte-19uzw0u .title.svelte-19uzw0u{-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;left:50%;top:2px;width:150px;height:57px}.NewYearCtn.svelte-19uzw0u .subTitle.svelte-19uzw0u{color:white;text-align:center;position:absolute;left:0;width:100%;top:52px;font-size:14px}.NewYearCtn.svelte-19uzw0u .leftTopCtn.svelte-19uzw0u{position:absolute;left:26px;top:60px;color:#eccf49;font-weight:bold}.NewYearCtn.svelte-19uzw0u .leftTopCtn .subCtn.svelte-19uzw0u{margin-bottom:10px;position:relative;background:#300072;border:1px solid rgba(255, 230, 177, 0.24);border-radius:0px 10px 10px 0px;height:20px;width:67px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px}.NewYearCtn.svelte-19uzw0u .leftTopCtn .subCtn .imgIcon.svelte-19uzw0u{width:28.5px;height:27.5px;position:absolute;left:-15px;top:-4px}.NewYearCtn.svelte-19uzw0u .leftTopCtn .subCtn .wordCtn.svelte-19uzw0u{display:inline-block;margin-left:18px;font-size:13px;color:#ffeb8e}.NewYearCtn.svelte-19uzw0u .rightTopCtn .subCtn.svelte-19uzw0u{cursor:pointer;margin-bottom:3px}.NewYearCtn.svelte-19uzw0u .rightTopCtn .subCtn .imgIcon.svelte-19uzw0u{width:27px}.NewYearCtn.svelte-19uzw0u .mainShowerCtn .mainImgCtn.svelte-19uzw0u{width:260px;position:absolute;top:126px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);height:230px}.NewYearCtn.svelte-19uzw0u .footer.svelte-19uzw0u{position:absolute;top:390px;width:100%;left:0}.NewYearCtn.svelte-19uzw0u .footer .topTipsCtn.svelte-19uzw0u{text-align:center;color:#eccf49;font-size:14px;margin-bottom:10px}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn.svelte-19uzw0u{margin-top:5px;text-align:center;font-size:14px;color:#9d8bcd;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .subTips.svelte-19uzw0u{display:inline-block;margin-right:10px;line-height:20px}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn.svelte-19uzw0u{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn .spCtn.svelte-19uzw0u{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:25px;height:25px;-ms-flex-negative:0;flex-shrink:0}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn .changeWordCtn.svelte-19uzw0u{margin-left:1px;line-height:20px}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn .radioImg.default.svelte-19uzw0u{width:20px;margin-top:0}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn .radioImg.selected.svelte-19uzw0u{display:none;width:18px}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn.active .default.svelte-19uzw0u{display:none}.NewYearCtn.svelte-19uzw0u .footer .footerBottomCtn .radioCtn.active .selected.svelte-19uzw0u{display:inline-block}.NewYearCtn.svelte-19uzw0u .buttonCtn.svelte-19uzw0u{text-align:center}.NewYearCtn.svelte-19uzw0u .buttonCtn .normalBtn.svelte-19uzw0u{cursor:pointer;display:inline-block;width:157px;height:49px;background:url(https://asset.tuwan.com/goldMagic/buttonBg.png);background-size:cover;overflow:hidden}.NewYearCtn.svelte-19uzw0u .buttonCtn .normalBtn .leftCtn.svelte-19uzw0u{float:left;height:100%;position:relative;text-align:center;width:50px;margin-left:15px}.NewYearCtn.svelte-19uzw0u .buttonCtn .normalBtn .leftCtn .icon.svelte-19uzw0u{width:20px;margin-top:10px}.NewYearCtn.svelte-19uzw0u .buttonCtn .normalBtn .leftCtn .numCtn.svelte-19uzw0u{position:absolute;top:24px;left:50%;font-size:14px;color:#ffffff;text-shadow:0 -1.5px #753903, 1.5px -1.5px #753903, 1.5px 0 #753903, 1.5px 1.5px #753903, 0 1.5px #753903, -1.5px 0 #753903, -1.5px -1.5px #753903;font-weight:bold;text-align:center;display:inline-block;-webkit-transform:translateX(-51%);transform:translateX(-51%)}.NewYearCtn.svelte-19uzw0u .buttonCtn .normalBtn .rightCtn.svelte-19uzw0u{float:left;width:93px;height:49px;line-height:49px;color:#943800;font-weight:bold;text-align:center;margin-left:-10px;font-size:16px}.NewYearCtn.svelte-19uzw0u .buttonCtn .inputNumCtn.svelte-19uzw0u{width:305px;height:40px;background:#2e147f;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);border-radius:7px;margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.NewYearCtn.svelte-19uzw0u .buttonCtn .inputNumCtn .inputNumWarpper.svelte-19uzw0u{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.NewYearCtn.svelte-19uzw0u .buttonCtn .inputNumCtn .inputNumWarpper .inp.svelte-19uzw0u{background:no-repeat;border:none;outline:0;width:200px;font-size:14px;color:#fff;line-height:37px;padding:0 10px;line-height:1px !important}.NewYearCtn.svelte-19uzw0u .buttonCtn .inputNumCtn .inputNumWarpper div.svelte-19uzw0u{color:aliceblue;position:absolute;right:0;font-size:12px}.NewYearCtn.svelte-19uzw0u .buttonCtn .inputNumCtn .smallBtnCtn.svelte-19uzw0u{cursor:pointer;overflow:hidden;color:#943800;font-weight:700;font-size:16px;width:100px;text-align:center;background:url(https://asset.tuwan.com/goldMagic/middleButtonBg.png);background-size:cover;height:45px;margin-top:-2px;line-height:46px}.coverBg.svelte-1hf8fls.svelte-1hf8fls{position:fixed;width:100%;height:100%;left:0;top:0;z-index:9999}.goldMagicCtn.svelte-1hf8fls.svelte-1hf8fls{border-radius:10px;position:fixed;width:420px;height:530px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999}.goldMagicCtn.magic.svelte-1hf8fls.svelte-1hf8fls{background:url(https://asset.tuwan.com/goldMagic/magicMainBg.png);background-size:cover}.goldMagicCtn.gold.svelte-1hf8fls.svelte-1hf8fls{background:url(https://asset.tuwan.com/goldMagic/goldMainBg.png);background-size:cover}.goldMagicCtn.svelte-1hf8fls .rightTopCtn.svelte-1hf8fls{position:absolute;right:12px;top:60px;text-align:center;z-index:9}.goldMagicCtn.svelte-1hf8fls .rightTopCtn .subCtn.svelte-1hf8fls{cursor:pointer;margin-bottom:4px}.goldMagicCtn.svelte-1hf8fls .rightTopCtn .subCtn .imgIcon.svelte-1hf8fls{width:27px}@-webkit-keyframes svelte-ynhm69-result_anmi{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes svelte-ynhm69-result_anmi{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.gift_item_container.svelte-ynhm69.svelte-ynhm69{width:98px;height:98px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:11px}.gift_item_container.svelte-ynhm69 .gift_item_wrapper.svelte-ynhm69{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;-webkit-animation-name:svelte-ynhm69-result_anmi;animation-name:svelte-ynhm69-result_anmi;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:100ms;animation-duration:100ms;width:100%;height:100%;background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/itemBg1.png");background-size:100% 100%;-webkit-transform:scale(0);transform:scale(0)}.gift_item_container.svelte-ynhm69 .gift_item_wrapper.love.svelte-ynhm69{background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/itemBg2.png");background-size:100% 100%}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .gift_item_costly_border.svelte-ynhm69{width:140px;height:140px;position:absolute;background:url("https://asset.tuwan.com/goldMagic/border.png");background-size:100% 100%;left:-24px}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .gift_item_costly_border2.svelte-ynhm69{width:139px;height:139px;position:absolute;background:url("https://dynamics-share.tuwan.com/activity/6aac053d142d4e02b51a9bc99849ef6c.png");background-size:100% 100%;left:-24px;background-position:4px 1px}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .gift_item_badge.svelte-ynhm69{position:absolute;right:-3px;top:-4px;z-index:3;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid transparent;border-image-slice:17 17 17 17 fill;border-image-width:15px;border-image-repeat:stretch;background:none;padding:0 2px}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .gift_item_badge .gift_item_badge_content.svelte-ynhm69{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;white-space:nowrap;gap:0}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .gift_item_badge .gift_item_badge_icon.svelte-ynhm69{width:19px;height:17px;-ms-flex-negative:0;flex-shrink:0;-o-object-fit:contain;object-fit:contain}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .gift_item_badge .gift_item_badge_num.svelte-ynhm69{font-weight:bold;font-size:14px;line-height:1}.gift_item_container.svelte-ynhm69 .gift_item_wrapper img.svelte-ynhm69{max-width:80px;max-height:80px;width:100%;height:100%}.gift_item_container.svelte-ynhm69 .gift_item_wrapper .num.svelte-ynhm69{font-size:14px;font-weight:400;color:#ffffff;line-height:17px;position:absolute;bottom:8px;right:6px}.gift_item_container.svelte-ynhm69 .gift_item_wrapper.costly.svelte-ynhm69{background:url("https://asset.tuwan.com/goldMagic/result_item_bg1.png");background-size:100% 100%}.gift_item_container.bigger.svelte-ynhm69.svelte-ynhm69{width:147px;height:147px;margin-top:-21px}.gift_item_container.bigger.svelte-ynhm69 .gift_item_wrapper .gift_item_costly_border.svelte-ynhm69{width:200px;height:200px;left:-30px}.gift_item_container.bigger.svelte-ynhm69 .gift_item_wrapper img.svelte-ynhm69{max-width:110px;max-height:110px}.gift_item_container.bigger.svelte-ynhm69 .gift_item_wrapper .num.svelte-ynhm69{font-size:22px;font-weight:400;color:#FFFFFF;line-height:26px;position:absolute;bottom:11px;right:11px}.gift_item_container.bigger.svelte-ynhm69 .gift_item_wrapper .gift_item_desc.svelte-ynhm69{position:absolute;font-size:16px;font-weight:400;color:#FFFFFF;line-height:28px;opacity:0.6;width:420px;text-align:center;bottom:-50px}.gift_item_container.bigger.svelte-ynhm69 .gift_item_wrapper .gift_item_hit.svelte-ynhm69{position:absolute;width:67px;height:73px;background:url("https://asset.tuwan.com/goldMagic/fireIcon.png?v1");background-size:100% 100%;right:-72px;top:-30px}.flex_ac.svelte-j330wx.svelte-j330wx{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.result_container.svelte-j330wx.svelte-j330wx{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:420px;height:530px;position:absolute;background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/resultBg_lucky2.png") no-repeat;background-size:100% 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.result_container.svelte-j330wx .title.svelte-j330wx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:13px}.result_container.svelte-j330wx .title img.svelte-j330wx{height:64.6px}.result_container.svelte-j330wx .result_wrapper .result_content.svelte-j330wx{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:distribute;justify-content:space-around;width:100%}.result_container.svelte-j330wx .result_wrapper.svelte-j330wx{margin-top:11px;width:320px;height:330px;display:-webkit-box;display:-ms-flexbox;display:flex}.result_container.svelte-j330wx .result_action_container.svelte-j330wx{display:-webkit-box;display:-ms-flexbox;display:flex;width:420px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px}.result_container.svelte-j330wx .result_action_container .result_action.svelte-j330wx{cursor:pointer;width:169px;height:57px;font-size:18px;font-weight:600;color:#302A87;line-height:57px;background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg1.png") no-repeat;background-size:100% 100%;text-align:center}.result_container.svelte-j330wx .result_info_container.svelte-j330wx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:8px}.result_container.svelte-j330wx .result_info_container span.svelte-j330wx{font-size:13px;font-weight:400;color:#ffffff;line-height:16px;opacity:0.5}.result_container.svelte-j330wx .result_info_container .result_action_ignore.svelte-j330wx{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}.result_container.svelte-j330wx .result_info_container .result_action_ignore i.svelte-j330wx{width:15px;height:15px;background:url("https://asset.tuwan.com/goldMagic/radioDefault.png") no-repeat;background-size:100% 100%;display:block;content:" ";margin-right:2px}.result_container.svelte-j330wx .result_info_container .result_action_ignore.ignore i.svelte-j330wx{background:url("https://asset.tuwan.com/goldMagic/radioSelect.png") no-repeat;background-size:100% 100%}.result_container.svelte-j330wx .result_vap_anim.svelte-j330wx{pointer-events:none;width:420px;height:530px;position:absolute;top:0;border-radius:10px;overflow:hidden}.result_container.glod.svelte-j330wx.svelte-j330wx{background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/resultBg_lovepng.png") no-repeat;background-size:100% 100%}.footerBottomCtn.svelte-j330wx.svelte-j330wx{margin-top:-4px;text-align:center;font-size:14px;color:#9d8bcd;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.footerBottomCtn.svelte-j330wx .result_action_ignore.svelte-j330wx{margin-left:18px;position:relative}.footerBottomCtn.svelte-j330wx .subTips.svelte-j330wx{display:inline-block;margin-right:10px}.footerBottomCtn.svelte-j330wx .radioCtn.svelte-j330wx{width:127px;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:50px}.footerBottomCtn.svelte-j330wx .radioCtn .spCtn.svelte-j330wx{display:inline-block;text-align:center;line-height:25px}.footerBottomCtn.svelte-j330wx .radioCtn .changeWordCtn.svelte-j330wx{margin-left:5px}.footerBottomCtn.svelte-j330wx .radioCtn .radioImg.default.svelte-j330wx{width:13px;margin-top:-2px}.footerBottomCtn.svelte-j330wx .radioCtn .radioImg.selected.svelte-j330wx{display:none;width:13px;margin-top:-2px}.footerBottomCtn.svelte-j330wx .radioCtn.active .default.svelte-j330wx{display:none}.footerBottomCtn.svelte-j330wx .radioCtn.active .selected.svelte-j330wx{display:inline-block}.buttonCtn.svelte-j330wx.svelte-j330wx{text-align:center}.buttonCtn.svelte-j330wx .normalBtn.svelte-j330wx{cursor:pointer;display:inline-block;width:157px;height:54px;line-height:54px;background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg1.png);background-size:100% 100%;overflow:hidden;font-weight:600;font-size:20px;color:#302A87}.buttonCtn.svelte-j330wx .normalBtn.love.svelte-j330wx{background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg2.png);background-size:100% 100%;color:#CD205A}.buttonCtn.svelte-j330wx .normalBtn .leftCtn.svelte-j330wx{float:left;height:100%;position:relative;text-align:center;width:50px;margin-left:15px}.buttonCtn.svelte-j330wx .normalBtn .leftCtn .icon.svelte-j330wx{margin-top:8px;position:absolute;left:11px;top:2px;width:28.5px;height:27.5px}.buttonCtn.svelte-j330wx .normalBtn .leftCtn .numCtn.svelte-j330wx{position:absolute;top:5px;left:50%;font-size:14px;color:#ffffff;text-shadow:0 -1.5px #302A87, 1.5px -1.5px #302A87, 1.5px 0 #302A87, 1.5px 1.5px #302A87, 0 1.5px #302A87, -1.5px 0 #302A87, -1.5px -1.5px #302A87;font-weight:bold;text-align:center;display:inline-block;-webkit-transform:translateX(-51%);transform:translateX(-51%)}.buttonCtn.svelte-j330wx .normalBtn .rightCtn.svelte-j330wx{float:left;width:93px;height:49px;line-height:49px;color:#302A87;font-weight:bold;text-align:center;margin-left:-10px}.buttonCtn.svelte-j330wx .inputNumCtn.svelte-j330wx{width:275px;height:40px;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);border-radius:7px;margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:#16196A;margin-bottom:11px}.buttonCtn.svelte-j330wx .inputNumCtn.love.svelte-j330wx{background:#45005B}.buttonCtn.svelte-j330wx .inputNumCtn .inputNumWarpper.svelte-j330wx{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.buttonCtn.svelte-j330wx .inputNumCtn .inputNumWarpper .inp.svelte-j330wx{background:no-repeat;border:none;outline:0;width:auto;font-size:14px;color:#fff;padding:0 10px;line-height:1px !important}.buttonCtn.svelte-j330wx .inputNumCtn .inputNumWarpper div.svelte-j330wx{color:aliceblue;position:absolute;right:0;font-size:12px}.buttonCtn.svelte-j330wx .inputNumCtn .smallBtnCtn.svelte-j330wx{cursor:pointer;overflow:hidden;width:88px;text-align:center;background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg1.png);background-size:100% 100%;height:52px;margin-top:-6px;line-height:52px;font-weight:600;font-size:18px;color:#302A87;margin-right:-3px}.buttonCtn.svelte-j330wx .inputNumCtn .smallBtnCtn.love.svelte-j330wx{background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg2.png);background-size:100% 100%;color:#CD205A}.subNumCtn.svelte-j330wx.svelte-j330wx{position:absolute;top:21px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:200px;text-align:center;font-size:12px}.history_container.svelte-1ialkuo.svelte-1ialkuo{left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999;width:420px;height:530px;position:absolute;background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/resultBg_lucky.png") no-repeat;background-size:100% 100%;border-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.history_container.svelte-1ialkuo .title.svelte-1ialkuo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px}.history_container.svelte-1ialkuo .title img.svelte-1ialkuo{height:60.6px}.history_container.svelte-1ialkuo .history_close_button.svelte-1ialkuo{cursor:pointer;width:34px;height:18px;font-size:20px;font-weight:bold;color:#302A87;line-height:57px;width:158px;height:57px;margin-top:10px;text-align:center;background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg1.png") no-repeat;background-size:100% 100%}.history_container.svelte-1ialkuo .history_close_button.love.svelte-1ialkuo{background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg2.png") no-repeat;background-size:100% 100%;color:#CD205A}.history_container.svelte-1ialkuo .history_wrapper.svelte-1ialkuo{height:350px;margin-top:19px}.history_container.svelte-1ialkuo .history_wrapper .history_content.svelte-1ialkuo{padding:0 10px;font-size:14px;font-weight:400;color:#FFFFFF;line-height:16px}.history_container.svelte-1ialkuo .history_wrapper .history_content .history_content_item.svelte-1ialkuo{color:#ffffff;margin-bottom:20px}.history_container.svelte-1ialkuo .history_wrapper .history_content .history_content_item img.svelte-1ialkuo{max-width:32px;max-height:32px}.history_container.svelte-1ialkuo .noDataTipCtn.svelte-1ialkuo{margin-top:150px}.history_container.glod.svelte-1ialkuo.svelte-1ialkuo{background:url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/resultBg_lovepng.png") no-repeat;background-size:100% 100%}.fireSvgaCtn {
1023
+ position: absolute;
1024
+ width: 67px;
1025
+ height: 73px;
1026
+ z-index: 9;
1027
+ top: 115px;
1028
+ right: 37px;
1029
+ }
1030
+
1031
+ .GoldCtn2 {
1032
+ position: fixed;
1033
+ width: 420px;
1034
+ height: 530px;
1035
+ left: 50%;
1036
+ top: 50%;
1037
+ -webkit-transform: translate(-50%, -50%);
1038
+ transform: translate(-50%, -50%);
1039
+ z-index: 2;
1040
+ }
1041
+ .GoldCtn2.magic {
1042
+ background: url(https://asset.tuwan.com/goldMagic/magicMainBg.png);
1043
+ background-size: cover;
1044
+ }
1045
+ .GoldCtn2.gold {
1046
+ background: url(https://asset.tuwan.com/goldMagic/goldMainBg.png);
1047
+ background-size: cover;
1048
+ }
1049
+ .GoldCtn2 .result_vap_anim {
1050
+ pointer-events: none;
1051
+ width: 422px;
1052
+ height: 531px;
1053
+ position: absolute;
1054
+ top: 0;
1055
+ z-index: 9;
1056
+ }
1057
+ .GoldCtn2 .title {
1058
+ -webkit-transform: translateX(-50%);
1059
+ transform: translateX(-50%);
1060
+ position: absolute;
1061
+ left: 50%;
1062
+ top: 2px;
1063
+ width: 150px;
1064
+ height: 57px;
1065
+ }
1066
+ .GoldCtn2 .subTitle {
1067
+ color: white;
1068
+ text-align: center;
1069
+ position: absolute;
1070
+ left: 0;
1071
+ width: 100%;
1072
+ top: 45px;
1073
+ font-size: 12px;
1074
+ }
1075
+ .GoldCtn2 .leftTopCtn {
1076
+ position: absolute;
1077
+ left: 26px;
1078
+ top: 60px;
1079
+ color: #eccf49;
1080
+ font-weight: bold;
1081
+ }
1082
+ .GoldCtn2 .leftTopCtn .subCtn {
1083
+ margin-bottom: 14px;
1084
+ position: relative;
1085
+ background: rgba(0, 0, 0, 0.5098039216);
1086
+ border: 1px solid rgba(255, 230, 177, 0.24);
1087
+ border-radius: 0px 10px 10px 0px;
1088
+ height: 20px;
1089
+ width: 67px;
1090
+ display: -webkit-box;
1091
+ display: -ms-flexbox;
1092
+ display: flex;
1093
+ -webkit-box-align: center;
1094
+ -ms-flex-align: center;
1095
+ align-items: center;
1096
+ font-size: 14px;
1097
+ }
1098
+ .GoldCtn2 .leftTopCtn .subCtn .imgIcon {
1099
+ width: 28.5px;
1100
+ height: 27.5px;
1101
+ position: absolute;
1102
+ left: -15px;
1103
+ top: -4px;
1104
+ }
1105
+ .GoldCtn2 .leftTopCtn .subCtn .wordCtn {
1106
+ display: inline-block;
1107
+ margin-left: 18px;
1108
+ font-size: 13px;
1109
+ color: #FFEB8E;
1110
+ }
1111
+ .GoldCtn2 .rightTopCtn {
1112
+ position: absolute;
1113
+ right: 12px;
1114
+ top: 60px;
1115
+ text-align: center;
1116
+ }
1117
+ .GoldCtn2 .rightTopCtn .subCtn {
1118
+ cursor: pointer;
1119
+ margin-bottom: 8px;
1120
+ }
1121
+ .GoldCtn2 .rightTopCtn .subCtn .imgIcon {
1122
+ width: 27px;
1123
+ }
1124
+ .GoldCtn2 .mainShowerCtn .mainImgCtn {
1125
+ width: 260px;
1126
+ position: absolute;
1127
+ top: 126px;
1128
+ left: 50%;
1129
+ -webkit-transform: translateX(-50%);
1130
+ transform: translateX(-50%);
1131
+ height: 230px;
1132
+ }
1133
+ .GoldCtn2 .footer {
1134
+ position: absolute;
1135
+ top: 386px;
1136
+ width: 100%;
1137
+ left: 0;
1138
+ }
1139
+ .GoldCtn2 .footer .topTipsCtn {
1140
+ text-align: center;
1141
+ color: #eccf49;
1142
+ font-size: 14px;
1143
+ margin-bottom: 10px;
1144
+ margin-top: 10px;
1145
+ }
1146
+ .GoldCtn2 .footer .topTipsCtn .sp {
1147
+ color: #DECC86;
1148
+ font-weight: bold;
1149
+ }
1150
+ .GoldCtn2 .footer .footerBottomCtn {
1151
+ margin-top: 11px;
1152
+ text-align: center;
1153
+ font-size: 14px;
1154
+ color: white;
1155
+ }
1156
+ .GoldCtn2 .footer .footerBottomCtn .subTips {
1157
+ display: inline-block;
1158
+ margin-right: 10px;
1159
+ color: #9D8BCD;
1160
+ }
1161
+ .GoldCtn2 .footer .progressCtn {
1162
+ background: url(https://asset.tuwan.com/goldMagic/progressCtn.png);
1163
+ background-size: cover;
1164
+ width: 283px;
1165
+ position: absolute;
1166
+ left: 50%;
1167
+ height: 10px;
1168
+ -webkit-transform: translateX(-50%);
1169
+ transform: translateX(-50%);
1170
+ top: -15px;
1171
+ }
1172
+ .GoldCtn2 .footer .progressCtn .showBar {
1173
+ position: absolute;
1174
+ background: url(https://asset.tuwan.com/goldMagic/progressBg.png);
1175
+ position: absolute;
1176
+ width: 10%;
1177
+ height: 10px;
1178
+ left: 0;
1179
+ top: 0px;
1180
+ background-size: cover;
1181
+ }
1182
+ .GoldCtn2 .buttonCtn {
1183
+ height: 54px;
1184
+ text-align: center;
1185
+ }
1186
+ .GoldCtn2 .buttonCtn .normalBtn {
1187
+ color: #302A87;
1188
+ font-weight: bold;
1189
+ cursor: pointer;
1190
+ display: inline-block;
1191
+ width: 226px;
1192
+ height: 60px;
1193
+ line-height: 60px;
1194
+ background: url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg2.png);
1195
+ background-size: 100% 100%;
1196
+ font-size: 21px;
1197
+ }
1198
+ .GoldCtn2 .buttonCtn .normalBtn .leftCtn {
1199
+ float: left;
1200
+ height: 100%;
1201
+ position: relative;
1202
+ text-align: center;
1203
+ width: 50px;
1204
+ margin-left: 10px;
1205
+ }
1206
+ .GoldCtn2 .buttonCtn .normalBtn .leftCtn .icon {
1207
+ width: 20px;
1208
+ margin-top: 8px;
1209
+ left: 15px;
1210
+ top: 4px;
1211
+ }
1212
+ .GoldCtn2 .buttonCtn .normalBtn .leftCtn .numCtn {
1213
+ position: absolute;
1214
+ top: 22px;
1215
+ left: 50%;
1216
+ font-size: 14px;
1217
+ color: #FFFFFF;
1218
+ text-shadow: 0 -1px #302A87, 1px -1px #302A87, 1px 0 #302A87, 1px 1px #302A87, 0 1px #302A87, -1px 0 #302A87, -1px -1px #302A87;
1219
+ font-weight: bold;
1220
+ text-align: center;
1221
+ display: inline-block;
1222
+ -webkit-transform: translateX(-51%);
1223
+ transform: translateX(-51%);
1224
+ }
1225
+ .GoldCtn2 .buttonCtn .normalBtn .rightCtn {
1226
+ float: left;
1227
+ width: 78px;
1228
+ height: 45px;
1229
+ line-height: 45px;
1230
+ color: #302A87;
1231
+ font-weight: bold;
1232
+ text-align: center;
1233
+ margin-left: -10px;
1234
+ }
1235
+ .GoldCtn2 .buttonCtn .normalBtn .innerCtn {
1236
+ position: relative;
1237
+ display: inline-block;
1238
+ width: 45px;
1239
+ height: 40px;
1240
+ line-height: 40px;
1241
+ }
1242
+ .GoldCtn2 .buttonCtn .normalBtn .innerCtn .icon {
1243
+ width: 21px;
1244
+ margin-top: -9px;
1245
+ }
1246
+ .GoldCtn2 .buttonCtn .normalBtn .innerCtn .numCtn {
1247
+ position: absolute;
1248
+ left: 50%;
1249
+ top: 11px;
1250
+ font-size: 14px;
1251
+ display: inline-block;
1252
+ width: 100px;
1253
+ text-align: center;
1254
+ -webkit-transform: translateX(-50%);
1255
+ transform: translateX(-50%);
1256
+ color: white;
1257
+ text-shadow: 0 -1px #302A87, 1px -1px #302A87, 1px 0 #302A87, 1px 1px #302A87, 0 1px #302A87, -1px 0 #302A87, -1px -1px #302A87;
1258
+ }
1259
+ .GoldCtn2 .buttonCtn .firedButton {
1260
+ width: 256.8px;
1261
+ height: 92.4px;
1262
+ display: inline-block;
1263
+ margin-top: -20px;
1264
+ cursor: pointer;
1265
+ }
1266
+ .GoldCtn2 .buttonCtn .inputNumCtn {
1267
+ display: inline-block;
1268
+ width: 145px;
1269
+ height: 40px;
1270
+ background: #2E147F;
1271
+ line-height: 37px;
1272
+ text-align: center;
1273
+ overflow: hidden;
1274
+ -webkit-transform: translateY(-2px);
1275
+ transform: translateY(-2px);
1276
+ border-radius: 7px;
1277
+ }
1278
+ .GoldCtn2 .buttonCtn .inputNumCtn .inp {
1279
+ background: no-repeat;
1280
+ border: none;
1281
+ outline: none;
1282
+ width: 58px;
1283
+ font-size: 14px;
1284
+ color: white;
1285
+ line-height: 37px;
1286
+ display: inline-block;
1287
+ float: left;
1288
+ padding: 0 10px;
1289
+ }
1290
+ .GoldCtn2 .buttonCtn .inputNumCtn .smallBtnCtn {
1291
+ cursor: pointer;
1292
+ overflow: hidden;
1293
+ color: #302A87;
1294
+ font-weight: bold;
1295
+ font-size: 16px;
1296
+ display: inline-block;
1297
+ width: 67px;
1298
+ text-align: center;
1299
+ background: url(https://asset.tuwan.com/goldMagic/smallButtonBg.png);
1300
+ background-size: cover;
1301
+ height: 45px;
1302
+ margin-top: -2px;
1303
+ line-height: 46px;
1304
+ }
1305
+
1306
+ .result_action_ignore {
1307
+ display: -webkit-box;
1308
+ display: -ms-flexbox;
1309
+ display: flex;
1310
+ cursor: pointer;
1311
+ -webkit-box-align: center;
1312
+ -ms-flex-align: center;
1313
+ align-items: center;
1314
+ }
1315
+ .result_action_ignore i {
1316
+ width: 13px;
1317
+ height: 13px;
1318
+ background: url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/select_no.png") no-repeat;
1319
+ background-size: 100% 100%;
1320
+ display: block;
1321
+ content: " ";
1322
+ margin-right: 5px;
1323
+ }
1324
+
1325
+ .result_action_ignore.ignore i {
1326
+ background: url("https://asset.tuwan.com/chartRoom/loveLuckyMagic/select_yes.png") no-repeat;
1327
+ background-size: 100% 100%;
1328
+ }.fireSvgaCtnMagic.svelte-1lzqdpv.svelte-1lzqdpv{position:absolute;width:67px;height:73px;z-index:9;top:115px;right:37px;cursor:pointer}.GoldCtn2.svelte-1lzqdpv.svelte-1lzqdpv{position:fixed;width:420px;height:530px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:2}.GoldCtn2.svelte-1lzqdpv .result_vap_anim.svelte-1lzqdpv{pointer-events:none;width:422px;height:531px;position:absolute;top:0;z-index:9}.GoldCtn2.svelte-1lzqdpv .title.svelte-1lzqdpv{-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;left:50%;top:2px;width:150px;height:57px}.GoldCtn2.svelte-1lzqdpv .subTitle.svelte-1lzqdpv{color:white;text-align:center;position:absolute;left:0;width:100%;top:55px;font-size:14px}.GoldCtn2.svelte-1lzqdpv .leftTopCtn.svelte-1lzqdpv{position:absolute;left:26px;top:60px;color:#eccf49;font-weight:bold}.GoldCtn2.svelte-1lzqdpv .leftTopCtn .subCtn.svelte-1lzqdpv{margin-bottom:10px;position:relative;background:rgba(0, 0, 0, 0.4392156863);border:1px solid rgba(255, 230, 177, 0.24);border-radius:0px 10px 10px 0px;height:20px;width:67px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px}.GoldCtn2.svelte-1lzqdpv .leftTopCtn .subCtn .imgIcon.svelte-1lzqdpv{width:28.5px;height:27.5px;position:absolute;left:-15px;top:-4px}.GoldCtn2.svelte-1lzqdpv .leftTopCtn .subCtn .wordCtn.svelte-1lzqdpv{display:inline-block;margin-left:18px;font-size:13px;color:#ffeb8e}.GoldCtn2.svelte-1lzqdpv .rightTopCtn .subCtn.svelte-1lzqdpv{cursor:pointer;margin-bottom:8px}.GoldCtn2.svelte-1lzqdpv .rightTopCtn .subCtn .imgIcon.svelte-1lzqdpv{width:27px}.GoldCtn2.svelte-1lzqdpv .mainShowerCtn .mainImgCtn.svelte-1lzqdpv{width:350px;position:absolute;top:73px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);height:331px}.GoldCtn2.svelte-1lzqdpv .footer.svelte-1lzqdpv{position:absolute;top:421px;width:100%;left:0}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn.svelte-1lzqdpv{margin-top:5px;text-align:center;font-size:14px;color:#9d8bcd;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .result_action_ignore.svelte-1lzqdpv{margin-right:33px}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn.svelte-1lzqdpv{width:127px;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn .spCtn.svelte-1lzqdpv{display:inline-block;text-align:center;line-height:25px}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn .changeWordCtn.svelte-1lzqdpv{margin-left:5px}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn .radioImg.default.svelte-1lzqdpv{width:13px;margin-top:-2px}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn .radioImg.selected.svelte-1lzqdpv{display:none;width:13px;margin-top:-2px}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn.active .default.svelte-1lzqdpv{display:none}.GoldCtn2.svelte-1lzqdpv .footer .footerBottomCtn .radioCtn.active .selected.svelte-1lzqdpv{display:inline-block}.GoldCtn2.svelte-1lzqdpv .buttonCtn.svelte-1lzqdpv{text-align:center}.GoldCtn2.svelte-1lzqdpv .buttonCtn .normalBtn.svelte-1lzqdpv{cursor:pointer;display:inline-block;width:157px;height:49px;background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg1.png);background-size:100% 100%;overflow:hidden}.GoldCtn2.svelte-1lzqdpv .buttonCtn .normalBtn .leftCtn.svelte-1lzqdpv{float:left;height:100%;position:relative;text-align:center;width:50px;margin-left:15px}.GoldCtn2.svelte-1lzqdpv .buttonCtn .normalBtn .leftCtn .icon.svelte-1lzqdpv{margin-top:8px;position:absolute;left:11px;top:2px;width:28.5px;height:27.5px}.GoldCtn2.svelte-1lzqdpv .buttonCtn .normalBtn .leftCtn .numCtn.svelte-1lzqdpv{position:absolute;top:4px;left:50%;font-size:14px;color:#ffffff;text-shadow:0 -1.5px #302A87, 1.5px -1.5px #302A87, 1.5px 0 #302A87, 1.5px 1.5px #302A87, 0 1.5px #302A87, -1.5px 0 #302A87, -1.5px -1.5px #302A87;font-weight:bold;text-align:center;display:inline-block;-webkit-transform:translateX(-51%);transform:translateX(-51%)}.GoldCtn2.svelte-1lzqdpv .buttonCtn .normalBtn .rightCtn.svelte-1lzqdpv{float:left;width:93px;height:49px;line-height:49px;color:#302A87;font-weight:bold;text-align:center;margin-left:-10px}.GoldCtn2.svelte-1lzqdpv .buttonCtn .inputNumCtn.svelte-1lzqdpv{width:240px;height:40px;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);border-radius:7px;margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:#16196A}.GoldCtn2.svelte-1lzqdpv .buttonCtn .inputNumCtn .inputNumWarpper.svelte-1lzqdpv{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.GoldCtn2.svelte-1lzqdpv .buttonCtn .inputNumCtn .inputNumWarpper .inp.svelte-1lzqdpv{background:no-repeat;border:none;outline:0;width:auto;font-size:14px;color:#fff;padding:0 10px;line-height:1px !important}.GoldCtn2.svelte-1lzqdpv .buttonCtn .inputNumCtn .inputNumWarpper div.svelte-1lzqdpv{color:aliceblue;position:absolute;right:0;font-size:12px}.GoldCtn2.svelte-1lzqdpv .buttonCtn .inputNumCtn .smallBtnCtn.svelte-1lzqdpv{cursor:pointer;overflow:hidden;width:88px;text-align:center;background:url(https://asset.tuwan.com/goldMagic/middleButtonBg.png);background-size:100% 100%;height:49px;margin-top:-5px;line-height:49px;font-weight:600;font-size:18px;color:#302A87;margin-right:-3px}.fireSvgaCtnMagic.svelte-3ubqd7.svelte-3ubqd7{position:absolute;width:67px;height:73px;z-index:9;top:115px;right:37px;cursor:pointer}.GoldCtn2.svelte-3ubqd7.svelte-3ubqd7{position:fixed;width:420px;height:530px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:2}.GoldCtn2.svelte-3ubqd7 .result_vap_anim.svelte-3ubqd7{pointer-events:none;width:422px;height:531px;position:absolute;top:0;z-index:9}.GoldCtn2.svelte-3ubqd7 .title.svelte-3ubqd7{-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;left:50%;top:2px;width:150px;height:57px}.GoldCtn2.svelte-3ubqd7 .subTitle.svelte-3ubqd7{color:white;text-align:center;position:absolute;left:0;width:100%;top:55px;font-size:14px}.GoldCtn2.svelte-3ubqd7 .leftTopCtn.svelte-3ubqd7{position:absolute;left:26px;top:60px;color:#eccf49;font-weight:bold}.GoldCtn2.svelte-3ubqd7 .leftTopCtn .subCtn.svelte-3ubqd7{margin-bottom:10px;position:relative;background:rgba(0, 0, 0, 0.4392156863);border:1px solid rgba(255, 230, 177, 0.24);border-radius:0px 10px 10px 0px;height:20px;width:67px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px}.GoldCtn2.svelte-3ubqd7 .leftTopCtn .subCtn .imgIcon.svelte-3ubqd7{width:28.5px;height:27.5px;position:absolute;left:-15px;top:-4px}.GoldCtn2.svelte-3ubqd7 .leftTopCtn .subCtn .wordCtn.svelte-3ubqd7{display:inline-block;margin-left:18px;font-size:13px;color:#ffeb8e}.GoldCtn2.svelte-3ubqd7 .rightTopCtn .subCtn.svelte-3ubqd7{cursor:pointer;margin-bottom:8px}.GoldCtn2.svelte-3ubqd7 .rightTopCtn .subCtn .imgIcon.svelte-3ubqd7{width:27px}.GoldCtn2.svelte-3ubqd7 .mainShowerCtn .mainImgCtn.svelte-3ubqd7{width:350px;position:absolute;top:73px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);height:331px}.GoldCtn2.svelte-3ubqd7 .footer.svelte-3ubqd7{position:absolute;top:421px;width:100%;left:0}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn.svelte-3ubqd7{margin-top:5px;text-align:center;font-size:14px;color:#9d8bcd;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .result_action_ignore.svelte-3ubqd7{margin-right:33px}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn.svelte-3ubqd7{width:127px;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn .spCtn.svelte-3ubqd7{display:inline-block;text-align:center;line-height:25px}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn .changeWordCtn.svelte-3ubqd7{margin-left:5px}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn .radioImg.default.svelte-3ubqd7{width:13px;margin-top:-2px}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn .radioImg.selected.svelte-3ubqd7{display:none;width:13px;margin-top:-2px}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn.active .default.svelte-3ubqd7{display:none}.GoldCtn2.svelte-3ubqd7 .footer .footerBottomCtn .radioCtn.active .selected.svelte-3ubqd7{display:inline-block}.GoldCtn2.svelte-3ubqd7 .buttonCtn.svelte-3ubqd7{text-align:center}.GoldCtn2.svelte-3ubqd7 .buttonCtn .normalBtn.svelte-3ubqd7{cursor:pointer;display:inline-block;width:157px;height:49px;background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/borderImg2.png);background-size:100% 100%;overflow:hidden}.GoldCtn2.svelte-3ubqd7 .buttonCtn .normalBtn .leftCtn.svelte-3ubqd7{float:left;height:100%;position:relative;text-align:center;width:50px;margin-left:15px}.GoldCtn2.svelte-3ubqd7 .buttonCtn .normalBtn .leftCtn .icon.svelte-3ubqd7{margin-top:8px;position:absolute;left:11px;top:2px;width:28.5px;height:27.5px}.GoldCtn2.svelte-3ubqd7 .buttonCtn .normalBtn .leftCtn .numCtn.svelte-3ubqd7{position:absolute;top:4px;left:50%;font-size:14px;color:#ffffff;text-shadow:0 -1.5px #CD205A, 1.5px -1.5px #CD205A, 1.5px 0 #CD205A, 1.5px 1.5px #CD205A, 0 1.5px #CD205A, -1.5px 0 #CD205A, -1.5px -1.5px #CD205A;font-weight:bold;text-align:center;display:inline-block;-webkit-transform:translateX(-51%);transform:translateX(-51%)}.GoldCtn2.svelte-3ubqd7 .buttonCtn .normalBtn .rightCtn.svelte-3ubqd7{float:left;width:93px;height:49px;line-height:49px;color:#CD205A;font-weight:bold;text-align:center;margin-left:-10px}.GoldCtn2.svelte-3ubqd7 .buttonCtn .inputNumCtn.svelte-3ubqd7{width:240px;height:40px;line-height:37px;text-align:center;overflow:hidden;-webkit-transform:translateY(-2px);transform:translateY(-2px);border-radius:7px;margin-left:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:#45005B}.GoldCtn2.svelte-3ubqd7 .buttonCtn .inputNumCtn .inputNumWarpper.svelte-3ubqd7{position:relative;width:200px;display:-webkit-box;display:-ms-flexbox;display:flex}.GoldCtn2.svelte-3ubqd7 .buttonCtn .inputNumCtn .inputNumWarpper .inp.svelte-3ubqd7{background:no-repeat;border:none;outline:0;width:auto;font-size:14px;color:#fff;padding:0 10px;line-height:1px !important}.GoldCtn2.svelte-3ubqd7 .buttonCtn .inputNumCtn .inputNumWarpper div.svelte-3ubqd7{color:aliceblue;position:absolute;right:0;font-size:12px}.GoldCtn2.svelte-3ubqd7 .buttonCtn .inputNumCtn .smallBtnCtn.svelte-3ubqd7{cursor:pointer;overflow:hidden;width:88px;text-align:center;background:url(https://asset.tuwan.com/goldMagic/middleButtonBg.png);background-size:100% 100%;height:45px;margin-top:-3px;line-height:46px;font-weight:600;font-size:18px;color:#CD205A;margin-right:-3px}.coverBg.svelte-11ad5b5.svelte-11ad5b5{position:fixed;width:100%;height:100%;left:0;top:0;z-index:9999}.goldMagicCtn2.svelte-11ad5b5.svelte-11ad5b5{border-radius:10px;position:fixed;width:420px;height:530px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:9999}.goldMagicCtn2.magic.svelte-11ad5b5.svelte-11ad5b5{background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/luckyBg2.png);background-size:cover}.goldMagicCtn2.gold.svelte-11ad5b5.svelte-11ad5b5{background:url(https://asset.tuwan.com/chartRoom/loveLuckyMagic/loveBg.png);background-size:cover}.goldMagicCtn2.svelte-11ad5b5 .rightTopCtn.svelte-11ad5b5{position:absolute;right:12px;top:60px;text-align:center;z-index:9}.goldMagicCtn2.svelte-11ad5b5 .rightTopCtn .subCtn.svelte-11ad5b5{cursor:pointer;margin-bottom:6px}.goldMagicCtn2.svelte-11ad5b5 .rightTopCtn .subCtn .imgIcon.svelte-11ad5b5{width:27px}