_cart-header.css 825 Bytes
.cart-header {
    margin: 50px auto;
    width: 100%;
    padding: 30px;
    border-bottom: 1px solid #eee;

    .toggle-chk {
        span {
            font-weight: bold;
        }
        .not-checked {
            color: #999;
        }
    }

    .checked {
        display: none;
    }

    .chk-group {
        .checked {
            display: inline-block;
        }
        .not-checked {
            display: none;
        }
    }

    .iconfont {
        font-size: 16px;
        line-height: 16px;
    }

    .item {
        display: inline-block;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
    }

    .product {
        width: 380px;
    }

    .price {
        width: 260px;
    }

    .num {
        width: 90px;
    }

    .pro-total-price {
        width: 180px;
    }
}