@charset "UTF-8";
#reward_popup {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25%;
}
#reward_popup.close {
  display: none;
}
#reward_popup .content_area {
  position: relative;
  background: linear-gradient(45deg, #0c0c62, rgba(72, 0, 106, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5% 0;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(177, 177, 255, 0.6);
}
#reward_popup .content_area .closeBtn {
  position: absolute;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border: solid 2px white;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  cursor: pointer;
  top: 5%;
  right: 5%;
}
#reward_popup .content_area .title {
  color: white;
  font-size: 32px;
  font-weight: bold;
}
#reward_popup .content_area .content {
  color: white;
  font-size: 18px;
  padding: 3% 5% 5% 5%;
}
#reward_popup .content_area .reward {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
#reward_popup .content_area .reward .pic {
  width: 100px;
}
#reward_popup .content_area .reward .pic img {
  width: 100%;
  max-width: 100%;
}
#reward_popup .content_area .reward .list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 25px;
}
#reward_popup .content_area .reward .list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px white;
  gap: 30px;
  padding: 0 15px 5px 0;
}
#reward_popup .content_area .reward .list .row .name {
  color: #41D3E1;
  font-size: 20px;
  font-weight: bold;
}
#reward_popup .content_area .reward .list .row .phone {
  width: 40%;
  color: white;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: -2rem;
  bottom: 0.5rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(-200%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_primary {
  background: transparent;
  color: #fff;
}
.fix_aside .fx_item.is_primary span {
  font-size: 1rem;
}
.fix_aside .fx_item:hover {
  transform: translateY(-5px);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 90%;
  top: 100%;
  width: 70%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.pic {
  transform: translate(-100%, -100%);
}
.fix_aside .fx_item .in_wrap.pic img {
  width: 200px;
  max-width: 200px;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/icons/arrow_top.png") center/contain no-repeat;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 80px;
  z-index: 999;
  transition: all 0.2s ease-out;
}
header.is_active .nav_area .logo {
  width: 140px;
}
header.is_active .nav_area .logo.en {
  width: 180px !important;
}
header.is_active .nav_area ul {
  height: 65px;
}
header.is_active .nav_area ul li a {
  font-size: 1rem;
}
header .nav_language {
  position: absolute;
  top: 50%;
  right: 70px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_language .hover_holder {
  color: white;
}
header .nav_mobile {
  display: none;
}
header .nav_language {
  position: absolute;
  top: 50%;
  right: 70px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_language .hover {
  display: inline-block;
  position: relative;
}
header .nav_language .hover img {
  width: 30px;
  line-height: 0;
}
header .nav_language .hover:hover .hover_menu {
  display: flex;
}
header .nav_language .hover_holder {
  cursor: pointer;
}
header .nav_language .hover_holder img {
  filter: drop-shadow(0px 0px 5px #fff);
}
header .nav_language .hover_menu {
  position: absolute;
  top: auto;
  right: 0;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header .nav_language .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  text-decoration: none;
}
header .nav_language .hover_menu .hover_item p {
  position: relative;
  box-sizing: border-box;
  padding: 5px 15px;
  width: 100px;
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  color: #071f37;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0 10px 0 10px;
  transition: all 0.3s ease-in-out;
}
header .nav_language .hover_menu .hover_item p:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}
header .nav_language .hover_menu .hover_item p span {
  font-size: 12px;
}
header .nav_sns {
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_sns .hover {
  display: inline-block;
  position: relative;
}
header .nav_sns .hover img {
  width: 40px;
  line-height: 0;
}
header .nav_sns .hover:hover .hover_menu {
  display: block;
}
header .nav_sns .hover_holder {
  cursor: pointer;
}
header .nav_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}
header .nav_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}
header .nav_area {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav_area .logo {
  position: relative;
  width: 160px;
  height: auto;
  margin: 0 auto 0 0;
  display: block;
  transition: all 0.2s ease-out;
}
header .nav_area .logo.en {
  width: 200px;
  margin-top: 10px;
}
header .nav_area .logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
header .nav_area ul {
  position: relative;
  width: auto;
  height: 70px;
  margin: 0 1% 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
header .nav_area ul li {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
header .nav_area ul li a {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  padding: 3px;
  color: #24227c;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1.44px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a.active {
  color: #5b90f0;
  font-weight: 700;
}
header .nav_area ul li a.register {
  position: relative;
  color: white;
  padding: 15px;
  background: #172A88;
  overflow: visible;
}
header .nav_area ul li a.register:before {
  content: "";
  position: absolute;
  background: orange;
  width: 18px;
  height: 18px;
  border: solid 3px rgba(255, 255, 255, 0.95);
  left: 92%;
  top: -5px;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a.register:hover {
  background: orange;
}
header .nav_area ul li a.register:hover:before {
  background: #172A88;
}
header .nav_area ul li a.English {
  margin-left: 20px;
}
header .nav_area ul li.btn a {
  padding: 8px 25px;
  color: #fff;
  border: 1px solid blue;
  border-radius: 5px;
}
header .nav_area ul li.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #172A88, purple);
  z-index: -1;
  transition: all 0.2s ease-out;
}
header .nav_area ul li.btn a:hover {
  color: #172A88;
  border: 1px solid #172A88;
}
header .nav_area ul li.btn a:hover::before {
  left: 100%;
}

.slick-prev {
  left: -35px;
}

.slick-next {
  right: -35px;
}

.slick-next:before, .slick-prev:before {
  font-size: 32px;
  color: #0C0C62;
}

.send_popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.send_popup .content {
  width: 50%;
  padding: 5% 0;
  background: linear-gradient(45deg, #9455ff, #055bfa, #45b7c4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  text-align: center;
  border: solid 2px white;
  border-radius: 15px;
  font-size: 18px;
  line-height: 2rem;
  font-weight: 500;
}

.modal-content {
  background: linear-gradient(45deg, #9455ff, #055bfa, #45b7c4);
  border: solid 1px white;
  border-radius: 15px;
  text-align: center;
  line-height: 1rem;
  font-weight: 400;
  line-height: 1.8rem;
  color: white;
  font-size: 1.1rem;
}

.modal-body {
  padding-top: 50px;
}
.modal-body .game_pop {
  position: relative;
  width: 100%;
}
.modal-body .game_pop .form_text {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 45px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .modal-body .game_pop .form_text {
    padding: 0;
    font-size: 14px;
  }
}
.modal-body .game_pop input {
  position: relative;
  width: 100%;
  max-width: 330px;
  box-sizing: border-box;
  padding: 5px 15px;
  font-size: 21px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #fff;
  color: #fff;
  display: block;
  margin: 15px auto;
}

.modal-footer {
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-footer .btn {
  background-color: #FEDA52;
  color: #0C0C62;
  padding: 0.5rem 1rem;
}

#home {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
#home .indexMask_L {
  width: 1200px;
  height: auto;
  position: absolute;
  z-index: 3;
  left: 42%;
  top: 52%;
  transform: translateX(-70%);
}
#home .indexMask_L .blockMask_L {
  width: 40%;
  transform: translateY(18%);
  height: auto;
  position: absolute;
  overflow: hidden;
}
#home .indexMask_L .blockMask_L img {
  width: 100%;
}
#home .indexMask_L .strokekMask_L {
  width: 28%;
  transform: translateY(10%);
  height: auto;
  position: absolute;
  overflow: hidden;
}
#home .indexMask_L .strokekMask_L img {
  width: 100%;
}
#home .indexMask_R {
  width: 1200px;
  height: auto;
  position: absolute;
  z-index: 3;
  top: 11.5%;
  left: 65%;
  transform: translateX(20%);
}
#home .indexMask_R .blockMask_R {
  width: 70%;
  transform: translateY(-10%);
  height: auto;
  position: absolute;
  overflow: hidden;
}
#home .indexMask_R .blockMask_R img {
  width: 100%;
}
#home .indexMask_R .strokekMask_R {
  width: 40%;
  transform: translateY(205%);
  height: auto;
  position: absolute;
  overflow: hidden;
}
#home .indexMask_R .strokekMask_R img {
  width: 100%;
}
#home .indexMask_R .strokekMask_R2 {
  width: 38%;
  transform: translateY(330%);
  height: auto;
  position: absolute;
  overflow: hidden;
}
#home .indexMask_R .strokekMask_R2 img {
  width: 100%;
}
#home .cubes_R {
  width: 35%;
  position: absolute;
  z-index: 0;
  left: 77%;
  top: 7%;
}
#home .cubes_R img {
  width: 100%;
  max-width: 100%;
}
#home .cubes_L {
  width: 30%;
  position: absolute;
  z-index: 0;
  left: 0%;
  top: 43%;
}
#home .cubes_L img {
  width: 100%;
  max-width: 100%;
}
#home .cubes_R2 {
  width: 40%;
  position: absolute;
  z-index: 0;
  left: 68%;
  top: 75%;
}
#home .cubes_R2 img {
  width: 100%;
  max-width: 100%;
}
#home .bg_part1 {
  background: linear-gradient(145deg, #576DBB 30.69%, #8178C7 90.66%);
}
#home .bg_part2 {
  background: linear-gradient(145deg, #576DBB 30.69%, #8178C7 90.66%);
}
#home .sections .title {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections .title.en {
  font-size: 1.8rem;
}
#home .sections .title.sp {
  display: inline-block;
  margin-top: -5%;
  width: 80%;
  padding: 2% 10%;
  background: linear-gradient(90deg, #586CBB, #6771BF);
}
#home .sections .sub_title {
  color: white;
  line-height: 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 10%;
  margin-top: 25px;
}
#home .sections .sub_title a {
  color: #FF9839;
}
#home .sections .title2 {
  margin-top: 10%;
  letter-spacing: 1.4rem;
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections.intro {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
#home .sections.intro .bg {
  position: absolute;
  width: 180%;
  filter: none;
  animation: bg_scale 10s ease-in-out infinite alternate both;
}
#home .sections.intro .bg img {
  width: 100%;
  max-width: 100%;
}
@keyframes bg_scale {
  0% {
    transform: scale(1) rotate(0);
    filter: none;
  }
  100% {
    transform: scale(1.25) rotate(-8deg);
    filter: hue-rotate(30deg);
  }
}
#home .sections.intro .tit {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 5% 15% 15% 15%;
}
#home .sections.intro .tit .df_logo {
  width: 30%;
  margin-left: -10%;
}
#home .sections.intro .tit .df_logo img {
  width: 100%;
  max-width: 100%;
}
#home .sections.intro .tit .main_title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 10%;
}
#home .sections.intro .tit .main_title img {
  width: 100%;
  max-width: 100%;
}
#home .sections.intro .tit .content {
  margin-top: 10%;
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.54px;
  text-align: left;
}
#home .sections.features .featureItems {
  position: relative;
  padding: 4% 0 8% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
