xwt
2025-07-17 66f29ab451014ca2e72fa9a5ff6373ab507ff67c
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
@import '../style/var';
 
.van-coupon-list {
  position: relative;
  height: 100%;
  background-color: @coupon-list-background-color;
 
  &__field {
    padding: @coupon-list-field-padding;
 
    .van-field__body {
      height: 34px;
      padding-left: @padding-sm;
      line-height: 34px;
      background: @gray-1;
      border-radius: 17px;
 
      &::placeholder {
        color: @gray-5;
      }
    }
 
    .van-field__clear {
      margin-right: 0;
    }
  }
 
  &__exchange-bar {
    display: flex;
    align-items: center;
    background-color: @white;
  }
 
  &__exchange {
    flex: none;
    height: @coupon-list-exchange-button-height;
    font-size: @font-size-lg;
    line-height: @coupon-list-exchange-button-height - 2px;
    border: 0;
  }
 
  .van-tabs__wrap {
    box-shadow: 0 6px 12px -12px @gray-6;
  }
 
  &__list {
    box-sizing: border-box;
    padding: @padding-md 0 @padding-lg;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
 
    &--with-bottom {
      padding-bottom: @padding-md + 50px;
    }
  }
 
  &__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
    box-sizing: border-box;
    width: 100%;
    padding: 5px @padding-md;
    font-weight: @font-weight-bold;
    background-color: @white;
  }
 
  &__close {
    height: @coupon-list-close-button-height;
  }
 
  &__empty {
    padding-top: 60px;
    text-align: center;
 
    p {
      margin: @padding-md 0;
      color: @coupon-list-empty-tip-color;
      font-size: @coupon-list-empty-tip-font-size;
      line-height: @coupon-list-empty-tip-line-height;
    }
 
    img {
      width: @coupon-list-empty-image-size;
      height: @coupon-list-empty-image-size;
    }
  }
}