jiangping
2024-07-16 b0b94a084ed6c1a685caebb8dfb1a0d65fdd9ef6
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
.list{
  padding: 30rpx 40rpx;
  .line{
    height: 120rpx;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1rpx solid #e5e5e5;
    .la{
      width: 180rpx;
      font-size: 30rpx;
      color: #777777;
    }
    .val{
      flex: 1;
      display: flex;
      justify-content: flex-end;
      .input{
        text-align: right;
        max-width: 450rpx;
        white-space: nowrap;
        overflow: hidden;//文本超出隐藏
        text-overflow: ellipsis;
      }
      input{
        text-align: right;
      }
      .icon{
        width: 40rpx;
      }
    }
  }
}