Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
220 changes: 220 additions & 0 deletions css/indoor3D.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,224 @@

.floorsUI .selected{
background-color: #cccccc !important;
}

.shop-detail-panel {
position: fixed;
top: 50%;
right: 40px;
transform: translateY(-50%) translateX(120%);
width: 380px;
max-height: 85vh;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
backdrop-filter: blur(20px);
border-radius: 20px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.18);
overflow: hidden;
z-index: 1000;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.shop-detail-panel.active {
transform: translateY(-50%) translateX(0);
}

.panel-header {
padding: 20px 24px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
position: relative;
}

.close-btn {
position: absolute;
top: 16px;
right: 20px;
font-size: 28px;
color: rgba(255, 255, 255, 0.9);
cursor: pointer;
transition: all 0.3s ease;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
}

.close-btn:hover {
background: rgba(255, 255, 255, 0.25);
color: #ffffff;
transform: rotate(90deg);
}

.panel-content {
padding: 32px 28px;
overflow-y: auto;
max-height: calc(85vh - 80px);
}

.shop-logo {
text-align: center;
margin-bottom: 24px;
}

.logo-placeholder {
width: 90px;
height: 90px;
margin: 0 auto;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 42px;
box-shadow: 0 10px 30px -5px rgba(102, 126, 234, 0.4);
}

.shop-name {
font-family: 'Noto Serif SC', serif;
font-size: 26px;
font-weight: 700;
text-align: center;
color: #1a202c;
margin: 0 0 16px 0;
letter-spacing: 2px;
}

.shop-rating {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 24px;
}

.stars {
color: #fbbf24;
font-size: 18px;
letter-spacing: 2px;
}

.rating-value {
font-size: 18px;
font-weight: 600;
color: #f59e0b;
font-family: 'Noto Serif SC', serif;
}

.shop-category {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border-radius: 12px;
margin-bottom: 20px;
border-left: 4px solid #0ea5e9;
}

.category-label {
font-size: 14px;
font-weight: 600;
color: #0369a1;
text-transform: uppercase;
letter-spacing: 1px;
}

.category-value {
font-size: 14px;
color: #0c4a6e;
font-weight: 500;
}

.shop-brief {
font-size: 15px;
line-height: 1.8;
color: #4b5563;
padding: 20px;
background: #ffffff;
border-radius: 12px;
margin-bottom: 20px;
border: 1px solid #e5e7eb;
text-indent: 2em;
}

.shop-hours {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
border-radius: 12px;
margin-bottom: 28px;
}

.hours-icon {
font-size: 20px;
}

.hours-text {
font-size: 14px;
font-weight: 600;
color: #92400e;
}

.panel-actions {
display: flex;
gap: 14px;
}

.btn {
flex: 1;
padding: 14px 24px;
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Noto Sans SC', sans-serif;
letter-spacing: 1px;
}

.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
box-shadow: 0 10px 20px -5px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 15px 30px -5px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
background: #f3f4f6;
color: #4b5563;
border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
background: #e5e7eb;
transform: translateY(-2px);
}

.panel-content::-webkit-scrollbar {
width: 6px;
}

.panel-content::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 3px;
}

.panel-content::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 3px;
}

.panel-content::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}
Loading