body {
    padding: 0;
    margin: 0;
}

#map {
    width: 100%;
    height: 700px;
    margin: 0 auto;
    border: 1px solid #E3EAEF;
    box-sizing: border-box;
    padding: 10px;
    border-bottom: none;
}

.marker-detail {
    width: 100%;
    z-index: 12000;
}

.map-wrapper {
    padding: 50px 0;
}

.zeren-tabs {
    box-sizing: border-box;
    padding: 0;
    background-color: #fff;
    border: 1px solid #E3EAEF;
    overflow: hidden;
    position: relative;
}

.zeren-tabs>ul {
    padding: 0;
    margin: 0;
    background-color: #E3EAEF;
    box-sizing: border-box;
}

.zeren-tabs>ul>li {
    display: inline-block;
    padding: 25px 30px;
    color: var(--black);
    font-weight: 500;
    cursor: pointer;
    border-right: 1px solid #fff;
    border-top: 0;
    box-sizing: border-box;
    border-bottom: 0;
    transition: 300ms;
    font-size:14px;
}

.zeren-tabs>ul>li.active {
    background-color: #fff;
    color: var(--black);
}

.zeren-tabs>ul>li:hover {
    background-color: #fff;
    color: var(--black);
    border-right-color: #E3EAEF;
}

.zeren-tab-content {
    background-color: #fff;
    padding: 15px;
}

.zeren-tab-content::after {
    display: block;
    content: "";
    clear: both;
}

.country-item {
    padding: 10px;
    border: 1px dashed #E3EAEF;
    border-radius: 4px;
    width: calc(50% - 10px);
    margin: 5px;
    float: left;
    box-sizing: border-box;
}

.country-item:not(:last-child) {
    margin-bottom: 10px;
}

.country-item-title {
    color: var(--main-red);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    line-height: 60px;
    height: 60px;
}

.country-item-title a {
    font-size: 12;
    color: #919da7;
    font-weight: 400;
}

.country-item-title img {
    height: 30px;
    align-content: center;
    margin: auto 10px auto 0;
}

.country-item-cities {
    background-color: #FAFAFA;
    font-weight: 600;
}

.country-item-cities {
    padding: 5px 10px;
    margin: 0;
}

.country-item-cities li {
    color: var(--black);
    font-weight: normal;
    box-sizing: border-box;
    margin-right: 0;
    padding: 0;
    padding-right: 5px;
    border-color: #FAFAFA;
    list-style: none;
    display: inline-block;
    font-size:14px;
}

.country-item-cities li:not(:last-child)::after {
    content: ",";
}

@media (max-width: 1300px) {}

@media (max-width: 900px) {
    #map {
        height: 400px;
        width: 100%;
    }

    #map text {
        font-size: 10px !important;
        width: 100px !important;
        word-break: break-all !important;
    }

    .map-wrapper {
        flex-wrap: wrap;
    }

    .country-item-title img {
        height: 28px;
    }

    .country-item {
        width: calc(100% - 10px);
    }

    .zeren-tabs>ul {
        max-width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        white-space: nowrap;
        display: inline-flex;
        margin-bottom: 15px;
    }
}