@charset "utf-8";


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */


.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

/*輸送帶*/
.bgtop_r-play { -webkit-animation:bgtop_r-play 70s linear infinite; animation:bgtop_r-play 70s linear infinite ;}
		@-webkit-keyframes bgtop_r-play {
		  0%   { background-position:0 0;}
		  100% { background-position:2000px 0;}
		}
		@keyframes bgtop_r-play {
		  0%   { background-position:0 0;}
		  100% { background-position:2000px 0;}
		}






/*飄*/
.float { 
	-webkit-animation: float 1.5s ease-in-out infinite alternate;
	animation: float 1.5s ease-in-out infinite alternate;
}
	@keyframes float {
		from { transform: translate(0,0);}
		to { transform: translate(0,6px);} /*下浮高度*/
	}
.float2 { 
	-webkit-animation: float2 1.5s ease-in-out infinite alternate;
	animation: float2 1.5s ease-in-out infinite alternate;
}
	@keyframes float2 {
		from { transform: translate(0,0);}
		to { transform: translate(0,0.5vw);} /*下浮高度*/
	}

/*閃閃*/
.minbright-play { 
  -webkit-animation:minbright-play 1.7s infinite alternate; 
  animation:minbright-play 1.7s infinite alternate;
}
	@-webkit-keyframes minbright-play {
	  0% { 
		filter:brightness(65%);
	  } 
	  100% { 
		filter:brightness(130%);
	  }    
}
	@keyframes minbright-play {
	  0% { 
		filter:brightness(65%);
	  } 
	  100% { 
		filter:brightness(130%);
	  }
 }

/*轉轉-light*/	
.rotate-play { -webkit-animation:rotate-play 6s linear infinite ;
				        animation:rotate-play 7.5s linear infinite ;}
	@keyframes rotate-play {
	  0% { 
			transform: rotate(-8deg);
	  }
	  50% { 
			transform: rotate(8deg);
	  }
	  100% { 
			transform: rotate(-8deg);
	  }
	}

