zhengyiming
2025-03-13 13172e75446452388f0e4a0c4aac7e696e1b21da
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
@use './common.scss' as *;
 
.account-add-card {
  border-radius: 16px;
  min-height: 120px;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: boleGetCssVar('color', 'primary');
}
 
.account-card {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 28px;
 
  .account-card-top {
    display: flex;
    font-size: 28px;
    line-height: 32px;
    align-items: center;
    margin-bottom: 32px;
 
    .account-card-title {
      flex: 1;
      min-width: 0;
      @include ellipsis;
      color: boleGetCssVar('text-color', 'primary');
    }
 
    .account-card-actions {
      display: flex;
      align-items: center;
 
      .account-card-action {
        color: boleGetCssVar('color', 'primary');
      }
 
      .account-card-action + .account-card-action {
        margin-left: 10px;
      }
    }
  }
 
  .account-card-content {
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    align-items: center;
    margin-bottom: 32px;
    color: boleGetCssVar('text-color', 'primary');
    @include ellipsis;
  }
 
  .account-card-remark {
    font-size: 28px;
    line-height: 32px;
    color: boleGetCssVar('text-color', 'secondary');
    @include ellipsis;
  }
}
 
.par-account-list {
  .nut-radio--button {
    margin-bottom: 20px !important;
 
    &:last-child {
      margin-right: 20px !important;
      margin-bottom: 20px !important;
    }
  }
}