feiyu02
2022-08-10 43a0780edd2db8e841325cb73032e819716c3595
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
/* pages/module_ledger/ledgerhome/ledgerhome.wxss */
.banner-bg {
  position: fixed;
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #57E4CB, #83b6ae);
}
 
.page__hd {
  height: 30vh;
}
 
.page__bd {
  padding-bottom: 0;
}
 
.swiper-tab{
  width: 100%;
  text-align: center;
  line-height: 80rpx;
  white-space: nowrap;
  z-index: 2;
  /* background-color: #65EAD2; */
  /* background-color: #70ea65; */
  padding: 2px;
}
 
 
.swiper-tab-list{
  font-size: 30rpx;
  display: inline-block;
  min-width: 18%;
  padding: 0 1%;
  color: rgba(255, 255, 255, 0.658);
}
 
.on{ 
  color: white;
  font-weight: bold;
  border-bottom: 4rpx solid white;
}
 
.swiper-box{
  display: block;
  top: 80rpx;
  width: 100%;
  margin-top: 1px;
  background-color: white;
}
 
.ledger-group {
  display: flex;
  flex-wrap: wrap;
  /* background-color: white; */
  justify-content: flex-start;
}
 
.ledger-item {
  position: relative;
  width: 33.33333vw;
  text-align: center;
  /* background-color: teal; */
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: x-small;
}
 
.ledger-item:active{
  background-color: var(--fyui-BG-COLOR-ACTIVE);
}
 
.ledger-icon {
  width: 60px;
  height: 60px;
}
 
.ledger-tag {
  position: absolute;
  right: 8vw;
  top: 6px;
  width: 16px;
  height: 16px;
  color: white;
  padding: 1px;
  border-radius: 50%;
  font-size: 10px;
}