@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) !important;
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}
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: 100px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  width: 80%;
  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: rgba(255, 255, 255, 0.5);
}
header .mycontainer {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 18%;
  text-align: left;
	margin-right: 3%;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(14px, 1.1vw, 18px);
  margin-bottom: 0;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #383838;
  font-weight: 500;
  transition: all 0.5s;
}
header .lv1 > li a {
  color: inherit;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header .lv1 > li:hover {
  color: #176AB3;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .search-icon {
  flex: unset;
  flex: none;
  padding: 0;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
header .lv1 .search-icon img {
  transition: all 0.5s;
}
header .lv1 .search-icon::before {
  display: none;
}
header .lv1 .search-on {
  background-color: #176AB3;
  color: #fff !important;
}
header .lv1 .search-on img {
  filter: contrast(0) brightness(200%);
}
header .lv1 > .active {
  font-weight: 700;
  color: #176AB3;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10%);
  transition: all 0.5s;
  background-color: rgba(51, 51, 51, 0.95);
  visibility: hidden;
  opacity: 0;
  padding: 12px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  min-width: 130px;
  font-size: 16px;
  padding: 0 15px;
  color: #fff;
  transition: all 0.5s;
}
header .lv2 > li a {
  color: inherit;
}
header .lv2 > li:hover {
  background-color: #176AB3;
}
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;
}
header .search-form {
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #ccc;
  padding: 1.5% 0;
  display: none;
}
header .search-form form {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
}
header .search-form form input {
  flex: 1;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  padding: 0 1em;
  height: 2.5em;
  outline: none;
  border: 1px solid #ccc;
  font-weight: 300;
  transition: all 0.5s;
}
header .search-form form input:focus {
  border-color: #176AB3;
}
header .search-form form button {
  font-size: clamp(14px, 1.1vw, 18px);
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  background-color: #ccc;
  transition: all 0.5s;
  color: #333;
  outline: none;
}
header .search-form form button:hover {
  color: #fff;
  background-color: #176AB3;
}
header:hover {
  background-color: #fff;
}
.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: #176AB3;
  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: #176AB3;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #176AB3;
  border-color: transparent;
}
.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;
  width: auto;
  display: inline-block;
  bottom: 10%;
  left: 20.9375%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  font-size: clamp(10px, 1.2vw, 20px);
  width: 1em;
  height: 1em;
  line-height: 1;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 1.3em;
  opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
}
*.index-banner .swiper-pagination .swiper-pagination-bullet-active::after {
  width: 1.5em;
  height: 1.5em;
  opacity: 1;
}
.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, 2.5vw, 48px);
  width: 1em;
  height: 1em;
  outline: none;
  color: #fff;
  font-weight: 400;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  font-size: inherit;
  font-weight: inherit;
}
.index-banner .swiper-button-prev {
  left: 0.83333%;
}
.index-banner .swiper-button-next {
  right: 0.83333%;
}
.index-slogan {
  padding: 1.3020833% 0;
  background-color: #fff;
}
.index-slogan .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.index-slogan .mycontainer .lt {
  line-height: 1.45;
}
.index-slogan .mycontainer .lt h4 {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #000;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.index-slogan .mycontainer .lt h4 span {
  color: #159956;
}
.index-slogan .mycontainer .lt h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #808080;
}
.index-slogan .mycontainer .mid {
  display: flex;
  justify-content: center;
  gap: 0 5.7142857em;
  font-size: clamp(12px, 1vw, 14px);
}
.index-slogan .mycontainer .mid .block {
  text-align: center;
}
.index-slogan .mycontainer .mid .block img {
  width: 3.142857em;
}
.index-slogan .mycontainer .mid .block h5 {
  color: #808080;
  line-height: 1.45;
  margin-top: 0.42857143em;
}
.index-slogan .mycontainer .rt {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 1vw, 14px);
}
.index-slogan .mycontainer .rt img {
  width: 2.42857143em;
  margin-right: 0.7142857em;
}
.index-slogan .mycontainer .rt .text {
  line-height: 1.45;
}
.index-slogan .mycontainer .rt .text h5 {
  color: #808080;
  font-weight: 500;
}
.index-slogan .mycontainer .rt .text h4 {
  font-size: clamp(16px, 1.1vw, 18px);
  color: #176AB3;
  font-weight: 700;
}
.index-title {
  text-align: center;
  margin-bottom: 3%;
}
.index-title h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #000;
  font-weight: 700;
  position: relative;
  line-height: 1.45;
  margin-bottom: 0.3333em;
}
.index-title h3 span {
  color: #159956;
}
.index-title h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #000;
  font-weight: 400;
  line-height: 1.45;
  text-transform: uppercase;
}
.index-more {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #159956 !important;
  line-height: 1.5;
  background-color: transparent;
  padding: 0.555556em 1.111111em;
  border: 1px solid #808080;
  border-radius: 3em;
  margin-top: 2.5%;
  transition: all 0.5s;
}
.index-more::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background-color: #159956;
}
.index-more i {
  margin-left: 2em;
}
.index-more:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.index-more:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: all 0.5s;
}
.index-prod {
  padding: 4.6875% 0 4.16667%;
  background-color: #f5f5f5;
}
.index-prod .prodCateSwiper .swiper-slide {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-right: 0;
  font-size: clamp(14px, 1.2vw, 22px);
  padding: 1.409091em 0 0 1.13636364em;
  transition: background 0.5s;
}
.index-prod .prodCateSwiper .swiper-slide:last-child {
  border-right: 1px solid #e5e5e5;
}
.index-prod .prodCateSwiper .swiper-slide h4 {
  color: #000;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.index-prod .prodCateSwiper .swiper-slide em {
  display: block;
  width: 1em;
  height: 1px;
  background-color: #000;
  margin: 0.5454545em 0 0.45454545em;
  transition: all 0.5s;
}
.index-prod .prodCateSwiper .swiper-slide h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #808080;
  line-height: 1.45;
  margin-bottom: 1.31818182em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.index-prod .prodCateSwiper .swiper-slide .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.index-prod .prodCateSwiper .swiper-slide .wrapper span {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  line-height: 1.45;
  padding: 0.416667em 1.25em;
  margin-right: 0.8333em;
  border: 1px solid #000;
  border-radius: 3em;
  text-transform: uppercase;
  margin-bottom: 2.5em;
  transition: all 0.5s;
}
.index-prod .prodCateSwiper .swiper-slide .wrapper .picture {
  flex: 1;
}
.index-prod .prodCateSwiper .swiper-slide .wrapper .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 91.4893617%;
}
.index-prod .prodCateSwiper .swiper-slide .wrapper .picture .pic img {
  position: absolute;
  display: block;
  width: 90%;
  height: 90%;
  object-fit: scale-down;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.index-prod .prodCateSwiper .swiper-slide:hover {
  background-color: #0B4F8A;
}
.index-prod .prodCateSwiper .swiper-slide:hover h4,
.index-prod .prodCateSwiper .swiper-slide:hover h5 {
  color: #fff;
}
.index-prod .prodCateSwiper .swiper-slide:hover em {
  background-color: #fff;
}
.index-prod .prodCateSwiper .swiper-slide:hover .wrapper span {
  color: #fff;
  border-color: #fff;
}
.index-prod .prodCateSwiper .swiper-slide:hover .wrapper .pic img {
  transform: translate(-50%, -50%) scale(0.95);
  filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.3));
  transition-delay: 0.2s;
}
.index-prod .more {
  text-align: center;
}
.index-prod .material-swiper {
  position: relative;
  margin-top: 6.6667%;
}
.index-prod .material-swiper .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 85.7142857%;
}
.index-prod .material-swiper .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .material-swiper .swiper .pic .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em;
  line-height: 2;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}
