.widget_search .search-form {
    position: relative;
    margin-bottom: 15px;
}

.widget_search .search-form-inner {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.widget_search .search-form-inner:hover {
    border-color: #007bff;
}

.widget_search .search-input {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background-color: transparent;
}

.widget_search .search-input::placeholder {
    color: #999;
}

.widget_search .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    padding: 0;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.widget_search .search-btn:hover {
    background-color: #0056b3;
}

.widget_search .search-btn i {
    font-size: 16px;
}

/* 搜索结果页面的搜索框样式 */
.search-results-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.search-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.search-info {
    font-size: 14px;
    color: #666;
}

.search-info strong {
    color: #007bff;
}

.no-results {
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 16px;
}

.no-results p {
    margin-bottom: 10px;
}

.no-results a {
    color: #007bff;
    text-decoration: none;
}

.no-results a:hover {
    text-decoration: underline;
}