body {
    padding: 44px 0px 200px 0px;
    padding-bottom: calc(200px + constant(safe-area-inset-bottom));
    padding-bottom: calc(200px + env(safe-area-inset-bottom));
}

.top-bar .btn-edit {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0px 16px;
    color: #0099ff;
    line-height: 44px;
}

.shopcart .product-list {
    background: #ffffff;
    margin-bottom: 15px;
}

.shopcart .product-list .product-item {
    position: relative;
    padding: 10px 90px 10px 16px;
}

.shopcart .product-list .product-item-edit {
    padding: 10px 90px 10px 46px;
}

.shopcart .product-list .product-item .item-type {
    color: #0099ff;
}

.shopcart .product-list .product-item:after {
    content: "";
    display: block;
    position: absolute;
    left: 16px;
    right: 0px;
    bottom: 0px;
    border-bottom: 1px solid #e5e5e5;
}

.shopcart .product-list .product-item:last-child:after {
    display: none;
}

.shopcart .product-list .product-item .item-price {
    position: absolute;
    right: 16px;
    top: 10px;
    text-align: right;
}

.shopcart .product-list .product-item .item-price-inner {
    color: #e53737;
    font-family: 'Roboto', sans-serif;
}

.shopcart .product-list .product-item .price-tag {
    text-align: right;
}

.shopcart .product-list .product-item .price-tag .price-tag-tuangou {
    display: inline-block;
    color: #cc6600;
    border-radius: 4px;
    padding: 0px 2px;
    border: 1px solid;
    font-size: 12px;
    line-height: 1.2;
}

.shopcart .product-list .product-item .radio {
    border: 1px solid #999999;
    background: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: absolute;
    left: 16px;
    top: 10px;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.shopcart .product-list .product-item .radio.checked {
    border: 1px solid #e53737;
    background: #e53737 url(../images/app-h5-bg0011.png) center center no-repeat;
    background-size: 100% 100%;
}

.shopcart .product-list .product-item .item-amount {
    font-size: 12px;
    color: #888888;
    padding-top: 5px;
}

.shopcart .product-list .product-item .item-amount .amount-number {
    font-size: 14px;
}

.shopcart .product-list .product-item .item-amount .amount-number-bar {
    border: 1px solid #d5d5d5;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: 24px;
    padding: 0px 40px;
    text-align: center;
    line-height: 24px;
    width: 3em;
    border-radius: 8px;
    overflow: hidden;
}

.shopcart .product-list .product-item .item-amount .amount-sub {
    width: 32px;
    height: 100%;
    border-right: 1px solid #d5d5d5;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #f5f5f5;
}

.shopcart .product-list .product-item .item-amount .amount-add {
    width: 32px;
    height: 100%;
    border-left: 1px solid #d5d5d5;
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    background: #f5f5f5;
}

.shopcart .error-tips {
    padding: 10px 15px;
    background: #ffe1e1;
    border: 1px dashed #ff6c6c;
    color: #cc0000;
    margin: 16px;
}

.shopcart .leave-message-box {
    margin: 0px 16px;
}

.shopcart .leave-message-box-title {
    margin-bottom: 5px;
}

.shopcart .leave-message {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    height: 80px;
    outline: none;
    border: 1px solid #999999;
    border: 0px;
    background: #ffffff;
    border-radius: 4px;
    resize: none
}

.shopcart .leave-message-warning {
    border: 1px solid;
}

.coupons {
    margin-bottom: 20px;
    background: #ffffff;
    padding: 0px 16px;
    overflow: hidden;

}

.coupons .coupon-control {
    overflow: hidden;
    zoom: 1;
    line-height: 32px;
    padding: 10px 0px;
    font-size: 15px;
}

.coupons .coupon-control #chkCoupon {
    position: absolute;
    left: -99999em;
}

.coupons .coupon-control .checkbox-span {
    position: relative;
    width: 52px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: 0;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.1s, border 0.1s;
    transition: background-color 0.1s, border 0.1s;
    float: right;
}

.coupons .coupon-control .checkbox-span:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 30px;
    border-radius: 15px;
    background-color: #FDFDFD;
    transition: transform .35s cubic-bezier(0.45, 1, 0.4, 1);
}

