#navbar {
  height: 60px;
  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: space-between;
  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: #fff;
  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: 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;
  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 {
  padding-top: 140px;
  width: 100%;
  max-width: 1220px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  z-index: 1;
  align-items: center;
}

#kv .kvSlogan {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1044px;
  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 .kvSlogan2 {
  position: absolute;
  width: 100%;
  max-width: 664px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

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

@media (max-width:1439px) {
  #kv .alert {
    top: unset;
    bottom: 30px;
  }
}

@media (max-width:768px) {
  #kv {
    height: auto;
    padding-top: 100px;
    padding-bottom: 200px;
  }
  #kv .textBox {
    padding-top: unset;
    padding-bottom: 140px;
  }
}

@media (max-width:640px) {


  #kv .kvSlogan2 {
    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 .about_t {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}

#about .about_t img {
  width: 16px;
}

#about .about_t img.reverse {
  transform: rotate(180deg);
}

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

@media (max-width:480px) {
  #about .about_t {
    font-size: 20px;
  }
  #about .about_t img {
    width: 14px;
  }
  #about .des {
    font-size: 12px;
  }
}
@media (max-width:480px) {
  #about .about_t {
    font-size: 18px;
  }
  #about .about_t img {
    width: 12px;
  }
}

/* agenda */

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

#agenda .agendaTime {
  display: block;
  width: 100%;
  max-width: 624px;
  margin-bottom: 30px;
}

#agenda .remark {
  color: #b51616;
  line-height: 1.5;
  margin-bottom: 30px;
}

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

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

}
#agenda .list.labelName {
  box-shadow: unset;
  background-color:#DC5705;
}
#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_l {
  background-color: #DC5705;
  color: #fff;
  font-weight: bold;
  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 .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;
    text-align: center;
  }
}

@media (max-width:480px) {
  #agenda .remark {
    font-size: 14px;
  }
}

/* speaker */

#speaker .des {
  font-size: 16px;
  line-height: 1.5;
}

#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-repeat: no-repeat;
}

#speaker .card:nth-child(odd) {
  background-image: url(../imgs/speaker_card_bg1.png);
  background-position: left bottom;
}

#speaker .card:nth-child(even) {
  flex-direction: row-reverse;
  background-image: url(../imgs/speaker_card_bg2.png);
  background-position: right bottom;

}

#speaker .card_l {
  width: 234px;
  position: absolute;
  bottom: 0;
}

#speaker .card:nth-child(odd) .card_l {
  right: 0;
}

#speaker .card:nth-child(even) .card_l {
  left: 0;
}

#speaker .card.card2 .card_l {
  width: 180px;
  left: 40px ;
}

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

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


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

#speaker .card_r {
  width: calc(100% - 234px);
}

#speaker .speaker_t {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  vertical-align: middle;
  margin-bottom: 12px;
}

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

#speaker .card:nth-child(even) .speaker_name {
  color: #1897e8;
}

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


.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: #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;
  /* height: 200px;
 overflow-y: scroll; */
}
#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: 184px;
  height: 56px;
  border-radius: 56px;
  background-color: #E15100;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: unset;
}

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

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;
  border-radius: 0px;
  /* 圓角 */
  background-color: #fff;
  font-size: 16px;
  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;
}

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

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

#traffic .list_t {
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  border-radius: 50px;
  background-color: #DC5705;
  display: inline-block;
  margin-bottom: 10px;
}
#traffic .des {
  font-size: 16px;
  color: #fff;
}



/* footer */
#footer {
  background-color: #078FD2;
}

#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: 40px;
  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: #FFFFFF;
}