#navbar {
  height: 50px;
  position: fixed;
  z-index: 20;
  padding: 0 20px;
  top: 0;
  left: 0;
}

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

#navbar.hasBg .box .listContainer a {
  color: #000;
}


#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: 7px 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: 18px;
  line-height: 23px;
  color: #183D6C;
  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 {
    background-color: #fff;
  }

  #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;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
  }
}

@media (max-width:480px) {


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

/* fixedBox */
#fixedBox {
  position: fixed;
  z-index: 2;
  bottom: 200px;
  right: 30px;
  display: flex;
  flex-direction: column;
  width: 48px;
  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 {
    bottom: 30px;
  }
}

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

/* kv */

#kv {
  position: relative;
  height: calc(100vh);
  overflow: hidden;
  background-image: url(../imgs/kv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#kv .scrollDown {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 100px;
  width: 121px;
  z-index: 1;
}

#kv .scrollDown img {
  width: 100%;
  display: block;
}

#kv .textBox {
  width: 100%;
  max-width: 1064px;
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
  z-index: 1;
}

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

#kv .des {
  color: #fff;
  opacity: 0;
  display: inline-block;
  background-color: #E24134;
  box-sizing: border-box;
  font-size: 20px;
  padding: 5px 10px;
}

#kv .kvIcon {
  position: absolute;
  width: 100%;
  max-width: 42%;
  bottom: 0;
  right: 100px;
  display: block;
}

#kv .alert {
  position: absolute;
  width: 183px;
  top: 30px;
  right: 15px;
  display: block;
}

@media (max-width:768px) {
  #kv .textBox {
    justify-content: center;
  }

  #kv .kvIcon {
    max-width: 70%;
    right: 0;
    opacity: 0.3;
  }
}

@media (max-width:640px) {


  #kv .kvIcon {
    width: 95%;
  }
}

@media (max-width:480px) {
  #kv .alert {
    width: 140px;
  }
}


/* 動畫共用設定 */
@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:860px) {
  #kv .des {
    color: #fff;
    opacity: 0;
    display: inline-block;
    background-color: #E24134;
    box-sizing: border-box;
    font-size: 16px;
    padding: 5px 10px;
    text-align: center;
  }
}

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

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

/* about */

#about {
  background-color: #f4ac9a;
  background-image: url(../imgs/about_grid_bg.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
}


.aboutListTitle {
  padding-left: 27px;
  font-weight: 700;
  font-size: 18px;
  line-height: 170%;
  color: #3a6783;
  background-image: url(../imgs/about_title_icon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 10px;
}



#about .box {
  display: flex;
  gap: 5px;
  align-items: start;
}

#about .content {
  width: calc(100% - var(--PeopleTitleIconWidth) - 5px);
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
}

#about .about_des {
  font-size: 18px;
}

#about .about_des.mb10 {
  margin-bottom: 10px;
}

#about .about_des span {
  font-size: 16px;
}

#about .about_des .bold {
  font-weight: 700;
  display: inline-block;
}

#about iframe {
  border-radius: 12px;
  margin-bottom: 30px;
}

#about .betweenBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}




#about .des {
  color: #fff;
  text-align: center;
}

@media (max-width:768px) {
  #about .box {
    padding-top: 0px;
    padding-left: 0px;
    flex-direction: column;
  }

  #about .peopleTitleIcon {
    position: relative;
    top: 0px;
    left: 0;
  }

  #about .content {
    width: 100%;
  }
}

@media (max-width:480px) {
  #about .box {
    padding-top: 50px;
    padding-left: 0px;
  }

  #about .content {
    padding: 15px;
  }
}

/* agenda */

#agenda {
  background-color: #DCF0F0;
  background-image: url(../imgs/about_grid_bg.png);
  background-position: top center;
  background-size: 100%;
}

#agenda .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 912px;
}

#agenda .lists {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

#agenda .lists * {
  font-family: Inter;

}

#agenda .list.labelName {
  box-shadow: unset;
  background-color: #EB5D57;
}

#agenda .list.labelName * {
  background-color: unset;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

#agenda .list.labelName .list_l,
#agenda .list.labelName .list_r {
  padding: 5px;
}

