/*城市选择*/
/* Mobile */
html {
    font-size: 32px;
}

/* iPhone 4/5 */
@media (min-width: 320px) {
    html {
        font-size: 32px;
    }
}

/* Android */
@media (min-width: 360px) {
    html {
        font-size: 36px;
    }
}

/* iPhone6 */
@media (min-width: 375px) {
    html {
        font-size: 37.5px;
    }
}

/* iPhone6 Plus */
@media (min-width: 414px) {
    html {
        font-size: 41.4px;
    }
}

@media (min-width: 640px) {
    html {
        font-size: 64px;
    }
}

@media (min-width: 750px) {
    html {
        font-size: 75px;
    }
}

/*ipad ipad mini*/
@media (min-width: 768px) {
    html {
        font-size: 76.8px;
    }
}
dl,dt,dd,ul{margin:0;padding:0;}ul{list-style:none;}a{text-decoration:none;}
.picker-box {
    -webkit-user-select: none;
    font-size: .40rem;
}

.picker-box dt {
    background-color: #dbdbdb;
    padding: .2rem .27rem;
    text-transform: uppercase;
}

.picker-box dd {
    padding: .2rem .27rem;
    border-bottom: 1px solid #dbdbdb;
}

.pro-picker a {
    display: block;
}

.pro-picker, .city-picker {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    overflow: auto;
    width: 100%;
}

.city-picker li {
    padding: .1rem .27rem;
    border-bottom: 1px solid #dbdbdb;
}

.navbar {
    position: fixed;
    top: 50%;
    right: 0;
    padding:.27rem 0;
    width: .67rem;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-radius: 4rem;
}

.navbar a {
    display: block;
    text-align: center;
    color: gray;
    text-transform: uppercase;
    padding-bottom: 2px;
}

.navbar.active {
    background-color: grey;
}

.navbar.active a {
    color: #fff;
}

.picker-box .prompt {
    display: block;
    padding:1px;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    font-size: .67rem;
    -webkit-border-radius: .13rem;
    -moz-border-radius: .13rem;
    border-radius: .13rem;
    background-color: gray;
    color: #fff;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-transform:uppercase;
}

/*城市选择Begin*/