啊鑫
7 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
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
@import '../style/var';
 
.van-submit-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: @submit-bar-z-index;
  width: 100%;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: @submit-bar-background-color;
  user-select: none;
 
  &__tip {
    padding: @submit-bar-tip-padding;
    color: @submit-bar-tip-color;
    font-size: @submit-bar-tip-font-size;
    line-height: @submit-bar-tip-line-height;
    background-color: @submit-bar-tip-background-color;
  }
 
  &__tip-icon {
    min-width: @submit-bar-tip-icon-size * 1.5;
    font-size: @submit-bar-tip-icon-size;
    vertical-align: middle;
  }
 
  &__tip-text {
    vertical-align: middle;
  }
 
  &__bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: @submit-bar-height;
    padding: @submit-bar-padding;
    font-size: @submit-bar-text-font-size;
  }
 
  &__text {
    flex: 1;
    padding-right: @padding-sm;
    color: @submit-bar-text-color;
    text-align: right;
 
    span {
      display: inline-block;
    }
  }
 
  &__suffix-label {
    margin-left: 5px;
    font-weight: @font-weight-bold;
  }
 
  &__price {
    color: @submit-bar-price-color;
    font-weight: @font-weight-bold;
    font-size: @font-size-sm;
 
    &--integer {
      font-size: @submit-bar-price-integer-font-size;
      font-family: @submit-bar-price-font-family;
    }
  }
 
  &__button {
    width: @submit-bar-button-width;
    height: @submit-bar-button-height;
    font-weight: @font-weight-bold;
    border: none;
 
    &--danger {
      background: @goods-action-button-danger-color;
    }
  }
 
  &--unfit {
    padding-bottom: 0;
  }
}