@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
.wow {
  visibility: hidden;
}
html,
body {
  scroll-behavior: smooth;
  font-family: var(--Noto-Sans-SC);
  max-width: 1920px;
  margin: 0 auto;
}
body {
  overflow: visible;
  background-color: #f5f5f5;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 150px;
  width: 100%;
}
.container {
  max-width: 1600px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
  height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header .header-top {
  width: 100%;
  padding-top: 17px;
}
header .header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-top .logo {
  width: 25%;
}
header .header-top .logo img {
  transition: all 0.5s;
}
header .header-top .lang {
  position: relative;
}
header .header-top .lang:hover .tip {
  opacity: 1;
  visibility: visible;
}
header .header-top .lang .tip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  width: 120px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  z-index: 1;
}
header .header-top .lang .tip a {
  display: block;
  text-align: center;
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  line-height: 1.45;
  padding: 0.25em 1em;
  transition: all 0.5s;
}
header .header-top .lang .tip a:hover {
  color: #2A82E4;
}
header .header-nav {
  flex: 1;
  width: 100%;
}
header .header-nav .container {
  height: 100%;
}
header .header-nav nav {
  flex: 1;
  height: 100%;
  width: 100%;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  gap: 4em;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #383838;
  font-size: clamp(15px, 1.1vw, 18px);
  transition: all 0.5s;
  line-height: 1.45;
}
header .lv1 > li a {
  position: relative;
  color: inherit;
  /* text-transform: uppercase; */
	font-weight: 700;
  padding-bottom: 0.3333em;
}
header .lv1 > li a::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background-color: #176AB3;
  transition: all 0.5s;
}
header .lv1 > li:hover:not(.search-tel) {
  color: #00204E;
}
header .lv1 > li:hover:not(.search-tel) > a {
  font-weight: 700;
}
header .lv1 > li:hover:not(.search-tel) > a::after {
  width: 100%;
}
header .lv1 > li:hover:not(.search-tel) .lv2 {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}
header .lv1 .search-tel {
  gap: 5em;
}
header .lv1 .search-tel .search-icon {
  cursor: pointer;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s;
}
header .lv1 .search-tel .search-icon img {
  width: 1.55555556em;
  height: 1.55555556em;
  transition: all 0.5s;
}
header .lv1 .search-tel .header-search-on {
  background-color: #00204E;
}
header .lv1 .search-tel .header-search-on img {
  width: 1em;
  height: 1em;
  filter: contrast(0) brightness(200%);
}
header .lv1 .search-tel .tel {
  display: flex;
  align-items: center;
  background-color: #2A82E4;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 2.5;
  border-radius: 1.25em;
  padding: 0 1em;
}
header .lv1 .search-tel .tel img {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.35em;
}
header .lv1 > .active {
  color: #00204E;
}
header .lv1 > .active > a {
  font-weight: 700;
}
header .lv2 {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100vw;
  min-height: 44vh;
  transition: all 0.25s;
  background-color: #383838;
  visibility: hidden;
  opacity: 0;
}
header .lv2 .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .lv2 .lt {
  position: relative;
  width: 40%;
  font-size: clamp(18px, 1.4583333vw, 28px);
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 0.5em;
  margin-top: 1.42857143em;
}
header .lv2 .lt::after {
  position: absolute;
  display: block;
  content: "";
  width: 2.166667em;
  height: 2px;
  background-color: #2A82E4;
  bottom: 0;
  left: 0;
}
header .lv2 .rt {
  width: 50%;
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 1.875em;
}
header .lv2 .rt ul li {
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
  padding: 0.625em;
  border-top: 1px solid #808080;
}
header .lv2 .rt ul li:last-child {
  border-bottom: 1px solid #808080;
}
header .lv2 .rt ul li a {
  display: inline-block;
  color: inherit;
  transition: all 0.5s;
	font-weight: 400;
}
header .lv2 .rt ul li a:hover {
  transform: translate(0.5em, 0);
}
header .header-search-form {
  display: none;
  position: fixed;
  left: 0;
  top: 150px;
  width: 100%;
  padding: 2% 0;
  background-color: #f5f5f5;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
header .header-search-form .container {
  height: auto;
}
header .header-search-form form {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  font-size: clamp(14px, 1.1vw, 18px);
  width: 100%;
}
header .header-search-form form input {
  flex: 1;
  height: 3em;
  outline: none;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 1em;
  transition: all 0.5s;
  border: 1px solid #ddd;
}
header .header-search-form form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .header-search-form form input:focus {
  border-color: #2A82E4;
}
header .header-search-form form button {
  outline: none;
  border: 0;
  background-color: #ddd;
  width: 3em;
  cursor: pointer;
  transition: all 0.5s;
}
header .header-search-form form button img {
  transition: all 0.5s;
}
header .header-search-form form button:hover {
  background-color: #2A82E4;
}
header .header-search-form form button:hover img {
  filter: contrast(0) brightness(200%);
}
.header-active {
  background-color: #fff;
}
.header-active .logo img {
  filter: contrast(1) brightness(100%);
}
.header-active .lv1 > li {
  color: #333;
}
.pagination {
  margin-top: 5%;
  display: flex !important;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  border: 1px solid #c1c1c1;
  padding: 0 0.25em;
  min-width: 2em;
  height: 2em;
  margin: 2.5px;
  color: #a6a6a6;
  border-radius: 2px;
  transition: all 0.5s;
}
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  border: 1px solid transparent;
  padding: 0 0.25em;
  min-width: 2em;
  height: 2em;
  margin: 2.5px;
  background-color: #1954B3;
  color: #fff;
  border-radius: 2px;
  transition: all 0.5s;
}
.pagination a:hover {
  color: #fff;
  background-color: #1954B3;
  border-color: transparent;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.index-banner .swiper .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  scale: 1.2;
  transition: scale 3s, opacity 0.5s;
  opacity: 0;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active img {
  scale: 1;
  opacity: 1;
}
.index-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  margin-top: 6.13497%;
  transition: all 0.5s;
}
.index-banner .banner-text a img {
  margin-right: 13px;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .banner-text a:hover img {
  margin-right: 7px;
}
.index-banner .swiper-pagination {
  bottom: 3%;
  line-height: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(10px, 1.2vw, 20px);
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  margin: 0 3px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D43030;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(14px, 2.60416667vw, 50px);
  color: #fff;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  font-size: inherit;
}
.index-title {
  margin-bottom: 3.125%;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #000;
  font-weight: 700;
  position: relative;
  line-height: 1.45;
}
.index-title h5 {
  font-size: clamp(12px, 1.2vw, 22px);
  color: #000;
  line-height: 1.45;
}
.index-prod {
  padding: 4.6875% 0 4.0625%;
}
.index-prod .index-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index-prod .prod-tab {
  display: flex;
  font-size: clamp(14px, 1.2vw, 20px);
  gap: 1em 2.2em;
}
.index-prod .prod-tab li {
  color: #000;
  font-weight: 500;
  text-align: center;
  line-height: 2.06666667;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #a6a6a6;
  transition: all 0.5s;
  min-width: 9em;
  padding: 0 0.5em;
}
.index-prod .prod-tab li:hover {
  color: #00204E;
}
.index-prod .prod-tab .active {
  color: #fff !important;
  background-color: #00204E;
  border-color: transparent;
}
.index-prod .prod-swiper {
  max-width: 1300px;
  margin: 0 auto;
}
.index-prod .prod-swiper .swiper {
  display: none;
}
.index-prod .prod-swiper .swiper:first-child {
  display: block;
}
.index-prod .prod-swiper .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 88.68421%;
  border-radius: 4px;
}
.index-prod .prod-swiper .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .prod-swiper .swiper .pic::after {
  position: absolute;
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: clamp(14px, 2.083333vw, 40px);
  color: #fff;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(124.61deg, #004CA8 0%, #0071DB 54.62%, #59BDFF 100%);
  transition: all 0.5s;
	display: none;
}
.index-prod .prod-swiper .swiper .title {
  background-color: #fff;
  border-radius: 4px;
  font-size: clamp(14px, 1.2vw, 20px);
  padding: 1.5em 0.7em 1.7em;
}
.index-prod .prod-swiper .swiper .title h4 {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.3846154em;
}
.index-prod .prod-swiper .swiper .title h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #000;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-prod .prod-swiper .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .prod-swiper .swiper .swiper-slide:hover .pic::after {
  /* opacity: 0.9; */
}
.index-prod .prod-swiper .swiper .swiper-slide:hover .title h4 {
  color: #2A82E4;
}
.index-prod .prod-swiper .swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 2.5%;
}
.index-prod .prod-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(10px, 1.2vw, 20px);
  background-color: #ccc;
  width: 0.5em;
  height: 0.5em;
  transition: all 0.5s;
  margin: 0 3px;
  opacity: 1;
}
.index-prod .prod-swiper .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2A82E4;
}
.index-about {
  padding: 0 0 4.1667%;
}
.index-about .container {
  font-size: clamp(14px, 1.35416667vw, 26px);
  color: #000;
  line-height: 1.45;
}
.index-about .container p {
  margin-bottom: 0.423077em;
}
.index-feature {
  padding: 0 0 4.1667%;
}
.index-feature .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.index-feature .container .block {
  position: relative;
  overflow: hidden;
  width: 31.25%;
  border-radius: 4px;
  font-size: clamp(10px, 1.2vw, 20px);
  padding: 2.45em 2.2em;
}
.index-feature .container .block .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.index-feature .container .block .mask {
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 2.5em 0.5em 1em;
}
.index-feature .container .block .mask h4 {
  font-size: clamp(14px, 1.2vw, 22px);
  color: #000;
  text-align: center;
  line-height: 1.45;
  font-weight: 700;
}
.index-feature .container .block .mask .icon {
  display: block;
  width: 2.7em;
  margin: 1.6em auto 1.2em;
}
.index-feature .container .block .mask .icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.index-feature .container .block .mask p {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #000;
  line-height: 1.45;
}
.index-feature .container .block:hover .bg {
  scale: 1.05;
}
.index-feature .container .block:hover .mask .icon {
  animation: tada 1s;
}
.footer-back {
  position: relative;
  z-index: 1;
}
.footer-back .back-top {
  font-size: clamp(10px, 1.2vw, 20px);
  margin: 0 5.72916667% 0 auto;
  width: 6em;
  cursor: pointer;
}
.footer-back .back-top img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: scale-down;
  transition: all 0.5s;
}
.footer-back .back-top:hover img {
  animation: bounce 1s;
}
footer {
  font-size: clamp(10px, 1.2vw, 20px);
  margin-top: -3em;
}
footer .footer-top {
  background-color: #001346;
  padding: 4.6875% 0 3.4375%;
}
footer .footer-top .block {
  margin-bottom: 5.277778%;
}
footer .footer-top .block:last-child {
  margin-bottom: 0;
}
footer .footer-top .block h4 {
  font-size: clamp(16px, 1.25vw, 24px);
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
  padding: 0 1.6667em 0.8333em;
  margin-bottom: 1.25em;
  border-bottom: 1px solid #808080;
}
footer .footer-top .block ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.1vw, 18px);
  gap: 1em 2em;
  padding: 0 2.2222em;
}
footer .footer-top .block ul li {
  width: 10em;
  color: #fff;
  line-height: 1.45;
}
footer .footer-top .block ul li a {
  color: inherit;
}
footer .footer-top .block ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-bt {
  background-color: #176AB3;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  line-height: 1.45;
  padding: 0.9375% 0;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
.inner-banner img {
  display: block;
  width: 100%;
}
.inner-content {
  padding: 4.1667% 0;
}
.inner-content .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.inner-content .container aside {
  position: sticky;
  top: 170px;
  width: 20.9375%;
}
.inner-content .container aside .title {
  position: relative;
  font-size: 16px;
  color: #176AB3;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 0.5625em;
  margin-bottom: 2.60416667vw;
}
.inner-content .container aside .title::after {
  position: absolute;
  display: block;
  content: "";
  width: 1.875em;
  height: 2px;
  background-color: #176AB3;
  bottom: 0;
  left: 0;
}
.inner-content .container aside ul li {
  font-size: clamp(14px, 1vw, 16px);
  color: #6f6f6f;
  line-height: 1.45;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #a6a6a6;
}
.inner-content .container aside ul li a {
  color: inherit;
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
}
.inner-content .container aside ul li a:hover {
  transform: translate(0.5em, 0);
}
.inner-content .container aside ul .active {
  font-weight: 700;
}
.inner-content .container main {
  width: 64.8125%;
}
.inner-title {
  font-size: clamp(20px, 2.60416667vw, 50px);
  margin-bottom: 0.8em;
}
.inner-title h3 {
  position: relative;
  color: #000;
  font-weight: 300;
  line-height: 1.45;
  padding-bottom: 0.2em;
}
.inner-title h3::after {
  position: absolute;
  display: block;
  content: "";
  width: 1.2em;
  height: 2px;
  background-color: #176AB3;
  bottom: 0;
  left: 0;
}
.inner-title h5 {
  font-size: clamp(14px, 1.35416667vw, 26px);
  color: #176AB3;
  line-height: 1.45;
  padding: 10px;
  font-weight: 700;
}
.inner-title .brief {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #000;
  line-height: 1.45;
  margin: 0.5em 0;
}
.about-us .inner-title img {
  width: 0.88em;
  margin-left: 0.84em;
  margin-top: -0.25em;
}
.about-us article {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
}
.inner-product {
  padding: 4.1667% 0 20%;
  background-color: #fff;
}
.inner-product .prod-intro .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-product .prod-intro .wrapper .lt {
  width: 38.75%;
}
.inner-product .prod-intro .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 84.35483871%;
}
.inner-product .prod-intro .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-product .prod-intro .wrapper .rt {
  width: 57.1875%;
}
.inner-product .prod-intro .wrapper .rt h3 {
  font-size: clamp(16px, 1.875vw, 36px);
  color: #000;
  line-height: 1.45;
  margin: 0.8333em 0 0.2778em;
  padding-bottom: 0.2778em;
  border-bottom: 1px solid #a6a6a6;
}
.inner-product .prod-intro .wrapper .rt .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #D43030;
  line-height: 1.45;
}
.inner-product .prod-intro .wrapper .rt .description {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  line-height: 1.45;
}
.inner-product .prod-intro .wrapper .rt .quotation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.2vw, 20px);
  gap: 1em 1.9em;
  line-height: 1.45;
  margin: 1.5em 0 0;
  padding-top: 1em;
  border-top: 1px solid #a6a6a6;
}
.inner-product .prod-intro .wrapper .rt .quotation a {
  color: #fff !important;
  background-color: #D43030;
  width: 7em;
  line-height: 2.5;
  text-align: center;
  transition: all 0.5s;
}
.inner-product .prod-intro .wrapper .rt .quotation a:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.inner-product .prod-intro .wrapper .rt .quotation p {
  color: #000;
}
.inner-product .prod-intro .wrapper .rt .quotation p span {
  font-weight: 300;
  font-size: clamp(12px, 1vw, 16px);
}
.inner-product .prod-list {
  margin-top: 3.6458333%;
}
.inner-product .prod-list .title {
  font-size: clamp(18px, 1.875vw, 36px);
  color: #000;
  line-height: 1.45;
  margin-bottom: 0.8333em;
}
.inner-product .prod-list ul {
  font-size: clamp(14px, 1.25vw, 24px);
}
.inner-product .prod-list ul li {
  line-height: 1.45;
  color: #D43030;
  border-top: 1px solid #000;
  padding: 0.8333em 0;
}
.inner-product .prod-list ul li a {
  color: inherit;
  transition: all 0.5s;
  display: inline-block;
}
.inner-product .prod-list ul li a:hover {
  transform: translate(0.5em, 0);
}
.inner-product .prod-list ul li:last-child {
  border-bottom: 1px solid #000;
}
.inner-product .prod-detail {
  margin-top: 2.60416667%;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #000;
  line-height: 1.45;
}
.inner-product .prod-detail h3 {
  font-size: clamp(16px, 1.875vw, 36px);
  color: #000;
  margin-bottom: 0.2778em;
}
.inner-product .prod-detail table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0.5em;
  font-size: clamp(12px, 1.2vw, 20px);
}
.inner-product .prod-detail table tr td {
  width: auto;
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.45;
  height: 2.5em;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
}
.inner-product .prod-detail section {
  overflow: auto;
  margin-bottom: 5.625%;
}
.inner-product .prod-detail section:last-of-type {
  margin-bottom: 0;
}
.inner-product .prod-detail .section1 table tr:first-child td {
  background-color: #f6f6f6;
  font-weight: 500;
}
.inner-product .prod-detail .section2 table tr td {
  text-align: center;
  background-color: #E5F2F7;
}
.inner-product .prod-detail .section2 table tr:first-child td {
  background-color: #0679A6;
  font-weight: 500;
  color: #fff;
}
.service-content article {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  line-height: 1.45;
  min-height: 50vh;
}
.service-content article h4 {
  font-size: clamp(16px, 1.2vw, 22px);
}
.service-content article h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
}
.service-content article h2 {
  font-size: clamp(20px, 2.083333vw, 40px);
}
.service-content article h1 {
  font-size: clamp(24px, 2.5vw, 48px);
  margin: 0.5em 0;
}
.quality-ensure {
  padding: 4.1667% 0;
}
.quality-ensure .wrapper {
  counter-reset: item-counter;
}
.quality-ensure .wrapper .block {
  counter-increment: item-counter;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.75% 2.125% 1.75% 5%;
  background-color: #fff;
  margin-bottom: 1.875%;
}
.quality-ensure .wrapper .block:nth-child(even) {
  background-color: #E5F2F7;
}
.quality-ensure .wrapper .block .lt {
  flex: 1;
  font-size: clamp(16px, 1.25vw, 24px);
  padding: 10px 1.764706em 10px 2.3529412em;
  line-height: 1.45;
}
.quality-ensure .wrapper .block .lt h3 {
  position: relative;
  margin-bottom: 0.764706em;
}
.quality-ensure .wrapper .block .lt h3::before {
  position: absolute;
  left: -2.3529412em;
  top: 0;
  content: counter(item-counter, decimal);
  font-size: clamp(16px, 1.25vw, 24px);
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 4px;
  background-color: #001346;
}
.quality-ensure .wrapper .block .lt .brief {
  font-size: clamp(12px, 1vw, 16px);
  color: #000;
  line-height: 1.45;
}
.quality-ensure .wrapper .block .rt {
  max-width: 68.64064603%;
}
.quality-ensure .wrapper .block .rt .pic {
  width: 100%;
}
.quality-ensure .wrapper .block .rt .pic img {
  display: block;
  width: 100%;
}
.quality-ensure article {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  line-height: 1.45;
  min-height: 40vh;
}
.recruitment {
  padding: 4.1667% 0;
}
.recruitment .recruit-list {
  max-width: 1476px;
  margin: 0 auto;
}
.recruitment .recruit-list .brief {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  line-height: 1.45;
  margin-bottom: 2.71%;
}
.recruitment .recruit-list .brief span {
  font-size: clamp(18px, 2.083333vw, 40px);
  color: #176AB3;
  font-weight: 300;
}
.recruitment .recruit-list form {
  position: relative;
  font-size: clamp(14px, 1.1vw, 18px);
  margin-bottom: 5.42%;
}
.recruitment .recruit-list form input {
  width: 100%;
  border: 1px solid #383838;
  background-color: transparent;
  color: #000;
  height: 2.611111em;
  border-radius: 4px;
  padding: 0 3.5556em 0 0.5556em;
  outline: none;
}
.recruitment .recruit-list form input::placeholder {
  color: #808080;
}
.recruitment .recruit-list form button {
  position: absolute;
  cursor: pointer;
  outline: none;
  width: 1.666667em;
  height: 1.666667em;
  background-color: transparent;
  border: 0;
  right: 1.3333em;
  top: 50%;
  transform: translate(0, -50%);
}
.recruitment .recruit-list form button img {
  display: block;
  width: 100%;
  height: 100%;
}
.recruitment .recruit-list .list .block {
  background-color: #fff;
  border-radius: 4px;
  font-size: clamp(15px, 1.5625vw, 30px);
  color: #383838;
  line-height: 1.9;
  padding: 0.6667em;
  cursor: pointer;
  margin-bottom: 2.03252%;
}
.recruitment .recruit-list .list .block h3 {
  font-weight: 700;
}
.recruitment .recruit-list .list .block h5 {
  font-size: clamp(10px, 1.2vw, 20px);
}
.recruitment .recruit-list .list .block h4 {
  font-size: clamp(13px, 1.2vw, 20px);
  font-weight: 700;
}
.recruitment .recruit-list .list .block .content {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #383838;
  margin-top: 0.5em;
  display: none;
}
.news-list {
  padding: 4.1667% 0;
}
.news-list .wrapper .block {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 4px;
  padding: 1.6875% 3.375% 1.6875% 2.25%;
  transition: all 0.5s;
  margin-bottom: 1.25%;
}
.news-list .wrapper .block .lt {
  width: 49.6688742%;
}
.news-list .wrapper .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 32.8%;
}
.news-list .wrapper .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .wrapper .block .rt {
  width: 46.1589404%;
}
.news-list .wrapper .block .rt h5 {
  display: inline-block;
  font-size: clamp(12px, 1vw, 14px);
  color: #D43030;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 0.7142857em;
  margin-bottom: 0.7142857em;
  padding-right: 1.42857em;
  border-bottom: 2px solid #EA0A2A;
}
.news-list .wrapper .block .rt h4 {
  font-size: clamp(14px, 1.35416667vw, 26px);
  color: #000;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.45;
  margin-bottom: 0.76923em;
}
.news-list .wrapper .block .rt span {
  font-size: clamp(12px, 1vw, 15px);
  color: #000;
  line-height: 1.45;
  text-decoration: underline;
  transition: all 0.5s;
}
.news-list .wrapper .block:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.news-list .wrapper .block:hover .lt .pic img {
  scale: 1.05;
}
.news-list .wrapper .block:hover .rt h4 {
  color: #176AB3;
}
.news-list .wrapper .block:hover .rt span {
  color: #176AB3;
}
.news-list .wrapper .top-news {
  margin-bottom: 5%;
}
.news-list .wrapper .top-news .block::after {
  position: absolute;
  display: block;
  content: "";
  font-size: clamp(12px, 1vw, 16px);
  width: 1em;
  height: 1em;
  background: url(../images/top-news.png) no-repeat;
  background-size: contain;
  top: 1.125em;
  right: 1.25em;
}
.news-detail {
  padding: 4.1667% 0;
}
.news-detail article {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  line-height: 1.45;
  min-height: 40vh;
  padding: 10px;
}
.article-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 6.666667%;
}
.article-tab p {
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  margin-bottom: 1em;
}
.article-tab p a {
  color: inherit;
  transition: all 0.5s;
}
.article-tab p a:hover {
  color: #176AB3;
}
.anchor-fixed {
  position: relative;
  top: -150px;
}
.contact-us {
  padding: 4.1667% 0;
}
.contact-us .online-msg {
  max-width: 1476px;
  margin: 0 auto 8.125%;
}
.contact-us .online-msg form h5 {
  font-size: 16px;
  color: #000;
  line-height: 1.45;
  margin-bottom: 3.387534%;
}
.contact-us .online-msg form input,
.contact-us .online-msg form textarea {
  background-color: transparent;
  outline: none;
  border: 1px solid #383838;
  border-radius: 4px;
  display: block;
  width: 100%;
  font-size: clamp(14px, 1.1vw, 18px);
  transition: all 0.5s;
}
.contact-us .online-msg form input::placeholder,
.contact-us .online-msg form textarea::placeholder {
  color: #808080;
}
.contact-us .online-msg form input:focus,
.contact-us .online-msg form textarea:focus {
  border-color: #176AB3;
}
.contact-us .online-msg form input {
  height: 2.611111em;
  padding: 0 0.5556em;
}
.contact-us .online-msg form textarea {
  height: 6.222222em;
  padding: 0.5556em;
}
.contact-us .online-msg form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.355%;
}
.contact-us .online-msg form .form-row .form-col {
  width: 48.373984%;
}
.contact-us .online-msg form button {
  outline: none;
  background-color: transparent;
  color: #808080;
  border: 1px solid #383838;
  border-radius: 4px;
  font-size: clamp(14px, 1.1vw, 18px);
  width: 5.555556em;
  height: 2.611111em;
  transition: all 0.5s;
  cursor: pointer;
}
.contact-us .online-msg form button:hover {
  color: #fff;
  background-color: #176AB3;
  border-color: transparent;
}
.contact-us .contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
}
.contact-us .contact-info .lt {
  width: 49.5%;
}
.contact-us .contact-info .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.contact-us .contact-info .lt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-us .contact-info .rt {
  width: 50.5%;
  padding: 2.6875% 3.3125%;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.9;
  color: #383838;
}
.inner-product .rel-prod ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
}
.inner-product .rel-prod ul li {
	border: 1px solid #000;
	padding: 0;
	transition: all .5s;
}
.inner-product .rel-prod ul li a {
	display: block;
	padding: 0.25em 1em;
	transition: all 0s;
}
.inner-product .rel-prod ul li:hover {
	color: #fff;
	background-color: #D43030;
	border-color: transparent;
}
.inner-product .rel-prod ul li:hover a {
	transform: translate(0, 0);
}