/*通用定义*/
@import "all.css";
@import "animate.css";
/*动画*/
.tiaodong {
  z-index: 1;
  display: block;
  -webkit-animation: tiaodong 1s linear infinite;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes tiaodong {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.95, 0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(0.95, 0.95);
  }
}
.updown {
  z-index: 1;
  display: block;
  -webkit-animation: updown 2s linear infinite;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes updown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}
/*自定义CSS*/
.scnr {
  width: 96%;
  color: #bcbcbc;
  height: 210px;
  font-size: 24px;
  line-height: 35px;
  border: 0px;
  outline: none;
}
.scnr.xz {
  width: 96%;
  color: #bcbcbc;
  height: 210px;
  font-size: 24px;
  line-height: 35px;
  border: 0px;
  outline: none;
  text-indent: 60px;
  background-image: url("../Images/yuehui/sc1_03.png");
  background-repeat: no-repeat;
  background-position: 10px 0px;
}