闫增涛
2024-03-06 3d78ac0ece15f043390a351c70e99b287d0c42e1
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
.promotion-popup-container {
  background-color: #ffffff;
  position: relative;
  z-index: 100;
  border-radius: 16rpx 16rpx 0 0;
}
 
.promotion-popup-container .promotion-popup-close {
  position: absolute;
  right: 30rpx;
  top: 30rpx;
  z-index: 9;
  color: rgba(153, 153, 153, 1);
}
 
.promotion-popup-container .promotion-popup-close .market {
  font-size: 25rpx;
  color: #999;
}
 
.promotion-popup-container .promotion-popup-title {
  height: 100rpx;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.promotion-popup-container .promotion-popup-title {
  font-size: 32rpx;
  color: #222427;
  font-weight: 600;
}
 
.promotion-popup-container .promotion-popup-content {
  min-height: 400rpx;
  max-height: 600rpx;
  padding-bottom: calc(env(safe-area-inset-bottom) + 20rpx);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
 
.promotion-popup-container .promotion-popup-content .promotion-detail-list {
  margin: 0 30rpx;
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item:last-child {
  margin-bottom: env(safe-area-inset-bottom);
  border-bottom: 0;
  padding-bottom: calc(28rpx + env(safe-area-inset-bottom));
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item {
  display: flex;
  justify-content: space-between;
  padding: 10rpx 0 28rpx;
  position: relative;
  font-size: 24rpx;
  color: #222427;
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item
  .tag {
  box-sizing: border-box;
  font-size: 20rpx;
  line-height: 32rpx;
  padding: 2rpx 12rpx;
  background-color: #ffece9;
  margin-right: 16rpx;
  display: inline-flex;
  color: #fa4126;
  border-radius: 54rpx;
  flex-shrink: 0;
  position: relative;
  top: 2rpx;
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item
  .content {
  font-size: 28rpx;
  color: #222427;
  flex: 1;
  line-height: 40rpx;
  display: flex;
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item
  .content
  .list-content {
  width: 440rpx;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item
  .collect-btn {
  font-size: 24rpx;
  flex-shrink: 0;
  margin-left: 20rpx;
  display: flex;
  align-items: center;
}
 
.promotion-popup-container
  .promotion-popup-content
  .promotion-detail-list
  .list-item
  .collect-btn
  .linkText {
  margin-right: 8rpx;
}