_vip-only.css
1.71 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
.vip-only {
display: none;
position: relative;
background: #fff;
-webkit-overflow-scrolling: touch;
&-banner {
height: 200px;
width: 100%;
overflow: hidden;
}
&-goods-list {
width: 100%;
overflow-x: scroll;
overflow-y: hidden;
background-size: 100% 100%;
ul {
height: 330px;
padding: 25px 0 17px 26px;
white-space: nowrap;
}
}
&-goods {
display: inline-block;
height: 290px;
width: 153px;
margin-right: 26px;
background: #fff;
border-radius: 5px;
vertical-align: top;
.goods-pic {
height: 206px;
width: 100%;
}
.goods-info {
position: relative;
height: 84px;
width: 200%;
background: #fff;
padding: 28px 0 20px;
transform: scale(0.5);
transform-origin: 0 0 0;
.vip-price {
display: none;
color: #d0021b;
font-size: 40px;
line-height: 1;
text-align: center;
}
.sale-price {
color: #b0b0b0;
font-size: 30px;
line-height: 40px;
text-decoration: line-through;
margin-top: 24px;
}
.vip-icon {
display: inline-block;
height: 40px;
width: 100px;
margin-left: 16px;
vertical-align: middle;
background: resolve("channel/vip.png");
background-size: 100% 100%;
}
}
}
}