.city-picker-selector{
    width: 100%;
}
.city-picker-selector .selector-item {
    width: 32%;
    background: #F5F6F7;
    height: .56rem;
    line-height: .56rem;
    margin-left: 2%;
    position: relative;
    border-radius: .05rem;
    float: left;
}

.city-picker-selector .selector-item:first-child {
    margin-left: 0
}

.city-picker-selector .selector-item:after {
    content: '';
    border-right: .06rem solid transparent;
    border-left: .06rem solid transparent;
    border-top: .06rem solid #ccc;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: .24rem;
    right: .15rem;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms
}

.city-picker-selector .selector-show .selector-list {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible
}

.city-picker-selector .selector-show:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.city-picker-selector .selector-name {
    color: #000;
    font-size: .18rem;
    display: block;
    text-indent: .2rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}


.city-picker-selector .selector-name.df-color {
    color: #bbb
}

.city-picker-selector .selector-name.forbid {
    cursor: default
}

.city-picker-selector .selector-name.disabled {
    background-color: #eef1f6;
    cursor: not-allowed
}

.city-picker-selector .selector-list {
    border: 1px solid #f9f9f9;
    background: #fff;
    width: 1.6rem;
    position: absolute;
    top: .56rem;
    right: 0;
    z-index: 1;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translateY(-2%);
    transform: translateY(-2%);
    opacity: 0;
    visibility: hidden;
    overflow: hidden
}

.city-picker-selector ul {
    max-height: 160px;
    overflow-x: hidden;
    overflow-y: auto
}

.city-picker-selector li {
    border-top: 1px solid #f7f7f7;
    color: #333;
    cursor: pointer;
    font-size: .15rem;
    width: 100%;
    padding: 0 .2rem;
    height: .45rem;
    line-height: .45rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.city-picker-selector li:first-child {
    border-top: none
}

.city-picker-selector li.placeholder-li {
    cursor: default
}

.city-picker-selector li strong {
    color: #DD2432;
    padding: 0 5px
}

.city-picker-selector li.caller:hover {
    background: #f5f5f5
}

.city-picker-selector li.caller.active,
.city-picker-selector li.caller.active:hover {
    background: #084EAC;
    color: #fff
}

.city-picker-selector li.forbid {
    color: #999;
    font-size: 14px;
    cursor: not-allowed
}

.city-picker-selector .selector-search {
    border: 1px solid #ececec;
    border-top: none;
    background: #f8f8f8;
    font-size: 0;
    padding: 10px;
    height: 28px;
    margin-left: -1px;
    margin-right: -1px
}

.city-picker-selector .input-search {
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    width: 100%;
    height: 26px;
    line-height: 26px\9;
    padding: 0;
    text-indent: 5px
}

.city-picker-selector .input-search:focus {
    outline: none
}

.city-picker-selector .input-search::-webkit-input-placeholder {
    color: #bababa
}

select {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
    outline: none;
    width: 160px;
    height: 36px;
    margin-right: 10px;
    box-shadow: 0 0 5px #eee
}

select:disabled {
    background-color: #eef1f6;
    cursor: not-allowed
}

@media all and (max-width: 991px){
    .city-picker-selector .selector-item{
        height: .9rem;
        line-height: .9rem;
    }
    .city-picker-selector .selector-item:after{
        border-right: 0.1rem solid transparent;
        border-left: 0.1rem solid transparent;
        border-top: 0.1rem solid #ccc;
        top: .35rem;
        right: .2rem;
    }
    .city-picker-selector .selector-name{
        font-size: .26rem;
    }
    .city-picker-selector .selector-list{
        top: .9rem;
    }
    .city-picker-selector li{
        height: .7rem;
        line-height: .7rem;
        font-size: .25rem;
    }
}