html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
}

.all_page {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 19, 80, 0.67)), color-stop(100vh, rgba(0, 19, 80, 0))), url("img/indexbg.jpg");
  background: linear-gradient(rgba(0, 19, 80, 0.67), rgba(0, 19, 80, 0) 100vh), url("img/indexbg.jpg");
  background-position: center 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.g_header {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.g_header .header__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.g_header .head_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 70px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.g_header .head_logo a {
  display: block;
}

.g_header .head_logo .logo {
  display: block;
  height: 22px;
}

.g_header .head_nav {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.g_header .head_nav .nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g_header .head_nav .nav_item.is_active .nav_link {
  color: #ce0011;
}

.g_header .head_nav .nav_link {
  display: block;
  border-radius: 10px;
  padding: 15px;
  line-height: 1;
  color: #001350;
  font-size: 15px;
  background-color: #fff;
  -webkit-transition: color 300ms, background 300ms;
  transition: color 300ms, background 300ms;
  text-decoration: none;
}

.g_header .head_nav .nav_link:hover {
  text-decoration: none;
  color: #000;
  background-color: rgba(206, 0, 17, 0.1);
}

.bg-gray {
  background-color: #f7f7f7;
}

.g_main .main__sec {
  padding: 60px 0;
}

.g_main .sec__title {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
  padding-bottom: 16px;
}

.g_main .sec__title .tit {
  position: relative;
  display: inline-block;
  color: #001350;
  font-size: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 10px 0;
}

.g_main .sec__title .tit::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120%;
  max-width: 100%;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: currentColor;
}

.g_main .sec__title .subtit {
  margin-top: 6px;
  font-size: 20px;
}

.g_main .sec__title.in_white .tit {
  color: #fff;
}

.g_main .sec__title.in_white::after {
  background-color: #fff;
}

.cta_btn {
  display: inline-block;
  border-radius: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: color 300ms, background 300ms;
  transition: color 300ms, background 300ms;
}

.cta_btn.btn_main {
  background-color: #ce0011;
  color: #fff;
}

.cta_btn.btn_main:hover {
  text-decoration: none;
  color: #000;
  background-color: #f7f7f7;
}

.cta_btn.btn_sub {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}

.cta_btn.btn_sub:hover {
  text-decoration: none;
  background-color: #ce0011;
}

.cta_btn.btn_sub_black {
  color: #000;
  border: 1px solid #000;
  background-color: transparent;
}

.cta_btn.btn_sub_black:hover {
  color: #fff;
  text-decoration: none;
  border: 1px solid #0072FF;
  background-color: #0072FF;
}

.cta_btn.btn_sub_white {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}

.cta_btn.btn_sub_white:hover {
  color: #fff;
  text-decoration: none;
  border: 1px solid #0072FF;
  background-color: #0072FF;
}

.cta_btn.xl_size {
  padding: 24px 40px;
  font-size: 28px;
  border-radius: 50px;
  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;
}

.cta_btn.sm_size {
  border-radius: 35px;
  padding: 14px 28px;
  font-size: 22px;
}

.cta_btn img {
  position: relative;
  margin: 0 15px 0 0;
}

.sec_hero {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(1, 7, 26, 0.9)), to(rgba(45, 2, 21, 0.9)));
  background-image: linear-gradient(90deg, rgba(1, 7, 26, 0.9), rgba(45, 2, 21, 0.9));
}

.sec_hero .hero__wrapper {
  padding: 60px 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;
  color: #fff;
}

.sec_hero .hero_cnt {
  text-align: center;
}

.sec_hero .hero_cnt .hero_actImgs {
  position: relative;
  width: 100%;
  max-width: 1200px;
  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;
}

.sec_hero .hero_cnt .hero_actImgs-img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

.sec_hero .hero_cnt .hero_actImgs-img img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_hero .hero_cnt .hero_actImgs-img:nth-child(1) img {
  -webkit-box-shadow: 0 0 25px #003cff;
          box-shadow: 0 0 25px #003cff;
}

.sec_hero .hero_cnt .hero_actImgs-img:nth-child(2) img {
  -webkit-box-shadow: 0 0 25px #ce0011;
          box-shadow: 0 0 25px #ce0011;
}

