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
|
| .div_items {
| /* background-color: blue */
| height: 0.99rem;
| }
|
| .div_list {
| margin-top: 0.2rem;
| background-color: white;
| }
|
| .itemsTop {
| display: -webkit-flex;
| justify-content: space-between;
| align-items: center;
| height: 0.98rem;
| }
|
| .title {
| color: #333333;
| height: 0.32rem;
| font-size: 0.32rem;
| display: -webkit-flex;
| align-items: center;
| margin-left: 0.3rem;
| }
|
| .itemsTop img {
| width: 0.15rem;
| height: 0.24rem;
| margin-right: 0.3rem;
| }
|
| .itemsLine {
| height: 1px;
| background-color: #E0E0E0;
| margin-left: 0.3rem;
| }
|
| .itemsLine.checked {
| background-color: white;
| }
|
| .itemsLine:hover {
| background-color: white;
| }
|
| .desc {
| color: #888888;
| font-size: 0.26rem;
| height: 0.28rem;
| display: -webkit-flex;
| align-items: center;
| justify-content: center;
| margin-top: 0.36rem;
| }
|
|