@CHARSET "UTF-8";
/*广州*/
.waves_guangzhou {
  position: absolute;
  top: 620px;
   left: 740px;
  background:orange;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  cursor:pointer;
}
.waves_guangzhou:hover{
	background:red;
}
.waves_guangzhou:before {
  position: absolute;
  background: orange;
  margin-left: -2px;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  animation: wave-animate 3s infinite ease-out;
}
.waves_guangzhou:after {
  position: absolute;
  background: white;
margin-left: -2px;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  opacity: 0;
  animation: wave-animate 3s 1.5s infinite ease-out;
}
@keyframes wave-animate {
  0% {
    transform: scale(0);
    opacity: 1;
    transform-origin: center;
  }
  100% {
    transform: scale(3);
    opacity: 0;
    transform-origin: center;
  }
}
@keyframes color-loop {
  0% {
    background: #2CAB5B;
  }
  25% {
    background: #FABC03;
  }
  50% {
    background: #ED4B40;
  }
  75% {
    background: #4286F3;
  }
  100% {
    background: #2CAB5B;
  }
}

/*展开*/
div.map .waves_guangzhou_show{
	position:relative;
	top:590px;
	left:765px;
	display:none;
	width:350px;
	height:80px;
	background:#214A9E;
	border-radius:10px;
}
div.map .waves_guangzhou_show dt{
	width:120px;
	float:left;
	border-radius:10px 0 0 10px;
}
div.map .waves_guangzhou_show dt img{
	width:100px;
	height:66px;
	margin:7px 0 0 12px;
}
div.map .waves_guangzhou_show dd{
	margin-top:12px;
	margin-right:7px;
	width:220px;
	line-height:170%;
	float:right;
	font-size:17px;
}
div.map .waves_guangzhou_show dd a{
	color:#eee;
}

/*地图、客户分布CSS 结束*/
