body {
  font-family: "Noto Sans TC", sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, from(#000e2b), color-stop(45%), color-stop(#163c53), color-stop(55%), to(#000e2b)) no-repeat;
  background: linear-gradient(#000e2b, 45%, #163c53, 55%, #000e2b) no-repeat;
}

.main_color {
  color: #5196fe;
}

.sub_color {
  color: #012034;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: .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: .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-color: #5196fe;
  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 .header_cnt {
  position: relative;
  padding: .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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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;
  cursor: pointer;
}

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

.g_header .nav_area .nav_item.is_highlight .nav_link {
  background-color: #5196fe;
  color: #fff;
}

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

.g_header .nav_area .nav_link:hover {
  color: #031927;
  text-decoration: none;
  cursor: pointer;
}

.g_header.is_active {
  background: linear-gradient(95.8deg, #012034 1.03%, #135466 74.8%);
}

.g_header.is_active .nav_item.is_highlight .nav_link {
  background-color: #5196fe;
  color: #fff;
}

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

.g_header.is_active .nav_link:hover {
  color: #275287;
}

.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 #5196fe;
  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.5rem;
}

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

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

.bttn .main_b {
  background-image: -webkit-gradient(linear, left top, right top, from(#54C5AA), color-stop(#0071BD), to(#54C5B0));
  background-image: linear-gradient(90deg, #54C5AA, #0071BD, #54C5B0);
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
  border-radius: 0 15px;
  font-size: 1.5rem;
}

.bttn .main_b:hover {
  color: #fff;
  letter-spacing: 8px;
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
}

.bttn .main_c {
  background-image: -webkit-gradient(linear, left top, right top, from(#54C5AA), color-stop(#0071BD), to(#54C5B0));
  background-image: linear-gradient(90deg, #54C5AA, #0071BD, #54C5B0);
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
  border-radius: 15px 0;
  font-size: 1.5rem;
}

.bttn .main_c:hover {
  color: #fff;
  letter-spacing: 8px;
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
}

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #5196fe;
}

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

.bttn .sub_b {
  background-color: #fff;
  color: #5196fe;
  border: 2px solid #5196fe;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.bttn .sub_b:hover {
  background-color: #5196fe;
  color: #fff;
}

.logo_area {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 30px;
  background-color: #fff;
}

.logo_area img {
  position: relative;
  display: inline-block;
  height: auto;
}

.logo_area img:nth-child(1) {
  width: 150px;
  margin: 0 10px 0 0;
}

.logo_area img:nth-child(2) {
  width: 150px;
}

.logo_area img:nth-child(3) {
  width: 300px;
}

@-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);
  }
}

.kv_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #031927;
}

.kv_bg_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/kvbg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: float 20s ease-in-out alternate infinite;
          animation: float 20s ease-in-out alternate infinite;
}

@-webkit-keyframes ballFlow {
  0% {
    -webkit-transform: translate(0%, -50%) scale(1.05) rotate(0deg);
            transform: translate(0%, -50%) scale(1.05) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0%, -40%) scale(1) rotate(1deg);
            transform: translate(0%, -40%) scale(1) rotate(1deg);
  }
  100% {
    -webkit-transform: translate(0%, -50%) scale(1.05) rotate(0deg);
            transform: translate(0%, -50%) scale(1.05) rotate(0deg);
  }
}

@keyframes ballFlow {
  0% {
    -webkit-transform: translate(0%, -50%) scale(1.05) rotate(0deg);
            transform: translate(0%, -50%) scale(1.05) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0%, -40%) scale(1) rotate(1deg);
            transform: translate(0%, -40%) scale(1) rotate(1deg);
  }
  100% {
    -webkit-transform: translate(0%, -50%) scale(1.05) rotate(0deg);
            transform: translate(0%, -50%) scale(1.05) rotate(0deg);
  }
}

.kv_bg .kv_ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42.1875%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-animation: ballFlow 10s ease-in-out alternate infinite;
          animation: ballFlow 10s ease-in-out alternate infinite;
}

.kv_bg .kv_ball_inner {
  position: relative;
  width: 100%;
}

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

.kv_bg .kv_ball .ball_m {
  position: relative;
  width: 100%;
}

.kv_bg .kv_ball .ball_s {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16.66667%;
}

