html {
  font-size: 16px;
}

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

.all_page {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 1, 89, 0.67)), color-stop(100vh, rgba(4, 1, 89, 0))), url("img/indexbg.jpg");
  background: linear-gradient(rgba(4, 1, 89, 0.67), rgba(4, 1, 89, 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;
  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;
}

.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: #040159;
  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 {
  position: relative;
  overflow: hidden;
}

.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: #040159;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 10px 0;
}

.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 {
  position: relative;
  background-color: #f2f2f2;
}

.sec_hero .hero__wrapper {
  position: relative;
  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__wrapper.homePage {
  padding: 0 0 60px 0;
}

.sec_hero .hero_cnt {
  position: relative;
  width: 100%;
}

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

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

.sec_hero .hero_cnt .hero_actImgs-img a {
  position: relative;
  width: 100%;
  height: calc(50vw / 2.5);
  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;
  text-decoration: none;
}

.sec_hero .hero_cnt .hero_actImgs-img-info {
  position: relative;
  text-align: center;
  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;
}

.sec_hero .hero_cnt .hero_actImgs-img-info p {
  position: relative;
  color: #fff;
  font-size: 1.9375rem;
  line-height: 1.3;
  font-weight: 300;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}

.sec_hero .hero_cnt .hero_actImgs-img-info p span {
  font-weight: bold;
}

.sec_hero .hero_cnt .hero_actImgs-img-info .icon {
  position: relative;
  width: 100%;
  max-width: 100px;
  margin: 0 0 10px 0;
}

.sec_hero .hero_cnt .hero_actImgs-img-info .icon img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sec_hero .hero_cnt .hero_actImgs-img-info .btn_more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 25px;
  background: url(img/home/banner/btn_bg.svg) center/100% 100% no-repeat;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_hero .hero_cnt .hero_actImgs-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -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) .hero_actImgs-img-bg {
  background-image: url(img/home/banner/hb_1.jpg);
}

.sec_hero .hero_cnt .hero_actImgs-img:nth-child(2) .hero_actImgs-img-bg {
  background-image: url(img/home/banner/hb_2.jpg);
}

.sec_hero .hero_cnt .hero_actImgs-img:nth-child(3) .hero_actImgs-img-bg {
  background-image: url(img/home/banner/hb_3.jpg);
}

.sec_hero .hero_cnt .hero_actImgs-img:nth-child(4) .hero_actImgs-img-bg {
  background-image: url(img/home/banner/hb_4.jpg);
}

.sec_hero .hero_cnt .hero_actImgs-img:hover .hero_actImgs-img-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sec_hero .hero_cnt .hero_actImgs-img:hover .hero_actImgs-img-info .btn_more {
  font-size: 1rem;
}

.sec_hero .hero_cnt .hero__title {
  position: relative;
  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 {
  position: relative;
  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 {
  position: relative;
  background-color: #f2f2f2;
  padding: 60px 0 20px 0 !important;
}

.sec_about-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% + 620px);
  height: 75%;
  background-color: #040159;
}

.sec_about .container {
  max-width: 1200px;
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sec_about .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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sec_about .about__cnt .wording {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 900px;
  font-size: 1rem;
  font-weight: 300;
  text-align: justify;
  color: #fff;
}

.sec_about .about__cnt .wording .cta {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 30px;
  background-color: #2f66f4;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.1875rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_about .about__cnt .wording .cta .arr {
  position: relative;
  margin: 0 0 0 15px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_about .about__cnt .wording .cta:hover {
  letter-spacing: 0.3125rem;
}

.sec_about .about__cnt .wording .cta:hover .arr {
  margin: 0 0 0 25px;
}

.sec_about .video {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 50px 30px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec_about .video_tit {
  position: relative;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
}

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

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

.sec_about .video_cnt::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  -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;
}

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

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

.sec_product {
  background-color: #f2f2f2;
}

.sec_product .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0px;
  max-width: 1200px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
          box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
}

.sec_product .container .sec__title {
  margin: 0;
}

.sec_product .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;
  gap: 20px;
}

