@charset "utf-8";
/*
*UGO red checkbox 
*time :20150713
*author:L.J;
*选中： <span class="cart-checkbox checked">
              <input type="checkbox">
              </span>
*未选中： <span class="cart-checkbox">
              <input type="checkbox">
              </span>
*/
.cart-checkbox{
    width: 1.875em;
    height: 1.875em;
    float: left;
    border:.083em solid #ccc;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -.937em;
}
.cart-checkbox.checked{
    background-color: #f54d48;
    border:.083em solid #f54d48;
}
.cart-checkbox input[type="checkbox"],
.cart-checkbox-all input[type="checkbox"],
.cart-checkbox input[type="radio"],
.cart-checkbox-all input[type="radio"]{
    display: none;
}
.cart-checkbox.checked:after{
    content: '';
    position: absolute;
    width: .9em;
    height:.517em;
    background: transparent;
    left: 50%;
    top:50%;
    margin-top: -.458em;
    margin-left: -.5em;
    border: .167em solid #fff;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}