: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 .w {
  font-size: 1rem;
  text-align: left;
  color: #1a1a1a;
  line-height: 1.5;
}
.g_main .sec__title .subtit {
  margin-top: 6px;
  font-size: 20px;
  font-weight: bold;
}
.g_main .sec__title .sptit {
  margin-top: 6px;
  font-size: 1.25rem;
  color: #2551da;
}
.g_main .sec__title.in_white .tit {
  color: #fff;
}
.g_main .sec__title.in_white::after {
  background-color: #fff;
}

.cta_btn {
  position: relative;
  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: #2551da;
  border: 1px solid #fff;
  background-color: #fff;
  text-align: right;
  transition: all 0.2s ease-out;
}
.cta_btn.btn_sub_blue_prods img {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 0 0 20px;
  transition: all 0.2s ease-out;
}
.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.hover:hover .cta_btn-subNav {
  display: flex;
}
.cta_btn .cta_btn-subNav {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 999;
}
.cta_btn .cta_btn-subNav a {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease-out;
}
.cta_btn .cta_btn-subNav a:hover {
  color: #ff0000;
}
.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_2025/kv_banner_1.jpg) center/cover no-repeat;
}
.sec_hero .hero_cnt .tit {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translate(0, -40%);
  text-align: center;
  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;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}
.sec_hero .hero_cnt .tit .cta {
  position: relative;
  box-sizing: border-box;
  padding: 15px 40px;
  margin: 50px 0;
  border-radius: 35px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-out;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec_hero .hero_cnt .tit .cta span {
  position: relative;
  font-size: 1.25rem;
  font-weight: normal;
  letter-spacing: 3px;
  color: #fff;
  z-index: 1;
  transition: all 0.2s ease-out;
}
.sec_hero .hero_cnt .tit .cta img {
  position: relative;
  width: 100%;
  max-width: 114px;
  margin: -6px 0 0;
  display: block;
  z-index: 1;
  transition: all 0.2s ease-out;
}
.sec_hero .hero_cnt .tit .cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, #50eccd, #2336db, #4081c0);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: all 0.4s ease-out;
  z-index: 0;
}
.sec_hero .hero_cnt .tit .cta:hover {
  background-color: #fff;
  color: #1a1a1a;
}
.sec_hero .hero_cnt .tit .cta:hover span {
  letter-spacing: 5px;
}
.sec_hero .hero_cnt .tit .cta:hover img {
  margin: 0 0 0;
}
.sec_hero .hero_cnt .tit .cta:hover::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.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;
}

