
.searchInput .searchType{
    font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;;
    color: #666666;
    position: absolute;
    z-index: 1;
    padding-left: 10px;
    cursor: pointer;
}

.searchInput .dropDownInput{
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    height: 36px;
    padding-left: 50px;
    background-color: #fff;
    width: 445px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.searchInput .dropDownBox{
    display: none;
    position: absolute;
    z-index: 99999;
    width: 445px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.15);
}

.searchInput .dropDownBox:before {
    content: "";
    position: absolute;
    left: 5px;
    top: -5px;
    display: block;
    width: 10px;
    height: 10px;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #ebebeb;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-color: #ddd transparent transparent #ddd;
  }

.searchInput .dropDownBox ul{
    list-style-type: none;
    margin: 10px 0;
    max-height: 300px;
    overflow: auto;
}

.searchInput .dropDownBox ul li{
    line-height: 35px !important;
    padding: 0 10px;
    position: relative;
    display: flex;
}

.searchInput .dropDownBox ul li .pageName{
    width: 380px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.searchInput .dropDownBox ul li:hover{
    cursor: pointer;
    background-color: #DCE7F7;
    color: #1572FF;
}

.searchInput .dropDownBox .setPageBtn{
    position: absolute;
    right: 0;
    padding-right: 10px;
    line-height: 35px !important;
}

.searchInput .dropDownBox .setPageBtn.active{
    color: #1572FF !important;
}

.searchInput .textCenter{
    text-align: center;
}

@media(max-width:550px) {
    .searchInput .dropDownBox,
    .searchInput .dropDownInput{
        width: 295px;
    }
    .searchInput .dropDownBox ul li .pageName{
        width: 250px;
    }
}