wupengfei
2025-02-25 e53e33dd46fdf138c851b10f12cdc00131a8d644
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*postcss-pxtransform disable*/
@use './common.scss' as *;
 
.recharge-tips-view {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(10, 90, 255, 0.04), rgba(10, 90, 255, 0.04)), #fff;
 
  .recharge-tips-title {
    color: #1f2229;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    padding: 4px 0 12px 0;
    border-bottom: 1px solid boleGetCssVar('color', 'primary');
  }
 
  .recharge-tips-content {
    color: boleGetCssVar('text-color', 'regular');
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    padding-top: 16px;
 
    .recharge-tips-top {
      color: #e03e2d;
      font-size: 18px;
    }
  }
}
 
.confirm-dialog-content {
  .confirm-dialog-content-tips {
    margin-bottom: 16px;
  }
 
  .confirm-dialog-content-info {
    padding: 12px;
    border-radius: 8px;
    background: #f0f3fa;
    margin-bottom: 8px;
 
    .confirm-dialog-content-info-item {
      display: flex;
      margin-bottom: 10px;
 
      &:last-child {
        margin-bottom: 0;
      }
 
      .confirm-dialog-content-info-item-label {
        color: boleGetCssVar('text-color', 'regular');
        margin-right: 6px;
      }
 
      .confirm-dialog-content-info-item-content {
        flex: 1;
        min-width: 0;
        @include ellipsis;
        color: boleGetCssVar('text-color', 'primary');
        text-align: left;
      }
 
      &.danger {
        .confirm-dialog-content-info-item-content {
          color: boleGetCssVar('color', 'danger');
        }
      }
    }
  }
 
  .confirm-dialog-content-warning {
    color: boleGetCssVar('color', 'danger');
    text-align: left;
    font-size: 16px;
    line-height: 20px;
  }
}
 
.select-pay-type-view {
  .select-pay-type-view-item-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }
 
  .select-pay-type-view-item {
    padding-left: 20px;
    display: flex;
    align-items: center;
    height: 80px;
    border: 1px solid #e2e5eb;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 16px;
    color: boleGetCssVar('text-color', 'primary');
  }
}
 
.recharge-result-view {
  // padding:;
 
  .recharge-result-view-title {
    font-size: 18px;
    color: boleGetCssVar('text-color', 'primary');
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    line-height: 24px;
  }
 
  .recharge-result-view-tips {
    margin-bottom: 12px;
    font-size: 16px;
    color: boleGetCssVar('color', 'danger');
    line-height: 20px;
  }
 
  .recharge-result-view-warning {
    margin-bottom: 20px;
    font-size: 12px;
    color: boleGetCssVar('color', 'warning');
    line-height: 16px;
  }
 
  .recharge-result-view-btn-wrapper {
    display: flex;
    justify-content: center;
 
    .recharge-result-view-btn {
      padding: 0 20px;
      font-size: 16px;
      color: boleGetCssVar('color', 'primary');
      line-height: 16px;
    }
  }
}