zhengyiming
1 天以前 e0cb82c8dbf83fabc0cab548abc873926366fb75
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
@use './common.scss' as *;
 
.gas-bill-recharge-wrapper {
  .gas-bill-recharge-title {
    padding: 24px 26px 0;
    font-weight: 500;
    font-size: 34px;
    color: boleGetCssVar('text-color', 'primary');
  }
 
  .gasOrgType-card {
    border-radius: 16px;
    border: 1px solid #e1e9f5;
    padding: 20px 32px;
    min-height: 120px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafb;
 
    &:last-child {
      margin-bottom: 0;
    }
 
    .gasOrgType-card-title {
      font-size: 34px;
      line-height: 48px;
      color: boleGetCssVar('text-color', 'primary');
    }
 
    .gasOrgType-card-button {
      font-size: 26px;
      height: 48px;
      padding: 18px;
    }
  }
}