/* 搜索结果页面样式 */
.search-results {
    margin-top: 20px;
}

.search-header {
    padding: 20px 0;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 15px;
    border-radius: 10px;
}

.search-title {
    font-size: 24px;
    /* margin-bottom: 10px; */
    color: #333;
    font-weight: bold;
}

.search-query {
    font-size: 16px;
    color: #666;
}

.search-query .keyword {
    font-weight: bold;
    color: var(--b2color, #dd3333);
    background-color: rgba(221, 51, 51, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    border-bottom: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-radius: 0 0 10px 10px;
}

.no-results p {
    margin-bottom: 10px;
    font-size: 16px;
}

.no-results .keyword {
    font-weight: bold;
    color: var(--b2color, #dd3333);
}

/* 高亮搜索关键词 */
.highlight {
    background-color: rgba(221, 51, 51, 0.1);
    color: var(--b2color, #dd3333);
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: bold;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .search-title {
        font-size: 20px;
    }

    .search-query {
        font-size: 14px;
    }

    .no-results {
        padding: 30px 15px;
    }
}