.mainBox {
    background-color: transparent;
}

.breadcrumb {
    padding: 30px 0 14px;
}

.cart-list {
    height: calc(100vh - 300px);
    overflow-y: auto;
}

.cart-list.empty {
    background-color: #fff;
    margin-bottom: 12px;
}

.cart-list .cart-item {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
    background-color: #fff;
    margin-bottom: 12px;
}

.cart-list .cart-item .item-lf {
    display: flex;
    align-items: center;
}

.cart-list .cart-item .item-lf .el-checkbox__label {
    font-size: 0;
}

.cart-list .cart-item .item-rt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
}

.cart-list .cart-item .cover {
    display: block;
    width: 78px;
    height: 78px;
    margin-left: 30px;
}

.cart-list .cart-item .title {
    width: 330px;
    color: #121212;
    font-family: "Source Han Sans CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-left: 20px;
}

.cart-list .cart-item .spec {
    color: #1e1e1e;
    font-family: "Source Han Sans CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-left: 100px;
}

.cart-list .cart-item .price {
    color: #1e1e1e;
    text-align: right;
    font-family: "Source Han Sans CN";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

.cart-list .cart-item .remove {
    color: var(--base-color);
    text-align: right;
    font-family: "Source Han Sans CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
}

.cart-total-box {
    position: absolute;
    left: 0;
    width: 100%;
    height: 126px;
    background-color: #fff;
}

.cart-total-box .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--content-width1);
    height: 100%;
    padding: 0 32px;
    margin: 0 auto;
    box-sizing: border-box;

}

.cart-total-box .cart-total .txt {
    color: #121212;
    font-family: "Source Han Sans CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    vertical-align: middle;
}

.cart-total-box .cart-total .total {
    color: var(--base-color);
    font-family: "Source Han Sans CN";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-right: 30px;
    vertical-align: middle;
}

.cart-total-box .cart-total .total .unit {
    font-size: 16px;
}

.cart-total-space {
    height: 126px;
}