* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    height: 100%;
   
}

body{
         background: url(../images/map.jpg) no-repeat center bottom fixed/cover;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

/*æ»šåŠ¨æ¡ äº§å“è¯¦æƒ…*/
#map-list ul::-webkit-scrollbar {
    width: 8px;
    background-color: #633f00;
    border-radius: 10px;
}

/*å®šä¹‰æ»šåŠ¨æ¡è½¨é“ å†…é˜´å½±+åœ†è§’*/
#map-list ul::-webkit-scrollbar-track {
    background: #633f00;
    border-radius: 10px;
}

/*å®šä¹‰æ»‘å— å†…é˜´å½±+åœ†è§’*/
#map-list ul::-webkit-scrollbar-thumb {
    background-color: #ddb266;
    border-radius: 10px;
}

#map-list ul::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
}

/* åˆå§‹åŒ–ç»“æŸ */
.back-index {
    position: fixed;
    z-index: 99;
    left: 5px;
    top: 5px;
    width: 72px;
    font: 400 14px/30px 'å¾®è½¯é›…é»‘';
    color: #000;
    text-align: center;
    background: #fff;
    border: 1px solid #999;
    border-radius: 5px;
}

.map-all {
    position: fixed;
    z-index: 99;
    right: 5px;
    top: 5px;
    width: 72px;
    font: 400 14px/30px 'å¾®è½¯é›…é»‘';
    color: #000;
    text-align: center;
    background: #fff;
    border: 1px solid #999;
    border-radius: 5px;
}

.map {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: auto;
    padding-top: 80px;

}

/* æç¤ºè‡ªå®šä¹‰ */
.stateTip,
#StateTip {
    display: none;
    position: absolute;
    z-index: 5;
    padding: 2px 5px;
    font-size: 12px;
    color: #333;
    text-align: center;
    background: #fff;
    border: 2px solid #2385B1;
    border-radius: 4px;

}

.mapInfo i.active {
    background: #E27F21;
}

/* é»‘è‰²å±‚ */
.bg {
    display: none;
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}



/* ç‚¹å‡»åŽæ˜¾ç¤ºçš„å†…å®¹ */
#map-list li{
    display: none;
}
#map-list li:last-child{
    display: block;
}

.clsoe {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -18px;
    top: -18px;
    width: 36px;
    height: 36px;
    font: 400 12px/20px 'å¾®è½¯é›…é»‘';
    color: #000;
    background: #fff;
    border: 1px solid #999;
    border-radius: 50%;
    cursor: pointer;
}

#map-list ul {
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow-y: auto;
}


.li-title {
    margin: 0 0 10px;
    padding: 0 0 10px;
    font: bold 18px/30px 'å¾®è½¯é›…é»‘';
    color: #000;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.li-con {
    font: 400 14px/24px 'å¾®è½¯é›…é»‘';
    color: #000;
}

@media (min-width: 1200px) {
    .map {
        display: flex;
        justify-content: space-between;
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        width: 1200px;
        padding-top: 0;
        transform: translate3d(-50%,-50%,0);
    }
    .map-left{
        width: 800px;
    }

    .map-right{
        width: 400px;
        padding: 20px;
        background: #aad5ff82;
    }

    #map-list ul {
        padding: 10px 30px;
    }


}