#agenda .list {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  font-size: 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

#agenda .list.oneLine {
  justify-content: center;
  padding: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background-color: #eb5d57;
}

#agenda .list_l {
  background-color: #6C8DA2;
  color: #fff;
  min-width: 140px;
  text-align: center;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#agenda .list_r {
  flex: 1;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #020202;
}

#agenda .list_r .mark {
  font-weight: 700;
}

#agenda .list_r .content {
  width: 340px;
}

#agenda .list_r .speaker {
  width: calc(100% - 340px);
}

#agenda .list_r .speaker span {
  color: #DC5705;
}

@media (max-width:768px) {
  #agenda .list_r .content {
    width: 230px;
  }

  #agenda .list_r .speaker {
    width: calc(100% - 230px);
  }
}

@media (max-width: 600px) {
  #agenda .lists {
    gap: 16px;
  }

  #agenda .list_r .content,
  #agenda .list_r .speaker {
    width: 100%;
  }

  #agenda .list {
    flex-direction: column;
  }

  #agenda .list_l {
    min-width: 100%;
    border-radius: 6px 6px 0 0;
  }

  #agenda .list_r {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 6px 6px;
  }
}

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

/* lottery */
#lottery {
  padding: unset;
}

#lottery .specialAward {
  position: relative;
  padding: 0 55px;
  z-index: 1;
}

#lottery .specialAward .icon_l,
#lottery .specialAward .icon_r {
  position: absolute;
  display: block;
  z-index: -1;
}

#lottery .specialAward .icon_l {
  width: 64px;
  top: 10px;
  left: 0;
}

#lottery .specialAward .icon_r {
  width: 77px;
  right: 0;
  top: 50px;
}

#lottery .specialAward .card {
  width: 100%;
  max-width: calc(300px);
}

#lottery .card {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  width: 260px;
}

#lottery .card .imgBox {
  position: relative;
  margin-bottom: 32px;
}

#lottery .card .award,
#lottery .card .quantity {
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

#lottery .card .award {
  background-color: #EB7071;
  top: 0;
  left: 0;
}

#lottery .card .award.small {
  font-size: 16px;
}

#lottery .card .quantity {
  background-color: #000;
  bottom: 0px;
  right: 0;
}

#lottery .card .imgBox img {
  width: 100%;
  display: block;
}

#lottery .card_des {
  font-size: 18px;
  font-weight: 700;
  color: #eb7071;
}

#lottery .cards {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 10px;
  margin-top: 40px;
  justify-content: center;
}

#lottery .specialAward {
  padding: 0 25px;
}

#lottery .remark {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  padding-top: 20px;
  color: #3a6783;
}


#lottery .remark ul{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: left;
  padding-top: 20px;
  color: #3a6783;
    padding-left: 20px;
}

#lottery .remark ul li{
  list-style-type: decimal;
  list-style-position: outside;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  margin-top: 10px;
  line-height: 120%;
  text-align: left;
  color: #3a6783;
}

/* speaker */

#speaker {
  background-color: #f4ac9a;
  background-image: url(../imgs/about_grid_bg.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
}

#speaker .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

#speaker .card {
  position: relative;
  padding: 40px 50px;
  border-radius: 20px;
  display: flex;
  background-size: 60%;
  background-color: #fff;
  background-image: url(../imgs/speaker_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  width: 100%;
}

#speaker .card:nth-child(even) {
  flex-direction: row-reverse;
}


#speaker .card_l {
  width: 193px;
  bottom: 0;
}

#speaker .card.card2 .card_l {
  width: 267px;
  right: 40px;
}

#speaker .card3 .card_l {
  width: 256px;
  bottom: 0px;
}

#speaker .card4 .card_l {
  width: 267px;
}


#speaker .card_l img {
  width: 100%;
  display: block;
}

#speaker .card_r {
  width: calc(100% - 200px);
  padding-left: 20px;
}

#speaker .card:nth-child(even) .card_r {
  padding-left: unset;
  padding-right: 20px;
}


#speaker .speaker_name {
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
  vertical-align: middle;
  margin-bottom: 12px;
  color: #E44E0C;
}

