#navbar {
  height: 60px;
  position: fixed;
  z-index: 20;
  padding: 0 20px;
}
#navbar.hasBg {
  background-color: #d41820;
}


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


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

#navbar .box .listContainer a {
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #FCDC73;
  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);
}

#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) {
  .burgerBtn {
    height: 100%;
    display: flex;
    align-items: center;
  }

  #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: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  width: 48px;
}

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

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

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


/* kv */

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


#kv .textBox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 10px;
  flex-direction: column;
  z-index: 1;
}

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

#kv .kvRemark {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #eed682;
  opacity: 0;
}

#kv .kvLine {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  mix-blend-mode: plus-lighter;
}




/* 動畫共用設定 */
@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);
  }
}

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

.kvRemark.animate {
  animation: fadeLeft 2s ease forwards;
  animation-delay: 2s;
}

.kvLogos.animate {
  animation: fadeRight 2s ease forwards;
  animation-delay: 2s;
}

.kvLine.animate {
  animation: fadeRight 1s ease forwards;
  /* 由左至右 = 內容從左邊來 */
  animation-delay: 4s;
}

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

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

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

/* live */
#live iframe {
  aspect-ratio: 16 / 9;
}

/* about */

/* speaker */

#speaker .box {
  max-width: 1360px;
}

#speaker .title {
  width: 100%;
  max-width: var(--BoxWidth);
}

#speaker .swiper-wrapper {
  position: relative;
  width: 88.3%;
  margin: 0 auto;
}

#speaker .swiper-container {
  position: relative;
  width: 100%;
  padding: 40px 0;
}

#speaker .swiper-slide {
  width: 253px !important;
  flex-shrink: 0;
}

#speaker .card_bg {
  background-image: url('../imgs/speaker_bg.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 20px 10px;
  border-radius: 12px;
  color: white;
}

#speaker .card_img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

#speaker .card_des {
  font-size: 14px;
  line-height: 1.4;
  height: 40px;
}

#speaker .card_t {
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
}

/* 共用樣式 */

/* 去掉預設箭頭樣式 */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: unset;
}


.arrow-prev,
.arrow-next {
  width: 24px;
  height: 24px;
  background-image: url('../imgs/swiper_arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 0 5px #888;
}

/* 分別定位 */
.arrow-prev {
  left: 10px;
}

.arrow-next {
  right: 10px;
  transform: translateY(-50%) scaleX(-1);
  /* 向右翻轉 */
}

/* 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;
  background-color: white;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  border-radius: 10px;
  z-index: 1;
  padding: 45px;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* 關閉按鈕 */
.close_btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
}

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

.modal_left {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal_left img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 15px;
}

.modal_left h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.modal_left p {
  font-size: 16px;
  color: #555;
}

.modal_right {
  flex: 2 1 400px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  display: flex;
  align-items: center;
}

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

  .modal_content {
    padding: 20px;
  }

  .modal_inner {
    flex-direction: column;
  }

  .modal_right {
    padding-top: 20px;
  }
}


/* agenda */

#agenda {
  background:
    linear-gradient(to top,
      /* 從下往上 */
      rgba(0, 0, 0, 0.2) 0px,
      /* 最底部是黑色半透明 */
      rgba(0, 0, 0, 0) 500px
      /* 漸層到 500px 處完全透明 */
    ),
    rgb(210, 21, 37);
}

#agenda .title {
  color: #fff;
}

#agenda .title::before {
  background-color: #FAD795;
}

#agenda .agenda_remark {
  width: 100%;
  max-width: 471px;
}

#agenda .agenda_remark img {
  width: 100%;
}



.agenda_table_wrap {
  display: inline-block;
  width: 100%;
  margin-top: 60px;
}



.ag_th {
  float: left;
  width: 100%;
  line-height: 2;
  text-align: center;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  border-radius: 24px;
  margin-bottom: 10px;
  background: #FAD795;
}

.ag_th.orange_bg {
  background: #FB826A;
}

.agenda_table_box {
  width: 100%;
  border-radius: 16px;
  box-sizing: border-box;
}

.agenda {
  width: 100%;
}

table {
  border-left: 1px solid #fff;
}


/* .agenda tbody tr td {
  border-bottom: #9E9E9E 1px solid;
} */

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


.agenda tr td {
  font-size: 20px;
  color: #fef1c2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0;
  line-height: 1.5;
  font-weight: 700;
}

.agenda tr td:first-child {
  width: 150px;
  padding-left: 20px;
  font-weight: 400;
  color: #fff;

}

.agenda tr td p {
  color: #fff;
  font-weight: 400;
}

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

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

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

#form .remark {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #444;
  margin-top: 20px;
  margin-bottom: 40px;
}
#form .remark span{
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  color: #e60012;
}

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

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

#form .submit_online {
  width: 200px;
  height: 56px;
  border-radius: 56px;
  background-color: #e60012;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

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

#form .online_des{
  width: 100%;
  text-align: center;
  line-height: 1.7;
}

input[type=text] {
  border: 1px solid #000;
  padding: 10px;
  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: 8px;
  /* 圓角 */
  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);
}


/* traffic */
#traffic .remark {
  width: 100%;
  max-width: 503px;
  margin-bottom: 40px;
}

#traffic .cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 40px;
  margin-bottom: 40px;
}

#traffic .card_label {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 20px 0;
  background-color: #D7C383;
  margin-bottom: 20px;
}

#traffic .icon {
  width: 30px;
}

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

#traffic .card_t {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0px;
}

#traffic .card_des {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
}

#traffic .list {
  margin-bottom: 16px;
}

#traffic .list:last-child {
  margin-bottom: unset;
}

#traffic .map {
  border-radius: 12px;
  border: 2px solid #D7C383;
  padding: 5px;
}

#traffic .map iframe {
  border-radius: 8px;
}



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

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

#footer .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 650px;
}

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

#footer .logos .logo .logo_t {
  font-size: 14px;
  color: #fff;
}

#footer .logos .logo img {
  height: 21px;
}

#footer .remark {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  color: #FFFFFF;
}

@media (max-width:480px) {
  #footer .logos {
    flex-direction: column;
    justify-content: center;
  }

  #footer .logos .logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

}