.search-container {
    margin-top: 20px;
}

.search-header {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.search-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.search-count {
    font-size: 14px;
    color: #666;
}

.search-count strong {
    color: #4ecdc4;
    font-size: 18px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.search-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.search-link {
    display: flex;
    text-decoration: none;
    color: #333;
}

.search-image {
    position: relative;
    width: 200px;
    height: 120px;
    flex-shrink: 0;
}

.search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-item:hover .search-overlay {
    opacity: 1;
}

.search-overlay img {
    width: 30px;
    height: 30px;
}

.search-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.no-results {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.no-results p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-image {
        width: 150px;
        height: 100px;
    }
    
    .search-info {
        padding: 15px;
    }
    
    .search-info h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-link {
        flex-direction: column;
    }
    
    .search-image {
        width: 100%;
        height: 180px;
    }
    
    .no-results {
        padding: 40px 20px;
    }
}
