@charset "utf-8";
/* 首頁專用 */
/**-------------------------------------------------------------------------------歡迎詞**/
#WelcomeArea {
  margin: 40px 0px 0px 0px;
  z-index: 99;
  position: relative;
}
#WelcomeArea .main {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
#WelcomeArea .AreaTitle img {
  margin: auto;
  width: 120px;
}
/*區塊標題*/
.AreaTop {
  margin: 40px 0px;
  z-index: 90;
  position: relative;
}
.AreaTitle {
  text-align: center;
  padding: 30px 0px 20px 0px;
}
.AreaTitle .en {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  padding: 10px 0px;
  color: #000;
  z-index: 3;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.AreaTitle .zh {
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1;
}
/**-------------------------------------------------------------------------------Banner**/
#bannerArea {
  margin-top: 120px;
  z-index: 2;
  position: relative;
}
.bannerinner {
  width: 90%;
  margin: 0 auto;
}
#bannerArea:after {
  content: '';
  display: block;
  position: absolute;
  background: url(../../images/event/banner_bg.svg) top center no-repeat;
  background-size: contain;
  width: 100%;
  height: 84.8rem;
  left: 0px;
  top: -150px;
  z-index: -1;
}
@media screen and (max-width: 1240px) {
  #bannerArea {
    margin-top: 50px;
    padding: 20px 0px 0px 0px;
  }
  #bannerArea:after {
    top: -50px;
  }
}
#bannerArea img {
  width: 100%;
  display: block;
  border-radius: 30px;
}
#bannerArea ul {
  position: relative;
}
.bxslider li {
  position: relative;
}
.bxslider li img {
  width: 100%;
  display: block;
}
/**-------------------------------------------------消息公告區**/
#NewsArea {
    margin: 100px 0px 40px 0px;
    position: relative;
    z-index: 99;
}
#NewsArea .AreaTitle img {
  width: 50px;
}
#NewsArea .News_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
#NewsArea .AreaTop {
  width: 220px;
}
#NewsArea .AreaTop .AreaTitle {
  text-align: left;
}
.News_main {
  width: calc(100% - 220px);
}
.Newslist {
  position: relative;
}
@media screen and (max-width: 768px) {
  #NewsArea {
    margin: 0px 0px 40px 0px;
  }
  #NewsArea .News_content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #NewsArea .AreaTop {
    width: 100%;
    text-align: center;
  }
  .News_main {
    width: 100%;
  }
  #NewsArea .AreaTop .AreaTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.Newslist:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #10a5c3;
  content: "";
  height: 3px;
  border-radius: 10px;
}
.news_newsItem {
  display: flex;
  position: relative;
  align-items: center;
  padding: 15px 0px 10px 0px;
}
.news_newsItem:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #10a5c3;
  height: 1px;
  border-radius: 10px;
}
.newsItemDate {
  color: #10a5c3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  width: 100px;
}
.newsItemText {
  width: calc(100% - 120px);
}
.newsItemDate .day {
  font-size: 38px;
}
/**-------------------------------------------------講者*/
#SpeakerArea {
  position: relative;
  padding: 20px 0px 60px 0px;
}
#SpeakerArea .speaker_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
#SpeakerArea:after {
  content: '';
  display: block;
  position: absolute;
  background: url(../../images/event/home_bg01.svg) top center no-repeat;
  background-size: contain;
  width: 100%;
  height: 84.8rem;
  left: 0px;
  top: -50px;
  z-index: 0;
}
#SpeakerArea .AreaTitle img {
  width: 50px;
  margin: auto;
}
#SpeakerArea .Item {
  line-height: 1.8;
  padding: 5px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 4px 8px 0px #eee;
  overflow: hidden;
  position: relative;
  margin: 10px 10px;
}
#SpeakerArea .Item a.ItemBox {
  display: flex;
  border-radius: 20px;
  background-color: #fff;
  transition: all .2s linear;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  flex-wrap: wrap;
}
#SpeakerArea .Item a.ItemBox:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e9eef2;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
  -webkit-transition: -webkit-transform 600ms ease;
  transition: -webkit-transform 600ms ease;
  transition: transform 600ms ease;
  transition: transform 600ms ease, -webkit-transform 600ms ease;
  will-change: transform;
}
#SpeakerArea .Item a.ItemBox:hover::before {
  transform: scaleX(1);
  transform-origin: center left;
}
#SpeakerArea .Item a.ItemBox:hover img {
  transform: scale(1.05);
}
#SpeakerArea .Item h4 {
  overflow: hidden;
  line-height: 1.2;
  font-weight: bold;
  color: #10a5c3;
  font-size: 16px;
}
#SpeakerArea .imgBox {
  width: 85%;
}
#SpeakerArea .imgBox img {
  border-radius: 20px;
  transition: all 0.4s ease;
}
#SpeakerArea .Item .TxtBox {
  padding: 15px 0px 0px 0px;
  text-align: center;
  position: relative;
  width: 100%;
}
.morebox {
  text-align: center;
  margin: 20px 0px 0px 0px;
}
/**-------------------------------------------------重要日程*/
#ScheduleArea {
  margin: 40px 0px;
  position: relative;
}
#ScheduleArea .AreaTitle img {
  width: 50px;
  margin: auto;
}
#snippetContent {
  margin: 30px 0px;
}
.timeline-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap
}
.timeline-steps .timeline-step {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  position: relative;
}
.timeline-steps .owl-item:not(:last-child):after {
  content: "";
  display: block;
  border-top: .25rem dotted #adadad;
  width: 50%;
  position: absolute;
  right: 2px;
  top: 60px;
}
.timeline-steps .owl-item:not(:first-child):before {
  content: "";
  display: block;
  border-top: .25rem dotted #adadad;
  width: 50%;
  position: absolute;
  left: 2px;
  top: 60px
}
.timeline-steps .timeline-content {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-steps .timeline-content .inner-circle {
  line-height: 1.2;
  height: 120px;
  border-radius: 30px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #2a4879;
  color: #fff;
  flex-direction: column;
  margin-bottom: 10px;
  z-index: 999;
}
.timeline-steps .owl-item:nth-child(5n+2) .timeline-content .inner-circle {
  background-color: #4781a8;
}
.timeline-steps .owl-item:nth-child(5n+3) .timeline-content .inner-circle {
  background-color: #94b65b;
}
.timeline-steps .owl-item:nth-child(5n+4) .timeline-content .inner-circle {
  background-color: #e6b45b;
}
.timeline-steps .owl-item:nth-child(5n+5) .timeline-content .inner-circle {
  background-color: #d46340;
}
.timeline-steps .year {
  font-size: 13px;
}
.timeline-steps .month {
  font-size: 28px;
}
.timeline-steps .week {
  font-size: 13px;
}
.timeline-steps .txt {
  text-align: center;
}
#ScheduleArea:after {
  content: '';
  display: block;
  position: absolute;
  background: url(../../images/event/home_bg02.svg) top center no-repeat;
  background-size: contain;
  width: 100%;
  height: 84.8rem;
  left: 0px;
  top: -50px;
  z-index: 0;
}
/**-------------------------------------------------相關影片**/
.videoItem {
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(20%, 20%, 40%, 0.2);
  -moz-box-shadow: 0px 4px 12px 0px rgba(20%, 20%, 40%, 0.2);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(20%, 20%, 40%, 0.2);
  background: #fff;
}
.videobox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.videobox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**-------------------------------------------------相關連結**/
#ADArea {
  position: relative;
}
.ADArea_inner {
  padding: 60px 0px 100px 0px;
}
.ADArea_inner .item {
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px #eee;
  margin: 0px 5px 15px 5px;
}
/*------------------------------------------------------輪播箭頭*/
#bannerArea .owl-theme .owl-dots {
  width: 100%;
  position: absolute;
  bottom: 0px;
  text-align: center;
}
#bannerArea .owl-theme .owl-nav {
  display: none;
}
.owl-carousel.slide_in .owl-nav button.owl-prev, .owl-carousel.slide_in .owl-nav button.owl-next {
  text-decoration: none;
  display: block;
  margin: -20px 0 0;
  position: absolute;
  top: 45%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.owl-carousel.slide_in .owl-nav button.owl-prev {
  left: -50px;
}
.owl-carousel.slide_in .owl-nav button.owl-next {
  right: -50px;
}
.owl-carousel.slide_in .owl-nav button span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 20px;
  display: inline-block;
  color: #fff;
}
.owl-carousel.slide_in .owl-nav button.owl-prev span:before {
  content: "\f104";
}
.owl-carousel.slide_in:hover .owl-nav button.owl-next {
  opacity: 0.7;
  right: -10px;
}
.owl-carousel.slide_in:hover .owl-nav button.owl-prev {
  opacity: 0.7;
  left: -10px;
}
.owl-carousel.slide_in:hover .owl-nav button.owl-prev:hover, .owl-carousel.slide_in:hover .owl-nav button.owl-next:hover {
  opacity: 1;
}
/*箭頭*/
.owl-carousel .owl-nav button span:before {
  color: #fff;
}
.owl-carousel.re-links .owl-nav button.owl-prev, .owl-carousel.re-links .owl-nav button.owl-next {
  top: 30%;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  background: #fff;
  border-radius: 40px;
  border: 1px solid #d4dcdf;
  width: 50px;
  height: 50px;
}