@CHARSET "UTF-8";
/*李高翔--闪烁光环*/
.waves19 {
  position: absolute;
  top: 460px;
   left: 680px;
  background: orange;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  cursor:pointer;
}
.waves19:hover{
	background:red;
}
.waves19: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;
}
.waves19: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 .waves19_show{
	position:relative;
	top:430px;
	left:705px;
	display:none;
	width:350px;
	height:80px;
	background:#214A9E;
	border-radius:10px;
	z-index:5;
}
div.map .waves19_show dt{
	width:85px;
	float:left;
	border-radius:5px 0 0 5px;
}
div.map .waves19_show dt img{
	width:60px;
	height:66px;
	margin:7px 0 0 12px;
}
div.map .waves19_show dd{
	margin-top:12px;
	margin-right:7px;
	width:255px;
	line-height:170%;
	float:right;
	font-size:15px;
	color:#ddd;
}
