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
  | .wrap{ 
 |    width: 100rpx; 
 |    height: 232rpx; 
 |    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; 
 |    &:nth-last-child(1){ 
 |      margin-bottom: 0; 
 |    } 
 |    image{ 
 |      width: 48rpx; 
 |      margin-bottom: 12rpx; 
 |    } 
 |  } 
 |  .app{ 
 |    position: fixed; 
 |    z-index: 999; 
 |    bottom: 240rpx; 
 |    right: 0; 
 |  } 
 |  
  |