﻿.live {
  position: relative;
  /* left: 40%; */
  /* width: 18px;
    height: 18px; */
}
.satellite .live span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  bottom: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: s-living 3s linear infinite;
  -webkit-animation: s-living 3s linear infinite;
  z-index: 50;
}
.satellitefast .live span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  bottom: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: s-living 1s linear infinite;
  -webkit-animation: s-living 1s linear infinite;
  z-index: 50;
}
.satelliteG .live span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  bottom: 4px;
  border: 1px solid green;
  border-radius: 50%;
  animation: s-livingG 3s linear infinite;
  -webkit-animation: s-livingG 3s linear infinite;
  z-index: 50;
}
.satellitefastG .live span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  bottom: 4px;
  border: 1px solid green;
  border-radius: 50%;
  animation: s-livingG 1s linear infinite;
  -webkit-animation: s-livingG 1s linear infinite;
  z-index: 50;
}
.satelliteR .live span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  bottom: 4px;
  border: 1px solid rgba(212,35,122, 1);
  border-radius: 50%;
  animation: s-livingR 3s linear infinite;
  -webkit-animation: s-livingR 3s linear infinite;
  z-index: 50;
}
.satellitefastR .live span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  bottom: 4px;
  border: 1px solid rgba(212,35,122, 1);
  border-radius: 50%;
  animation: s-livingR 1s linear infinite;
  -webkit-animation: s-livingR 1s linear infinite;
  z-index: 50;
}
.live .slow {
  animation-delay: 1.5s !important;
  -webkit-animation-delay: 1.5s !important;
}

.satellitefastR .live .img-theme2 {
  width: 50px;
  height: 50px;
}
.satelliteR .live .span-theme2 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 10px;
  bottom: 15px;
  border: 1px solid rgba(245, 108, 108, 1);
  border-radius: 50%;
  animation: s-livingR_theme2 3s linear infinite;
  -webkit-animation: s-livingR_theme2 3s linear infinite;
  z-index: 50;
}

.satellitefastR .live .span-theme2 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 10px;
  bottom: 15px;
  border: 1px solid rgba(245, 108, 108, 1);
  border-radius: 50%;
  animation: s-livingR_theme2 1s linear infinite;
  -webkit-animation: s-livingR_theme2 1s linear infinite;
  z-index: 50;
}

/*白色*/
@keyframes s-living {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.5);
    border-color: rgba(255, 255, 255, 0.9);
  }

  50% {
    transform: scale(2);
    border-color: rgba(255, 255, 255, 0.75);
  }

  75% {
    transform: scale(2.5);
    border-color: rgba(255, 255, 255, 0.5);
  }

  100% {
    transform: scale(3);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
/*绿色*/
@keyframes s-livingG {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.5);
    border-color: rgba(0, 128, 0, 0.9);
  }

  50% {
    transform: scale(2);
    border-color: rgba(0, 128, 0, 0.75);
  }

  75% {
    transform: scale(2.5);
    border-color: rgba(0, 128, 0, 0.5);
  }

  100% {
    transform: scale(3);
    border-color: rgba(0, 128, 0, 0.1);
  }
}
/*红色*/
@keyframes s-livingR {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.5);
    border-color: rgba(212,35,122, 0.9);
  }

  50% {
    transform: scale(2);
    border-color: rgba(212,35,122, 0.75);
  }

  75% {
    transform: scale(2.5);
    border-color: rgba(212,35,122, 0.5);
  }

  100% {
    transform: scale(3);
    border-color: rgba(212,35,122, 0.1);
  }
}

/*红色_theme2*/
@keyframes s-livingR_theme2 {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.5);
    border-color: rgba(245, 108, 108, 1);
  }

  50% {
    transform: scale(2);
    border-color: rgba(245, 108, 108, 1);
  }

  75% {
    transform: scale(2.5);
    border-color: rgba(245, 108, 108, 1);
  }

  100% {
    transform: scale(3);
    border-color: rgba(212, 35, 122, 0.1);
  }
}