.suggestions-container {
    position: absolute; /* 绝对定位，相对于最近的相对定位的祖先元素 */
    bottom: 100%; /* 将建议框放置在输入框的正下方 */
    left: 0; /* 与输入框左对齐 */
    right: 0; /* 与输入框右对齐 */
    z-index: 1000; /* 确保建议框在输入框之上 */
    background: white; /* 背景色设置为白色，以防止文字显示到页面背景后面 */
    border: 1px solid #ccc; /* 可选：为建议框添加边框 */
    border-bottom: none; /* 移除与输入框相接的边框 */
    /* max-height: 150px; 可选：限制建议框的最大高度 */
    /* overflow-y: auto; 可选：超出最大高度时允许滚动 */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* 可选：为建议框添加阴影 */
    display: none; /* 默认不显示，当有建议时通过JS显示 */
    margin-bottom: -1px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}