/* 全球业务响应式布局 */
.world-map-section {
    position: relative;
    padding: 2rem;
    margin: 0 auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.world-map-section .map-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.world-map-section img {
    width: 100%;
    height: auto;
    display: block;
}

.world-map-section ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.world-map-section li {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.world-map-section li h3 {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.world-map-section li i {
    font-size: 1.55rem;
    color: white;
    transition: color 0.3s ease;
}

.world-map-section li:hover i {
    color: #1677FF;
}

.world-map-section .location-popup {
    position: absolute;
    top: 100%;
    z-index: 50;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin-top: 0.5rem;
    display: none;
}

.world-map-section li:hover .location-popup {
    display: block;
}

.world-map-section .location-popup .popup-content {
    display: flex;
    padding: 1rem;
}

.world-map-section .location-popup .popup-image {
    width: 50%;
}

.world-map-section .location-popup .popup-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.25rem;
}

.world-map-section .location-popup .popup-info {
    width: 50%;
    padding-left: 1rem;
    text-align: left;
}

.world-map-section .location-popup h4 {
    color: #1677FF;
    font-weight: bold;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.world-map-section .location-popup p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
}

.world-map-section .statistics {
    padding-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.world-map-section .statistics-item {
    text-align: center;
    flex: 1;
}

.world-map-section .statistics-item h3 {
    color: #1677FF;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.world-map-section .statistics-item p {
    color: #333;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式布局 */
@media screen and (max-width: 1200px) {
    .world-map-section {
        padding: 1.5rem;
    }
    
    .world-map-section .location-popup {
        width: 350px;
    }
    
    .world-map-section .statistics-item h3 {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .world-map-section .statistics-item p {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .world-map-section li h3 {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .world-map-section li i {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media screen and (max-width: 992px) {
    .world-map-section {
        padding: 1rem;
    }
    
    .world-map-section .location-popup {
        width: 300px;
    }
    
    .world-map-section .statistics-item h3 {
        transform: scale(0.8);
        transform-origin: center;
    }
    
    .world-map-section .statistics-item p {
        transform: scale(0.8);
        transform-origin: center;
    }
    
    .world-map-section li h3 {
        transform: scale(0.8);
        transform-origin: center;
    }
    
    .world-map-section li i {
        transform: scale(0.8);
        transform-origin: center;
    }
}

@media screen and (max-width: 768px) {
    .world-map-section {
        padding: 0.75rem;
    }
    
    .world-map-section .location-popup {
        display: none !important;
    }
    
    .world-map-section li {
        cursor: default;
    }
    
    .world-map-section li:hover i {
        color: white;
    }
    
    .world-map-section .statistics {
        flex-wrap: wrap;
    }
    
    .world-map-section .statistics-item {
        width: 50%;
        margin-bottom: 1rem;
    }
    
    .world-map-section .statistics-item h3 {
        transform: scale(0.7);
        transform-origin: center;
    }
    
    .world-map-section .statistics-item p {
        transform: scale(0.7);
        transform-origin: center;
    }
    
    .world-map-section li h3 {
        transform: scale(0.7);
        transform-origin: center;
    }
    
    .world-map-section li i {
        transform: scale(0.7);
        transform-origin: center;
    }
}

@media screen and (max-width: 576px) {
    .world-map-section {
        padding: 0.5rem;
    }
    
    .world-map-section .location-popup {
        width: 90%;
        max-width: 300px;
        max-height: 70vh;
    }
    
    .world-map-section li h3 {
        transform: scale(0.6);
        transform-origin: center;
    }
    
    .world-map-section li i {
        transform: scale(0.6);
        transform-origin: center;
    }
    
    .world-map-section .statistics-item {
        width: 100%;
    }
    
    .world-map-section .statistics-item h3 {
        transform: scale(0.6);
        transform-origin: center;
    }
    
    .world-map-section .statistics-item p {
        transform: scale(0.6);
        transform-origin: center;
    }
    
    .world-map-section .statistics {
        gap: 0.5rem;
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .world-map-section li .location-popup {
        display: none;
    }
    
    .world-map-section li:active .location-popup,
    .world-map-section li.active .location-popup {
        display: block;
    }
}

/* 添加遮罩层 */
.world-map-section .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.world-map-section .overlay.active {
    display: block;
} 