* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* link 滑順 */
  scroll-behavior: smooth;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
}

/* body {
  background-image: url("/imgs/main_bg.png");
  background-size: 100% auto; 
  background-repeat: no-repeat;
  background-position: center -200px; 
} */

.container {
  width: 100%;
  display: flex;
  /* justify-content: center; */
}

.box {
  width: 100%;
  max-width: 3000px;
  padding: 2rem 20px 3rem 20px;
}

.title {
  text-align: center;
}

.title img {
  width: 16rem;
}

.centerBox {
  width: 100%;
  display: flex;
  justify-content: center;
}

.description {
  font-size: 20px;
  color: #ffffff;
}

.computerShowF {
  display: flex !important;
  margin-left: auto;
}

.mobileShowF {
  display: none !important;
}

.computerShow {
  display: block !important;
}
.computerShow_480 {
  display: block !important;
}

.mobileShow_480 {
  display: none !important;
}

.mobileShow {
  display: none !important;
}

@media (max-width: 768px) {
  .box {
    padding: 60px 20px;
  }

  .computerShowF {
    display: none !important;
  }

  .mobileShowF {
    display: flex !important;
  }

  .computerShow {
    display: none !important;
  }

  .mobileShow {
    display: block !important;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }
  .description {
    font-size: 16px;
  }
  .computerShow_480 {
    display: none !important;
  }

  .mobileShow_480 {
    display: block !important;
  }
}
