.blue-input {
    /* float: left; */
    width: 240px;
    margin-left: 70px;
    height: 26px;
    padding: 0 10px;
    border-radius: 5px;
    margin-top: 2px;
    box-sizing: border-box;
    /* position: fixed; */
    top: 10px;
    transition: .5s;
    opacity: .8;
    outline: none;
    font-size: 13px;
    line-height: 50px;
}
 
/* 搜索下拉框*/
ul#drop {
    margin-left: 70px;
    transition: .5s;
    list-style: none;
    position: absolute;
    width: 240px;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255, .3);
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    z-index: 99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #FAFAFA;
    max-height: 300px;
    overflow: auto;
}
ul#drop::-webkit-scrollbar{
    width: 4px;
    height: 2px;
}
ul#drop::-webkit-scrollbar-thumb{
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
}
ul#drop::-webkit-scrollbar-thumb:hover{
    background: rgba(255, 255, 255, 0.745);
}
ul#drop::-webkit-scrollbar-track{
    border-radius: 2px;
    background: rgba(60, 60, 60);
}
ul#drop li {
    /* text-align: center; */
    height: auto;
    position: relative;
    margin: 0;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0;
    font-size: 13px;
}
ul#drop div{
    max-width: 160px;
    overflow: hidden;
    height: auto;
    padding: 12px 10px 10px 18px;
}
ul#drop li:hover {
    background-color: #00b49658;;
}
 
p#selectedId {
    margin: 0;
    display: block;
}
