Archived
65 lines
969 B
CSS
65 lines
969 B
CSS
.container {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
background: #fff;
|
|
border: 1px solid #e5e7eb;
|
|
border-top: none;
|
|
border-radius: 0 0 10px 10px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
|
max-height: 320px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.infoText {
|
|
padding: 12px 16px;
|
|
color: #9ca3af;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.suggestionItem {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 16px;
|
|
cursor: pointer;
|
|
border-bottom: 1px solid #f3f4f6;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.suggestionItem:hover {
|
|
background: #f9fafb;
|
|
}
|
|
|
|
.coverImage {
|
|
width: 32px;
|
|
height: 48px;
|
|
object-fit: cover;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.coverPlaceholder {
|
|
font-size: 20px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.bookInfo {
|
|
min-width: 0;
|
|
}
|
|
|
|
.bookTitle {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.bookAuthor {
|
|
font-size: 12px;
|
|
color: #6b7280;
|
|
margin-top: 2px;
|
|
} |