/* 搜索框样式 */
.header-right {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    margin-left: 20px;
}

.search-icon {
    margin-right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.3s;
}

.search-icon i {
    font-size: 18px;
}

.search-icon:hover {
    color: #007bff;
}

#searchForm {
    position: absolute;
    top: 100%;
    right: 10px;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 250px;
    z-index: 100;
    display: none;
}

#searchForm.show {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    height: 36px;
    box-sizing: border-box;
}

.search-submit {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    height: 34px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background-color: #0056b3;
}

.button-q {
    background: transparent;
    height: 100%;
    width: 100%;
    font-size: 16px;
    border: 0;
    color: #ffffff;
}