﻿body {
    background-color: #f3f3f3;
}

.choosenumber {
    overflow: hidden;
    position: relative;
    border: 1px solid #dfdfdf;
    background: #fff;
    border-radius: 3px;
    line-height: 32px;
    font-size: 14px;
    color: #333;
    margin: 5px 0 5px 0;
}

.abate {
    float: left;
    border-right: 1px solid #dfdfdf;
    background: #fff;
    width: 32%;
    height: 32px;
    position: relative;
    pointer-events: none;
}

    .abate i {
        width: 12px;
        height: 2px;
        background: #ccc;
        display: block;
        margin: 15px auto;
    }

.number {
    font-size: 14px;
    color: #333;
    float: left;
    width: 33%;
    height: 32px;
    text-align: center;
}

.augment {
    float: right;
    border-left: 1px solid #dfdfdf;
    background: #fff;
    width: 32%;
    height: 32px;
    position: relative;
    cursor: pointer;
}

    .augment i:first-child {
        width: 12px;
        height: 2px;
        background: #288ad6;
        display: block;
        margin: 15px auto;
    }

    .augment i:nth-child(2) {
        width: 2px;
        height: 12px;
        background: #288ad6;
        display: block;
        margin: 0 auto;
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
    }

a.removeCart {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    color: #999;
    width: 40px;
    border: 0;
    background: #fff;
    margin: auto;
    cursor: pointer;
}

    a.removeCart span {
        float: left;
        width: 12px;
        height: 12px;
        background: #ccc;
        border-radius: 10px;
        position: relative;
        margin-top: 3px;
    }

        a.removeCart span:before {
            content: '';
            width: 2px;
            height: 8px;
            background: #fff;
            position: absolute;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            top: 2px;
            left: 5px;
        }

        a.removeCart span:after {
            content: '';
            width: 2px;
            height: 8px;
            background: #fff;
            position: absolute;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            top: 2px;
            left: 5px;
        }

.item-price {
    color: #c10017;
}

.totalmoney {
    font-size: 16px;
    color: #c10017;
}

.abate.active i {
    background: #288ad6;
}

.abate.active {
    cursor: pointer;
    pointer-events: auto;
}

.addtocart {
    background: #fd6e1d;
    background: -webkit-gradient(linear,0% 0,0% 100%,from(#fd6e1d),to(#f59000));
    background: -webkit-linear-gradient(top,#f59000,#fd6e1d);
    background: -moz-linear-gradient(top,#f59000,#fd6e1d);
    background: -ms-linear-gradient(top,#f59000,#fd6e1d);
    background: -o-linear-gradient(top,#f59000,#fd6e1d);
    border-radius: 5px;
    color: #fff;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-top: 1em;
    border: none;
    display: block;
    text-align: center;
}
