@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;
}
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: 160px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  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;
}
header .header-top {
  background-color: #009a44;
}
header .header-top .mycontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  font-size: 13px;
  color: #fff;
}
header .header-top .mycontainer a {
  color: inherit;
}
header .header-top .mycontainer a:hover {
  text-decoration: underline !important;
}
header .header-mid .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 108px;
}
header .header-mid .logo {
  width: 58.33333333%;
}
header .header-mid .logo img {
  transition: all 0.5s;
}
header .header-mid .info {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 1.25vw, 24px);
  color: #1c448a;
}
header .header-mid .info img {
  margin-right: 13px;
}
header .header-mid .info h4 {
  font-weight: 700;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.09375vw, 21px);
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
header .lv1 > li a {
  display: block;
  color: #fff;
  transition: all 0.5s;
  text-transform: uppercase;
  line-height: 52px;
  padding: 0 1em;
  text-align: center;
  width: 100%;
}
header .lv1 > li::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1em;
  background-color: #b3b4b6;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
header .lv1 > li:last-child::before {
  display: none;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  color: #fff;
  margin-right: 5%;
}
header .lv1 .lang img {
  margin-right: 9px;
}
header .lv1 .lang a {
  padding: 0;
  background-color: transparent !important;
}
header .lv1 .lang a:hover {
  text-decoration: underline !important;
}
header .lv1 .lang .on {
  color: #fff;
  font-weight: 700;
}
header .lv1 > .active::after {
  width: 100%;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 50%);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 15px;
  min-width: 130px;
}
header .lv2 > li a {
  font-size: 16px;
  color: #fff;
}
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 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0059a6;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.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-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 .banner-img {
  transform: scale(1);
}
.index-banner .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 5s;
}
.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: relative;
  bottom: auto;
  left: auto;
  width: auto;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  line-height: 1;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 3px;
}
.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-title {
  text-align: center;
  margin-bottom: 2%;
}
.index-title h2 {
  font-size: clamp(20px, 2.29166667vw, 44px);
  font-weight: 700;
  color: #333;
}
.index-title h2 span {
  color: #003f97;
}
.index-title h3 {
  font-size: clamp(20px, 1.97916667vw, 38px);
  color: #333;
  font-weight: 700;
  position: relative;
}
.index-title h3 span {
  color: #08873b;
}
.index-title em {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  margin: 2px auto 11px;
}
.index-title em::after {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #07873c;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.index-title h4 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
.index-title h4::before,
.index-title h4::after {
  display: inline-block;
  content: "";
  position: relative;
  width: 5em;
  height: 0.9333333em;
  background: url(../images/index-title-icon.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 0.6em;
}
.index-title h4::after {
  transform: rotateY(180deg);
}
.index-title h5 {
  font-size: clamp(12px, 1.04166667vw, 20px);
  color: #777;
  text-transform: uppercase;
  font-family: var(--Noto-Serif-SC);
  line-height: 1.4;
}
.index-title i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.714286%;
}
.index-title i img {
  margin: 0 8px;
}
.index-title i::before,
.index-title i::after {
  content: "";
  display: block;
  width: 5.8333333vw;
  height: 3px;
  background-color: #d5d5d5;
}
.search-banner {
  background-color: #f6f6f6;
}
.search-banner .mycontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
  padding: 0.5em 0;
  gap: 1em;
}
.search-banner .mycontainer .lt {
  border-right: 1px solid #e9e9e9;
  padding-right: 13px;
}
.search-banner .mycontainer .lt h4 {
  font-size: clamp(16px, 1.3020833vw, 25px);
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin-bottom: 0.2em;
}
.search-banner .mycontainer .lt h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #fff;
  background-color: #1c448a;
  padding: 0 0.5em;
  line-height: 1.857143;
}
.search-banner .mycontainer .mid {
  width: 40.333333%;
  border-right: 1px solid #e9e9e9;
  padding-right: 13px;
}
.search-banner .mycontainer .mid form {
  display: flex;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.search-banner .mycontainer .mid form input {
  background-color: transparent;
  outline: none;
  font-size: 12px;
  flex: 1;
  height: 35px;
}
.search-banner .mycontainer .mid form button {
  cursor: pointer;
  outline: none;
  background-color: transparent;
}
.search-banner .mycontainer .mid span {
  font-size: clamp(14px, 1vw, 17px);
  color: #222;
}
.search-banner .mycontainer .mid span a {
  color: inherit;
}
.search-banner .mycontainer .mid span a:hover {
  text-decoration: underline !important;
}
.search-banner .mycontainer .rt h6 {
  font-size: 12px;
  color: #525252;
}
.search-banner .mycontainer .rt h3 {
  font-size: clamp(18px, 1.40625vw, 27px);
  font-weight: 700;
  line-height: 1.6;
  color: #1c448a;
}
.index-prod {
  margin: 30px 0;
}
.index-prod .mycontainer {
  max-width: 1536px;
}
.index-prod .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-prod .wrapper > div {
  width: 24.11995%;
  margin-right: 18px;
}
.index-prod .wrapper .block {
  width: 100%;
  background-color: #eee;
  padding: 14px 10px 14px 12px;
  margin-bottom: 25px;
}
.index-prod .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
  height: 0;
  padding-bottom: 78.448276%;
}
.index-prod .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .wrapper .block .title {
  font-size: clamp(14px, 1.0416667vw, 20px);
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2em;
}
.index-prod .wrapper .block .title a {
  color: inherit;
}
.index-prod .wrapper .block .title a::after {
  display: block;
  width: 1em;
  height: 1em;
  font-size: 1.6em;
  line-height: 0.87;
  border-radius: 50%;
  content: "+";
  color: #fff;
  background-color: #377cbf;
  margin: 0 auto;
  transition: all 0.5s;
}
.index-prod .wrapper .block:hover .pic img {
  scale: 1.05;
}
.index-prod .wrapper .block:hover .title a::after {
  transform: rotate(360deg);
}
.index-slogan img {
  display: block;
  width: 100%;
}
.index-about {
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  padding: 28px 0 40px;
}
.index-about .mycontainer {
  max-width: 1400px;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 91.42857143%;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  padding: 2.265625% 3.4375% 3.046875%;
  margin: 0 auto;
}
.index-about .wrapper .lt {
  width: 49.91611%;
}
.index-about .wrapper .lt .pic {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-about .wrapper .lt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.index-about .wrapper .lt .pic:hover img {
  scale: 1.05;
}
.index-about .wrapper .rt {
  width: 47.39933%;
  border-left: 1px solid #e9e9e9;
  padding-left: 3.3557047%;
}
.index-about .wrapper .rt .title h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}
.index-about .wrapper .rt .title h5 {
  text-transform: uppercase;
  font-size: 11px;
  color: #888;
}
.index-about .wrapper .rt .title em {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #1c448a;
  margin-top: 12px;
}
.index-about .wrapper .rt .brief {
  font-size: 14px;
  color: #252525;
  line-height: 3;
  text-indent: 2em;
}
.index-about .wrapper .rt .more {
  display: block;
  font-size: 14px;
  color: #fff;
  background-color: #1c448a;
  transition: all 0.5s;
  text-align: center;
  width: 10em;
  line-height: 3.42857143;
  margin-top: 4.8077%;
}
.index-about .wrapper .rt .more:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(120%);
}
.index-about .partner {
  margin-top: 3.7857143%;
}
.index-about .partner .swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.index-about .partner .swiper .swiper-slide {
  width: 12.64286%;
}
.index-about .partner .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  height: 0;
  padding-bottom: 38.172%;
}
.index-about .partner .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-news {
  margin: 2.1875% 0 3.125%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 40.5%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index-news .wrapper .lt .block {
  display: flex;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  padding: 2.88066% 0;
  border-bottom: 1px solid #e7e7e7;
}
.index-news .wrapper .lt .block:first-child {
  border-top: 1px solid #e7e7e7;
}
.index-news .wrapper .lt .block::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  width: 102.88%;
  height: 100%;
  background-color: #377cbf;
  transition: all 0.5s;
  opacity: 0;
}
.index-news .wrapper .lt .block .num {
  font-size: clamp(20px, 2.083333vw, 40px);
  font-family: Arial;
  color: #979797;
  font-weight: 700;
  border-right: 1px solid #bdbdbd;
  transition: all 0.5s;
  line-height: 1.75;
  padding-right: 0.35em;
  margin: 0 0.45em 0 0.25em;
}
.index-news .wrapper .lt .block .title {
  flex: 1;
}
.index-news .wrapper .lt .block .title h4 {
  font-size: 15px;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 700;
}
.index-news .wrapper .lt .block .title h4 a {
  color: inherit;
}
.index-news .wrapper .lt .block .title p {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .lt .block .title p a {
  color: inherit;
}
.index-news .wrapper .lt .show {
  border-color: transparent;
  animation: fadeInRight 1s;
}
.index-news .wrapper .lt .show .num {
  border-right-color: #fff;
  color: #fff;
}
.index-news .wrapper .lt .show .title h4 {
  color: #fff;
}
.index-news .wrapper .lt .show .title p {
  color: #fff;
}
.index-news .wrapper .lt .show::after {
  opacity: 1;
}
.index-news .wrapper .rt {
  width: 59.5%;
}
.index-news .wrapper .rt .pic {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-news .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-news .wrapper .rt .show {
  display: block;
  animation: fadeInLeft 1s;
}
footer .footer-top {
  background: url(../images/footer-top-bg.jpg);
  background-size: cover;
  border-top: 1px solid #e1e8cf;
  padding: 3.5416667% 0 2%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top h4 {
  font-size: clamp(18px, 1.04166667vw, 20px);
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(77, 163, 26, 0.16);
  margin-bottom: 1.05em;
  padding-bottom: 0.6em;
}
footer .footer-top h5 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
footer .footer-top p {
  font-size: 16px;
  color: #fff;
}
footer .footer-top h6 {
  font-size: 14px;
  color: #fff;
}
footer .footer-top ul li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0.857143em;
}
footer .footer-top ul li a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-top ul li a:hover {
  opacity: 0.5;
}
footer .footer-top .info {
  width: 24.666667%;
}
footer .footer-top .info h5,
footer .footer-top .info p {
  margin-bottom: 0.5em;
}
footer .footer-top .ewm {
  width: 18.666667%;
  text-align: center;
}
footer .footer-top nav {
  width: 21.083333%;
}
footer .footer-top .msg {
  width: 25%;
}
footer .footer-top .msg form input,
footer .footer-top .msg form textarea {
  outline: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0 1em;
  height: 42px;
  margin-bottom: 3px;
  color: #fff;
  transition: all 0.5s;
}
footer .footer-top .msg form input::placeholder,
footer .footer-top .msg form textarea::placeholder {
  color: #fff;
}
footer .footer-top .msg form input:focus,
footer .footer-top .msg form textarea:focus {
  background-color: rgba(0, 0, 0, 0.5);
}
footer .footer-top .msg form textarea {
  padding: 0.5em 1em;
  height: 57px;
}
footer .footer-top .msg form button {
  width: 100%;
  outline: none;
  transition: all 0.5s;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
  font-weight: 700;
  background-color: #1c448a;
  cursor: pointer;
  height: 2.33333em;
  margin-top: 6px;
}
footer .footer-top .msg form button:hover {
  filter: brightness(130%);
}
footer .footer-bt {
  text-align: center;
  line-height: 1.8;
  color: #fff;
  background-color: #1c448a;
  font-size: 14px;
  padding: 0.78125% 0;
}
footer .footer-bt a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt a:hover {
  opacity: 0.7;
}
