body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #031525;
}
#map {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.table-list {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.table-list.active {
    display: block;
}
.table-list .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);

}
.table-list .table-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #fff;
}
.table-wrap-title {
    line-height: 30px;
    padding: 0px 10px;
    border-bottom: 1px solid #eee;
    color: dodgerblue;
}
.table-wrap-content {
    height: calc(100% - 30px);
    width: 100%;
    background-color: #eee;
    overflow-y: auto;
}
.table-ul {
    padding: 5px;
}
.table-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    margin-bottom: 10px;
}
.item-header {
    display: flex;
    justify-content: space-between;
    height: 30px;
    align-items: center;
    padding: 0px 5px;
    border-bottom: 1px solid #eee;
}
.item-main {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    border-bottom: 1px solid #eee;
}
.item-main .item-wz {
    flex: 0 0 50%;
    display: flex;
    position: relative;
    padding-left: 10px;
    min-height: 30px ;
    align-items: center;
    margin-bottom: 5px

}
.item-main .item-wz::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: dodgerblue;
}
.item-footer {
    color: #666;
    padding: 5px;
}
.item-contact {
    display: flex;

}
.item-contact-name {
    margin-right: 10px;
}
.table-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;

}
.table-btn>div a {
    padding: 0 10px;
}
.table-return-btn {
    color: red;
    padding: 0 10px;
    
}
.table-more-btn a {
    color: dodgerblue;
}
.needs-map-title {
    position: fixed;
    left: 0;
    right: 0;
    top: 3%;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 600px;
    line-height: 40px;
    background-color: rgba(30, 144, 255, .4);
    color: #00ffff;
    text-align: center;
    font-size: 16px;
    border-radius: 20px;
    z-index: 50;
    border: 1px solid dodgerblue
}
.needs-type-box {
    position: fixed;
    left: 1%;
    top: 20%;
    width: 60px;
    z-index: 50;
}
.needs-type-box .type-item {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(102,102,102,.45);
    color: #eee;
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid #666;
}
.needs-type-box .type-item.active {
    color: #00ffff;
    background-color: rgba(30, 144, 255, .4);;
    border: 1px solid dodgerblue;
}
.needs-map-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 600px;
    line-height: 40px;
    background-color: rgba(30, 144, 255, .4);
    color: #fff;
    text-align: center;
    border-radius: 20px;
    border: 1px solid dodgerblue;
    display: flex;
    z-index: 50;
}
.needs-map-footer a {
    color: #fff;
    display: block;
}
.footer-item {
    flex: 1
}
.needs-map-right-nav {
    position: fixed;
    right: 1%;
    top: 20%;
    width: 60px;
    z-index: 50;
}
.right-nav-item {
    width: 60px;
    height: 60px;
}
.right-nav-item a {
    display: block;
    line-height: 60px;
    text-align: center;
    width: 100%;
    border: 1px solid dodgerblue;
    background-color: rgba(30, 144, 255, .4);
    color: #fff;
    font-size: 12px;
    border-radius: 50%;

}
.mask-module {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}
.mask-module img {
    -webkit-animation: xz 2s infinite;
    -moz-animation: xz 2s infinite;
    -o-animation: xz 2s infinite;
    animation: xz 2s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

}
@keyframes xz {
    100% {
        transform: rotate(360deg);
    }
}
.needs-map-search {
    position: fixed;
    top: 12%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    width: 80%;
    border: 1px solid #0657a6;
    background-color: rgba(30, 144, 255, .1);
    display: flex;
    height: 40px;
    align-items: center;
    border-radius: 20px;
    z-index: 50;
}
.needs-map-search input {
    line-height: 40px;
    flex: 1;
    padding: 0px 20px;
    outline: none;
    border: 0;
    background-color: transparent;
    color: #fff;


}
.needs-map-search .search-btn {
    flex: 0 0 60px;
    line-height: 40px;
    color: #00ffff;
    text-align: center;
}

@media (min-width: 768px) {
    .needs-type-box {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: 100%;
        max-width: 180px;
        justify-content: space-around;
    }
    .needs-type-box .type-item {
        flex: 0 0 60px;
        cursor: pointer;
    }
    .table-list {
        width: 100%;
        
    }
    
    .table-list .table-wrap {
        height: 100%;
        left: auto;
        right: 0;
        width: 400px;
    }
}