zhengyiming
2025-02-20 988837b3fbffb8abea06dcb875f5746b9fce3c57
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
/*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;
 
    .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');
        }
      }
    }
  }
}