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
| .box {
| width: 100%;
| }
| .head {
| width: 100%;
| height: 44px;
| padding: 0 15px;
| display: flex;
| align-items: center;
| justify-content: space-between;
| box-sizing: border-box;
| background: #FFFFFF;
| position: sticky;
| top: 0;
| left: 0;
| z-index: 999;
| box-shadow: 0 2px 8px 0 rgba(102,102,102,0.05);
| }
| .head_logo {
| width: 98px;
| height: 32px;
| }
| .head_menu {
| width: 24px;
| height: 24px;
| }
| .banner {
| width: 100%;
| padding: 24px 15px;
| box-sizing: border-box;
| background: #F8F9FB;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| }
| .banner_title {
| font-weight: 600;
| font-size: 18px;
| color: #191B1F;
| }
| .banner_info {
| font-weight: 400;
| font-size: 11px;
| color: #9196A1;
| margin-top: 10px;
| text-align: center;
| }
| .banner img {
| width: 345px;
| height: 173px;
| margin-top: 20px;
| }
| .lanmu {
| width: 100%;
| height: 70px;
| }
| .item {
| width: 100%;
| padding: 24px 0;
| box-sizing: border-box;
| background-color: #ffffff;
| }
| .item_title {
| width: 100%;
| padding: 0 15px;
| box-sizing: border-box;
| font-weight: 600;
| font-size: 16px;
| color: #191B1F;
| }
| .item_info {
| width: 100%;
| padding: 0 15px;
| box-sizing: border-box;
| font-weight: 400;
| font-size: 11px;
| color: #9196A1;
| margin-top: 11px;
| }
| .item_list {
| width: 100%;
| margin-top: 10px;
| display: flex;
| align-items: center;
| flex-wrap: wrap;
| justify-content: space-between;
| }
| .item_list_item {
| width: 25%;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| margin-bottom: 15px;
| }
| .item_list_item img {
| width: 44px;
| height: 44px;
| }
| .item_list_item span {
| font-weight: 400;
| font-size: 13px;
| color: #191B1F;
| margin-top: 10px;
| }
| .item_image {
| width: 100%;
| padding: 0 15px;
| box-sizing: border-box;
| margin-top: 5px;
| }
| .gengduo {
| width: 100%;
| padding: 24px 17px;
| box-sizing: border-box;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| background-color: #ffffff;
| }
| .gengduo_title {
| font-weight: 600;
| font-size: 18px;
| color: #191B1F;
| }
| .gengduo_info {
| font-weight: 400;
| font-size: 11px;
| color: #9196A1;
| margin-top: 10px;
| text-align: center;
| }
| .gengduo img {
| width: 100%;
| margin-top: 13px;
| }
|
|