.mapbox {
    display: none;
}

        @media(min-width: 777px){
        .mapbox {
            display: block;
            width: 100%;
            padding-top: 30px;
            height: 880px;
            overflow: hidden;
        }
        }
        .mapsetion {
            width: 100%;
            height: 666px;
            overflow: hidden;
            position: relative;
        }

        .svgbox {
            width: 1440px;
            margin: 0 auto;
            padding: 0 96px;
            position: relative;
            z-index: 10;
            height: 100%;
            box-sizing: border-box;
        }

        .info-panel {
            width: 30%;
            height: 100%;
            background: linear-gradient(150deg, #0a0f3ce6 0%, #7d4b277a 50%, #ffffff00 100%);
            border-radius: 12px;
            padding: 24px;
            color: white;
            display: flex;
            flex-direction: column;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
            position: absolute;
            top: 3%;
            opacity: 0.9;
            z-index: 1;
        }

        .info-panel h2 {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        .info-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            /* justify-content: center;
            align-items: center;
            text-align: center; */
        }

        .region-name {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .region-desc {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.9;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .region-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            width: 100%;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
        }

        .stat-label {
            font-size: 12px;
            opacity: 0.7;
            margin-bottom: 4px;
        }

        .stat-value {
            font-size: 18px;
            font-weight: bold;
        }

        .map-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            z-index: 12;
        }

        svg {
            max-width: 100%;
            max-height: 100%;
            height: auto;
        }

        svg .mappath {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        svg .mappath:hover {
            fill: rgba(102, 126, 234, 0.6) !important;
            filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.4));
        }

        .mappathActive {
            fill: rgba(102, 126, 234, 0.6) !important;
            filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.4));
        }

        .initial-hint {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-style: italic;
            height: 50%;
            /* color: #eab308; */
        }
        .initial-img{
            position: absolute;
            width: 88%;
            height: 39%;
            border: 1.6px #eab308db solid;
            padding: 5px;
            box-sizing: border-box;
            margin-top: 28px;
            /* margin-left: 7%; */
            border-radius: 10px;
            overflow: hidden;
        }
        .initial-img > img{
            width: 100%;
            border-radius: 10px;
            height: 100%;
        }
        .infochange {
            font-size: 28px;
        }

        .infochangelogo {
            padding: 3px 10px;
            border-radius: 4px;
            background: linear-gradient(135deg, #b91c1c, #eab308);
            font-size: 11px;
            font-weight: 400;
            color: #fff;
            margin-left: 10px;
        }

        @keyframes fadeInScale {
    from {
        opacity: .2;
    }
    to {
        opacity: 1;
    }
}
        @keyframes fadeOutScale {
    from {
        opacity: 1;
    }
    to {
        opacity: .4;
    }
}
.text-animate {
    animation: fadeInScale 1.5s ease ;
}
.text-animate2{
    animation: fadeOutScale 1s ease;
}
#cityInfo{
                /* 多行截断核心样式 */
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;  /* 限制显示3行，超出显示省略号 */
            overflow: hidden;
            text-overflow: ellipsis;
            
            /* 首行缩进两格（以字体大小为单位，2em 缩进两个汉字） */
            text-indent: 2em;
}