section#map {
    max-width: unset;
    width: 100%;
    background-color: #0B2538;
    overflow: hidden;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section#map #myChart {
    width: 50vw;
    height: 760px
}

div.d1 {
    width: 100%;
}

div.map-dialog {
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

div.map-box{
    display: none;
    width: 460px;
    color: white;
    padding: 20px;
    background-color: rgba(24, 48, 69, 0.7);
}

div.map-box.active{
    display: block;
}

div.map-box h3 {
    font-size: 18px;
    text-align: center;
}
div.map-box_content {
    max-height: 460px;
}
div.map-box_content img{
    display: block;
    margin: 10px 0;
}

div.map-box_content ul li img {
    width: 14px;
    margin-right: 4px;
}

div.map-box_content p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.8;
    text-indent: 4ch;
}

.d2 {
    width: 100vw;
    height: 220px;
    padding: 40px 100px;
    background-color: #0a2030e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.d2 .arrow-left{
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    margin-right: 20px;
}

.d2 .arrow-right {
    margin-left: 20px;
}

.d2 .thumbs {
    width: 100%;
}

.d2 .swiper-slide-item {
    position: relative;
    overflow: hidden;
}

.d2 .swiper-slide-active .swiper-slide-item {
    border: 2px solid  var(--primary-color);
}

.d2 .swiper-slide-active .swiper-slide-item p {
    background-color: var(--primary-color);
}

.d2 .swiper-slide-item  img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.d2 .swiper-slide-item p {
    position: absolute;
    left: 50%;
    bottom: 0;
    font-size: 16px;
    text-align: center;
    transform: translateX(-50%);
    height: 30px;
    line-height: 30px;
    width: 100%;
    color: white;
    background-color: rgba(0, 0, 0, 0.7 );
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}


/* 宽度1200x */
@media (max-width:1400px) {
    .d2 {
        padding: 40px 30px;
    }

    .d2 .arrow-left svg, .d2 .arrow-right svg{
        width: 40px;
    }
}

/* 宽度1200x */
@media (max-width:1200px) {

    div.map-box {
        width: 400px;
    }

    section#map #myChart{
        height: 620px;
    }

    .d2 .arrow-left svg, .d2 .arrow-right svg{
        width: 36px;
    }

    .d2 .swiper-slide-item img {
        height: 120px;
    }

    .d2 .swiper-slide-item p {
        font-size: 14px;
    }
}

@media (max-width:992px) {
    div.map-box {
        width: 360px;
    }

    div.map-box h3 {
        font-size: 16px;
    }
}


@media (max-width:768px) {
    div.d1 {
        flex-direction: column;
    }

    section#map #myChart{
        width: 100vw;
        height: 520px;
    }

    div.map-dialog{
        width: 80%;
        margin: 0 auto;
    }
    div.map-box {
        width: 100%;
    }

    .d2 {
        height: 200px;
        padding: 20px;
    }

    .d2 .arrow-left svg, .d2 .arrow-right svg{
        width: 28px;
    }
}

@media (max-width: 576px) {
    section#map #myChart{
        width: 100vw;
        height: 420px;
    }

    div.map-dialog{
        width: 90%;
    }

    div.map-box {
        padding: 10px;
    }
}