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

/* 搜索结果标题 */
.search-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.search-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

/* 搜索类型切换 */
.search-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.search-tabs .tab {
    padding: 10px 15px;
    margin-right: 10px;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.search-tabs .tab:hover {
    color: #ff6b6b;
}

.search-tabs .tab.active {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

/* 搜索结果内容 */
.search-content {
    margin-bottom: 30px;
}

/* 书籍列表 */
.books-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 作者列表 */
.authors-list {
    /*margin-top: 20px;*/
}

.author-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.author-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.author-name a {
    color: #333;
    text-decoration: none;
}

.author-name a:hover {
    color: #ff6b6b;
}

.author-stats {
    color: #666;
    font-size: 14px;
}

.author-stats span {
    margin-right: 15px;
}

/* 标签列表 */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag-item {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 4px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.tag-link {
    color: #333;
    text-decoration: none;
}

.tag-count {
    color: #999;
    font-size: 13px;
}

/* 书单列表 */
.booklists {
    margin-top: 20px;
}

.booklist-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.booklist-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.booklist-title a {
    color: #333;
    text-decoration: none;
}

.booklist-title a:hover {
    color: #ff6b6b;
}

.booklist-meta {
    color: #666;
    font-size: 14px;
}

.booklist-meta span {
    margin-right: 15px;
}

.booklist-desc {
    color: #666;
    margin-top: 8px;
    font-size: 14px;
}

/* 空结果提示 */
.empty-result {
    padding: 30px;
    text-align: center;

    border-radius: 4px;
    color: #666;
}

/* 分页样式 */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.page-btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}

.page-btn:hover {
    background: #f5f5f5;
}

.page-btn.active {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.page-info {
    display: inline-block;
    padding: 6px 12px;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .search-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .author-stats, .booklist-meta {
        flex-direction: column;
        gap: 5px;
    }
	.search-title {
    font-size: 16px;
    color: #333;
}
}

/* 搜索下拉提示框样式 */
.search-suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

