| 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
 | | .wrap{ |  |   width: 100rpx; |  |   background: rgba(255,255,255,0.86); |  |   box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(0,0,0,0.2); |  |   border-radius: 8rpx 0rpx 0rpx 8rpx; |  |   border: 1rpx solid #EEEEEE; |  |   padding: 20rpx 0rpx; |  | } |  | .item{ |  |   display: flex; |  |   flex-direction: column; |  |   align-items: center; |  |   font-weight: 400; |  |   font-size: 20rpx; |  |   color: #666666; |  |   margin-bottom: 20rpx; |  |   position: relative; |  |   .activeNum{ |  |     width: 28rpx; |  |     height: 28rpx; |  |     background: #F70303; |  |     color: #fff; |  |     font-size: 20rpx; |  |     line-height: 26rpx; |  |     text-align: center; |  |     border-radius: 50%; |  |     position: absolute; |  |     top: -8rpx; |  |     right: 8rpx; |  |   } |  |   &:nth-last-child(1){ |  |     margin-bottom: 0; |  |   } |  |   image{ |  |     width: 48rpx; |  |     margin-bottom: 12rpx; |  |   } |  | } |  | .app{ |  |   position: fixed; |  |   z-index: 999; |  |   bottom: 240rpx; |  |   right: 0; |  | } | 
 |