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

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

.box {
  width: 100%;
  max-width: 1440px;
  padding: 64px 20px;
}

.title {
  font-size: 40px;
  font-weight: 700;
  color: #4d3b3d;
  text-align: center;
  margin-bottom: 32px;
}

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

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

.computerShowF {
  display: flex !important;
}

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