@charset "UTF-8";
@-webkit-keyframes float {
  0% {
    -webkit-transform: scale(1.2) translateX(20px);
            transform: scale(1.2) translateX(20px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(-15px);
            transform: scale(1.1) translate(-15px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0);
            transform: scale(1.2) translate(0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: scale(1.2) translateX(20px);
            transform: scale(1.2) translateX(20px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(-15px);
            transform: scale(1.1) translate(-15px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0);
            transform: scale(1.2) translate(0);
  }
}
html {
  font-size: 18px;
}

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: 1rem;
  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;
  width: 3em;
  height: 3em;
  background-color: #fff;
  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;
}

.container {
  padding: 50px 120px;
}

.g_kv {
  position: relative;
  margin-top: 63px;
  font-size: 0.8vw;
}
.g_kv .kv_tit {
  position: absolute;
  left: 0;
  width: 100%;
  top: 15%;
  padding: 0 10%;
  color: #fff;
  line-height: 1;
}
.g_kv .l1,
.g_kv .l2 {
  font-weight: 700;
  text-shadow: 0 6px 0 rgba(8, 32, 109, 0.5);
}
.g_kv .l1 {
  font-size: 5.2083333333em;
  color: #F6C545;
}
.g_kv .l2 {
  margin-top: 0.75em;
  font-size: 3.6458333333em;
}
.g_kv .l2 span {
  display: inline-block;
}
.g_kv .l3 {
  margin-top: 1.5em;
  font-size: 3.6458333333em;
}
.g_kv .l3 span {
  display: inline-block;
  vertical-align: middle;
}
.g_kv .l3 .day {
  margin-left: 1em;
  border-radius: 3em;
  padding: 0.3em 0.6em;
  border: 2px solid currentColor;
  font-size: 0.5em;
}
.g_kv .l4 {
  margin-top: 1em;
  font-size: 2.6041666667em;
}
.g_kv .kv_logos {
  position: absolute;
  left: 0;
  top: 67%;
  width: 100%;
  padding: 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g_kv .kv_logos .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 6em;
}
.g_kv .kv_logos .logo img {
  height: 6em;
}

.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;
  line-height: 1;
}
.g_main .sc_title .tit::after {
  content: "";
  position: absolute;
}
.g_main .sc_title .tip {
  font-size: 0.8rem;
  margin-top: 6px;
  color: #999;
}
.g_main .cta_box {
  padding: 20px 0;
  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;
}

.bgsoft, .sc_gift, .sc_agenda, .sc_expert {
  background-color: #f2f2f2;
}

.intr_cnt {
  line-height: 1.5;
}
.intr_cnt .parag {
  margin-bottom: 1rem;
}
.intr_cnt .parag a {
  color: #0091BD;
  text-decoration: underline;
}
.intr_cnt .parag a:hover {
  color: #F6C545;
}
.intr_cnt ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.intr_cnt ul li {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.exp_cnt .subtit {
  margin-bottom: 10px;
}
.exp_cnt .subtit a {
  color: #0091BD;
  font-weight: 500;
  text-decoration: underline;
  font-size: 22px;
}
.exp_cnt .subtit a:hover {
  color: #F6C545;
}
.exp_cnt .spks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}
.exp_cnt .spks .item {
  padding: 10px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exp_cnt .spks .pic {
  padding-right: 20px;
}
.exp_cnt .spks .txt {
  line-height: 1.2;
}
.exp_cnt .spks .name {
  font-size: 20px;
  font-weight: 700;
  color: #0091BD;
}
.exp_cnt .spks .job {
  margin-top: 6px;
  margin-bottom: 4px;
}

.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.3em;
  color: #0091BD;
}
.agenda_cnt .table .tr .infor {
  padding-left: 16px;
  padding-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.agenda_cnt .table .tr .tit {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.4;
}
.agenda_cnt .table .tr .left_line {
  margin-top: 6px;
  margin-left: 2px;
  padding-left: 14px;
  border-left: 1px solid #0091BD;
}
.agenda_cnt .table .tr .left_line .spk_it {
  margin-bottom: 0.25rem;
}
.agenda_cnt .table .tr .left_line .spk_it > div {
  display: inline-block;
}
.agenda_cnt .table .tr .left_line .spk_it .n {
  padding-right: 0.25em;
}
.agenda_cnt .table .tr .text {
  line-height: 1.4;
  font-size: 0.85rem;
}
.agenda_cnt .table .tr .text p {
  margin-bottom: 0;
}
.agenda_cnt .table .tr .text p + p {
  margin-top: 0.5rem;
}
.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 .right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  padding-right: 1rem;
  padding-top: 0.1em;
}
.agenda_cnt .table .tr .spk {
  line-height: 1.3;
}
.agenda_cnt .table .tr .spk_it {
  margin-bottom: 0.75rem;
}
.agenda_cnt .table .tr .spk_it .n {
  margin-bottom: 4px;
  font-size: 1rem;
  color: #0091BD;
  line-height: 1.3;
}
.agenda_cnt .table .tr .spk_it .t,
.agenda_cnt .table .tr .spk_it .c {
  font-size: 0.75rem;
  color: #888;
}
.agenda_cnt .table .tr .spk_it:last-child {
  margin-bottom: 0;
}

.speaker_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1em;
}
.speaker_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  max-width: 400px;
  position: relative;
  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: 1.6em 20px 0.8em;
  background: radial-gradient(ellipse farthest-side at left bottom, black, 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: 4px;
  font-size: 0.75em;
  line-height: 1.2;
}
.speaker_cnt .item .text .c {
  margin-top: 2px;
  font-size: 0.75em;
}
.speaker_cnt .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.organizer_cnt .container {
  padding-top: 0;
}
.organizer_cnt .sc_title {
  margin-bottom: 20px;
}
.organizer_cnt .sc_title .tit {
  color: #1d1d1d;
}
.organizer_cnt .items {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.organizer_cnt .items + .sc_title {
  margin-top: 40px;
}
.organizer_cnt .ogz_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.organizer_cnt .ogz_item .link_box {
  padding: 0 10px;
  display: block;
}
.organizer_cnt .ogz_item img {
  width: 300px;
}

.gift_cnt .items {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}
.gift_cnt .gift_item {
  padding: 0 20px;
  text-align: center;
}
.gift_cnt .gift_item .catg {
  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: 20px;
  overflow: hidden;
}
.gift_cnt .gift_item .pic img {
  width: 280px;
  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: 1em;
  font-size: 1.25em;
  font-weight: 700;
  color: #0091BD;
}
.gift_cnt .gift_item .num {
  display: inline-block;
  margin: 10px 0;
  padding: 3px 12px;
  font-size: 0.875em;
  border-radius: 20px;
  background-color: #F6C545;
}
.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;
}

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

  .g_kv {
    margin-top: 0;
  }
  .g_kv .kv_tit {
    padding: 0 5%;
    font-size: 1.3vw;
  }
  .g_kv .l1,
