body, html {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    padding: 0.88rem 0 0.98rem;
    background: #FBF8FB;
    box-sizing: border-box;
}

.container-wrapper {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd
}

.bar-wrapper {
    width: 100%;
    height: 0.98rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 0.01rem solid #eee;
}

    .bar-wrapper .bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .bar-wrapper .bar-item .bar_icon {
            width: 0.5rem;
            height: 0.5rem;
            background: url(../../src/images/home.png) no-repeat;
            background-size: contain;
            margin-bottom: 0.05rem;
        }

        .bar-wrapper .bar-item .bar_icon2 {
            background: url(../../src/images/d3@2x.png) no-repeat;
            background-size: contain;
        }

        .bar-wrapper .bar-item .bar_icon3 {
            background: url(../../src/images/d2@2x.png) no-repeat;
            background-size: contain;
        }

        .bar-wrapper .bar-item .bar_icon4 {
            background: url(../../src/images/d1@2x.png) no-repeat;
            background-size: contain;
        }

        .bar-wrapper .bar-item .bar_text {
            font-size: 0.22rem;
            color: rgba(102,102,102,1);
        }

    .bar-wrapper .bi_active .bar_text {
        font-size: 0.22rem;
        color: #FF7200;
    }

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
    display: none;
}

.modalMin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.language-modal {
    transform: translate(0, 0);
    right: 0.3rem;
    left: auto;
    top: 0.88rem;
    background: white;
    border-radius: 0.1rem;
    overflow: hidden;
}

    .language-modal .language {
        font-size: 0.26rem;
        font-weight: bold;
        color: rgba(102,102,102,1);
        border-bottom: 1px solid #eee;
        padding: 0.3rem 0.48rem;
        text-align: center;
    }

    .language-modal .l_active {
        color: #FF7200;
    }

    .language-modal .language:last-child {
        border-bottom: none;
    }

.title-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 0.88rem;
    /*background: #fff;*/
    z-index: 10;
}

    .title-wrapper > .title_text {
        font-size: 0.34rem;
        font-weight: 500;
        color: rgba(34,34,34,1);
        text-align: center;
        line-height: 0.88rem;
    }

    .title-wrapper > .title_icon-wrapper {
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0 0.3rem;
    }

        .title-wrapper > .title_icon-wrapper > div {
            display: flex;
            align-items: center;
        }

            .title-wrapper > .title_icon-wrapper > div > .ti_icon1 {
                width: 0.4rem;
                height: 0.4rem;
                background: url(../../src/images/warehouse.png) no-repeat;
                background-size: contain;
                margin-right: 0.08rem;
            }

        .title-wrapper > .title_icon-wrapper > .ti_right > .ti_icon1 {
            background: url(../../src/images/forecast.png) no-repeat;
            background-size: contain;
        }

        .title-wrapper > .title_icon-wrapper > div > .ti_text {
            font-size: 0.28rem;
            font-weight: bold;
            color: rgba(102,102,102,1);
        }

        .title-wrapper > .title_icon-wrapper > div > .ti_icon2 {
            width: 0.2rem;
            height: 0.2rem;
            background: url(../../src/images/down.png) no-repeat;
            background-size: contain;
            margin-left: 0.08rem;
        }

.tab-wrapper {
    height: calc(100% - 0.88rem - 0.98rem);
    height: -webkit-calc(100% - 0.88rem - 0.98rem);
}

.tab-pages-wrapper {
    height: calc(100% - 0.92rem - 0.2rem);
    height: -webkit-calc(100% - 0.92rem - 0.2rem);
    overflow: hidden;
    margin-top: 0.2rem;
}

    .tab-pages-wrapper > .tab-page {
        display: none;
        height: 100%;
        overflow: auto;
        box-sizing: border-box;
        /*padding: 0.3rem;*/
    }

    .tab-pages-wrapper > .tp_active {
        display: block;
    }

