_special.css
873 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
39
40
41
42
43
44
.sale-special-page {
background: #f0f0f0;
height: auto;
overflow: hidden;
.special-list {
li {
margin-bottom: 30px;
background: #fff;
}
img {
width: 100%;
height: 250px;
}
.special-cont {
height: 77px;
line-height: 77px;
border-bottom: 1px solid #e0e0e0;
padding: 0 20px;
box-sizing: border-box;
}
.special-title {
width: 450px;
height: 77px;
float: left;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-size: 24px;
}
.special-time {
float: right;
font-size: 22px;
}
.red-color {
color: #d0021b;
}
}
}