.sec_product .product__cnt .flex_wrap {
  position: relative;
  max-width: 23%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 23%;
          flex: 1 0 23%;
  padding: 0;
  background-color: #f2f2f2;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_product .product__cnt .flex_wrap .pdt_item {
  position: relative;
  width: 100%;
  padding: 20px 20px 20px 20px;
  min-height: 520px;
  text-align: center;
  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;
  text-decoration: none;
}

.sec_product .product__cnt .flex_wrap .pdt_item .icon {
  position: relative;
  width: 100%;
  max-width: 100px;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

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

.sec_product .product__cnt .flex_wrap .pdt_item .title {
  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: 10px auto 30px auto;
  height: 55px;
  font-size: 1.3125rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #2f66f4;
}

.sec_product .product__cnt .flex_wrap .pdt_item .text {
  text-align: justify;
  padding: 0;
  color: #000;
}

.sec_product .product__cnt .flex_wrap .item__bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: #040159;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_product .product__cnt .flex_wrap .item__bottom .more_arr {
  position: relative;
  width: 20px;
  height: 20px;
}

.sec_product .product__cnt .flex_wrap:hover {
  -webkit-box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
          box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
}

.sec_product .product__cnt .flex_wrap:hover .item__bottom {
  background-color: #e50012;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

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

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

.sec_service {
  position: relative;
  background-color: #f2f2f2;
}

.sec_service-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: calc(100% - 60px);
  background-color: #2f66f4;
}

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

.sec_service .sec__title {
  text-align: left;
  padding: 0;
}

.sec_service .service__cnt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}

.sec_service .service__cnt .srv_item {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.sec_service .service__cnt .srv_item a {
  position: relative;
  width: 100%;
  text-decoration: none;
  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;
}

.sec_service .service__cnt .srv_item a .imgBox {
  position: relative;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  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_service .service__cnt .srv_item a .imgBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_service .service__cnt .srv_item a .imgBox img {
  position: relative;
  width: 100%;
  max-width: 150px;
  height: auto;
}

.sec_service .service__cnt .srv_item a .title {
  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;
  width: 100%;
  height: 50px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1875rem;
  color: #000;
  text-align: center;
  background-color: #fff;
}

.sec_service .service__cnt .srv_item:hover a .imgBox::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sec_service .service__cnt-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  padding: 0;
}

.sec_service .service__cnt-item:nth-child(1) a .imgBox::before {
  background-image: url(img/home/service_bg_1.jpg);
}

.sec_service .service__cnt-item:nth-child(2) a .imgBox::before {
  background-image: url(img/home/service_bg_2.jpg);
}

.sec_service .service__cnt-item:nth-child(3) a .imgBox::before {
  background-image: url(img/home/service_bg_3.jpg);
}

.sec_event {
  position: relative;
  background-color: #f2f2f2;
  padding: 100px 0 !important;
}

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

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

.sec_event .event__cnt .items {
  position: relative;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sec_event .event__cnt .items .evt_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 20px);
          flex: 0 1 calc(50% - 20px);
  margin: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 5px rgba(4, 1, 89, 0.3);
          box-shadow: 0 3px 5px rgba(4, 1, 89, 0.3);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  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: 20px;
  text-decoration: none;
}

.sec_event .event__cnt .items .evt_item .item_cnt {
  position: relative;
  width: 100%;
}

.sec_event .event__cnt .items .evt_item .item_cnt .cnt {
  position: relative;
  width: 100%;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 70px 10px 0;
  border-bottom: 1px solid #2f66f4;
  text-align: justify;
}

.sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_date {
  position: absolute;
  bottom: 10px;
  right: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #2f66f4;
}

.sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_tit {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  color: #040159;
}

.sec_event .event__cnt .items .evt_item .item_cnt .item_text {
  position: relative;
  font-size: 0.875rem;
  font-weight: 300;
  color: #000000;
  padding: 10px 70px 0 0;
}

.sec_event .event__cnt .items .evt_item .moreBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #2f66f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sec_event .event__cnt .items .evt_item .moreBtn .more_arr {
  position: relative;
  width: 15px;
  height: 15px;
}

.sec_event .event__cnt .items .evt_item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
          box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
}

