.search-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.search-header {
    margin-bottom: 20px;
}
.search-tabs {
    margin-bottom: 20px;
}
.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 10px 16px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f5f5f5;
}
.hot-search {
    margin-bottom: 20px;
}
.hot-search-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.hot-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.search-results {
    margin-top: 20px;
}
.result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.result-item:hover {
    background-color: #f9f9f9;
}
.result-info {
    flex-grow: 1;
}
.result-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.result-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}
.result-alias {
    font-size: 13px;
    color: #888;
    margin-bottom: 3px;
}
.result-follow-status {
    font-size: 12px;
    font-weight: 500;
}
.result-cover {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 4px;
}