.tab-btn-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 0.92rem;
    background: rgba(255,255,255,1);
    overflow: hidden;
}

    .tab-btn-wrapper > .tab-btn {
        width: 0.9rem;
        font-size: 0.28rem;
        font-weight: 500;
        color: rgba(34,34,34,1);
        line-height: 0.86rem;
        text-align: center;
    }

        .tab-btn-wrapper > .tab-btn:nth-child(5) {
            height: 0.3rem;
            line-height: 0.3rem;
            border-left: 0.01rem solid #999;
            padding-left: 0.3rem;
        }

    .tab-btn-wrapper > .tb_active {
        line-height: 0.94rem;
        color: #FF7200;
        border-bottom: 0.06rem solid #FF7200;
        height: 0.92rem;
        box-sizing: border-box;
        overflow: hidden;
    }

.tab-page > .tp-item {
    background: #fff;
    padding: 0.3rem 0.3rem 0.2rem;
    margin-bottom: 0.2rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.item-data {
    padding: 0.3rem;
    background: #FBF8FB;
    border-radius: 0.1rem;
}

.data-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    font-size: 0.24rem;
    color: #333;
    font-weight: 500;
}

.item-data > .data-list:last-child {
    margin-bottom: 0;
}

.data-list .dl_right {
    color: #444;
}

