_suspend-cart.scss
717 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
.suspend-cart {
position: fixed;
width: 44px;
height: 44px;
line-height: 44px;
border-radius: 50%;
background: rgba(0,0,0,0.3);
text-align: center;
right: 15px;
bottom: 70px;
z-index: 10;
a {
display: block;
width: 100%;
height: 100%;
}
.iconfont {
color: #fff;
font-size: 18px;
}
.cart-count {
position: absolute;
top: -12px;
right: -10px;
width: 36px;
height: 36px;
font-size: 20px;
line-height: 36px;
color: #fff;
background: #f03d35;
text-align: center;
border-radius: 50%;
@include transform(scale(0.5));
}
}