.sec_product {
  padding: 100px 0;
}
.sec_product .container {
  box-sizing: border-box;
  padding: 50px 0px;
}
.sec_product .product__cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.sec_product .product__cnt .flex_wrap {
  position: relative;
  flex: 1 0 calc(33% - 30px);
  max-width: 360px;
  border-radius: 35px;
  padding: 0;
}
.sec_product .product__cnt .flex_wrap:first-child .pdt_item {
  background: radial-gradient(circle at 100% 85%, #fff 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: flex-end;
}
.sec_product .product__cnt .flex_wrap:first-child .pdt_item:hover::before {
  opacity: 0;
}
.sec_product .product__cnt .flex_wrap:first-child .pdt_item .sec__title {
  position: relative;
  width: 100%;
  max-width: 380px;
  text-align: right;
  margin: 0;
  line-height: 1.2;
  padding-bottom: 16px;
}
.sec_product .product__cnt .flex_wrap:first-child .pdt_item .sec__title .tit {
  position: relative;
  display: inline-block;
  color: #2551e1;
  font-size: 2.5rem;
  font-weight: bold;
  box-sizing: border-box;
  padding: 0 0 10px 0;
}
.sec_product .product__cnt .flex_wrap:first-child::before {
  opacity: 0;
}
.sec_product .product__cnt .flex_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-radius: 35px;
  background: radial-gradient(circle at 0% 85%, #4ee8cc 0%, #3da8d6 50%, #2046e3 100%);
  filter: blur(5px);
  opacity: 0.6;
}
.sec_product .product__cnt .flex_wrap .pdt_item {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 20px 30px 20px;
  text-decoration: none;
  border-radius: 35px;
  display: block;
  background: radial-gradient(circle at 0% 85%, #f1f2f2 0%, #e3eff0 100%);
}
.sec_product .product__cnt .flex_wrap .pdt_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background: radial-gradient(circle at 0% 85%, #4ee8cc 0%, #3da8d6 50%, #2046e3 100%);
  opacity: 0;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover::before {
  opacity: 1;
}
.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 .w {
  color: #fff;
}
.sec_product .product__cnt .flex_wrap .pdt_item:hover .more_arr img {
  filter: brightness(10);
}
.sec_product .product__cnt .flex_wrap .pdt_item .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 0;
  height: 70px;
  font-size: 1.3125rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #000;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .text {
  position: relative;
  width: 100%;
  height: 240px;
  text-align: justify;
  box-sizing: border-box;
  padding: 0;
  color: #000;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .more_arr {
  position: relative;
  margin: 100px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sec_product .product__cnt .flex_wrap .pdt_item .more_arr .w {
  position: relative;
  font-size: 0.875rem;
  color: #348bea;
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .more_arr img {
  position: relative;
  width: 91px;
  height: 10px;
  filter: brightness(1);
  transition: all 0.2s ease-out;
}
.sec_product .product__cnt .flex_wrap .pdt_item .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
}
.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;
}

.sp_download {
  position: relative;
  padding: 80px 30px;
  z-index: 1;
}
.sp_download.multi {
  background: #ebebeb;
}
.sp_download.auto {
  padding: 140px 30px;
}
.sp_download-box {
  position: relative;
  width: 100%;
  padding: 150px 0;
  background: url(img/home_2025/sp_box_mid.png) center/100% 100% no-repeat;
  border-radius: 35px 0 35px 0;
}
.sp_download-box .box_top {
  position: absolute;
  top: -7.1875rem;
  right: 0;
  width: 35%;
  height: 7.1875rem;
  background: url(img/home_2025/sp_box_up.png) center/100% 100% no-repeat;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  padding: 0 0 0 8%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sp_download-box .box_bottom {
  position: absolute;
  bottom: -6.25rem;
  left: 0;
  width: 35%;
  height: 6.25rem;
  background: url(img/home_2025/sp_box_bottom.png) center/100% 100% no-repeat;
}
.sp_download .container {
  max-width: 1000px;
}
.sp_download .container .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}
.sp_download .container .items.one {
  justify-content: center;
}
.sp_download .container .items .item {
  position: relative;
  flex: 0 1 calc(50% - 40px);
  box-sizing: border-box;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 35px;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all 0.2s ease-out;
}
.sp_download .container .items .item img {
  position: relative;
  width: 100%;
  max-width: 60px;
  margin: 0 0 0 15px;
  height: auto;
  display: block;
  filter: brightness(10);
  transition: all 0.2s ease-out;
}
.sp_download .container .items .item:hover {
  color: #3586e3;
  background-color: #fff;
}
.sp_download .container .items .item:hover img {
  filter: brightness(1);
}

.sec_service {
  position: relative;
  padding: 80px 30px;
  z-index: 1;
}
.sec_service-box {
  position: relative;
  width: 100%;
  padding: 150px 0;
  background: url(img/home_2025/sp_box_mid.png) center/100% 100% no-repeat;
  border-radius: 35px 0 35px 0;
}
.sec_service-box .box_top {
  position: absolute;
  top: -7.1875rem;
  right: 0;
  width: 35%;
  height: 7.1875rem;
  background: url(img/home_2025/sp_box_up.png) center/100% 100% no-repeat;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  padding: 0 0 0 8%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sec_service-box .box_bottom {
  position: absolute;
  bottom: -6.25rem;
  left: 0;
  width: 35%;
  height: 6.25rem;
  background: url(img/home_2025/sp_box_bottom.png) center/100% 100% no-repeat;
}
.sec_service .container .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.sec_service .container .items .item {
  position: relative;
  flex: 0 1 calc(50% - 30px);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.sec_service .container .items .item:hover img {
  transform: scale(1.05);
}
.sec_service .container .items .item img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transition: all 0.2s ease-out;
}
.sec_service .container .items .item .info {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.sec_service .container .items .item .info .w {
  color: #fff;
  font-size: 1rem;
}
.sec_service .container .items .item .info .w span {
  font-size: 0.875rem;
}
.sec_service .container .items .item .info .cta {
  color: #fff;
  font-size: 0.875rem;
}
.sec_service .container .items .item .info .cta img {
  position: relative;
  width: 100%;
  max-width: 5.625rem;
  height: auto;
  display: block;
  margin: -0.3125rem 0 0;
}

.sec_about {
  position: relative;
  background: url(img/home_2024/about_bg.jpg) center/cover no-repeat;
  padding: 180px 0 300px !important;
  margin: -100px 0 0;
}
.sec_about .container {
  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: 150px 200px 0 100px;
  width: 100%;
  max-width: 1140px;
  height: 397.994665475px;
  background: url(img/home_2025/about_bg.png) center/100% 100% no-repeat;
}
.sec_about .about__cnt .wording .text {
  font-size: 1rem;
  font-weight: 300;
  text-align: justify;
  color: #333;
}
.sec_about .about__cnt .wording .cta {
  position: absolute;
  top: 150px;
  right: 35px;
  color: #2551e1;
  font-size: 1rem;
  letter-spacing: 0.0625rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.2s ease-out;
}
.sec_about .about__cnt .wording .cta img {
  position: relative;
  width: 100%;
  max-width: 90px;
  height: auto;
  display: block;
  margin: -10px 0 0;
  transition: all 0.2s ease-out;
}
.sec_about .about__cnt .wording .cta:hover {
  letter-spacing: 0.3125rem;
}
.sec_about .about__cnt .wording .cta:hover img {
  transform: scale(1.1);
}
.sec_about .videos {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: -100px auto;
}
.sec_about .video {
  position: relative;
  flex: 0 1 calc(50% - 30px);
  max-width: 460px;
  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: 15px;
  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: transparent;
  padding: 100px 30px !important;
  margin: -100px 0 0;
}
.sec_event_inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 50px 0;
  background: url(img/home_2025/news_mid.png) center/100% 100% no-repeat;
}
.sec_event_inner .sec_event_tit {
  position: absolute;
  top: -7.0625rem;
  left: 0;
  width: 100%;
  height: 7.0625rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sec_event_inner .sec_event_tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sec_event_inner .sec_event_bottom {
  position: absolute;
  bottom: -2.9375rem;
  left: 0;
  width: 100%;
  height: 2.9375rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sec_event_inner .sec_event_bottom img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.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;
  gap: 10px 0;
}
.sec_event .event__cnt .items .evt_item {
  position: relative;
  width: 100%;
  margin: 0;
  background-color: #fff;
  transition: all 0.2s ease-out;
  text-decoration: none;
  border-radius: 15px;
}
.sec_event .event__cnt .items .evt_item .item_cnt {
  position: relative;
  width: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  text-decoration: none;
}
.sec_event .event__cnt .items .evt_item .item_cnt .item_date {
  position: relative;
  width: 105px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #333;
  box-sizing: border-box;
  background-color: #ebf1f1;
  border-radius: 15px;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec_event .event__cnt .items .evt_item .item_cnt .item_date span {
  font-size: 1.625rem;
  font-weight: bold;
}
.sec_event .event__cnt .items .evt_item .item_cnt .cnt {
  position: relative;
  width: 100%;
  color: #333;
  box-sizing: border-box;
  padding: 30px 90px 15px 35px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.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 .cnt .item_text {
  position: relative;
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec_event .event__cnt .items .evt_item .item_cnt .moreBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 50px;
  margin: 0;
  border-radius: 15px 0 15px 15px;
  background-color: #e7f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
.sec_event .event__cnt .items .evt_item .item_cnt .moreBtn .more_arr {
  position: relative;
  width: 25px;
  height: auto;
  filter: brightness(1);
  transition: all 0.2s ease-out;
}
.sec_event .event__cnt .items .evt_item:hover .item_cnt .item_date {
  color: #fff;
  background-color: #2551e1;
}

.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/product_2025/hb_6.jpg) center/cover no-repeat;
}
.page_automotive .sec_hero .hero__wrapper {
  min-height: 62vh;
}
.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 30px !important;
  margin: 0 !important;
}
.page_automotive .sec_about-inner {
  position: relative;
  width: 100%;
  padding: 40px 0;
  border-radius: 35px;
  background: radial-gradient(circle at 0% 85%, #4ee8cc 0%, #3da8d6 10%, #0001f3 50%, #3da8d6 100%);
}
.page_automotive .sec_about .cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.page_automotive .sec_about .cnt .tit {
  position: relative;
  flex: 0 1 580px;
}
.page_automotive .sec_about .cnt .tit .t {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.page_automotive .sec_about .cnt .tit .w {
  margin: 15px 0 0;
  font-size: 1rem;
  color: #fff;
  font-weight: normal;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.page_automotive .sec_about .cnt .ab_btns {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.page_automotive .sec_about .cnt .ab_btns-btn {
  position: relative;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 35px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.page_automotive .sec_about .cnt .ab_btns-btn:hover {
  color: #333;
  background-color: #e6ebeb;
}
.page_automotive .sec_about .cnt .ab_btns-btn.hover:hover .ab_btn-subNav {
  display: flex;
}
.page_automotive .sec_about .cnt .ab_btns .ab_btn-subNav {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 999;
}
.page_automotive .sec_about .cnt .ab_btns .ab_btn-subNav a {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease-out;
}
.page_automotive .sec_about .cnt .ab_btns .ab_btn-subNav a:hover {
  color: #ff0000;
}
.page_automotive_prods {
  position: relative;
  width: 100%;
}
.page_automotive_prods .cnt_topImg {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.page_automotive_prods .cnt_topImg .pic {
  width: 50%;
  padding: 0 20px;
}
.page_automotive_prods .cnt_topImg .pic img {
  position: relative;
  width: auto;
  height: 405px;
  display: block;
}
.page_automotive_prods .tit {
  color: #2551da;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 50px 0;
}
.page_automotive_prods .prods_cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.page_automotive_prods .prods_cnt .item {
  position: relative;
  flex: 0 1 calc(50% - 30px);
  max-width: 590px;
  border-radius: 35px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.page_automotive_prods .prods_cnt .item:nth-child(3) {
  flex: 0 1 calc(100% - 80px);
  max-width: 100%;
}
@media screen and (max-width: 1440px) {
  .page_automotive_prods .prods_cnt .item:nth-child(3) {
    flex: 0 1 calc(100% - 30px);
  }
}
.page_automotive_prods .prods_cnt .item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-radius: 35px;
  background: radial-gradient(circle at 0% 85%, #4ee8cc 0%, #3da8d6 50%, #2046e3 100%);
  filter: blur(5px);
  opacity: 0.6;
}
.page_automotive_prods .prods_cnt .item_inner {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 20px 30px 50px;
  text-decoration: none;
  border-radius: 35px;
  background: radial-gradient(circle at 0% 85%, #f1f2f2 0%, #e3eff0 100%);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
  flex: 1;
}
.page_automotive_prods .prods_cnt .item_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background: radial-gradient(circle at 0% 85%, #4ee8cc 0%, #3da8d6 50%, #2046e3 100%);
  opacity: 0;
  transition: all 0.2s ease-out;
}
.page_automotive_prods .prods_cnt .item_inner .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 0;
  height: 50px;
  font-size: 1.3125rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #000;
  transition: all 0.2s ease-out;
}
.page_automotive_prods .prods_cnt .item_inner .text {
  position: relative;
  width: 100%;
  margin: 0 0 25px;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  font-size: 1rem;
  color: #000;
  transition: all 0.2s ease-out;
}
.page_automotive_prods .prods_cnt .item_inner .pic {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_automotive_prods .prods_cnt .item_inner .pic img {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}
.page_automotive_prods .prods_cnt .item_inner .lists {
  position: relative;
  width: 100%;
  margin: 20px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
}
.page_automotive_prods .prods_cnt .item_inner .lists .list {
  position: relative;
  flex: 0 1 calc(50% - 15px);
  text-decoration: none;
}
.page_automotive_prods .prods_cnt .item_inner .lists .list .t {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  color: #2551da;
  padding: 5px 0;
  border-bottom: 1px solid #2551da;
  transition: all 0.2s ease-out;
}
.page_automotive_prods .prods_cnt .item_inner .lists .list .w {
  font-size: 0.875rem;
  font-weight: normal;
  color: #1a1a1a;
  padding: 10px 0;
}
.page_automotive_prods .prods_cnt .item_inner .lists .list:hover .t {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
}
.page_automotive_prods .prods_cnt .item_inner .gops {
  position: relative;
  width: 100%;
}
.page_automotive_prods .prods_cnt .item_inner .gops.rr {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.page_automotive_prods .prods_cnt .item_inner .gops.rr .gop {
  position: relative;
  flex: 0 1 calc(33% - 30px);
  display: flex;
  flex-direction: column;
}
.page_automotive_prods .prods_cnt .item_inner .gops.rr .gop:nth-child(1) {
  margin: 25px auto 25px;
}
.page_automotive_prods .prods_cnt .item_inner .gops.rr .gop-cnt {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop {
  position: relative;
  width: 100%;
  max-width: 990px;
  margin: 25px auto 25px;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop:nth-child(1) {
  margin: 80px auto 25px;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop:nth-child(2) .gop-cnt {
  background-color: #41aecb;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop:nth-child(3) .gop-cnt {
  background-color: #2551da;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-up {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-up img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt {
  position: relative;
  width: 100%;
  padding: 40px 80px;
  border-radius: 25px 0 25px 25px;
  background-color: #3586e3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list {
  position: relative;
  flex: 0 1 calc(33% - 30px);
  text-decoration: none;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list .t {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  padding: 5px 0;
  border-bottom: 1px solid #fff;
  transition: all 0.2s ease-out;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list .w {
  font-size: 0.875rem;
  font-weight: normal;
  color: #fff;
  padding: 10px 0;
}
.page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list:hover .t {
  color: #ffff00;
  border-bottom: 1px solid #ffff00;
}
.page_automotive_prods .prods_cnt .item_inner .sss {
  position: relative;
  width: 100%;
  text-align: right;
  margin: 15px 0 0;
}
.page_automotive_prods .prods_cnt .item_inner .sss_inner {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  color: #333;
  text-align: left;
}

.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.eb {
  background-color: #ebebeb;
}
.page_topic_video.eb .sec__cnt-videos {
  padding: 0 60px 50px;
  background: radial-gradient(circle at 0% 85%, white 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0 0 0 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.page_topic_video.eb .ps {
  color: #333;
}
.page_topic_video.auto {
  padding: 20px 0;
}
.page_topic_video.auto .sec__cnt-videos {
  padding: 0 60px 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.page_topic_video.auto .ps {
  color: #333;
}
.page_topic_video .info {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.page_topic_video .info .pic {
  position: relative;
  width: 100%;
  max-width: 486px;
}
.page_topic_video .info .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.page_topic_video .info .det {
  position: relative;
  margin: 0 0 0 50px;
  padding: 0 0 30px;
}
.page_topic_video .info .det .t {
  font-size: 1.875rem;
  font-weight: bold;
}
.page_topic_video .info .det .s {
  font-size: 1.125rem;
  font-weight: bold;
}
.page_topic_video .info .det .w {
  font-size: 1rem;
  font-weight: normal;
}
.page_topic_video .info .det .bbtnn {
  position: absolute;
  bottom: 0;
  right: 0;
  text-decoration: none;
  font-size: 1rem;
  color: #2551e1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.2s ease-out;
}
.page_topic_video .info .det .bbtnn img {
  position: relative;
  width: 100%;
  max-width: 90px;
  height: auto;
  display: block;
  margin: -5px 0 0;
  transition: all 0.2s ease-out;
}
.page_topic_video .info .det .bbtnn:hover {
  letter-spacing: 0.1875rem;
}
.page_topic_video .info .det .bbtnn:hover img {
  transform: scale(1.1);
}
.page_topic_video .sec__cnt {
  position: relative;
  flex: 0 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  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;
  text-align: center;
}
.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_2025/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_2025/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_2025/hb_3.jpg") center/cover no-repeat;
}

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

.page_vibration .page_product_hero {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0)), url("img/product_2025/hb_5.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: #ebebeb;
}
.page_product_summary .form_box {
  position: relative;
  width: 100%;
  border-radius: 35px;
  background-color: #fff;
  padding: 50px 30px;
}
.page_product_summary .text {
  position: relative;
  width: 100%;
  font-size: 1rem;
  text-align: left;
}
.page_product_summary .text.AL {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.page_product_summary .pic {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 50px auto;
}
.page_product_summary .pic .sss {
  position: relative;
  text-align: right;
  margin: 15px 0 0;
}
.page_product_summary .pic .sss_inner {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  color: #333;
  text-align: left;
}
.page_product_summary .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.page_product_summary .cta_btn {
  position: relative;
  display: inline-block;
  padding: 0;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.page_product_summary .cta_btn:hover {
  transform: scale(1.05);
}
.page_product_summary .cta_btn:hover .cta_btn_inner img:first-child {
  transform: translateX(20px);
}
.page_product_summary .cta_btn:hover .cta_btn_inner img:last-child {
  transform: translateX(-20px);
}
.page_product_summary .cta_btn_outer {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 100px auto;
  padding: 0 20px;
}
.page_product_summary .cta_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-radius: 50px;
  background: radial-gradient(circle at 0% 85%, #4ee8cc 0%, #3da8d6 30%, #2046e3 60%, #4ee8cc 100%);
  filter: blur(5px);
  opacity: 0.6;
}
.page_product_summary .cta_btn_inner {
  position: relative;
  padding: 20px 50px;
  background-color: #fff;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.page_product_summary .cta_btn_inner span {
  position: relative;
  display: inline-block;
  margin: 0 35px;
  font-size: 2.125rem;
  font-weight: bold;
  color: #2551da;
}
.page_product_summary .cta_btn_inner img {
  position: relative;
  width: 100%;
  max-width: 20px;
  height: auto;
  display: block;
  margin: 0;
  transition: all 0.2s ease-out;
}

.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: #333;
  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: #333;
  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(-40%);
  }
  .sec_hero .hero_cnt .tit .t1 {
    font-size: 4.1875rem;
  }
  .sec_hero .hero_cnt .tit .cta {
    padding: 10px 30px;
    font-size: 1.25rem;
  }
  .sec_product {
    padding: 60px 0 80px;
  }
  .sec_product .container {
    padding: 50px 0px;
    max-width: 1000px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item {
    min-height: 450px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .text {
    height: 160px;
  }
  .sp_download {
    padding: 80px 30px;
  }
  .sp_download-box {
    padding: 80px 0;
  }
  .sec_service {
    padding: 80px 30px;
  }
  .sec_service-box {
    padding: 80px 0;
  }
  .sec_event .container {
    max-width: 800px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_date {
    font-size: 1.125rem;
  }
  .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;
  }
  .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: 100vw;
    background: url(img/home_2025/kv_banner_1.jpg) center/cover no-repeat;
  }
  .sec_hero .hero_cnt .tit {
    transform: translateY(-50%);
  }
  .sec_hero .hero_cnt .tit .container {
    position: relative;
  }
  .sec_hero .hero_cnt .tit .t1 {
    font-size: 2.5rem;
  }
  .sec_hero .hero_cnt .tit .cta {
    margin: 20px auto;
  }
  .sec_product {
    padding: 20px 0;
  }
  .sec_product .container {
    box-sizing: border-box;
    padding: 20px 0px;
  }
  .sec_product .product__cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .sec_product .product__cnt .flex_wrap {
    flex: 1 0 calc(100% - 30px);
  }
  .sec_product .product__cnt .flex_wrap:first-child .pdt_item {
    display: flex;
    align-items: center;
  }
  .sec_product .product__cnt .flex_wrap:first-child .pdt_item .sec__title {
    text-align: center;
  }
  .sec_product .product__cnt .flex_wrap:first-child .pdt_item .sec__title .tit {
    font-size: 2.5rem;
    padding: 0 0 10px 0;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item {
    min-height: auto;
    padding: 20px 30px 20px;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .title {
    margin: 10px auto 15px;
    height: auto;
    font-size: 1.3125rem;
  }
  .sec_product .product__cnt .flex_wrap .pdt_item .text {
    height: auto;
    padding: 0 0 40px;
  }
  .sp_download {
    padding: 80px 15px;
  }
  .sp_download.auto {
    padding: 110px 30px 60px;
  }
  .sp_download-box {
    padding: 50px 0;
  }
  .sp_download-box .box_top {
    top: -60px;
    width: 200px;
    height: 60px;
    font-size: 2.5rem;
    padding: 0 0 0 45px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .sp_download-box .box_bottom {
    bottom: -50px;
    width: 200px;
    height: 50px;
  }
  .sp_download .container .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
  }
  .sp_download .container .items .item {
    flex: 0 1 calc(100% - 40px);
    padding: 10px 20px;
    font-size: 1.125rem;
  }
  .sp_download .container .items .item img {
    margin: 0 0 0 15px;
    max-width: 30px;
  }
  .sec_service {
    padding: 80px 15px;
  }
  .sec_service-box {
    padding: 50px 0;
  }
  .sec_service-box .box_top {
    top: -60px;
    width: 200px;
    height: 60px;
    font-size: 2.5rem;
    padding: 0 0 0 45px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .sec_service-box .box_bottom {
    bottom: -50px;
    width: 200px;
    height: 50px;
  }
  .sec_service .container .items {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    gap: 30px;
  }
  .sec_service .container .items .item {
    flex: 0 1 calc(100% - 30px);
  }
  .sec_service .container .items .item .info {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sec_service .container .items .item .info .w {
    font-size: 1rem;
  }
  .sec_service .container .items .item .info .w span {
    font-size: 0.875rem;
  }
  .sec_service .container .items .item .info .cta {
    font-size: 0.875rem;
  }
  .sec_service .container .items .item .info .cta img {
    max-width: 5.625rem;
    margin: -0.3125rem 0 0;
  }
  .sec_about {
    background: url(img/home_2024/about_bg.jpg) center/cover no-repeat;
    padding: 100px 0 180px !important;
    margin: -100px 0 0;
  }
  .sec_about .about__cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: flex-start;
  }
  .sec_about .about__cnt .wording {
    padding: 100px 30px 0;
    width: 100vw;
    max-width: none;
    height: 75vw;
    background: url(img/home_2025/about_bg.png) 0% 0%/200% 100% no-repeat;
  }
  .sec_about .about__cnt .wording .text {
    font-size: 1rem;
  }
  .sec_about .about__cnt .wording .cta {
    position: absolute;
    top: auto;
    bottom: 40px;
    right: 35px;
    font-size: 1rem;
  }
  .sec_about .videos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: -20px auto;
  }
  .sec_about .video {
    position: relative;
    flex: 0 1 calc(50% - 30px);
    max-width: 300px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec_about .video_tit {
    position: relative;
    text-align: center;
    font-size: 1rem;
    color: #000;
    font-weight: bold;
  }
  .sec_about .video_cnt {
    margin: 0 auto 10px auto;
  }
  .sec_event {
    padding: 60px 0 !important;
    margin: -120px 0 0;
  }
  .sec_event_inner {
    padding: 30px 15px;
    background: url(img/home_2025/news_mid.png) center/250% 100% no-repeat;
  }
  .sec_event_inner .sec_event_tit img {
    width: 250%;
    max-width: 250%;
  }
  .sec_event_inner .sec_event_bottom img {
    width: 250%;
    max-width: 250%;
  }
  .sec_event .event__cnt .items {
    position: relative;
    gap: 20px 0;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt {
    min-height: 130px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_date {
    width: 100%;
    padding: 15px 0;
    font-size: 1.125rem;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .item_date span {
    font-size: 1.625rem;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt {
    padding: 30px 35px 55px 35px;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_tit {
    font-size: 1rem;
  }
  .sec_event .event__cnt .items .evt_item .item_cnt .cnt .item_text {
    font-size: 0.875rem;
    padding: 10px 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: flex;
    flex-wrap: wrap;
  }
  .g_footer .cnt_right .links li {
    flex: 0 0 50%;
  }
  .page_automotive .sec_hero {
    background: url(img/product_2025/hb_6.jpg) center/cover no-repeat;
  }
  .page_automotive .sec_hero .hero__wrapper {
    min-height: 120vw;
  }
  .page_automotive .sec_hero .hero__wrapper .tit {
    padding: 0 30px;
  }
  .page_automotive .sec_about {
    padding: 40px 15px !important;
  }
  .page_automotive .sec_about-inner {
    padding: 20px 20px;
  }
  .page_automotive .sec_about .cnt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page_automotive .sec_about .cnt .tit {
    flex: 0 1 auto;
    margin: 0 0 35px;
  }
  .page_automotive .sec_about .cnt .tit .t {
    font-size: 2.5rem;
  }
  .page_automotive .sec_about .cnt .tit .w {
    margin: 15px 0 0;
    font-size: 1rem;
  }
  .page_automotive .sec_about .cnt .ab_btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .page_automotive .sec_about .cnt .ab_btns-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 35px;
    font-size: 1.125rem;
  }
  .page_automotive_prods .cnt_topImg {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .page_automotive_prods .cnt_topImg .pic {
    width: 100%;
    padding: 20px 20px;
  }
  .page_automotive_prods .cnt_topImg .pic img {
    width: 100%;
    height: auto;
  }
  .page_automotive_prods .tit {
    font-size: 2.5rem;
    margin: 25px 0;
  }
  .page_automotive_prods .prods_cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .page_automotive_prods .prods_cnt .item {
    flex: 1 0 calc(100% - 30px);
    max-width: 590px;
  }
  .page_automotive_prods .prods_cnt .item_inner {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 20px 30px 50px;
    text-decoration: none;
    border-radius: 35px;
  }
  .page_automotive_prods .prods_cnt .item_inner .lists {
    margin: 20px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
  }
  .page_automotive_prods .prods_cnt .item_inner .lists .list {
    flex: 0 1 calc(50% - 15px);
  }
  .page_automotive_prods .prods_cnt .item_inner .lists .list .t {
    font-size: 1.125rem;
    padding: 5px 0;
  }
  .page_automotive_prods .prods_cnt .item_inner .lists .list .w {
    font-size: 0.875rem;
    padding: 10px 0;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops.rr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops.rr .gop {
    position: relative;
    flex: 0 1 calc(100% - 20px);
    display: flex;
    flex-direction: column;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops.rr .gop:nth-child(1) {
    margin: 65px auto 25px;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops.rr .gop-up {
    border-radius: 0;
    overflow: auto;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops.rr .gop-up img {
    width: 100%;
    max-width: 100%;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops.rr .gop-cnt {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop {
    overflow: hidden;
    margin: 25px auto 25px;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop:nth-child(1) {
    margin: 40px auto 25px;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop-up {
    border-radius: 0 25px 0 0;
    overflow: hidden;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop-up img {
    width: 250%;
    max-width: 250%;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt {
    padding: 20px 20px;
    gap: 20px;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list {
    position: relative;
    flex: 0 1 calc(100% - 20px);
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list .t {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    padding: 5px 0;
    border-bottom: 1px solid #fff;
  }
  .page_automotive_prods .prods_cnt .item_inner .gops .gop-cnt .list .w {
    font-size: 0.875rem;
    font-weight: normal;
    color: #fff;
    padding: 10px 0;
  }
  .page_automotive_prods .prods_cnt .item_inner .sss {
    position: relative;
    width: 100%;
    text-align: right;
    margin: 15px 0 0;
  }
  .page_automotive_prods .prods_cnt .item_inner .sss_inner {
    position: relative;
    display: inline-block;
    font-size: 0.75rem;
    color: #333;
    text-align: left;
  }
  .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_topic_video {
    padding: 50px 0;
  }
  .page_topic_video.eb {
    background-color: #ebebeb;
  }
  .page_topic_video.eb .sec__cnt-videos {
    padding: 0 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .page_topic_video.auto {
    padding: 20px 0;
  }
  .page_topic_video.auto .sec__cnt-videos {
    padding: 0 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .page_topic_video.auto .ps {
    color: #333;
  }
  .page_topic_video .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .page_topic_video .info .pic {
    max-width: 486px;
  }
  .page_topic_video .info .det {
    margin: 20px 0 0;
    padding: 0 0 30px;
  }
  .page_topic_video .info .det .t {
    font-size: 1.875rem;
    font-weight: bold;
  }
  .page_topic_video .info .det .s {
    font-size: 1.125rem;
    font-weight: bold;
  }
  .page_topic_video .info .det .w {
    font-size: 1rem;
    font-weight: normal;
  }
  .page_topic_video .info .det .bbtnn {
    position: absolute;
    bottom: 0;
    right: 0;
    text-decoration: none;
    font-size: 1rem;
    color: #2551e1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all 0.2s ease-out;
  }
  .page_topic_video .info .det .bbtnn img {
    position: relative;
    width: 100%;
    max-width: 90px;
    height: auto;
    display: block;
    margin: -5px 0 0;
    transition: all 0.2s ease-out;
  }
  .page_topic_video .info .det .bbtnn:hover {
    letter-spacing: 0.1875rem;
  }
  .page_topic_video .info .det .bbtnn:hover img {
    transform: scale(1.1);
  }
  .page_topic_video .video {
    margin: 0;
  }
  .page_topic_video .ps {
    font-size: 1rem;
  }
  .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;
  }
  .page_product_summary .cta_btn {
    border-radius: 50px;
  }
  .page_product_summary .cta_btn:hover {
    transform: scale(1.05);
  }
  .page_product_summary .cta_btn:hover .cta_btn_inner img:first-child {
    transform: translateX(20px);
  }
  .page_product_summary .cta_btn:hover .cta_btn_inner img:last-child {
    transform: translateX(-20px);
  }
  .page_product_summary .cta_btn_outer {
    margin: 50px auto;
    padding: 0 20px;
  }
  .page_product_summary .cta_btn_inner {
    padding: 15px 30px;
    border-radius: 50px;
  }
  .page_product_summary .cta_btn_inner span {
    margin: 0 15px;
    font-size: 1.4375rem;
  }
  .page_product_summary .cta_btn_inner img {
    max-width: 10px;
  }
}/*# sourceMappingURL=style.css.map */