body {
  font-family: "Noto Sans TC", sans-serif;
  background: url("img/kv/bg.jpg") 75% center/cover fixed;
}

.main_color {
  color: #16368d;
}

.sub_color {
  color: #76c4fe;
}

.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-color: #fff;
  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: -webkit-gradient(linear, left top, left bottom, from(#fbff00), to(#48ffcb));
  background-image: linear-gradient(180deg, #fbff00, #48ffcb);
  color: #000;
  line-height: 1.3;
}

.fix_aside .fx_item.is_primary2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3554c2), to(#009eb3));
  background-image: linear-gradient(180deg, #3554c2, #009eb3);
  color: #fff;
  line-height: 1.3;
}

.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.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}

.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header.is_active {
  background-image: linear-gradient(60deg, #019eb3 4%, #35c299 65%, #009eb3 80%);
}

.g_header.is_active .nav_area .nav_link {
  color: #fff;
}

.g_header.is_active .nav_area .nav_link:hover {
  color: #16368d;
}

.g_header .header_cnt {
  position: relative;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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_area .nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g_header .nav_area .nav_cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.g_header .nav_area .nav_item {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}

.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}

.g_header .nav_area .nav_item.is_highlight .nav_link {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbff00), to(#48ffcb));
  background-image: linear-gradient(180deg, #fbff00, #48ffcb);
  color: #000;
}

.g_header .nav_area .nav_item.is_highlight2 {
  padding: 0 6px;
}

.g_header .nav_area .nav_item.is_highlight2 .nav_link {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3554c2), to(#007ab3));
  background-image: linear-gradient(180deg, #3554c2, #007ab3);
  color: #fff;
}

.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #16368d;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header .nav_area .nav_link:hover {
  color: #fff;
  text-decoration: none;
}

.g_header .header_sns {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}

.g_header .header_sns .hover {
  display: inline-block;
  position: relative;
}

.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
}

.g_header .header_sns .hover:hover .hover_menu {
  display: block;
}

.g_header .header_sns .hover_holder {
  cursor: pointer;
}

.g_header .header_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}

.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}

.bttn {
  display: inline-block;
}

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #16368d;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #000;
}

.bttn .bttn_inner:hover {
  text-decoration: none;
}

.bttn .xl_size {
  font-size: 2em;
}

.bttn .lg_size {
  font-size: 1.5em;
}

.bttn .sm_size {
  font-size: 1em;
}

.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}

.bttn .main_b {
  background-color: #16368d;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

.bttn .main_b:hover {
  background-color: #ffff00;
}

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #16368d;
}

.bttn .dark_b:hover {
  background-color: #160f02;
}

.bttn .sub_b {
  background-color: #fff;
  color: #16368d;
}

.bttn .sub_b:hover {
  background-color: rgba(255, 255, 0, 0.1);
}

.g_kv {
  position: relative;
  overflow: hidden;
}

.g_kv .desktop {
  position: relative;
  height: 100vh;
  background-image: url("img/kv/kv_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.g_kv .kv_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.g_kv .kv_area-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.g_kv .kv_area-logo {
  position: absolute;
  top: 0;
  left: 5% 0;
  width: 36.45833%;
}

.g_kv .kv_area-logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.g_kv .hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 91.14583%;
  margin: -14% 0 0 -52%;
}

.g_kv .hand img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.g_kv .ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46.875%;
  margin: -30% 0 0 -5%;
}

.g_kv .ball img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.g_kv .tit {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 34.89583%;
  -webkit-transform: translate(0, -90%);
          transform: translate(0, -90%);
}

.g_kv .tit .t1 {
  position: relative;
  width: 100%;
}

.g_kv .tit .cta {
  position: relative;
  margin: 5% 0 0 0;
  display: inline-block;
  border-radius: 15px;
  cursor: pointer;
}

.g_kv .tit .cta span {
  font-weight: bold;
}

.g_kv .tit .cta a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #16368d;
  background-color: #6fcf42;
  border: 2px solid #6fcf42;
  font-size: 26px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 35px;
  border-radius: 15px;
}

.g_kv .tit .cta:hover a {
  color: #6fcf42;
  background-color: #16368d;
}

.g_kv .tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.sc_title .tit {
  color: #16368d;
  font-weight: 700;
  line-height: 1;
}

.sc_intro {
  position: relative;
  background-color: #fff;
}

.sc_intro .container {
  max-width: 1000px;
}

.sc_intro .ps {
  position: relative;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #343a40;
}

.intro_cnt {
  position: relative;
}

