@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Noto+Sans+TC:wght@400;700&display=swap");
@keyframes light {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(6);
  }
}
@keyframes floatS {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes float {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes floatShadow {
  0% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
/*--------------------------------------------*/
body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  font-size: 16px;
  color: #fff;
}

a {
  color: inherit;
}

.g_header .header_menu {
  position: relative;
}
.g_header .header_menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: -200%;
  z-index: 0;
  width: 100%;
  height: 133%;
  background: linear-gradient(180deg, #1b1827, rgba(37, 82, 141, 0));
  transition: top 300ms;
}
.g_header.is_active .header_menu::after {
  top: 0;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_item {
  font-size: 1.125em;
}
.g_header .nav-link:hover {
  color: #e86f08;
}

.all_wrap {
  overflow: hidden;
  min-height: 100vh;
}
.all_wrap.is_watch .kv {
  top: 0;
}
.all_wrap.is_watch .bg_lines {
  background-image: url(img/kv_bg3.jpg);
}
.all_wrap.is_watch .bg_lines div {
  display: none;
}

.bg_lines {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: url(img/kv_bg2.png) center/cover no-repeat;
}
.bg_lines div {
  position: absolute;
  width: 6px;
  border-radius: 3px;
  height: 280px;
  overflow: hidden;
  transform-origin: left bottom;
  transform: rotate(45deg);
}
.bg_lines div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: right top;
  background-image: linear-gradient(0deg, #ff2095, #00d8ff 30%, rgba(0, 216, 255, 0) 80%);
  transform: scaleY(0);
  animation-name: light;
  animation-iteration-count: infinite;
}
.bg_lines div:nth-child(1) {
  left: 3.125%;
  top: 23.15%;
}
.bg_lines div:nth-child(1)::before {
  animation-duration: 3s;
}
.bg_lines div:nth-child(2) {
  left: 7.8%;
  top: 62.03%;
}
.bg_lines div:nth-child(2)::before {
  animation-duration: 2.1s;
  animation-delay: 500ms;
}
.bg_lines div:nth-child(3) {
  left: 28%;
  top: 40.22%;
}
.bg_lines div:nth-child(3)::before {
  animation-duration: 1.8s;
  animation-delay: 1500ms;
}
.bg_lines div:nth-child(4) {
  left: 42%;
  top: 10.4%;
}
.bg_lines div:nth-child(4)::before {
  animation-duration: 3s;
  animation-delay: 600ms;
}
.bg_lines div:nth-child(5) {
  left: 60%;
  top: 62.7%;
}
.bg_lines div:nth-child(5)::before {
  animation-duration: 2.7s;
}
.bg_lines div:nth-child(6) {
  left: 82%;
  top: 8.7%;
}
.bg_lines div:nth-child(6)::before {
  animation-duration: 2.4s;
  animation-delay: 1000ms;
}
.bg_lines div:nth-child(7) {
  left: 87%;
  top: 66.7%;
}
.bg_lines div:nth-child(7)::before {
  animation-duration: 1.8s;
}
.bg_lines div:nth-child(8) {
  left: 33%;
  top: -12%;
}
.bg_lines div:nth-child(8)::before {
  animation-duration: 2.4s;
}

.main_content {
  position: relative;
  z-index: 10;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 20%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 85%);
}

.kv {
  position: relative;
  top: 56px;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.kv > div {
  position: absolute;
  z-index: 2;
}
.kv img {
  width: 100%;
  height: auto;
}
.kv .logo {
  left: 5%;
  top: 9%;
  width: 33.85%;
  animation-name: fadeUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.tit_l1 {
  animation-name: fadeUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  left: 5%;
  top: 62.81%;
  width: 70.47%;
  animation-delay: 1250ms;
}
.tit_l1 img {
  animation-name: floatS;
  animation-duration: 3s;
  animation-delay: 3500ms;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.tit_l2 {
  animation-name: fadeUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  left: 63.96%;
  top: 78.36%;
  width: 20.84%;
  animation-delay: 2000ms;
}
.tit_l2 img {
  animation-name: floatS;
  animation-duration: 3s;
  animation-delay: 3500ms;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 5s;
}

.bottom {
  left: 40.625%;
  top: 38.24%;
  width: 45.92%;
}

.bot_shadow {
  left: 36.96%;
  top: 40.13%;
  width: 52.94%;
  height: 46.6%;
  background: radial-gradient(black 33%, rgba(0, 0, 0, 0) 70%);
}

.chip {
  left: 42.19%;
  top: 18.52%;
  width: 43.31%;
  animation-name: float;
  animation-duration: 5s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

.chip_shadow {
  left: 40.67%;
  top: 32.41%;
  width: 46.87%;
  height: 41.2%;
  background: radial-gradient(black, rgba(0, 0, 0, 0) 70%);
  animation-name: floatShadow;
  animation-duration: 3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

.ly_sty {
  padding-top: 40px;
  padding-bottom: 40px;
}

.sc_title {
  text-align: center;
  margin-bottom: 30px;
}
.sc_title .tit {
  font-size: 2.6em;
  transform: skewX(-8deg);
  font-weight: 700;
  text-shadow: 4px 4px rgba(0, 216, 255, 0.5);
}

.sc_active p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 1.25em;
}
.sc_active .str {
  border-left: 4px solid #ccf3ff;
  padding-left: 1em;
  color: #ccf3ff;
}
.sc_active .spec {
  font-size: 1.5em;
  font-weight: 400;
  color: #e8ad08;
  text-align: center;
}

.sc_agenda .sc_title .tips {
  margin-top: 10px;
}
.sc_agenda .track_time {
  font-size: 2em;
  line-height: 1.1;
  color: #e8ad08;
  font-weight: 900;
}
.sc_agenda .track_tit {
  border-bottom: 1px solid #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-bottom: 0.75em;
  line-height: 1.1;
}
.sc_agenda .track_tit .perfix,
.sc_agenda .track_tit .stg {
  display: inline-block;
  vertical-align: middle;
}
.sc_agenda .track_tit .perfix {
  border: 1px solid #fff;
  margin-right: 0.75em;
  padding: 0.25em 0.5em 0.4em;
  line-height: 1;
  font-size: 1.2em;
  font-weight: 300;
}
.sc_agenda .track_tit .stg {
  font-size: 2em;
  font-weight: 400;
}

.ag_item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}
.ag_item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #fff;
  border-width: 0 1px;
  transform: scaleY(0);
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 300ms;
}
.ag_item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.ag_item .text {
  padding: 10px 0;
  line-height: 1.1;
}
.ag_item .text .t1 {
  font-size: 20px;
  font-weight: 700;
}
.ag_item .text .t2 {
  font-weight: 300;
}
.ag_item .ag_info {
  position: relative;
  color: #fff;
  padding-right: 12px;
}
.ag_item .ag_info::after {
  content: "詳細資訊";
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 0.875em;
  border-radius: 6px;
  padding: 4px 8px;
  border: 1px solid #fff;
  background-color: rgba(0, 216, 255, 0);
  transition: background 300ms;
}
.ag_item:hover .ag_info::after {
  background-color: #00d8ff;
}
.ag_item .ag_wrap {
  position: relative;
  max-width: 180px;
}
.ag_item .ag_wrap .t_name {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.2;
}
.ag_item .ag_wrap .img {
  border-radius: 90px;
}
.ag_item .t_speaker .t1 {
  color: #00d8ff;
}

.host_item .img {
  max-width: 100%;
}
.host_item .text {
  margin-top: 4px;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  color: #00d8ff;
}

.ag_modals {
  color: #000;
}
.ag_modals .ag_modal .modal-title {
  line-height: 1.1;
}
.ag_modals .ag_modal .t1 {
  font-size: 1.125em;
  font-weight: 700;
}
.ag_modals .ag_modal .t2 {
  font-size: 0.9em;
  font-weight: 300;
}
.ag_modals .ag_modal .outer_link {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.75em;
  border: 1px solid #000;
  border-radius: 16px;
}
.ag_modals .ag_modal p.h5 {
  line-height: 1.5;
}

.sc_detail .table_tit {
  margin-bottom: 16px;
}

.de_wrap {
  border-radius: 40px;
  padding: 40px;
  border: 1px solid #fff;
}
.de_wrap .intro {
  font-size: 20px;
}
.de_wrap .intro .key {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url("img/key.svg") center/contain no-repeat;
}
.de_wrap .intro .l_tip {
  font-size: 0.875em;
  color: #e86f08;
}

.de_table .table_tit {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  color: #e8ad08;
}
.de_table .col {
  padding-top: 10px;
  padding-bottom: 10px;
}

.table_item {
  position: relative;
}
.table_item .level {
  margin-bottom: 16px;
  padding-left: 84px;
}
.table_item .level .str {
  font-weight: 700;
  font-size: 1.8em;
  color: #00d8ff;
  line-height: 1.3;
}
.table_item .level .name {
  font-size: 1.2em;
  line-height: 1.1;
}
.table_item .num {
  position: absolute;
  left: 10px;
  top: 0;
  width: 64px;
  height: 64px;
  background: center no-repeat;
}
.table_item .num.key_10 {
  background-image: url(img/key10.svg);
}
.table_item .num.key_7 {
  background-image: url(img/key7.svg);
}
.table_item .num.key_5 {
  background-image: url(img/key5.svg);
}
.table_item .img {
  position: relative;
}
.table_item .img img {
  position: relative;
  z-index: 3;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.19);
}

.de_gift {
  padding: 30px 40px;
}
.de_gift .tit {
  font-weight: 700;
  font-size: 1.8em;
  color: #a8eeff;
  text-align: center;
}
.de_gift .info {
  margin-top: 8px;
  font-size: 1.125em;
}

.sc_regu .reg_list {
  padding-left: 1.65em;
}
.sc_regu .reg_list .is_alert {
  color: #ff6868;
}
.sc_regu .privacy_link {
  color: #fe58d4;
}

.login_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: rgba(28, 28, 46, 0.66);
}
.login_wrap .time_wrap {
  text-align: center;
  margin-bottom: 1rem;
}
.login_wrap .time_wrap .date {
  font-size: 4em;
  font-weight: 700;
  line-height: 1;
}
.login_wrap .time_wrap .date .d {
  text-shadow: 5px 5px 0 #1e6086;
  transform: skewX(-6deg);
}
.login_wrap .time_wrap .date .w {
  max-width: 26rem;
  margin: 1rem auto 0;
  border-top: 1px solid #fff;
  padding-top: 1rem;
  font-size: 2rem;
  color: #ccf3ff;
}
.login_wrap .time_wrap .timeout {
  margin: 1rem auto 0;
  width: 20rem;
  padding: 1.75rem 0 0.9rem;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 6px;
}
.login_wrap .time_wrap .timeout > div {
  position: relative;
  flex: 0 0 auto;
  font-size: 2em;
  width: 2.5em;
  font-weight: 700;
  line-height: 1.2;
}
.login_wrap .time_wrap .timeout > div::before {
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: #00d8ff;
}
.login_wrap .time_wrap .timeout .day::before {
  content: "days";
}
.login_wrap .time_wrap .timeout .hour, .login_wrap .time_wrap .timeout .min {
  border: 1px solid #fff;
  border-width: 0 1px;
}
.login_wrap .time_wrap .timeout .hour::before {
  content: "hours";
}
.login_wrap .time_wrap .timeout .min::before {
  content: "mins";
}
.login_wrap .time_wrap .timeout .sec::before {
  content: "secs";
}
.login_wrap .form_wrap {
  max-width: 480px;
  width: 90vw;
  margin: 0 auto;
  text-align: center;
}
.login_wrap form {
  border-radius: 10px;
  border: 1px solid #a8eeff;
  padding: 1.5em 3em;
  background: linear-gradient(30deg, rgba(28, 28, 46, 0.75), rgba(36, 79, 136, 0.75));
}
.login_wrap form .btn {
  padding: 0.5em 1.5em;
}
.login_wrap .form-group {
  text-align: left;
  margin-bottom: 1rem;
}
.login_wrap .form-group label {
  margin-bottom: 0.25rem;
}
.login_wrap .form-group input {
  border-color: #fff;
}
.login_wrap .form-group button {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 640px;
  }
}

.all_wrap.is_watch .watch_wrap {
  position: relative;
  min-height: 100vh;
}
.all_wrap.is_watch .player {
  position: relative;
  top: 50%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.39);
}
.all_wrap.is_watch .vd_wrap {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}
.all_wrap.is_watch .vd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .all_wrap {
    background: url(img/kv_bg2.png) center/cover no-repeat;
    background-attachment: fixed;
  }

  .form_wrap {
    padding-bottom: 2em;
  }

  .login_wrap .time_wrap .date {
    font-size: 2.5em;
  }
  .login_wrap .time_wrap .date .w {
    max-width: 16rem;
    font-size: 1.75rem;
  }
  .login_wrap .time_wrap .timeout {
    width: 18em;
  }
  .login_wrap .time_wrap .timeout > div {
    font-size: 1.75rem;
  }
}

.m-b-10 {
	margin-bottom: 10px;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
    width: 0px;
    height: 0px;
  }
}