:root {
  font-size: 16px;
}
@media (max-width: 1400px) {
  :root {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 12px;
  }
}

html {
  font-size: 16px;
}

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

.all_page {
  background-color: #f2f2f2;
  background-position: center 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  position: relative;
}

.g_header {
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-out;
}
.g_header .header__cnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g_header .head_logo {
  flex: 0 0 auto;
  height: 70px;
  display: flex;
  justify-content: 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;
  flex: 1 1 auto;
}
.g_header .head_nav .nav_items {
  display: flex;
  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: #1a1a1a;
  font-size: 15px;
  background-color: #fff;
  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: #1a1a1a;
  font-size: 2rem;
  font-weight: bold;
  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;
  box-sizing: border-box;
  padding: 18px 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  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_black_blue {
  color: #000;
  border: 1px solid #0072FF;
  background-color: transparent;
}
.cta_btn.btn_sub_black_blue: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.btn_sub_blue {
  padding: 5px 5px;
  color: #fff;
  border: 1px solid #0072FF;
  background-color: #0072FF;
  text-align: right;
}
.cta_btn.btn_sub_blue img {
  position: relative;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 99%;
  transform: scaleX(-100%);
  margin: 0 0 0 20px;
}
.cta_btn.btn_sub_blue:hover {
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  background-color: #fff;
}
.cta_btn.btn_sub_blue:hover img {
  filter: brightness(0);
}
.cta_btn.btn_sub_blue_prods {
  padding: 5px 5px;
  color: #fff;
  border: 1px solid #0072FF;
  background-color: #0072FF;
  text-align: right;
}
.cta_btn.btn_sub_blue_prods img {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 0 0 20px;
}
.cta_btn.btn_sub_blue_prods:hover {
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  background-color: #fff;
}
.cta_btn.btn_sub_blue_prods:hover img {
  filter: brightness(0);
}
.cta_btn.xl_size {
  padding: 24px 40px;
  font-size: 1.75rem;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_btn.sm_size {
  border-radius: 35px;
  padding: 14px 28px;
  font-size: 1.375rem;
}
.cta_btn.sm_size_prods {
  border-radius: 35px;
  padding: 5px 5px 5px 30px;
  font-size: 1.1875rem;
}
.cta_btn.sm_size_prods_d {
  border-radius: 35px;
  padding: 20px 30px;
  font-size: 1.1875rem;
}
.cta_btn.sm_size_abt {
  border-radius: 35px;
  padding: 14px 28px;
  font-size: 1.375rem;
  font-weight: normal;
}
.cta_btn.sm_size {
  border-radius: 35px;
  padding: 15px 40px;
  font-size: 1.375rem;
}
.cta_btn.ss_size {
  width: 190px;
  border-radius: 35px;
  font-size: 1.0625rem;
  line-height: 1;
}
.cta_btn.ss_size_txtMid {
  border-radius: 35px;
  font-size: 1.0625rem;
  line-height: 1;
}
.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: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.sec_hero .hero__wrapper.homePage {
  padding: 0 0 0 0;
}
.sec_hero .hero_cnt {
  position: relative;
  width: 100%;
}
.sec_hero .hero_cnt .kv_banner {
  position: relative;
  width: 100vw;
  min-height: 85vh;
  background: url(img/home_2024/kv_banner_1.jpg) center/cover no-repeat;
}
.sec_hero .hero_cnt .tit {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-65%);
  z-index: 1;
  color: #fff;
}
.sec_hero .hero_cnt .tit .container {
  position: relative;
}
.sec_hero .hero_cnt .tit .t1 {
  position: relative;
  font-size: 4.1875rem;
  font-weight: bold;
  line-height: 1.2;
}
.sec_hero .hero_cnt .tit .t2 {
  position: relative;
  font-size: 4.5625rem;
  font-weight: bold;
  line-height: 1.2;
}
.sec_hero .hero_cnt .tit .cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 30px;
  font-size: 1.25rem;
  font-weight: normal;
  border: 2px solid #fff;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  background-color: transparent;
  text-decoration: none;
  color: #fff;
}
.sec_hero .hero_cnt .tit .cta:hover {
  background-color: #fff;
  color: #1a1a1a;
}
.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;
}

#home .g_main {
  background-color: #f2f2f2;
}
#home .kv_boxs {
  position: relative;
  width: 100%;
  margin: -120px 0 0;
}
#home .kv_boxs .items {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
#home .kv_boxs .items .item {
  position: relative;
  flex: 0 1 calc(50% - 20px);
  background: url(img/home_2024/kv_link_bg_1.png) center no-repeat, linear-gradient(180deg, #e7e6e6, #fff);
  box-sizing: border-box;
  padding: 30px 50px;
  min-height: 300px;
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
#home .kv_boxs .items .item:hover {
  box-shadow: 0 15px 40px rgba(47, 102, 244, 0.3);
}
#home .kv_boxs .items .item .t {
  position: relative;
  color: #333;
  font-size: 2.0625rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
}
#home .kv_boxs .items .item .t span {
  font-weight: bold;
}
#home .kv_boxs .items .item .cta {
  position: relative;
  color: #333;
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 30px;
  margin: 35px 0 0;
  font-size: 1.25rem;
  font-weight: normal;
  border: 2px solid #2f66f4;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  background-color: transparent;
  text-decoration: none;
}
#home .kv_boxs .items .item .cta:hover {
  background-color: #fff;
  color: #1a1a1a;
}
#home .kv_boxs .items .item:last-child {
  background: url(img/home_2024/kv_link_bg_2.png) center no-repeat, linear-gradient(180deg, #e7e6e6, #fff);
}
#home .kv_boxs .items .item:last-child .cta {
  border: 2px solid #ac159d;
}

