
body {
    background: #f5f5f5;
}

#container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 900px;
    height: auto;
    background: #fff;
    /*box-shadow: #d6d6d6 0 0 15px;*/
}

main {
    display: block;
}

    main > section {
        width: 900px;
        overflow: hidden;
        margin: 0 auto;
    }

.same-btn {
    text-decoration: none;
    display: inline-block;
    border: #2285ee solid 1px;
    width: 90px;
    height: 30px;
    line-height: 30px;
    margin: 0 6px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: .15s;
    color: #2285ee;
    font-weight: 400;
}

    .same-btn:hover {
        background: #2285ee;
        color: #fff;
    }

.map-wrapper {
    background: #fff;
    border: #e0e0e0 solid 1px;
    margin-top: 40px;
}

    .map-wrapper > p:first-child {
        display: block;
        height: 50px;
        line-height: 50px;
        border-bottom: #e0e0e0 solid 1px;
        text-align: center;
        padding: 15px 0;
        margin-bottom: 40px;
        font-size: 24px;
        font-weight: 700;
        background: #fafafa;
    }

.map-box {
    width: 900px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.multiple-button {
    text-align: center;
}

    .multiple-button button {
        width: 230px;
        height: 36px;
    }

    .multiple-button p {
        margin: 18px 0;
        font-size: 18px;
        font-weight: bold;
    }

#hover-callback,
#click-callback {
    text-align: center;
    display: block;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
}

.map-box {
    width: 100%;
    height: 400px;
    border: 0px solid red;
    position: relative;
    z-index: 1;
    overflow: hidden; /* 限制地图不溢出容器 */
}

.jsmap-name-text {
    fill: #111 !important;
    font-size: 12px !important;
    font-weight: 500;
    pointer-events: none;
}

.city-box {
    /*margin-top: 10px;
    padding: 10px;*/
    border: 0px solid #ccc;
    min-height:30px;
}

.city-item {
    display: inline-block;
    padding: 4px 8px;
    margin: 3px;
    background: #f0f7ff;
    border-radius: 4px;
    cursor: pointer;
}

    .city-item:hover {
        background: #409eff;
        color: #fff;
    }
/* 弹窗遮罩 */
.mask-layer {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    overflow-y: auto;
}

.map-popup {  
    position: relative;
    width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    overflow: hidden; 
}

.map-popup h1 {
    margin: 0;
    font-size: 28px;
    line-height: 26px;
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

    .popup-close:hover {
        color: #f00;
    }

.city-select-text {
    cursor: pointer;
    color: #0066cc;
    text-decoration: underline;
    display: inline-block;
    min-width: 180px;
}

body.lock-scroll {
    overflow: hidden;
}
