/* 搜索容器 */
.search-container {
    width: 100%;
    max-width: 584px;
    margin: 1rem auto;
}

/* 搜索框 */
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #dfe1e5;
    border-radius: 1.5rem;
    padding: 0rem 1rem;
    background-color: white;
    box-shadow: 0 1px 0.375rem rgba(32, 33, 36, 0.08);
    transition: box-shadow 0.3s;
}

.search-box:hover {
    box-shadow: 0 1px 0.375rem rgba(32, 33, 36, 0.28);
}

/* 输入框 */
.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.5rem;
    background-color: transparent;
}

/* 图标按钮 */
.search-icon,
.voice-icon {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.search-icon:hover,
.voice-icon:hover {
    opacity: 1;
}

/* 按钮样式 */
.search-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.search-button {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin: 0 4px;
    cursor: pointer;
}

.search-button:hover {
    border: 1px solid #dadce0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}