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

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

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;
}

/* 初始化结束 */
body {
    background: url(../images/m_map_bg.jpg) no-repeat center center/cover;
}

.back-index {
    position: absolute;
    z-index: 99;
    right: 5px;
    top: 5px;
    width: 72px;
    font: 400 12px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #bd1c06;
    border-radius: 5px;
}

.icon {
    position: absolute;
    z-index: 99;
    left: 5px;
    top: 5px;
    padding: 0 5px;
    font: 400 12px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #bd1c06;
    border-radius: 5px;
}

.icon i {
    display: none;
}

.map {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 1;
    width: 100%;
    margin-top: -180px;
}



/* 提示自定义 */
.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 {
    display: none;
    position: absolute;
    z-index: 50;
    left: 5%;
    top: 80px;
    width: 90%;
    height: 80%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #999;
}

.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) {
    body {
        min-height: 900px;
        background-image: url(../images/map_bg.jpg);
    }

    .icon {
        left: 5%;
        top: 5%;
        padding: 20px 0 0;
        font: 400 24px/30px '微软雅黑';
        color: #bd1c06;
        text-align: center;
        background: none;
    }

    .icon i {
        display: block;
    }

    .back-index {
        right: 5%;
        top: 5%;
        width: 110px;
        font: 400 12px/40px '微软雅黑';
    }


    .map {
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        width: 800px;
        height: 800px;
        padding: 130px 0 0 20px;
        margin: -400px 0 0 -400px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
    }

    #map-list {
        display: none;
        position: absolute;
        z-index: 50;
        left: 15%;
        top: 10%;
        width: 70%;
        height: 80%;
        background: rgba(255, 255, 255, 1);
        border: 1px solid #999;
    }

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


}