
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.5);
    opacity: 0.8;
    filter: alpha(opacity=80);
  }

  20% {
    -webkit-transform: scaleY(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    opacity: 0.8;
    filter: alpha(opacity=80);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}



.iTalent-header .spinner {
  margin:15px auto;
  width: 52px;
  height: 30px;
  font-size: 10px;
  display:none\9;
}
.iTalent-header .spinner .rect1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.iTalent-header .spinner .rect2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.iTalent-header .spinner .rect3 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.iTalent-header .spinner .rect4 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.iTalent-header .spinner  div {
  background-color: #1d6ebb;
  height: 100%;
  width: 5px;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-animation: stretchdelay 1.0s infinite ease-in-out;
  animation: stretchdelay 1.0s infinite ease-in-out;
}
.iTalent-header .text-loading {
  font-family: verdana, "Microsoft YaHei", "SimHei", "SimSun";
  text-align: center;
  font-size: 14px;
  line-height: 45px;
  color: #509fe5;
  display:none;
  display:block\9;
}