#home .sections.features .featureItems.en .item .img_inner .describtion {
  transform: translate(-50%, -30%);
}
#home .sections.features .featureItems .item {
  position: relative;
  flex: 0 0 30%;
  transition: all 0.6s ease-out;
}
#home .sections.features .featureItems .item:hover .img_inner .mask {
  opacity: 1;
}
#home .sections.features .featureItems .item:hover .img_inner .title {
  top: 35%;
}
#home .sections.features .featureItems .item:hover .img_inner .describtion {
  top: 55%;
  opacity: 1;
}
#home .sections.features .featureItems .item .img_inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#home .sections.features .featureItems .item .img_inner img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}
#home .sections.features .featureItems .item .img_inner .mask {
  position: absolute;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 1s ease-out;
}
#home .sections.features .featureItems .item .img_inner .title {
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.44px;
  line-height: normal;
  transition: all 0.4s ease-out;
}
#home .sections.features .featureItems .item .img_inner .describtion {
  width: 100%;
  max-width: 100%;
  position: absolute;
  padding: 0 12%;
  z-index: 3;
  opacity: 0;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
  line-height: 1.4rem;
  transition: all 0.6s ease-out;
}
#home .sections.speakers {
  padding: 10% 0 8% 0;
  background: url("img/extra/spk_bg.png");
  background-color: #0c0c62;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .sections.speakers.en {
  background-color: #99C1FD;
}
#home .sections.speakers .title span:after {
  border: none;
}
#home .sections.speakers .slick_banner {
  position: relative;
  margin-top: 4%;
}
#home .sections.speakers .slick_banner .slick_item {
  flex: 0 0 25%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 20px;
}
#home .sections.speakers .slick_banner .slick_item .pic img {
  width: 100%;
  max-width: 100%;
}
#home .sections.speakers .slick_banner .slick_item .item_Area {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
}
#home .sections.speakers .slick_banner .slick_item .item_Area .item_title {
  color: white;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  font-weight: 600;
  margin: 0 0 1% 0;
}
#home .sections.speakers .slick_banner .slick_item .item_Area .item_content {
  color: white;
  font-size: 1rem;
  font-weight: 500;
}
#home .sections.speakers .slick_banner .slick_item .item_Area .item_content2 {
  position: relative;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0c0c62;
  margin: 0 0 0 15px;
}
#home .sections.speakers .slick_banner .slick_item .item_Area .item_content2:before {
  position: absolute;
  content: "";
  background: url("img/extra/spk_icon@2x.png");
  width: 15px;
  height: 15px;
  left: -15px;
  top: 5px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#home .sections.speakers .slick_banner .slick-dots {
  bottom: -80px;
}
#home .sections.speakers .slick_banner .slick-dots li button:before {
  color: rgba(255, 255, 255, 0.8);
}
#home .sections.speakers .slick_banner .slick-dots li.slick-active button::before {
  color: white;
  box-shadow: 0px 0px 1px black;
  border: solid 1px white;
  border-radius: 50px;
}
#home .sections.keyword {
  background-color: #0c0c62;
  padding: 8% 0 5% 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections.keyword .item_row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 50px;
}
#home .sections.keyword .item_row .item {
  flex: 0 0 5%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.6s;
  transform: translateY(5px);
}
#home .sections.keyword .item_row .item:hover {
  transition: all 0.6s;
  transform: translateY(0px);
}
#home .sections.keyword .item_row .item:hover .des {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item:hover .count {
  opacity: 1;
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item:hover .keyword {
  opacity: 1;
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item.voted {
  transform: translateY(0px);
}
#home .sections.keyword .item_row .item.voted .des {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item.voted .count {
  opacity: 1;
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item.voted .keyword {
  opacity: 1;
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item.voted .vote_btn {
  opacity: 1;
  background-color: white;
}
#home .sections.keyword .item_row .item.voted .vote_btn span:after {
  content: "已投票";
  color: #0C0C62;
  font-weight: 500;
}
#home .sections.keyword .item_row .item .des {
  opacity: 0.6;
  transform: translateY(-10px);
  transition: all 0.6s;
}
#home .sections.keyword .item_row .item .des img {
  width: 100%;
  max-width: 100%;
}
#home .sections.keyword .item_row .item .keyword {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: #9ed342;
  transition: all 0.6s;
  opacity: 1;
}
#home .sections.keyword .item_row .item .keyword.word2 {
  color: #f29634;
}
#home .sections.keyword .item_row .item .keyword.word3 {
  color: #40d3e2;
}
#home .sections.keyword .item_row .item .keyword.word4 {
  color: #00a956;
}
#home .sections.keyword .item_row .item .keyword.word5 {
  color: #ac80b7;
}
#home .sections.keyword .item_row .item .keyword.word6 {
  color: #eb6b8a;
}
#home .sections.keyword .item_row .item .keyword.word7 {
  color: #4a6aac;
}
#home .sections.keyword .item_row .item .keyword.word8 {
  color: #feda52;
}
#home .sections.keyword .item_row .item .keyword.word9 {
  color: #43d1a1;
}
#home .sections.keyword .item_row .item .count {
  position: relative;
  padding: 25px 35px 60px 35px;
  opacity: 0.6;
  transition: all 0.6s;
  overflow: hidden;
}
#home .sections.keyword .item_row .item .count.count1 .bg {
  background: linear-gradient(#9ed342, rgba(158, 211, 66, 0));
}
#home .sections.keyword .item_row .item .count.count2 .bg {
  background: linear-gradient(#f29634, rgba(242, 150, 52, 0));
}
#home .sections.keyword .item_row .item .count.count3 .bg {
  background: linear-gradient(#40d3e2, rgba(64, 211, 226, 0));
}
#home .sections.keyword .item_row .item .count.count4 .bg {
  background: linear-gradient(#00a956, rgba(0, 169, 86, 0));
}
#home .sections.keyword .item_row .item .count.count5 .bg {
  background: linear-gradient(#ac80b7, rgba(172, 128, 183, 0));
}
#home .sections.keyword .item_row .item .count.count6 .bg {
  background: linear-gradient(#eb6b8a, rgba(235, 107, 138, 0));
}
#home .sections.keyword .item_row .item .count.count7 .bg {
  background: linear-gradient(#4a6aac, rgba(74, 106, 172, 0));
}
#home .sections.keyword .item_row .item .count.count8 .bg {
  background: linear-gradient(#feda52, rgba(254, 218, 82, 0));
}
#home .sections.keyword .item_row .item .count.count9 .bg {
  background: linear-gradient(#43d1a1, rgba(67, 209, 161, 0));
}
#home .sections.keyword .item_row .item .count .bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  max-height: 115px;
}
#home .sections.keyword .item_row .item .count span {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 20px;
}
#home .sections.keyword .item_row .item .vote_btn {
  margin-top: 25px;
  border: solid 1px white;
  border-radius: 25px;
  text-decoration: none;
}
#home .sections.keyword .item_row .item .vote_btn span:after {
  position: relative;
  content: " 投 票 ";
  color: white;
  letter-spacing: 0.2rem;
  font-size: 14px;
  padding: 5px 15px;
}
#home .sections.keyword .item_row .item.item2 .medium_title:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  left: -50px;
  background: url("../../assets/images/icons/monitor.png");
  background-size: contain;
  background-position: center;
}
#home .sections.keyword .send_btn {
  position: relative;
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  pointer-events: none;
}
#home .sections.keyword .send_btn.active {
  opacity: 1;
  pointer-events: all;
}
#home .sections.keyword .send_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections.keyword .send_btn a img {
  width: 40%;
  max-width: 100%;
}
#home .sections.location {
  padding: 8% 0;
  background: url("img/extra/location_bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections.location .sub_title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
}
#home .sections.location .loc_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 8% 0 3% 0;
}
#home .sections.location .loc_row .pic {
  width: 500px;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
}
#home .sections.location .loc_row .pic img {
  width: 500px;
}
#home .sections.location .loc_row .googleMap {
  display: inline-block;
  width: 500px;
  max-width: 100%;
  height: 280px;
}
#home .sections.location .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin-top: 100px;
}
#home .sections.location .btns .btn {
  width: 25%;
}
#home .sections.location .btns .btn img {
  width: 100%;
  max-width: 100%;
}
#home .sections.gifts {
  padding: 10% 0 8% 0;
  background: url("img/extra/bg_top.jpg");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #a3ccff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections.gifts .title {
  color: #0c0c62;
  letter-spacing: 0.6rem;
}
#home .sections.gifts .gift_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 80px;
}
#home .sections.gifts .gift_row .gift_item {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#home .sections.gifts .gift_row .gift_item .pic {
  flex: 0 0 40%;
  width: 200px;
}
#home .sections.gifts .gift_row .gift_item .pic img {
  width: 100%;
  max-width: 100%;
  border-radius: 100%;
}
#home .sections.gifts .gift_row .gift_item .content {
  flex: 0 0 65%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