.intro_cnt p {
  position: relative;
  color: #000;
  padding: 15px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
}

.intro_cnt p span {
  color: #ffff00;
}

.intro_cnt .formImg {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
}

.combain {
  position: relative;
  max-width: 700px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto;
  padding: 5px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-image: linear-gradient(60deg, #019eb3 4%, #35c299 65%, #009eb3 80%);
}

.combain .combain_inner {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px;
  border-radius: 15px;
  background-color: #fff;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.combain .cnt {
  position: relative;
  width: 100%;
  display: block;
  color: #16368d;
  font-size: 21px;
  font-weight: 300;
  text-align: center;
  margin: 5px auto;
}

.combain .normal {
  position: relative;
  width: 100%;
  display: block;
  color: #5dcda1;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.combain .highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background-image: linear-gradient(60deg, #019eb3 4%, #35c299 65%, #009eb3 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta_cnt {
  margin: 10px 0 10px 0;
  padding-bottom: 20px;
}

.cta_cnt .before_cta {
  text-align: center;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 1em;
}

.cta_cnt .bttns {
  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;
}

.cta_cnt .bttn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  margin: 0 0.5em;
}

.cta_cnt .cta {
  position: relative;
  margin: 15px;
  text-align: center;
}

.cta_cnt .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 6.25rem;
  height: 100px;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
  border: 5px solid #39FAA9;
}

