@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,1000&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@900&display=swap');

/*靜態圖style*/
.sectiontemp img{
  width: 100%;
}

body{
  padding: 0;
  margin: 0;
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: "Noto Sans TC", sans-serif;
  /* font-family: 'DM Sans'; */
  opacity: 0;
  background: linear-gradient(to bottom,rgba(41, 35, 59,1) 75%,rgba(2, 11, 31,0.26) 100%);
}
body.loaded{
  opacity: 1;
  transition: all .5s;
}
section{
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
}
.container{
  width: 70%;
}

/* 主視覺Start */

.keyvisual{
  overflow: hidden;
  align-items: center;
  /* background:url("../img/kvbg.jpg") no-repeat;
  background-size: cover;
  background-position: center center; */
  width: 100%;
  height: calc(100vw * 1080/1920);/* calc(100vw * 1/2) */
  position: relative;
}
.keyvisual img{
  position: absolute;
}
.kv_bgview{
  height: 115%;
  width: auto;
  top:0;
}
.kv_bgview_msmask{display: none;}
body.loaded .kv_front{
  height: 100%;
  width: auto;
  bottom: -15%;
  left: 0;
  animation: kv_frontmove 1s ease-in-out forwards;

}
@keyframes kv_frontmove{
  from{
    bottom: -35%;
    opacity: 0;
  }
  to{
    bottom: -15%;
    opacity: 1;
  }

}
body.loaded .kf03,.fire04{
  animation: fireshine 2s ease-in-out infinite;
  animation-delay: -0.8s;
}

@keyframes fireshine{
  0%,100%{
    opacity: 0.7;
  }
  50%{
    opacity: 1;
  }
}

.riverBox{
    width: 110%;
    height: 120%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -3%;
}

body.loaded .redRiver{
  width: 100%;
  height: 100%;
  display: block;
  top: -3vw;

  -webkit-mask-image: linear-gradient(
    135deg,
    #000 0%,
    #000 40%,
    transparent 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    135deg,
    #000 0%,
    #000 40%,
    transparent 80%,
    transparent 100%
  );
  -webkit-mask-size: 300% 300%;
  mask-size: 300% 300%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: riverFlow 3s ease-in-out forwards;
  will-change: mask-position;
  transform: translateZ(0);
}
@keyframes riverFlow{
  from{
    -webkit-mask-position: 180% 0%;
    mask-position: 180% 0%;
  }
  to{
    -webkit-mask-position: 0% 100%;
    mask-position: 0% 100%;
  }
}

.firebox{
  width: 100%;
  height: 100%;
  position: absolute;
}
body.loaded .fireone{
  mix-blend-mode: screen;
  filter: hue-rotate(180deg);
  animation: fireballani 7s ease-in-out infinite;
}
.fire01{
  width: 12%;
  right: 8%;
  top: 30%;
  animation-delay: -2s !important;
}
.fire02{
  width: 8%;
  right: 23%;
  top: 5%;
  animation-delay: -4s !important;
}
.fire03{
  width: 12%;
  left: 16%;
  top: -5%;

}
@keyframes fireballani{
  0%{
    opacity: 0;
    transform: scale(0.01);
  }
  100%{
    opacity: 0;
    transform: scale(0.9) translateY(50%);
  }
  30%,35%{
    opacity: 1;
    transform: scale(1);
  }
}




