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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
| /* 间距 */
| .mt-5{
| margin-top: 5px;
| }
| .mt-10{
| margin-top: 10px;
| }
| .mt-15{
| margin-top: 15px;
| }
| .mt-20{
| margin-top: 20px;
| }
| .mt-30{
| margin-top: 30px;
| }
|
| .ml-5{
| margin-left: 5px;
| }
| .ml-10{
| margin-left: 10px;
| }
| .ml-15{
| margin-left: 15px;
| }
| .ml-20{
| margin-left: 20px;
| }
|
| .mr-5{
| margin-right: 5px;
| }
| .mr-10{
| margin-right: 10px;
| }
| .mr-15{
| margin-right: 15px;
| }
| .mr-20{
| margin-right: 20px;
| }
|
| .mb-5{
| margin-bottom: 5px;
| }
| .mb-10{
| margin-bottom: 10px;
| }
| .mb-20{
| margin-bottom: 20px;
| }
| .mb-30{
| margin-bottom: 30px;
| }
|
| /* 字体 */
| .font-12{
| font-size: 12px;
| }
| .font-14{
| font-size: 14px;
| }
| .font-15{
| font-size: 15px;
| }
| .font-16{
| font-size: 16px;
| }
| .font-17{
| font-size: 17px;
| }
| .font-18{
| font-size: 18px;
| }
| .font-20{
| font-size: 20px;
| }
|
| /* 颜色 */
| .blue{
| color: #518EFF;
| }
| .white{
| color: #FFFFFF;
| }
| .gray{
| color: #ABB1CC;
| }
| .dark-gray{
| color: #666666;
| }
| .red{
| color:#DE5A5A;
| }
| .green{
| color:#1FB713;
| }
| .purple{
| color: #5A73DE;
| }
| .blueness{
| color: #58C4C0;
| }
| .orange{
| color: #E89D44;
| }
| .yellow{
| color: #E6E15F;
| }
| .font-dark{
| color: #111111;
| }
| .font-bold{
| font-weight: 700;
| }
|
| /* 布局 */
| .flex{
| display: flex;
| }
| .flex-1{
| flex: 1;
| }
| .flex-v{
| flex-direction: column;
| }
| .align-center{
| align-items: center;
| }
| .justify-between{
| justify-content: space-between;
| }
| .justify-around{
| justify-content: space-around;
| }
| .block{
| display: block;
| }
| .placeholder{
| color: #999999;
| }
| .center{
| text-align: center;
| }
| .right{
| text-align: end;
| }
|
|