#navbar {
  height: 60px;
  position: fixed;
  z-index: 20;
  padding: 0 20px;
  top: 0;
  left: 0;
  background-color: #fff;
}

/* scroll 超過200px 的 navbar 背景色 */
#navbar.hasBg {
  background-color: #fff;
}


#navbar .box {
  padding: unset;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

#navbar .box .icon,
#navbar .box .icon img {
  height: 100%;
  display: block;
}

#navbar .box .icon {
  padding: 15px 0;
}



#navbar .box .listContainer {
  height: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

#navbar .box .listContainer a {
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #176447;
  text-shadow: 55px 70px 36px rgba(58, 195, 146, 0.01), 31px 39px 30px rgba(58, 195, 146, 0.05), 14px 18px 22px rgba(58, 195, 146, 0.09), 3px 4px 12px rgba(58, 195, 146, 0.1);
  display: block;
}

#navbar .box .btnBox {
  height: 100%;
  display: flex;
  align-items: center;
}

#navbar .box .btnBox .singUp {
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background-image: linear-gradient(to right, #f60, #ff490a);
}

@media (max-width:768px) {

  #navbar .box {
    justify-content: space-between;
  }

  #navbar {
    position: flex;
    z-index: 2;
  }

  #navbar .box .logoContainer {
    gap: 20px;
  }

  #listBar {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: -200%;
    left: 0;
    height: 100%;
    background: #000a;
    width: 100%;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: 1s;
    z-index: 10;
    padding-top: 80px;
  }

  #listBar a {
    text-align: center;
    padding: 30px 0;
    color: #fff;
    text-decoration: none;
  }
}

/* fixedBox */
#fixedBox {
  position: fixed;
  z-index: 2;
  bottom: 200px;
  right: 30px;
  display: flex;
  flex-direction: column;
  width: 55px;
  transition: .5s;
  gap: 10px;
}

#fixedBox.corner {
  bottom: 30px;
}

#fixedBox a {
  display: block;
  text-decoration: none;
  width: 100%;
}

#fixedBox img {
  display: block;
  width: 100%;
}

#fixedBox a:active img {
  filter: hue-rotate(45deg);
}

@media (max-width:768px) {
  #fixedBox {
    opacity: 0;
    bottom: 30px;
  }
}

@media (max-width:480px) {
  #fixedBox {
    width: 35px;
  }
}

/* kv */

#kv {
  position: relative;
  overflow: hidden;
  margin-top: 58px;
  /* background: radial-gradient(93.92% 111.65% at 24.79% 18.93%,
      #FFFFFF 0%,
      #EFF6F4 27%,
      #40A58E 48%,
      #076445 63%,
      #005162 84%); */
  background: radial-gradient(
      /* 這裡用 circle 保證是圓 */
      circle at 24.79% 18.93%,
      #FFFFFF 0%,
      #EFF6F4 27%,
      #40A58E 48%,
      #076445 63%,
      #005162 84%);
  /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
  display: flex;
  flex-direction: column;
  padding: unset;
}

#kv .textBox {
  padding-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex;
  gap: 10px;
  z-index: 1;
  position: relative;
  align-self: flex-start;
  padding: 80px 10px 0 10%;
}

#kv .kvSlogan {
  display: block;
  position: relative;
  width: 100%;
  max-width: 827px;
  opacity: 0;
}

#kv .kvIcon1 {
  position: absolute;
  width: 2388px;
  top: 0px;
  opacity: .7;
  right: -50%;
  display: block;
}

#kv .kvIcon2 {
  position: absolute;
  width: 298px;
  top: 100%;
  left: 0px;
  display: block;
}

@media (max-width:1439px) {}

@media (max-width:768px) {
  #kv .textBox {
    padding: 80px 10px 0;
  }

  #kv .kvIcon1 {
    width: 170%;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }

  #kv .kvIcon2 {
    width: 150px;
  }

}

@media (max-width:480px) {}


/* 動畫共用設定 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(300px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(300px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 出現 */
@keyframes emerge {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 淡入浮現動畫 */
.kvSlogan.animate {
  animation: fadeUp 2s ease forwards;
  animation-delay: 0s;
}

#kv .des.animate {
  animation: emerge 2s ease forwards;
  animation-delay: 2s;
}


@media (max-width:768px) {}