.cta_cnt .cta .bttn::before {
  -webkit-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(8.85%, #01FFFF), color-stop(103.15%, #FEE92E));
  background: linear-gradient(90deg, #01FFFF 8.85%, #FEE92E 103.15%);
}

.cta_cnt .cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  width: 350px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #0F236C;
  text-shadow: 0 1px 5px rgba(22, 54, 141, 0.3);
  -webkit-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cta_cnt .cta .bttn div span {
  font-size: 1.3125rem;
}

.cta_cnt .cta .bttn:hover {
  text-decoration: none;
}

.cta_cnt .cta .bttn:hover::before {
  left: 100%;
}

.cta_cnt .cta .bttn:hover div {
  color: #16368d;
  text-shadow: 0 1px 5px rgba(22, 54, 141, 0);
}

.cta_cnt .cta .bttn.sp::before {
  background: -webkit-gradient(linear, right top, left top, color-stop(8.85%, #01FFFF), color-stop(103.15%, #FEE92E));
  background: linear-gradient(-90deg, #01FFFF 8.85%, #FEE92E 103.15%);
}

.cta_cnt .cta .bttn.sp:hover::before {
  left: -100%;
}

.cta_cnt .cta .bttn.sp:hover div {
  color: #16368d;
  text-shadow: 0 1px 5px rgba(22, 54, 141, 0);
}

.sc_agenda {
  background-color: #eff6ed;
  padding: 50px 0;
}

.sc_agenda .container {
  padding: 0;
}

.agenda_cnt .table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.agenda_cnt .table .tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.agenda_cnt .table .tr.sp {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  color: #fff;
  font-weight: bold;
  background-color: #5dcda1;
}

.agenda_cnt .table .tr.top {
  padding: 15px 0;
  background-color: #5dcda1;
}

.agenda_cnt .table .tr.top .time {
  color: #fff;
}

.agenda_cnt .table .tr.top .infor {
  color: #fff;
}

.agenda_cnt .table .tr.bkt {
  padding: 15px 0;
  background-color: #5dcda1;
}

.agenda_cnt .table .tr.bkt .time {
  color: #fff;
}

.agenda_cnt .table .tr.bkt .infor {
  color: #fff;
}

.agenda_cnt .table .tr.noSpk .infor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  padding: 0 0 0 12%;
}

.agenda_cnt .table .tr .time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  line-height: 1.5;
  padding: 0 15px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.agenda_cnt .table .tr .time span {
  display: block;
}

.agenda_cnt .table .tr .infor {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
}

.agenda_cnt .table .tr .infor .g1 {
  color: #B543E2;
}

.agenda_cnt .table .tr .infor .g2 {
  color: #1E50E5;
}

.agenda_cnt .table .tr .topicBtn {
  position: relative;
  font-size: 18px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 25px;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 15px 0 15px 15px;
}

.agenda_cnt .table .tr .topicBtn.g1 {
  background-color: #B543E2;
  color: #fff;
  border: 1px solid #B543E2;
}

.agenda_cnt .table .tr .topicBtn.g1:hover {
  background-color: #fff;
  color: #B543E2;
}

.agenda_cnt .table .tr .topicBtn.g2 {
  background-color: #1E50E5;
  color: #fff;
  border: 1px solid #1E50E5;
}

.agenda_cnt .table .tr .topicBtn.g2:hover {
  background-color: #fff;
  color: #1E50E5;
}

.agenda_cnt .table .tr .topicCnt {
  display: none;
}

.agenda_cnt .table .tr .tit {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.agenda_cnt .table .tr .left_line {
  margin-top: 6px;
  margin-left: 15px;
  padding-left: 14px;
  border-left: 1px solid;
}

.agenda_cnt .table .tr .left_line.g1 {
  border-color: #B543E2;
}

.agenda_cnt .table .tr .left_line.g2 {
  border-color: #1E50E5;
}

.agenda_cnt .table .tr .text {
  line-height: 1.4;
  font-size: 16px;
}

.agenda_cnt .table .tr .text p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 0;
  color: #7f8c8d;
}

.agenda_cnt .table .tr .text p + p {
  margin-top: 10px;
}

.agenda_cnt .table .tr .text ol {
  color: #7f8c8d;
  padding: 0 0 0 20px;
}

.agenda_cnt .table .tr .list {
  padding-left: 25px;
  margin-bottom: 0;
}

.agenda_cnt .table .tr .list li {
  line-height: 1.4;
  margin-top: 5px;
}

.agenda_cnt .table .tr .right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 15px;
}

.agenda_cnt .table .tr .spk {
  margin-bottom: 10px;
  line-height: 1.3;
}

.agenda_cnt .table .tr .spk .spk_it {
  margin-bottom: .75rem;
}

.agenda_cnt .table .tr .spk .spk_it .n {
  margin-bottom: 4px;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
  color: #085E3A;
}

.agenda_cnt .table .tr .spk .spk_it .t,
.agenda_cnt .table .tr .spk .spk_it .c {
  font-size: 16px;
  color: #7f8c8d;
}

.sc_speaker {
  background-color: #fff;
  padding: 50px 0 100px 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;
}

.speaker_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  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: 2rem 20px 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black, rgba(0, 0, 0, 0));
  color: #fff;
  line-height: 1.1;
}

.speaker_cnt .item .text .n {
  color: #39FAA9;
  font-weight: 700;
  font-size: 18px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.speaker_cnt .item .text .t {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.speaker_cnt .item .text .c {
  margin-top: 4px;
  font-size: 12px;
}

.speaker_cnt .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sc_shop {
  position: relative;
  width: 100%;
  padding: 50px 0 50px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#16368d), color-stop(20%), color-stop(rgba(22, 54, 141, 0.8)), color-stop(80%), to(#16368d));
  background-image: linear-gradient(180deg, #16368d, 20%, rgba(22, 54, 141, 0.8), 80%, #16368d);
}

.sc_shop .sc_title .tit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_shop .sc_title .tit img {
  position: relative;
  margin: 0 15px 0 0;
}

.sc_shop .sc_title .tit p {
  color: #39FAA9;
}

.sc_shop .container {
  max-width: 1200px;
}

.sc_shop .items {
  position: relative;
  width: 100%;
  margin: 30px auto;
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_shop .items .item {
  position: relative;
  width: calc(33% - 32px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 15px;
  padding: 20px;
  border: 2px solid #39FAA9;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_shop .items .item.L1 {
  padding: 40px 20px;
  border: 2px solid #39FAA9;
}

.sc_shop .items .item.L1 .tit {
  color: #39FAA9;
  font-size: 24px;
}

.sc_shop .items .item.L2 {
  padding: 40px 20px;
  border: 2px solid #FAE639;
}

.sc_shop .items .item.L2 .tit {
  color: #FAE639;
  font-size: 24px;
}

.sc_shop .items .item.L3 {
  padding: 40px 20px;
  border: 2px solid #31F3FF;
}

.sc_shop .items .item.L3 .tit {
  color: #31F3FF;
  font-size: 24px;
}

.sc_shop .items .item .company {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.sc_shop .items .item .tit {
  position: relative;
  width: 100%;
  text-align: center;
  color: #39FAA9;
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
}

.sc_shop .items .item .dBtn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 15px;
  margin: 30px auto;
  color: #fff;
  background-color: #76c4fe;
  border: 1px solid #76c4fe;
  border-radius: 8px;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.sc_shop .items .item .dBtn:hover {
  color: #76c4fe;
  background-color: #fff;
}

.sc_shop .items .item .video_box {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border: 1px solid #76c4fe;
  border-radius: 8px;
  overflow: hidden;
}

.sc_shop .items .item .video_box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url(img/ui/playBtn.svg) center/cover no-repeat;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 99%;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.sc_shop .items .item .video_box:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.sc_shop .items .item .video_box:hover::after {
  opacity: 1;
}

.sc_shop .items .item img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.sc_shop .items .item .contact {
  position: relative;
  width: 100%;
  border-top: 1px solid #39FAA9;
  margin: 55px 0 0 0;
}

.sc_shop .items .item .contact .c_tit {
  position: relative;
  width: 100%;
  text-align: center;
  margin: -17px auto 0 auto;
}

.sc_shop .items .item .contact .c_tit span {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3px 15px;
  background-color: #39FAA9;
  color: #000;
  border-radius: 15px;
}

.sc_shop .items .item .contact .c_cnt {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
}

.sc_shop .items .item .contact .c_cnt .c {
  color: #39FAA9;
}

.sc_shop .items .item .contact .c_cnt .n {
  color: #76c4fe;
  font-weight: bold;
}

.sc_shop .items .item .contact .c_cnt a {
  color: #fff;
}

.sc_gift {
  position: relative;
  width: 100%;
  padding: 50px 0 50px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#16368d), color-stop(20%), to(#16368d));
  background-image: linear-gradient(180deg, #16368d, 20%, #16368d);
}

.sc_gift .sc_title .tit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_gift .sc_title .tit img {
  position: relative;
  margin: 0 15px 0 0;
}

.sc_gift .sc_title .tit p {
  color: #39FAA9;
}

.sc_gift .container {
  max-width: 1200px;
}

.sc_gift .items {
  position: relative;
  width: 100%;
  margin: 30px auto;
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_gift .items .item {
  position: relative;
  width: calc(25% - 22px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_gift .items .item img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 0 15px 0;
}

.sc_gift .items .item .info {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
}

.sc_logo {
  padding: 50px 0;
  background-color: #fff;
}

.sc_logo .container {
  max-width: 1100px;
}

.sc_logo .unit {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_logo .unit .tit {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
  font-size: 21px;
  color: #16368d;
  font-weight: 300;
}

.sc_logo .unit .logos {
  position: relative;
  margin: 0 0 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_logo .unit .logos .logo {
  position: relative;
  margin: 0 5px;
  width: auto;
  height: 80px;
}

.sc_detail {
  background-color: #eff6ed;
}

.sc_detail .list {
  padding-left: 1.5em;
}

.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}

.sc_detail .ps {
  font-size: 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

.modal-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal-header .tit {
  font-size: 21px;
  font-weight: bold;
}

.modal-header .job {
  font-size: 16px;
  font-weight: 500;
}

.modal-header .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal-title {
  font-size: 28px;
  line-height: 1;
}

.modal-title span {
  font-size: 16px;
}

.modal-title .web {
  position: relative;
  display: inline-block;
  margin: 0 0 0 15px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.modal-title .web a {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #16368d;
  border: 1px solid #16368d;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-title .web a:hover {
  color: #16368d;
  background-color: #fff;
}

.modal-body ul {
  padding: 0 20px;
}

#videoBox .modal-dialog {
  max-width: 1035px;
}

.videoPop {
  position: relative;
  width: 100%;
}

.videoPop .ps {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.videoPop iframe {
  position: relative;
  width: 1000px;
  height: calc(1000px / 1.777778);
}

@media (max-width: 768px) {
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
    background-image: linear-gradient(60deg, #019eb3 4%, #35c299 65%, #009eb3 80%);
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_item.is_highlight2 {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv .desktop {
    height: 120vw;
  }
  .g_kv .kv_area-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
  }
  .g_kv .hand {
    margin: 20% 0 0 -52%;
  }
  .g_kv .ball {
    margin: -3% 0 0 -5%;
  }
  .g_kv .tit {
    position: absolute;
    top: 50%;
    left: 7%;
    width: 80%;
    -webkit-transform: translate(0, -80%);
            transform: translate(0, -80%);
  }
  .g_kv .tit .t1 {
    position: relative;
    width: 100%;
  }
  .g_kv .tit .cta {
    font-size: 18px;
  }
  .main_sc {
    padding: 20px 0;
  }
  .sc_title {
    font-size: 28px;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro {
    padding: 30px 0;
  }
  .intro_cnt {
    font-size: 1rem;
  }
  .intro_cnt p {
    font-size: 1rem;
    text-align: justify;
    margin: 0;
  }
  .combain .cnt {
    font-size: 21px;
    margin: 5px auto;
  }
  .combain .normal {
    font-size: 19px;
  }
  .combain .highLight {
    font-size: 1.6rem;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .cta_cnt .cta .bttn div {
    font-size: 1.625rem;
  }
  .agenda_cnt .table .tr {
    display: block;
  }
  .agenda_cnt .table .tr.noSpk .infor {
    padding: 0;
  }
  .agenda_cnt .table .tr .time {
    margin-bottom: 10px;
    padding: 15px 0;
    font-size: 21px;
    font-weight: 500;
  }
  .agenda_cnt .table .tr .time span {
    display: inline-block;
  }
  .agenda_cnt .table .tr .text {
    font-size: .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;
  }
  .sc_shop {
    padding: 50px 0 30px 0;
  }
  .sc_shop .items {
    margin: 0 auto;
    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;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .sc_shop .items .item {
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 20px 15px;
    padding: 20px;
    border: 2px solid #39FAA9;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_shop .items .item.L1 {
    padding: 30px 20px;
    border: 2px solid #39FAA9;
  }
  .sc_shop .items .item.L1 .tit {
    color: #39FAA9;
    font-size: 18px;
  }
  .sc_shop .items .item.L2 {
    padding: 30px 20px;
    border: 2px solid #FAE639;
  }
  .sc_shop .items .item.L2 .tit {
    color: #FAE639;
    font-size: 18px;
  }
  .sc_shop .items .item.L3 {
    padding: 30px 20px;
    border: 2px solid #31F3FF;
  }
  .sc_shop .items .item.L3 .tit {
    color: #31F3FF;
    font-size: 18px;
  }
  .sc_shop .items .item .company {
    position: relative;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  .sc_shop .items .item .tit {
    position: relative;
    width: 100%;
    text-align: center;
    color: #39FAA9;
    font-size: 18px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
  .sc_shop .items .item .dBtn {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 15px;
    margin: 30px auto;
    color: #fff;
    background-color: #76c4fe;
    border: 1px solid #76c4fe;
    border-radius: 8px;
    font-size: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .sc_shop .items .item .dBtn:hover {
    color: #76c4fe;
    background-color: #fff;
  }
  .sc_shop .items .item .video_box {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    border: 1px solid #76c4fe;
    border-radius: 8px;
    overflow: hidden;
  }
  .sc_shop .items .item .video_box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: url(img/ui/playBtn.svg) center/cover no-repeat;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 99%;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }
  .sc_shop .items .item .video_box:hover {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  }
  .sc_shop .items .item .video_box:hover::after {
    opacity: 1;
  }
  .sc_shop .items .item img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .sc_shop .items .item .contact {
    position: relative;
    width: 100%;
    border-top: 1px solid #39FAA9;
    margin: 55px 0 0 0;
  }
  .sc_shop .items .item .contact .c_tit {
    position: relative;
    width: 100%;
    text-align: center;
    margin: -17px auto 0 auto;
  }
  .sc_shop .items .item .contact .c_tit span {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3px 15px;
    background-color: #39FAA9;
    color: #000;
    border-radius: 15px;
  }
  .sc_shop .items .item .contact .c_cnt {
    position: relative;
    width: 100%;
    color: #fff;
    font-size: 16px;
  }
  .sc_shop .items .item .contact .c_cnt .c {
    color: #39FAA9;
  }
  .sc_shop .items .item .contact .c_cnt .n {
    color: #76c4fe;
    font-weight: bold;
  }
  .sc_shop .items .item .contact .c_cnt a {
    color: #fff;
  }
  .sc_gift {
    padding: 50px 0 30px 0;
  }
  .sc_gift .items {
    margin: 0 auto;
    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;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .sc_gift .items .item {
    width: calc(50% - 15px);
    margin: 15px 5px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_gift .items .item img {
    margin: 0 0 5px 0;
  }
  .sc_gift .items .item .info {
    font-size: 16px;
  }
  .sc_logo {
    padding: 20px 0;
  }
  .sc_logo .unit {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sc_logo .unit .tit {
    position: relative;
    font-size: 21px;
    color: #16368d;
    font-weight: 300;
  }
  .sc_logo .unit .logos {
    position: relative;
    margin: 0 0 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_logo .unit .logos .logo {
    position: relative;
    margin: 0 5px;
    width: auto;
    height: 80px;
  }
  #videoBox .modal-dialog {
    max-width: 90vw;
    margin: 0 auto;
  }
  .videoPop iframe {
    position: relative;
    width: 80vw;
    height: calc(80vw / 1.777778);
  }
}
/*# sourceMappingURL=style.css.map */