#home .sections.gifts .gift_row .gift_item .content .title {
  font-size: 28px;
  letter-spacing: 3px;
}
#home .sections.gifts .gift_row .gift_item .content .des {
  color: #0c0c62;
  font-size: 14px;
}
#home .sections.gifts .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin-top: 100px;
}
#home .sections.gifts .btns .btn {
  width: 25%;
}
#home .sections.gifts .btns .btn img {
  width: 100%;
  max-width: 100%;
}
#home .sections.email {
  position: relative;
  overflow: hidden;
  padding: 8% 0;
}
#home .sections.email .orange_outter {
  width: 1200px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
#home .sections.email .orange_outter .orange_inner {
  position: absolute;
  width: 116px;
  height: 87px;
}
#home .sections.email .orange_outter .orange_inner .orangeStroke {
  position: absolute;
}
#home .sections.email .orange_outter .orange_inner .orangeStroke img {
  width: 29px;
}
#home .sections.email .orange_outter .orange_inner.orange1 {
  left: 13%;
  margin-top: 2%;
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_1 {
  left: 0px;
  top: 0px;
  animation: orangeMove1 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove1 {
  0% {
    top: 0px;
    left: 0px;
  }
  50% {
    top: 29px;
    left: 0px;
  }
  100% {
    top: 29px;
    left: 0px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_2 {
  left: 58px;
  top: 29px;
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_3 {
  left: 29px;
  top: 58px;
  animation: orangeMove3 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove3 {
  0% {
    left: 29px;
    top: 58px;
  }
  50% {
    left: 29px;
    top: 29px;
  }
  100% {
    left: 29px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_4 {
  left: 87px;
  top: 58px;
  animation: orangeMove4 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove4 {
  0% {
    left: 87px;
    top: 58px;
  }
  50% {
    left: 87px;
    top: 29px;
  }
  100% {
    left: 87px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange2 {
  margin-top: 2%;
  left: 76%;
  transform: rotateY(180deg);
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_1 {
  left: 0px;
  top: 0px;
  animation: orangeMove2_1 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove2_1 {
  0% {
    left: 0px;
    top: 0px;
  }
  50% {
    left: 0px;
    top: 29px;
  }
  100% {
    left: 0px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_2 {
  left: 58px;
  top: 29px;
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_3 {
  left: 29px;
  top: 58px;
  animation: orangeMove2_3 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove2_3 {
  0% {
    left: 29px;
    top: 58px;
  }
  50% {
    left: 29px;
    top: 29px;
  }
  100% {
    left: 29px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_4 {
  left: 87px;
  top: 58px;
  animation: orangeMove2_4 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove2_4 {
  0% {
    left: 87px;
    top: 58px;
  }
  50% {
    left: 87px;
    top: 29px;
  }
  100% {
    left: 87px;
    top: 29px;
  }
}
#home .sections.email .formArea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .sections.email .formArea .email_title {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.72px;
  line-height: 2rem;
}
#home .sections.email .formArea .email_title.en {
  font-size: 1rem;
  line-height: initial;
}
#home .sections.email .formArea .email_input {
  width: 100%;
  padding: 0 20%;
  margin-top: 30px;
}
#home .sections.email .formArea .email_input.en {
  margin-top: 20px;
}
#home .sections.email .formArea .email_input input {
  width: 100%;
  padding: 5px 10px;
  border: solid 1px orange;
}
#home .sections.email .formArea .email_submit {
  position: relative;
  margin-top: 50px;
  overflow: visible;
}
#home .sections.email .formArea .email_submit:hover input {
  background: #061F37;
  border: solid 2px orange;
  color: orange;
}
#home .sections.email .formArea .email_submit:hover:before {
  background: #061F37;
  border: solid 3.5px orange;
}
#home .sections.email .formArea .email_submit input {
  padding: 15px 60px;
  background: orange;
  border: solid 2px #061F37;
  color: white;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2.32px;
  transition: all 0.2s ease-in-out;
}
#home .sections.email .formArea .email_submit:before {
  content: "";
  position: absolute;
  background: orange;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: solid 3.5px #061f37;
  left: -5px;
  top: -5px;
  transition: all 0.2s ease-in-out;
}
#home .blank_bg {
  width: 100%;
  max-width: 100%;
}
#home .tab {
  position: relative;
  width: 100%;
  background-color: rgba(29, 30, 39, 0.5);
  background-image: url("../../assets/images/layout/tab_mask.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10% 0 5% 0;
  margin: 0;
}
#home .tab .kv_arrow {
  position: absolute;
  width: 7%;
  max-width: 7%;
  z-index: 100;
  left: 50%;
  transform: translate(-50%);
  top: 0;
  animation: arrow_shine 1.2s ease-in-out both infinite;
}
#home .tab_cnt {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 20px 0 0 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home .tab_cnt .tab_pannel {
  padding: 5% 0 0 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .tab_cnt .tab_pannel .tab_section {
  width: 100%;
  max-width: 100%;
  padding: 1% 13%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .tab_cnt .tab_pannel .tab_section .tab_item {
  opacity: 0.4;
}
#home .tab_cnt .tab_pannel .tab_section .tab_item.active {
  opacity: 1;
}
#home .tab_cnt .tab_pannel .tab_section .tab_item img {
  width: 65%;
  max-width: 65%;
}
#home .tab_cnt .tab_pannel .tab_content {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .tab_cnt .tab_pannel .tab_content .content_item {
  display: none;
}
#home .tab_cnt .tab_pannel .tab_content .content_item.active {
  display: block;
}
#home .tab_cnt .tab_pannel .tab_content .content_item img {
  width: 100%;
  max-width: 100%;
}
#home .tab_cnt .t {
  margin-top: 10%;
  position: relative;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
#home .brand {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(rgba(29, 30, 39, 0.5), #1d1e27);
  margin: 0;
}
#home .brand .t {
  padding: 3% 0;
  position: relative;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
#home .brand .kv_arrow {
  position: absolute;
  width: 5%;
  max-width: 5%;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: 98%;
  animation: arrow_shine 1.2s ease-in-out both infinite;
}
#home .form {
  position: relative;
  padding: 5% 0;
}
#home .form_area {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#home .form_area-cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}
#home .form_area-cnt .groupTit {
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-align: left;
  color: white;
  line-height: 1.4em;
  z-index: 1;
  top: 0;
}
#home .form_area-cnt form {
  position: relative;
  margin-top: 5%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
