/* 搜索结果页面样式 */

/* 搜索结果标题样式 */
.search-result-header {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    direction: rtl;
}

.search-result-header h2 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

.search-result-header p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

#search-keyword {
    color: #007bff;
    font-weight: bold;
}

/* 没有搜索结果的样式 */
.no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    direction: rtl;
}

.no-results h3 {
    color: #333;
    margin-bottom: 1rem;
}

.no-results p {
    color: #666;
}

/* 高亮关键词样式 */
.highlight {
    background-color: #ffeb3b;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-result-header {
        padding: 1rem;
    }
    
    .search-result-header h2 {
        font-size: 1.25rem;
    }
    
    .no-results {
        padding: 2rem 1rem;
    }
}