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
| html, body {
| width: 100%;
| height: 100%;
| background: #FFFFFF;
| }
| .weui-mask_transparent {
| background: #000000;
| opacity: 0.4;
| }
| .text-center {
| text-align: center;
| }
| .pull-left {
| float: left;
| }
| .pull-right {
| float: right;
| }
| .padding-0 {
| padding: 0px;
| }
| .row {
| overflow: hidden;
| margin-right: -5px;
| margin-left: -5px;
| }
| .row .col-1, .row .col-2, .row .col-3, .row .col-4, .row .col-5 {
| float: left;
| box-sizing: border-box;
| padding-right: 5px;
| padding-left: 5px;
| }
| .row .col-1 {
| width: 100%;
| }
| .row .col-2 {
| width: 50%;
| }
| .row .col-3 {
| width: 33.33333333%;
| }
| .row .col-4 {
| width: 25%;
| }
| .row .col-5 {
| width: 20%;
| }
| .border-bottom-1 {
| border-bottom: 1px solid #EEEEEE;
| }
| .border-top-1 {
| border-top: 1px solid #EEEEEE;
| }
| .border-bottom-5 {
| border-bottom: 5px solid #EEEEEE;
| }
| .clear {
| clear: both;
| }
|
|