.sec_hero .hero_cnt .hero_actImgs-img:hover:nth-child(1) img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 5px #003cff;
          box-shadow: 0 0 5px #003cff;
}

.sec_hero .hero_cnt .hero_actImgs-img:hover:nth-child(2) img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 5px #ce0011;
          box-shadow: 0 0 5px #ce0011;
}

.sec_hero .hero_cnt .hero__title {
  margin-bottom: 30px;
  font-size: 42px;
  line-height: 1.5;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
}

.sec_hero .hero_cnt .hero__text {
  max-width: 36em;
  font-size: 21px;
  line-height: 1.8;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.sec_hero .hero_cnt .hero__cta {
  margin-top: 30px;
}

.sec_about {
  background: radial-gradient(rgba(0, 19, 80, 0.5), rgba(0, 19, 80, 0.5));
}

.about__cnt {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__cnt .wording {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 900px;
  font-size: 20px;
  color: #fff;
}

.about__cnt .wording .cta {
  margin: 20px 0;
  text-align: center;
}

.about__cnt .video {
  position: relative;
  width: 100%;
  margin: 40px 0 0 0;
}

.about__cnt .video_tit {
  position: relative;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.about__cnt .video_cnt {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 20px auto;
  cursor: pointer;
}

.about__cnt .video_cnt img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.about__cnt .video_cnt::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.about__cnt .video_cnt:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.about__cnt .video_cnt:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.sec_product {
  background-color: #eeeeee;
}

.product__cnt {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.product__cnt .flex_wrap {
  position: relative;
  max-width: 30%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  padding: 0;
}

.pdt_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  padding: 40px 0;
  height: 100%;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: transparent;
}

.pdt_item .icon {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 99%;
  overflow: hidden;
  margin: 0 auto;
}

.pdt_item .icon img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.pdt_item .title {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: bold;
}

.pdt_item .text {
  text-align: justify;
  padding: 0 24px;
}

.pdt_item .item__bottom {
  position: relative;
  margin-top: 15px;
  padding: 0 24px;
  text-align: right;
}

.pdt_item .item__bottom .moreBtn {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
}

.pdt_item .item__bottom .moreBtn .more_arr {
  position: relative;
  width: 8px;
  height: auto;
  margin: 0 0 0 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.pdt_item .item__bottom .moreBtn:hover .more_arr {
  margin: 0 0 0 15px;
}

.pdt_item .pdt_btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  border-right: 1px solid currentColor;
  padding: 2px 10px;
  color: #ce0011;
}

.pdt_item .pdt_btn:last-child {
  border-right-width: 0;
}

.common__links {
  margin-top: 40px;
  text-align: center;
}

.common__links .cta_btn {
  margin: 0 10px;
}

.sec_service {
  background-color: rgba(51, 51, 51, 0.9);
}

.service__cnt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.srv_item {
  text-align: center;
}

.srv_item a {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.srv_item a:hover {
  text-decoration: none;
}

.srv_item a:hover .img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.srv_item .img {
  position: relative;
  z-index: 2;
  width: 100px;
  text-align: center;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.srv_item .title {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.g_main .sec_event {
  padding: 0;
}

.event__wrap {
  background-color: #eeeeee;
}

.event__wrap .box {
  padding: 50px 30px;
}

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

.event__cnt .items {
  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;
}

.evt_item {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0;
  background-color: transparent;
}

.evt_item a {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 50px;
  border-bottom: 1px solid #000;
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.evt_item:last-child a {
  border-bottom: 0;
}

.evt_item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.evt_item .item_cnt {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.evt_item .item_cnt .pic {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: auto;
}

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

.evt_item .item_cnt .cnt {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 0 50px;
  color: #000000;
}

.evt_item .item_cnt .cnt .item_date {
  position: relative;
  font-size: 15px;
  font-weight: 400;
}

.evt_item .item_cnt .cnt .item_tit {
  position: relative;
  font-size: 22px;
  font-weight: bold;
}

.evt_item .item_cnt .cnt .item_date {
  position: relative;
  font-size: 18px;
  font-weight: 400;
}

.evt_item .moreBtn {
  position: relative;
  width: 100%;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
}

.evt_item .moreBtn .more_arr {
  position: relative;
  width: 8px;
  height: auto;
  margin: 0 0 0 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.evt_item .moreBtn:hover .more_arr {
  margin: 0 0 0 15px;
}

.g_footer {
  padding: 26px 0 50px;
  background-color: #000;
  color: #fff;
}

.g_footer .footer_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.g_footer .cnt_top {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
}

.g_footer .cnt_top .footer__logo {
  padding: 24px;
}

.g_footer .cnt_top .footer__logo a {
  display: block;
}

.g_footer .cnt_top .footer__logo img {
  height: 24px;
}

.g_footer .cnt_left .footer__logo {
  padding: 24px;
}

.g_footer .cnt_left .footer__logo a {
  display: block;
}

.g_footer .cnt_left .footer__logo img {
  height: 24px;
}

.g_footer .cnt_left .copy {
  margin-top: 0;
}

.g_footer .cnt_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.g_footer .cnt_right .links {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  text-align: right;
}

.g_footer .cnt_right .links li {
  display: inline-block;
  vertical-align: middle;
}

.g_footer .cnt_right .links li a {
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
}

.g_footer .cnt_right .links li a:hover {
  color: #ce0011;
}

.g_fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  cursor: pointer;
}

.g_fixed .go_top {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #ddd url("img/arrow_top.png") center/36px no-repeat;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

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

.pic_center .wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 2%;
}

.pic_center.in_deep .wrap img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.page_tpc .sec_hero {
  background: url(img/topic/hb.jpg) center/cover no-repeat;
}

.page_tpc .sec_hero.bg1 {
  background: url(img/topic/hb_1.jpg) center/cover no-repeat;
}

.page_tpc .sec_hero .hero__wrapper {
  min-height: 50vh;
}

.page_tpc .sec_hero .hero_cnt {
  margin: 0 0 0 -15%;
}

.page_tpc .sec_hero .hero__title {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: bold;
  text-align: left;
}

.page_tpc .sec_hero .hero__title span {
  color: #FB28FF;
}

.page_tpc .part_title {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.page_tpc .part_title .tit {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #000;
}

.page_tpc .part_title .tit.wt {
  color: #fff;
}

.page_tpc .part_title a {
  color: #ec3544;
  text-decoration: underline;
}

.page_tpc .part_title a:hover {
  color: #4cffff;
}

.page_topic_sec1 {
  background-color: #fff;
}

.page_topic_sec1 .intro {
  position: relative;
  text-align: justify;
  margin: 0 auto 30px auto;
  max-width: 750px;
  font-size: 18px;
}

.page_topic_sec1 .intro span {
  color: #FA00FF;
}

.page_topic_sec1 .p_box {
  position: relative;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.page_topic_sec1 .p_box .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 500px;
          flex: 0 1 500px;
  padding: 10px;
}

.page_topic_sec1 .p_box .item .tit {
  position: relative;
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 15px 0;
  line-height: 1;
}

.page_topic_sec1 .p_box .item .tit a {
  position: relative;
  font-size: 16px;
  font-weight: 300;
}

.page_topic_sec1 .p_box .item .pic {
  position: relative;
  border-radius: 10px;
  border: 1px solid #1E579D;
  overflow: hidden;
}

.page_topic_sec1 .p_box .item .pic a img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_topic_sec1 .p_box .item .pic a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.page_topic_sec1 .p_box .item.b0 .pic {
  border-radius: 15px 0 0 0;
}

.page_topic_sec1 .p_box .item.b1 .pic {
  border-radius: 0 15px 0 0;
}

.page_topic_sec1 .p_box .item.b2 .pic {
  border-radius: 0 0 0 15px;
}

.page_topic_sec1 .p_box .item.b3 .pic {
  border-radius: 0 0 15px 0;
}

.page_topic_sec1 .p_box .item .spLink {
  position: absolute;
  width: 100%;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.page_topic_sec1 .p_box.lgBox .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
  padding: 10px;
}

.page_topic_sec1 .p_box.lgBox .item .pic {
  border-radius: 0;
  border: 0;
  overflow: hidden;
}

.page_topic_sec2 {
  background-color: #eeeeee;
}

.page_topic_sec2 .sec__cnt {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.page_topic_sec2 .pic {
  position: relative;
  width: 100%;
  margin: 30px auto;
  border-radius: 15px;
  overflow: hidden;
}

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

.page_topic_sec3 {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: url("img/topic/fb.jpg") center/cover no-repeat;
}

.page_topic_sec3 .sec__cnt {
  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;
}

.page_topic_sec3 .btnBox {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px;
}

.page_topic_sec3 .btnBox .text {
  position: relative;
  font-size: 18px;
  margin: 15px auto;
}

.page_topic_video {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: url("img/topic/fb_1.jpg") center/cover no-repeat;
}

.page_topic_video .sec__cnt {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_topic_video .video {
  position: relative;
  width: 100%;
  margin: 40px 0 0 0;
}

.page_topic_video .video_tit {
  position: relative;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.page_topic_video .video_cnt {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 20px auto;
  cursor: pointer;
}

.page_topic_video .video_cnt img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_topic_video .video_cnt::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_topic_video .video_cnt:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.page_topic_video .video_cnt:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.page_topic_video .btnBox {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
}

.page_topic_video .btnBox .text {
  position: relative;
  font-size: 18px;
  margin: 15px auto;
  color: #fff;
}

.page_abt .sec_hero {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 19, 80, 0.1)), to(rgba(0, 19, 80, 0.5))), url("img/product/hb.jpg") center/cover no-repeat;
  background: linear-gradient(90deg, rgba(0, 19, 80, 0.1), rgba(0, 19, 80, 0.5)), url("img/product/hb.jpg") center/cover no-repeat;
}

.page_abt .sec_hero .hero_cnt {
  text-align: left;
}

.page_abt .sec_hero .hero__wrapper {
  min-height: 50vh;
}

.page_abt .sec_hero .hero__text {
  max-width: 38em;
}

.page_abt .sec_hero .hero__cta {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page_abt .sec_hero .hero__cta .cta_btn {
  margin: 40px 40px 0 0;
  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;
}

.page_about_sec1 {
  background-color: #fff;
}

.page_about_sec1 .sec__cnt .wording {
  font-size: 16px;
  max-width: 44em;
  margin: 0 auto 30px;
}

.page_about_sec1 .sec__cnt .wording .tit {
  text-align: center;
  font-size: 20px;
  color: #ce0011;
}

.page_about_sec1 .sec__cnt .wording .text {
  margin-top: 10px;
  color: #748182;
}

.page_about_sec1 .video {
  position: relative;
  width: 100%;
  margin: 40px 0 0 0;
}

.page_about_sec1 .video_tit {
  position: relative;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.page_about_sec1 .video_cnt {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 20px auto;
  cursor: pointer;
}

.page_about_sec1 .video_cnt img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_about_sec1 .video_cnt::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_about_sec1 .video_cnt:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.page_about_sec1 .video_cnt:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.page_about_sec_pd {
  padding: 40px 0;
  background-color: #333;
  text-align: center;
}

.page_about_sec_pd .pic {
  max-width: 1280px;
  margin: 0 auto;
}

.page_about_sec2 {
  padding: 40px 0;
  background-color: #fff;
  text-align: center;
}

.page_about_sec2 .pic {
  max-width: 1280px;
  margin: 0 auto;
}

.page_about_link {
  position: relative;
  width: 100%;
  min-height: 380px;
  padding: 40px 0;
  background: url(img/about/link_bg.jpg) center/cover no-repeat;
  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;
}

.page_about_link .link {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 75px;
  border-radius: 75px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  font-size: 40px;
  color: #fff;
  border: 2px #fff solid;
  background: transparent;
  text-decoration: none;
}

.page_about_link .link:hover {
  background-color: #0072FF;
}

.page_product_hero {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 19, 80, 0.1)), to(rgba(0, 19, 80, 0.5))), url("img/product/hb.jpg") center/cover no-repeat;
  background: linear-gradient(90deg, rgba(0, 19, 80, 0.1), rgba(0, 19, 80, 0.5)), url("img/product/hb.jpg") center/cover no-repeat;
}

.page_product_hero .hero__wrapper {
  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;
  min-height: 40vh;
}

.g_main .page_product_hero {
  padding: 60px;
}

.page_product_hero .hero_cnt {
  max-width: 960px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_product_hero .hero_cnt .text {
  padding-right: 30px;
  color: #fff;
}

.page_product_hero .hero_cnt .pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.page_product_hero .hero_cnt .pic img {
  border-radius: 10px;
}

.page_product_hero .hero__title {
  line-height: 1;
  font-weight: 600;
}

.page_product_hero .hero__text {
  margin-top: 18px;
  font-size: 1.5rem;
}

.page_product_hero .hero__cta {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page_product_hero .hero__cta .cta_btn {
  margin: 40px 40px 0 0;
  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;
}

.page_product_summary {
  background: #fff;
}

.page_product_summary .text {
  position: relative;
  width: 100%;
  font-size: 18px;
  text-align: center;
}

.page_product_summary .text.AL {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.page_product_summary .pic {
  position: relative;
  width: 100%;
  margin: 50px auto;
}

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

.page_product_video {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 19, 80, 0.5)), to(#001350));
  background: linear-gradient(90deg, rgba(0, 19, 80, 0.5), #001350);
}

.page_product_video .vid_tit {
  text-align: center;
  font-size: 24px;
  margin-bottom: .5em;
  color: #fff;
}

.page_product_video .vid_link {
  text-align: center;
}

.page_product_video .vid_link a {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.page_product_video .vid_link a:hover {
  opacity: 0.7;
}

.page_product_other {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(247, 247, 247, 0.9)));
  background: linear-gradient(#fff, rgba(247, 247, 247, 0.9));
}

.g_main .page_product_other {
  padding: 50px 0;
}

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

.page_product_other .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 10px;
}

.page_product_other .item a {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.page_product_other .item a:hover .bg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.page_product_other .item .bg {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.page_product_other .item .cover,
.page_product_other .item .text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.page_product_other .item .cover {
  z-index: 2;
  background-color: rgba(0, 19, 80, 0.5);
}

.page_product_other .item .text {
  z-index: 3;
  font-size: 22px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #0072FF;
  color: #fff;
}

.modal .modal-dialog {
  max-width: 800px;
}

.modal .modal-content {
  padding: 20px 30px;
  border-radius: 20px;
}

.modal .modal-header {
  -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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #ce0011;
}

.modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: bold;
  display: block;
}

.modal .modal-header .sub {
  position: relative;
  margin: 5px 0 0 0;
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  display: block;
}

.modal .modal-header .btn-close {
  position: absolute;
  top: 25px;
  right: 30px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.modal .modal-header .btn-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.modal .modal-body {
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  line-height: 1.6;
}

.modal .modal-body ol {
  list-style: decimal;
  padding: 0 0 0 20px;
}

.modal .modal-body video {
  position: relative;
  width: 100%;
  height: auto;
}

.modal .modal-body .SWLH {
  width: 400px;
  margin: 0 auto;
  display: block;
}

.modal .modal-body .videoBox {
  position: relative;
  width: 100%;
  height: auto;
}

.modal .modal-body .videoBox iframe {
  position: relative;
  width: 700px;
  height: calc(700px / 1.777778);
}

.modal .modal-footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
}

.modal .modal-footer .ps {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 20px 0;
}

.modal .modal-footer .btn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 17px 40px;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 10px;
  color: #fff;
  background-color: #ce0011;
  border: 1px solid #ce0011;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.modal .modal-footer .btn:hover {
  color: #ce0011;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .all_page {
    background-position: 42% center;
  }
  .g_header .header__cnt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .g_header .head_logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 250px;
            flex: 0 1 250px;
  }
  .g_header .head_logo .logo {
    width: 100%;
    height: auto;
  }
  .g_header .menu_trigger {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
  .g_header .menu_trigger .trigger_icon {
    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;
  }
  .g_header .menu_trigger .trigger_icon span {
    width: 36px;
    height: 4px;
    margin: 3px 12px;
    background-color: #001350;
  }
  .g_header .head_nav {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .g_header .head_nav:not(.show) {
    display: none;
  }
  .g_header .head_nav .nav_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .g_header .head_nav .nav_item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .sec_hero .hero__wrapper {
    padding: 30px 0;
  }
  .sec_hero .hero_cnt .hero_actImgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_hero .hero_cnt .hero_actImgs-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 20px;
  }
  .about__cnt {
    display: block;
    padding: 0 15px;
  }
  .about__cnt .wording {
    padding-right: 0;
    padding-bottom: 30px;
    font-size: 18px;
  }
  .about__cnt .video {
    margin: 0;
  }
  .g_main .sec_video {
    padding: 40px 0;
  }
  .video__cnt .video__tit {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .product__cnt .flex_wrap {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    padding: 0;
  }
  .pdt_item {
    padding: 20px 0;
  }
  .pdt_item .icon {
    max-width: 100px;
  }
  .evt_item a {
    padding: 30px 15px;
  }
  .evt_item .item_cnt {
    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;
  }
  .evt_item .item_cnt .pic {
    max-width: 300px;
  }
  .evt_item .item_cnt .cnt {
    padding: 20px 0;
  }
  .g_footer {
    padding: 30px 15px 50px;
  }
  .g_footer .footer_cnt {
    display: block;
  }
  .g_footer .cnt_right {
    margin-top: 20px;
  }
  .g_footer .cnt_right .links {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .g_footer .cnt_right .links li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .page_tpc .sec_hero .hero__wrapper {
    min-height: 33vh;
  }
  .page_tpc .sec_hero .hero_cnt {
    margin: 0;
  }
  .page_tpc .sec_hero .hero__title {
    font-size: 21px;
  }
  .page_topic_sec1 .intro {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
  }
  .page_topic_sec2 .pic2 {
    position: relative;
  }
  .page_topic_sec3 {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: url("img/topic/fb.jpg") center left/cover no-repeat;
  }
  .page_topic_sec3 .sec__cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page_topic_sec3 .btnBox {
    position: relative;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 15px 0;
  }
  .page_topic_sec3 .btnBox .text {
    position: relative;
    font-size: 16px;
    margin: 15px auto;
  }
  .page_abt .sec_hero .hero_cnt {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
  }
  .page_abt .sec_hero .hero_cnt .hero__text {
    font-size: 1.125rem;
    text-align: justify;
  }
  .g_main .page_product_hero {
    padding: 40px;
  }
  .page_product_hero .hero_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page_product_hero .hero_cnt .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-right: 0;
  }
  .page_product_hero .hero_cnt .text .hero__title {
    font-size: 2rem;
  }
  .page_product_hero .hero_cnt .text .hero__text {
    font-size: 1.125rem;
  }
  .page_product_hero .hero_cnt .text .hero__cta {
    display: block;
  }
  .page_product_hero .hero_cnt .text .hero__cta .div {
    display: inline-block;
  }
  .page_product_hero .hero_cnt .text .hero__cta .cta_btn {
    margin: 25px;
  }
  .page_product_hero .hero_cnt .pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-bottom: 20px;
  }
  .page_product_other .items {
    display: block;
    text-align: center;
  }
  .page_product_other .item {
    display: inline-block;
    padding: 10px;
  }
  .modal .modal-dialog {
    max-width: 800px;
  }
  .modal .modal-content {
    margin: 50px auto;
    padding: 10px 20px;
  }
  .modal .modal-header .modal-title {
    font-size: 24px;
  }
  .modal .modal-header .sub {
    font-size: 16px;
  }
  .modal .modal-body {
    font-size: 16px;
    line-height: 1.3;
  }
  .modal .modal-body .SWLH {
    width: 200px;
  }
  .modal .modal-body .videoBox iframe {
    width: 80vw;
    height: calc(80vw / 1.777778);
  }
  .modal .modal-footer .ps {
    font-size: 18px;
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  .modal .modal-footer .btn {
    padding: 17px 40px;
    font-size: 24px;
  }
  .page_about_link {
    min-height: 180px;
  }
  .page_about_link .link {
    padding: 10px 35px;
    border-radius: 35px;
    font-size: 20px;
    border: 1px #fff solid;
  }
}
/*# sourceMappingURL=style.css.map */