.cart-content {
    display: flex;
}

.cart-content .left {
    width: calc(100% - 320px);
}

.cart-content .left .shopping-list {

}

.shopping-tabel {
    min-height: 194px;
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 20px;
}

.shopping-tabel > .empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.shopping-tabel > .empty > i {
    font-size: 50px;
}

.shopping-tabel > .empty > a {
    color: #333;
    display: inline-block;
    font-size: 13px;
    margin: 15px 0 0;
}

.shopping-tabel > .empty > a:hover {
    color: #4066b8;
    text-decoration: underline;
}

.shopping-tabel > .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shopping-tabel > .title i {
    color: #4066b8;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

.tabel {
    width: 100%;
}

.tabel > .tbody > li,
.tabel > .thead {
    background-color: #f6f8fc;
    display: flex;
    padding: 6px 10px;
    width: 100%;
}

.tabel > .tbody > li {
    background-color: #fff;
}

.tabel > .tbody > li > div,
.tabel > .thead > li {
    align-items: center;
    display: flex;
    flex: 3;
    padding-right: 16px;
}

.tabel > .tbody > li {
    border-bottom: 1px solid #d4d4d4;
    padding: 10px;
}

.tabel > .tbody > li > div:first-child,
.tabel > .tbody > li > div:last-child,
.tabel > .thead > li:first-child,
.tabel > .thead > li:last-child {
    flex: unset;
    justify-content: center;
    width: 40px;
}

.tabel > .tbody > li > div:last-child i,
.tabel > .thead > li:last-child i {
    align-items: center;
    border-radius: 13px;
    color: #4066b8;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.tabel > .tbody > li > div:nth-child(2),
.tabel > .thead > li:nth-child(2) {
    flex: 5;
}

.tabel > .tbody > li > div:nth-child(2) > .image {
    width: 50px;
    height: 50px;
}

.tabel > .tbody > li > div:nth-child(2) > .image img {
    width: 100%;
    height: 100%;
}

.tabel > .tbody > li > div:nth-child(2) > .content {
    margin-left: 10px;
    flex: 1;

}

.tabel > .tbody > li > div:nth-child(2) > .content > div {
    font-size: 12px;
    line-height: 14px;
}

.tabel > .tbody > li > div:nth-child(2) > .content > .model {
    color: #4066b8;
    display: block;

}

.tabel > .tbody > li > div:nth-child(2) > .content > div:nth-child(2) {
    margin: 5px 0;
    color: #333;
}

.tabel > .tbody > li > div > input {
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    height: 26px;
    padding-left: 6px;
    width: 120px;
}

.cart-content .right {
    width: 320px;
    margin-left: 16px;
}

#cart .cart-content .right > .content {
    position: sticky;
    top: 20px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 20px;
}

#cart .cart-content .right > .content > .title {
    margin-bottom: 10px;
}

#cart .cart-content .right > .content > .title > .box {
    font-size: 16px;
    font-weight: 700;
}

#cart .cart-content .right > .content > .title > .box i {
    color: #4066b8;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

#cart .cart-content .right > .content .number-box {

    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

#cart .cart-content .right > .content .price-box {
    border-bottom: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

#cart .cart-content .right > .content .price-box .price {
    color: #c80000;
}

#cart .cart-content .right > .content > .content {
    display: flex;
    flex-direction: column;
    padding-top: 20px
}

#cart .cart-content .right > .content > .content .btn {
    border-radius: 4px;
    color: #fff;
    background-color: #c80000;
    font-family: unset;
    font-size: 14px;
    margin: 10px 0;
    padding: 5px 20px;
    position: relative;
    width: 100%;
    transition: all .2s;
}

#cart .cart-content .right > .content > .content .btn i {
    font-size: 18px;
    margin-right: 10px;
}

#cart .cart-content .right > .content > .content .tips {
    font-size: 12px;
    margin: 10px 0;
}

#cart .cart-content .right > .content > .content .tips::before {
    background-color: #c80000;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 4px;
    margin-right: 5px;
    width: 4px;
}

#cart .cart-content .right > .content > .content .login {
    font-size: 14px;
    text-align: center;
}

.content .login a {
    color: #4066b8;
}

.content .login a:hover {
    text-decoration: underline;
}

.ContactInformation {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 20px;
}

