xuxueyang
2024-10-14 55bec376170e9368f9802dda077b18827faa7cf4
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
    .coupon-container {
        
 
        
        .coupont-item.expired {
            filter: grayscale(95%);
            .img-has {
                display: unset;
            }
            .img-out {
                display: unset;
            }
        }
 
        .coupont-item {
            height: 360rpx;
            margin-top: 20rpx;
            position: relative;
            .img-has {
                display: none;
                position: absolute;
                right: -20rpx;
                top: 20rpx;
                // background-image: url('@/static/images/customer/coupon/coupon-has.png');
                background-image: url('https://hmy-flower.oss-cn-shanghai.aliyuncs.com/43/43b41c7ac040455695ca65d36323b4d3YWKMuMqSIbfqd3dcd8d48fdd1249dd13d6e39322b2b1.png');
                background-size: 100% 100%;
                width: 264rpx;
                height: 264rpx;
            }
            .img-out {
                display: none;
                position: absolute;
                right: 10rpx;
                top: -20rpx;
                // background-image: url('@/static/images/customer/coupon/coupon-out.png');
                background-image: url('https://hmy-flower.oss-cn-shanghai.aliyuncs.com/2f/2faf34e343cd4b0b8452e8586b33c781MxoSTmXuZq4Ha327925b24412a13682b44991ec4ed3e.png');
                
                background-size: 100% 100%;
                width: 196rpx;
                height: 124rpx;
    
            }
            
            .img-used {
                display: none;
                position: absolute;
                right: 10rpx;
                top: -20rpx;
                // background-image: url('@/static/images/customer/coupon/coupon-used.png');
                background-image: url('https://hmy-flower.oss-cn-shanghai.aliyuncs.com/dc/dc152f180fdb4d3caafa4c31941582faloHgT4yJckowd03f3034d552ffb276377d12268dffea.png');
                background-size: 100% 100%;
                width: 196rpx;
                height: 124rpx;
            }
 
            .tip {
                position: absolute;
                top: 210rpx;
                // min-height: 136rpx;
                background: #EBEBEB;
                z-index: 1;
                padding: 18rpx 30rpx;
                padding-top: 40rpx;
                left: 18rpx;
                right: 18rpx;
                font-size: 24rpx;
                color: #333333;
            }
 
            .container {
                z-index: 2;
                background-image: url('@/static/images/customer/coupon/coupon-bg1.png');
                // width: 722rpx;
                padding: 16rpx 16rpx 16rpx 0rpx;
                height: 220rpx;
                position: relative;
                
                .info-price {
                    width: 180rpx;
                    padding-top: 40rpx;
                    margin-left: 30rpx;
                    margin-right: 50rpx;
 
                    .price1 {
                        font-weight: 600;
                        font-size: 56rpx;
                        color: #FFFFFF;
                        line-height: 80rpx;
                        text-align: center;
                    }
 
                    .price2 {
                        font-weight: 400;
                        font-size: 28rpx;
                        color: #FFFFFF;
                        line-height: 40rpx;
                        text-align: center;
                    }
                }
 
                .info {
                    padding-top: 30rpx;
 
                    .title {
                        font-weight: 600;
                        font-size: 36rpx;
                        color: #333333;
                        line-height: 50rpx;
                        text-align: left;
                        position: relative;
                        .select-coupon{
                            position: absolute;
                            right: 10rpx;
                            top: -6rpx;
                        }
                    }
 
                    .time {
                        font-weight: 400;
                        font-size: 28rpx;
                        color: #666666;
                        line-height: 40rpx;
                        text-align: left;
                        margin-top: 20rpx;
 
                    }
                }
 
            }
 
        }
 
    }
    // 列表页面
    .coupont-item.all {
        margin-top: 20rpx;
    
        .container {
            
            .info {
                
                padding-top: 20rpx;
                position: relative;
                .title{
                    
                }
                .time {
                    margin-top: 0rpx;
                    font-size:24rpx;
                    min-height: 44rpx;
                }
    
                .button {
                    width: 150rpx;
                    height: 46rpx;
                    // box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(0,0,0,0.14);
                    border-radius: 24rpx;
                    border: 2rpx solid rgba(68, 119, 90, 1);
                    font-weight: 400;
                    font-size: 24rpx;
                    color: rgba(68, 119, 90, 1);
                    line-height: 46rpx;
                    text-align: center;
                    // margin-top: 10rpx;
                    position: absolute;
                    right: 10rpx;
                    bottom: 30rpx;
                }
            }
        }
    }
    // 兑换的页面,不需要tip
    .coupont-item.exchange{
        height: 220rpx;
    }