:root {
  --BoxWidth: 1024px;
  --TitleIconWidth: 74px;
  --MarginBottom: 50px;
}

* {
  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 10px;
}

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

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

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

.title {
  margin-bottom: 50px;
  padding-left: calc(var(--TitleIconWidth) + 10px);
  height: var(--TitleIconWidth);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0px;
  background-image: url(../imgs/titleIcon.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: var(--TitleIconWidth);
}


.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: 60px 40px;
  }

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


/* popup */
/* Modal 背景與置中 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* 微暗背景 */
.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 彈窗本體 */
.modal_content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90%;
  z-index: 1;
  padding: 40px;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: radial-gradient(100% 75.15% at 0% 50%, #007C7C 0%, #007C7C 52.88%, #01524C 100%);

}

/* 關閉按鈕 */
.close_btn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 24px;
  display: block;
  cursor: pointer;
  z-index: 2;
}

/* Flex 內容 */
.modal_inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.modal_label {
  width: 100%;
}

.modal_label_t {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #effff2;
}

.modal_label_des {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #fff;
}

.modal_left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal_left img {
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 50%;
}

.modal_right {
  flex: 2 1px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.modal_right .name {
  font-size: 20px;
  font-weight: 700;
}

.modal_right .card_t {
  font-size: 16px;
  font-weight: 400;
}

.modal_inner .modal_des {
  color: #fff;
  width: 100%;
}



/* RWD：手機版上下排列 */
@media (max-width: 480px) {

  .modal_content {
    padding: 20px;
  }

  .modal_inner {
    flex-direction: column;
  }

  .modal_right {
    padding-top: 20px;
  }

  .modal_inner .modal_des {
    height: 180px;
    overflow: scroll;
  }
}