@charset "UTF-8";
@-webkit-keyframes float {
  0% {
    -webkit-transform: scale(1.1) translate(-15px, -8px);
            transform: scale(1.1) translate(-15px, -8px);
  }
  25% {
    -webkit-transform: scale(1.1) translate(15px, -15px);
            transform: scale(1.1) translate(15px, -15px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(5px, 10px);
            transform: scale(1.1) translate(5px, 10px);
  }
  75% {
    -webkit-transform: scale(1.1) translate(-10px, 0);
            transform: scale(1.1) translate(-10px, 0);
  }
  100% {
    -webkit-transform: scale(1.1) translate(-15px, -8px);
            transform: scale(1.1) translate(-15px, -8px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: scale(1.1) translate(-15px, -8px);
            transform: scale(1.1) translate(-15px, -8px);
  }
  25% {
    -webkit-transform: scale(1.1) translate(15px, -15px);
            transform: scale(1.1) translate(15px, -15px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(5px, 10px);
            transform: scale(1.1) translate(5px, 10px);
  }
  75% {
    -webkit-transform: scale(1.1) translate(-10px, 0);
            transform: scale(1.1) translate(-10px, 0);
  }
  100% {
    -webkit-transform: scale(1.1) translate(-15px, -8px);
            transform: scale(1.1) translate(-15px, -8px);
  }
}
html {
  font-size: 20px;
}

body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}

a {
  color: inherit;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: #000;
}
.g_header.is_active {
  background-color: #0091BD;
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
}
.g_header .header_logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #fff;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #fff;
}
.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #F6C545;
  text-decoration: none;
}

.g_fixed {
  position: fixed;
  z-index: 99;
  right: 30px;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}
.g_fixed.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.g_fixed .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}
.g_fixed .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.g_fixed .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.g_fixed .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.g_fixed .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_kv {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.g_kv .kv_bg {
  padding-top: 50%;
  background: url("img/kv_bg.jpg") center no-repeat;
  -webkit-animation: float 12s linear infinite;
          animation: float 12s linear infinite;
}
.g_kv .kv_bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.g_kv .kv_text {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  line-height: 1;
  font-size: 2.5vw;
}
.g_kv .kv_text .l1 {
  font-size: 2.5em;
  font-weight: 300;
  color: #fff;
}
.g_kv .kv_text .l2 {
  margin-top: 0.5em;
  font-size: 2em;
  font-weight: 700;
  color: #F6C545;
}
.g_kv .kv_text .l2 span {
  margin-left: 0.66rem;
  letter-spacing: 0.33rem;
}
.g_kv .kv_text .time {
  font-weight: 500;
  color: #fff;
}
.g_kv .kv_text .webinar {
  border-radius: 2em;
  width: 6.5em;
  padding: 8px 0 10px;
  margin: 2.5vw auto;
  background-color: #0091BD;
  color: #fff;
  font-size: 1.8vw;
  font-weight: 400;
}

.container {
  padding: 40px 120px 40px;
}

.g_main {
  padding-top: 40px;
}
.g_main .sc_title {
  text-align: center;
  margin-bottom: 30px;
}
.g_main .sc_title .tit {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0091BD;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.g_main .sc_title .tit::after {
  content: "";
  position: absolute;
}
.g_main .cta_box {
  padding: 20px 0 40px;
  text-align: center;
}
.g_main .cta_box .bttn a {
  display: inline-block;
  border-radius: 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.g_main .cta_box .bttn a span {
  display: block;
  border-radius: 3rem;
  padding: 1rem 3rem;
}
.g_main .cta_box .bttn a:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.g_main .cta_box .bttn.main_btn a {
  background-color: #F6C545;
  color: #1d1d1d;
}

.sc_intros .intro_cnt {
  line-height: 1.5;
}
.sc_intros .intro_cnt .parag {
  margin-bottom: 1rem;
}
.sc_intros .intro_cnt ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.sc_intros .intro_cnt ul li {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sc_point {
  background-color: #f8f8f8;
}
.sc_point .point_cnt {
  font-size: 1.125rem;
}
.sc_point .point_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sc_point .point_cnt .item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #0091BD;
}
.sc_point .point_cnt .item .tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 0.5rem 0;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  background-color: #0091BD;
  color: #fff;
}
.sc_point .point_cnt .item .pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.sc_point .point_cnt .item .pic img {
  width: 100%;
}
.sc_point .point_cnt .item .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  padding-left: 0.5rem;
  padding-right: 1rem;
  font-size: 0.8rem;
  line-height: 1.3;
}

.agenda_cnt .table {
  border: 1px solid #000;
}
.agenda_cnt .table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  font-size: 0.8rem;
  background-color: #fff;
}
.agenda_cnt .table .tr:nth-child(2n) {
  background-color: #f8f8f8;
}
.agenda_cnt .table .tr .time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1;
  padding-left: 1rem;
  padding-top: 0.1em;
  color: #0091BD;
}
.agenda_cnt .table .tr .infor {
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62%;
          flex: 0 0 62%;
}
.agenda_cnt .table .tr .tit {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
.agenda_cnt .table .tr .left_line {
  margin-left: 5px;
  padding-left: 15px;
  border-left: 1px solid #0091BD;
}
.agenda_cnt .table .tr .text {
  line-height: 1.4;
  font-size: 0.9rem;
}
.agenda_cnt .table .tr .list {
  padding-left: 24px;
  margin-bottom: 0;
}
.agenda_cnt .table .tr .list li {
  line-height: 1.4;
  margin-top: 4px;
}
.agenda_cnt .table .tr .spk {
  margin-bottom: 10px;
  line-height: 1.3;
}
.agenda_cnt .table .tr .spk .spk_it {
  margin-bottom: 0.75rem;
}
.agenda_cnt .table .tr .spk .spk_it .n {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1;
  color: #0091BD;
}
.agenda_cnt .table .tr .spk .spk_it .t,
.agenda_cnt .table .tr .spk .spk_it .c {
  font-size: 0.75rem;
  color: #888;
}

.sc_speaker {
  background-color: #f8f8f8;
}
.sc_speaker .container {
  padding-left: 20px;
  padding-right: 20px;
}

.speaker_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.speaker_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 400px;
  position: relative;
  padding-bottom: 30px;
  cursor: pointer;
}
.speaker_cnt .item .pic {
  overflow: hidden;
}
.speaker_cnt .item .pic img {
  width: 100%;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.speaker_cnt .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem 0.8rem 0.8rem;
  background: linear-gradient(0deg, black 30px, rgba(0, 0, 0, 0));
  color: #fff;
  line-height: 1.1;
}
.speaker_cnt .item .text .n {
  color: #F6C545;
  font-weight: 700;
}
.speaker_cnt .item .text .t {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 0.8rem;
}
.speaker_cnt .item .text .c {
  font-size: 0.8rem;
  font-weight: 700;
}
.speaker_cnt .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sc_gift {
  background-color: #f8f8f8;
}