#speaker .des {
  color: #000;
}

#speaker .des .bold {
  font-weight: 700;
}


@media (max-width:768px) {

  #speaker .card,
  #speaker .card:nth-child(even) {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  #speaker .card_l {
    position: unset;
  }

  #speaker .card_r {
    width: 100%;
  }

  #speaker .card_l,
  #speaker .card2 .card_l,
  #speaker .card3 .card_l,
  #speaker .card4 .card_l {
    width: 200px;
  }

  #speaker .card,
  #speaker .card:nth-child(odd),
  #speaker .card:nth-child(even) {
    background-size: 768px;
    background-position: center bottom;
  }
}

@media (max-width:480px) {
  #speaker .card {
    padding: 15px;
  }
}

/* signup */

#signup {
  background-color: #DCF0F0;
  background-image: url(../imgs/about_grid_bg.png);
  background-position: top center;
  background-size: 100%;
}

#signup .box {
  max-width: 1024px;
}

#signup .titleBox {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

#signup .right {
  width: calc(100% - 176px - 40px);
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
}

#signup .right .t {
  font-family: Noto Sans HK;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0px;
  vertical-align: middle;

}

#signup .right ol {
  padding-left: 16px;
}

#signup .right li {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}


.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;
  max-width: 824px;
}

#form.show {
  display: flex;
}



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

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

#form .remark {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #525252;
  margin-top: 10px;
  margin-bottom: 40px;
}

#form .remark ol {
  margin-bottom: 10px;
}

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

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

#form .submit {
  width: 200px;
  background-color: unset;
  border: unset;
}

#form .submit img {
  display: block;
  width: 100%;
}


input[type=text] {
  border: 1px solid #000;
  padding: 10px;
  font-size: 18px;
  border-radius: 8px;
  width: 100%;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 6px;
}

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

select {
  padding: 8px 12px;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 18px;
  border-radius: 8px;
  color: #333;
  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;
}

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

label[for=agree] {
  color: #000;
  font-size: 18px;
}

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

.radioLabel {
  font-weight: 700;
}

@media (max-width:480px) {
  #signup .titleBox {
    flex-direction: column;
    align-items: unset;
    gap: 10px;
  }

  #signup .right {
    width: 100%;
  }
}


/* traffic */

#traffic {
  background-color: #f4ac9a;
  background-image: url(../imgs/about_grid_bg.png);
  background-position: top center;
  background-size: 100%;
}

#traffic .box {
  max-width: 1024px;
}

#traffic .content {
  margin-top: 20px;
}

#traffic .content {
  margin-top: 20px;
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;

}

#traffic .lists {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#traffic .list {
  display: flex;
  align-items: start;
}

#traffic .list .list_l {
  width: 130px;
  padding: 5px 10px;
  text-align: center;
  border-radius: 10px;
  background-color: #ffbd00;
  font-size: 18px;
}

#traffic .list.tt .list_l {
  background-color: #fff;
}

#traffic .list.tt .list_r {
  padding: 5px 10px 5px 30px;
}

#traffic .list .list_r {
  width: calc(100% - 130px);
  padding-left: 30px;
  font-size: 18px;
}

#traffic .list .list_r_flex {
  display: flex;
}

#traffic .list .list_r_flex_l {
  width: 124px;
}

#traffic .list .list_r_flex_r {
  width: calc(100% - 124px);
  padding-left: 20px;
}

@media (max-width:480px) {
  #traffic .content {
    padding: 20px;
  }

  #traffic .lists {
    gap: 30px;
  }

  #traffic .list,
  #traffic .list .list_r_flex {
    flex-direction: column;
    gap: 10px;
  }


  #traffic .list .list_r,
  #traffic .list .list_r_flex_r,
  #traffic .list .list_r_flex_l {
    width: 100%;
    padding-left: unset;
  }
}



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

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

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

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

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

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

#footer .logo {
  height: 45px;
  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;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  line-height: 23px;
  text-align: center;
  color: #37668A;
}

@media (max-width:576px) {
  #footer .logo {
    height: unset;
    width: 100%;
  }
}