@-webkit-keyframes ballAni {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ballAni {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.kv_bg .kv_ball .b1 {
  -webkit-transform: translate(-295%, 55%);
          transform: translate(-295%, 55%);
}

.kv_bg .kv_ball .b1 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.kv_bg .kv_ball .b2 {
  -webkit-transform: translate(-290%, -80%);
          transform: translate(-290%, -80%);
}

.kv_bg .kv_ball .b2 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.kv_bg .kv_ball .b3 {
  -webkit-transform: translate(-222%, -188%);
          transform: translate(-222%, -188%);
}

.kv_bg .kv_ball .b3 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.kv_bg .kv_ball .b4 {
  -webkit-transform: translate(-107%, -252%);
          transform: translate(-107%, -252%);
}

.kv_bg .kv_ball .b4 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.kv_bg .kv_ball .b5 {
  -webkit-transform: translate(35%, -242%);
          transform: translate(35%, -242%);
}

.kv_bg .kv_ball .b5 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.kv_bg .kv_ball .b6 {
  -webkit-transform: translate(149%, -164%);
          transform: translate(149%, -164%);
}

.kv_bg .kv_ball .b6 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.kv_bg .kv_ball .b7 {
  -webkit-transform: translate(199%, -54%);
          transform: translate(199%, -54%);
}

.kv_bg .kv_ball .b7 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.kv_bg .kv_ball .b8 {
  -webkit-transform: translate(195%, 70%);
          transform: translate(195%, 70%);
}

.kv_bg .kv_ball .b8 img {
  -webkit-animation: ballAni 5s ease-in-out normal infinite;
          animation: ballAni 5s ease-in-out normal infinite;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

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

.g_kv .desktop {
  position: relative;
  height: 50vw;
}

.g_kv .kv_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

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

.g_kv .tit {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-110%, -50%);
          transform: translate(-110%, -50%);
  width: 39.0625%;
}

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

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

.g_kv .timer {
  position: absolute;
  right: 8.33333%;
  bottom: 60px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
}

.g_kv .timer .tb {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 3.5rem;
  padding-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #000;
  letter-spacing: normal;
}

.g_kv .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: #54C5AA;
}

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - .5rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.g_kv .timer .d {
  border-radius: 1rem 0 0 1rem;
}

.g_kv .timer .d::after {
  content: "day";
}

.g_kv .timer .h::after {
  content: "hour";
}

.g_kv .timer .m::after {
  content: "min";
}

.g_kv .timer .s {
  border-radius: 0 1rem 1rem 0;
}

.g_kv .timer .s::after {
  content: "sec";
}

.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

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

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

.sc_title .tit.c_white {
  color: #fff;
}

.sc_title .subTit {
  position: relative;
  margin: 20px auto;
  font-size: 28px;
  color: #99d92f;
  font-weight: 500;
  line-height: 1;
}

.highlight_tit {
  font-size: 42px;
  font-weight: 700;
  margin: 50px auto 0 auto;
  line-height: 1;
  text-align: center;
  color: transparent;
  background: -webkit-gradient(linear, right top, left top, from(#5196fe), color-stop(#031927), to(#5196fe));
  background: linear-gradient(-90deg, #5196fe, #031927, #5196fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sc_intro {
  position: relative;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#012034), color-stop(80%), to(rgba(1, 32, 52, 0)));
  background-image: linear-gradient(0deg, #012034, 80%, rgba(1, 32, 52, 0));
}

.sc_intro .intro_c {
  position: relative;
  width: 100%;
  margin: 25px auto;
}

.sc_intro .intro_c img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sc_intro .sp_intro {
  position: relative;
  width: 100%;
  margin: 35px 0;
}

.sc_intro .sp_intro .tit {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 0 15px 0;
}

.sc_intro .sp_intro .tit_inner {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 35px;
}

.sc_intro .sp_intro .tit_inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#54C5AA), color-stop(#0071BD), to(#54C5B0));
  background-image: linear-gradient(90deg, #54C5AA, #0071BD, #54C5B0);
}

.sc_intro .sp_intro .items {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -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;
}

.sc_intro .sp_intro .items .item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 20px);
          flex: 1 0 calc(50% - 20px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_intro .sp_intro .items .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#0071BD), color-stop(#54C5AA), to(#54C5B0));
  background-image: linear-gradient(90deg, #0071BD, #54C5AA, #54C5B0);
  -webkit-clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%, 0 25px);
          clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%, 0 25px);
  z-index: 0;
}

.sc_intro .sp_intro .items .item img {
  position: relative;
  width: 30px;
  height: auto;
  margin: 0 10px;
  z-index: 1;
}

.sc_intro .sp_intro .items .item p {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  color: #012235;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.intro_cnt {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px 50px;
  border-radius: 25px;
  margin: 0 auto;
  text-align: justify;
  font-size: 1.3125rem;
  background-color: rgba(1, 32, 52, 0.9);
}

.intro_cnt p {
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 1.65;
  color: #fff;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.intro_cnt p .G {
  color: #21ff9a;
}

.intro_cnt p .Y {
  color: #FFEC41;
}

.intro_cnt p .B {
  color: #2fffed;
}

.combain {
  position: relative;
  width: 640px;
  max-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: -webkit-gradient(linear, right top, left top, from(#012034), to(#135466));
  background: linear-gradient(-90deg, #012034, #135466);
}

.combain .combain_inner {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 15pxs;
  border-radius: 15px;
  background-color: #EFF1F3;
  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;
  text-align: center;
  color: #275287;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  margin: 10px auto 30px auto;
}

.combain .highLight {
  display: inline-block;
  color: transparent;
  font-size: 2rem;
  margin: 30px auto 0 auto;
  background: -webkit-gradient(linear, right top, left top, from(#5196fe), color-stop(#031927), to(#5196fe));
  background: linear-gradient(-90deg, #5196fe, #031927, #5196fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta_cnt {
  margin: 50px 0 30px 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;
}

.sc_gift {
  position: relative;
  background-color: rgba(239, 241, 243, 0.9);
  padding: 50px 0 150px 0;
  -webkit-box-shadow: 0 15px 15px rgba(3, 25, 39, 0.8);
          box-shadow: 0 15px 15px rgba(3, 25, 39, 0.8);
}

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

.gift_cnt {
  position: relative;
  width: 100%;
  height: auto;
  background-color: transparent;
}

.gift_cnt .giftTit {
  position: relative;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #2F314D;
  margin: 15px auto;
}

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

.gift_cnt .gift_box {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

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

.gift_cnt .gift_item {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  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;
}

.gift_cnt .gift_item .pic {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 550px;
  border-radius: 55px;
  margin: 0 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.gift_cnt .gift_item .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.gift_cnt .gift_item .tit {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  color: #031927;
  margin: 0;
  font-size: 21px;
}

.gift_cnt .gift_item .tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.gift_cnt .gift_item .name {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2;
  color: #5196fe;
}

.gift_cnt .gift_item .text {
  margin-top: 4px;
  color: #012034;
}

.sc_reference {
  position: relative;
  background-color: transparent;
  padding: 50px 0;
}

.sc_reference .items {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_reference .items .item {
  position: relative;
  display: block;
  width: calc(33% - 40px);
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
}

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

.sc_reference .items .item:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.sc_agenda {
  position: relative;
  background-color: rgba(239, 241, 243, 0.9);
}

.agd_cnt {
  background-color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #275287;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 15px rgba(39, 82, 135, 0.3);
          box-shadow: 0 3px 15px rgba(39, 82, 135, 0.3);
}

.agd_cnt .modal {
  color: #275287;
}

.agd_cnt .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(39, 82, 135, 0.5);
}

.agd_cnt .tr.tr_light {
  background-color: rgba(81, 150, 254, 0.1);
}

.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  background-color: #275287;
  color: #fff;
}

.agd_cnt .tr_head .td_time {
  color: #fff;
}

.agd_cnt .td {
  padding: 0.6em 1.2em;
}

.agd_cnt .td_time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8em;
          flex: 0 0 8em;
  text-align: center;
  color: #2F314D;
}

.agd_cnt .td_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.agd_cnt .ag_tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 1em;
  font-weight: 700;
  font-size: 1.125em;
}

.agd_cnt .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.agd_cnt .ag_spk {
  line-height: 1.35;
}

.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}

.agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}

.agd_cnt .ag_spk .job {
  color: #2F314D;
}

.agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
  color: #275287;
  font-size: 19px;
  font-weight: bold;
}

.agd_cnt .ag_spk_tit {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.4em;
  padding-bottom: 0.2em;
  font-size: 0.875em;
  color: #343a40;
}

.agd_normal .td_title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.agd_normal .td_speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.agd_split .tr {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.agd_split .td {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agd_split .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: 10px 0;
}

.agd_split .tr_split_tit {
  color: #fff;
}

.agd_split .tr_split_tit .td_split {
  border-radius: 20px 20px 0 0;
}

.agd_split .tr_split_tit .td_split.sp1 {
  background-color: #5196fe;
}

.agd_split .tr_split_tit .td_split.sp2 {
  background-color: #012034;
}

.agd_split .sp1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-left: 5px solid #5196fe;
}

.agd_split .sp2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-left: 5px solid #012034;
}

.agd_split .ag_spk {
  margin-top: .2rem;
  padding: .2rem 0;
}

.ag_tip {
  color: #2F314D;
  text-align: center;
}

.sc_speaker {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(3, 25, 39, 0.5);
          box-shadow: 0 0 15px rgba(3, 25, 39, 0.5);
  z-index: 1;
}

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

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

.speaker_items .item {
  position: relative;
  width: 100%;
  min-width: 250px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 50px;
}

.speaker_items .item .pic {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  background: url("img/ui/speech.svg") center/120px no-repeat;
  cursor: pointer;
  border-radius: 99%;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.3);
}

.speaker_items .item .pic img {
  position: relative;
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.speaker_items .item .pic:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
}

.speaker_items .item .name {
  margin-bottom: 6px;
  color: #275287;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
}

.speaker_items .item .name span {
  display: inline-block;
}

.sc_sponsor {
  background-color: #f8f8f8;
}

.sc_sponsor .container-fluid {
  max-width: 1440px;
}

.sort_cnt .sorts {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sort_cnt .sorts .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 5px;
}

.sort_cnt .sorts .item_link {
  display: block;
  border-radius: 8px;
  padding: 0.75em 1.5em;
  background-color: #012034;
  font-size: 1em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 250ms;
  transition: background 250ms;
}

.sort_cnt .sorts .item_link:hover {
  text-decoration: none;
  background-color: rgba(1, 32, 52, 0.6);
}

.sort_cnt .sorts .item_link.is_active {
  background-color: #031927;
}

.sponsor_cnt {
  padding: 20px 0;
}

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

.sponsor_cnt .spr_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 10px;
}

.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 10px;
  background-color: #fff;
}

.sc_location {
  position: relative;
  background-color: #eff1f3;
  padding-top: 20px;
  padding-bottom: 50px;
}

.sc_location .sec_cnts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc_location .loc_left {
  padding: 20px 0 20px 30px;
}

.sc_location .loc_left .val {
  line-height: 1.1;
}

.sc_location .loc_left .val .tit {
  font-size: 1.25rem;
  font-weight: 700;
  color: #012034;
}

.sc_location .loc_left .val span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  margin-top: 6px;
  padding-bottom: 20px;
}