.gift_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gift_cnt .gift_item {
  padding: 0 20px;
  text-align: center;
}
.gift_cnt .gift_item .tit {
  display: inline-block;
  width: 5em;
  padding-bottom: 4px;
  color: #0091BD;
  border-bottom: 1px solid currentColor;
}
.gift_cnt .gift_item .pic {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  border-radius: 40px;
  overflow: hidden;
}
.gift_cnt .gift_item .pic img {
  width: 360px;
  max-width: 100%;
}
.gift_cnt .gift_item .pic .pict {
  position: absolute;
  left: 50%;
  bottom: 10px;
  color: #999;
  font-size: 0.8rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.gift_cnt .gift_item .name {
  margin-top: 10px;
  font-size: 1.25em;
  font-weight: 700;
  color: #0091BD;
}
.gift_cnt .gift_item .tip {
  display: inline-block;
  border-radius: 20px;
  margin: 10px 0;
  padding: 2px 16px;
  font-size: 0.75rem;
  background-color: #F6C545;
}
.gift_cnt .gift_item .way {
  font-size: 0.875rem;
  line-height: 1.3;
}

.logo_cnt {
  text-align: center;
}
.logo_cnt .tit {
  width: 6em;
  margin: 0 auto;
  background-color: #0091BD;
  padding: 5px 0;
  color: #fff;
}
.logo_cnt .logo {
  display: inline-block;
  max-width: 400px;
}

.sc_w2 {
  background-color: #f8f8f8;
}

.wording_cnt .parag strong {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.wording_cnt .parag p a {
  color: #0091BD;
  text-decoration: underline;
}
.wording_cnt .parag p a:hover {
  color: #F6C545;
}
.wording_cnt .pic {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.wording_cnt .pic a {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.wording_cnt .pic a:hover {
  opacity: 0.7;
}
.wording_cnt .pic img {
  max-width: 100%;
}

.g_footer {
  position: relative;
  border-bottom: 10px solid #0091BD;
}
.g_footer .pic {
  position: relative;
}
.g_footer .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.g_footer .pic img {
  width: 100%;
}
.g_footer .text {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .g_header {
    display: none;
  }

  .g_kv .kv_bg {
    padding-top: 100%;
    background-size: cover;
  }
  .g_kv .kv_text {
    font-size: 0.7rem;
  }
  .g_kv .kv_text .l2 {
    font-size: 3em;
  }
  .g_kv .kv_text .l2 span:nth-child(2) {
    margin-left: 0;
    margin-top: 0.5rem;
    display: block;
  }
  .g_kv .kv_text .webinar {
    margin: 1.5rem auto;
    font-size: 1rem;
  }
  .g_kv .kv_text .time {
    font-size: 1rem;
  }

  .container {
    padding: 20px 20px 30px;
  }

  .g_main .sc_title .tit {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .sc_intros .intro_cnt ul {
    padding-right: 0;
  }

  .sc_point .point_cnt .items {
    display: block;
  }
  .agenda_cnt .table .tr {
    display: block;
  }
  .agenda_cnt .table .tr .time {
    margin-bottom: 10px;
  }
  .agenda_cnt .table .tr .right {
    margin-top: 10px;
    padding-left: 1rem;
  }

  .logo_cnt {
    display: block;
  }
  .logo_cnt .logo {
    margin-top: 10px;
  }

  .speaker_cnt .items {
    display: block;
    border-radius: 0;
  }

  .gift_cnt .items {
    display: block;
  }
  .gift_cnt .gift_item {
    margin-bottom: 30px;
  }
  .gift_cnt .gift_item .name {
    font-size: 1.25rem;
  }

  .g_footer .text {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}