:root {
  --BoxWidth: 912px;
  --PeopleTitleIconWidth: 276px
}

* {
  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%;
  height: 100%;
  min-width: 1440px;
}

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

.container {
  padding: 0 10px;
}


.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 {
  margin-bottom: 50px;
  text-align: center;
  width: 100%;
}

.title img {
  width: 300px;
}

.comma_title {
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  color: #3A6783;
  margin-bottom: 12px;
}

.circle.comma_title {
  width: 176px;
  height: 176px;
  background-color: #fff;
  border-radius: 50%;
  padding: 52px 28px;
  display: flex;
  align-items: start;
  gap: 3px;
  line-height: 1.2;
}

.comma_title img {
  width: 10px;
  display: block;
  padding-top: 5px;
}

.comma_title img.reverse {
  transform: rotate(180deg);
  padding-top: unset;
  padding-bottom: 5px;
}

.peopleTitleIcon {
  width: var(--PeopleTitleIconWidth);
  display: flex;
}

.peopleTitleIcon .peopleIcon {
  width: 100px;
  display: block;
  margin-top: 54px;
}

.box.havePeopleIcon {
  padding-top: calc(176px + 60px);
  padding-left: 100px;
}

.box.havePeopleIcon .peopleTitleIcon {
  position: absolute;
  top: 58px;
  left: 0;
}


.des {
  color: #3A6783;
  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;
}
.computerShowF_480 {
  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%;
  }

  .des {
    font-size: 16px;
  }

  .computerShowF_480 {
  display: none !important;
}

  .comma_title {
    font-size: 18px;
  }

  .comma_title img {
    width: 8px;
  }

  .circle.comma_title {
    width: 100px;
    height: 100px;
    padding: 30px 10px;
  }

  .peopleTitleIcon {
    align-items: center;
  }


  .peopleTitleIcon .peopleIcon {
    width: 50px;
    margin-top: 0px;
  }

    .box.box.havePeopleIcon {
    padding-top: 50px;
    padding-left: 0px;
  }

  .box.havePeopleIcon .peopleTitleIcon {
    position: relative;
    top: 0px;
    left: 0;
  }

  .box_point {
    padding: 60px 40px;
  }

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