@media (max-width:640px) {}

/* about */

#about {
  margin-top: 126px;
  padding: 179px 10px 129px;
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 20.67%,
      #FFFFFF 100%);

}

#about .des {
  width: 100%;
  max-width: 1024px;
  font-family: Noto Sans HK;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0px;
}

@media (max-width:768px) {
  #about {
    margin-top: unset;
  }
}

/* speaker */
#speaker {
  position: relative;
  background-color: #fff;
  padding: unset;
}

#speaker .box {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

}

#speaker .titleBox {
  display: flex;
  width: 100%;
  max-width: 1024px;
  justify-content: space-between;
}

#speaker .titleBox .remark {
  text-align: right;
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 3px;
}


#speaker .cards {
  display: flex;
  flex-wrap: wrap;
}

#speaker .card {
  width: calc(100% / 7);
  aspect-ratio: 1 / 1; /* 強制正方形 */
  position: relative;
  color: #fff;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 63%,
      rgba(0, 0, 0, 0.5) 75.81%,
      rgba(0, 0, 0, 0.5) 100%);
}

#speaker .card .photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#speaker .card .front {
  position: absolute;
  text-align: right;
  bottom: 20px;
  right: 20px;
}

#speaker .card .front .name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

#speaker .card .front .card_t {
  line-height: 1.2;
  letter-spacing: 0px;
  width: 170px;
}

#speaker .card .remark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 1;
  opacity: 0;
  transition: .5s;
  background: linear-gradient(180deg,
      #007C7C 0%,
      #01544E 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

#speaker .card .remark.click {
  opacity: 1;
}

:root {
  --SpeakerCardRemarkMoreHeight: 40px;
}

#speaker .card .remark .des {
  height: calc(100% - var(--SpeakerCardRemarkMoreHeight));
  /* 彈性盒模型 */
  display: -webkit-box;
  /* 限制顯示 7 行 */
  -webkit-line-clamp: 7;
  /* 垂直排列 */
  -webkit-box-orient: vertical;
  line-clamp: 7;
  overflow: hidden;
  /* 超出用 ... 表示 */
  text-overflow: ellipsis;
  line-height: 30px;
}

#speaker .card .remark .more {
  font-size: 16px;
  line-height: 100%;
  display: flex;
  align-items: center;
  transition: .5s;
  height: var(--SpeakerCardRemarkMoreHeight);
}

#speaker .card .remark .more:hover {
  color: #faf;
}

@media (max-width:1500px) {
  #speaker .card {
    width: calc(100% / 5);
  }
}

@media (max-width:1024px) {
  #speaker .card {
    width: calc(100% / 4);
  }

  #speaker .titleBox {
    padding: 0 10px;
  }
}
@media (max-width:790px) {
  #speaker .card {
    width: calc(100% / 3);
  }
}
@media (max-width:600px) {
  #speaker .card {
    width: calc(100% / 2);
  }
}

@media (max-width:480px) {

  #speaker .titleBox .remark {
    font-size: 18px;
    padding-top: 20px;
  }
}

@media (max-width:430px) {
  #speaker .card {
    width: calc(100%);
  }
}


/* popup 在 all.css */

/* agenda */
#agenda {
  background: radial-gradient(100% 75.15% at 0% 50%,
      #007C7C 0%,
      #007C7C 52.88%,
      #01524C 100%);

}

#agenda .title {
  color: #fff;
}

#agenda .tableTitles {
  display: flex;
  gap: 14px;
}

#agenda .tableTitles .t_title {
  border-radius: 50px;
  background-color: #c6e08d;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  padding: 10px 20px;
  text-align: center;
}

#agenda .tableTitles .t_title:first-child {
  width: 186px;

}

#agenda .tableTitles .t_title:last-child {
  flex: 1;
}

#agenda table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}


#agenda table tbody tr.noborder td {
  border-bottom: none;
}


#agenda table tr td {
  font-size: 20px;
  color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}

/* 時間區塊 */
#agenda table tr td:first-child {
  width: 200px;
  padding-left: 20px;
  font-weight: 400;
  color: #fff;

}

