ul li {
    list-style: none;
}

ul, li, p {
    padding: 0;
    margin: 0;
}
/* 弹窗遮罩 */
.popup_window_main{
	position: fixed;
    width: 100vw;
    height: 100vh;
    max-width: 800px;
    background: rgba(0,0,0,0.5);
    margin: auto;
    z-index:5555;
    display: none;
    top:0;
    left: 0;
    right: 0;
    margin:auto;
}
.city_mask{
	max-width: initial;
    justify-content: center;	
    flex-direction: column;
}

.roll_box{
    width: 100vw;
    max-width: 800px;
    background-color: #FFF;
    height: 100vh;
    margin: 0 auto;
}
.city_main{
	height: 100vh;
	overflow: auto;
    overflow-x: scroll;
}
.city_main::-webkit-scrollbar{height: 0;}

.footrest_box{
	display: none;
}
.city_header{
	height: 40px;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    top: 0;
    z-index: 5;
    width: 100%;
    max-width: 800px;
    background-color: #FFF;
    margin: auto;
    border-bottom: 1px solid #999;
    color: #000 !important;
}
.city_header i{position: absolute;right: 10px;font-size: 24px;font-weight: 500;}

#city_container {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.city_name {
    /* color: #6f6f6f;
    width: 100%;
    text-indent: 1em;
    border-bottom: 1px solid #f1f2f4;
    font-size: 14px;
    cursor: pointer;
    height: 40px;
    line-height: 40px; */
    color: #6f6f6f;
    width: 100%;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
    min-height: 40px;
    padding: 0 10px;
    line-height: 29px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#search_wrap {
    position: fixed;
    top: 40px;
    width: 100%;
    height: 40px;
    z-index: 2;
    padding: 5px 0;
    box-sizing: border-box;
    background-color: #FFF;
    margin: auto;
    max-width: 800px;
}

#search_wrap p {
    width: 90%;
    height: 100%;
    background-color: #f1f2f4;
    -moz-border-radius: 4rem;
    -webkit-border-radius: 4rem;
    border-radius: 4rem;
    border: 1px solid #999;
    display: flex;
    padding-left: 10px;
    align-items: center;
    margin: auto;
    position: relative;
}

#search_wrap p img {
    vertical-align: middle;
    width: 17px;
    margin-left: 5px;
}

#search_wrap p input {
    background-color: transparent;
    vertical-align: middle;
    width: 80%;
    margin-left: .5rem;
    border: none;
    outline: none;
    font-family: '黑体';
    padding: .3rem 0;
    font-size: 14px;
}

#search_wrap p input::-webkit-input-placeholder {
    color: #d4d4d4 !important;
    /* WebKit browsers */
}

#search_wrap p input:-moz-placeholder {
    color: #d4d4d4 !important;
    /* Mozilla Firefox 4 to 18 */
}

.page {
 /*    overflow-x: hidden;
    overflow-y: auto; 
    padding-top: 85px;*/
    position: relative;
}

#search_ul {
    background-color: #fff;
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 85px;
    z-index: 22;
    max-width: 800px;
    overflow-x: scroll;
}

#search_ul li {
    width: 100%;
}

.city_list {
    background-color: #fff;
}

.city_list .city_letter {
    background-color: #f1f2f4;
    color: #e83232;
    text-indent: .5em;
    padding: .2rem 0;
}

.city_list li:last-child {
    border-bottom: none;
}

#letter_ul {
    position: fixed;
    top: 50%;
    right: 0rem;
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    z-index: 2;
}

#letter_ul li {
    cursor: pointer;
    padding: 0 5px;
    font-size: 16px;
    color: #197cd4;
    margin-bottom: 2px;
}
.freight_tips{
	padding: 10px;
    color: #ee3845;
    padding-top: 85px;
    font-size: 12px;
    line-height: 18px;
}
.city_box{
	display: flex;
    align-items: flex-start;
    justify-content: center;
    /* width: 82%; */
    flex-direction: column;
    padding-top: 10px;
    margin-left: 83px;
}
.city_box .city_item{
	width: 100%;
    height: 32px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: inset 0 1px 4px rgb(0 0 0 / 10%);
    -webkit-box-shadow: inset 0 1px 4px rgb(0 0 0 / 10%);
    opacity: 1;
    color: #333;
    line-height: 32px;
    padding-left: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.city_search{
	position: absolute;
    right: 0;
    border-radius: 18px;
    height: 30px;
    box-sizing: border-box;
    width: 74px;
    background-color: #FFF;
    border: 1px solid #c3c3c3;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 576px){
	.compatibleIos{height: calc(100vh - 110px);}
	.footrest_box{display: block;height:100px;width: 100%;background-color: #FFF;}
}