k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
.list {
  padding: 30rpx 40rpx;
}
.list .line {
  height: 120rpx;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1rpx solid #e5e5e5;
}
.list .line .la {
  width: 180rpx;
  font-size: 30rpx;
  color: #777777;
}
.list .line .val {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.list .line .val .input {
  text-align: right;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list .line .val input {
  text-align: right;
}
.list .line .val .icon {
  width: 40rpx;
}
.bottombtn {
  position: fixed;
  left: 40rpx;
  width: 670rpx;
  height: 88rpx;
  background: #B08771;
  border-radius: 8rpx;
  font-weight: 500;
  font-size: 32rpx;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}