.ContactInformation .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ContactInformation .title i {
    color: #4066b8;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

.ContactInformation .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shipping-method,
.settlementForm,
.shippingForm {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 20px;
}

.billingAddress,
.shippingAddress {
    margin-bottom: 15px;
}

.shipping-method > .title,
.settlementForm > .settlement_title,
.shippingForm > div > .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shipping-method > .title > i,
.settlementForm > .settlement_title > i,
.shippingForm > div > .title i {
    color: #4066b8;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

.shippingForm > div > .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 10px
}

.settlementForm > .settlement_content {
    margin-top: 16px;
    width: 100%;
}

.settlementForm > .settlement_content > .tbody > li {
    border-bottom: 1px solid #d4d4d4;
    padding: 6px 10px;
    width: 100%;
    display: flex;
}

.settlementForm > .settlement_content > .thead {
    background-color: #f6f8fc;
    display: flex;
    padding: 6px 10px;
    width: 100%;
}

.settlementForm > .settlement_content > .tbody > li > div,
.settlementForm > .settlement_content > .thead > li {
    align-items: center;
    display: flex;
    flex: 1;
    padding-right: 16px;
}

.settlementForm > .settlement_content > .tbody > li > div:first-child,
.settlementForm > .settlement_content > .thead > li:first-child {
    flex: 3;
}

.settlementForm > .settlement_content > .tbody > li > div:first-child > .image {
    border-radius: 6px;
    height: 50px;
    overflow: hidden;
    width: 50px;
}

.settlementForm > .settlement_content > .tbody > li > div:first-child > .content {
    color: #999;
    flex: 1;
    font-size: 12px;
    margin-left: 10px;
}

section *,
section {
    overflow: visible;
}

.shipping-method > .content > .switch {
    margin-bottom: 10px;
    align-items: center;
    cursor: pointer;
    display: flex;
}

.shipping-method .switch_no {
    display: none;
}

.shipping-method.active .switch_no {
    display: block;
}

.shipping-method.active .switch_off {
    display: none;
}

.shipping-method .switch_off {
    margin-bottom: 20px;
}

.shipping-method .switch_off .v-radio {
    margin-bottom: 10px;
}

.shipping-method .switch_off .v-radio .v-radio_content {
    color: #333;
    cursor: pointer;
    flex: 1;
    font-size: 14px;
    margin-left: 10px;
}

.shipping-method .switch_off .v-radio .v-radio_content span {
    display: inline-block;
    font-size: 13px;
    width: 200px;
}

.shippingForm.active .billingAddress {
    display: none;
}

.shipping-method > .content > .switch > .text {
    flex: 1;
    font-size: 12px;
    margin-left: 5px;
}

.shipping-method > .content > .switch_no > .title {
    margin: 0 0 10px;
}

.shipping-method > .content > .switch_no > .content {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

.shipping-method > .content > .switch_no > .content .v-radio {
    margin-right: 40px;
}

.shipping-method > .content > .switch_no > .content .v-radio > .image {
    color: #333;
    cursor: pointer;
    flex: 1;
    font-size: 14px;
    margin-left: 10px;
    height: 35px;
    overflow: hidden;
}

.v-radio > .image > img {
    width: auto;
    height: 100%;
}

.masseage {
    font-size: 12px;
    line-height: 20px;
}

.masseage i {
    color: #ff6221;
    font-size: 16px;
    margin-right: 6px;
}

.shippingForm > .bilingAddressForm .title,
.shippingForm > .login_shippingForm .title {
    color: #999;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    margin-right: 20px;
    font-weight: 400;
}

.shippingForm > .bilingAddressForm .AddressList .v-radio-list,
.shippingForm > .login_shippingForm .AddressList .v-radio-list {
    display: none;
}

.shippingForm > .bilingAddressForm.active .AddressList .v-radio-list,
.shippingForm > .login_shippingForm.active .AddressList .v-radio-list {
    display: block;
}

.addressItem {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}

.bilingAddressForm.active .addressItem,
.login_shippingForm.active .addressItem {
    display: none;
}

.shippingForm > .bilingAddressForm > .content,
.shippingForm > .login_shippingForm > .content {
    display: block;
    width: 100%;
}

.btn.active {
    display: none;
}

.addressItem > .content > div {
    display: flex;
    font-size: 14px;
    margin: 0 20px 10px 0;
    padding: 0 0 0 10px;

}

.addressItem > .content > div i {

    color: #9996;
    margin-right: 10px;
}

.addressItem > p {
    font-size: 12px;
}

.addressItem > p > span {
    color: #4066b8;
    cursor: pointer;
    margin-left: 35px;
}

.shippingForm.active .bilingAddressForm {
    display: none;
}

.addressForm {
    display: none;
}

.bilingAddressForm.active .addressForm,
.login_shippingForm.active .addressForm {
    display: block;
}

.form-item.code .flex {
    justify-content: space-between;
}

.form-item.code .flex input {
    flex: 2;
    margin-bottom: 0;
    border: 1px solid #e9e9e9;
    border-radius: 4px;

    height: 36px;
    padding: 6px 10px;
}

#cart .cart-content .right > .content .form-item.code .flex .btn {
    font-size: 12px;
    height: 36px;
    margin: 0 0 0 5px;
    padding: 4px;
    line-height: 14px;
    width: 110px;
    background-color: #4066b8;
    color: #fff;
}

.addressForm .form-content .v-radio,
.AddressList .v-radio-list .v-radio-item .v-radio {
    background-color: #d4d4d41a;
    border-radius: 4px;
    display: flex;
    margin-right: 0;
    padding: 5px 10px;
    margin: 0 0 10px;
}

.addressForm .form-content .v-radio.active,
.AddressList .v-radio-list .v-radio-item .v-radio.active {
    background-color: #ff62211a;
}

.addressForm .form-content .v-radio .v-radio_content .left,
.AddressList .v-radio-list .v-radio-item .v-radio .v-radio_content .left {
    font-size: 12px;
}

.addressForm .form-content .v-radio .v-radio_content,
.AddressList .v-radio-list .v-radio-item .v-radio .v-radio_content {
    color: #333;
    cursor: pointer;
    flex: 1;
    font-size: 14px;
    margin-left: 10px;
    display: flex;
}

.AddressList .v-radio-list .v-radio-item .v-radio .v-radio_content .right {
    flex: 1;
    display: none;
    color: #4066b8;
    justify-content: flex-end;
    align-items: center;
}

.AddressList .v-radio-list .v-radio-item .v-radio.active .v-radio_content .right {
    display: flex;
}

.v-radio_content .right > div:first-child {
    margin-right: 10px;
}

.AddressList .v-radio-form {
    flex-wrap: wrap;
    justify-content: space-between;
}

.addressForm .form-content .v-radio-form,
.AddressList .v-radio-list .v-radio-item .v-radio-form {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 0;
    padding: 5px 10px;
    display: none;
}

.addressForm .form-content .v-radio-form {
    padding: 0;
    border: none;
}

.addressForm .form-content.active .v-radio-form,
.AddressList .v-radio-list .v-radio-item.active .v-radio-form {
    display: flex;
}

.addressForm .btn-list {
    display: flex;
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding-left: 10px;
}

.addressForm .btn-list .btn {
    margin-right: 10px;
    min-width: 80px;
    padding: 6px 10px;
    color: #fff;
    background: #4066b8;
    position: relative;
    transition: all .2s;
    font-family: unset;
    font-size: 14px;
    margin: 10px 10px 10px 0;
    border-radius: 4px;
    line-height: 14px;
}

.Remark {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 20px;
}

.Remark > .title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.Remark > .title > i {
    color: #4066b8;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px;
}

.Remark > .Remark-input > * {
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    font-family: unset;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}

@media (max-width: 991px) {
    #cart {
        padding: 0 10px;
    }

    .cart-content {
        flex-direction: column;
    }

    .ContactInformation, .shopping-tabel,
    #cart .cart-content .right > .content, .Remark,
    .shipping-method, .settlementForm, .shippingForm {
        padding: 10px;
    }

    .row_between {
        flex-wrap: wrap;
    }

    .shipping-method .switch_off .v-radio .v-radio_content span {
        width: unset;
        margin-right: 20px;
    }

    .shipping-method .switch_off .v-radio .v-radio_content span:first-child {
        width: 40px;
    }

    .shipping-method > .content > .switch_no > .content {
        flex-direction: column;
    }

    .shipping-method > .content > .switch_no > .content .v-radio {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .shipping-method > .content > .switch_no > .content .v-radio > .image {
        justify-content: normal
    }

    .settlementForm > .settlement_content > .tbody > li > div:nth-child(3),
    .settlementForm > .settlement_content > .thead > li:nth-child(3) {
        display: none;
    }

    .settlementForm > .settlement_content > .tbody > li > div {
        justify-content: center;
    }

    .cart-content .right {
        width: 100%;
        margin-left: 0;
    }

    .tabel > .thead {
        display: none;
    }

    .tabel > .tbody > li {
        position: relative;
    }

    .tabel > .tbody > li > div:nth-child(2) {
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .tabel > .tbody > li > div:nth-child(3) {
        left: 110px;
        position: absolute;
        top: 45px;
    }

    .tabel,
    .tabel * {
        box-sizing: border-box;
    }

    .tabel > .tbody > li > div:nth-child(4) {
        bottom: 0px;
        left: 0;
        padding: 0;
        position: absolute;
        width: 100%;
        padding: 0 10px;
        flex-direction: unset !important;
        justify-content: space-between !important;
        font-size: 12px;
    }

    .tabel > .tbody > li > div:nth-child(2) > .content > div:nth-child(3) {
        display: none;
    }

    .addressForm .form-content .v-radio .v-radio_content,
    .AddressList .v-radio-list .v-radio-item .v-radio .v-radio_content {
        flex-direction: column;
        width: calc(100% - 28px);
        word-break: break-all;
    }

    .addressForm .form-content .v-radio .v-radio_content .left,
    .AddressList .v-radio-list .v-radio-item .v-radio .v-radio_content .left {
        width: 100%;
    }

    .addressForm .form-content .v-radio .v-radio_content .right,
    .AddressList .v-radio-list .v-radio-item .v-radio .v-radio_content .right {
        justify-content: space-between;
    }

    .cart-content .left {
        width: 100%;
    }

}