.sec_event .event__cnt .items .evt_item:hover .moreBtn {
  background-color: #e50012;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.g_footer {
  padding: 30px 0;
  background-color: #999999;
  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_automotive .sec_hero {
  background: url(img/automotive/hb.jpg) center/cover no-repeat;
}

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

.page_automotive .sec_about {
  position: relative;
  background-color: #f2f2f2;
  padding: 60px 0 !important;
}

.page_automotive .sec_about-inner {
  position: relative;
  width: 100%;
}

.page_automotive .sec_about-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% + 400px);
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
          box-shadow: 0 5px 15px rgba(4, 1, 89, 0.5);
}

.page_automotive .sec_about .container {
  max-width: 1200px;
  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;
}

.page_automotive .sec_about .about__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;
  padding: 50px 0;
}

.page_automotive .sec_about .about__cnt-img {
  position: relative;
  width: 100%;
  max-width: 650px;
}

.page_automotive .sec_about .about__cnt-img img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.page_automotive .sec_about .video {
  position: relative;
  width: 100%;
  margin: 0;
}

.page_automotive .sec_about .video_tit {
  position: relative;
  text-align: center;
  font-size: 1rem;
  color: #000000;
  font-weight: bold;
}

.page_automotive .sec_about .video_cnt {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #000000;
  background-color: #fff;
  overflow: hidden;
}

.page_automotive .sec_about .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_automotive .sec_about .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_automotive .sec_about .video_cnt:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

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

.page_automotive-four {
  background-color: #f2f2f2;
}

.page_automotive-four .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px;
  background-color: #3168f4;
}

.page_automotive-four .container .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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.page_automotive-four .container .items .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  -webkit-box-shadow: 0 3px 5px rgba(4, 1, 89, 0.3);
          box-shadow: 0 3px 5px rgba(4, 1, 89, 0.3);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

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

.page_automotive-four .container .items .item .four_1_url {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(255, 0, 0, 0);
  -webkit-transform: translateY(40%);
          transform: translateY(40%);
}

.page_automotive-four .container .items .item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(4, 1, 89, 0.8);
          box-shadow: 0 5px 15px rgba(4, 1, 89, 0.8);
}

.page_automotive-ele {
  position: relative;
  background-color: #f2f2f2;
}

.page_automotive-ele-bg {
  position: absolute;
  top: -13%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/automotive/bg_car.png) top center/cover no-repeat;
  pointer-events: none;
}

.page_automotive-ele .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px;
}

.page_automotive-ele .container .sec__title {
  text-align: left;
}

.page_automotive-ele .container .items {
  position: relative;
  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;
  gap: 20px;
}

.page_automotive-ele .container .items.g1 {
  width: 50%;
}

.page_automotive-ele .container .items.g2 {
  margin: 100px auto 50px auto;
  width: 100%;
}

.page_automotive-ele .container .items.g2 .item:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.page_automotive-ele .container .items .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 20px);
          flex: 0 1 calc(50% - 20px);
}

.page_automotive-ele .container .items .item .tit {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #040159;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 30px;
  color: #fff;
  font-size: 1.125rem;
  margin: 20px 0;
  -webkit-clip-path: polygon(15% 0%, 100% 0, 100% 60%, 85% 100%, 0 100%, 0 40%);
          clip-path: polygon(15% 0%, 100% 0, 100% 60%, 85% 100%, 0 100%, 0 40%);
}

.page_automotive-ele .container .items .item p {
  position: relative;
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

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

.page_automotive-area {
  position: relative;
  background-color: #f2f2f2;
}

.page_automotive-area .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;
  gap: 20px;
}

.page_automotive-area .items .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  min-height: 200px;
  background-color: #2f66f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
}

.page_automotive-area .items .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.page_automotive-area .items .item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.page_automotive-area .items .item:hover::before {
  opacity: 0;
}

.page_automotive-area .items .item .tit {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}

.page_automotive-area .items .item .n {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
}

.page_automotive-area .items .item:first-child {
  padding: 50px;
  cursor: auto;
  pointer-events: none;
}

.page_automotive-area .items .item:first-child::before {
  opacity: 0;
}

.page_automotive-area .items .item:nth-child(2) {
  background-image: url(img/automotive/area_1.jpg);
}

.page_automotive-area .items .item:nth-child(3) {
  background-image: url(img/automotive/area_2.jpg);
}

