* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media screen and (min-width:1200px) {

    .map_container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
        position: relative;
    }

    /* 地图容器样式 */
    #map-container {
        flex: 1;
        min-width: 300px;
        height: auto;
        background: #fff;
        /* border-radius: 8px; */
        width: 782px;
    }

    .map_text{
        width: auto;
        padding: 0 10px;
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 0;
    }
    .map_text h2{
        font-size: 20px;
        color: #C22B25;
        font-weight: bold;
    }

    .map_img{
        position: absolute;
        bottom: 0;
        left: 41.7%;
    }
    .map_img img{
        height: 140px;
    }

    .info-window {
        color: #333;
        padding: 10px;
        min-width: 200px;
    }

    .info-window h4 {
        margin: 0 0 5px;
        color: #333;
        font-size: 16px;
    }

    .info-window p {
        margin: 5px 0;
        font-size: 14px;
    }

    .info-window .data-item {
        display: flex;
        justify-content: space-between;
        margin: 3px 0;
    }

    .info-window .data-label {
        color: #666;
    }

    .info-window .data-value {
        font-weight: bold;
        color: #c48A2B;
    }

    /* 表格容器样式 */
    #table-container {
        width: 380px;
        background: #fff;
        padding: 15px;
        /* border-radius: 8px; */
        max-height: 700px;
        overflow-y: auto;
    }

    h3 {
        color: #333;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .summary {
        margin-bottom: 15px;
        line-height: 1.6;
        color: #555;
        display: flex;
        justify-content: space-around;
    }

    .summary-item {
        text-align: center;
    }

    .summary-item-number {
        color: #c48A2B;
        font-size: 18px;
        font-weight: bold;
    }

    .table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
        font-size: 14px;
    }

    .table th,
    .table td {
        padding: 8px 10px;
        text-align: center;
        border: 1px solid #ddd;
        font-size: 12px;
    }

    .table th {
        background-color: #f2f2f2;
        font-weight: bold;
        /* position: sticky; */
        top: 0;
        /* font-size: 14px; */
    }

    .table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table tr:hover {
        background-color: #e6f7ff;
        cursor: pointer;
    }

    .table-footer {
        display: none;
    }

    /* 高亮样式 */
    .highlight-marker {
        animation: pulse 1.5s infinite;
    }

    /* 添加CSS will-change属性提示浏览器优化 */
    #map-container, #table-container {
    will-change: transform, opacity;
    }

    
}




@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}