#agenda table tr td p {
  display: inline-block;
  padding: 0 20px;
  background-color: #a0b517;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #agenda table {
    display: block;
    width: 100%;
  }

  #agenda table tbody,
  #agenda table tr,
  #agenda table td {
    display: block;
    width: 100%;
  }

  #agenda table tr {
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
  }

  #agenda table tr.noborder {
    border-bottom: unset;
  }

  #agenda table tr td {
    text-align: left;
    padding: 10px 20px;
    border-bottom: none;
    position: relative;
  }

  #agenda table tr td p {
    margin: 0;
  }
}

#agenda .remark {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #fff;
}

@media (max-width:480px) {}

/* exclusive */

:root {
  --ExclusiveCardGray: #717171;
  --ExclusiveCardGreen: #96C175;
}

#exclusive {
  background-color: #fff;
}

#exclusive .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#exclusive .title {
  width: 100%;
}

#exclusive .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--MarginBottom);
  width: 100%;
  max-width: 920px;
}

#exclusive .card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--ExclusiveCardGreen);
  position: relative;
}

#exclusive .card::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 80%;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

#exclusive .card .icon {
  width: 188px;
}

#exclusive .card .points {
  display: flex;
  align-items: center;
  font-size: 70px;
  line-height: 20px;
  position: absolute;
  transition: .5s;
  top: 155px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ExclusiveCardGray);
}

#exclusive .card .points::after {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--ExclusiveCardGray);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 27px;
}

#exclusive .card .card_t {
  padding-top: 30px;
  font-weight: 700;
  transition: .5s;
  font-size: 20px;
  line-height: 120%;
  color: var(--ExclusiveCardGray);
}


#exclusive .card .card_des {
  padding: 20px;
  font-weight: 400;
  font-size: 20px;
  transition: .5s;
  line-height: 120%;
  color: var(--ExclusiveCardGray);
  /* 想改行數就改這裡，例如 4、5 ... */
  /* --lines: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--lines);
  line-clamp: var(--lines);
  overflow: hidden; */
  text-align: center;
}

#exclusive .card .arrow {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  transition: .5s;
  background-size: 100%;
  background-image: url(../imgs/icon_arrow_gray.png);
}

#exclusive .card.checked .points::after,
#exclusive .card:hover .points::after {
  border: 2px solid var(--ExclusiveCardGreen);
}

#exclusive .card.checked .card_t,
#exclusive .card.checked .points,
#exclusive .card.checked .card_des,
#exclusive .card:hover .card_t,
#exclusive .card:hover .points,
#exclusive .card:hover .card_des {
  color: var(--ExclusiveCardGreen);
}

#exclusive .card.checked .arrow,
#exclusive .card:hover .arrow {
  background-image: url(../imgs/icon_arrow_green.png);
}


/* 下方列表 */


#exclusive .listFrame {
  width: 100%;
  max-width: 920px;
}

#exclusive .triangle {
  width: 30px;
  height: 38px;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

#exclusive .listFrame_t {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--ExclusiveCardGreen);
}

#exclusive .listFrame .listFrame_t span {
  padding-left: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #fff;
}

#exclusive .lists {
  border: 1px solid var(--ExclusiveCardGreen);
}

#exclusive .list {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

#exclusive .list .list_l {
  width: 256px;
}

#exclusive .list .list_l img {
  width: 100%;
  display: block;
}

#exclusive .list .list_r {
  width: calc(100% - 256px);
  padding-left: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#exclusive .list .list_t {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0px;
  width: 100%;
  vertical-align: middle;
  color: var(--ExclusiveCardGreen);
}

#exclusive .list .list_des {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--ExclusiveCardGray);
  /* ellipses */
  --lines: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--lines);
  line-clamp: var(--lines);
  overflow: hidden;
}

#exclusive .list .more {
  border-radius: 4px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #4D9E7A;
  width: 91px;
  height: 34px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#exclusive .list .more:hover {
  filter: hue-rotate(45deg);
}


@media (max-width:767px) {
  #exclusive .list {
    flex-direction: column;
    gap: 30px;
  }

  #exclusive .list .list_l,
  #exclusive .list .list_r {
    width: 100%;
  }

  #exclusive .list .list_r {
    padding-left: unset;
  }

  #exclusive .list .list_des {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    overflow: visible;
  }
}

/* reading */
#reading {
  background: radial-gradient(100% 75.15% at 0% 50%, #007C7C 0%, #007C7C 52.88%, #01524C 100%);
}

#reading .title {
  width: 100%;
  color: #fff;
}

