fix
Helius
2021-02-20 5b0ffe6aed3c349f8510becda5543dde97cd7cde
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
.tabs_box {
  display: flex;
  color: #999;
  
  line-height: 60rpx;
  width: 95%;margin: auto;
  background: #FFFFFF
}
.tabs_box>view {
  text-align: center;
  font-size: 26rpx;
  width: 25%;
  padding: 20rpx 0;
}
.selected {
  height: 100%;
  color: #00c085;
  font-size: 30rpx;
  border-bottom: 2rpx solid #00c085;
}
.list-item{
  background: #FFFFFF;
  border-radius: 4px;
  margin: 10px;
  color: #3a3f3f;
  border: 1px solid #EDEAF4;
  padding: 0 10px;
}
.list-item text{
  font-size: 10pt;
}
.list-header{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 10pt;
  border-bottom: 1px solid #EDEAF4;
}
.list-header .name{
  font-size: 11pt;
}
.list-header .number{
  color: #aeaeae;
  font-size: 10pt;
  margin-top: 5px;
}
.list-content{
  padding: 12px 0;
}
.list-content-row{
  display: flex;
  justify-content: space-between;
  line-height: 28px;
}
.list-footer{
  display: flex;
  justify-content: flex-end;
  padding: 12px 0;
  border-top: 1px solid #EDEAF4;
}
.ml-10{
  margin-left: 10px;
}
.gray{
  color: #aeaeae;
}