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
|
| .mainWrap {
| font-size: 0;
| height: 46px;
| width: 100%;
| position: relative;
| display: flex;
| flex-direction: row;
| padding-left: 13px;
| padding-right: 13px;
| align-items: center;
| box-sizing: border-box;
| align-items: center;
| border-bottom: 1px solid #e7e7e7;
| }
| .search {
| height: 44rpx;
| padding: 10rpx 25rpx;
| line-height: 50rpx;
| font-size: 28rpx;
| background: #FFF;
| flex: 1;
| border-radius: 20px;
| display: flex;
| color: gray;
| }
| .classify {
| display: flex;
| flex-direction: row;
| }
| .classify_left {
| width: 30%;
| text-align: center;
| }
| .classify_leftsignal {
| height: 60px;
| line-height: 60px;
| }
| .classify_leftsignalHL {
| border-left: 2px solid #ee0a24;
| }
| .classify_leftsignalAN {
| background-color: #f7f8fa;
| }
| .classify_right {
| width: 70%;
| display: flex;
| flex-direction: row;
| flex-wrap: wrap;
| height: 100%;
| padding: 40rpx 0;
| }
| .classify_rightsignal {
| width: 33.3%;
| padding: 12px;
| box-sizing: border-box;
| height: 120px;
| display: flex;
| flex-direction: column;
| align-items: center;
| }
| .title {
| font-size: 24rpx;
| }
|
|