1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| @import "@/assets/theme/index.scss";
|
| .recharge-text {
| @include themify() {
| background: themed("tab_background");
| }
|
| max-width: 260px;
| height: 60px;
| line-height: 60px;
| margin: 52px 0;
|
| @include themify() {
| color: themed("text_color");
| }
| }
|
| .mt20 {
| margin-top: 20px;
| }
|
| .mb82 {
| margin-bottom: 82px;
| }
|
| .common-round {
| width: 16px;
| height: 16px;
| border-radius: 100%;
| margin-right: 15px;
| margin-top: 15px;
| }
|
| .yellow-round {
| background-color: #F5D658;
| }
|
| .green-round {
| background-color: #2EBD85;
| }
|
| .red-round {
| background-color: red;
| }
|
|