#navbar {
  height: 60px;
  background: #0002;
  position: fixed;
  z-index: 20;
  padding: 0 20px;
}

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

#navbar .box .logoContainer {
  display: flex;
  gap: 50px;
  height: 100%;
  align-items: center;
}

#navbar .box .logoContainer img {
  height: 30px;
}

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

#navbar .box .listContainer a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

#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: -100%;
    left: 0;
    background: #000a;
    width: 100%;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: 1s;
    z-index: 1;
    padding-top: 80px;
  }

  #listBar a {
    text-align: center;
    padding: 30px 0;
    color: #fff;
    text-decoration: none;
  }
}

/* fixed btn */
#fixedBtnContainer {
  position: fixed;
  bottom: 60px;
  right: 60px;
  text-align: center;
  z-index: 20;
}

#fixedBtnContainer a {
  display: block;
}

#fixedBtnContainer .signUpBtn img {
  width: 68px;
}

#fixedBtnContainer img {
  width: 47px;
}

@media (max-width:480px) {
  #fixedBtnContainer {
    bottom: 10px;
    right: 10px;
  }

  #fixedBtnContainer .signUpBtn img {
    width: 40px;
  }

  #fixedBtnContainer img {
    width: 30px;
  }

}

/* kv */

#kv {
  position: relative;
}

#kv .kvBox {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#kv .kv {
  position: relative;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  width: 1900px;
  /* min-width: 1024px; */
  display: block;
}

#kv .kvText {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 150px;
  width: 600px;
}

@media (max-width:1440px) {
  #kv .kv {
    width: 1440px;
  }

  #kv .kvText {
    width: 550px;
    right: 80px;
  }
}

@media (max-width:1024px) {
  #kv .kv {
    width: 1024px;
  }

  #kv .kvText {
    width: 400px;
    right: 40px;
  }
}

@media (max-width:768px) {
  #kv .kvText {
    width: 350px;
    right: 20px;
  }
}

@media (max-width:480px) {
  #kv .kv {
    width: 1440px;
    transform: translateX(0);
    left: -54%;
  }

  #kv .kvText {
    transform: translate(-50%, 0);
    top: 100px;
    left: 50%;
  }
}

@media (max-width:420px) {
  #kv .kv {
  left:-75% ;
  }
  #kv .kvText {
    width: calc(100% - 40px);
  }
}
@media (max-width:375px) {
  #kv .kv {
    width: 1300px;
  left:-75% ;
  }
  #kv .kvText {
    width: calc(100% - 40px);
  }
}

/* forum 論壇 */
#forum {
  background-image: url(../imgs/section_bg.png);
  background-size: cover;
}

#forum .box {
  padding-bottom: 254px;
}

#forum .textContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

#forum .textContainer .textBox {
  width: 100%;
  max-width: 705px;
  text-align: center;
}

#forum .textContainer .textBox img {
  width: 100%;
  margin: 20px 0 10px;
}

#forum .lineContainer {
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

#forum .lineContainer .line {
  width: 100%;
  max-width: 550px;
  border-bottom: 1px solid #000;
}

@media (max-width:480px) {

  #forum .box {
    padding-bottom: 200px;
  }
}

/* speaker */

#speaker {
  background-image: url(../imgs/section2_bg.png);
  background-size: cover;
}

#speaker .titleBox {
  color: #fff;
  border-bottom-color: #fff;
}

#speaker .cardBox_top {
  width: 100%;
  max-width: 610px;
  border: 1px solid #fff;
  border-top: unset;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  padding: 50px;
  display: flex;
  gap: 40px;
  margin-bottom: 95px;
  flex-wrap: wrap;
  justify-content: center;
}

#speaker .cardBox_top .cardImg {
  width: 234px;
  cursor: pointer;
}

#speaker .cardBox_top .textBox {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  top: 0;
  left: 0;
}

#speaker .cardBox_top .textBox div {
  display: inline;
}

#speaker .cardBox_top .textBox .line {
  border-bottom: 1px solid #fff;
  width: calc((100% - 180px - 20px) / 2);
}

#speaker .cardBox_top .textBox .text {
  color: #fff;
  padding: 0 10px;
  font-size: 30px;
}

#speaker .cardContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

#speaker .cardContainer .cardBox {
  width: 100%;
  max-width: 490px;
}

#speaker .cardContainer .cardBox .titleImg {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

#speaker .cardContainer .cardBox .cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

#speaker .cardContainer .cardBox .cards .card {
  width: 234px;
  cursor: pointer;
}

@media (max-width:664px) {
  #speaker .cardContainer .cardBox .cards {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

@media (max-width:1024px) {
  #speaker .cardContainer .cardBox:first-child {
    margin-bottom: 95px;
  }
}

/* agenda */
#agenda {
  position: relative;
  background-color: rgb(252, 237, 237);

}

