


/*index.css*/
#fullPage-nav li, .fullPage-slidesNav li{width: 13px;height: 13px;margin: 19px;}
#fullPage-nav span, .fullPage-slidesNav span{width: 13px;height: 13px;border: 0}
#fullPage-nav li .active span, .fullPage-slidesNav .active span{background:#0C3;transition: 0.5s all}
#fullPage-nav li span, .fullPage-slidesNav span{background:#fff;transition: 0.5s all}


/*隐藏滚动条*/
::-webkit-scrollbar{width:0px}


/*css3动画*/


@-webkit-keyframes circle1 {
  	0%{ transform:rotate(0deg); opacity: 0;filter: alpha(opacity=0)}
	100%{ transform:rotate(360deg); opacity: 1;filter: alpha(opacity=100) }
}

@keyframes circle1 {
  	0%{ transform:rotate(0deg); opacity: 0;filter: alpha(opacity=0)}
	100%{ transform:rotate(360deg); opacity: 1;filter: alpha(opacity=100) }
}

.circle {
  -webkit-animation-name: circle;
  animation-name: circle;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}


.bounceInLeft{animation: bounceInLeft 2s;}
.bounceInRight{animation: bounceInRight 2s;}
.bounceIn{animation: bounceIn 2s;}
.fadeInDown{animation: fadeInDown 2s;}
.flipInX{animation: flipInX 2s;}
.fadeInUp{animation: fadeInUp 2s;}
.fadeIn{animation: fadeIn 2s;}


