.tmp-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    width: 100%;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
}

.tmp-navbar > .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    width: 45px;
}

.tmp-navbar > .icon img {
    height: 20px;
    width: 20px;
}

.tmp-navbar > .label {
    flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}

#order-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    top: 46px;
    left: 0;
    height: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    -webkit-transition: height .1s;
    transition: height .1s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    z-index: 10;
}
#order-list.__active {
    overflow-y: scroll;
    padding: 10px 0 0 10px;
    max-height: 50%;
}
#order-list .block {
    background-color: #eee;
    margin: 0 10px 10px 0;
    width: calc(33.33% - 10px);
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
}

#list {
    padding-top: 45px;
}
#list.__active::after {
    content: '';
    height: 100%;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9;
}


.tmp-pop-mask {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-animation: fadeIn 0.2s ease forwards;
    animation: fadeIn 0.2s ease forwards;
    z-index: 99999;
}

.tmp-pop-mask.fadeOut {
    -webkit-animation: fadeOut 0.2s ease forwards;
    animation: fadeOut 0.2s ease forwards;
}

@-webkit-keyframes fadeIn {
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.tmp-pop-mask .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    padding: 15px 20px 10px 20px;
    background-color: #fff;
    text-align: center;
    max-width: calc(80% - 40px);
    border-radius: 3px;
}

.tmp-pop-mask .icon img {
    height: 44px;
    width: 44px;
}

.tmp-pop-mask .title {
    font-size: 22px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.tmp-pop-mask .label {
    color: #999;
    font-size: 13px;
}

.tmp-pop-mask .content {
    margin: 15px 0;
    min-height: 50px;
}

.tmp-pop-mask .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 30px;
    line-height: 30px;
}

.tmp-pop-mask .buttons > div {
    background-color: #ccc;
    color: #fff;
    border-radius: 3px;
    padding: 0 20px;
}

.tmp-pop-mask .buttons > div:active {
    opacity: 0.7;
}

.tmp-pop-mask .buttons > div:first-child {
    margin-right: 10px;
}

.tmp-pop-mask .buttons > div.confirm {
    background-color: rgb(174, 222, 224);
}

.tmp-pop-mask .buttons > div.danger {
    background-color: rgb(236, 108, 97);
}

.index_footer {
    height: 1.5rem;
}
.index_footer ul li span {
    width: 0.7rem;
    height: 0.7rem;
}
.index_footer ul li i {
  font-size: .7rem;
}
.index_footer ul li p {
  font-size: 0.3rem;
}
.index_footer ul li:nth-child(3) img {
    height: .55rem!important;
    width: .55rem!important;
}