.page_automotive-area .items .item:nth-child(4) {
  background-image: url(img/automotive/area_3.jpg);
}

.page_automotive-area .items .item:nth-child(5) {
  background-image: url(img/automotive/area_4.jpg);
}

.page_automotive-area .items .item:nth-child(6) {
  background-image: url(img/automotive/area_5.jpg);
}

.page_automotive-prod {
  background-color: #f2f2f2;
}

.page_automotive-prod .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px;
  background-color: #e3e3e3;
}

.page_automotive-prod .container .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;
  gap: 50px 30px;
}

.page_automotive-prod .container .items .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  -webkit-box-shadow: 0 3px 5px rgba(4, 1, 89, 0.3);
          box-shadow: 0 3px 5px rgba(4, 1, 89, 0.3);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_automotive-prod .container .items .item .n {
  position: relative;
  width: 100%;
  background-color: #fff;
  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: 1rem;
  font-weight: bold;
  color: #040159;
}

.page_automotive-prod .container .items .item .links {
  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;
}

.page_automotive-prod .container .items .item .links a {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  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;
  text-decoration: none;
  color: #fff;
  background-color: #2f66f4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.page_automotive-prod .container .items .item .links a:first-child {
  border-right: 1px solid #fff;
}

.page_automotive-prod .container .items .item .links a:hover {
  color: #2f66f4;
  background-color: #fff;
}

.page_automotive-prod .container .items .item img {
  position: relative;
  width: 100%;
  max-width: 90px;
  height: auto;
}

.page_automotive-prod .container .items .item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(4, 1, 89, 0.8);
          box-shadow: 0 5px 15px rgba(4, 1, 89, 0.8);
}

.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 {
  width: auto;
  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 .tit span {
  font-size: 0.9375rem;
}

.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 500px;
          flex: 0 1 500px;
  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(4, 1, 89, 0.1)), to(rgba(4, 1, 89, 0.5))), url("img/product/hb.jpg") center/cover no-repeat;
  background: linear-gradient(90deg, rgba(4, 1, 89, 0.1), rgba(4, 1, 89, 0.5)), url("img/product/hb.jpg") center/cover no-repeat;
}

.page_abt .sec_hero .hero_cnt {
  width: auto;
  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 {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 80px 0;
  background-color: #f2f2f2;
  text-align: center;
}

.page_about_sec_pd .tit {
  position: relative;
  text-align: center;
  color: #040159;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 35px 0;
}

.page_about_sec_pd .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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}

.page_about_sec_pd .items .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  border-radius: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page_about_sec_pd .items .item .pic {
  position: relative;
  width: 100%;
}

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

.page_about_sec_pd .items .item .w {
  position: relative;
  width: 100%;
  height: 230px;
  background-color: #2f66f4;
  color: #fff;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 25px;
  font-size: 1.125rem;
  font-weight: 500;
}

.page_about_sec_pd .items .item .w span {
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  display: block;
  margin: 0 0 15px 0;
}

