/* 搜索表单样式 */
.wy-search-form {
    position: relative;
    height: 40px;
}

.wy-search-form .search-input {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    padding: 0 45px 0 12px;
    background-color: white;
    transition: all 0.2s ease;
    font-size: 14px;
}

.wy-search-form .search-input:focus {
    border-color: #3b82f6;
    outline: none;
}

.wy-search-form .search-button {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3b82f6;
    color: white;
    border-radius: 0 4px 4px 0;
    height: calc(100% - 0px);
    padding: 0 20px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.wy-search-form .search-button:hover {
    background-color: #2563eb;
}

.wy-search-form .search-button:active {
    background-color: #1d4ed8;
}    