.index-prod .material-swiper .swiper .pic:hover img {
  scale: 1.05;
}
.index-prod .material-swiper .swiper .pic:hover .title {
  background-color: #fff;
  color: #159956;
}
.index-prod .material-swiper .swiper-button-prev,
.index-prod .material-swiper .swiper-button-next {
  font-size: clamp(14px, 1.875vw, 36px);
  color: #a6a6a6;
  transition: all 0.5s;
}
.index-prod .material-swiper .swiper-button-prev:hover,
.index-prod .material-swiper .swiper-button-next:hover {
  color: #176AB3;
}
.index-prod .material-swiper .swiper-button-prev::after,
.index-prod .material-swiper .swiper-button-next::after {
  font-size: inherit;
}
.index-prod .material-swiper .swiper-button-prev {
  left: -5%;
}
.index-prod .material-swiper .swiper-button-next {
  right: -5%;
}
.index-about {
  margin: 3.125% 0 2.08333%;
}
.index-about .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-about .mycontainer .lt {
  width: 49.3333333%;
  font-size: clamp(14px, 1.1vw, 18px);
}
.index-about .mycontainer .lt .index-title {
  text-align: left;
  margin-left: 2em;
}
.index-about .mycontainer .lt .brief {
  color: #000;
  line-height: 2;
  text-indent: 2em;
  padding: 0.5556em;
}
.index-about .mycontainer .lt .index-more {
  margin-top: 9.29054%;
  color: #176AB3 !important;
}
.index-about .mycontainer .lt .index-more::after {
  background-color: #176AB3;
}
.index-about .mycontainer .rt {
  width: 47.1666667%;
}
.index-about .mycontainer .rt .title {
  text-align: center;
  font-size: clamp(20px, 2.29166667vw, 44px);
  color: rgba(166, 166, 166, 0.37);
  line-height: 1.45;
  font-weight: 900;
  margin-bottom: 0.227273em;
}
.index-about .mycontainer .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 68.0212%;
}
.index-about .mycontainer .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .mycontainer .rt .data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7.95053%;
}
.index-about .mycontainer .rt .data i {
  font-size: clamp(30px, 3.6458333vw, 70px);
  width: 1px;
  height: 1em;
  background-color: #808080;
}
.index-about .mycontainer .rt .data .block {
  min-width: 20%;
}
.index-about .mycontainer .rt .data .block h3 {
  font-size: clamp(18px, 2.08333vw, 40px);
  color: #383838;
  line-height: 1.45;
  font-weight: 900;
  margin-bottom: 0.3em;
}
.index-about .mycontainer .rt .data .block h3 em {
  font-size: clamp(12px, 1.2vw, 20px);
  font-weight: 900;
}
.index-about .mycontainer .rt .data .block h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #383838;
  line-height: 1.45;
  font-weight: 500;
}
.index-advantage {
  padding: 4.6875% 0 10.4166667%;
  background-color: #f5f5f5;
}
.index-advantage .index-title {
  margin-bottom: 15%;
}
.index-advantage .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5.6em 30%;
  font-size: clamp(14px, 1.2vw, 20px);
}
.index-advantage .wrapper .block {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 30%;
}
.index-advantage .wrapper .block .text {
  text-align: right;
  flex: 1;
}
.index-advantage .wrapper .block .text h3 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.25em;
}
.index-advantage .wrapper .block .text h5 {
  font-size: 12px;
  color: #808080;
  line-height: 1.5;
}
.index-advantage .wrapper .block em {
  display: block;
  font-size: clamp(10px, 1.2vw, 20px);
  width: 0.8em;
  height: 0.8em;
  background-color: #383838;
  border-radius: 50%;
  box-shadow: 0 0 0 0.5em rgba(56, 56, 56, 0.19);
  transition: all 0.5s;
  margin: 0 0 0 1.1em;
}
.index-advantage .wrapper .block:nth-child(even) {
  flex-direction: row-reverse;
}
.index-advantage .wrapper .block:nth-child(even) .text {
  text-align: left;
}
.index-advantage .wrapper .block:nth-child(even) em {
  margin: 0 1.1em 0 0;
}
.index-advantage .wrapper .block:nth-child(1) {
  transform: translate(-11%, 0);
}
.index-advantage .wrapper .block:nth-child(2) {
  transform: translate(11%, 0);
}
.index-advantage .wrapper .block:nth-child(3) {
  transform: translate(-23%, 0);
}
.index-advantage .wrapper .block:nth-child(4) {
  transform: translate(23%, 0);
}
.index-advantage .wrapper .block:nth-child(5) {
  transform: translate(-11%, 0);
}
.index-advantage .wrapper .block:nth-child(6) {
  transform: translate(11%, 0);
}
.index-advantage .wrapper .block:hover em {
  background-color: #159956;
  box-shadow: 0 0 0 0.5em rgba(21, 153, 86, 0.19);
}
.index-advantage .wrapper .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: 55.16666667%;
}
.index-advantage .wrapper .bg img {
  display: block;
  width: 100%;
}
.index-news {
  margin: 2.0833% 0 2.8125%;
}
.index-news .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 52.63157895%;
}
.index-news .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .swiper .title h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #383838;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0.8em 0 0.75em;
}
.index-news .swiper .title p {
  font-size: clamp(12px, 1.1vw, 18px);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.35em;
  color: #808080;
  margin-bottom: 0.5555em;
}
.index-news .swiper .title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #0B4F8A;
  line-height: 1.45;
}
.index-news .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-news .swiper .swiper-slide:hover .title h4 {
  color: #0B4F8A;
}
.index-contact {
  padding: 3.6458333% 0 2.60416667%;
  background: url(../images/contact-bg.jpg) no-repeat;
  background-size: cover;
}
.index-contact .process {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.66667em;
}
.index-contact .process .block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #000;
  line-height: 1.45;
  width: 10.11111111em;
  height: 10.11111111em;
  background: url(../images/process-bg1.png) no-repeat;
  background-size: contain;
  background-position: center center;
}
.index-contact .process .block img {
  width: 2.77777778em;
  height: 2.77777778em;
  object-fit: scale-down;
}
.index-contact .process .block h4 {
  margin-top: 0.4em;
}
.index-contact .process .block:nth-child(even) {
  background-image: url(../images/process-bg2.png);
  color: #fff;
}
.index-contact .process .block:hover img {
  animation: swing 1s;
}
.index-contact .process .line {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dotted #159956;
}
.index-contact .process .line .fa-circle {
  font-size: 8px;
  color: #159956;
}
.index-contact .process .line .fa-caret-right {
  font-size: 24px;
  color: #159956;
}
.index-contact .msg {
  display: flex;
  margin-top: 4%;
}
.index-contact .msg .lt {
  width: 38.66667%;
  background-color: #fff;
  padding: 2.9166667%;
}
.index-contact .msg .lt .title {
  text-align: right;
  margin-bottom: 14.974619%;
}
.index-contact .msg .lt .title h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  color: #000;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.25em;
}
.index-contact .msg .lt .title h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #808080;
  line-height: 1.45;
}
.index-contact .msg .lt .tel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
.index-contact .msg .lt .tel h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #808080;
  line-height: 1.45;
}
.index-contact .msg .lt .tel h4 {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #159956;
  font-weight: 700;
  line-height: 1.5;
}
.index-contact .msg .lt .tel img {
  font-size: clamp(14px, 1.2vw, 20px);
  width: 2.05em;
  height: 2.05em;
  margin-left: 0.7em;
}
.index-contact .msg .rt {
  width: 61.33333%;
  background-color: #f5f5f5;
  padding: 2% 8.66666667% 2% 5%;
}
.index-contact .msg .rt form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.index-contact .msg .rt form .form-row .form-col {
  width: 49.12891986%;
}
.index-contact .msg .rt form input,
.index-contact .msg .rt form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  outline: none;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  height: 2.7222222em;
}
.index-contact .msg .rt form input::placeholder,
.index-contact .msg .rt form textarea::placeholder {
  color: #808080;
}
.index-contact .msg .rt form input {
  background: url(../images/form-person.png) no-repeat;
  background-size: 2em;
  background-position: center right 0.6667em;
  padding: 0 3em 0 0.5556em;
}
.index-contact .msg .rt form textarea {
  height: 4.27777778em;
  padding: 0.25em 0.5556em;
}
.index-contact .msg .rt form button {
  width: 100%;
  outline: none;
  cursor: pointer;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  background-color: #176AB3;
  height: 2.7222222em;
  transition: all 0.5s;
}
.index-contact .msg .rt form button:hover {
  filter: brightness(120%);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
footer {
  background-color: #383838;
}
footer .footer-top {
  padding: 2.0833% 0 2.34375%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
footer .footer-top i {
  width: 1px;
  height: 5.57291667vw;
  background-color: #fff;
  align-self: center;
}
footer .footer-top .logo {
  align-self: center;
}
footer .footer-top .logo .icon {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
footer .footer-top .logo .icon .text {
  line-height: 1.5;
  font-size: clamp(16px, 1.2vw, 20px);
  margin-left: 1.5em;
}
footer .footer-top .logo .icon .text h4 {
  color: #fff;
  font-weight: 500;
}
footer .footer-top .logo .icon .text h5 {
  font-size: clamp(10px, 1vw, 14px);
  color: #fff;
}
footer .footer-top .logo .title {
  text-align: center;
  font-size: clamp(12px, 1vw, 14px);
  color: #fff;
  line-height: 1.45;
}
footer .footer-top nav ul {
  font-size: 14px;
  color: #fff;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: calc(5 * (1.45em + 1em));
  gap: 0 2.65em;
}
footer .footer-top nav ul li {
  margin-bottom: 1em;
}
footer .footer-top nav ul a {
  color: inherit;
}
footer .footer-top nav ul a:hover {
  text-decoration: underline !important;
}
footer .footer-top .info p {
  font-size: 14px;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 1em;
}
footer .footer-top .info p img {
  margin-right: 6px;
}
footer .footer-top .footer-title {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #fff;
  line-height: 1.45;
  margin-bottom: 1em;
}
footer .footer-top .footer-title::after {
  display: block;
  content: "";
  height: 1px;
  width: 1.4em;
  background-color: #fff;
  margin-top: 0.35em;
}
footer .footer-bt {
  line-height: 1.45;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #fff;
  text-align: center;
  padding: 1% 0;
  border-top: 1px solid #fff;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
