.cart-bd{
    padding: 2.2rem 0 2.4rem;
}
.product {
    display: flex;
    align-items: center;
    padding: 0.4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.product .product-img {
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 0.4rem;
    background-color: #eee;
}

.product .product-dts {
    flex-grow: 1;
    position: relative;
    width: 10rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
}

.product .product-name {
    position: relative;
    padding-right: 1rem;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.product .product-name p{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.product .product-name .pro-name-sm{
    font-size: .6rem;
    color: #999;
}
.product .product-dts .product-delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 100% 100%;
    background-image: url("../img/cart/delete.png");
}

.product-select {
    width: 1rem;
    height: 1rem;
    margin-right: 0.6rem;
    background-image: url("../img/cart/unchecked.png");
    background-size: 100% 100%;
}

.checked {
    background-image: url("../img/cart/checked.png");
}
.product .product-dts .product-price{
    position: relative;
}
.product .product-dts  .product-num {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    border-radius: 0.1rem;
    border: 1px solid #bbb;
}

.product .product-num > input {
    text-align: center;
    width: 1.8rem;
    height: 1.2rem;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}

.product .product-num > span {
    width: 1.4rem;
    text-align: center;
    height: 1.2rem;
    padding: 0 0.4rem;
    font-size: 0.85rem;
}

.settlement {
    width: 100%;
    max-width: 600px;
    bottom: 2.4rem;
    position: fixed;
    height: 2.4rem;
    padding-left: 0.4rem;
    border-top: 1px solid #eeeeee;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settlement > div:first-child {
    display: flex;
    align-items: center;
}

.settlement .tobuy {
    text-align: center;
    line-height: 2.4rem;
    color: #ffffff;
    width: 4.5rem;
    height: 100%;
    background-color: #B4282D;
}

.cartno {
    width: 100%;
    text-align: center;
    color: #B4282D;
    padding: 0.2rem;
    padding: 7rem 0;
}