.g_kv .l2 {
    text-shadow: 0 4px 0 rgba(8, 32, 109, 0.5);
  }
  .g_kv .l2 {
    margin-top: 0.6em;
    font-size: 5em;
    line-height: 1.3;
  }
  .g_kv .l3 {
    margin-top: 1em;
    font-size: 4.5em;
  }
  .g_kv .l3 .day {
    border-width: 1px;
    font-size: 0.75em;
  }
  .g_kv .l4 {
    margin-top: 0.5em;
    font-size: 4em;
  }
  .g_kv .kv_logos {
    padding: 0 5%;
    top: 80%;
  }
  .g_kv .kv_logos .logo img {
    height: 10.8em;
  }

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

  .g_main .sc_title {
    margin-bottom: 20px;
  }
  .g_main .sc_title .tit {
    font-size: 24px;
    line-height: 1.3;
  }
  .g_main .cta_box {
    padding-bottom: 20px;
  }

  .sc_introdution .intro_cnt p {
    font-size: 0.9rem;
  }
  .sc_introdution .intro_cnt ul {
    padding-right: 0;
  }

  .agenda_cnt .table .tr {
    display: block;
  }
  .agenda_cnt .table .tr .time {
    margin-bottom: 10px;
  }
  .agenda_cnt .table .tr .text {
    font-size: 0.8rem;
  }
  .agenda_cnt .table .tr .right {
    margin-top: 10px;
    padding-left: 1rem;
  }

  .speaker_cnt .items {
    display: block;
    border-radius: 0;
  }
  .speaker_cnt .item .text {
    font-size: 1.2rem;
  }
  .organizer_cnt .sc_title {
    margin-bottom: 30px;
  }
  .organizer_cnt .ogz_item {
    text-align: center;
  }
  .organizer_cnt .ogz_item .link_box {
    display: inline-block;
    padding: 0;
  }
  .organizer_cnt .ogz_item + .ogz_item {
    margin-top: 30px;
  }

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