:root {
  --BoxWidth: 1100px;
}

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

#screenBackgroundFilter {
  position: fixed;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 1;
  width: 100%;
  height: 100%;
}

#screenBackground {
  position: fixed;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: -1;
  opacity: 1;
  width: 100%;
  min-width: 1440px;
  opacity: .1;
}

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

.container {
  padding: 0 20px;
}

.center {
  display: flex;
  justify-content: center;
}

.box,
.box_point {
  width: 100%;
  max-width: var(--BoxWidth);
  padding: 60px 0px;
  position: relative;
}

.box_point {
  padding: 60px 60px;
}

.box_point::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0px;
  width: 25px;
  height: 188px;
  background-image: url(../imgs/section_point.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

/* 圖片模式 */
/* .title {
  width: 183px;
  margin-bottom: 50px;
}
.title img {
  width: 100%;
  display: block;
} */
.title {
  margin-bottom: 70px;
}

.title span {

  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}


.des {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;
  vertical-align: middle;
}

.w100 {
  width: 100%;
}

.w50 {
  width: calc(50% - 10px);
}

.computerShowF {
  display: flex !important;
}

.mobileShowF {
  display: none !important;
}

.computerShow {
  display: block !important;
}

.mobileShow {
  display: none !important;
}

@media (max-width:768px) {

  .box {
    padding: 60px 0px;
  }

  .computerShowF {
    display: none !important;
  }

  .mobileShowF {
    display: flex !important;
  }

  .computerShow {
    display: none !important;
  }

  .mobileShow {
    display: block !important;
  }
}

@media (max-width:480px) {
  .w50 {
    width: 100%;
  }

  .title_en {
    font-size: 20px;
  }

  .title_zh {
    font-size: 24px;
  }

  .des {
    font-size: 16px;
  }
.box_point {
  padding: 50px 20px;
}

  .box_point::before {
    width: 10px;
  }
}