#navbar {
  height: 60px;
  position: fixed;
  z-index: 20;
  padding: 0 20px;
  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: space-between;
}

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

#navbar .box .icon {
  padding: 10px 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: #B66D25;
  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;
  height: 100vh;
  overflow: hidden;
  padding-top: 60px;
}

#kv .kv_global {
  position: absolute;
  right: 60px;
  top: 190px;
  width: 460px;
}


#kv .textBox {
  padding-top: 80px;
  width: 100%;
  max-width: 1220px;
  gap: 10px;
  flex-direction: column;
  z-index: 1;
}

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

@media (max-width:640px) {
  #kv {
    height: auto;
    padding-top: 100px;
    padding-bottom: 160px;
  }
}


/* 動畫共用設定 */
@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: fadeRight 2s ease forwards;
  animation-delay: 0s;
}

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

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

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


/* about */

#about .des {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
}

#about .des .mark {
  font-weight: 700;
  font-size: 18px;
  line-height: 170%;
  color: #1B1B1B;
}

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

#speaker .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

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

#speaker .centerBox .box {
  max-width: var(--BoxWidth);
  padding: unset;
}

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

@media (max-width: 480px) {
  #speaker .swiper-wrapper-ot {
    position: relative;
    width: 253px;
    margin: 0 auto;
  }
}

#speaker .swiper-container {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

#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;
  border-radius: 12px;
  color: #000;
  border-radius: 12px;
  overflow: hidden;
}

#speaker .card_img {
  width: 100%;
  height: auto;
  display: block;
}

#speaker .card_text {
  padding: 20px 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: 40px;
  height: 40px;
  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;
}

/* 分別定位 */
.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: #E1EDCA;
  width: 90%;
  max-width: 1050px;
  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;
  width: 48px;
  display: block;
  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;
  display: block;
  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;
  flex-direction: column;
}

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

  .modal_content {
    padding: 20px;
  }

  .modal_inner {
    flex-direction: column;
  }

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


/* agenda */
.agenda_bg_bottom{
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 0;
}
.agenda_cloud_l{
  position: absolute;
  width: 300px;
  left: 0px;
  top: 30%;
  z-index: 0;
}
.agenda_cloud_r{
  position: absolute;
  width: 300px;
  right: 0px;
  top: 30%;
  z-index: 0;
}

#agenda {
  position: relative;
  background-image: url(../imgs/agenda_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#agenda .agenda_main {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 20px;
}

#agenda .agenda_remark {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

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

.tables .agenda_table_wrap:first-child {
  margin-top: unset;
}

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

.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 td {
  border-bottom: #D0D0D0 1px solid;
}

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

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

}

.agenda tr td p {
  color: #000000;
  font-weight: normal;
}

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

#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: #B81C25;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

#form .submit:active {
  background-color: rgb(114, 3, 12);
}

#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;
}

.online_book {
  width: 100%;
  text-align: center;
}

.online_book p {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 20px;
}

.online_book a {
  color: #e60012;
  margin: 10px;
}


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);
}


/*industry*/

#industryArticle{
  width: 100%;
  text-align: center;
}

#industryArticle .cards {
  display: inline-flex;
  width: 290px;
  flex-wrap: wrap;
  background-color: #ffffff;
  justify-content:center;
  padding-bottom: 20px;
  margin: 5px;
}

#industryArticle .cards img{
  width: 100%;
}

#industryArticle .cards p{
  width: 100%;
  padding: 20px;
  font-size: 20px;
  color: #000000;
  text-align: left;
  min-height: 160px;
}
#industryArticle .cards a{
  display: inline-block;
  width: 240px;
height: 40px;
text-align: center;
background: #B81C20;
color: #ffffff;
text-decoration: none;
border-radius: 9999px;
font-size: 20px;
line-height: 40px;
}



/* 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 */
#footer { 
background: url(../imgs/Footer.png);
background-size: cover;
}

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

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

#footer .logos .logo {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

#footer .logos .logo .logo_t {
  text-align: left;
  font-size: 14px;
  color: #000000;
  white-space:nowrap;
}

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

#footer .remark {
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: le;
  color: #000000;
}

@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;
  }

}