discount.css
2.2 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
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
.container{
position: relative;
font-family:PingFangSC-Regular;
}
.nav {
margin-bottom: 0.65rem;
}
.nav ul {
display: flex;
font-size: 0.3rem;
margin-top: 0.44rem;
justify-content: center;
}
.nav ul li{
display: block;
width: 30%;
text-align: center;
color: #666666;
}
.nav .active {
color: #333333;
position: relative;
}
.nav .active:before{
content: '';
display: block;
width: 0.48rem;
height: 0.1rem;
background-color: #FFCC00;
position: absolute;
left: 0.65rem;
bottom: 0;
top: 0.44rem;
border-radius: 0.05rem;
}
/*discount*/
.discount_item{
width: 7rem;
margin: 0.25rem auto 0;
border: 1px solid #E4E4E4;
border-radius: 0.15rem;
}
.discount_item_num{
width: 7rem;
height: 1.7rem;
border-bottom: none;
display: flex;
position: relative;
}
.discount_item_num_bxo{
display: flex;
align-items: baseline;
}
.discount_item_num:before{
content: '';
display: block;
width: 0.08rem;
height: 0.16rem;
position: absolute;
background-color: #FFFFFF;
left: -0.015rem;
bottom: -0.1rem;
border: 1px solid #E4E4E4;
border-left: none;
z-index: 22;
border-radius: 0 0.16rem 0.16rem 0;
}
.discount_item_num:after{
content: '';
display: block;
width: 0.08rem;
height: 0.16rem;
position: absolute;
background-color: #FFFFFF;
bottom: -0.1rem;
right: 0.01rem;
border: 1px solid #E4E4E4;
border-right: none;
z-index: 22;
border-radius: 0.16rem 0 0 0.16rem ;
}
.discount_item_num p:nth-child(1){
font-size: 0.8rem;
color: #C90103;
line-height: 1.7rem;
margin-left: 0.6rem;
}
.discount_item_num p:nth-child(2){
font-size: 0.26rem;
color: #999999;
margin-left: 0.13rem;
}
.discount_item_time{
display: flex;
flex-direction: column;
height: 100%;
margin-left: 0.6rem;
}
.discount_item_time span:nth-child(1){
font-size: 0.3rem;
color: #333333;
margin-top: 0.54rem;
}
.discount_item_time span:nth-child(2){
font-size: 0.26rem;
color: #999999;
margin-top: 0.21rem;
}
.discount_item_btn,.discountuesd_item_btn{
width: 7rem;
height: 0.83rem;
border-top: 1px dotted #E4E4E4;
font-size: 0.3rem;
line-height: 0.83rem;
text-align: center;
}
.discount_item_btn{
color: #C90103;
}
.discount_item_btn span{
margin-left: 0.22rem;
}
/*已使用*/
.discountuesd_item_btn{
color: #666666;
}
.discountuesd_item_btn span{
margin-left: 0.22rem;
}