html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.sec_wrap {
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 1440px) {
  .sec_wrap {
    max-width: 1440px;
  }
}
.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  -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;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.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;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -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;
}
.fix_aside .fx_item.is_primary {
  background-image: linear-gradient(135deg, #003a6c, #00ffff);
  color: #fff;
}
.fix_aside .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);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.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/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  z-index: 98;
  width: 100%;
  background: linear-gradient(120deg, #030a1b, #003a6c, #29abe2, #00ffff);
}
.g_header .header_wrap {
  position: relative;
  padding: 0.25rem 0;
}
.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_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_header .header_logo {
  padding: 0 1rem;
}
.g_header .header_logo img {
  width: 250px;
}
.g_header .nav_cnt {
  padding: 0 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_item .dropdown-item {
  padding: 0.5rem 1rem;
}
.g_header .nav_item .dropdown-item:hover {
  background-color: #00ffff;
}
.g_header .nav_link {
  color: #fff;
  cursor: pointer;
}
.g_header .nav_link:hover {
  color: #00ffff;
  text-decoration: none;
}

.g_kv {
  position: relative;
}

.g_main {
  background: url("img/kv_bg.jpg") center/cover fixed;
}
.g_main .main_sc {
  padding: 60px 0;
}
.g_main .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 30px;
}
.g_main .sc_title .tit {
  display: inline-block;
  padding-bottom: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  color: #003a6c;
}
.g_main .sc_title::before, .g_main .sc_title::after {
  content: "";
  position: absolute;
  left: calc(50% - 2.5em);
  width: 5em;
  border-radius: 2px;
  height: 2px;
  bottom: 0;
  background-color: #030a1b;
  background-image: -webkit-gradient(linear, left top, right top, from(#003a6c), to(#00ffff));
  background-image: linear-gradient(90deg, #003a6c, #00ffff);
}
.g_main .sc_title::after {
  bottom: -4px;
  background-color: #29abe2;
  background-image: -webkit-gradient(linear, left top, right top, from(#00ffff), to(#003a6c));
  background-image: linear-gradient(90deg, #00ffff, #003a6c);
}

.sc_intro .cta {
  margin-top: 30px;
  padding: 0 0 2rem;
  text-align: center;
}
.sc_intro .cta .bttn {
  display: inline-block;
  margin: 10px;
  border-radius: 2.5em;
  padding: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(#00ffff), to(#29abe2));
  background-image: linear-gradient(90deg, #00ffff, #29abe2);
  opacity: 1;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}
.sc_intro .cta .bttn:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
}
.sc_intro .cta .in {
  position: relative;
  border: 12px solid #030a1b;
  border-radius: 2em;
  padding: 0.4em 4em 0.5em 1.5em;
  background-color: #fff;
}
.sc_intro .cta .in::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-width: 0.3em 0.5em;
  border-style: solid;
  border-color: transparent transparent transparent #003a6c;
}

.intr_cnt {
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #030a1b;
}
.intr_cnt .p {
  font-size: 1.25rem;
  margin: 0 auto;
  max-width: 40em;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1em;
  color: #fff;
}

.point_cnt {
  background: -webkit-gradient(linear, left top, left bottom, from(#030a1b), to(rgba(3, 10, 27, 0.8)));
  background: linear-gradient(#030a1b, rgba(3, 10, 27, 0.8));
}
.point_cnt .pt_tit {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  color: #dbffff;
}
.point_cnt .points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}
.point_cnt .pt_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 6px;
  padding: 15px 10px;
  border-radius: 4px;
  text-align: center;
}
.point_cnt .pt_item .pic img {
  border-radius: 24px;
  width: 240px;
}
.point_cnt .pt_item .word {
  margin-top: 16px;
}
.point_cnt .pt_item span {
  display: block;
  color: #fff;
  line-height: 1.3;
  font-size: 1.25em;
}

.gift_cnt {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 10, 27, 0.8)), to(#030a1b));
  background: linear-gradient(rgba(3, 10, 27, 0.8), #030a1b);
}
.gift_cnt .gift_item {
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 10px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 58, 108, 0.5)), to(rgba(0, 58, 108, 0.1)));
  background: linear-gradient(rgba(0, 58, 108, 0.5), rgba(0, 58, 108, 0.1));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gift_cnt .gift_item.p1 .pic:first-child {
  margin-right: 10px;
}
.gift_cnt .gift_item.p1 .pic:last-child {
  margin-left: 10px;
}
.gift_cnt .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  font-size: 1.125em;
  padding: 10px 0;
  padding-right: 2em;
}
.gift_cnt .text .tit {
  margin-bottom: 12px;
  font-weight: 700;
  color: #00ffff;
  line-height: 1;
  font-size: 1.2em;
}
.gift_cnt .text .t {
  padding-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}
.gift_cnt .text .txt {
  padding-left: 0.25em;
  margin-top: 12px;
  line-height: 1;
  color: #dbffff;
}
.gift_cnt .text .txt::before {
  content: "/";
  margin-right: 0.75em;
}
.gift_cnt .text .txt span {
  color: #fffa99;
}
.gift_cnt .pics {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 420px;
          flex: 0 0 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gift_cnt .pics .pic {
  position: relative;
}
.gift_cnt .pics .pic .txt {
  position: absolute;
  left: 0;
  top: -34px;
  width: 100%;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 10px 15px;
  background-color: #29abe2;
  color: #fff;
}
.gift_cnt .pics img {
  max-width: 200px;
  width: 100%;
  border-radius: 50%;
  background-color: #fff;
}

.sc_agenda {
  background: -webkit-gradient(linear, left top, left bottom, from(#030a1b), to(rgba(3, 10, 27, 0.6)));
  background: linear-gradient(#030a1b, rgba(3, 10, 27, 0.6));
}
.sc_agenda .sc_title .tit {
  color: #fff;
}

.agd_cnt .tip {
  font-size: 0.875em;
  color: #dbffff;
  text-align: center;
}

.ag_table {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  font-size: 1.125em;
}
.ag_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
  padding: 0.75rem 1.75rem;
  background-color: #fff;
}
.ag_table .tr.tr_part {
  background-color: rgba(0, 58, 108, 0.9);
  text-align: center;
  display: block;
}
.ag_table .tr .time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  color: #29abe2;
}
.ag_table .tr .title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 65%;
          flex: 1 1 65%;
  padding-right: 1.5em;
}
.ag_table .tr .title .tit {
  font-size: 1.1em;
}
.ag_table .tr .title .d-inline {
  margin-right: 6px;
}
.ag_table .tr .title .tc_toggle {
  display: inline-block;
  vertical-align: bottom;
  font-size: 0.8em;
  background-color: #29abe2;
  color: #fff;
  line-height: 1;
  padding: 0.5em 0.75em;
  border-radius: 8px;
  cursor: pointer;
}
.ag_table .tr .title .tc_toggle:hover {
  background-color: #003a6c;
}
.ag_table .tr .title .tc_cnt {
  display: none;
  padding: 6px 0;
  font-size: 1rem;
}
.ag_table .tr .title .tc_cnt ul {
  padding-left: 1.5em;
  margin-bottom: 0;
}
.ag_table .tr .title .tc_cnt li {
  line-height: 1.3;
  padding: 0.15em;
}
.ag_table .tr .part {
  display: inline-block;
  font-size: 1.25em;
  font-weight: 500;
  color: #fffa99;
}
.ag_table .tr .speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}
.ag_table .tr .speaker .sph_wrap:not(:last-child) {
  margin-bottom: 10px;
}
.ag_table .tr .speaker .s_job {
  font-size: 0.75em;
  color: #787878;
}
.ag_table .tr .speaker .name {
  color: #29abe2;
}
.ag_table .tr .speaker .job,
.ag_table .tr .speaker .cpy {
  font-size: 0.875em;
}
.ag_table .tr:last-child {
  border-bottom-width: 0;
}

.sc_speaker {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 10, 27, 0.6)), to(#030a1b));
  background: linear-gradient(rgba(3, 10, 27, 0.6), #030a1b);
}
.g_main .sc_speaker {
  padding-top: 0;
}
.sc_speaker .container-fluid {
  max-width: 1280px;
}
.sc_speaker .sc_title .tit {
  color: #fff;
}
.spk_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;
  padding: 0 10px;
}

.spk_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 10px;
  cursor: pointer;
}
.spk_item .pic {
  position: relative;
  padding-top: 100%;
}
.spk_item .pic img {
  background: #fff url("img/speech.png") center/cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.spk_item .wording {
  padding: 10px 20px 30px;
  text-align: center;
  color: #fff;
}
.spk_item .wording .name {
  font-size: 1.25em;
  font-weight: 700;
  color: #00ffff;
}
.spk_item .wording .cpy {
  color: #dbffff;
}
.spk_item:hover img {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

.sc_company {
  background-color: #f2f2f2;
}

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

.cpy_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cpy_item a {
  display: block;
  border-radius: 10px;
  padding: 10px 15px;
  background-color: #fff;
  margin: 0 10px;
}
.cpy_item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.cpy_item img {
  width: auto;
  height: 120px;
  -webkit-transition: -webkit-transform 250ms;
  transition: -webkit-transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
}

.modal-content {
  border-width: 0;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
  line-height: 1;
  border-bottom: 0 solid #000;
}
.modal-header .modal_t {
  position: relative;
  padding-right: 1em;
}
.modal-header .modal_t .n {
  font-size: 1.5rem;
  font-weight: 500;
}
.modal-header .modal_t .c {
  margin-top: 8px;
  color: #003a6c;
}
.modal-header .modal_t .j {
  margin-top: 4px;
}
.modal-header .modal_close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal-body {
  padding: 0 2rem 2rem;
  font-size: 1em;
}
.modal-body h5 {
  font-size: 1.125em;
}
.modal-body ul {
  padding-left: 1.5em;
}
.modal-body ul:last-child,
.modal-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  body {
    background-color: #030a1b;
  }

  .g_header {
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, #003a6c), color-stop(90%, rgba(0, 58, 108, 0)));
    background: linear-gradient(90deg, #003a6c 30%, rgba(0, 58, 108, 0) 90%);
  }
  .g_header .header_wrap {
    padding: 10px;
  }
  .g_header .nav_content {
    display: block;
  }
  .g_header .header_logo {
    display: block;
    padding: 1rem;
  }
  .g_header .nav_cnt {
    padding: 0;
    display: block;
  }
  .g_header .nav_item {
    padding: 1rem;
  }

  .g_main .main_sc {
    padding: 40px 0;
  }
  .intr_cnt .p {
    padding: 0 1em;
  }

  .point_cnt .points {
    display: block;
  }
  .point_cnt .pt_item .pic img {
    width: 160px;
  }
  .point_cnt .pt_item span {
    display: inline-block;
    padding: 0 0.2em;
  }

  .gift_cnt .gift_item {
    display: block;
  }
  .gift_cnt .text {
    padding: 0;
  }
  .gift_cnt .text .txt {
    position: relative;
    margin-bottom: 10px;
    padding-left: 1em;
    margin-left: 5px;
    border-left: 1px solid #dbffff;
  }
  .gift_cnt .text .txt::before {
    display: none;
  }
  .gift_cnt .pics {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gift_cnt .pic img {
    width: 120px;
  }

  .ag_table {
    margin-top: 1rem;
  }
  .ag_table .tr {
    display: block;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .ag_table .tr .title {
    font-size: 1.4;
  }
  .ag_table .tr .title .tc_toggle {
    margin-top: 6px;
    margin-left: 0;
  }
  .ag_table .tr .speaker {
    margin-top: 10px;
  }

  .spk_items {
    display: block;
  }

  .spk_item {
    margin: 20px auto;
  }
  .spk_item .wording .name {
    font-size: 1.5em;
  }

  .cpy_items {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .cpy_items .cpy_item {
    margin-bottom: 10px;
  }

  .modal-header {
    padding-left: 1.5rem;
  }
  .modal-header .modal_t .name {
    display: block;
  }

  .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}