.huirui-global-business{
    background: #F9FAFB;
    padding: 87px 0 120px 0;
}
.huirui-global-business .huirui-large-title{
    text-align: center;
}
.huirui-global-business .global-list{
    display: flex;
    background: #fff;
    border-radius: 15px;
    margin-top: 64px;
}
.global-list .global-left{
    width: calc(100% - 940px);
    padding: 50px;
}
.global-list .global-left .country-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 20px;
    margin-top: 37px;
}
.global-list .global-left .country-list .country-item{
    display: flex;
    gap: 10px;
    color: #666;
}
.global-list .global-right{
    width: 940px;
    padding: 20px;
    
}
.global-list .global-right .global-map{
    width: 100%;
    /* height: 100%; */
    position: relative;
    color: var(--primary-color);
}
.global-list .global-right img{
    width: 100%;
    height: 100%;
    /* aspect-ratio: 900/460; */
    object-fit: contain;
    border-radius: 15px;
}
.global-list .global-right .map-point{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    transform: translate(-50%);
    color: #000;
}

@media screen and (max-width: 1919px) {
    .global-list .global-left,
    .global-list .global-right{
        width: 50%;
    }
    .global-list .global-right .map-point{
        transform: translate(-50%) scale(0.8);
    }
}
@media screen and (max-width: 992px) {
    .huirui-global-business{
        padding: 50px 0;
    }
    .huirui-global-business .global-list{
        flex-direction: column;
    }
    .global-list .global-left,
    .global-list .global-right{
        width: 100%;
    }
    .global-list .global-left{
        padding: 20px;
    }
}