/*图标抖动*/
@keyframes jitter {
  from, to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
@-webkit-keyframes jitter {
  from, to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
/*水平线循环移动*/
@keyframes line{
  0% {
    right:100%;
  }
  50%{
    right:-50%;
  }
  100% {
    right:-100%;
  }
}

/*持续扩散*/
@keyframes widthScale1 {
  0% {
    bottom:0;
    left:0;
    width:100%;
    opacity:1;
  }
  100% {
    bottom:60px;
    left:-7.5%;
   width:115%;
    opacity:0;
  }

}
@keyframes widthScale2 {
  0% {
    bottom:0;
    left:0;
    width:100%;
    opacity:1;
  }
  100% {
    bottom:40px;
    left:-5%;
   width:110%;
    opacity:0;
  }

}
@keyframes widthScale3 {
  0% {
    width:100%;
    bottom:0;
    left:0;
    opacity:1;
  }
  100% {
    bottom:20px;
    left:-2.5%;
   width:105%;
    opacity:0;
  }
  
}
/*按钮缩放 Ripple Out*/
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
a.hvr-ripple-out {
  display: block;
  vertical-align: middle;
  transform: translateZ(0px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
  backface-visibility: hidden;
  position: relative;
  background: #0168b7;
  border-radius: 50px;
}
a.hvr-ripple-out::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  animation-duration: 1s;
  border-width: 6px;
  border-style: solid;
  border-color: #0168b7;
  border-image: initial;
  border-radius: 50px;
}
a.hvr-ripple-out:hover::before{
  animation-name: hvr-ripple-out;
}

@-webkit-keyframes hvr-ripple-out1 {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out1 {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
a.hvr-ripple-out1 {
  display: block;
  vertical-align: middle;
  transform: translateZ(0px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
  backface-visibility: hidden;
  position: relative;
  background: #de1d2e;
  border-radius: 50px;
}
a.hvr-ripple-out1::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  animation-duration: 1s;
  border-width: 6px;
  border-style: solid;
  border-color: #de1d2e;
  border-image: initial;
  border-radius: 50px;
}
a.hvr-ripple-out1:hover::before{
  animation-name: hvr-ripple-out1;
}