/* 展馆页面专用样式 */

/* 展馆概览 */
.venue-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, #f8f9fa 100%);
}

.overview-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: column;
}

.overview-content h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.overview-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.venue-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.overview-image {
    max-width: 1200px;
}
.overview-image img{
    width: 100%;
}




.image-content {
    position: relative;
    z-index: 1;
}

.image-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.image-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* 展位分布图 */
.venue-map-section {
    padding: 30px 0;
}

.venue-map-section h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.venue-map-section > .container > p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--border-color);
}
.map-container img{
    width: 100%;
}

.exhibition-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.hall {
    background: var(--background-secondary);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.hall:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.hall-a {
    grid-column: 1 / 3;
    border-color: #e8b4cb;
    background: linear-gradient(135deg, #fdf2f8, #f9f1f7);
}

.hall-b {
    border-color: #a8c8bc;
    background: linear-gradient(135deg, #f0f9ff, #ecfdf5);
}

.hall-c {
    border-color: #d4b5e8;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.hall-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.hall-header h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 500;
}

.hall-area {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.hall-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.zone {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.zone h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.zone p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
}

.booth-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booth-row {
    display: flex;
    gap: 8px;
}

.booth {
    flex: 1;
    background: var(--background-accent);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

.booth:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.public-areas {
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.public-area {
    background: linear-gradient(135deg, var(--accent-color), #e8b4cb);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.public-area:hover {
    transform: translateY(-2px);
}

.map-legend {
    background: var(--background-secondary);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.map-legend h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.hall-a-color {
    background: #e8b4cb;
}

.hall-b-color {
    background: #a8c8bc;
}

.hall-c-color {
    background: #d4b5e8;
}

.public-color {
    background: var(--accent-color);
}

.legend-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 场馆设施 */
.venue-facilities {
    padding: 80px 0;
    background: var(--background-secondary);
}

.venue-facilities h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.facility-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.facility-card ul {
    list-style: none;
    padding: 0;
}

.facility-card li {
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--background-secondary);
    font-size: 14px;
}

.facility-card li:last-child {
    border-bottom: none;
}

.facility-card li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* 交通指南 */
.transportation-guide {
    padding: 30px 0;
}

.transportation-guide h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.transport-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.transport-section {
    margin-bottom: 40px;
}

.transport-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.route-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease;
}

.route-item:hover {
    transform: translateX(5px);
}

.route-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.route-item p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.route-time {
    background: var(--background-accent);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.public-transport {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-option {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.transport-option h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.transport-option p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 14px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--background-accent), #f0f4f8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.map-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.map-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.map-info p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.map-info strong {
    color: var(--text-primary);
}

.map-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* 周边配套 */
.nearby-services {
    padding: 80px 0;
    background: var(--background-secondary);
}

.nearby-services h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.services-tabs {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.tab-buttons {
    display: flex;
    background: var(--background-secondary);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.tab-content {
    padding: 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--background-secondary);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-light);
    background: white;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.service-rating {
    margin-bottom: 10px;
    font-size: 14px;
}

.service-info p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    margin-left: 15px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .overview-layout,
    .transport-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exhibition-map {
        grid-template-columns: 1fr;
    }
    
    .hall-a {
        grid-column: 1;
    }
    
    .public-areas {
        grid-column: 1;
    }
    
    .venue-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .venue-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hall-content {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 50%;
        min-width: 120px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-price {
        text-align: left;
        margin-left: 0;
    }
    
    .map-actions {
        flex-direction: column;
    }
    .venue-image-placeholder {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .venue-overview,
    .venue-facilities,
    .transportation-guide,
    .nearby-services {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 25px;
        margin: 0 -10px;
    }
    
    .hall {
        padding: 20px;
    }
    
    .booth {
        font-size: 10px;
        padding: 6px 2px;
    }
    
    .public-areas {
        gap: 10px;
    }
    
    .public-area {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .facility-card,
    .route-item,
    .transport-option {
        padding: 20px;
    }
}