#agenda .white_bg {
  position: absolute;
  height: 230px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
}

#agenda .white_bg .titleContainer {
  position: absolute;
  bottom: 0;
}

#agenda .white_bg .titleContainer .titleBox {
  margin-bottom: 40px;
}

#agenda .overFlow {
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#agenda .square_bg {
  width: 1920px;
}

#agenda .box {
  padding-top: 230px;
  padding-bottom: 0;
}

#agenda2 .box {
  padding-top: 0;
  padding-bottom: 130px;
}

#agenda .pageContainer,
#agenda2 .pageContainer {
  padding: 60px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

#agenda2 .pageContainer {
  padding-bottom: 0;
}

#agenda .pageContainer .page,
#agenda2 .pageContainer .page {
  width: 100%;
  max-width: 970px;
}

.agenda_dateBox {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.agenda_line {
  border-bottom: 2px solid #c10000;
  width: calc(100% - 306px - 336px - 20px);
  min-width: 50px;
  margin-right: 20px;
}

.agenda_red {
  color: #c10000;
}

.agenda_t40 {
  font-size: 40px;
}

.agenda_t28 {
  font-size: 28px;
}

.agenda_t24 {
  font-size: 24px;
}

.agenda_t20 {
  font-size: 20px;
}

.agenda_fw {
  font-weight: 600;
}

.agenda_letterSpace {
  letter-spacing: 2.9px;
}

.agenda_p_box {
  padding: 0 10px;
  width: 100%;
}

.agenda_bd {
  padding-bottom: 5px;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}

.agenda_mb20 {
  margin-bottom: 20px;
}

.agenda_two_val {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#agenda .frame,
#agenda2 .frame {
  width: 100%;
}

@media (max-width:768px) {
  #agenda .white_bg {
    height: 160px;
  }

  #agenda .box {
    padding-top: 160px;
  }

  #agenda2 .box {
    padding-bottom: 60px;
  }
}

/* signUp */

#signUp {
  background-image: url(../imgs/section2_bg.png);
  background-size: cover;
}

#signUp .titleBox {
  color: #fff;
  border-bottom-color: #fff;
}

#signUp .formContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

#form {
  width: 100%;
  max-width: 800px;
  padding-right: 120px;
}

#form .pl_110 {
  padding-left: 120px;
}

#form .tac {
  text-align: center;
}

#form .white {
  color: #fff;
}

#form .mb_30 {
  margin-bottom: 30px;
}

#form .btnContainer {
  display: flex;
  justify-content: center;
}

#form .btnContainer .btn {
  font-size: 55px;
  color: #fffa;
  font-weight: 300;
  cursor: pointer;
}

#form .click {
  color: #fff !important;
  font-weight: 500 !important;
}

#form .btnContainer .btn:nth-child(1) {
  padding-right: 20px;
  border-right: 1px solid #fff;
}

#form .btnContainer .btn:nth-child(2) {
  padding-left: 20px;
}

#form .inputBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#form .inputBox:nth-last-child() {
  margin-bottom: unset;
}


#form .inputBox .label {
  width: 120px;
  padding-right: 24px;
  text-align: right;
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}

#form .inputBox .input {
  width: 560px;
}

#form .info {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 80px;
}

#form .submitBox {
  display: flex;
  justify-content: center;
}

#form .submitBox .submit {
  color: #000;
  cursor: pointer;
  outline: none;
  border: none;
  width: 246px;
  height: 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  background-color: rgb(251, 234, 162);
}

@media (max-width:768px) {
  #form {
    padding-right: 0;
  }

  #form .pl_110 {
    padding-left: unset;
  }

  #form .inputBox .label {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  #form .inputBox .input {
    width: 100%;
  }
}

@media (max-width:425px) {
  #form .btnContainer .btn {
    font-size: 40px;
  }
}



/* footer */

#footer .logoBox {
  width: 100%;
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 60px;
}

#footer .logoBox img {
  height: 57px;
}

#footer .remark {
  font-size: 14px;
  text-align: center;
}

@media (max-width:768px) {
  #footer .logoBox {
    margin-bottom: 40px;
  }
}

@media (max-width:420px) {
  #footer .logoBox img {
    height: 40px;
  }
}

/* block container */
#blockContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #0008;
}

#block_card {
  width: 100%;
  height: 100%;
  background-color: #fff;
  max-width: 400px;
  max-height: 600px;
  border-radius: 12px;
  padding: 20px;
  color: rgb(20, 54, 116);
}

#block_card .block_t {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}

#block_card .block_re {
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(188, 213, 234);
  margin-bottom: 15px;
}

#block_card .block_exp {
  font-size: 22px;
  font-weight: 500;
  color: rgb(164, 67, 142);
  margin-bottom: 10px;
}

#block_card .block_des {
  font-size: 20px;
  line-height: 1.5;
}