/* 搜索框表单样式修复 */
.search-form-wrapper {
    position: relative;
    width: 100%;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 16px;
    outline: none;
    font-size: 14px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-form input:focus {
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.6);
}

.search-form input::placeholder {
    color: #94a3b8;
}

.search-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 12px;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    background-size: 400% 400%;
    animation: wave-animation 8s ease-in-out infinite;
    border: none;
    border-radius: 12px;
    color: #1e3a8a;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    transform: translateY(-50%) scale(0.98);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.7);
}

.search-form button i {
    width: 14px;
    height: 14px;
    color: #1e3a8a;
    display: block;
}

/* 隐藏旧的搜索框样式 */
.search-box {
    display: none !important;
}
