/*loading*/
.loding-box{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.snake-box{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.spinner-snake{
    width: 58px;
    height: 58px;
    border: 4px solid rgba(0, 0, 0, 0);
    border-top-color: #e0e0e0;
    border-left-color: #e0e0e0;
    border-bottom-color:  #e0e0e0;
    border-radius: 50%;
    -webkit-animation: spinner-rotate .8s infinite linear;
    animation: spinner-rotate .8s infinite linear;
}
@-webkit-keyframes spinner-rotate {
	0% {
	    -webkit-transform: rotate(0deg);
	            transform: rotate(0deg);
	}
	100% {
	    -webkit-transform: rotate(360deg);
	            transform: rotate(360deg);
	}
}
@keyframes spinner-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.lbs_top{
	padding:0 10px;
	font-size: 12px;
	height: 40px;
	line-height: 40px;
	color:#666666;
	background: #fff;
}
.box_show{
	box-shadow: 0 4px 8px 0 rgba(0,17,31,0.06);
}
.lbs_top .mui-icon{
	font-size: 18px;
	color: #2492e5;
}
.reset_location{
	padding:3px 7px;
	font-size: 12px;
	background: #fff;
	border-radius: 30px;
	margin-top:8px;
}
.lbs_img{
	width:100%;
	display: block;
}
.map_wrap{
	background: #fff;
	width:100%;
	height: 200px;
	padding:5px;
}
#map{
	height: 200px;
}
.lbs_store_wrap{
	padding:10px 5px;
}
.custom_entry{
	width:100%;
	position: relative;
}
.custom_entry_img{
	width:100%;
}
.custom_entry_tit{
	position: absolute;
	width:100%;
	height: 33px;
	background: rgba(0,0,0,.6);
	font-size: 14px;
	color: #fff !important;
	line-height: 33px;
	bottom:0;
	left:0;
	margin:0;
	padding-left:20px;
}
.show_city_picker{
	width:100%;
	height:50px;
	font-size: 14px;
	background: #fff;
	margin-top:10px;
	line-height: 50px;
	padding-left:6px;
}
.show_city_picker .arrow{
	color: #2693E6;
	margin-top:14px;
	margin-right: 10px;
}
.lbs_search{
	width:100%;
	margin-top:10px;
	height: 50px;
	display: flex;
	background: #fff;
}
.lbs_search .lbs_search_input{
	flex: 1;
	border:none !important;
	margin-bottom: 0 !important;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	padding-left: 6px;
}
.search_btn{
	width:60px;
	height: 50px;
	margin-bottom: 0;
	text-align: center;
	border:none;
}
.search_btn .mui-icon-search{
	color:#2693E6;
	margin-top: 6px;
	margin-left: 10px;
}
/*门店列表*/
.lbs_list_wrap{
	list-style: none;
	margin:0;
	padding:0;
	padding-bottom: 20px;
}
.lbs_list_wrap li{
	background: #fff;
	margin-top: 10px;
	padding:2px 5px;
}
.store_tit{
	padding-top: 10px;
	font-size: 15px;
	color: #333;
}
.store_address{
	font-size: 12px;
	color: #666666;
	padding-top: 7px;
}
.label_list{
	font-size: 12px;
}
.label_list span{
	width:62px;
	height:22px;
	border: 1px solid #2693E6;
	display: inline-block;
	background: #fff;
	text-align: center;
	color: #2693E6;
	margin-right: 5px;
	margin-top:5px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.label_list span:first-child{
	margin-left: 0;
}
.store_msg{
	display: flex;
	font-size: 12px;
	color: #666;
	height: 32px;
	line-height: 32px;
}
.store_msg p{
	flex: 1;
	color: #666;
}
.adress{
	text-align: right;
}
.adress span{
	color: #999;
}
.adress .mui-icon{
	position: relative;
	top:2px;
}
/*没有门店提示*/
.hid{
	display: none;
}
.lbs_list_tip{
	color:#999;
	font-size: 12px;
	text-align: center;
	height: 100px;
	line-height:50px;
}
