@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: 90px;
  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%;
  z-index: 99;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
header .logo {
  width: 18.16666667%;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 20px);
  margin-bottom: 0;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li > a {
  color: inherit;
  transition: all 0.5s;
  text-transform: uppercase;
}
header .lv1 > li > a:hover {
  text-decoration: underline !important;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  font-family: 'Arial Narrow';
}
header .lv1 .lang .on {
  color: #0e6eb8;
}
header .lv1 > .active > a {
  font-weight: 700;
}
header .lv1 > .active > a:hover {
  text-decoration: none !important;
}
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: 77.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
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;
}
.pagination > li a {
  display: block;
  font-size: 22px;
  padding: 0 14px;
  line-height: 40px;
  background-color: #edf5fb;
  margin: 5px 8px;
  color: #5f5f5f;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination .active a {
  color: #fff;
  background-color: #035fa8;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #035fa8;
}
.pagination .btn {
  margin: 0 29px;
}
.pagination .btn a {
  width: auto;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: none;
  color: rgba(46, 46, 46, 0.3);
  font-weight: 700;
}
.pagination .btn i {
  margin: 0 20px;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #dcdcdc !important;
  cursor: not-allowed;
  background-color: #f7f7f7;
  pointer-events: none;
}
.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;
  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 {
  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 {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.5s;
  margin: 0 6.504px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-title {
  text-align: center;
  margin-bottom: 3%;
}
.index-title h4 {
  font-size: clamp(20px, 1.875vw, 36px);
  color: #000;
}
.index-title h4 span {
  color: #f00015;
}
.index-title h4::before,
.index-title h4::after {
  display: inline-block;
  content: "";
  position: relative;
  width: 3.1111111em;
  height: 1.3888889em;
  background: url(../images/index-title-icon.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 0.277778em;
}
.index-title h4::after {
  transform: rotateY(180deg);
}
.index-title h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #666;
}
.index-rec {
  margin: 2% 0;
}
.index-rec .mycontainer {
  max-width: 1595px;
}
.index-rec .swiper .swiper-slide {
  padding: 18px 16px 0 15px;
  background-color: #eee;
}
.index-rec .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-rec .swiper .swiper-slide:hover .title {
  color: #f00015;
}
.index-rec .swiper-pagination {
  position: relative;
  bottom: 0;
  font-size: clamp(6px, 1vw, 15px);
  margin-top: 0.8em;
}
.index-rec .swiper-pagination .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  background-color: #666;
  opacity: 1;
  transition: all 0.5s;
  margin: 0 3.5px;
}
.index-rec .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f00015;
}
.index-rec .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 121.690141%;
}
.index-rec .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-rec .title {
  text-align: center;
  font-size: clamp(14px, 1.162791vw, 20px);
  color: #000;
  padding: 0.3em 0.5em 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
}
.index-rec .title a {
  color: inherit;
}
.index-custom {
  background-color: #f3f3f3;
  padding: 2% 0 3.5%;
}
.index-custom .mycontainer {
  max-width: 1320px;
}
.index-custom .swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-custom .swiper .swiper-slide .lt {
  width: 36.818182%;
  background-color: #fff;
}
.index-custom .swiper .swiper-slide .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 79.218107%;
}
.index-custom .swiper .swiper-slide .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-custom .swiper .swiper-slide .lt .pic:hover img {
  scale: 1.05;
}
.index-custom .swiper .swiper-slide .lt .title {
  padding: 0 3.2922% 1.6461% 11.11111111%;
}
.index-custom .swiper .swiper-slide .lt .title h4 {
  color: #000;
  font-size: clamp(16px, 1.33721vw, 23px);
  line-height: 1.6;
}
.index-custom .swiper .swiper-slide .lt .title h5 {
  font-size: clamp(12px, 1vw, 15px);
  color: #666;
}
.index-custom .swiper .swiper-slide .lt .title h5 span {
  display: inline-block;
  color: #606060;
  background-color: #eee;
  line-height: 1.625;
  padding: 0 0.625em;
  margin: 0 0.625em 0.625em 0;
}
.index-custom .swiper .swiper-slide .lt .title h5 span:first-of-type {
  margin-left: 1em;
}
.index-custom .swiper .swiper-slide .rt {
  width: 61.742424%;
}
.index-custom .swiper .swiper-slide .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 57.423313%;
}
.index-custom .swiper .swiper-slide .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-custom .swiper .swiper-slide .rt .pic:hover img {
  scale: 1.05;
}
.index-custom .swiper .swiper-btn {
  display: flex;
  justify-content: center;
  margin-top: 4.25%;
}
.index-custom .swiper .swiper-btn .swiper-button-prev,
.index-custom .swiper .swiper-btn .swiper-button-next {
  position: relative;
  margin: 0;
  left: auto;
  top: auto;
  right: auto;
  font-size: 18.5px;
  width: 2em;
  height: 2em;
  color: #fff;
  background-color: #f00015;
  margin: 0 1.324324em;
}
.index-custom .swiper .swiper-btn .swiper-button-prev::after,
.index-custom .swiper .swiper-btn .swiper-button-next::after {
  color: inherit;
  font-size: inherit;
}
.index-slogan {
  color: #fff;
  background: url(../images/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 7.8125% 0 9.166667%;
}
.index-slogan h2 {
  font-size: clamp(24px, 3.333333vw, 64px);
  font-weight: 700;
  margin-bottom: 0.25em;
}
.index-slogan h3 {
  font-size: clamp(20px, 2.7083333vw, 52px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.3em;
}
.index-slogan h4 {
  font-size: clamp(18px, 2.6041667vw, 50px);
  margin-bottom: 0.72em;
}
.index-more {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 19px);
  line-height: 2.7894737;
  border-radius: 1.39473685em;
  background-color: #f00015;
  padding: 0 2.157895em;
  transition: all 0.5s;
  z-index: 1;
  overflow: hidden;
}
.index-more span {
  position: relative;
  z-index: 1;
  color: inherit;
}
.index-more::before {
  content: "";
  z-index: -1;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: all 0.5s;
  transform: skewY(90deg);
}
.index-more:hover {
  color: #f00015;
}
.index-more:hover::before {
  transform: skewY(0deg);
}
.index-prod {
  margin: 2% 0 3.5%;
  position: relative;
  overflow: hidden;
}
.index-prod .swiper {
  overflow: visible;
}
.index-prod .swiper .swiper-slide {
  width: 77.333333%;
}
.index-prod .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62.17672414%;
}
.index-prod .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .swiper-slide-active:hover .pic img {
  scale: 1.05;
}
.index-material {
  position: relative;
}
.index-material img {
  position: relative;
  z-index: -1;
  display: block;
  width: 100%;
}
.index-material .mycontainer {
  position: absolute;
  left: 50%;
  top: 1.5625vw;
  transform: translate(-50%, 0);
}
.index-material .index-title h4 {
  color: #fff;
}
.index-material .index-title h4::before,
.index-material .index-title h4::after {
  display: none;
}
.index-material .index-title h5 {
  color: #fff;
}
.index-about {
  position: relative;
  overflow: hidden;
  padding: 2% 0 3.5%;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index-about .wrapper .lt {
  position: relative;
  width: 56.5104167%;
  --h: clamp(200px, 28.8541667vw, 28.8541667vw);
}
.index-about .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--h);
  border-radius: 0 calc(var(--h) / 2) calc(var(--h) / 2) 0;
}
.index-about .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .wrapper .lt .index-more {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.index-about .wrapper .rt {
  position: relative;
  width: 42.1875%;
  padding-right: 18.75%;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 3.4375;
  color: #000;
}
.index-about .wrapper .rt::after {
  position: absolute;
  display: block;
  content: "";
  background-color: #eee;
  width: 148.14815%;
  height: 120%;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
}
.index-news {
  margin-bottom: 3.5%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index-news .wrapper .lt {
  width: 32.583333%;
}
.index-news .wrapper .lt .block {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 2.8133%;
  padding-bottom: 4.603581%;
}
.index-news .wrapper .lt .block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.index-news .wrapper .lt .block h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #000;
}
.index-news .wrapper .lt .block p {
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  line-height: 2.43;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .lt .block h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  margin-top: 1.02302%;
}
.index-news .wrapper .lt .block a {
  color: inherit;
}
.index-news .wrapper .rt {
  width: 66.5%;
}
.index-news .wrapper .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 59.3985%;
}
.index-news .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .rt .pic:hover img {
  scale: 1.05;
}
footer {
  background-color: #504e4e;
  color: #fff;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: inherit;
  text-decoration: underline !important;
}
footer .footer-top {
  font-size: clamp(14px, 1vw, 186px);
  padding: 2.8125% 0 1.04166667%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top h4 {
  font-weight: 700;
  margin-bottom: 1em;
}
footer .footer-top .logo {
  width: 28.3333%;
  align-self: center;
}
footer .footer-top address {
  width: 26.666667%;
}
footer .footer-top address p {
  margin-bottom: 1em;
}
footer .footer-top .ewm {
  width: 38.33333%;
}
footer .footer-top .ewm .wrapper {
  display: flex;
  justify-content: space-between;
}
footer .footer-top .ewm .wrapper .block {
  width: 41.73913%;
  text-align: center;
}
footer .footer-top .ewm .wrapper .block p {
  margin-top: 0.5em;
}
footer .footer-bt {
  font-size: clamp(12px, 1.066667vw, 16px);
  text-align: center;
  padding: 1.5625% 0 0.9895833%;
}