body.loaded .kv_star{
  width: 10%;
  right: 8%;
  bottom: 5%;
  opacity: 0;
  animation: kv_stargo 2s ease-in-out forwards;
  animation-delay: 1s;
}
@keyframes kv_stargo{
  from{
    width: 7%;
    right: 18%;
    bottom: 26%;
    transform: rotate(-20deg);
    opacity: 0;
  }
  to{
    width: 10%;
    right: 8%;
    bottom: 5%;
    transform: rotate(5deg);
    opacity: 0.9;
  }
}
.kvtitle{
  position: absolute;
  text-align: center;
  transform: translateY(-45%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kvtitle h1{
  font-size: 6vw;
  letter-spacing: 5px;
  font-weight: 900;
  background: linear-gradient(to right, #efdcb9,#f0cc7e,#d9ae5c,#d9ae5c,#f9f3e5,#f4db8c,#c78a03,#c78a03,#c78a03,#efca84,#efca84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.5));
}
.kvtitle h2{
  font-size: 2.5vw;
  letter-spacing: 2px;
  font-weight: 900;
  background: linear-gradient(to left, #efdcb9,#f0cc7e,#d9ae5c,#d9ae5c,#f9f3e5,#f4db8c,#c78a03,#c78a03,#c78a03,#efca84,#efca84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.5));
}


/* 擦除效果 */
body.loaded .text-wrap {
  overflow: hidden;
  position: absolute;
}

body.loaded .text-reveal {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  opacity: 1;
}

body.loaded .text-reveal.active {
  animation: revealText 3s ease forwards;
  animation-delay: 1s;
}

@keyframes revealText {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/*  擦除效果  */

h2.text-reveal.active {
  animation-delay: 1.5s;
}

body.loaded .logobox {
  color: #fff;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 1vw;
  /* opacity: 0; */
  /* animation: logoboxfade 5s ease-in-out forwards;
  animation-delay: 3s; */
}
.logopic{
  display: flex;
  align-items: center;
}
.logobox img{
  display: block;
  position: unset;
  height: 2.8vw;
  margin-right: 1vw;
}
.logobox .organizer img:nth-child(3){
  padding-left: 1vw;
  border-left: 1px solid #fff;
}
.logobox .coorganizer img{
  margin-right: 2vw;
}


@keyframes logoboxfade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 主視覺End */

.sctimebox{
  background:linear-gradient(to right,  #03102e,#231815);
  color: #fff;
}
.sctimebox .container,.sctimebox .container div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.sctimebox .container{
  margin: 2vw 0 1vw 0;
}
.sctimebox .container label,.sctimebox .container span{
  margin-bottom: 1vw;
  font-size: 1.5vw;
}
.sctimebox .container label{
  font-size: 1.3vw;
  background: #ff3829;
  text-align-last: justify; 
}
.sctimebox .container a,.agandasec .container label,.speaker label{
  display: block;
  text-decoration: none;
  color: #000;
  padding: 0.5vw 1vw;
  background: linear-gradient(to right, #efdcb9,#f0cc7e,#d9ae5c,#d9ae5c,#f9f3e5,#f4db8c,#c78a03,#c78a03,#c78a03,#efca84,#efca84);
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 1.7vw;
  padding-right: 2.5vw;
}
.sctimebox .container a span{
  display: inline-block;
  transform: rotate(-90deg);
  position: absolute;
}

.sctimebox .container a:hover{
  transform: scale(1.1);
  transition: all 0.5s;
}

/* 議程 */
.agandasec,.formSection{
  background: linear-gradient(to bottom,rgba(41, 35, 59,1) 75%,rgba(2, 11, 31,0.26) 100%),url("../img/kv_bgview.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  color:#fff;
}
.agandasec{
  padding-bottom: 10vw;
}
.agandasec .container{
  padding: 2vw 1vw;
  font-size: 1.3vw;
}
.agandasec .container .row{
  margin: 1.5vw 0;
  position: relative;
}

.agandasec .container .row.agthead::after{
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  display: block;
  bottom: 0;
  background: linear-gradient(to right, #efdcb9,#f0cc7e,#d9ae5c,#d9ae5c,#f9f3e5,#f4db8c,#c78a03,#c78a03,#c78a03,#efca84,#efca84);
  transform: translateY(1.5vw);
}
.agandasec .container h3{
  font-size: 1.8vw;
  margin-bottom: 0;
  margin-top: 1vw;
}
.container .agtr h3:first-child{
  margin-top: 0;
}
.agandasec .container label,.speaker label{
  padding: 0 1vw;
  width: fit-content;
  font-size: 1.5vw;
  margin: 1vw 0;
}
.agandasec .container label:first-child{
  margin-top: 0;
}
.container .agtr .row,.agandasec .container .agthead .row{
  margin-top: 0;
}
.container .agtr{
  padding: 1vw 0;
}
.container .agtr:hover{
  background: rgba(255,255,255,0.2);
}
.agandasec {
  align-items: flex-start;
  overflow: hidden;
}

.gapflash{
  width: 150%;
  position: relative;
  margin-left: -3vw;
  bottom: 0;
  z-index: 10;
  top: -10vw;
}
.gapflash img{
  position: absolute;
  width: 80%;
  opacity: 0.8;
  filter: blur(1px);
  animation: gapflashani 1.5s linear infinite;
}
.gapflash img:nth-child(2){animation-delay: -2.1s;}
.gapflash img:nth-child(3){animation-delay: -1.7s;}
@keyframes gapflashani {
  0%,100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}


/*彩帶*/
.gapflash img:nth-child(1){
  top:7vw;
  filter: blur(0);
  animation: ribbonsani 30s linear infinite;
}
@keyframes ribbonsani {
  0%,100% {
    margin-left: 0%;
    transform: rotate(3deg);
  }
  50% {
    margin-left: -10%;
    transform: rotate(-3deg);
  }
}

/* 講者 */
.speakerSection{
  background: linear-gradient(to top,rgba(41, 35, 59,0.9) 70%,rgba(2, 11, 31,0.8) 100%),url("../img/spkscbg.jpg");
  background-size: cover;
  /* background-repeat: no-repeat; */
  padding: 10vw 0;
  color: #fff;
  
}
.spkerpic{
  position: relative;
  padding-top: 3%;
  padding-right: 25%;
  padding-bottom: 5%;
}
.spkerpic img{
  width: 100%;
  margin-left: 10%;
}
.spkerpic::after{
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  background: url("../img/spkerline.png");
  background-size: cover;
  position:absolute;
  top:0;
}
.speaker {
  padding: 2vw 4vw;
  text-align: center;
}
.speaker label{
  padding: 0.5vw;
  width: fit-content;
  font-size: 1.5vw;
  margin: -15% 0 5% -8%;
  letter-spacing: 3px;
  position: relative;
  transform: skewX(-10deg);
}
/* 英文名字 */
.speaker:nth-child(2) label{
  letter-spacing: 0;
}
/* .speaker span{
  font-size: 0.8rem;
} */

.speaker:hover .spkerpic{
  transform: scale(1.1);
  transition: all 0.5s;
}



/*金線*/
.gapflash02{
  width: 150%;
  position: relative;
  margin-left: -3vw;
  bottom: 0;
  z-index: 10;
  top: -10vw;
}
.gapflash02 img{
  position: absolute;
  width: 80%;
  opacity: 0.8;
  animation: ribbonsani 30s linear infinite;
}
.gapflash02 img:nth-child(2){
  animation: ribbonsanirev 25s linear infinite;
  animation-delay: -10.1s;
}

.gapflash02 img:nth-child(1){
  animation: ribbonsani 21s linear infinite;
  animation-delay: -25.7s;
}

@keyframes ribbonsani {
  0%,100% {
    margin-left: 0%;
    transform: rotate(3deg);
  }
  50% {
    margin-left: -10%;
    transform: rotate(-3deg);
  }
}
@keyframes ribbonsanirev {
  0%,100% {
    margin-left: -10%;
    transform: rotate(-3deg);
  }
  50% {
    margin-left: 0%;
    transform: rotate(3deg);
  }
}


/*** 報名區塊 ***/
.formSection{
  padding-top: 2vw;
  /* background: #020b23; */
  overflow: hidden;
}
.formBox{
	width: 100%;
	display: flex;
	justify-content: center;
}
.form{
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  width: 50vw;
  /* height: calc(50vw); */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.formnote{
	display: flex;
	flex-direction: column;
	align-items: center;
  padding-top: 2vw;
}

.formiframe{
	width: 45vw;/*不能更大*/
	overflow: hidden;
	height: 1900px;
}
.formiframe iframe{
	width: 108%;
  height: 2500px;
  transform: translate(-45px, -85px);
  overflow: hidden;
}

.formBox h2{
  text-align: center;
}
.notext{
  width: calc(100% - 100px);
  margin: 20px auto;
  padding: 20px;
  color: #999;
  font-size: 12px;
  line-height: 1.2em;
  border-radius: 10px;
  border: 2px dashed #ccc;
}
.notext h3{
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: #6b4e3b;
		line-height: 25px;
}
.notext ul{
  list-style-type: cjk-ideographic;
}
.notext ul ul{
  list-style-type:lower-alpha; 
}
.notext ul ul ul {
    list-style-type: decimal;
}

.formSection h7{
  color: #000;
  text-align: center;
  padding-top: 1.5vw;
  line-height: 1.5vw;
  font-size: 1vw;
  letter-spacing: 3px;
}
/*** 報名區塊 ***/
.footer {
  width: 70%;
  padding: 2vw 0;
}
.footer .logobox {
  animation: none;
  opacity: 1;
  margin: 3vw 0;

  display:flex; 
  justify-content:space-evenly; 
  align-items:center; 
  flex-wrap:wrap; 
  gap:1vw; 
  padding:1vw 0;

}
.logogroup{
  text-align: center;
}


.msbr{
  display: none;
}


/* 右側浮動按鈕 */
.floatbtn{
  position: fixed;
  z-index: 99;
  width: fit-content;
  right:2vw;
  bottom: 3vw;
  width: 8vw;
  height: 8vw;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4) , 
        inset 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
  animation: ammargin 2s linear infinite;
}
.floatbtn a{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 2px;
  font-size: 1.5vw;
  font-weight: 600;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.floatbtn img{
  width: 1.5vw;
  margin-top: 0.3vw;
}
.floatbtn:hover{
  animation: unset;
  transform: scale(1.05);
  transition: all 0.3s;
}

/* 旋轉關閉紐 */
.overlay_close_btn {
    position: absolute;
    z-index: 30;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-sizing: border-box;
}
.overlay_close_btn:before, .overlay_close_btn:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    height: 2px;
    background: #000;
}
.overlay_close_btn:after {
    transform: translate(-50%, -50%) rotateZ(-45deg);
}
.overlay_close_btn:before {
    transform: translate(-50%, -50%) rotateZ(45deg);
}
.overlay_close_btn:hover {
    transform: rotateZ(180deg) scale(1.2);
}
.overlay_close_btn {
    right: 15px;
    top: 15px;
}
/* 旋轉關閉紐 */

@media (max-width: 1490px) {
	.form {
    width: 60vw;
	}
	.formiframe {
			width: 55vw;
			height: 1800px;
	}
}

@media (max-width: 1450px) {
	.form {
    width: 65vw;
	}
	.formiframe {
			width: 60vw;
      height: 1800px;
	}
}
@media (max-width: 1130px) {
	.form {
    width:80vw;
	}
	.formiframe {
			width: 75vw;
			height: 1900px;
	}
  .formSection h7 {
    line-height: 2vw;
    font-size: 1.5vw;
  }
  .container{
    width: 80%;
  }
  body.loaded .logobox {
    width: 90%;
  }
}

@media (max-width: 900px) {
	.form {
    width:90vw;
	}
	.formiframe {
			width: 83vw;
			height: 2000px;
	}
  .formiframe iframe {
    height: 2000px;
  }
  .footer img {
    margin: 2vw 0.2vw;
  }
  .agandasec .container {
    font-size: 2vw;
  }
  .agandasec .container h3 {
    font-size: 2.5vw;
  }
}

@media (max-width: 860px) {
  .container{
    width: 90%;
  }
  body.loaded .logobox {
    width: 100%;
  }
  .logogroup {
    font-size: 2vw;
  }
}
/* 手機版 */
@media (max-width: 600px) {
  .msbr{
    display: unset;
  }
  .msnone{
    display: none;
  }
  html,body{
    position:relative;
    overflow-x: clip;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }
  @supports not (overflow: clip){
    html,body{
      overflow-x: hidden;
    }
  }
  .keyvisual {
    height: calc(100vw * 2160 / 1920);
  }
  .kv_bgview {
    width: 100%;
    height: auto;
    bottom: 0;
    top:unset;
  }
  .kv_bgview_msmask{
    display: block;
    position: absolute;
    width: 100%;
    height: 65%;
    background: linear-gradient(to bottom, rgba(6, 14, 32,1) 80%, rgba(6, 14, 32,0) 100%);
    z-index: 2;
    top:0;
  }
  body.loaded .kv_front {
    width: 80%;
    height: unset;
    margin-bottom: 9%;
  }
  .riverBox{
    height: 60%;
    bottom: -10%;
    top:unset;
  }
  @keyframes kv_stargo{
    from{
      width: 7%;
      right: 18%;
      bottom: 13%;
      transform: rotate(-20deg);
      opacity: 0;
    }
    to{
      width: 10%;
      right: 8%;
      bottom: 3%;
      transform: rotate(5deg);
      opacity: 0.9;
    }
  }
  .firebox{
    z-index: 3;
  }
  body.loaded .fireone{
    filter: unset;
  }
  .fire01 {
    width: 20%;
    right: 5%;
    top: 35%;
    filter: opacity(0.6) !important;
  }
  .fire02 {
    width: 20%;
    right: 0%;
    top: 5%;
    animation-delay: -4s !important;
  }
  .fire03 {
    width: 27%;
    left: -2%;
    top: 5%;
    animation-delay: -2s !important;
  }

  .kvtitle{
    z-index: 4;
  }
  .kvtitle h1 {
    font-size: 8vw;
  }
  h2.text-reveal.active {
    animation-delay: 1.5s !important;
  }
  .kvtitle h2 {
    font-size: 3.8vw;
    letter-spacing: 0px;
  }
  .logogroup {
    font-size: 2.5vw;
    padding: 0;
  }
  
  .logobox img {
    height: 4.5vw;
  }
  .logobox img {
    margin-right: 2vw;
  }
  .organizer,.coorganizer,.logopic,.sctimebox .container {
    padding: 0;
  }
  .sctimebox .container a span,.agtime,.agspeaker{
    display: none;
  }
  .sctimebox .container label,.sctimebox .container span{
    font-size: 3vw;
    margin-bottom: 3vw;
  }
  .sctimebox .container span:nth-child(4){
    margin-bottom: 0;
  }

  .sctimebox .container span{
    padding-right: 0;
  }
  .sctimebox .container a{
    font-size: 4vw;
    padding: 2vw;
    line-height: 1.2;
  }
  .sctimebox .container {
    margin: 4vw 0;
  }
  .agandasec .container {
    font-size: 5vw;
  }
  .agtr div:nth-child(2),.agtr div:nth-child(2) div{
    font-size: 4vw;
    padding: 0;
  }
  .agtr{
    border-bottom: 1px #CCC solid;
  }
  .agandasec .container h3 {
    font-size: 5vw;
  }
  .agandasec .container label, .speaker label {
    padding: 0 2vw;
    font-size: 3vw;
    margin: 2vw 0 !important;
  }
  .setmidle{
    display: flex;
    align-items: center;
  }



  .gapflash,.gapflash02{
    width: 100%;
  }
  .gapflash img,.gapflash02 img{
    width: 120%;
  }
  .agandasec {
    background: linear-gradient(to bottom, rgba(41, 35, 59, 1) 85%, rgba(2, 11, 31, 0.26) 100%), url(../img/kv_bgview.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .speaker label {
    margin: -15% 0 5% -8% !important;
    padding: 0.5vw 2vw;
    font-size: 4vw;
  }
  .formiframe iframe {
    width: 120%;
  }
  .formiframe iframe {
    height: 2050px;
  }
  .notext {
    width: calc(100% - 30px);
  }
  
  .formSection {
    background: linear-gradient(to bottom, rgba(41, 35, 59, 1) 95%, rgba(2, 11, 31, 0.26) 100%), url(../img/kv_bgview.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .footer {
      width: 95%;
      padding: 5vw 0;
  }
  .footer img {
    margin: 2vw 1vw;
  }
  .logobox .organizer img:nth-child(2) {
    padding-left: 2vw;
  }
  .footer .organizer{
    margin-bottom: 5vw;
  }
  .footer .logobox {

  }
}

