.sr-only {
    display: none;
}
#distpicker {
    max-width: 1200px;
    /*height: 600px;*/
    margin: 45px auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.topNet-form-group {
    position: relative;
    -webkit-appearance: none;
    background-color: #fff;
    display: inline-block;
    /*height: 430px;*/
    font-size: inherit;
    width: 23%;
}
.topNet-form-control {
    min-height: 40px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 10px;
}
.topNet-form-group ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 15px;
    max-height: 400px;
    position: absolute;
    overflow-y: auto;
    -ms-overflow-style: none;
    overflow: auto;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    box-sizing: border-box;
    display: none;
    z-index: 90;
}
 .topNet-form-group ul::-webkit-scrollbar {
 display: none;
}
.topNet-form-group input{
    width: 100%;
    position: relative;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #c8c8c8;
    box-sizing: border-box;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    outline: 0;
    padding: 10px 15px;
    cursor: pointer;
    margin: 0 0 0px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.topNet-form-group a{
    position: absolute;
    right: 12px;
    top:8px;
    border:none;
    background: none;
}
.topNet-form-group p {
    width: 100%;
    position: relative;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #c8c8c8;
    box-sizing: border-box;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    outline: 0;
    padding: 10px 15px;
    cursor: pointer;
    margin: 0 0 0px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.topNet-form-group p::before {
    content: '>';
    font-size: 14px;
    position: absolute;
    right: 12px;
    font-family: cursive;
}
.topNet-form-group p.open::before {
    content: '>';
    position: absolute;
    right: 12px;
    font-family: cursive;
    transform: rotate(90deg);
}
.topNet-form-group ul input {
    width: 100%;
    height: auto!important;
    padding: 4px;
    border: 1px solid #dcdfe6;
    z-index: 1;
    border-radius: 5px;
}
.topNet-form-group ul input:focus {
    outline: none;
    border-color: #409eff;
}
.topNet-form-group ul li {
    font-size: 14px;
    padding: 0 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #606266;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    cursor: pointer;
}
.topNet-form-group ul li:hover {
    background-color: #f5f7fa;
}
.topNet-form-group ul li[selected] {
    color: #409eff;
    font-weight: 700;
}
.topNet-form-group ul li.selected {
    background-color: #409EFF;
    color: white;
}
@media(max-width:780px){
    #distpicker{
        flex-wrap: wrap;
    }
    #distpicker .topNet-form-group{
        width: 32.33%;
    }
    .topNet-form-group ul{
        padding:10px;
    }
    .topNet-form-group ul li{
        padding:0 10px;
    }
    #distpicker .topNet-form-group:last-child{
        width:100%;
    }
}