/* 产业园详情页样式 */

.park-detail-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
}

/* 面包屑导航 */
.breadcrumb-nav {
    padding: 0 0 20px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #667eea;
}

.breadcrumb-nav span {
    margin: 0 8px;
}

.breadcrumb-nav .current {
    color: #333;
    font-weight: 500;
}

/* 标题和收藏 */
.park-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.park-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.btn-favorite {
    padding: 10px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-favorite:hover {
    border-color: #667eea;
    color: #667eea;
}

.icon-star::before {
    content: "☆";
    font-size: 18px;
}

.btn-favorite.active .icon-star::before {
    content: "★";
    color: #ffd700;
}

/* 主内容区 */
.detail-main {
    display: flex;
    gap: 20px;
}

.detail-left {
    flex: 1;
    min-width: 0;
}

.detail-right {
    width: 380px;
    flex-shrink: 0;
}

/* 图片展示 */
.image-showcase {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #667eea;
}

.thumbnail:hover {
    border-color: #764ba2;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tab标签页 */
.info-tabs {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-headers {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
}

.tab-header {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.tab-header:hover {
    color: #667eea;
    background: #f5f5f5;
}

.tab-header.active {
    color: #667eea;
    background: #fff;
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.badge.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
}

.tab-contents {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-section {
    margin-bottom: 30px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.info-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 10px 0;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 15px 10px;
    font-size: 15px;
    color: #666;
}

.info-table td.label {
    width: 150px;
    color: #999;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* 右侧信息卡片 */
.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

/* 价格信息 */
.price-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.price-item {
    text-align: center;
}

.price-item .label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ff4757;
    margin-bottom: 5px;
}

.price-item .value {
    display: block;
    font-size: 14px;
    color: #999;
}

/* 基本信息 */
.basic-info {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    padding: 12px 0;
    font-size: 14px;
}

.info-row .label {
    width: 100px;
    color: #999;
    flex-shrink: 0;
}

.info-row .value {
    flex: 1;
    color: #666;
    word-break: break-all;
}

/* 园区配套 */
.facilities {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.facilities .label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.facilities .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.facilities .tag {
    padding: 6px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
}

/* 联系人信息 */
.contact-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-avatar .avatar {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.contact-info .contact-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info .contact-desc {
    font-size: 14px;
    color: #999;
}

/* 操作按钮 */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-call,
.btn-consult {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
}

.btn-call {
    background: #fff;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-call:hover {
    background: #667eea;
    color: #fff;
}

.icon-phone::before {
    content: "📞";
}

.btn-consult {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    flex-direction: column;
    gap: 2px;
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.consult-tip {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

/* 浏览量 */
.view-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.icon-eye::before {
    content: "👁";
    font-size: 16px;
}

/* Toast提示框 */
.toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
    max-width: 80%;
    text-align: center;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    top: 100px;
}

.toast.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.toast.error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.toast.info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 模态对话框 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.btn-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: color 0.3s;
}

.btn-close:hover {
    color: #333;
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .detail-main {
        flex-direction: column;
    }

    .detail-right {
        width: 100%;
    }

    .info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .park-detail-container {
        padding: 10px;
    }

    .park-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .park-title {
        font-size: 22px;
    }

    .main-image {
        height: 250px;
    }

    .tab-headers {
        overflow-x: auto;
    }

    .tab-header {
        padding: 15px;
        font-size: 14px;
        white-space: nowrap;
    }

    .tab-contents {
        padding: 20px;
    }

    .price-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .breadcrumb-nav {
        font-size: 12px;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* 产业园信息移动端每行一个字段 */
    .park-info-responsive td.label-second,
    .park-info-responsive td.value-second {
        display: none;
    }

    .park-info-responsive td.label {
        width: 120px;
    }
}

/* 轮播样式 */
.carousel {
    position: relative;
}

.carousel-inner {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.carousel-item {
    min-height: 400px;
    display: none;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item video,
.carousel-item img {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}

/* 轮播控制按钮 */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* 缩略图导航 */
.carousel-indicators-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail-item {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
}

.thumbnail-item.active {
    border-color: #667eea;
}

.thumbnail-item:hover {
    border-color: #764ba2;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-item {
        min-height: 250px;
    }
    
    .carousel-item.active {
        display: flex;
    }
    
    .carousel-item video,
    .carousel-item img {
        max-height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .thumbnail-item {
        width: 80px;
        height: 60px;
    }
}

/* 图片/视频全屏浏览器 Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 70vh;
    position: relative;
    overflow: hidden;
    touch-action: none;
}

.lightbox-content {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform-origin: center center;
    cursor: grab;
    /* 移除了 animation: zoomIn，改用滑动动画 */
}

.lightbox-content:active {
    cursor: grabbing;
}

/* 保留zoomIn动画以备其他地方使用 */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 导航按钮 */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* 关闭按钮 */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* 底部信息栏 */
.lightbox-info {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    max-width: 90%;
}

.lightbox-caption {
    color: #fff;
    font-size: 16px;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lightbox-counter {
    color: #fff;
    font-size: 14px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    white-space: nowrap;
}

.lightbox-type {
    color: #fff;
    font-size: 14px;
}

.media-type-badge {
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 500;
}

.media-type-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.media-type-video {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* 缩略图导航 */
.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.lightbox-thumb {
    position: relative;
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lightbox-thumb:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.lightbox-thumb.active {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.lightbox-thumb img,
.lightbox-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-type-label {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    pointer-events: none;
}

.thumb-type-video {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

@media (max-width: 768px) {
    .lightbox-content-wrapper {
        max-width: 95%;
        max-height: 60vh;
    }

    .lightbox-content {
        max-height: 60vh;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-info {
        bottom: 90px;
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        max-width: 300px;
    }
    
    .lightbox-counter,
    .lightbox-type {
        font-size: 12px;
    }
    
    .lightbox-thumbnails {
        max-width: 95%;
        gap: 8px;
    }
    
    .lightbox-thumb {
        width: 60px;
        height: 45px;
    }
}

/* ========== 周边配套样式 ========== */
.nearby-facilities {
    padding: 0;
}

/* 地图容器 */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#nearbyMap {
    width: 100%;
    height: 100%;
}

/* 悬浮标签容器 */
.facility-tabs-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.facility-tab {
    padding: 8px 20px;
    background: transparent;
    border: none;
    border-radius: 18px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.facility-tab:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.facility-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.facility-list {
    margin-top: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.facility-loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

.facility-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.facility-item:hover {
    background: #f8f9ff;
}

.facility-item.active {
    background: #f0f2ff;
    border-left: 3px solid #667eea;
}

.facility-item:last-child {
    border-bottom: none;
}

.facility-info {
    flex: 1;
}

.facility-info h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.facility-address {
    margin: 0;
    font-size: 13px;
    color: #999;
    line-height: 1.4;
}

.facility-distance {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    min-width: 80px;
    justify-content: flex-end;
}

.facility-distance svg {
    color: #667eea;
}

/* 高德地图样式覆盖 */
.amap-logo,
.amap-copyright {
    display: none !important;
}

/* 去掉标记label的边框 */
.amap-marker-label {
    border: none !important;
    border-radius: 6px;
}

.amap-marker-label > div {
    box-shadow:none !important;
}

/* 响应式 */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }

    .facility-tabs-overlay {
        top: 15px;
        padding: 10px 12px;
        gap: 8px;
        max-width: 90%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .facility-tabs-overlay::-webkit-scrollbar {
        display: none;
    }

    .facility-tab {
        padding: 6px 15px;
        font-size: 13px;
    }

    .facility-list {
        max-height: 400px;
    }

    .facility-item {
        padding: 12px;
    }

    .facility-info h4 {
        font-size: 14px;
    }

    .facility-address {
        font-size: 12px;
    }

    .facility-distance {
        font-size: 13px;
        min-width: 70px;
    }
}
