.cart {
    width: var(--centerA, 23rem);
    margin: 0 auto;
}

.cart-content {
    width: 100%;
    margin-top: 0.36rem;
    background: #ffffff;
    position: relative;
}

.cart-header {
    width: 96%;
    font-size: 20px;
    font-weight: 600;
    margin: auto;
    display: flex;
    height: 60px;
}

.settlement {
    height: 50px;
    background: white;
    border-top: 1px solid #c5c5c5;
    position: fixed;
    width: var(--centerA, 23rem);
    margin: 0 auto;
    bottom: 0;
    display: flex;
}

.settlement .left {
    margin: auto;
    margin-left: 1%;
}

.settlement .left btn {
    margin: 15px;
}

.settlement .left btn:hover {
    color: #ff0000;
}

.settlement .right {
    display: flex;
    flex-direction: row-reverse;
}

.settlement .right>div {
    margin: 5px 0 15px 15px;
}

.settlement .right>div.btn-area {
    margin: 0 0 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    background: #E64344;
    cursor: pointer;
    color: white;
}

.settlement .right>div.price-show span {
    color: #999;
}

.settlement .right>div.amount-sum {
    color: #999;
}

.cart-header>span {
    display: flex;
    align-items: center;
    padding: 10px;
}

.cart-order>div>span.activeall,
.cart-header>span.activeall {
    width: auto;
    padding-left: 15px;
    margin-right: auto;
}

.cart-order>div>span.information,
.cart-header>span.information {
    width: 40%;
}

.cart-order>div>span.unit-price,
.cart-header>span.unit-price {
    width: 12%;
}

.cart-order>div>span.num,
.cart-header>span.num {
    width: 12%;
}

.cart-header>span.price {
    width: 12%;
}

.cart-order>div>span.price {
    width: 12%;
    color: #ff0000;
}

.cart-order>div>span.operate,
.cart-header>span.operate {
    width: 14%;
}

.cart-order>div>span.operate {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cart-order>div>span.operate>span {
    cursor: pointer;
}

.cart-order>div>span.operate>span.del:hover {
    color: #ff0000;
}

.cart-order>div>span.operate>span.collect:hover {
    color: #006afa;
}

.cart-order {
    width: 100%;
    margin: auto;
    padding-bottom: 20px;
    min-height: 100px;
}

.cart-order>red {
    display: flex;
    width: 100px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: #2d7dff;
    color: white;
    border-radius: 5px;
    margin: 60px auto;
}

.cart-order>div:not(.nomore) {
    width: 96%;
    min-height: 150px;
    font-size: 17px;
    font-weight: 500;
    margin: 30px auto;
    display: flex;
    height: 60px;
    background: #fff2e2;
    border-radius: 10px;
}

.cart-order>div>span {
    display: flex;
    align-items: center;
    padding: 8px;
}

.cart-order>div>span.information .img {
    width: 20%;
}

.cart-order>div>span.information .img img {
    cursor: pointer;
    width: 100%;
    max-height: 100px;
    background-color: white;
}

.cart-order>div>span.information .name {
    width: 40%;
    padding: 0 10px;
    height: 100px;
}

.cart-order>div>span.information .sku {
    padding: 0 10px;
    width: 40%;
    height: 100px;
    color: #979797;
    font-size: 15px;
}

.cart-order>div>span.num>span {
    height: 20px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.1rem;
    border: 1px solid #dcdfe6;
    overflow: hidden;
}

.cart-order>div>span.num>span>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    height: 100%;
    cursor: pointer;
}

.cart-order>div>span.num>span>input {
    width: 40px;
    height: 100%;
    display: block;
    font-size: var(--sizeM, .25rem);
    outline: none;
    border: none;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
}