@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; }

.smallmenu {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  padding: 3px;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  z-index:99; }
  @media all and (max-width: 900px) {
    .smallmenu {
      width: 50px;
      height: 50px;
      padding: 10px 3px; } }
  @media all and (max-width: 610px) {
    .smallmenu {
      width: 40px;
      height: 40px;
      padding: 5px 2px; } }
  .smallmenu .smallmenuLine1 {
    width: 90%;
    height: 5px;
    border: solid 1px Black;
    box-sizing: border-box;
    border-top: solid 5px Black;
    transform-origin: 20% 200%;
    transition: 0.5s; }
    @media all and (max-width: 900px) {
      .smallmenu .smallmenuLine1 {
        border-top: solid 2px Black;
        width: 90%;
        height: 2px; } }
    @media all and (max-width: 610px) {
      .smallmenu .smallmenuLine1 {
        border-top: solid 2px Black;
        width: 90%;
        height: 2px; } }
    .smallmenu .smallmenuLine1.opened {
      transform: rotate(45deg);
      transition: 0.5s; }
  .smallmenu .smallmenuLine2 {
    width: 90%;
    height: 5px;
    box-sizing: border-box;
    border-top: solid 5px Black;
    transition: 0.5s; }
    @media all and (max-width: 900px) {
      .smallmenu .smallmenuLine2 {
        border-top: solid 3px Black;
        width: 90%;
        height: 3px; } }
    @media all and (max-width: 610px) {
      .smallmenu .smallmenuLine2 {
        border-top: solid 3px Black;
        width: 90%;
        height: 3px; } }
    .smallmenu .smallmenuLine2.opened {
      opacity: 0;
      transition: 0.5s; }
  .smallmenu .smallmenuLine3 {
    width: 90%;
    height: 5px;
    box-sizing: border-box;
    border-top: solid 5px Black;
    transition: 0.5s;
    transform-origin: 20% -30%; }
    @media all and (max-width: 900px) {
      .smallmenu .smallmenuLine3 {
        border-top: solid 3px Black;
        width: 90%;
        height: 3px; } }
    @media all and (max-width: 610px) {
      .smallmenu .smallmenuLine3 {
        border-top: solid 3px Black;
        width: 90%;
        height: 3px; } }
    .smallmenu .smallmenuLine3.opened {
      transform: rotate(315deg);
      transition: 0.5s; }
