@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap");
* {
  font-family: 微軟正黑體;
  letter-spacing: 1.5px; }

a {
  text-decoration: none;
  color: black; }

@keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translate(0, -5%); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }

@keyframes slide-fade1 {
  0% {
    transform: translate(-10%, 0);
    opacity: 0; }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }

@keyframes shakeleft {
  0% {
    opacity: 0.5;
    margin-left: -3%; }
  50% {
    margin-left: -5%;
    opacity: 1; }
  100% {
    opacity: 0.5;
    margin-left: -3%; } }

@keyframes shakeright {
  0% {
    transform: translate(0, 0); }
  50% {
    transform: translate(10%, 0); }
  100% {
    transform: translate(0, 0); } }

.fade-enter, .fade-leave-to {
  opacity: 0; }

.fade-enter-active, .fade-leave-active {
  transition: all 0.5s ease; }

.whiteFade-enter, .whiteFade-leave-to {
  opacity: 0; }

.whiteFade-enter-active {
  transition: all 1s ease; }

.rightIn-enter {
  transform: translateX(10%);
  opacity: 0; }

.rightIn-leave-to {
  opacity: 0; }

.rightIn-enter-active {
  transition: all 0.8s ease; }

.noEnterFade-enter, .noEnterFade-leave-to {
  opacity: 0; }

.noEnterFade-leave-active {
  transition: all 0.5s ease; }

.noLeaveFade-enter, .noLeaveFade-leave-to {
  opacity: 0; }

.noLeaveFade-enter-active {
  transition: all 0.5s ease; }

.loadingfade-leave-to {
  opacity: 0; }

.loadingfade-leave-active {
  transition: all 0.5s ease; }

@media all and (max-width: 610px) {
  img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important; } }

footer {
  width: 97.5%;
  margin-left: 1.25%;
  border-top: solid 1px Black;
  min-height: 100px;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  justify-content:flex-end;
  padding: 20px 0 20px 0;
 }
  footer .footerText {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
text-align:right; }