#reading .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#reading .type_t {
  padding: 10px 73px;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
  margin-bottom: 10px;
  border-radius: 50px;
  background-color: #c6e08d;
}

#reading .cards {
  width: 100%;
  max-width: 920px;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#reading .card {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

#reading .card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

#reading .card .des {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0px;
  color: #fff;
  /* ellipses */
  --lines: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--lines);
  line-clamp: var(--lines);
  overflow: hidden;
}

#reading .card .more {
  width: 100px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #a0b517;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}


/* signup */

:root {
  --SignupMainColor: #02554F;
}

#signup {
  background-color: #fff;
}

.form_title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #A91C21;
  font-weight: bold;
  margin-top: 30px;
}

#form {
  display: none;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 20px;
  row-gap: 40px;
}

#form.show {
  display: flex;
}



#form p {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: var(--SignupMainColor);
}

#form p span {
  font-weight: 400;
  font-size: 12px;
  color: #FF5C00;
  padding-left: 10px;
}

#form .remark {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--SignupMainColor);
}

#form label[for="agree"] .remark {
  margin-top: 20px;
  margin-bottom: 40px;
}

#form .remark a {
  font-size: 16px;
  margin-top: 10px;
  color: #F72828;
}

#form ul,
#form ol {
  padding-left: 15px;
}

#form .submit {
  width: 156px;
  height: 56px;
  border-radius: 56px;
  background-color: #0C4A75;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

#form .submit:active {
  background-color: #a8000e;
}

input[type=text] {
  padding: 10px;
  border-radius: 0px;
  width: 100%;
  background-color: var(--SignupMainColor);
  color: #fff;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  color: #fff;
  border-radius: 2px;
  border: 2px solid #666;
}

input[type=radio] {
  margin-right: 5px;
}

/* 隱藏預設 radio 樣式 */
input.square {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 18px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 2px;
  /* 方形 */
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-right: 4px;
}

/* 選中後內部的小方塊 */
input.square:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--SignupMainColor);
  border-radius: 1px;
}

select {
  padding: 8px 12px;
  border-radius: 0px;
  /* 圓角 */
  font-size: 16px;
  color: #fff;
  width: 100%;
  appearance: none;
  /* 移除預設樣式（部分瀏覽器有效） */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../imgs/form_arrow.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px 24px;
  background-color: var(--SignupMainColor);
}

select:focus {
  outline: none;
  border-color: #66afe9;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

label {
  color: #000;
}

.radioBox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* traffic */
#traffic {
  background: radial-gradient(100% 75.15% at 0% 50%, #007C7C 0%, #007C7C 52.88%, #01524C 100%);
}

#traffic .title {
  color: #fff;
}

#traffic .time {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

#traffic .map {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

#traffic .lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#traffic .list {
  display: flex;
  color: #fff;
}

#traffic .list_l {
  width: 48px;
}

#traffic .list_l img {
  display: block;
  width: 100%;
}

#traffic .list_r {
  width: calc(100% - 48px);
  padding-left: 24px;
}

#traffic .list_t {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 10px;
  letter-spacing: 0%;
}

#traffic .list_t_en {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 10px;
  letter-spacing: 0%;
}

#traffic ul {
  padding-left: 26px;
}

#traffic li {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 10px;
  letter-spacing: 0%;
}

#traffic li span {
  font-size: 16px;
  font-weight: 400;
}

@media (max-width:480px) {
  #traffic .list_t {
    font-size: 20px;
  }
  #traffic .list_t_en {
    font-size: 18px;
  }
  #traffic li {
    font-size: 18px;
  }
}



/* footer */
#footer {
  background-color: #fff;
}

#footer .box {
  max-width: 1400px;
}

#footer .items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 32px;
}

#footer .item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

#footer .item_t {
  font-weight: 500;
  color: #000;
  font-size: 14px;
  line-height: 1.5;
}

#footer .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

#footer .logo {
  height: 85px;
  display: block;
}

#footer .logo.h35 {
  height: 35px;
}

#footer .logo.h30 {
  height: 30px;
}

#footer .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

#footer .remark {
  padding-top: 32px;
  border-top: .5px solid #969696;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  line-height: 23px;
  text-align: center;
  color: #000;
}

@media (max-width:768px) {
  #footer .logo {
    height: 35px;
  }
}