.page_about_sec_pd .pdi {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page_about_sec_pd .pdi img {
  position: relative;
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 15px;
}

.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(4, 1, 89, 0.1)), to(rgba(4, 1, 89, 0.5))), url("img/product/hb.jpg") center/cover no-repeat;
  background: linear-gradient(90deg, rgba(4, 1, 89, 0.1), rgba(4, 1, 89, 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(4, 1, 89, 0.5)), to(#040159));
  background: linear-gradient(90deg, rgba(4, 1, 89, 0.5), #040159);
}

.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(4, 1, 89, 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: 1400px) {
  .g_header .head_logo {
    height: 50px;
  }
  .g_header .head_logo .logo {
    height: 15px;
  }
  .g_header .head_nav .nav_link {
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 13px;
  }
  .sec_hero .hero_cnt .hero_actImgs {
    max-width: 1200px;
  }
  .sec_hero .hero_cnt .hero_actImgs-img a {
    height: 285px;
  }
  .sec_hero .hero_cnt .hero_actImgs-img-info p {
    font-size: 1.3125rem;
    line-height: 1.3;
  }
  .sec_hero .hero_cnt .hero_actImgs-img-info .icon {
    margin: 0 0 10px 0;
  }
  .sec_hero .hero_cnt .hero_actImgs-img-info .btn_more {
    padding: 10px 25px;
    font-size: 0.875rem;
    letter-spacing: 3px;
  }
}

@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: #040159;
  }
  .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: 0;
  }
  .sec_hero .hero_cnt .hero_actImgs {
    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;
  }
  .sec_hero .hero_cnt .hero_actImgs-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    width: 100%;
  }
  .sec_hero .hero_cnt .hero_actImgs-img a {
    height: 200px;
  }
  .sec_about {
    padding: 30px 0 !important;
  }
  .sec_about-bg {
    width: 100%;
    height: calc(100% - 100px);
  }
  .sec_about .container {
    max-width: 1200px;
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .sec_about .about__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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sec_about .video {
    margin: 25px 0 0 0;
    padding: 0 0 20px 0;
  }
  .g_main .sec_video {
    padding: 40px 0;
  }
  .video__cnt .video__tit {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .sec_product .container {
    padding: 20px;
  }
  .sec_product .product__cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .sec_product .product__cnt .flex_wrap {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item {
    padding: 15px 15px 60px 15px;
    min-height: auto;
  }
  .sec_service-bg {
    width: 100%;
    height: calc(100% - 160px);
  }
  .sec_service .service__cnt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .sec_service .service__cnt .srv_item a .imgBox {
    min-height: 150px;
  }
  .sec_service .service__cnt-item {
    width: 90%;
  }
  .sec_event {
    padding: 50px 0 !important;
  }
  .sec_event .event__cnt .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_event .event__cnt .items .evt_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt {
    padding: 0 0 30px 0;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_date {
    bottom: 5px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_tit {
    font-size: 1.125rem;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_text {
    padding: 10px 0 0 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_automotive .sec_hero {
    background: url(img/automotive/hb_mb.jpg) center/cover no-repeat;
  }
  .page_automotive .sec_about {
    padding: 0 !important;
  }
  .page_automotive .sec_about-bg {
    width: 100%;
    height: 100%;
  }
  .page_automotive .sec_about .container {
    -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;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 30px 0;
  }
  .page_automotive .sec_about .about__cnt {
    padding: 20px 0;
  }
  .page_automotive .sec_about .about__cnt-img {
    width: 60%;
  }
  .page_automotive .sec_about .video {
    width: 90%;
  }
  .page_automotive-four {
    padding: 0 !important;
  }
  .page_automotive-four .container {
    padding: 50px 15px;
  }
  .page_automotive-four .container .items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .page_automotive-four .container .items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
  .page_automotive-ele {
    padding: 30px 0 0 0 !important;
  }
  .page_automotive-ele-bg {
    top: -50px;
    left: 0;
    width: 100vw;
    height: 100vw;
  }
  .page_automotive-ele .container {
    padding: 20px 15px;
  }
  .page_automotive-ele .container .items {
    gap: 20px;
  }
  .page_automotive-ele .container .items.g1 {
    width: 100%;
  }
  .page_automotive-ele .container .items.g2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    margin: 30px auto 30px auto;
  }
  .page_automotive-ele .container .items.g2 .item:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .page_automotive-ele .container .items .item .tit {
    padding: 5px 20px;
    color: #fff;
    font-size: 1rem;
    margin: 10px 0;
  }
  .page_automotive-ele .container .items .item p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .page_automotive-area {
    padding: 0 !important;
  }
  .page_automotive-area .items {
    gap: 10px;
  }
  .page_automotive-area .items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    min-height: 48vw;
    padding: 5px 15px;
  }
  .page_automotive-area .items .item .tit {
    font-size: 1.5rem;
  }
  .page_automotive-area .items .item .n {
    font-size: 1rem;
  }
  .page_automotive-area .items .item:first-child {
    padding: 30px;
  }
  .page_automotive-prod .container {
    padding: 30px 15px;
  }
  .page_automotive-prod .container .items {
    gap: 20px 0;
  }
  .page_automotive-prod .container .items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .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_sec_pd {
    padding: 40px 0;
  }
  .page_about_sec_pd .tit {
    font-size: 1.75rem;
    margin: 0 0 25px 0;
  }
  .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 */