.coupons .coupon-control .checkbox-span:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: transform .35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
}

.coupons .coupon-control #chkCoupon:checked~.checkbox-span {
    border-color: #e53737;
    background-color: #e53737;
}

.coupons .coupon-control #chkCoupon:checked~.checkbox-span:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.coupons .coupon-control #chkCoupon:checked~.checkbox-span:after {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.coupons .coupon-list {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    position: relative;
    margin-bottom: 16px;
}

.coupons .coupon-list li {
    display: block;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.coupons .coupon-list .useable {
    cursor: pointer;
}

.coupons .coupon-list .un-useable {
    color: #999999;
    cursor: not-allowed;
}

.coupons .coupon-list li label {
    display: block;
    cursor: pointer;
}

.coupons .coupon-list li label .radio-text {
    display: block;
    padding: 10px 44px 10px 16px;
    position: relative;
    line-height: 24px;
}

.coupons .coupon-list li label .radio-text:before {
    content: "";
    border: 1px solid #999999;
    background: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: absolute;
    right: 16px;
    top: 12px;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.coupons .coupon-list .un-useable label .radio-text:before {
    opacity: 0.3;
}

.coupons .coupon-list li label input {
    position: absolute;
    left: -9999em;
}

.coupons .coupon-list li label input:checked+.radio-text:before {
    border: 1px solid #ff3e3e;
    background: #ff3e3e url(../images/app-h5-bg0011.png) center center no-repeat;
    background-size: 100% 100%;
}

.coupons .coupon-list.busying:after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5) url(../images/loading_white.gif) center center no-repeat;
    background-size: 30px 30px;
}

.fix-btns {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 48px;
    background: #ffffff;
}

.fix-btns .total-price-des {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 100%;
    background: #fff0b6;
    text-align: center;
    font-size: 12px;
    padding: 5px;
    color: #c13600;
    line-height: 1.2em;
}

.fix-btns .total-price {
    float: left;
    padding: 10px;
}

.fix-btns .total-price .total-price-tag {
    display: block;
    font-size: 12px;
}

