.form-city-phi {
    width: 268px;
    border: none;
    text-indent: 4px;
    line-height: 42px;
    font-size: 12px;
    color: #a9a9a9;
    font-family: Microsoft yahei;
    position: relative;
    display: flex;
    display: none;
}

.location-icon {
    background: url(../images/icon_loacation@2x.png) no-repeat center center;
    background-size: 60% auto;
    width: 35px;
    min-width: 35px;
}

.city-input-phi {
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 268px;
}

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

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

.city-popup-mask-phi {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    display: none;
}

.city-popup-phi {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 500px;
    border-radius: 8px 8px 0 0;
}

.popup-header-phi {
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    display: flex;
    justify-content: space-between;
    height: 42px;
    align-items: center;
}

.popup-close-icon-phi {
    height: 36px;
    width: 36px;
    line-height: 30px;
    margin-right: 10px;
    font-size: 24px;
}

.city-select-header-phi {
    height: 30px;
}

.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;
    cursor: pointer;
    margin-right: 10px;
}

.city-popup-body-phi {
    overflow: hidden;
}

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

.select-group-phi {
    overflow: hidden;
    overflow-y: auto;
    height: 430px;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.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: column;
    line-height: 30px;
    margin-bottom: 3px;
}

.select-group-type-phi {
    font-family: Helvetica;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0;
    min-width: 25px;
    border-bottom: 1px solid #EEEEEE;
    position: sticky;
    top: 0;
    background: #fff;
}

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

.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: 5px;
    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: 26%;
    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%);
    }
}