@charset "UTF-8";

html {
  font-size: 16px;
}

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

a {
  color: inherit;
}

a:hover {
  color: inherit;
  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.is_primary {
  color: #fff;
  background: linear-gradient(135deg, #09629c, #000b31) no-repeat;
}

.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 {
  position: relative;
  margin: 0 auto;
}

.g_kv .dk {
  position: relative;
  padding-top: 56.2%;
  background: url("img/dkv.png") center/cover;
}

.g_main {
  background-color: #fff;
}

.g_main .sc_tit {
  font-size: 2em;
  text-align: center;
  font-weight: 700;
  color: #09629c;
  margin-bottom: 0.75em;
}

.sc_intro {
  padding-top: calc(3em + 1vw);
}

.intro_cnt {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
}

.intro_cnt .tit {
  position: relative;
  font-size: 1.25em;
}

.cta_cnt {
  margin-top: calc(1em + 1vw);
  text-align: center;
}

.cta_cnt a {
  margin: 0 0.75em;
  display: inline-block;
  border-radius: 50px;
  padding: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#09629c), to(#000b31));
  background: linear-gradient(#09629c, #000b31);
  font-size: 2rem;
  line-height: 1;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 11, 49, 0.15);
  box-shadow: 0 10px 20px 0 rgba(0, 11, 49, 0.15);
}

.cta_cnt a span {
  display: block;
  border-radius: 3rem;
  padding: 1rem 4rem 1.2rem;
}

.cta_cnt a:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cta_cnt .main_btn {
  color: #fff;
}

.cta_cnt .sub_btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#fbe89d), to(#ffbd59));
  background: linear-gradient(#fbe89d, #ffbd59);
}

.sc_agenda {
  padding-top: calc(3em + 1vw);
}

.agd_cnt .table {
  border: 1px solid #09629c;
  border-radius: 24px;
  overflow: hidden;
}

.agd_cnt .table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1em 0;
}

.agd_cnt .table .tr:nth-child(2n) {
  background-color: #fef9e7;
}

.agd_cnt .table .time {
  padding: 0 1.5em;
  color: #09629c;
}

.agd_cnt .table .tm {
  padding: 0.35em 1em;
  border-radius: 30px;
  background-color: #09629c;
  font-size: 1.25em;
  color: #fff;
}

.agd_cnt .table .tpc {
  font-size: 1.65em;
}

.agd_cnt .table .spk {
  font-size: 1.25em;
  color: #09629c;
}

.agd_cnt .table .spk span {
  font-size: 12px;
  position: relative;
  box-sizing: border-box;
  padding: 3px 10px;
  border-radius: 30px;
  border: 1px #09629c solid;
  margin: 0 0 0 15px;
  cursor: pointer;
  color: #09629c;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.agd_cnt .table .spk span:hover {
  color: #fff;
  background-color: #09629c;
}

.sc_speaker {
  margin-top: calc(3em + 1vw);
  padding: calc(1em + 1vw) 0;
  background-color: rgba(9, 98, 156, 0.05);
}

.spk_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.spk_cnt .item {
  margin: 0 30px;
  max-width: 300px;
  flex: 1 0 25%;
}

.spk_cnt .item .img {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #09629c;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 11, 49, 0.15);
  box-shadow: 0 10px 20px 0 rgba(0, 11, 49, 0.15);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.spk_cnt .item .img:hover {
  transform: scale(0.95);
}


.spk_cnt .item .img img {
  max-width: 100%;
  display: block;
}

.spk_cnt .item .wod {
  padding: 0.75em 0;
  text-align: center;
  font-size: 1.5em;
}

.spk_cnt .item .wod .name {
  font-size: 1.2em;
  font-weight: 700;
  color: #09629c;
}

.g_footer {
  padding: 60px 0;
}

.foot_logos {
  text-align: center;
}

.foot_logos .item {
  display: inline-block;
}

.foot_logos .logo img {
  height: 120px;
}

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

  .intro_cnt {
    padding: 0 30px;
    font-size: 1.125em;
    line-height: 1.4;
  }

  .intro_cnt .tit div {
    padding: 0.25em 0;
  }

  .cta_cnt a {
    margin: 12px;
    font-size: 1.5em;
  }

  .agd_cnt .table {
    font-size: 0.875em;
  }

  .agd_cnt .table .tr {
    padding: 1em;
    display: block;
  }

  .agd_cnt .table .time {
    padding: 0;
  }

  .agd_cnt .table .tm {
    display: inline-block;
  }

  .agd_cnt .table .topic {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
  }

  .agd_cnt .table .tpc {
    font-size: 1.5em;
  }

  .agd_cnt .table .spk {
    margin-top: 0.25em;
  }

  .spk_cnt {
    display: block;
  }

  .spk_cnt .item {
    margin-top: 2em;
  }

  .spk_cnt .item .wod {
    font-size: 1.25em;
  }

  .spk_cnt .item .wod .name {
    font-size: 1.4em;
  }

  .foot_logos .logo {
    padding: 0 40px;
  }

  .foot_logos .logo img {
    height: auto;
    width: 100%;
  }
}