Blame view

public/scss/common/_suspend-cart.css 712 Bytes
王水玲 authored
1 2
.suspend-cart {
    position: fixed;
ccbikai authored
3 4 5
    right: 30px;
    bottom: 140px;
    z-index: 10;
王水玲 authored
6 7 8 9 10
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
ccbikai authored
11
    line-height: 88px;
王水玲 authored
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

    a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .iconfont {
        color: #fff;
        font-size: 36px;
    }

    .cart-count {
        position: absolute;
        top: -24px;
        right: -20px;
        width: 72px;
        height: 72px;
ccbikai authored
30
        border-radius: 50%;
王水玲 authored
31
        background: #f03d35;
ccbikai authored
32
        color: #fff;
王水玲 authored
33
        text-align: center;
ccbikai authored
34 35
        font-size: 40px;
        line-height: 72px;
王水玲 authored
36 37 38
        transform: scale(0.5);
    }
}