@keyframes motionDot {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }

}
@keyframes motionDot_reverse {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }

}
@keyframes flash {
  from,to {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }

}
@keyframes motionArrow_right {
  from,to {
    left:0;
  }

  50% {
    left: 5px;
  }

}
@keyframes motionBtn {
  from {
    border-bottom: 5px solid #a32904;
    padding-top: 16px;
  }

  to {
    border-bottom: 2px solid #a32904;
    padding-top: 19px;
  }

}
@keyframes flowing {
  from,to {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }

}
@keyframes zooming {
  from {
    transform: scale(1);
    opacity: 1;
    transform-origin: center;
  }

  to {
    transform: scale(1.25);
    opacity: 0;
    transform-origin: center;
  }

}
/*小於1367時*/
@media screen and (max-width: 1367px){
	@keyframes motionBtn {
	  from {
	    border-bottom: 4px solid #a32904;
	    padding-top: 12px;
	  }

	  to {
	    border-bottom: 2px solid #a32904;
	    padding-top: 14px;
	  }

	}
}