.sec_product {
  padding: 100px 0;
  background: url(img/home_2024/product_bg.png) center right no-repeat;
}
.sec_product .container {
  box-sizing: border-box;
  padding: 50px 0px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.sec_product .container .sec__title {
  position: relative;
  width: 30%;
  max-width: 380px;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  padding-bottom: 16px;
}
.sec_product .container .sec__title .tit {
  position: relative;
  display: inline-block;
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: bold;
  box-sizing: border-box;
  padding: 0 0 10px 0;
}
.sec_product .product__cnt {
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 60px;
}
.sec_product .product__cnt .flex_wrap {
  position: relative;
  flex: 1 0 calc(50% - 60px);
  padding: 0;
}
.sec_product .product__cnt .flex_wrap .pdt_item {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover {
  box-shadow: 0 15px 40px rgba(47, 102, 244, 0.3);
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover .item__top {
  background: #2f66f4;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover .title {
  color: #fff;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover .text {
  color: #fff;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover .more_arr {
  background-color: #2f66f4;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover .more_arr img {
  filter: brightness(1);
}
.sec_product .product__cnt .flex_wrap .pdt_item .item__top {
  position: relative;
  width: 100%;
  min-height: 350px;
  box-sizing: border-box;
  padding: 20px 30px 20px;
  background: linear-gradient(180deg, #fff, #e6e6e6);
  border-radius: 35px 35px 0 0;
  transition: all 0.4s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 20px;
  height: 70px;
  font-size: 1.3125rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #2f66f4;
  border-bottom: 1px solid #bcbcbc;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .text {
  position: relative;
  text-align: justify;
  box-sizing: border-box;
  padding: 0 15px;
  color: #000;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .item__bottom {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  background: linear-gradient(180deg, #fff, #fff);
  border-radius: 0 0 35px 35px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.sec_product .product__cnt .flex_wrap .pdt_item .more_arr {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 99%;
  overflow: hidden;
  border: 1px solid #bcbcbc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .more_arr img {
  position: relative;
  width: 26px;
  height: 13px;
  filter: brightness(0.5);
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .icon {
  position: relative;
  max-width: 100px;
  height: auto;
  overflow: hidden;
}
.sec_product .product__cnt .flex_wrap .pdt_item .icon img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

.sec_service {
  position: relative;
  background-color: #333333;
  overflow: hidden;
}
.sec_service .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.sec_service .service_img {
  position: relative;
  flex: 0 1 50%;
  height: 90vh;
  max-height: 900px;
}
.sec_service .service_img img {
  position: absolute;
  width: auto;
  height: 100%;
  max-height: 900px;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
}
.sec_service .service_img img.active {
  opacity: 1;
}
.sec_service .service__cnt {
  position: relative;
  flex: 0 1 50%;
  box-sizing: border-box;
  padding: 0 40px;
}
.sec_service .service__cnt .sec__title {
  text-align: left;
  padding: 0;
}
.sec_service .service__cnt .sec__title .tit {
  color: #fff;
}
.sec_service .service__cnt .srv_items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.sec_service .service__cnt .srv_item {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid #fff;
  transition: all 0.2s ease-out;
  background-color: transparent;
}
.sec_service .service__cnt .srv_item a {
  position: relative;
  width: 100%;
  text-decoration: none;
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.sec_service .service__cnt .srv_item a .title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.sec_service .service__cnt .srv_item a .title span {
  font-size: 1rem;
}
.sec_service .service__cnt .srv_item a .srv_item-icon {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 99%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
.sec_service .service__cnt .srv_item a .srv_item-icon img {
  position: relative;
  width: 45px;
  height: auto;
  filter: brightness(1);
  transform: rotate(0deg);
  transition: all 0.2s ease-out;
}
.sec_service .service__cnt .srv_item.active {
  background-color: #fff;
}
.sec_service .service__cnt .srv_item.active a .title {
  color: #333;
}
.sec_service .service__cnt .srv_item.active a .srv_item-icon {
  border-color: #333;
}
.sec_service .service__cnt .srv_item.active a .srv_item-icon img {
  filter: brightness(0);
  transform: rotate(-180deg);
}

.sec_about {
  position: relative;
  background: url(img/home_2024/about_bg.jpg) center/cover no-repeat;
  padding: 80px 0 80px !important;
}
.sec_about .container {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_about .about__cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: flex-start;
}
.sec_about .about__cnt .wording {
  position: relative;
  box-sizing: border-box;
  padding: 50px 100px;
  width: 100%;
  background-color: #fff;
  border-radius: 35px;
  text-align: center;
  transition: all 0.2s ease-out;
}
.sec_about .about__cnt .wording:hover {
  box-shadow: 0 15px 40px rgba(47, 102, 244, 0.3);
}
.sec_about .about__cnt .wording .text {
  font-size: 1rem;
  font-weight: 300;
  text-align: justify;
  color: #000;
}
.sec_about .about__cnt .wording .cta {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 0 0;
  box-sizing: border-box;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid #2f66f4;
  color: #000;
  font-size: 1.125rem;
  letter-spacing: 0.1875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.sec_about .about__cnt .wording .cta:hover {
  background-color: #2f66f4;
  color: #fff;
}
.sec_about .videos {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 40px auto;
}
.sec_about .video {
  position: relative;
  flex: 0 1 calc(50% - 20px);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.sec_about .video_tit {
  position: relative;
  text-align: center;
  font-size: 1rem;
  color: #000;
  font-weight: bold;
}
.sec_about .video_cnt {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid #000;
  cursor: pointer;
}
.sec_about .video_cnt img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: all 0.2s ease-out;
}
.sec_about .video_cnt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  transition: all 0.2s ease-out;
}
.sec_about .video_cnt:hover img {
  transform: scale(1.04);
}
.sec_about .video_cnt:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.sec_event {
  position: relative;
  background-color: #f2f2f2;
  padding: 100px 0 !important;
}
.sec_event .container {
  max-width: 1000px;
}
.sec_event .event__cnt {
  position: relative;
  width: 100%;
}
.sec_event .event__cnt .items {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.sec_event .event__cnt .items .evt_item {
  position: relative;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #000;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  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;
  box-sizing: border-box;
  padding: 0 70px 10px 0;
  text-align: justify;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_date {
  position: relative;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2f66f4;
  box-sizing: border-box;
  padding: 0 30px;
  white-space: nowrap;
}
.sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_tit {
  position: relative;
  font-size: 1rem;
  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 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec_event .event__cnt .items .evt_item .item_cnt .item_text .moreBtn {
  position: relative;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  box-sizing: border-box;
  margin: 0 0 0 50px;
  background-color: transparent;
  border-radius: 99%;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
.sec_event .event__cnt .items .evt_item .item_cnt .item_text .moreBtn .more_arr {
  position: relative;
  width: 20px;
  height: auto;
  filter: brightness(0);
  transition: all 0.2s ease-out;
}
.sec_event .event__cnt .items .evt_item:hover .item_cnt .item_text .moreBtn {
  border-color: #2f66f4;
  background-color: #2f66f4;
}
.sec_event .event__cnt .items .evt_item:hover .item_cnt .item_text .moreBtn .more_arr {
  filter: brightness(1);
}

.g_footer {
  padding: 30px 0;
  background-color: #999999;
  color: #fff;
}
.g_footer .footer_cnt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.g_footer .cnt_top {
  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 {
  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;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.pic_center {
  display: flex;
  justify-content: center;
}
.pic_center .wrap {
  display: inline-flex;
  border-radius: 4px;
  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_2024/hb.jpg) center/cover no-repeat;
}
.page_automotive .sec_hero .hero__wrapper {
  min-height: 50vh;
}
.page_automotive .sec_hero .hero__wrapper .tit {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
}
.page_automotive .sec_hero .hero__wrapper .tit .t1 {
  font-size: 3.125rem;
  font-weight: bold;
}
.page_automotive .sec_hero .hero__wrapper .tit .t2 {
  margin: 5px 0 0;
  font-size: 1.75rem;
  font-weight: normal;
}
.page_automotive .sec_about {
  position: relative;
  background: #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;
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.5);
}
.page_automotive .sec_about .container {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.page_automotive .sec_about .about__cnt {
  position: relative;
  width: 870px;
  min-width: 870px;
  margin: 0 0 0 -160px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 150px;
  background: linear-gradient(180deg, #e2e2e2, #fff);
  border-radius: 35px;
  box-shadow: 0 15px 40px rgba(47, 102, 244, 0.3);
}
.page_automotive .sec_about .about__cnt-img {
  position: relative;
  width: 100%;
  max-width: 370px;
}
.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%;
  min-width: 580px;
  margin: 0;
  z-index: 1;
}
.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;
  transform: scale(1);
  transition: all 0.2s ease-out;
}
.page_automotive .sec_about .video_cnt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  transition: all 0.2s ease-out;
}
.page_automotive .sec_about .video_cnt:hover img {
  transform: scale(1.05);
}
.page_automotive .sec_about .video_cnt:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}
.page_automotive-four {
  background-color: #e0e0e0;
}
.page_automotive-four .container {
  box-sizing: border-box;
  padding: 50px 0;
}
.page_automotive-four .container .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.page_automotive-four .container .items .item {
  position: relative;
  flex: 0 1 25%;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: all 0.2s ease-out;
}
.page_automotive-four .container .items .item .item_up {
  position: relative;
  width: 100%;
  background-color: #fff;
  font-size: 2.125rem;
  color: #333333;
  text-align: center;
  box-sizing: border-box;
  padding: 50px 25px 20px;
  border-radius: 35px 35px 0 0;
}
.page_automotive-four .container .items .item .item_up .num {
  position: absolute;
  top: -25px;
  left: 50%;
  margin-left: -25px;
  color: #808080;
  width: 50px;
  height: 50px;
  border-radius: 99%;
  border: 1px solid #808080;
  line-height: 1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
.page_automotive-four .container .items .item .item_up .t {
  font-weight: bold;
}
.page_automotive-four .container .items .item .item_d {
  position: relative;
  width: 100%;
  flex: 1;
  background: linear-gradient(180deg, #e2e2e2, #fdfdfd);
  font-size: 0.875rem;
  color: #333333;
  box-sizing: border-box;
  padding: 20px 15px 30px;
  border-radius: 0 0 35px 35px;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.page_automotive-four .container .items .item .item_d .w {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_automotive-four .container .items .item .item_d .w a {
  display: block;
  color: #333;
  margin: 5px;
  transition: all 0.2s ease-out;
}
.page_automotive-four .container .items .item .item_d .w a:hover {
  color: #333;
}
.page_automotive-four .container .items .item .item_d .w p {
  display: block;
  margin: 5px;
  padding: 0;
}
.page_automotive-four .container .items .item .item_d .w ul {
  padding: 0 0 0 20px;
}
.page_automotive-four .container .items .item .item_d .w ul li {
  margin: 10px 0;
}
.page_automotive-four .container .items .item .item_d img {
  position: relative;
  width: 100%;
  max-width: 120px;
  height: auto;
  filter: brightness(1);
  transition: all 0.2s ease-out;
}
.page_automotive-four .container .items .item:hover .item_up .num {
  color: #fff;
  background-color: #2f66f4;
}
.page_automotive-four .container .items .item:hover .item_d {
  background: #2f66f4;
  color: #fff;
  box-shadow: 0 15px 30px rgba(47, 102, 244, 0.3);
}
.page_automotive-four .container .items .item:hover .item_d a {
  color: #fff;
}
.page_automotive-four .container .items .item:hover .item_d img {
  filter: brightness(10);
}
.page_automotive-ele {
  position: relative;
  background-color: #333333;
}
.page_automotive-ele .container {
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.page_automotive-ele .container .car {
  position: relative;
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_automotive-ele .container .car img {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: auto;
}
.page_automotive-ele .container .info {
  position: relative;
  flex: 0 1 50%;
}
.page_automotive-ele .container .sec__title {
  text-align: left;
}
.page_automotive-ele .container .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.page_automotive-ele .container .items .item {
  position: relative;
  flex: 0 1 calc(50% - 20px);
}
.page_automotive-ele .container .items .item .tit {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 5px 30px;
  color: #fff;
  font-size: 1.125rem;
  margin: 20px 0;
  border: 1px solid #0072FF;
  border-radius: 35px;
}
.page_automotive-ele .container .items .item p {
  position: relative;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}
.page_automotive-see {
  position: relative;
}
.page_automotive-see .container {
  box-sizing: border-box;
  padding: 50px;
}
.page_automotive-see .container .sec__title {
  text-align: left;
}
.page_automotive-see .container .items {
  position: relative;
  width: 100%;
  margin: 50px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.page_automotive-see .container .items .item {
  position: relative;
  flex: 0 1 calc(50% - 20px);
}
.page_automotive-see .container .items .item:first-child {
  flex: 0 1 100%;
  max-width: 589px;
}
.page_automotive-see .container .items .item:nth-child(2) {
  flex: 0 1 100%;
  max-width: 609px;
}
.page_automotive-see .container .items .item:last-child {
  flex: 0 1 100%;
}
.page_automotive-see .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: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.page_automotive-area .items .item {
  position: relative;
  flex: 0 1 30%;
  min-height: 200px;
  background-color: #2f66f4;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 10px 25px;
  border-radius: 25px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: box-shadow 0.2s ease-out;
}
.page_automotive-area .items .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  opacity: 1;
  transition: opacity 0.2s ease-out;
}
.page_automotive-area .items .item:hover {
  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: #e0e0e0;
}
.page_automotive-prod .container {
  box-sizing: border-box;
  padding: 50px;
  max-width: 1000px;
}
.page_automotive-prod .container .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px 30px;
}
.page_automotive-prod .container .items .item {
  position: relative;
  flex: 0 1 100%;
  background: linear-gradient(180deg, #fff, #e0e0e0);
  border-radius: 50px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.page_automotive-prod .container .items .item .n {
  position: relative;
  flex: 0 1 35%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #040159;
}
.page_automotive-prod .container .items .item .n .icons {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 99%;
  background-color: #fff;
  border: 1px solid #040159;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_automotive-prod .container .items .item .n .icons img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.page_automotive-prod .container .items .item .n p {
  position: relative;
  width: 200px;
  text-align: center;
  margin: 0;
  padding: 0;
}
.page_automotive-prod .container .items .item .links {
  position: relative;
  flex: 0 1 65%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.page_automotive-prod .container .items .item .links a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  padding: 10px 25px;
  transition: all 0.2s ease-out;
  background-color: #2f66f4;
  border-radius: 35px;
  overflow: hidden;
}
.page_automotive-prod .container .items .item .links a:hover {
  color: #2f66f4;
  background-color: #fff;
  border: 1px solid #2f66f4;
}
.page_automotive-prod .container .items .item img {
  position: relative;
  width: 100%;
  max-width: 90px;
  height: auto;
}
.page_automotive-prod .container .items .item:hover {
  box-shadow: 0 15px 30px rgba(47, 102, 244, 0.3);
}

.page_tpc .sec_hero {
  background: url(img/topic_2024/topic_bg.jpg) center/cover no-repeat;
}
.page_tpc .sec_hero.bg1 {
  background: url(img/topic_2024/topic_2_hb.jpg) center/cover no-repeat;
}
.page_tpc .sec_hero .hero__wrapper {
  min-height: 70vh;
}
.page_tpc .sec_hero .hero_cnt {
  width: auto;
  margin: 0 0 0 -15%;
}
.page_tpc .sec_hero .hero__title {
  font-size: 3rem;
  margin-bottom: 0;
  font-weight: bold;
  text-align: left;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.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: #ececec;
  padding: 60px 0 0 !important;
}
.page_topic_sec1.topicMain {
  padding: 60px 0 !important;
}
.page_topic_sec1 .intro {
  position: relative;
  text-align: center;
  margin: 0 auto 30px auto;
  max-width: 850px;
  font-size: 1.125rem;
}
.page_topic_sec1 .intro span {
  color: #FA00FF;
}
.page_topic_sec1 .witch_cnt {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 60px auto 0;
  background-color: #333;
}
.page_topic_sec1 .p_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.page_topic_sec1 .p_box .item {
  position: relative;
  flex: 0 1 500px;
  padding: 10px;
}
.page_topic_sec1 .p_box .item .tit {
  position: relative;
  width: 100%;
  font-size: 1.375rem;
  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 {
  transform: scale(1);
  transition: all 0.2s ease-out;
}
.page_topic_sec1 .p_box .item .pic a:hover img {
  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.lg_box_2024 {
  gap: 20px;
}
.page_topic_sec1 .p_box.lg_box_2024 .item {
  border-radius: 25px;
}
.page_topic_sec1 .p_box.lg_box_2024 .item .tit {
  color: #fff;
}
.page_topic_sec1 .p_box.lg_box_2024 .item .pic {
  border: 0;
}
.page_topic_sec1 .p_box.lg_box_2024 .item:first-child {
  margin: 0 0 200px;
  padding: 80px 20px;
  background: linear-gradient(180deg, #4b4b4b, #1c1c1c);
}
.page_topic_sec1 .p_box.lg_box_2024 .item:first-child .tit {
  text-align: left;
  margin: 25px 0;
}
.page_topic_sec1 .p_box.lg_box_2024 .item:last-child {
  margin: 0 0 0;
  padding: 80px 20px;
  background: linear-gradient(0deg, #4b4b4b, #1c1c1c);
}
.page_topic_sec1 .p_box.lg_box_2024 .item:last-child .tit {
  text-align: right;
  margin: 25px 0;
}
.page_topic_sec1 .p_box.lg_box_2024 .item:last-child .spLink {
  position: relative;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}
.page_topic_sec1 .p_box.lg_box_2024 .item:last-child .spLink a {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 25px;
  border-radius: 35px;
  border: 1px solid #2f66f4;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.page_topic_sec1 .p_box.lg_box_2024 .item:last-child .spLink a:hover {
  color: #2f66f4;
  background-color: #fff;
  border-color: #fff;
}
.page_topic_sec1 .p_box.lgBox {
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 60pxs;
}
.page_topic_sec1 .p_box.lgBox .item {
  flex: 0 1 500px;
  padding: 40px 10px 10px;
}
.page_topic_sec1 .p_box.lgBox .item p {
  position: relative;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
}
.page_topic_sec1 .p_box.lgBox .item p span {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0 20px 0 0;
  margin: 25px 0;
  font-size: 1.1875rem;
  font-weight: normal;
  line-height: 1.4;
}
.page_topic_sec1 .p_box.lgBox .item .pic {
  border-radius: 0;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.page_topic_sec1 .p_box.lgBox .item .pic:hover {
  box-shadow: 0 15px 30px rgba(47, 102, 244, 0.3);
}
.page_topic_sec1 .p_box.lgBox .item .pic:hover + .num {
  color: #fff;
  border-color: #2f66f4;
  background-color: #2f66f4;
}
.page_topic_sec1 .p_box.lgBox .item .num {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  margin: 0 0 0 -25px;
  border: 1px solid #000;
  border-radius: 99%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  font-weight: normal;
  color: #333;
  line-height: 1;
  transition: all 0.2s ease-out;
}

.sc_search {
  position: relative;
  width: 100%;
  background: url(img/topic_2024/ser_bg.jpg) center/cover no-repeat;
  box-sizing: border-box;
  padding: 70px 0;
}
.sc_search .container {
  display: flex;
  justify-content: center;
}
.sc_search .container .search_cnt {
  position: relative;
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.sc_search .container .search_cnt.detailCnt {
  box-sizing: border-box;
  padding: 0 80px;
}
.sc_search .container .search_cnt.detailCnt .search_cnt_inner {
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
}
.sc_search .container .search_cnt_inner {
  box-sizing: border-box;
  padding: 70px 130px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.sc_search .container .tit {
  font-size: 2.5rem;
  font-weight: bold;
}
.sc_search .container .w {
  font-size: 1.1875rem;
  font-weight: normal;
  margin: 50px 0 50px;
}
.sc_search .btnBox {
  position: relative;
  margin: 0;
}

.page_topic_sec2 {
  background-color: #333333;
}
.page_topic_sec2 .sec__cnt {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page_topic_sec2 .pic {
  position: relative;
  width: 100%;
  margin: 50px auto 100px;
}
.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: flex;
  justify-content: center;
  align-items: center;
}
.page_topic_sec3 .btnBox {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: 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;
}
.page_topic_video.dk {
  background-color: #333;
}
.page_topic_video .sec__cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: 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: #333;
  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;
  transform: scale(1);
  transition: all 0.2s ease-out;
}
.page_topic_video .video_cnt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  transition: all 0.2s ease-out;
}
.page_topic_video .video_cnt:hover img {
  transform: scale(0.95);
}
.page_topic_video .video_cnt:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}
.page_topic_video .ps {
  color: #fff;
  font-size: 1.1875rem;
}
.page_topic_video .btnBox {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: 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: linear-gradient(90deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.1)), url("img/about_2024/hb.jpg") center/cover no-repeat;
}
.page_abt .sec_hero .hero__wrapper {
  min-height: 70vh;
  max-width: 1120px;
  margin: 0 auto;
  align-items: flex-start;
}
.page_abt .sec_hero .hero__title {
  font-size: 3rem;
  margin-bottom: 0;
  font-weight: bold;
  text-align: left;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}

.page_about_sec1 {
  background-color: #ececec;
}
.page_about_sec1 .sec__cnt {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.page_about_sec1 .abt_box {
  position: relative;
  flex: 0 1 50%;
  box-sizing: border-box;
  padding: 100px 100px 100px 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e2e2e2, #fdfdfd);
  box-shadow: 0 15px 40px rgba(47, 102, 244, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.page_about_sec1 .abt_box p {
  font-size: 1.1875rem;
  line-height: 1.6;
  margin: 0;
}
.page_about_sec1 .abt_box .cta_btn {
  margin: 35px 0 0;
}
.page_about_sec1 .video {
  position: relative;
  flex: 0 1 50%;
  margin: 0 0 0 -110px;
}
.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;
  transform: scale(1);
  transition: all 0.2s ease-out;
}
.page_about_sec1 .video_cnt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%) scale(1);
  background: url(img/icons/platBtn.svg) center center/cover no-repeat;
  transition: all 0.2s ease-out;
}
.page_about_sec1 .video_cnt:hover img {
  transform: scale(0.95);
}
.page_about_sec1 .video_cnt:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.page_about_sec_pd {
  position: relative;
  box-sizing: border-box;
  padding: 80px 0;
  background-color: #333;
  text-align: center;
}
.page_about_sec_pd .tit {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 35px 0;
}
.page_about_sec_pd .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
}
.page_about_sec_pd .items .item {
  position: relative;
  flex: 0 1 calc(33% - 50px);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #4a4a4a, #1d1d1d);
  box-sizing: border-box;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}
.page_about_sec_pd .items .item .pic {
  position: relative;
  width: 100%;
  padding: 50px 25px 25px;
}
.page_about_sec_pd .items .item .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.page_about_sec_pd .items .item .t {
  position: relative;
  width: 180px;
  background-color: #2f66f4;
  padding: 5px 0;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.page_about_sec_pd .items .item .w {
  position: relative;
  width: 100%;
  height: 160px;
  background-color: transparent;
  color: #fff;
  text-align: justify;
  box-sizing: border-box;
  padding: 20px 25px;
  font-size: 0.875rem;
  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%;
  flex: 1;
  box-sizing: border-box;
  padding: 60px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.page_about_sec_pd .pdi img {
  position: relative;
  width: 100%;
  max-width: 200px;
  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: 200px 0;
  background: url(img/about_2024/bt_bg.jpg) center/cover no-repeat;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_about_link .tit {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin: 0 0 50px;
}
.page_about_link .link {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 50px;
  border-radius: 35px;
  transition: all 0.2s ease-out;
  font-size: 1.0625rem;
  color: #000;
  border: 1px #2f66f4 solid;
  background: transparent;
  text-decoration: none;
}
.page_about_link .link:hover {
  color: #fff;
  background-color: #0072FF;
}

.page_multi .page_product_hero {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0)), url("img/product_2024/hb.jpg") center/cover no-repeat;
}

.page_inductor .page_product_hero {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0)), url("img/product_2024/hb_2.jpg") center/cover no-repeat;
}

.page_rf .page_product_hero {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0)), url("img/product_2024/hb_3.jpg") center/cover no-repeat;
}

.page_product_hero {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.5));
}
.page_product_hero .hero__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 40vh;
}
.g_main .page_product_hero {
  padding: 60px;
}
.page_product_hero .hero_cnt {
  max-width: 960px;
  display: inline-flex;
  align-items: center;
}
.page_product_hero .hero_cnt .text {
  padding-right: 30px;
  color: #fff;
}
.page_product_hero .hero_cnt .pic {
  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;
  margin: 0 0 40px;
}
.page_product_hero .hero__text {
  margin-top: 18px;
  font-size: 1.1875rem;
}
.page_product_hero .hero__cta {
  margin-top: 0;
  display: flex;
}
.page_product_hero .hero__cta .cta_btn {
  margin: 40px 40px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_product_summary {
  background: #ececec;
}
.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: linear-gradient(90deg, rgba(26, 26, 26, 0.5), #1a1a1a);
}
.page_product_video .vid_tit {
  text-align: center;
  font-size: 24px;
  margin-bottom: 0.5em;
  color: #fff;
}
.page_product_video .vid_link {
  text-align: center;
}
.page_product_video .vid_link a {
  opacity: 1;
  transition: opacity 300ms;
}
.page_product_video .vid_link a:hover {
  opacity: 0.7;
}

.page_product_other {
  background: #ececec;
}
.g_main .page_product_other {
  padding: 100px 0;
}
.page_product_other .items {
  display: flex;
  justify-content: center;
}
.page_product_other .item {
  flex: 0 0 auto;
  padding: 0 10px;
}
.page_product_other .item a {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.page_product_other .item a:hover .bg {
  transform: scale(1.2);
}
.page_product_other .item .bg {
  transition: 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(255, 255, 255, 0.3);
}
.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: flex;
  justify-content: center;
  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 {
  flex-direction: column;
  align-items: flex-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;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.modal .modal-header .btn-close:hover {
  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: 393.7499507813px;
}
.modal .modal-footer {
  flex-direction: column;
  align-items: 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;
  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;
  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 .kv_banner {
    min-height: 85vh;
  }
  .sec_hero .hero_cnt .tit {
    transform: translateY(-65%);
  }
  .sec_hero .hero_cnt .tit .t1 {
    font-size: 4.1875rem;
  }
  .sec_hero .hero_cnt .tit .t2 {
    font-size: 4.5625rem;
  }
  .sec_hero .hero_cnt .tit .cta {
    padding: 10px 30px;
    font-size: 1.25rem;
  }
  #home .kv_boxs {
    margin: -80px 0 0;
  }
  #home .kv_boxs .items {
    max-width: 900px;
  }
  #home .kv_boxs .items .item {
    background: url(img/home_2024/kv_link_bg_1.png) center/60% auto no-repeat, linear-gradient(180deg, #e7e6e6, #fff);
    padding: 30px 50px;
    min-height: 250px;
  }
  #home .kv_boxs .items .item .t {
    font-size: 2.0625rem;
    line-height: 1.2;
  }
  #home .kv_boxs .items .item .cta {
    padding: 5px 30px;
    margin: 35px 0 0;
    font-size: 1.125rem;
  }
  #home .kv_boxs .items .item:last-child {
    background: url(img/home_2024/kv_link_bg_2.png) center/60% auto no-repeat, linear-gradient(180deg, #e7e6e6, #fff);
  }
  #home .kv_boxs .items .item:last-child .cta {
    border: 2px solid #ac159d;
  }
  .sec_product {
    padding: 60px 0 80px;
  }
  .sec_product .container {
    padding: 50px 0px;
    max-width: 1000px;
  }
  .sec_product .container .sec__title {
    width: 30%;
    padding-bottom: 16px;
  }
  .sec_product .container .sec__title .tit {
    font-size: 2rem;
    padding: 0 0 10px;
  }
  .sec_product .product__cnt {
    width: 70%;
    gap: 30px;
  }
  .sec_product .product__cnt .flex_wrap {
    flex: 1 0 calc(50% - 30px);
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .item__top {
    min-height: 310px;
    padding: 20px 30px 20px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .title {
    margin: 10px auto 20px;
    height: 70px;
    font-size: 1.3125rem;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .item__bottom {
    padding: 0 40px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .more_arr {
    width: 40px;
    height: 40px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .more_arr img {
    width: 26px;
    height: 13px;
  }
  .sec_service .container {
    max-width: 1000px;
  }
  .sec_service .service_img {
    flex: 0 1 50%;
    height: auto;
    width: 100%;
    min-height: 90vh;
  }
  .sec_service .service_img img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  .sec_service .service__cnt {
    flex: 0 1 50%;
    padding: 0 40px;
  }
  .sec_service .service__cnt .srv_items {
    gap: 20px;
  }
  .sec_service .service__cnt .srv_item a {
    padding: 5px;
  }
  .sec_service .service__cnt .srv_item a .title {
    font-size: 1.125rem;
  }
  .sec_service .service__cnt .srv_item a .title span {
    font-size: 1rem;
  }
  .sec_service .service__cnt .srv_item a .srv_item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .sec_service .service__cnt .srv_item a .srv_item-icon img {
    width: 25px;
  }
  .sec_about {
    padding: 80px 0 80px !important;
  }
  .sec_about .container {
    max-width: 1000px;
  }
  .sec_about .about__cnt .wording {
    padding: 30px 100px;
  }
  .sec_about .about__cnt .wording .text {
    font-size: 1rem;
  }
  .sec_about .about__cnt .wording .cta {
    margin: 30px 0 0 0;
    padding: 10px 30px;
    font-size: 1.125rem;
    letter-spacing: 0.1875rem;
  }
  .sec_event {
    padding: 60px 0 !important;
  }
  .sec_event .container {
    max-width: 800px;
  }
  .sec_event .event__cnt .items .evt_item {
    padding: 20px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt {
    padding: 0 70px 10px 0;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_date {
    font-size: 1.125rem;
    padding: 0 30px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_tit {
    font-size: 1rem;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_text {
    font-size: 0.875rem;
    padding: 10px 0;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_text .moreBtn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin: 0 0 0 50px;
  }
  .page_automotive .sec_about {
    padding: 60px 0 !important;
  }
  .page_automotive .sec_about .container {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .page_automotive .sec_about .about__cnt {
    width: 670px;
    min-width: 670px;
    margin: 0 0 0 -160px;
    padding: 60px 100px;
  }
  .page_automotive .sec_about .about__cnt-img {
    max-width: 270px;
  }
  .page_automotive .sec_about .video {
    min-width: 380px;
  }
  .page_automotive .sec_about .video_cnt {
    max-width: 460px;
    margin: 0 auto 20px auto;
  }
  .page_automotive-ele {
    position: relative;
    background-color: #333333;
  }
  .page_automotive-ele .container {
    max-width: 1000px;
  }
  .page_automotive-ele .container .car img {
    max-width: 380px;
  }
  .page_automotive-ele .container .items {
    gap: 20px;
  }
  .page_automotive-ele .container .items .item {
    flex: 0 1 calc(50% - 20px);
  }
  .page_automotive-ele .container .items .item .tit {
    padding: 5px 30px;
    font-size: 1.125rem;
    margin: 20px 0;
  }
  .page_automotive-ele .container .items .item p {
    font-size: 1rem;
  }
  .page_automotive-see .container {
    padding: 50px;
  }
  .page_automotive-see .container .items {
    margin: 50px auto;
    gap: 20px;
  }
  .page_automotive-see .container .items .item:first-child {
    max-width: 483px;
  }
  .page_automotive-see .container .items .item:nth-child(2) {
    max-width: 500px;
  }
  .page_automotive-see .container .items .item:last-child {
    max-width: 1010px;
  }
  .page_automotive-prod .container {
    max-width: 800px;
  }
  .page_automotive-prod .container .items {
    gap: 50px 30px;
  }
  .page_automotive-prod .container .items .item {
    padding: 10px;
  }
  .page_automotive-prod .container .items .item .n {
    flex: 0 1 35%;
    font-size: 1rem;
  }
  .page_automotive-prod .container .items .item .n .icons {
    width: 70px;
    height: 70px;
  }
  .page_automotive-prod .container .items .item .n p {
    width: 200px;
  }
  .page_automotive-prod .container .items .item .links {
    flex: 0 1 65%;
  }
  .page_automotive-prod .container .items .item .links a {
    padding: 10px 25px;
  }
  .page_topic_sec1 .witch_cnt {
    padding: 30px 15px;
  }
  .page_topic_sec1 .sec__title {
    margin: 0 0 15px;
  }
  .page_topic_sec1 .p_box.lg_box_2024 {
    gap: 20px;
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item {
    border-radius: 25px;
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item .tit {
    color: #fff;
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item .pic {
    border: 0;
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item:first-child {
    margin: 0 0;
    padding: 30px 20px;
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item:first-child .tit {
    text-align: left;
    margin: 25px 0;
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item:last-child {
    margin: 0 0;
    padding: 30px 20px;
    background: linear-gradient(0deg, #4b4b4b, #1c1c1c);
  }
  .page_topic_sec1 .p_box.lg_box_2024 .item:last-child .tit {
    text-align: center;
    margin: 25px 0;
  }
  .page_topic_sec2 .pic {
    max-width: 800px;
    margin: 50px auto 100px;
  }
  .sc_search {
    padding: 50px 0;
  }
  .sc_search .container {
    flex-direction: row;
  }
  .sc_search .container .search_cnt {
    margin: 0 0 25px;
  }
  .sc_search .container .search_cnt.detailCnt .search_cnt_inner {
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
  }
  .sc_search .container .search_cnt_inner {
    box-sizing: border-box;
    padding: 30px 50px;
  }
  .sc_search .container .tit {
    font-size: 2.5rem;
  }
  .sc_search .container .nav_item .w {
    font-size: 1.1875rem;
    margin: 20px 0;
  }
  .page_about_sec1 {
    background-color: #ececec;
  }
  .page_about_sec1 .sec__cnt {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .page_about_sec1 .abt_box {
    position: relative;
    flex: 0 1 50%;
    box-sizing: border-box;
    padding: 100px 100px 100px 40px;
    border-radius: 30px;
    background: linear-gradient(180deg, #e2e2e2, #fdfdfd);
    box-shadow: 0 15px 40px rgba(47, 102, 244, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .page_about_sec1 .abt_box p {
    font-size: 1.1875rem;
    line-height: 1.6;
    margin: 0;
  }
  .page_about_sec1 .abt_box .cta_btn {
    margin: 35px 0 0;
  }
  .page_about_sec1 .video {
    position: relative;
    flex: 0 1 50%;
    margin: 0 0 0 -110px;
  }
  .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;
    transform: scale(1);
    transition: all 0.2s ease-out;
  }
  .page_about_sec1 .video_cnt::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%) scale(1);
    background: url(img/icons/platBtn.svg) center center/cover no-repeat;
    transition: all 0.2s ease-out;
  }
  .page_about_sec1 .video_cnt:hover img {
    transform: scale(0.95);
  }
  .page_about_sec1 .video_cnt:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
  }
  .page_about_sec_pd {
    position: relative;
    box-sizing: border-box;
    padding: 80px 0;
    background-color: #333;
    text-align: center;
  }
  .page_about_sec_pd .tit {
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 35px 0;
  }
  .page_about_sec_pd .items {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
  }
  .page_about_sec_pd .items .item {
    position: relative;
    flex: 0 1 calc(33% - 50px);
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #4a4a4a, #1d1d1d);
    box-sizing: border-box;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
  }
  .page_about_sec_pd .items .item .pic {
    position: relative;
    width: 100%;
    padding: 50px 25px 25px;
  }
  .page_about_sec_pd .items .item .pic img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page_about_sec_pd .items .item .t {
    position: relative;
    width: 180px;
    background-color: #2f66f4;
    padding: 5px 0;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
  }
  .page_about_sec_pd .items .item .w {
    position: relative;
    width: 100%;
    height: 160px;
    background-color: transparent;
    color: #fff;
    text-align: justify;
    box-sizing: border-box;
    padding: 20px 25px;
    font-size: 0.875rem;
    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%;
    flex: 1;
    box-sizing: border-box;
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .page_about_sec_pd .pdi img {
    position: relative;
    width: 100%;
    max-width: 200px;
    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: 200px 0;
    background: url(img/about_2024/bt_bg.jpg) center/cover no-repeat;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page_about_link .tit {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin: 0 0 50px;
  }
  .page_about_link .link {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 50px;
    border-radius: 35px;
    transition: all 0.2s ease-out;
    font-size: 1.0625rem;
    color: #000;
    border: 1px #2f66f4 solid;
    background: transparent;
    text-decoration: none;
  }
  .page_about_link .link:hover {
    color: #fff;
    background-color: #0072FF;
  }
  .page_about_sec1 .abt_box {
    flex: 0 1 45%;
    box-sizing: border-box;
    padding: 60px 60px 60px 40px;
  }
  .page_about_sec1 .abt_box p {
    font-size: 1.1875rem;
  }
  .page_about_sec1 .abt_box .cta_btn {
    margin: 35px 0 0;
  }
  .page_about_sec1 .video {
    flex: 0 1 45%;
    margin: 0 0 0 -40px;
  }
  .page_about_sec1 .video_tit {
    font-size: 1.375rem;
  }
  .page_about_sec1 .video_cnt {
    max-width: 460px;
    margin: 20px auto;
  }
  .page_about_sec1 .video_cnt::after {
    width: 100px;
    height: 100px;
  }
  .page_about_sec_pd {
    padding: 50px 0;
  }
  .page_about_sec_pd .tit {
    font-size: 2rem;
    margin: 0 0 35px 0;
  }
  .page_about_sec_pd .items {
    gap: 50px;
  }
  .page_about_sec_pd .items .item {
    flex: 0 1 calc(33% - 50px);
    padding: 30px 20px;
  }
  .page_about_sec_pd .items .item .pic {
    padding: 20px 15px 15px;
  }
  .page_about_sec_pd .items .item .t {
    padding: 5px 0;
    font-size: 1.125rem;
  }
  .page_about_sec_pd .items .item .w {
    height: 120px;
    padding: 15px 15px;
  }
  .page_about_link {
    min-height: 380px;
    padding: 100px 0;
    background: url(img/about_2024/bt_bg.jpg) center/cover no-repeat;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page_about_link .tit {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin: 0 0 50px;
  }
  .page_about_link .link {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 50px;
    border-radius: 35px;
    transition: all 0.2s ease-out;
    font-size: 1.0625rem;
    color: #000;
    border: 1px #2f66f4 solid;
    background: transparent;
    text-decoration: none;
  }
  .page_about_link .link:hover {
    color: #fff;
    background-color: #0072FF;
  }
}
@media screen and (max-width: 768px) {
  .all_page {
    background-position: 42% center;
  }
  .g_header .header__cnt {
    flex-wrap: wrap;
  }
  .g_header .head_logo {
    flex: 0 1 250px;
  }
  .g_header .head_logo .logo {
    width: 100%;
    height: auto;
  }
  .g_header .menu_trigger {
    flex: 0 0 60px;
  }
  .g_header .menu_trigger .trigger_icon {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .g_header .menu_trigger .trigger_icon span {
    width: 36px;
    height: 4px;
    margin: 3px 12px;
    background-color: #1a1a1a;
  }
  .g_header .head_nav {
    flex: 1 1 100%;
  }
  .g_header .head_nav:not(.show) {
    display: none;
  }
  .g_header .head_nav .nav_items {
    flex-direction: column;
  }
  .g_header .head_nav .nav_item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .sec_hero .hero_cnt .kv_banner {
    min-height: 120vw;
    background: url(img/home_2024/kv_banner_1.jpg) center/cover no-repeat;
  }
  .sec_hero .hero_cnt .tit {
    transform: translateY(-100%);
  }
  .sec_hero .hero_cnt .tit .container {
    position: relative;
  }
  .sec_hero .hero_cnt .tit .t1 {
    font-size: 2.25rem;
  }
  .sec_hero .hero_cnt .tit .t2 {
    font-size: 2.375rem;
  }
  .sec_hero .hero_cnt .tit .cta {
    left: 10px;
    right: auto;
    top: auto;
    bottom: -80px;
    padding: 10px 30px;
    font-size: 1rem;
  }
  #home .kv_boxs {
    margin: -60px 0 0;
  }
  #home .kv_boxs .items {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }
  #home .kv_boxs .items .item {
    flex: 0 1 calc(50% - 10px);
    background: url(img/home_2024/kv_link_bg_1.png) center/60% auto no-repeat, linear-gradient(180deg, #e7e6e6, #fff);
    box-sizing: border-box;
    padding: 10px 15px;
    min-height: 180px;
    border-radius: 35px;
  }
  #home .kv_boxs .items .item .t {
    font-size: 1.125rem;
  }
  #home .kv_boxs .items .item .cta {
    padding: 5px 20px;
    margin: 35px 0 0;
    font-size: 1rem;
    border: 1px solid #2f66f4;
  }
  #home .kv_boxs .items .item:last-child {
    background: url(img/home_2024/kv_link_bg_2.png) center/60% auto no-repeat, linear-gradient(180deg, #e7e6e6, #fff);
  }
  #home .kv_boxs .items .item:last-child .cta {
    border: 1px solid #ac159d;
  }
  .sec_product {
    padding: 0 0 20px;
  }
  .sec_product .container {
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec_product .container .sec__title {
    width: 100%;
    padding-bottom: 16px;
  }
  .sec_product .product__cnt {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
  }
  .sec_product .product__cnt .flex_wrap {
    flex: 1 0 calc(100% - 30px);
    padding: 0;
    margin: 15px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .item__top {
    min-height: 270px;
    padding: 20px 30px 20px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .title {
    margin: 10px auto 20px;
    height: 70px;
    font-size: 1.3125rem;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .text {
    padding: 0 15px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .item__bottom {
    padding: 0 40px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .more_arr {
    width: 40px;
    height: 40px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .more_arr img {
    width: 26px;
    height: 13px;
  }
  .sec_service .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec_service .service_img {
    flex: 0 1 0;
    height: auto;
  }
  .sec_service .service__cnt {
    width: 100%;
    flex: 0 1 100%;
    padding: 0 20px;
  }
  .sec_service .service__cnt .srv_items {
    gap: 10px;
  }
  .sec_service .service__cnt .srv_item a {
    padding: 10px 10px;
  }
  .sec_service .service__cnt .srv_item a .title {
    font-size: 1.125rem;
    padding: 0 15px 0 0;
  }
  .sec_service .service__cnt .srv_item a .srv_item-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
  }
  .sec_service .service__cnt .srv_item a .srv_item-icon img {
    width: 20px;
  }
  .sec_about {
    padding: 50px 0 20px !important;
  }
  .sec_about .about__cnt .wording {
    padding: 30px 40px;
  }
  .sec_about .about__cnt .wording .text {
    font-size: 1rem;
  }
  .sec_about .about__cnt .wording .cta {
    margin: 30px 0 0 0;
    padding: 10px 30px;
    font-size: 1.125rem;
  }
  .sec_about .videos {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
  }
  .sec_about .video {
    flex: 0 1 calc(50% - 20px);
  }
  .sec_about .video_tit {
    font-size: 1rem;
  }
  .sec_about .video_cnt {
    margin: 0 auto 20px auto;
  }
  .sec_event {
    padding: 50px 0 !important;
  }
  .sec_event .container {
    max-width: 1000px;
  }
  .sec_event .event__cnt .items .evt_item {
    padding: 20px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt {
    padding: 0 50px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_date {
    font-size: 1.125rem;
    color: #2f66f4;
    padding: 15px 0px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_tit {
    font-size: 1rem;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_text {
    font-size: 0.875rem;
    padding: 10px 0;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_text .moreBtn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin: 0 0 0 20px;
  }
  .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: flex;
    flex-wrap: wrap;
  }
  .g_footer .cnt_right .links li {
    flex: 0 0 50%;
  }
  .page_automotive .sec_hero .hero__wrapper {
    min-height: 80vw;
  }
  .page_automotive .sec_hero .hero__wrapper .tit {
    left: 15px;
    transform: translateY(-80%);
  }
  .page_automotive .sec_hero .hero__wrapper .tit .t1 {
    font-size: 2.125rem;
  }
  .page_automotive .sec_hero .hero__wrapper .tit .t2 {
    margin: 5px 0 0;
    font-size: 1.125rem;
  }
  .page_automotive .sec_about {
    padding: 30px 0 !important;
  }
  .page_automotive .sec_about .container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .page_automotive .sec_about .about__cnt {
    width: 95%;
    min-width: 95%;
    margin: 0;
    padding: 30px 40px 50px;
  }
  .page_automotive .sec_about .about__cnt-img {
    max-width: 370px;
  }
  .page_automotive .sec_about .video {
    width: 300px;
    min-width: 300px;
    margin: -30px 0 0;
  }
  .page_automotive .sec_about .video_tit {
    font-size: 1rem;
  }
  .page_automotive .sec_about .video_cnt {
    margin: 0 auto 10px auto;
  }
  .page_automotive .sec_about .video_cnt::after {
    width: 50px;
    height: 50px;
  }
  .page_automotive-four .container {
    padding: 20px 0;
  }
  .page_automotive-four .container .items {
    flex-wrap: wrap;
    gap: 40px 10px;
  }
  .page_automotive-four .container .items .item {
    flex: 0 1 calc(50% - 20px);
  }
  .page_automotive-four .container .items .item .item_up {
    font-size: 1.5625rem;
    padding: 50px 15px 20px;
  }
  .page_automotive-four .container .items .item .item_up .num {
    top: -25px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
  }
  .page_automotive-four .container .items .item .item_d {
    font-size: 0.875rem;
    padding: 20px 15px 30px;
  }
  .page_automotive-four .container .items .item .item_d .w a {
    margin: 5px;
  }
  .page_automotive-four .container .items .item .item_d .w ul {
    padding: 0 0 0 20px;
  }
  .page_automotive-four .container .items .item .item_d .w ul li {
    margin: 10px 0;
  }
  .page_automotive-four .container .items .item .item_d img {
    max-width: 120px;
  }
  .page_automotive-ele .container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .page_automotive-ele .container .car {
    padding: 30px 0;
  }
  .page_automotive-ele .container .car img {
    max-width: 280px;
  }
  .page_automotive-ele .container .info {
    padding: 0 15px;
  }
  .page_automotive-ele .container .sec__title {
    text-align: left;
  }
  .page_automotive-ele .container .items {
    gap: 20px;
  }
  .page_automotive-ele .container .items .item {
    flex: 0 1 calc(50% - 20px);
  }
  .page_automotive-ele .container .items .item .tit {
    padding: 5px 30px;
    font-size: 1.125rem;
    margin: 20px 0;
  }
  .page_automotive-ele .container .items .item p {
    font-size: 1rem;
  }
  .page_automotive-see .container {
    padding: 30px 15px;
  }
  .page_automotive-see .container .items {
    margin: 50px auto;
    gap: 20px;
  }
  .page_automotive-see .container .items .item:first-child {
    max-width: 589px;
  }
  .page_automotive-see .container .items .item:nth-child(2) {
    max-width: 609px;
  }
  .page_automotive-see .container .items .item:last-child {
    flex: 0 1 100%;
  }
  .page_automotive-area {
    padding: 0 !important;
  }
  .page_automotive-area .items {
    gap: 10px;
  }
  .page_automotive-area .items .item {
    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 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .page_automotive-prod .container .items .item {
    flex: 0 1 100%;
    padding: 5%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page_automotive-prod .container .items .item .n {
    flex: 0 1 35%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #040159;
    margin: 0 0 15px;
  }
  .page_automotive-prod .container .items .item .n .icons {
    width: 50px;
    height: 50px;
  }
  .page_automotive-prod .container .items .item .n p {
    width: 150px;
  }
  .page_automotive-prod .container .items .item .links {
    flex: 0 1 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .page_automotive-prod .container .items .item img {
    max-width: 90px;
  }
  .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 {
    flex-direction: column;
  }
  .page_topic_sec3 .btnBox {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: 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 {
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page_abt .sec_hero .hero_cnt .hero__text {
    font-size: 1.125rem;
    text-align: justify;
  }
  .page_abt .sec_hero .hero__wrapper {
    min-height: 80vw;
  }
  .page_abt .sec_hero .hero__title {
    font-size: 2.125rem;
  }
  .sc_search {
    padding: 50px 0;
  }
  .sc_search .container {
    flex-direction: column;
  }
  .sc_search .container .search_cnt {
    margin: 0 0 25px;
  }
  .sc_search .container .search_cnt.detailCnt .search_cnt_inner {
    align-items: center;
    border-radius: 30px;
  }
  .sc_search .container .search_cnt_inner {
    padding: 30px 50px;
  }
  .sc_search .container .tit {
    font-size: 2.5rem;
  }
  .sc_search .container .nav_item .w {
    font-size: 1.1875rem;
    margin: 20px 0;
  }
  .page_about_sec1 .sec__cnt {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page_about_sec1 .abt_box {
    padding: 40px 20px 30px;
  }
  .page_about_sec1 .abt_box p {
    font-size: 1.1875rem;
  }
  .page_about_sec1 .video {
    position: relative;
    flex: 0 1 50%;
    margin: 0 0 0 0;
  }
  .page_about_sec1 .video_cnt {
    max-width: 560px;
    margin: 20px auto;
  }
  .page_about_sec_pd {
    padding: 40px 0;
  }
  .page_about_sec_pd .tit {
    font-size: 2rem;
    margin: 0 0 35px 0;
  }
  .page_about_sec_pd .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .page_about_sec_pd .items .item {
    padding: 30px 20px;
  }
  .page_about_sec_pd .items .item .pic {
    padding: 20px 25px 10px;
  }
  .page_about_sec_pd .items .item .t {
    width: 180px;
    padding: 5px 0;
    font-size: 1.125rem;
  }
  .page_about_sec_pd .items .item .w {
    height: auto;
    padding: 20px 25px;
    font-size: 0.875rem;
  }
  .page_about_sec_pd .pdi {
    padding: 30px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page_about_sec_pd .pdi img {
    max-width: 200px;
    margin: 25px 0;
  }
  .page_about_link {
    min-height: 80vw;
    padding: 50px 0;
  }
  .page_about_link .tit {
    font-size: 2.5rem;
    margin: 0 0 50px;
  }
  .page_about_link .link {
    padding: 10px 50px;
    font-size: 1.0625rem;
  }
  .g_main .page_product_hero {
    padding: 40px;
  }
  .page_product_hero .hero_cnt {
    flex-direction: column;
  }
  .page_product_hero .hero_cnt .text {
    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 {
    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: 44.999994375vw;
  }
  .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 */