discount-list.scss
656 Bytes
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
.discount-list {
li {
margin-bottom: 30px;
background: #fff;
}
img {
width: 100%;
height: 250px;
}
.discount-cont {
box-sizing: border-box;
padding: 0 20px;
height: 77px;
border-bottom: 1px solid #e0e0e0;
line-height: 77px;
}
.discount-title {
float: left;
overflow: hidden;
width: 450px;
height: 77px;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 24px;
}
.discount-time {
float: right;
font-size: 22px;
}
.red-color {
color: #d0021b;
}
}