discount-card.wxss
1.7 KB
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
/* pages/discount-card/discount-card.wxss */
.container {
width: 750rpx;
height: 1448rpx;
background-color: #f1f2f4;
padding-top: 16rpx;
box-sizing: border-box;
}
.bgPic{
position: absolute;
top: 0;
left: 0;
z-index: -6;
}
.bgPic image{
width: 686rpx;
height: 246rpx;
}
.picBox {
width: 686rpx;
height: 246rpx;
margin: 0 auto;
margin-bottom: 24rpx;
display: flex;
background-color: #ffffff;
position: relative;
}
.picBox .left {
width: 200rpx;
height: 244rpx;
background: linear-gradient(270deg, #f09c4d -70%, #ff4903);
/* background: linear-gradient(270deg, #fb7900 -100%, #ff4903); */
padding-top: 48rpx;
padding-bottom: 48rpx;
box-sizing: border-box;
}
.left>view {
text-align: center;
color: #ffffff;
margin-bottom: 8rpx;
font-size: 24rpx;
font-weight: 400;
}
.left .price {
font-size: 64rpx;
font-weight: 500;
}
.right {
padding-top: 78rpx;
padding-bottom: 78rpx;
padding-left: 32rpx;
box-sizing: border-box;
}
.right>view {
font-size: 32rpx;
font-weight: 600;
text-align: left;
color: #333333;
}
.right .time{
font-size: 28rpx;
font-weight: 400;
text-align: left;
color: #999999;
letter-spacing: 0px;
margin-top: 24rpx;
}
.topCircle{
position: absolute;
top: -4px;
left: 96px;
width: 20rpx;
height: 20rpx;
background-color: #f1f2f4;
border-radius: 50%;
}
.bottomCircle{
position: absolute;
bottom: -4px;
left: 96px;
width: 20rpx;
height: 20rpx;
background-color: #f1f2f4;
border-radius: 50%;
}
.listBlank{
width: 750rpx;
height:400rpx;
display: flex;
justify-content: center;
align-items: center;
color: #999999;
font-size: 30rpx;
}
.bottomHint{
font-size: 24rpx;
color: gray;
display: flex;
justify-content: center;
padding-bottom: 10rpx;
}