@keyframes slide-up {
    from {
        bottom: -100vh; 
    }
    to  {
        bottom: 0; 
    }
}

@keyframes slide-down {
    from {
        bottom: 0; 
    }
    to  {
        bottom: -100vh; 
    }
}

.container {
    max-width: 6.4rem;
    min-height: 100vh;
    margin: 0 auto;
    background: #f1f1f1;
}

.main {
    position: relative;
    width: 6rem;
    margin: .25rem auto 0;
}

.form {
    padding: .3rem .2rem;
    background: #fff;
    border-radius: .1rem;
    box-sizing: border-box;
}
.form .title {
    font-size: .36rem;
    color: #333;
}
.form .form-item {
    position: relative;
    height: 1rem;
    background: #f1f1f1;
    border-radius: 1rem;
    overflow: hidden;
}
.form .select::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: .5rem;
    height: 1rem;
    margin: auto;
    content: ">";
    font-size: .36rem;
    color: #757575;
    text-align: center;
    line-height: 1rem;
}
.form .form-item:nth-of-type(n+2) {
    margin-top: .2rem;
}

.form .form-item input {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: .3rem;
    padding-right: .5rem;
    font-size: .24rem;
    line-height: .6rem;
    background: none;
    border: 0;
    box-sizing: border-box;
    outline: none;
}
.form .form-phone {
    display: flex;
    align-items: center;
    padding-right: .3rem;
}
.form .form-phone input {
    flex: 1;
    padding-right: 0;
}
.form .form-phone .codeBtn {
    font-size: .2rem;
    color: #71a9fe;
    cursor: pointer;
}
.form .sumbit {
    height: 1rem;
    margin-top: .2rem;
    font-size: .36rem;
    color: #fff;
    text-align: center;
    line-height: 1rem;
    background: #5288ec;
    border-radius: 1rem;
}

.toast {
    display: none;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5rem;
    height: 3rem;
    padding: .3rem;
    background: #fff;
    border-radius: .1rem;
    box-shadow: 0 0 .1rem #999;
    z-index: 10;
}
.toast .title {
    padding-bottom: .2rem;
    font-size: .3rem;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}
.toast .cont {
    margin-top: .2rem;
    font-size: .28rem;
    line-height: .46rem;
    color: #333;
    text-align: center;
}
.toast .btn {
    width: 100%;
    height: .8rem;
    margin: .3rem auto 0;
    font-size: .24rem;
    color: #fff;
    line-height: .8rem;
    text-align: center;
    background: #5288ec;
}

.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 7.5rem;
    height: 100vh;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
}

.popup {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100vh;
    z-index: 10;
    width: 100%;
    max-width: 7.5rem;
    height: 80vh;
    margin: auto;
    padding-top: .2rem;
    background: #fff;
    border-radius: .1rem .1rem 0 0;
    box-sizing: border-box;
}
.popup .title {
    height: .6rem;
    font-size: .2rem;
    color: #333;
    text-align: center;
}
.popup .title span {
    position: relative;
    display: inline-block;
    height: 100%;
    line-height: .6rem;
}
.popup .title span:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: .05rem;
    content: "";
    background: #d9d9d9;
    border-radius: 1rem;
}

.data-wrap{
    display: flex;
    flex: 1;
    overflow: hidden;
}
.data-order{
    display: flex;
    flex-direction: column;
    width: .3rem;
    height: 100%;
    background-color: #f5f5f5;
}
.data-order li{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: .14rem;
    color: #979797;
    cursor: default;
}

.cityOn{
    background-color: #fff;
}
.data-show{
    flex: 1;
    box-sizing: border-box;
    overflow-y: auto;
    transition: all 1s;
    scrollbar-width: none;
}
.data-show::-webkit-scrollbar {
  display: none; 
}
.data-show a{
    display: block;
    height: .8rem;
    padding-left: .1rem;
    font-size: .3rem;
    color: #333;
    line-height: .8rem;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    box-sizing: border-box;
}
.data-show a:hover{
    cursor: pointer;
}