@charset "utf-8";
*{
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p,button,img,button,select,iframe{
  text-decoration: none;
  list-style: none;
  text-decoration: none;
  padding:0;
  margin:0;
  border:0;
}
img,input,button,select,textarea,fieldset,iframe{
  vertical-align:middle;*vertical-align:middle;
  font-family: '微软雅黑'!important;
}
.left{
  float: left;
}
.right{
  float: right;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
input[type="number"]{
  -moz-appearance:textfield;
}
.inputwarning{
  color: #e4393c;
  font-size: 12px;
  position: absolute;
  left: 85px;
  bottom: -19px;
  display: none;
}

input::-webkit-input-placeholder {
  color: #888;
}
input[type="radio"] + label::before {
  content: "\a0"; /*不换行空格*/
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  width: 0.7em;
  height: 0.7em;
  margin-right: .4em;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  text-indent: .75em;
  line-height: 1;
  margin-left: 15px;
  cursor: pointer;
}
input[type="radio"]:checked + label::before {
  background-color: #003C92;
  background-clip: content-box;
  padding: .12em;
  border: 1px solid #003C92;
  cursor: pointer;
}
input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
input[type="checkbox"] + label::before {
  content: "\a0";  /*不换行空格*/
  display: inline-block;
  vertical-align: .2em;
  width: 1em;
  height: 1em;
  margin-right: .2em;
  border-radius: .2em;
  background-color: silver;
  text-indent: .15em;
  line-height: .65;  /*行高不加单位，子元素将继承数字乘以自身字体尺寸而非父元素行高*/
  cursor: pointer;
}
input[type="checkbox"]:checked + label::before {
  content: "\2713";
  background-color: #003C92;
  color: #fff;
}
input[type="checkbox"]{
  position: absolute;
  clip: rect(0, 0, 0, 0);
}


.clearfix{
  clear: both;
}
.wrap{
  width: 1100px;
  margin: 0 auto;
}
.transition{
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.textoverflow{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



@keyframes fade-in-left {
  0% {opacity: 0;left: -300px;}/*初始状态 透明度为0*/
  100% {opacity: 1;left: 0;}/*结束状态 透明度为1*/
}
@-webkit-keyframes fade-in-left {/*针对webkit内核*/
  0% {opacity: 0;left: -300px;}/*初始状态 透明度为0*/
  100% {opacity: 1;left: 0;}/*结束状态 透明度为1*/
}
@keyframes fade-in-right {
  0% {opacity: 0;right: -300px;}/*初始状态 透明度为0*/
  100% {opacity: 1;right: 0;}/*结束状态 透明度为1*/
}
@-webkit-keyframes fade-in-right {/*针对webkit内核*/
  0% {opacity: 0;right: -300px;}/*初始状态 透明度为0*/
  100% {opacity: 1;right: 0;}/*结束状态 透明度为1*/
}
.wrapperleft {
  animation: fade-in-left;/*动画名称*/
  -webkit-animation: fade-in-left;
  animation-duration: 1s;/*动画持续时间*/
  -webkit-animation:fade-in-left 1s;/*针对webkit内核*/
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.wrapperright {
  animation: fade-in-right;/*动画名称*/
  animation-duration: 1s;/*动画持续时间*/
  -webkit-animation:fade-in-right 1s;/*针对webkit内核*/
  -webkit-animation-fill-mode: forwards;
}

#object_four{
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;

}

@-webkit-keyframes animate {


  50% {

    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }



}

@keyframes animate {

  50% {

    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }

}





