.translate-btn {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  border: 1px solid #ec6161;
  color: #ec6161;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
  margin: 15px 0 0 4%;
  padding: 0 12px;
}
.translating {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  background: url(//s.thsi.cn/webprivate/scnews/newPage/translateing.gif) center center no-repeat;
  background-size: 100%;
}
.loading-box{
  position: fixed;
  left: 0;
  top: 50%;
  width: 100%;
  height: 20px;
  text-align: center;
  margin-top: -10px;
}
.ball-beat{
  margin-top: 10px;
}
.ball-beat .ball-b{
  display: inline-block;
  background-color: #ccc;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear; 
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.ball-beat .ball-b:nth-child(2n-1) {
  -webkit-animation-delay: 0.35s !important;
  animation-delay: 0.35s !important; 
}
@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75); 
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); 
  } 
}

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75); 
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); 
  } 
}