@import url('common.css');
@import url('header.css');
@import url('footer.css');

/*项目样式*/
.content_map{
	width:100%;
	height:60vw;
	border-radius:5px;
	border:1px #f1f1f1 solid;
}
.content_map .anchorBL{display:none;}
.content_map .BMap_Marker{
	animation:myfirst 0.5s infinite;
	-webkit-animation:myfirst 0.5s infinite;
}
@keyframes myfirst
{
0% {margin-top:0;}
50% {margin-top:-6px;}
100% {margin-top:0;}
}
@-webkit-keyframes myfirst
{
0% {margin-top:0;}
50% {margin-top:-6px;}
100% {margin-top:0;}
}

