
/* Css Document */
.ai_icon *{box-sizing:border-box;}
.ai_icon{width:25%; position:fixed; right:0; bottom:0; z-index:1000002;}
.ai_icon img{width:100%;}
.ai_icon .robot_btn .icon{display:block; width:100%; padding-bottom:15px;
		animation-name:robot_zoomIn;
-webkit-animation-name:robot_zoomIn;   
}
.robot .robot-down .zoom{width:100%; height:auto; position:absolute; top:0; right:0; display:none;
    animation:changeSize 2s linear infinite;
}

.ai_icon .robot-down{width:25px; height:25px; position:fixed; bottom:5px; right:5px; z-index:1000003;}
.ai_icon .robot-down .out{width:100%; height:auto; position:absolute; right:0; cursor:pointer;}



/*======/animate/===============css3动画======================*/
@-webkit-keyframes scale_erji{
  from {-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);}
	
  50%{-webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);}
	
  to{-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);}
}
@keyframes scale_erji{
  from {-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);}
	
  50%{-webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);}
	
  to{-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);}
}

@keyframes changeSize {
    0%,
    100% {transform:scale(1);}
    50% {transform:scale(1.2);}
}
@-webkit-keyframes changeSize {
    0%,
    100% {transform: scale(1);}
    50% {transform: scale(1.2);}
}
@-moz-keyframes changeSize {
    0%,
    100% {transform: scale(1);}
    50% {transform: scale(1.2);}
}
@-o-keyframes changeSize {
    0%,
    100% {transform: scale(1);}
    50% {transform: scale(1.2);}
}



@media (print), (prefers-reduced-motion) {
  .fadeInUp,
  .scale_big{
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}



