.form-city-phi {
    width: 346px;
    margin: 0 auto 16px;
    border: none;
    border-radius: 3px;
    text-indent: 62px;
    line-height: 50px;
    font-size: 16px;
    color: #777;
    font-family: Microsoft yahei;
    background: url(../images/icon_loacation@2x.png) no-repeat 13px #fff;
    background-size: 30px;
    position: relative;
    display: none;
}

.city-input-phi {
    border-radius: 3px;
    height: 46px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.city-input-selected-phi {
    color: #333;
}

.city-select-phi {
    background: #fff;
    width: 346px;
    overflow: hidden;
    text-indent: 16px;
    margin: 0 auto;
    position: absolute;
    border-radius: 3px;
    top: 48px;
    box-sizing: border-box;
    height: 280px;
    border: 1px solid #E1E1E1;
    display: none;
}

.city-select-header-phi {
    height: 39px;
    border-bottom: 1px solid #E1E1E1;
}

.selected-province-phi, .selected-city-phi {
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #666666;
    letter-spacing: 0;
    display: inline-block;
    min-width: 30px;
    text-indent: 0;
    height: 30px;
    line-height: 36px;
    cursor: pointer;
    margin-right: 10px;
}

.selected-label-phi {
    color: #F66007;
}

.select-group-phi {
    overflow: hidden;
    overflow-y: auto;
    height: 240px;
    padding: 10px 0;
    width: 346px;
    min-width: 346px;
    box-sizing: border-box;
}

.select-group-to-right-phi {
    animation: 200ms ease-in slideToRight-phi;
}

.select-group-to-left-phi {
    animation: 200ms ease-in slideToLeft-phi;
}

.select-container-phi {
    display: flex;
    flex-direction: row;
}

.select-container-right-phi {
    transform: translate(-100%);
}

.select-item-phi {
    display: flex;
    flex-direction: row;
    line-height: 30px;
}

.select-group-type-phi {
    font-family: Helvetica;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0;
    min-width: 25px;
}

.select-group-item-phi {
    font-family: STSongti-SC-Bold;
    font-size: 12px;
    color: #666666;
    letter-spacing: 0;
    width: 100%;
}

.select-group-item-phi span {
    display: block;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}

.select-group-item-selected-phi::after {
    content: '';
    width: 12px;
    height: 20px;
    background: url(../images/icon_selected_tick@2x.png) no-repeat center/100%;
    display: inline-block;
    position: relative;
    top: 4px;
    left: 5px;
}

.arrow-down-phi {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(../images/pic_arrow_down.png) no-repeat center/100% #fff;
    position: absolute;
    right: 20px;
    top: 35%;
    pointer-events: none;
}

.arrow-up-phi {
    background: url(../images/pic_arrow_up.png) no-repeat center/100% #fff;
}

.arrow-down-open-phi {
    background: url(../images/pic_arrow_up.png) no-repeat center/100% #fff;
}

@keyframes slideToRight-phi {
    from {
        transform: translate(-100%);
    }
    to {
        transform: translate(0%);
    }
}

@keyframes slideToLeft-phi {
    from {
        transform: translate(0%);
    }
    to {
        transform: translate(-100%);
    }
}