Создана страница - Документы
This commit is contained in:
parent
b252ae3430
commit
ed01ec28ed
9 changed files with 1839 additions and 16 deletions
217
frontend/src/components/documents/DocCard.astro
Normal file
217
frontend/src/components/documents/DocCard.astro
Normal file
|
|
@ -0,0 +1,217 @@
|
|||
---
|
||||
interface Props {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
fileSize: string;
|
||||
fileType: 'pdf' | 'docx' | 'xlsx' | 'zip';
|
||||
downloadUrl: string;
|
||||
category: string;
|
||||
}
|
||||
|
||||
const {
|
||||
id,
|
||||
title,
|
||||
description,
|
||||
fileSize,
|
||||
fileType,
|
||||
downloadUrl,
|
||||
category
|
||||
} = Astro.props as Props;
|
||||
|
||||
const fileTypeIcons: Record<string, string> = {
|
||||
pdf: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" fill="#ef4444" stroke="#dc2626" stroke-width="1.5"/>
|
||||
<path d="M14 2v6h6M9 13h6M9 17h6M9 9h2" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>`,
|
||||
docx: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" fill="#3b82f6" stroke="#2563eb" stroke-width="1.5"/>
|
||||
<path d="M14 2v6h6M9 13h6M9 17h4" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>`,
|
||||
xlsx: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" fill="#10b981" stroke="#059669" stroke-width="1.5"/>
|
||||
<path d="M14 2v6h6M10 12l4 4M14 12l-4 4" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>`,
|
||||
zip: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z" fill="#f59e0b" stroke="#d97706" stroke-width="1.5"/>
|
||||
<path d="M14 2v6h6M12 10v4M10 14h4M12 14v4" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>`
|
||||
};
|
||||
---
|
||||
|
||||
<article class="doc-card" data-category={category} data-doc-id={id}>
|
||||
<div class="doc-card-header">
|
||||
<div class="file-icon" set:html={fileTypeIcons[fileType]} />
|
||||
<div class="doc-info">
|
||||
<h3 class="doc-title">{title}</h3>
|
||||
<p class="doc-description">{description}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="doc-card-footer">
|
||||
<div class="doc-meta">
|
||||
<span class="doc-category">{category}</span>
|
||||
<span class="doc-type">{fileType.toUpperCase()}</span>
|
||||
<span class="doc-size">{fileSize}</span>
|
||||
</div>
|
||||
<a
|
||||
href={downloadUrl}
|
||||
class="download-btn"
|
||||
download
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 4v12m0 0l-4-4m4 4l4-4M4 18h16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
<span>Скачать</span>
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<style>
|
||||
.doc-card {
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 16px;
|
||||
padding: 1.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.25rem;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.doc-card:hover {
|
||||
border-color: rgba(234, 194, 110, 0.3);
|
||||
box-shadow: 0 0 30px rgba(234, 194, 110, 0.15);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
|
||||
.doc-card-header {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.file-icon {
|
||||
flex-shrink: 0;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 12px;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.file-icon svg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.doc-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.doc-title {
|
||||
color: #ffffff;
|
||||
font-size: 1.05rem;
|
||||
font-weight: 600;
|
||||
margin: 0 0 0.5rem 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.doc-description {
|
||||
color: #94a3b8;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.5;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.doc-card-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
.doc-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.doc-category {
|
||||
color: #eac26e;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 600;
|
||||
padding: 0.2rem 0.5rem;
|
||||
background: rgba(234, 194, 110, 0.1);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.doc-type {
|
||||
color: #94a3b8;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.doc-size {
|
||||
color: #64748b;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.download-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.625rem 1.25rem;
|
||||
background: linear-gradient(135deg, #eac26e 0%, #ce9f40 100%);
|
||||
color: #0f172a;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.download-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 20px rgba(234, 194, 110, 0.4);
|
||||
}
|
||||
|
||||
.download-btn svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.doc-card {
|
||||
padding: 1.25rem;
|
||||
}
|
||||
|
||||
.doc-card-header {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.doc-card-footer {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.download-btn {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.doc-meta {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
126
frontend/src/components/documents/DocCategories.astro
Normal file
126
frontend/src/components/documents/DocCategories.astro
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
---
|
||||
interface Props {
|
||||
categories: string[];
|
||||
activeCategory: string;
|
||||
showSearch?: boolean;
|
||||
}
|
||||
|
||||
const { categories, activeCategory, showSearch = true } = Astro.props as Props;
|
||||
---
|
||||
|
||||
<nav class="doc-categories">
|
||||
<div class="site-container">
|
||||
<div class="categories-inner animate-on-scroll" data-animation="fade-up">
|
||||
<div class="categories-list">
|
||||
{categories.map((category: string) => (
|
||||
<button
|
||||
class={`category-btn ${category === activeCategory ? 'active' : ''}`}
|
||||
data-category={category}
|
||||
>
|
||||
{category}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{showSearch && (
|
||||
<button class="search-icon-btn" id="open-search-btn" aria-label="Поиск документов">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<style>
|
||||
.doc-categories {
|
||||
padding: 2rem 0;
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
}
|
||||
|
||||
.categories-inner {
|
||||
max-width: var(--site-max-width, 1400px);
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.75rem;
|
||||
flex-wrap: wrap;
|
||||
padding: 0 1.5rem;
|
||||
}
|
||||
|
||||
.categories-list {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.category-btn {
|
||||
padding: 0.6rem 1.25rem;
|
||||
border: 2px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 2rem;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
color: #94a3b8;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.category-btn:hover {
|
||||
border-color: rgba(234, 194, 110, 0.3);
|
||||
color: #eac26e;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.category-btn.active {
|
||||
background: linear-gradient(135deg, #eac26e 0%, #ce9f40 100%);
|
||||
border-color: #eac26e;
|
||||
color: #0f172a;
|
||||
box-shadow: 0 4px 12px rgba(234, 194, 110, 0.3);
|
||||
}
|
||||
|
||||
.search-icon-btn {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 2px solid rgba(234, 194, 110, 0.3);
|
||||
color: #eac26e;
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
border-radius: 2rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.search-icon-btn:hover {
|
||||
background: rgba(234, 194, 110, 0.1);
|
||||
border-color: #eac26e;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(234, 194, 110, 0.3);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.category-btn {
|
||||
padding: 0.5rem 1rem;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
function initSearch() {
|
||||
const searchBtn = document.getElementById('open-search-btn');
|
||||
if (searchBtn) {
|
||||
searchBtn.addEventListener('click', () => {
|
||||
window.dispatchEvent(new CustomEvent('open-modal', { detail: 'search-modal' }));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', initSearch);
|
||||
document.addEventListener('astro:page-load', initSearch);
|
||||
</script>
|
||||
409
frontend/src/components/documents/SearchDocumentsModal.astro
Normal file
409
frontend/src/components/documents/SearchDocumentsModal.astro
Normal file
|
|
@ -0,0 +1,409 @@
|
|||
---
|
||||
import { documents } from '@data/documents';
|
||||
|
||||
const searchData = documents.map(doc => ({
|
||||
title: doc.title,
|
||||
description: doc.description,
|
||||
downloadUrl: doc.downloadUrl,
|
||||
category: doc.category,
|
||||
fileType: doc.fileType,
|
||||
fileSize: doc.fileSize,
|
||||
tags: doc.tags?.join(', ') || ''
|
||||
}));
|
||||
|
||||
const title = 'Поиск документов';
|
||||
const postsJson = JSON.stringify(searchData);
|
||||
---
|
||||
|
||||
<div id="search-modal" class="modal-overlay" aria-hidden="true">
|
||||
<div class="modal-container" role="dialog" aria-modal="true" aria-labelledby="search-modal-title">
|
||||
<button class="modal-close" aria-label="Закрыть" id="search-modal-close-btn">
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<div class="modal-content">
|
||||
<h2 id="search-modal-title" class="modal-title">{title}</h2>
|
||||
<p class="modal-description">
|
||||
Найдите нужный документ по названию, описанию или категории
|
||||
</p>
|
||||
|
||||
<div class="search-form">
|
||||
<div class="search-input-wrapper">
|
||||
<svg class="search-icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<input
|
||||
type="text"
|
||||
id="search-input"
|
||||
class="search-input"
|
||||
placeholder="Например: договор, доверенность, ДТП..."
|
||||
autocomplete="off"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Контейнер для динамических результатов -->
|
||||
<div class="search-results" id="search-results">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script define:vars={{ postsJson }}>
|
||||
(function() {
|
||||
const modal = document.getElementById('search-modal');
|
||||
const closeBtn = document.getElementById('search-modal-close-btn');
|
||||
const searchInput = document.getElementById('search-input');
|
||||
const resultsContainer = document.getElementById('search-results');
|
||||
const docs = JSON.parse(postsJson);
|
||||
|
||||
if (!modal || !searchInput || !resultsContainer) return;
|
||||
|
||||
function openModal() {
|
||||
modal.setAttribute('aria-hidden', 'false');
|
||||
modal.classList.add('active');
|
||||
document.body.style.overflow = 'hidden';
|
||||
setTimeout(() => searchInput.focus(), 200);
|
||||
}
|
||||
|
||||
function closeModal() {
|
||||
modal.classList.remove('active');
|
||||
modal.setAttribute('aria-hidden', 'true');
|
||||
document.body.style.overflow = '';
|
||||
searchInput.value = '';
|
||||
resultsContainer.innerHTML = '';
|
||||
}
|
||||
|
||||
function getFileTypeIcon(fileType) {
|
||||
const icons = {
|
||||
pdf: '📄',
|
||||
docx: '📝',
|
||||
xlsx: '📊',
|
||||
zip: '📦'
|
||||
};
|
||||
return icons[fileType] || '📄';
|
||||
}
|
||||
|
||||
function handleSearch(query) {
|
||||
const trimmed = query.trim().toLowerCase();
|
||||
|
||||
if (trimmed.length < 2) {
|
||||
resultsContainer.innerHTML = '';
|
||||
return;
|
||||
}
|
||||
|
||||
const filtered = docs.filter(doc =>
|
||||
doc.title.toLowerCase().includes(trimmed) ||
|
||||
doc.description.toLowerCase().includes(trimmed) ||
|
||||
doc.category.toLowerCase().includes(trimmed) ||
|
||||
doc.tags.toLowerCase().includes(trimmed)
|
||||
);
|
||||
|
||||
if (filtered.length === 0) {
|
||||
resultsContainer.innerHTML = `
|
||||
<div class="no-results">
|
||||
<svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1" style="margin-bottom: 1rem; opacity: 0.5;">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<p>По запросу <strong>"${query}"</strong> ничего не найдено</p>
|
||||
</div>`;
|
||||
return;
|
||||
}
|
||||
|
||||
resultsContainer.innerHTML = filtered.map(doc => `
|
||||
<a href="${doc.downloadUrl}" class="search-result-item" download target="_blank" rel="noopener noreferrer">
|
||||
<div class="result-header">
|
||||
<span class="result-icon">${getFileTypeIcon(doc.fileType)}</span>
|
||||
<h4 class="result-title">${doc.title}</h4>
|
||||
</div>
|
||||
<p class="result-description">${doc.description}</p>
|
||||
<div class="result-footer">
|
||||
<span class="result-meta">
|
||||
<span class="result-category">${doc.category}</span>
|
||||
<span class="result-type">${doc.fileType.toUpperCase()}</span>
|
||||
<span class="result-size">${doc.fileSize}</span>
|
||||
</span>
|
||||
<span class="result-arrow">
|
||||
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M12 4v12m0 0l-4-4m4 4l4-4M4 18h16"/>
|
||||
</svg>
|
||||
</span>
|
||||
</div>
|
||||
</a>
|
||||
`).join('');
|
||||
}
|
||||
|
||||
let timeout;
|
||||
searchInput.addEventListener('input', (e) => {
|
||||
clearTimeout(timeout);
|
||||
timeout = setTimeout(() => handleSearch(e.target.value), 200);
|
||||
});
|
||||
|
||||
window.addEventListener('open-modal', (e) => {
|
||||
console.log('open-modal event received:', e.detail);
|
||||
if (e.detail === 'search-modal') {
|
||||
console.log('Opening modal...');
|
||||
openModal();
|
||||
}
|
||||
});
|
||||
|
||||
closeBtn.addEventListener('click', closeModal);
|
||||
modal.addEventListener('click', (e) => {
|
||||
if (e.target === modal) closeModal();
|
||||
});
|
||||
document.addEventListener('keydown', (e) => {
|
||||
if (e.key === 'Escape' && modal.classList.contains('active')) closeModal();
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
|
||||
<style is:global>
|
||||
.modal-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(10, 25, 41, 0.85);
|
||||
backdrop-filter: blur(8px);
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
z-index: 9999;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
.modal-overlay.active { opacity: 1; visibility: visible; }
|
||||
|
||||
.modal-container {
|
||||
background: #ffffff;
|
||||
border-radius: 24px;
|
||||
width: 100%;
|
||||
max-width: 720px;
|
||||
max-height: 85vh;
|
||||
box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
|
||||
position: relative;
|
||||
transform: translateY(-20px);
|
||||
transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.modal-overlay.active .modal-container { transform: translateY(0); }
|
||||
|
||||
.modal-close {
|
||||
position: absolute;
|
||||
top: 1.25rem;
|
||||
right: 1.25rem;
|
||||
background: #f1f5f9;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #64748b;
|
||||
z-index: 10;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.modal-close:hover { background: #e2e8f0; color: #0f172a; transform: rotate(90deg); }
|
||||
|
||||
.modal-content {
|
||||
padding: 3rem 2.5rem 2rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
font-size: 1.85rem;
|
||||
font-weight: 800;
|
||||
color: #0f172a;
|
||||
margin: 0 0 0.5rem;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.modal-description { color: #64748b; margin-bottom: 2rem; font-size: 1.05rem; }
|
||||
|
||||
.search-input-wrapper { position: relative; margin-bottom: 2rem; }
|
||||
|
||||
.search-icon {
|
||||
position: absolute;
|
||||
left: 1.25rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #d4af37;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
width: 100%;
|
||||
padding: 1.1rem 1.1rem 1.1rem 3.75rem;
|
||||
border: 2px solid #e2e8f0;
|
||||
border-radius: 16px;
|
||||
font-size: 1.15rem;
|
||||
transition: all 0.3s ease;
|
||||
outline: none;
|
||||
background: #f8fafc;
|
||||
}
|
||||
|
||||
.search-input:focus {
|
||||
border-color: #d4af37;
|
||||
background: #fff;
|
||||
box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
|
||||
}
|
||||
|
||||
.search-results {
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
padding-right: 0.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.search-result-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
padding: 20px;
|
||||
border-radius: 12px;
|
||||
text-decoration: none;
|
||||
background: #ffffff;
|
||||
border: 1px solid #eef2f6;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.search-result-item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 4px;
|
||||
background: linear-gradient(180deg, #d4af37 0%, #f4d03f 100%);
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
border-radius: 4px 0 0 4px;
|
||||
}
|
||||
|
||||
.search-result-item:hover {
|
||||
border-color: #cbd5e1;
|
||||
transform: translateX(4px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.search-result-item:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.result-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.result-icon {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.result-title {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 700;
|
||||
color: #0f172a;
|
||||
margin: 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.result-description {
|
||||
font-size: 0.9rem;
|
||||
color: #64748b;
|
||||
margin: 0;
|
||||
line-height: 1.6;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
padding-right: 28px;
|
||||
}
|
||||
|
||||
.result-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.result-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.result-category {
|
||||
font-size: 0.75rem;
|
||||
color: #94a3b8;
|
||||
font-weight: 600;
|
||||
padding: 0.2rem 0.5rem;
|
||||
background: #f1f5f9;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.result-type {
|
||||
font-size: 0.7rem;
|
||||
color: #d4af37;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
padding: 0.2rem 0.4rem;
|
||||
background: rgba(212, 175, 55, 0.1);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.result-size {
|
||||
font-size: 0.8rem;
|
||||
color: #94a3b8;
|
||||
}
|
||||
|
||||
.result-arrow {
|
||||
color: #cbd5e1;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.search-result-item:hover .result-arrow {
|
||||
color: #d4af37;
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.no-results {
|
||||
padding: 4rem 1rem;
|
||||
text-align: center;
|
||||
color: #64748b;
|
||||
background: #f8fafc;
|
||||
border-radius: 20px;
|
||||
border: 2px dashed #e2e8f0;
|
||||
}
|
||||
|
||||
.search-results::-webkit-scrollbar { width: 6px; }
|
||||
.search-results::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.modal-content { padding: 2.5rem 1.5rem 1.5rem; }
|
||||
.modal-title { font-size: 1.5rem; }
|
||||
.search-result-item { padding: 16px; }
|
||||
.result-title { font-size: 1.05rem; }
|
||||
.result-description { padding-right: 0; -webkit-line-clamp: 1; }
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue