/* 
* @Author: anchen
* @Date:   2021-05-07 16:14:59
* @Last Modified by:   anchen
* @Last Modified time: 2021-05-13 10:08:33
*/

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body.mapbg{
    background: url('../images/mapbg.jpg') no-repeat;
    background-size: 100% 100%;
}
.logo {
    position: fixed;
    left: 5%;
    top: 10%;
    width: 10%;
    z-index: 10;
}
.logo img{
    width: 100%;
}
.map {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.typebox{
    position: fixed;
    top: 50%;
    left: 6%;
    width: 90px;
    z-index: 999;
}
.typebox li{
    width: 70px;
    height: 70px;
    background: url(../images/mapicon1.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 18px;
}
.typebox li.on,
.typebox li:hover{
    background: url(../images/mapicon1h.png) no-repeat;
    background-size: 100% 100%;
    color: #045987;
    transition: all 0.3s;
    cursor: pointer;
}

.shade{
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left:0;
    z-index: 1011;
    display: none;
}
.popbox{
    position: absolute;
    z-index: 1012;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 1rem;
    overflow: hidden;
}
.popbox .content{
    width: 100%;
    height: 100%;
    background: #fff;
}
.popbox .banner{
    position: relative;
    height: 14rem;
}
.popbox .banner .swiper-container{
    height: 14rem;
}
.popbox .banner .swiper-slide img{
    width: 100%;
    height: 100%;
}
.popbox .banner ul{
    position: absolute;
    right: 0.6rem;
    bottom: -2rem;
    z-index: 11;
}
.popbox .banner ul li{
    float: left;
    width: 4rem;
    height: 4rem;
}
.popbox .banner ul li a img{
    width: 100%;
}
.popbox .innerbox{
    padding: 20px;
    position: absolute;
    top: 14rem;
    left: 0;
    bottom: 0;
    right: 0;
}
.popbox .innerbox h3{
    font-size: 18px;
    font-weight: bold;
}
.popbox .innerbox h5{
    color: #999;
    font-size: 14px;
    line-height: 22px;
    margin: 8px 0 15px;
    padding: 0 0 0 20px;
    background: url(../icon/icon-addressmap.png) no-repeat left 3px;
    background-size: 14px 14px;
}
.popbox .innerbox ul{
    margin: 0.8rem 0 0;
    padding: 0.5rem 0 0;
    border-top: solid 1px #eee;
    text-align: center;
}
.popbox .innerbox ul li{
    display: inline-block;
    width: 32%;
    text-align: center;
}
.popbox .innerbox ul li img{
    width: 1.7rem;
    height: 1.7rem;
}
.popbox .innerbox ul li p{
    color: #444;
}
.popbox .innerbox .overflowbox{
    position: relative;
    height: 76%;
    overflow: hidden;
    overflow-y: auto;
}

.layui-layer-setwin{
    z-index: 9999;
}
.layui-layer{
    border-radius: 10px!important;
}


@media only screen and (max-width: 1440px){
    .logo{
        width: 8%;
    }
    .popbox .banner .swiper-container,
    .popbox .banner{
        height: 10rem;
    }
    .popbox .innerbox{
        top: 10rem;
    }
    .typebox{
        width: 60px;
    }
    .typebox li{
        width: 50px;
        height: 50px;
        margin: 0 0 15px 0;
        font-size: 14px;
        line-height: 50px;
    }
}