/* 搜索信息样式 */
.search-info {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.search-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.search-info .text-primary {
    font-weight: bold;
}

/* 关键字高亮样式 */
.highlight {
    color: #e67e22 !important;
    font-weight: bold !important;
    font-size: inherit !important; /* 继承父元素的字体大小 */
}

/* 空状态样式 */
.text-center.py-5 {
    color: #6c757d;
    font-size: 1rem;
}

/* 移动端搜索信息适配 */
@media (max-width: 768px) {
    .search-info {
        padding: 10px 0;
    }

    .search-info h5 {
        font-size: 1rem;
    }

    .text-center.py-5 {
        padding: 2rem 0 !important;
        font-size: 0.9rem;
    }
}