@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-Condensed: 'Roboto Condensed', 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';
  --exCondensed: 'Fira Sans Extra Condensed', '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);
  background-color: #fff;
}
body {
  overflow: visible;
}
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: 180px;
  width: 100%;
}
.mycontainer {
  max-width: 1440px;
  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, 0, 0, 0.15);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .header-top {
  background-color: #fff;
  margin-bottom: 10px;
}
header .header-top .mycontainer {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}
header .header-top .rt i {
  display: inline-block;
  color: #049D9A;
  width: 18px;
  height: 18px;
  font-size: 7px;
  text-align: center;
  line-height: 18px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 4px;
}
header .header-bt {
  background-color: rgba(14, 57, 151, 0.9);
}
header .header-bt .mycontainer {
  height: 60px;
  padding: 2px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 37.5%;
  text-align: center;
}
header .tel {
  width: 33.33333%;
  text-align: center;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.1vw, 18px);
  margin-bottom: 0;
  gap: 3%;
}
header .lv1 > li {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.5s;
}
header .lv1 > li i {
  font-size: 8px;
  margin-left: 4px;
}
header .lv1 > li a {
  display: block;
  color: inherit;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
header .lv1 > li:last-child::before {
  display: none;
}
header .lv1 > li:hover {
  color: #0E3997;
  background-color: #fff;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 > .active {
  font-weight: 700;
  color: #0E3997;
  background-color: #fff;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10%);
  transition: all 0.5s;
  background-color: #fff;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 15px;
  min-width: 130px;
  font-size: 16px;
  color: #3D3D3D;
  font-weight: 500;
  transition: all 0.5s;
}
header .lv2 > li a {
  color: inherit;
}
header .lv2 > li:hover {
  color: #049D9A;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
header nav {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.4868421% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2%;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #fff;
  margin: 5px;
  color: #1f61be;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination span {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #1f61be;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #1f61be;
  border-color: transparent;
}
.box .total {
  color: #666;
  margin: 5px 7px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.box .go-link {
  margin: 5px 19px;
  font-size: 16px;
  color: #666;
}
.box .go-link form {
  display: flex;
  align-items: center;
}
.box .go-link a {
  line-height: 1;
  display: inherit;
}
.box .go-link button {
  cursor: pointer;
  font-size: 16px;
  color: #666;
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.box .go-link button:hover {
  text-decoration: underline;
}
.box .go-link input {
  width: 56px;
  height: 40px;
  text-align: center;
  outline: none;
  border-radius: 4px;
  border: 2px solid #f0f4f8;
  font-family: var(--Din);
  margin: 0 11px;
}
.box .go-link input[type='number']::-webkit-outer-spin-button,
.box .go-link input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 4s;
}
.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 {
  transform: scale(1);
}
.index-banner .mycontainer {
  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 {
  position: absolute;
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(10px, 1.1vw, 18px);
  width: 1em;
  height: 1em;
  line-height: 1;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 0.6111em;
  opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0577FA;
}
.index-banner .swiper-page {
  position: absolute;
  bottom: 2%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(16px, 1.2vw, 20px);
  border-radius: 50%;
  background-color: #fff;
  width: 2.9em;
  height: 2.9em;
  outline: none;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  display: none;
}
.index-banner .swiper-button-prev img,
.index-banner .swiper-button-next img {
  height: 1em;
}
.index-banner .swiper-button-prev {
  left: 2.2395833%;
}
.index-banner .swiper-button-next {
  right: 2.2395833%;
}
.index-title {
  text-align: center;
  margin-bottom: 3%;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #0E3997;
  font-weight: 700;
  position: relative;
  line-height: 1.25;
  margin-bottom: 0.25em;
}
.index-title h3::before,
.index-title h3::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin: 0 1.25em;
  width: 1em;
  height: 3px;
  background-color: #0E3997;
}
.index-title h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #040405;
  line-height: 1.6667;
  text-transform: uppercase;
  color: #999;
}
.index-prod {
  margin: 2.08333% 0 3.64583%;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 10px;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .title h4 {
  font-size: clamp(14px, 1.1vw, 18px);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6667;
  margin-bottom: 0.5556em;
}
.index-prod .swiper .title a {
  display: block;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  color: #999;
  line-height: 1.75;
  border: 1px solid rgba(153, 153, 153, 0.3);
  margin: 0 auto;
  width: 10em;
  border-radius: 4px;
  transition: all 0.5s;
}
.index-prod .swiper .swiper-slide {
  padding: 10px;
  border: 1px solid rgba(153, 153, 153, 0.3);
  transition: all 0.5s;
}
.index-prod .swiper .swiper-slide:hover {
  border-color: #0E3997;
}
.index-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .swiper .swiper-slide:hover .title h4 {
  color: #0E3997;
}
.index-prod .swiper .swiper-slide:hover .title a {
  color: #0E3997;
  border-color: #0E3997;
}
.index-more {
  text-align: center;
  margin-top: 2.5%;
}
.index-more a {
  display: inline-block;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #999;
  width: 8.33333em;
  line-height: 2;
  border: 1px solid #999;
  border-radius: 1.25em;
  transition: all 0.5s;
}
.index-more a:hover {
  border-color: #0E3997;
  color: #0E3997;
}
.index-serv {
  margin-bottom: 4.166667%;
}
.index-serv .index-title {
  margin-bottom: 2%;
}
.index-serv .wrapper {
  background: -webkit-linear-gradient(top, #0E3997 80%, #fff 80%);
  padding: 6.25% 0 0;
}
.index-serv .wrapper .mycontainer {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  padding: 3.125% 3.38541667%;
}
.index-serv .wrapper .mycontainer .block {
  text-align: center;
  font-size: clamp(16px, 1.25vw, 24px);
  width: 14.9659864%;
  padding: 3.0612245% 10px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.5s;
}
.index-serv .wrapper .mycontainer .block .icon {
  width: 5em;
  height: 5em;
  margin: 0 auto 1.875em;
}
.index-serv .wrapper .mycontainer .block .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.index-serv .wrapper .mycontainer .block .title h4 {
  line-height: 1.25;
  color: #333;
  margin-bottom: 0.4166667em;
}
.index-serv .wrapper .mycontainer .block .title h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #999;
  line-height: 1.42857;
}
.index-serv .wrapper .mycontainer .block:hover {
  background-color: #F2F2F2;
  border: 1px solid #ddd;
}
.index-serv .wrapper .mycontainer .block:hover .icon img {
  animation: rubberBand 1s;
}
.serv-content .index-title {
  margin-bottom: 2%;
}
.serv-content .wrapper .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 6.25% 10% 6.25% 6.25%;
  background: url(../images/serv-bg.png) no-repeat;
  background-size: 100% 100%;
}
.serv-content .wrapper .block .lt {
  width: 63.4920635%;
}
.serv-content .wrapper .block .lt .title {
  display: flex;
  align-items: flex-end;
}
.serv-content .wrapper .block .lt .title .num {
  font-size: clamp(20px, 5.208333vw, 100px);
  font-weight: 700;
  color: #0E3997;
  line-height: 1;
  margin-right: 0.1em;
}
.serv-content .wrapper .block .lt .title h3 {
  font-size: clamp(16px, 1.875vw, 36px);
  font-weight: 700;
  line-height: 1.6667;
  flex: 1;
}
.serv-content .wrapper .block .lt .brief {
  margin-top: 0.91667em;
  font-size: clamp(14px, 1.25vw, 22px);
  color: #333;
  line-height: 2.0833;
}
.serv-content .wrapper .block .rt {
  width: 28.5714286%;
}
.serv-content .wrapper .block .rt .pic {
  width: 100%;
}
.serv-content .wrapper .block .rt .pic img {
  display: block;
  width: 100%;
}
.serv-content .wrapper .block:nth-child(even) {
  background: none;
  flex-direction: row-reverse;
}
.serv-content .wrapper .block:nth-child(even) .lt .title .num {
  color: #9DC914;
}
.serv-content .wrapper .block:hover .rt .pic img {
  animation: swing 1s;
}
.index-adv {
  background-color: #F2F2F2;
  padding: 2.083333% 0;
}
.index-adv .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-adv .wrapper .block {
  width: 49.375%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 1.25%;
}
.index-adv .wrapper .block .lt {
  width: 36.3636364%;
}
.index-adv .wrapper .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.index-adv .wrapper .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-adv .wrapper .block .rt {
  width: 62.33766234%;
  padding: 1.2987% 5.1948052%;
}
.index-adv .wrapper .block .rt .title {
  font-size: clamp(16px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  line-height: 1.25;
  border-left: 0.166667em solid #0E3997;
  padding-left: 0.833333em;
  margin-bottom: 0.833333em;
}
.index-adv .wrapper .block .rt .brief {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #666;
  line-height: 1.818182;
}
.index-adv .wrapper .block .rt .more {
  display: inline-block;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #0E3997;
  border: 1px solid #0E3997;
  border-radius: 0.55556em;
  line-height: 2.11111111;
  width: 8.888889em;
  text-align: center;
  margin-top: 1.111111em;
  transition: all 0.5s;
}
.index-adv .wrapper .block .rt .more:hover {
  background-color: #0E3997;
  color: #fff;
}
.index-adv .wrapper .block:hover .lt .pic img {
  scale: 1.05;
}
.index-adv .index-more {
  margin-top: 1.25%;
}
.index-about {
  margin: 2.083333% 0;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-about .wrapper .block {
  width: 31.25%;
  padding: 10px;
  border: 1px solid rgba(153, 153, 153, 0.3);
  display: flex;
  flex-direction: column;
}
.index-about .wrapper .block .text {
  margin-bottom: 10px;
  padding: 10px 8.3682%;
  font-size: clamp(16px, 1.25vw, 24px);
  text-align: center;
}
.index-about .wrapper .block .text .icon {
  position: relative;
  display: inline-block;
  width: 5em;
  height: 5em;
  z-index: 1;
}
.index-about .wrapper .block .text .icon::after {
  display: block;
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(14, 57, 151, 0.2);
  border-radius: 50%;
}
.index-about .wrapper .block .text h4 {
  color: #333;
  line-height: 1.25;
  margin: 0.4166667em 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-about .wrapper .block .text h5 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #666;
  line-height: 1.36364;
  height: 2.72728em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-about .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 52.08333%;
}
.index-about .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .wrapper .block:hover .text .icon::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
  transition: all 1s;
}
.index-about .wrapper .block:hover .pic img {
  scale: 1.05;
}
.index-about .wrapper .block:nth-child(even) {
  flex-direction: column-reverse;
}
.online-msg {
  background-color: #F2F2F2;
  padding: 2.083333% 0 2.9166667%;
}
.online-msg .wrapper {
  background-color: #fff;
  padding: 10px;
  border: 1px solid rgba(153, 153, 153, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.online-msg .wrapper .lt {
  width: 49.6835443%;
}
.online-msg .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.online-msg .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-msg .wrapper .rt {
  width: 49.6835443%;
  padding: 2.53164557%;
}
.online-msg .wrapper .rt h3 {
  font-size: clamp(16px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  margin-bottom: 0.6667em;
}
.online-msg .wrapper .rt h5 {
  font-size: clamp(14px, 1vw, 16px);
  color: #666;
  line-height: 1.875;
  margin-bottom: 1.25em;
}
.online-msg .wrapper .rt h5 span {
  color: #f00;
}
.online-msg .wrapper .rt form .form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.4204545%;
}
.online-msg .wrapper .rt form label {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  line-height: 1.6667;
}
.online-msg .wrapper .rt form input,
.online-msg .wrapper .rt form textarea {
  flex: 1;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #333;
  outline: none;
  background-color: #F2F2F2;
  border-radius: 4px;
  padding: 5px;
  height: 1.875em;
  transition: all 0.5s;
}
.online-msg .wrapper .rt form input:focus,
.online-msg .wrapper .rt form textarea:focus {
  background-color: #e5e5e5;
}
.online-msg .wrapper .rt form textarea {
  height: 5.125em;
}
.online-msg .wrapper .rt form button {
  width: 100%;
  border-radius: 4px;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  cursor: pointer;
  background-color: #0E3997;
  outline: none;
  transition: all 0.5s;
  height: 2.0833333em;
  margin-top: 0.4166667em;
}
.online-msg .wrapper .rt form button:hover {
  filter: brightness(1.3);
}
footer {
  background-color: #0E3997;
  padding: 3.125% 0 1.5625%;
}
footer nav {
  display: flex;
  justify-content: center;
  font-size: clamp(14px, 1.1vw, 18px);
  margin-bottom: 1.875%;
}
footer nav a {
  color: #fff;
  line-height: 1.6667;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline !important;
}
footer nav em {
  width: 1px;
  background-color: #fff;
  margin: 0 1.5em;
}
footer .copyright {
  color: #fff;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.875;
  text-align: center;
}
footer .copyright a {
  color: inherit;
}
footer .copyright a:hover {
  text-decoration: underline !important;
}
.back-top {
	position: fixed;
	right: 1%;
	bottom: 5%;
	background-color: #0E3997;
	width: 2em;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	cursor: pointer;
	font-size: clamp(12px, 1.2vw, 20px);
	border-radius: 4px;
	transition: all .5s;
	animation: fadeOutRight .5s;
	visibility: hidden;
	&:hover {
		filter: sepia(1);
	}
}
.back-top-show {
	animation: fadeInLeft .5s;
	visibility: visible;
}
