/* 确保下拉框紧挨着搜索框 */
#searchDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 60vh; /* 限制下拉框高度 */
    overflow-y: auto; /* 当内容超出时显示滚动条 */
    z-index: 1000; /* 确保下拉框在其他元素之上 */
}