body {
  font-family: 'Roboto', "Noto Sans TC", sans-serif;
  background-color: #fff;
}

.main_color {
  color: #8841dd;
}

.sub_color {
  color: #90bff7;
}

.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-color: #8841dd;
  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%;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header.is_active {
  background-color: #343a40;
}

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

.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;
  width: 100%;
  z-index: 3;
}

.g_header .nav_area .nav_content {
  position: relative;
  width: 100%;
  height: auto;
  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 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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-color: #90bff7;
  color: #8841dd;
}

.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: #fff;
}

.g_header .nav_area .nav_link:hover {
  color: #87d9fe;
  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 #8841dd;
  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: #8841dd;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

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

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #8841dd;
}

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

.bttn .sub_b {
  background-color: #fff;
  color: #8841dd;
}

.bttn .sub_b:hover {
  background-color: rgba(135, 217, 254, 0.1);
}

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

.g_kv .desktop {
  position: relative;
  height: 50vw;
  background-color: #000;
  background-image: url("img/vs/bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}

.g_kv .t1 {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(0, -45%);
          transform: translate(0, -45%);
  width: 52.08333%;
}

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

.g_kv .date {
  position: absolute;
  left: 9.375%;
  bottom: 150px;
  color: #ffc000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.33vw;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.33);
  font-weight: 500;
  line-height: 1.2;
}

.g_kv .date .d {
  font-size: 2.5rem;
}

.g_kv .date .l {
  font-size: 1.25rem;
  display: block;
  margin: 0 10px;
}

.g_kv .date .n {
  font-size: 2.5rem;
}

.g_kv .date .time_glow {
  position: absolute;
  bottom: -25px;
  left: -25%;
  width: 150%;
  height: auto;
}

.g_kv .timer {
  position: absolute;
  left: 9.375%;
  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: #90bff7;
}

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.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 {
  position: relative;
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sc_bg img {
  position: absolute;
  height: auto;
}

.sc_bg .h_g {
  top: 2666px;
  left: 50%;
  margin-left: -800px;
  width: 130px;
}

.sc_bg .w_g {
  top: 1800px;
  right: 50%;
  margin-right: -840px;
  width: 160px;
}

.sc_bg .h_p {
  top: 888px;
  left: 50%;
  margin-left: -800px;
  width: 130px;
}

.sc_bg .w_p {
  top: 3388px;
  right: 50%;
  margin-right: -800px;
  width: 160px;
}

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

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

.sc_title .tit.c_main {
  color: #8841dd;
}

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

.sc_title .sub {
  position: relative;
  margin: 20px auto 0 auto;
  padding: 0 0 10px 0;
  font-size: 1.3794rem;
  color: #212529;
}

.sc_title .sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 2.779998779296875px;
  width: 420px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#24D1FB), to(#28F57E));
  background: linear-gradient(90deg, #24D1FB 0%, #28F57E 100%);
}

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

.sc_intro .sc_bg .h_g {
  width: 150px;
  -webkit-transform: translate(-460%, -60%);
          transform: translate(-460%, -60%);
}

.sc_intro .sc_bg .w_p {
  width: 200px;
  -webkit-transform: translate(240%, -120%);
          transform: translate(240%, -120%);
}

.intro_cnt {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.375rem;
}

.intro_cnt .joinReason {
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto;
  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;
}

.intro_cnt .joinReason .highlight_tit {
  color: #8841dd;
  font-size: 1.75rem;
  line-height: 1;
  text-align: center;
}

.intro_cnt .joinReason .reasons {
  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;
}

.intro_cnt .joinReason .reasons p {
  position: relative;
  margin: 0 0 0 15px;
  padding: 5px 0;
  border-bottom: 1px solid #8841dd;
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #8841dd;
}

.intro_cnt p {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  line-height: 1.65;
}

.intro_cnt .view {
  position: relative;
  width: 100%;
  height: auto;
  margin: 60px auto 30px auto;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

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

.intro_cnt .intro span {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: bold;
  color: #8865e7;
}

.intro_cta {
  position: relative;
  display: block;
  margin: 50px auto;
  text-align: center;
}

.intro_cta-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 2rem;
  width: auto;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 80px;
  font-weight: bold;
  display: inline-block;
  border-radius: 90px;
  border: 5px #fff solid;
  color: #012E2A;
  background-image: -webkit-gradient(linear, left top, right top, from(#0ce8d8), to(#fcd81e));
  background-image: linear-gradient(90deg, #0ce8d8, #fcd81e);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.intro_cta-btn:hover {
  border: 5px #fff solid;
  color: #4c4c4c;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.sc_five {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  background-color: #fff;
}

.sc_five .container {
  max-width: 1350px;
}

.sc_five .five_items {
  position: relative;
  margin: 50px auto;
  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_five .five_items .item {
  position: relative;
  margin: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_five .five_items .item p {
  margin: 0;
  padding: 0;
}

.sc_five .five_items .item .trend {
  font-size: 24px;
}

.sc_five .five_items .item .tit {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  margin: 0 auto;
  font-size: 28px;
  text-align: center;
}

.sc_five .five_items .item:nth-child(1) .tit {
  color: #63AE31;
}

.sc_five .five_items .item:nth-child(2) .tit {
  color: #1A91E1;
}

.sc_five .five_items .item:nth-child(3) .tit {
  color: #6E5AE2;
}

.sc_five .five_items .item:nth-child(4) .tit {
  color: #E748A4;
}

.sc_five .five_items .item:nth-child(5) .tit {
  color: #EDAD1D;
}

.sc_five .five_items .item .text {
  text-align: center;
  font-size: 20px;
}

.sc_five .five_items .item .icon {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  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_five .five_items .item .icon img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.cta_cnt {
  margin: 90px 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_show {
  background-color: #fff;
}

.sc_show .show_videos {
  position: relative;
  width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sc_show .video {
  position: relative;
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  margin: 40px 0;
  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_show .video.sp {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

.sc_show .video_tit {
  position: relative;
  font-size: 32px;
  line-height: 1.3;
  margin: 0 20px 0 0;
  text-align: center;
}

.sc_show .video_tit span {
  font-size: 40px;
}

.sc_show .video_tit .zh {
  font-size: 20px;
}

.sc_show .video_tit .onlyText {
  font-size: 30px;
  font-weight: bold;
}

.sc_show .video a {
  position: relative;
  width: 370px;
  height: calc(370px / 1.777778);
}

.sc_show .video_box {
  position: relative;
  width: 370px;
  height: calc(370px / 1.777778);
  background-color: #C4C4C4;
  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;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc_show .video_box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: url(img/icons/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.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc_show .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_show .video_box:hover::after {
  opacity: 1;
}

.sc_show .video_box img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sc_show .video:nth-child(1) .video_tit span {
  color: #F39800;
}

.sc_show .video:nth-child(2) .video_tit span {
  color: #63AE31;
}

.sc_show .video:nth-child(3) .video_tit span {
  color: #1A91E1;
}

.sc_show .video:nth-child(4) .video_tit span {
  color: #8841DD;
}

.sc_show .video:nth-child(5) .video_tit span {
  color: #EC00E1;
}

.sc_speaker {
  background-color: #fff;
}

.sc_speaker .speaker_cnt {
  position: relative;
  width: 100%;
  padding: 30px 0;
  background-color: #F7F1FC;
}

.sc_speaker .items {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}

.sc_speaker .spk_item {
  padding: 0 6px;
}

.sc_speaker .spk_item .pic {
  margin: 0 auto;
  width: calc(100% - 60px);
  position: relative;
  border-radius: 50%;
  padding-top: calc(100% - 60px);
  background: url("img/spk/speaker.jpg") center/contain no-repeat;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc_speaker .spk_item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.sc_speaker .spk_item .pic:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.sc_speaker .spk_item .wording {
  margin-top: .75em;
  text-align: center;
  font-size: 1.125em;
}

.sc_speaker .spk_item .wording .name {
  font-size: 1.2em;
  color: #661b87;
}

.sc_speaker .spk_item .wording .job {
  font-size: 1rem;
}

.sc_speaker .spk_item .wording .job span {
  display: inline-block;
  margin: .1em 0;
  padding: 0 .1em;
  line-height: 1.3;
}

.sc_speaker .spk_item .wording .job span:last-child {
  color: #151c7e;
}

.sc_speaker .controls {
  margin-top: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_speaker .sd_arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat;
  cursor: pointer;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 300ms;
  transition: -webkit-filter 300ms;
  transition: filter 300ms;
  transition: filter 300ms, -webkit-filter 300ms;
}

.sc_speaker .sd_arrow:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.sc_speaker .arr_prev {
  left: 0;
  background-image: url("img/ui/arr_prev.png");
}

.sc_speaker .arr_next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  right: 0;
  background-image: url("img/ui/arr_next.png");
}

.sc_speaker .sd_dots {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 6px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_speaker .sd_dots li {
  margin: 0 6px;
  background-color: #bbb;
  line-height: 0;
  border-radius: 8px;
  height: 12px;
  width: 12px;
  overflow: hidden;
  -webkit-transition: background 300ms, width 300ms;
  transition: background 300ms, width 300ms;
}

.sc_speaker .sd_dots li:hover {
  background-color: rgba(21, 179, 231, 0.6);
}

.sc_speaker .sd_dots li.slick-active {
  background-color: #15b3e7;
  width: 24px;
}

.sc_speaker .sd_dots button {
  font-size: 0;
  opacity: 0;
}

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

.sc_news .news_box {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

.sc_news .news_box img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sc_news .controls {
  margin-top: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_news .sd_arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat;
  cursor: pointer;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 300ms;
  transition: -webkit-filter 300ms;
  transition: filter 300ms;
  transition: filter 300ms, -webkit-filter 300ms;
}

.sc_news .sd_arrow:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.sc_news .arr_prev {
  left: 0;
  background-image: url("img/ui/arr_prev.png");
}

.sc_news .arr_next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  right: 0;
  background-image: url("img/ui/arr_next.png");
}

.sc_news .sd_dots {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 6px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_news .sd_dots li {
  margin: 0 6px;
  background-color: #bbb;
  line-height: 0;
  border-radius: 8px;
  height: 12px;
  width: 12px;
  overflow: hidden;
  -webkit-transition: background 300ms, width 300ms;
  transition: background 300ms, width 300ms;
}

.sc_news .sd_dots li:hover {
  background-color: rgba(21, 179, 231, 0.6);
}

.sc_news .sd_dots li.slick-active {
  background-color: #15b3e7;
  width: 24px;
}

.sc_news .sd_dots button {
  font-size: 0;
  opacity: 0;
}

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

.sc_report .report_items {
  position: relative;
  width: 100%;
  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_report .report_items .item {
  position: relative;
  max-width: 33%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  text-decoration: none;
  cursor: pointer;
}

.sc_report .report_items .item_inner {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 30px;
  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: 22px;
  background-color: #F1E4FB;
  color: #381364;
  border-radius: 10px;
  border: 1px solid #8841DD;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sc_report .report_items .item:hover .item_inner {
  background-color: #8841DD;
  color: #fff;
}

.sc_info {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0;
  background: url("img/view.jpg") 75% center/cover fixed;
}

.sc_info-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

.sc_info .container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_info .info_box {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sc_info .info_box:nth-child(1) {
  border-right: 1px solid #000;
  padding: 20px 30px 20px 0;
}

.sc_info .info_box:nth-child(2) {
  padding: 20px 0 20px 30px;
}

.sc_info .info_box .tit {
  position: relative;
  font-size: 30px;
  font-weight: bold;
  color: #8841dd;
}

.sc_info .info_box .cnt {
  position: relative;
  font-size: 22px;
  counter-reset: #000;
  margin: 30px 0;
}

.sc_info .info_box .btn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 30px;
  border: 3px solid #8841dd;
  background-color: #87d9fe;
  color: #8841dd;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.sc_info .info_box .btn:hover {
  border: 3px solid #87d9fe;
  background-color: #8841dd;
  color: #87d9fe;
}

.sc_info .info_box .contact {
  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;
  margin: 30px 0;
  padding: 50px 0 0 0;
}

.sc_info .info_box .contact img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 150px;
  margin: 0 30px 0 0;
}

.sc_info .info_box .contact_info {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-size: 18px;
  color: #000;
}

.sc_detail {
  padding: 30px 0;
  background-color: #f8f8f8;
}

.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;
}

.sc_detail .logos {
  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_detail .logos img {
  position: relative;
  width: auto;
  margin: 0 30px;
}

.sc_detail .logos .t {
  height: 90px;
}

.sc_detail .logos .d {
  height: 45px;
}

.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: #8841dd;
  border: 1px solid #8841dd;
  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: #8841dd;
  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 {
    display: none;
    background-color: #343a40;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.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 {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv .desktop {
    height: 45vh;
  }
  .g_kv .mobile {
    position: relative;
    width: 100%;
    height: auto;
    margin: 60px 0 0 0;
  }
  .g_kv .kv_cloudBox {
    -webkit-transform: translate(-10%, 0%);
            transform: translate(-10%, 0%);
    width: 52.08333%;
  }
  .g_kv .t1 {
    top: 100px;
    left: 50%;
    -webkit-transform: translate(-56%, 0);
            transform: translate(-56%, 0);
    width: 78.125%;
  }
  .g_kv .date {
    font-size: 1rem;
    bottom: 110px;
  }
  .g_kv .timer {
    position: relative;
    margin: 20px auto 0 auto;
    left: auto;
    bottom: auto;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_bg {
    display: none;
  }
  .sc_title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .sc_title .tit {
    font-size: 2rem;
  }
  .sc_title .sub {
    font-size: 1.3794rem;
  }
  .sc_title .sub::after {
    width: 90%;
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: justify;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .joinReason {
    margin: 15px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro_cnt .joinReason .reasons {
    margin: 15px auto;
    -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;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .sc_five {
    padding: 0px 0;
  }
  .sc_five .five_items {
    margin: 15px auto;
    -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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .sc_five .five_items .item {
    width: 90%;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 15px;
    margin: 15px;
  }
  .sc_five .five_items .item .trend {
    font-size: 18px;
  }
  .sc_five .five_items .item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .sc_five .five_items .item .tit {
    padding: 0 20px;
    margin: 0 auto;
    font-size: 18px;
  }
  .sc_five .five_items .item .text {
    font-size: 14px;
  }
  .sc_reason {
    padding: 50px 0;
  }
  .sc_reason .reason_items {
    margin: 30px auto;
  }
  .sc_reason .reason_items .item {
    max-width: 540px;
    padding: 5px;
    margin: 15px auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_reason .reason_items .item p {
    margin: 0 0 0 15px;
    font-size: 20px;
  }
  .sc_show .video {
    width: 70%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    margin: 10px 0;
    padding: 0;
  }
  .sc_show .video_tit {
    font-size: 16px;
    margin: 0 5px 0 0;
  }
  .sc_show .video_tit span {
    font-size: 18px;
  }
  .sc_show .video_tit .zh {
    font-size: 15px;
  }
  .sc_show .video_tit .onlyText {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    margin: 0 0 5px 0;
  }
  .sc_show .video a {
    width: 80vw;
    height: calc((100vw - 60px - 30px) / 1.777778);
  }
  .sc_show .video_box {
    width: 80vw;
    height: calc((100vw - 60px - 30px) / 1.777778);
  }
  #videoBox .modal-dialog {
    max-width: 90vw;
    margin: 0 auto;
  }
  .videoPop iframe {
    position: relative;
    width: 80vw;
    height: calc(80vw / 1.777778);
  }
  .sc_news .news_box {
    width: 90%;
  }
  .sc_report .report_items {
    position: relative;
    width: 100%;
    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_report .report_items .item {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .sc_report .report_items .item_inner {
    font-size: 21px;
  }
  .sc_info {
    padding: 30px 0;
  }
  .sc_info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc_info .info_box:nth-child(1) {
    border-right: 0;
    border-bottom: 1px solid #000;
    padding: 15px;
  }
  .sc_info .info_box:nth-child(2) {
    padding: 15px;
  }
  .sc_info .info_box .tit {
    font-size: 28px;
  }
  .sc_info .info_box .cnt {
    font-size: 18px;
    margin: 30px 0;
  }
  .sc_info .info_box .contact {
    position: relative;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 15px 0;
    padding: 0;
  }
  .sc_info .info_box .contact img {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    max-width: 150px;
    margin: 0 30px 0 0;
  }
  .sc_info .info_box .contact_info {
    font-size: 18px;
  }
  .sc_detail .logos {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sc_detail .logos img {
    position: relative;
    width: auto;
    margin: 1s0px 0;
  }
  .sc_detail .logos .t {
    width: 90%;
    height: auto;
  }
  .sc_detail .logos .d {
    width: 50%;
    height: auto;
  }
}
/*# sourceMappingURL=style.css.map */