shopping.list.css
2.69 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import "./m-goods.list.css";/*商品列表*/
/* shopping list css */
.goods-shopping-box li {
width: 282px;
}
.goods-shopping-box .shopping-statu {
height: 36px;
}
.its-over,
.its-over span,
.discount span,
.shopping-statu span,
.shopping-timer .s-words,
.shopping-timer .timeout,
.shopping-timer .count-down {
display: inline-block;
*display: inline;
*zoom: 1;
}
.shopping-statu span {
color: #fff;
padding: 2px;
margin-bottom: 2px;
}
.shopping-statu .status-ready {
background: #78ad26;
}
.shopping-statu .status-on {
background: #f60;
}
.shopping-statu .status-off {
background: #ccc;
}
.shopping-timer {
margin: 15px 0;
padding: 15px 10px 10px 10px;
background: #f9f9f9;
color: #999;
}
.shopping-timer i {
height: 22px;
margin: 0 10px 4px 0;
}
.shopping-timer .timeout,
.shopping-timer .count-down {
color: #333;
font-size: 13px;
}
.shopping-timer .timeout span,
.shopping-timer .count-down span {
font-size: 18px;
font-family: 'Microsoft YaHei';
}
.shopping-purchase {
text-align: right;
padding-top: 15px;
margin-top: 15px;
border-top: 1px solid #e7e7e7;
}
.shopping-purchase span {
color: #f60;
margin: 0 5px;
}
.goods-price,
.goods-price div {
color: #c33;
}
.goods-price {
position: relative;
padding-top: 10px;
}
.goods-list-box .goods-price del {
color: #999;
margin: 0;
display: block;
margin-top: 5px;
}
.show-list-area .goods-name {
height: 36px;
}
.goods-list-box .goods-img {
height: 240px;
position: relative;
}
.its-over {
position: absolute;
width: 100%;
height: 100%;
background: rgba( 255, 255, 255, 0.5 );
left: 0;
top: 0;
}
.its-over span {
color: #fff;
width: 100px;
height: 100px;
line-height: 100px;
margin-top: 70px;
border-radius: 100%;
border: 2px solid #fff;
font-size: 24px;
font-family: Microsoft YaHei;
}
.goods-list-box ul{
position: relative;
z-index: 1;
}
.discount {
position: absolute;
font-size: 12px;
text-align: center;
right: 0;
top: 8px;
}
.discount span {
color: #fff;
background: #f60;
padding: 2px 7px;
}
.discount i {
width: 0;
height: 0;
border-color: transparent #f60 transparent transparent;
border-width: 11px 8px 11px 0;
border-style: solid;
background: none;
vertical-align: top;
}
/*响应式*/
@media screen and (max-width: 1200px){
.shopping-timer .s-words {
width: 30px;
height: 18px;
overflow: hidden;
vertical-align: middle;
}
.count-down {
vertical-align: middle;
}
.goods-more li {
width: 180px;
}
.goods-price {
font-size: 14px;
}
}