.fix-btns .total-price .total-price-num {
    display: block;
    color: #e53737;
    font-size: 18px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

.fix-btns .btn-container {
    float: right;
    padding: 10px;
    font-size: 0px;
    overflow: hidden;
    zoom: 1;
    text-align: right;
}

.fix-btns .btn-container.colum-two .btn-item {
    display: inline-block;
    vertical-align: middle;
}

.fix-btns .btn-container .btn-item a {
    display: block;
    padding: 0px 10px 0px 10px;
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    margin: 0px 5px;
}

.fix-btns .btn-container .btn-item a .text {
    display: inline-block;
    vertical-align: middle;
}

.fix-btns .btn-container .btn-item a:before {
    content: "";
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    vertical-align: middle;
    margin-right: 5px;
}

.fix-btns .btn-container .btn-alipay {
    background: #0082ed;
    background: -webkit-linear-gradient(left, #00aaee, #0082ed);
    background: linear-gradient(to right, #00aaee, #0082ed);

}

.fix-btns .btn-container .btn-alipay:before {
    background: url(../images/app-h5-bg0023.png) center center no-repeat;
    background-size: 100% 100%;
}

.fix-btns .btn-container .btn-weixinpay {
    background: #02bf1e;
    background: -webkit-linear-gradient(left, #05bf02, #02bf1e);
    background: linear-gradient(to right, #05bf02, #02bf1e);
}

.fix-btns .btn-container .btn-weixinpay:before {
    background: url(../images/app-h5-bg0024.png) center center no-repeat;
    background-size: 100% 100%;
}

.fix-btns .btn-opper-container {
    padding: 8px 16px 10px 16px;
    font-size: 0px;
    overflow: hidden;
    zoom: 1;
    text-align: right;
}

.fix-btns .btn-opper-container .btn-clean {
    display: inline-block;
    padding: 0px 15px;
    border: 1px solid #888888;
    color: #333333;
    line-height: 24px;
    border-radius: 100px;
    font-size: 14px;
    margin: 3px 0px 0px 10px;
}

.fix-btns .btn-opper-container .btn-del-selected {
    display: inline-block;
    padding: 0px 15px;
    border: 1px solid;
    color: #e53737;
    line-height: 24px;
    border-radius: 100px;
    font-size: 14px;
    margin: 3px 0px 0px 10px;
}

.fix-btns:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    border-top: 1px solid #e5e5e5;
}

.logistics {
    background: #ffffff;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1500;
}

.logistics .logistics-title {
    padding: 0px 15px;
    background: #ffffff;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.logistics .logistics-title .title-text {
    font-size: 18px;
    margin: 0px 88px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 44px;
    font-weight: bold;
}

.logistics .logistics-title .btn-close-logistics {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0px 16px;
    color: #0099ff;
    line-height: 44px;
}

.logistics .logistics-content {
    padding: 15px;
    position: absolute;
    top: 44px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.logistics .logistics-list {
    overflow: hidden;
    zoom: 1;
}

.logistics .logistics-list .logistics-item {
    margin-bottom: 10px;
    position: relative;
}

.logistics .logistics-list .logistics-item-inner {
    border: 1px dashed #e5e5e5;
    padding: 10px 70px 10px 40px;
    cursor: pointer;
    position: relative;
}

.logistics .logistics-list .logistics-item-inner .radio-ico {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 2px solid #d5d5d5;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -8px;
    box-sizing: border-box;
}

.logistics .logistics-list .logistics-item-inner:hover {
    border: 1px solid #888888;
}

.logistics .logistics-list .logistics-item .receiptor {
    display: inline-block;
    margin-right: 1em;
}

.logistics .logistics-list .logistics-item .mobile {
    display: inline-block;
    margin-right: 1em;
}

.logistics .logistics-list .logistics-item .reciveaddress {
    display: inline-block;
    color: #888888;
}

.logistics .logistics-list .logistics-item .postno {
    display: inline-block;
    color: #888888;
}

.logistics .logistics-list .logistics-item.selected .logistics-item-inner {
    border: 1px solid #0099ff;
}

.logistics .logistics-list .logistics-item.selected .logistics-item-inner .radio-ico {
    border: 2px solid #0099ff;
}

.logistics .logistics-list .logistics-item.selected .logistics-item-inner .radio-ico:before {
    content: "";
    display: block;
    background: #0099ff;
    border-radius: 100%;
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
}

.logistics .logistics-list .logistics-item .btn-del-address {
    position: absolute;
    top: 50%;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
    right: 10px;
    padding: 0px 10px;
    color: #0099ff;
}

.logistics .logistics-add-form {
    background: #f5f5f5;
    padding: 20px;
}

.logistics .logistics-add-form .logistics-add-formt-itle {
    font-weight: bold;
    margin-bottom: 10px;
}

.logistics .logistics-add-form .logistics-add-form-item {
    position: relative;
    margin-bottom: 15px;
}

.logistics .logistics-add-form .item-tag {
    margin-bottom: 5px;
}

.logistics .logistics-add-form .mid-text-box {
    padding: 0px 10px;
    border: 1px solid #999999;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
}

.logistics .logistics-add-form .long-text-box {
    padding: 0px 10px;
    border: 1px solid #999999;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
}

.logistics .logistics-add-form select {
    border: 1px solid #999999;
    min-height: 36px;
    padding: 0px 10px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 5px;
}

.logistics .logistics-btn-container {}

.logistics .btn-save-address {
    background: #0099ff;
    color: #ffffff;
    border-radius: 4px;
    width: 100%;
    height: 36px;
    border: 0px;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.current-address {
    background: #ffffff url(../images/app-h5-bg0029.png) 16px center no-repeat;
    background-size: 20px 20px;
    margin-bottom: 16px;
}

.current-address .current-address-inner {
    padding: 10px 32px 10px 46px;
    background: url(../images/app-h5-bg0006.png) center right 16px no-repeat;
    background-size: auto 16px;
}

.current-address .current-address-title {
    font-size: 15px;
}

.current-address .current-address-des {
    color: #888888;
    font-size: 12px;
}

.not-login-box {
    text-align: center;
    padding: 100px 16px;
}

.not-login-box .btn-container {
    padding-top: 10px;
}

.not-login-box .btn-container .btn {
    background: #0099ff;
    color: #ffffff;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    display: block;
    max-width: 8em;
    margin: 0px auto;
}