#home .form_area-cnt form .input_area {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .form_area-cnt form .input_area .inputRow {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .form_area-cnt form .input_area .inputRow input {
  width: 100%;
  max-width: 100%;
  padding: 10px 0 10px 10px;
  margin: 1.5% 2%;
  border: none;
  border-radius: 6px;
}
#home .form_area-cnt form .textArea {
  margin-top: 1.5%;
}
#home .form_area-cnt form .textArea #detail_content {
  border: none;
  border-radius: 6px;
  padding: 10px 0 10px 10px;
  width: 650px;
}
#home .form_area-cnt .btn_submit {
  position: relative;
  width: 20%;
  text-align: center;
  margin: 55px auto;
}
#home .exp {
  position: relative;
  padding: 5% 0 1% 0;
  background-color: #1D1E27;
}
#home .exp_cnt {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}
#home .exp_cnt .t {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.1em;
}
#home .exp_cnt .sub_t {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #FFF;
  line-height: 1.5;
  padding: 0 10%;
  margin-top: 0;
}
#home .exp_cnt .exp_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5% 15%;
  transform: translateX(5%);
}
#home .exp_cnt .exp_content .exp_rows {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .exp_cnt .exp_content .exp_rows .exp_line {
  width: 100%;
  max-width: 100%;
  text-align: left;
  color: white;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.1rem;
  padding: 2% 0;
}
#home .exp_cnt .exp_content .exp_rows .exp_line .exp_title {
  color: #F39800;
  font-weight: 800;
  font-size: 32px;
  padding: 0 2%;
}

