.mb_show{
  display: none;
}

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

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


#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: 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: #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 .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: 20px 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;
  height: calc(100vh - 57px);
  overflow: hidden;
  margin-top: 58px;
  background-image: url(../imgs/kv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

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

#kv .kvSlogan {
  display: block;
  position: relative;
  width: 100%;
  max-width: 940px;
  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:640px) {
  #kv {
    height: auto;
    padding-top: 180px;
    padding-bottom: 180px;
  }

  #kv .textBox {
  padding-top: 0px;
  width: 100%;
  max-width: 1220px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  z-index: 1;
  align-items: center;
  justify-content: center;
}


  #kv .kvSlogan2 {
    width: 80%;
  }
}

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


/* 動畫共用設定 */
@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-image: url(../imgs/about_bg.png);
  background-position: center;
  background-size: cover;
}

#about .about_t {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

#about .des {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 200;
}

@media (max-width:480px) {
  #about .about_t {
    font-size: 22px;
    text-align: left;
  }
  #about .des {
  color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 200;
}
.mb_hide{
  display: none;
}
.mb_show{
  display: block;
}
}

/* speaker */
#speaker {
  position: relative;
}

#speaker .box {}

#speaker .cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

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

#speaker .card_text {
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  background-color: #08182a;
  color: #fff;
  width: 100%;
}

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

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

#speaker .btn {
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  width: 136px;
  height: 38px;
  border-radius: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  cursor: pointer;
}

.swiper-wrapper{
   justify-content: start; 
}

#speaker .swiper-wrapper-ot {
  position: relative;
  width: calc(100% - 120px);
  margin: 0 auto;
}

@media (max-width: 480px) {
  #speaker .swiper-wrapper-ot {
    position: relative;
    width: 253px;
    margin: 0 auto;
  }
 .swiper-wrapper {
    justify-content: flex-start; /* 改成靠左 */
  }
}

#speaker .swiper-container {
  position: relative;
  width: 100%;
}

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


/* 共用樣式 */

/* 去掉預設箭頭樣式 */
.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;
}

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

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

@media (max-width:480px) {
  .arrow-prev {
    left: 10px;
  }

  .arrow-next {
    right: 10px;
  }
}

/* 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: #fff;
  width: 90%;
  max-width: 550px;
  max-height: 90%;
  z-index: 1;
  padding: 40px;
  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;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}

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

.modal_left img {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
}

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

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

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

#modal_title{
  text-align: center;
}

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

  .modal_content {
    padding: 20px;
  }

  .modal_inner {
    flex-direction: column;
  }

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


/* agenda */

#agenda {}

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

#agenda .agenda_remarks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

#agenda .agenda_remark  {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#agenda .agenda_remark .remark_t {
  font-weight: 900;
  font-size: 26px;
  line-height: 150%;
  color: #fff;
  border-radius: 8px;
  padding: 5px;
  background-color: #000;
}

#agenda .agenda_remark .remark_des {
  font-size: 26px;
}
#agenda .tableLine {
  padding: 3px;
  border: 1px solid #E15100;
  border-radius: 5px;
}

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

.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-collapse: collapse;
}


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


.agenda tr td {
  font-size: 20px;
  color: #000;
  -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 #E15100;
}

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

}

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

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

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

  .agenda tr {
    margin-bottom: 20px;
    border-bottom: 1px solid #E15100;
  }

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

  .agenda tr td:first-child {
    padding: 0px 10px 0px 10px;
    font-weight: 400;
    color: #000;
  }

  .agenda tr td {
    text-align: left;
    padding: 10px 10px;
    border-bottom: none;
    position: relative;
    font-size: 18px;
  }

  .agenda tr td p {
    margin: 0;
    font-size: 18px;
  }
}

@media (max-width:480px) {
  #agenda .agenda_remark .remark_t {
    font-size: 18px;
  }
  #agenda .agenda_remark .remark_des {
    font-size: 16px;
  }
}


/*gift*/

#gift .gift_main {
 width: 100%;
}

.gift_cards{
  width: 300px;
}

#gift .gift_main {
 width: 100%;
}

@media (max-width:480px) {

  #gift .center {
    flex-direction:column
  }
}

/*info*/
#info {}
  #info .center {
    flex-direction:column;
    align-items: center;
  }
  #info .center {
    flex-direction:column;
    align-items: center;
  }

#info .agenda_main {
  background-color: #fff;
  border-radius: 20px;
}

#info .agenda_remarks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

#info .agenda_remark  {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#info .agenda_remark .remark_t {
  font-weight: 900;
  font-size: 26px;
  line-height: 150%;
  color: #fff;
  border-radius: 8px;
  padding: 5px;
  background-color: #000;
}

#info .agenda_remark .remark_des {
  font-size: 26px;
}

@media (max-width:480px) {
  #info .agenda_remark .remark_t {
    font-size: 18px;
  }
  #info .agenda_remark .remark_des {
    font-size: 16px;
  }
}


/*map*/
#map {}

  #map .center {
    flex-direction:column;
    align-items: center;
  }

#map .agenda_main {
  background-color: #fff;
  border-radius: 20px;
}

#map .agenda_remarks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

#map .agenda_remark  {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#map .agenda_remark .remark_t {
  font-weight: 900;
  font-size: 26px;
  line-height: 150%;
  color: #fff;
  border-radius: 8px;
  padding: 5px;
  background-color: #000;
}

#map .agenda_remark .remark_des {
  font-size: 26px;
}

.map_wrap {
  width: 100%;
  position: relative;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
}

.map-responsive {
  overflow: hidden;
  position: relative;
  height: 400px;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
}


.traffic_item_wrap {
  width: 100%;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 0px;
  margin-top: 30px;
}


.traffic_item {
  display: inline-table;
  width: 100%;
  margin-bottom: 40px;
}


.traffic_item:last-child {
  margin-bottom: 0px;
}


.traffic_icon {
  display: table-cell;
  width: 48px;
  vertical-align: top;
}

.traffic_icon img {
  width: 100%;
}

.traffic_des {
  display: table-cell;
  vertical-align: top;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 15px;
  padding-top: 5px;
  text-align: left;
}


.traffic_title {
  font-size: 24px;
  font-weight: bold;
  color: #07192C;
  margin-bottom: 10px;
}

.traffic_title span {
  font-size: 18px;
  color: #424242;
  font-weight: normal;
}


.traffic_txt {
  font-size: 18px;
  color: #424242;
  line-height: 32px;
}




@media (max-width:480px) {
  #map .agenda_remark .remark_t {
    font-size: 18px;
  }
  #map .agenda_remark .remark_des {
    font-size: 16px;
  }
}


/* signup */

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

#signup .box_point::before {
  background-image: url(../imgs/section_point_w.png);
}

#signup .title span {
  color: #fff;
  border-bottom: 1px solid #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: #fff;
}

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

#form .remark {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0%;
  color: #fff;
  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: 184px;
  height: 56px;
  border-radius: 56px;
  background-color: #E15100;
  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] {
  border: 1px solid #000;
  padding: 10px;
  border-radius: 0px;
  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 {
  color: #fff;
}


/* footer */
#footer {
  background-color: #03101D;
}

#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: #fff;
  font-size: 14px;
  line-height: 1.5;
}

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

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

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

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

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

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