.data-list .remark {
    width: 5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.radio {
    width: 0.3rem;
    height: 0.3rem;
    background: url(../../src/images/radio.png) no-repeat;
    background-size: contain;
    margin-right: 0.2rem;
}

.radio_on {
    background: url(../../src/images/radio_on.png) no-repeat;
    background-size: contain;
}

.button {
    display: inline-block;
    height: 0.6rem;
    background: #FF7200;
    border-radius: 0.36rem;
    text-align: center;
    line-height: 0.6rem;
    font-size: 0.3rem;
    color: rgba(255,255,255,1);
    padding: 0 0.3rem;
}

.button-disable {
    background: #ccc !important;
}

.title-wrapper > .title_icon-wrapper > div > .icon_back {
    width: 0.2rem;
    height: 0.36rem;
    background: url(../../src/images/back.png) no-repeat;
    background-size: contain;
}


.input-list-wrapper {
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0.2rem;
}

    .input-list-wrapper > .input_list:last-child {
        border-bottom: none;
    }

.input_list {
    height: 0.94rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    margin: 0 0.3rem;
    border-bottom: 1px solid #eee;
}

    .input_list .il_title {
        width: 1.4rem;
        text-align: left;
        font-size: 0.28rem;
        color: rgba(34,34,34,1);
        margin-right: 0.2rem;
    }

    .input_list > input {
        height: 0.94rem;
        flex: 1;
        font-size: 0.28rem;
    }

.il_right > .type-wrapper {
    display: flex;
    align-items: center;
}

    .il_right > .type-wrapper > .type-text {
        font-size: 0.28rem;
        color: rgba(102,102,102,1);
    }

.in_icon {
    margin-left: 0.2rem;
    width: 0.18rem;
    height: 0.3rem;
    background: url(../../src/images/in2.png) no-repeat;
    background-size: contain;
}

.selectlist-wrapper {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    position: absolute;
    bottom: -4.74rem;
    left: 0;
}

.show {
    animation: show 0.25s linear forwards;
}

.leave {
    animation: leave 0.25s linear forwards;
}

.select-list {
    position: relative;
}

.select {
    font-size: 0.3rem;
    text-align: center;
    padding: 0.29rem 0;
    font-weight: bold;
    color: rgba(34,34,34,1);
    border-bottom: 0.01rem solid #eee;
}

.llw-box .select-list:last-child {
    border-bottom: none;
}

.choose_icon {
    width: 0.3rem;
    height: 0.3rem;
    background: url(../../src/images/choose.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0.27rem;
    right: 0.3rem;
    display: none;
}

.ll_active .choose_icon {
    display: block;
}

.llw-box {
    width: 102%;
    height: 2.67rem;
    overflow: auto;
}

@keyframes show {
    from {
        bottom: -4.74rem;
    }

    to {
        bottom: 0;
    }
}

@keyframes leave {
    from {
        bottom: 0;
    }

    to {
        bottom: -4.74rem;
    }
}

.sw_title {
    height: 0.88rem;
    line-height: 0.88rem;
    text-align: center;
    border-bottom: 0.01rem solid #eee;
    font-size: 0.24rem;
    color: rgba(102,102,102,1);
}

.selectlist-wrapper .line {
    height: 0.2rem;
    background: #ddd;
}

.selectlist-wrapper .cancel {
    height: 0.93rem;
    line-height: 0.93rem;
    text-align: center;
    font-size: 0.3rem;
    color: #222;
    font-weight: bold;
}

.pay-list, .pay-list-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 0.84rem;
    padding: 0 0.3rem;
    border-bottom: 1px solid #eee;
}

.pay-list {
    padding-left: 0;
    margin-left: 0.3rem;
}

.pay-list-wrapper > .pay-list-title > div {
    color: #666;
    font-size: 0.28rem;
}

.pl_left > div {
    font-size: 0.28rem;
    color: #222;
}

.pl_left {
    display: flex;
    align-items: center;
}

.pay_icon {
    width: 0.5rem;
    height: 0.5rem;
    background: url(../../src/images/pay1.png) no-repeat;
    background-size: contain;
    margin-right: 0.3rem;
}

.pay_icon2 {
    background: url(../../src/images/pay2.png) no-repeat;
    background-size: contain;
}

.pay_icon3 {
    background: url(../../src/images/pay3.png) no-repeat;
    background-size: contain;
}

.pay_icon4 {
    background: url(../../src/images/pay4.png) no-repeat;
    background-size: contain;
}

.pay_icon5 {
    background: url(../../src/images/pay5.png) no-repeat;
    background-size: contain;
}

.pay_icon6 {
    background: url(../../src/images/pay6.png) no-repeat;
    background-size: contain;
}

.topay-wrapper {
    display: flex;
    align-items: center;
    height: 0.98rem;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
}

.pay_btn {
    background: #FF7200;
    width: 3rem;
    height: 0.98rem;
    text-align: center;
    line-height: 0.98rem;
    font-size: 0.28rem;
    font-weight: bold;
    color: rgba(255,255,255,1);
}

.topay-wrapper .topay-left {
    flex: 1;
    padding: 0 0.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topay-left > div, .topay-left > div > div {
    font-size: 0.28rem;
    font-weight: bold;
    color: rgba(255,114,0,1);
}

    .topay-left > div > div {
        color: #222;
    }

        .topay-left > div > div:nth-child(2) {
            margin-top: 0.1rem;
        }

.title {
    padding: 0.3rem;
    display: flex;
    align-items: center;
}

.title-text {
    font-size: 0.24rem;
    font-weight: 800;
    color: rgba(34,34,34,1);
    line-height: 0.24rem;
    border-left: 0.06rem solid #FF7200;
    padding: 0 0.1rem;
}

.address-list {
    padding: 0.3rem;
    display: flex;
    align-items: center;
    border: 0.01rem solid #ddd;
    border-radius: 0.1rem;
    margin-bottom: 0.2rem;
}

.address-msg > .am-list:nth-child(2) {
    margin-top: 0.3rem;
}

.am-list {
    display: flex;
    align-items: center;
    color: #666;
}

    .am-list > .size26 {
        font-size: 0.28rem;
        color: #222;
    }

    .am-list > .default {
        width: 0.6rem;
        text-align: center;
        color: #fff;
        font-size: 0.22rem;
        height: 0.28rem;
        line-height: 0.28rem;
        background: #FF7200;
        border-radius: 0.08rem;
        margin-left: 0.1rem;
    }

.center {
    text-align: center;
    font-size: 0.26rem;
    color: #666;
    display: block;
}