@media (max-width: 768px) and (max-width: 768px) {
  header .nav_mobile {
    position: relative;
    display: block;
  }
  header .nav_mobile-btn {
    position: absolute;
    top: 5px;
    right: 0px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_mobile-btn-line {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background: #172A88;
    border-radius: 4px;
    margin: 2.5px 0;
  }
  header .nav_language {
    position: absolute;
    top: 110px;
    right: 5px;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_sns {
    position: absolute;
    top: 50px;
    right: 0;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_area {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    justify-content: flex-start;
  }
  header .nav_area .logo {
    width: 200px;
    margin: 50px auto;
  }
  header .nav_area ul {
    position: relative;
    width: auto;
    height: auto;
    margin: 2% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_area ul li {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_area ul li a {
    position: relative;
    width: auto;
    height: auto;
    box-sizing: border-box;
    padding: 3px;
    color: #172A88;
    font-size: 1.6rem;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  header .nav_area ul li a:hover {
    color: #172A88;
  }
  header .nav_area ul li.btn a {
    padding: 12px 35px;
    color: #fff;
    background-color: #172A88;
    border: 1px solid #172A88;
    border-radius: 5px;
  }
  header .nav_area ul li.btn a:hover {
    color: #172A88;
    background-color: #fff;
  }
  header .nav_area ul li.active a {
    color: #172A88;
  }
  #reward_popup {
    padding: 0;
  }
  #reward_popup .content_area {
    padding: 10% 8% 5% 8%;
  }
  #reward_popup .content_area .title {
    font-size: 24px;
  }
  #reward_popup .content_area .content {
    font-size: 18px;
    padding: 0 2%;
    margin-top: 5%;
  }
  #reward_popup .content_area .reward {
    gap: 50px;
    margin-top: 10%;
  }
  #reward_popup .content_area .reward .pic {
    width: 40%;
  }
  #reward_popup .content_area .reward .list .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 5px 0;
  }
  #reward_popup .content_area .reward .list .row .name {
    font-size: 18px;
  }
  #home .sections.intro {
    background: url("img/extra/kv_bg.png");
    background-size: cover;
    background-position: top center;
    padding: 0 0 50px 0;
  }
  #home .sections.intro .bg {
    display: none;
  }
  #home .sections.intro .container .tit {
    padding: 2% 8%;
  }
  #home .sections.intro .container .tit .df_logo {
    position: relative;
    width: 60%;
    margin-top: 50px;
    margin-left: 1%;
  }
  #home .sections.speakers {
    padding-bottom: 10%;
  }
  #home .sections.speakers .slick_banner {
    margin-top: 50px;
  }
  #home .sections.keyword .item_row {
    flex-wrap: wrap;
    gap: 10px;
  }
  #home .sections.keyword .item_row .item {
    margin: 0 0 10% 0;
  }
  #home .sections.keyword .send_btn {
    margin-top: 50px;
  }
  #home .sections.keyword .send_btn a img {
    width: 60%;
  }
  #home .sections.gifts {
    flex-direction: column;
  }
  #home .sections.gifts .gift_row {
    flex-direction: column;
  }
  #home .sections.gifts .gift_row .gift_item {
    flex-direction: column;
    margin-bottom: 50px;
  }
  #home .sections.gifts .gift_row .gift_item .pic {
    flex: 0 0 1;
  }
  #home .sections.gifts .gift_row .gift_item .content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  #home .sections.gifts .gift_row .gift_item .content .des {
    text-align: center;
    font-size: 14px;
  }
  .modal .modal-dialog {
    max-width: 800px;
  }
  .modal .modal-content {
    margin: 50px auto;
    padding: 10px 20px;
  }
  .modal .modal-header .modal-title {
    font-size: 24px;
  }
  .modal .modal-header .sub {
    font-size: 16px;
  }
  .modal .modal-body {
    font-size: 16px;
    line-height: 1.3;
  }
  .modal .modal-footer .ps {
    font-size: 18px;
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  .modal .modal-footer .btn {
    padding: 10px 25px;
    font-size: 20px;
    font-weight: bold;
  }
}
@media (max-width: 768px) {
  #home .cubes_R, #home .cubes_R2, #home .cubes_L {
    display: none;
  }
  #home .sections .title {
    padding: 8% 0;
    letter-spacing: 0px;
    line-height: 2.8rem;
    text-align: center;
    font-size: 28px;
  }
  #home .sections .title span.en {
    display: none;
  }
  #home .sections .title span.en:after {
    display: none;
  }
  #home .sections .title.sp {
    width: 100%;
    display: inline-block;
    padding: 2% 0%;
    margin-top: -6%;
  }
  #home .sections .title.sp span {
    letter-spacing: 18px;
  }
  #home .sections .title.sp span.en {
    display: none;
  }
  #home .sections .title.sp span.en:after {
    display: none;
  }
  #home .sections .title2 {
    font-size: 24px;
    letter-spacing: 0.4rem;
    margin-top: 50px;
  }
  #home .sections.intro .content {
    font-size: 1.4rem;
  }
  #home .sections .sub_title {
    font-size: 16px;
    margin-top: 0;
  }
  #home .sections.features .featureItems {
    flex-direction: column;
    gap: 0px;
  }
  #home .sections.features .featureItems .item .img_inner .title {
    font-size: 2.2rem;
  }
  #home .sections.features .featureItems .item .img_inner .describtion {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  #home .sections.speakers {
    background-size: cover;
    background-position: top center;
  }
  #home .sections.speakers .slick_banner .slick-dots {
    bottom: -40px;
  }
  #home .sections.medium .item_row {
    flex-direction: column;
  }
  #home .sections.medium .item_row .item {
    margin-top: 50px;
  }
  #home .sections.medium .item_row .item .medium_content {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  #home .sections.location .sub_title2 {
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 25px;
  }
  #home .sections.location .loc_row {
    gap: 0px;
    flex-direction: column;
  }
  #home .sections.email .formArea .email_input {
    padding: 0;
  }
  #home .sections.gifts .container .btns {
    margin: 0 0 100px 0;
    gap: 15px;
    flex-direction: column;
  }
  #home .sections.gifts .container .btns .btn {
    width: 70%;
  }
  #home .form_area-cnt .btn_submit {
    margin: 55px 0;
    margin-left: 25px;
  }
}/*# sourceMappingURL=style.css.map */