/* 搜索框样式 */
.search-form {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.search-form form {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px;
    transition: all 0.3s ease;
}

.search-form input {
    border: none;
    outline: none;
    padding: 8px 12px;
    width: 200px;
    font-size: 14px;
}

.search-form button {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
}

.search-form button:hover {
    color: #ff6b6b;
}

.navto-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    color: #333;
}

.navto-search:hover {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .search-form {
        position: static;
        transform: none;
        margin-top: 10px;
        width: 100%;
    }

    .search-form form {
        width: 100%;
    }

    .navto-search {
        position: static;
        transform: none;
        float: right;
        margin-top: 10px;
    }
}

/* 搜索结果页面样式 */
.search-title {
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.search-result-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.no-result {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.no-result i.fa-search {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 20px;
    display: block;
}

.no-result-text {
    font-size: 18px;
    color: #495057;
    margin-bottom: 15px;
}

.search-keyword {
    color: #007bff;
    font-weight: 600;
}

.no-result-suggest {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 15px;
}

.no-result-tips {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.no-result-tips li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background-color: #fff;
    border-left: 3px solid #007bff;
    border-radius: 0 4px 4px 0;
    font-size: 15px;
    color: #495057;
    display: flex;
    align-items: center;
}

.no-result-tips li i {
    color: #007bff;
    margin-right: 10px;
}