.sc_location .loc_left .way .tit {
  font-weight: 700;
}

.sc_location .loc_left .way ul,
.sc_location .loc_left .way ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.sc_location .loc_left .way li {
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 1.3;
}

.sc_location .loc_left .way li a {
  color: #5196fe;
  text-decoration: underline;
}

.sc_location .loc_left .way li a:hover {
  color: #54C5AA;
}

.sc_location .loc_left .way li span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.sc_location .loc_right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 67%;
          flex: 0 0 67%;
}

.sc_location .loc_right .map_wrap {
  position: relative;
  height: 100%;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.sc_location .loc_right .map_wrap iframe {
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_detail {
  position: relative;
  background-color: rgba(0, 66, 123, 0.8);
}

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

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

.sc_detail .ps {
  color: #fff;
  font-size: .75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

@media (max-width: 768px) {
  .g_header {
    background: linear-gradient(95.8deg, #012034 1.03%, #135466 74.8%);
  }
  .g_header .header_cnt {
    display: block;
    padding: .5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    color: #fff;
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv {
    padding: 65px 0 0 0;
    background-color: #EFF1F3;
  }
  .g_kv .mobile {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
  }
  .g_kv .mobile .bg {
    position: absolute;
    top: 8%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 25, 39, 0.8);
  }
  .g_kv .tit {
    position: absolute;
    top: 145px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 90%;
  }
  .g_kv .t1 {
    position: relative;
    width: 100%;
  }
  .g_kv .t1 img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .g_kv .t2 {
    position: relative;
    margin: 3% auto 0 auto;
    width: 90%;
  }
  .g_kv .t2 img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .g_kv .timer {
    right: 10%;
    bottom: 10%;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .highlight_tit {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .sc_intro .sp_intro {
    margin: 25px 0;
  }
  .sc_intro .sp_intro .tit {
    margin: 0 0 15px 0;
  }
  .sc_intro .sp_intro .items {
    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;
    -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;
  }
  .sc_intro .sp_intro .items .item {
    position: relative;
    width: calc(100% - 20px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 10px;
    padding: 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_intro .sp_intro .items .item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(#0071BD), color-stop(#54C5AA), to(#54C5B0));
    background-image: linear-gradient(90deg, #0071BD, #54C5AA, #54C5B0);
    -webkit-clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%, 0 25px);
            clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%, 0 25px);
    z-index: 0;
  }
  .sc_intro .sp_intro .items .item img {
    position: relative;
    width: 30px;
    height: auto;
    margin: 0 10px;
    z-index: 1;
  }
  .sc_intro .sp_intro .items .item p {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    color: #012235;
    z-index: 1;
    margin: 0;
    padding: 0;
  }
  .intro_cnt {
    padding: 15px 15px;
    border-radius: 15px;
    font-size: 1.125rem;
    text-align: justify;
    font-size: 1.125rem;
    text-align: justify;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .reason_items {
    margin: 15px auto;
  }
  .intro_cnt .reason_items .item {
    min-width: 300px;
    width: 90%;
    margin: 10px auto;
  }
  .intro_cnt .reason_items .item img {
    position: relative;
    width: auto;
    height: 40px;
  }
  .intro_cnt .reason_items .item p {
    position: relative;
    margin: 0 15px 0 15px;
    padding: 0;
    display: block;
    font-size: 1.125rem;
    color: #fff;
  }
  .cta_cnt {
    margin: 10px 0 10px 0;
    padding-bottom: 20px;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .combain .cnt {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
    font-size: 1rem;
  }
  .combain .highLight {
    font-size: 1.3125rem;
  }
  .gift_cnt {
    display: block;
    margin-top: 20px;
  }
  .gift_cnt .gift_boxs {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gift_cnt .gift_box {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .gift_cnt .gift_items {
    position: relative;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -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;
  }
  .gift_cnt .gift_item {
    padding: 0;
    border-top: solid rgba(0, 0, 0, 0.1);
    border-left: 0;
    border-width: 1px 0;
  }
  .gift_cnt .gift_item .tit {
    margin-bottom: 6px;
  }
  .gift_cnt .gift_item .name {
    min-height: auto;
  }
  .sc_gift {
    background-color: #eff1f3;
    padding: 20px 0 150px 0;
  }
  .gift_cnt .sc_title {
    margin: 5px auto;
  }
  .gift_cnt .giftTit {
    font-size: 18px;
    margin: 15px auto;
  }
  .gift_cnt .gift_item {
    border: 0;
    padding: 0;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gift_cnt .gift_item .pic {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    margin: 30px 0;
  }
  .gift_cnt .gift_item .tit {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    color: #031927;
    margin: 0;
    font-size: 21px;
  }
  .gift_cnt .gift_item .tit img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .gift_cnt .gift_item .name {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.2;
    color: #5196fe;
  }
  .gift_cnt .gift_item .text {
    margin-top: 4px;
    color: #012034;
  }
  .sc_reference {
    padding: 0 0 30px 0;
  }
  .sc_reference .items {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_reference .items .item {
    position: relative;
    display: block;
    width: 90%;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
    cursor: pointer;
  }
  .sc_reference .items .item img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .sc_reference .items .item:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr_head {
    display: none;
  }
  .agd_cnt .td {
    padding: 0.2em 1em;
  }
  .agd_cnt .td:first-child {
    padding-top: 1em;
  }
  .agd_cnt .td:last-child {
    padding-bottom: 1em;
  }
  .agd_cnt .td_time {
    text-align: left;
  }
  .agd_cnt .td_title {
    display: block;
  }
  .agd_cnt .topic_toggle {
    margin-top: 0.5em;
  }
  .agd_split .td {
    width: 100%;
  }
  .agd_split .tr_split_tit {
    display: none;
  }
  .agd_split .tr_split_tit .td_split {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    text-align: center;
  }
  .agd_split .tr_split_tit .td_time {
    display: none;
  }
  .agd_split .sp2 {
    border-top: 1px solid;
  }
  .agd_split .td_split.sp1:nth-child(2) {
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  .agd_split .td_time.sp2:nth-child(3) {
    padding-top: 1em;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .speaker_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .speaker_items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    min-width: auto;
  }
  .sort_cnt .sorts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sort_cnt .sorts .item {
    margin: 0;
    padding: 3px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
  .sort_cnt .sorts .item_link {
    text-align: center;
    padding: 0.65em 1.3em;
  }
  .sponsor_cnt {
    padding: 0;
  }
  .sponsor_cnt .spr_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 3px;
  }
  .sc_location {
    padding-bottom: 100px;
  }
  .sc_location .sec_cnts {
    display: block;
  }
  .sc_location .loc_right .map_wrap {
    padding-top: 100%;
  }
  .sc_location .loc_left {
    padding: 20px 10px 0;
  }
}
/*# sourceMappingURL=style.css.map */