@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: 110px;
  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: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
header .logo {
  width: 198px;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #000;
  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;
  padding-right: 1.25em;
}
header .lv1 > li::after {
  display: block;
  position: absolute;
  content: "";
  width: 2px;
  height: 1em;
  background-color: #000;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .lv1 > li:nth-last-child(-n+2) {
  padding-right: 0;
}
header .lv1 > li:nth-last-child(-n+2)::after {
  display: none;
}
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 .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%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search > img {
  cursor: pointer;
}
header .search form {
  display: none;
  position: absolute;
  right: -5px;
}
header .search form input {
  display: block;
  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;
  border: 1px solid #ddd;
}
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: 10px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
  height: 100%;
}
header .search form button img {
  vertical-align: baseline;
  width: 20px;
}
.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: 2%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: clamp(8px, 1.5625vw, 12px);
  height: clamp(8px, 1.5625vw, 12px);
  background-color: #a41f24;
  transition: all 0.5s;
  margin: 0 4px;
}
.index-title {
  text-align: center;
  margin-bottom: 2%;
}
.index-title h2 {
  font-size: clamp(20px, 1.875vw, 36px);
  color: #333;
  font-weight: 700;
}
.index-title h2 span {
  color: #a41f24;
}
.index-title h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #000;
  font-weight: 700;
}
.index-title h4 {
  color: #000;
  font-size: clamp(12px, 1.14583333vw, 22px);
}
.index-title h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #777;
}
.index-rec {
  padding: 1.5% 0 3%;
}
.index-rec .mycontainer {
  width: 90%;
  max-width: 1640px;
}
.index-rec .swiper .swiper-pagination {
  position: relative;
  margin: 1.5% 0 0;
  bottom: 0;
}
.index-rec .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 3px;
  width: clamp(8px, 1.5625vw, 12px);
  height: clamp(8px, 1.5625vw, 12px);
  background-color: #000;
  opacity: 1;
  transition: all 0.5s;
}
.index-rec .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #da180f;
}
.index-rec .swiper .swiper-slide {
  border: 1px solid #eee;
}
.index-rec .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 92.4050633%;
}
.index-rec .swiper .swiper-slide .pic a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.index-rec .swiper .swiper-slide .pic a img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  transition: all 0.5s;
}
.index-rec .swiper .swiper-slide .title {
  position: relative;
  font-size: clamp(14px, 1vw, 16px);
  text-align: center;
  color: #333;
  line-height: 4.0625;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1em;
  border-top: 1px solid #eee;
  transition: all 0.5s;
}
.index-rec .swiper .swiper-slide .title::after {
  display: block;
  content: "";
  position: absolute;
  width: 10em;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #e60012;
}
.index-rec .swiper .swiper-slide .title a {
  color: inherit;
}
.index-rec .swiper .swiper-slide:hover .pic img {
  scale: 0.95;
}
.index-rec .swiper .swiper-slide:hover .title {
  color: #e60012;
}
.index-more a {
  position: relative;
  display: block;
  font-size: clamp(14px, 1.3020833vw, 25px);
  width: 10.4em;
  height: 2.92em;
  line-height: 2.92;
  text-align: center;
  border-radius: 1.46em;
  transition: all 0.5s;
  background-color: #fff;
  border: 1px solid #000;
  color: #da180f;
  border: 1px solid #da180f;
  margin: 2% auto 0;
  overflow: hidden;
}
.index-more a span {
  position: relative;
  z-index: 1;
}
.index-more a::after {
  position: absolute;
  display: block;
  content: "";
  transform: skewX(-30deg);
  width: 1.5em;
  height: 100%;
  background-color: #da180f;
  top: 0;
  left: -50%;
}
.index-more a:hover::after {
  transition: all 1.5s;
  left: 150%;
}
.index-prod {
  background-color: #f4f4f4;
  padding: 2% 0;
}
.index-prod .mycontainer {
  max-width: 1500px;
}
.index-prod .mycontainer .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 84.0659341%;
  background-color: #fff;
}
.index-prod .mycontainer .swiper .pic a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.index-prod .mycontainer .swiper .pic a img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: all 0.5s;
}
.index-prod .mycontainer .swiper .title {
  text-align: center;
  padding: 0 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  transition: all 0.5s;
  padding: 0.5em 0 1em;
}
.index-prod .mycontainer .swiper .title a {
  color: inherit;
}
.index-prod .mycontainer .swiper .swiper-slide:hover .pic img {
  scale: 0.95;
}
.index-prod .mycontainer .swiper .swiper-slide:hover .title {
  color: #e60012;
}
.index-serv {
  padding: 2.083333% 0 2.34375%;
}
.index-serv .index-title {
  margin-bottom: 3%;
}
.index-serv .index-title h5 {
  font-size: clamp(12px, 1.375vw, 22px);
  font-weight: 400;
  color: #666;
}
.index-serv .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-serv .wrapper .block {
  width: 16.25%;
}
.index-serv .wrapper .block .icon {
  font-size: clamp(14px, 1.4534884vw, 25px);
  color: #fff;
  text-align: center;
  background-color: #a41f24;
  border: 1px solid #333;
  border-radius: 0 1.2vw 0 1.2vw;
  box-shadow: inset 0 0 0 0.4em #f1f1f1;
  padding: 1.16em;
  width: 7em;
  margin: 0 auto 0.88em;
}
.index-serv .wrapper .block .icon img {
  width: 2.16em;
  height: 2.16em;
  object-fit: scale-down;
}
.index-serv .wrapper .block .brief {
  text-align: justify;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #666;
  text-align-last: center;
}
.index-serv .wrapper .block:hover .icon img {
  animation: swing 1s;
}
.index-app {
  margin-bottom: 3%;
}
.index-app .mycontainer {
  max-width: 1720px;
  width: 90%;
}
.index-app .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 112.32143%;
}
.index-app .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-app .swiper .pic .mask {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1em;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  background-color: rgba(218, 24, 15, 0.7);
  line-height: 4.1;
  transition: all 0.5s;
}
.index-app .swiper .swiper-slide:hover .pic img {
  filter: brightness(80%);
  scale: 1.05;
}
.index-app .swiper .swiper-slide:hover .pic .mask {
  line-height: 4.5;
}
.index-app .swiper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5%;
}
.index-app .swiper-btn .swiper-button-prev,
.index-app .swiper-btn .swiper-button-next {
  position: relative;
  margin: 0;
  left: auto;
  top: auto;
  right: auto;
  font-size: 10px;
  width: 1.6em;
  height: 1.6em;
  color: #fff;
  background-color: #da180f;
}
.index-app .swiper-btn .swiper-button-prev::after,
.index-app .swiper-btn .swiper-button-next::after {
  font-size: inherit;
  color: inherit;
}
.index-app .swiper-btn .swiper-pagination {
  position: relative;
  width: auto;
  bottom: auto;
  left: auto;
  transform: none;
  margin: 0 16px;
}
.index-app .swiper-btn .swiper-pagination .swiper-pagination-bullet {
  margin: 0 3px;
  width: clamp(8px, 1.5625vw, 12px);
  height: clamp(8px, 1.5625vw, 12px);
  background-color: #000;
  opacity: 1;
  transition: all 0.5s;
}
.index-app .swiper-btn .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #da180f;
}
.index-about {
  max-width: 1920px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #efefef;
  margin: 0 auto;
}
.index-about .lt {
  width: 50%;
}
.index-about .lt .pic {
  width: 100%;
  height: 100%;
}
.index-about .lt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .rt {
  width: 50%;
  padding: 1% 19.79166667% 1% 2.65625%;
}
.index-about .rt .index-title {
  text-align: left;
  margin-bottom: 5%;
}
.index-about .rt .brief {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  line-height: 2.5625;
  text-indent: 2em;
}
.index-about .rt .index-more {
  margin-top: 5%;
}
.index-about .rt .index-more a {
  margin-left: 0;
}
.index-news {
  margin: 1.5% 0;
}
.index-news .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .mycontainer .block {
  width: 48.655257%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 20px);
  height: 4.4em;
  border-bottom: 1px solid #eee;
}
.index-news .mycontainer .block:nth-last-child(-n+2) {
  border-bottom: 0;
}
.index-news .mycontainer .block p {
  flex: 1;
  color: #000;
  margin-right: 0.5em;
  line-height: 1.4;
  max-height: 2.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .mycontainer .block p a {
  color: inherit;
}
.index-news .mycontainer .block h5 {
  font-size: clamp(10px, 1vw, 14px);
  white-space: nowrap;
  color: #666;
}
.index-news .mycontainer .block:hover p {
  color: #da180f;
}
footer {
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
}
footer .footer-top {
  padding: 2.5% 0 1.5%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top h4 {
  font-size: clamp(16px, 1.2vw, 18px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.05em;
  padding-bottom: 0.6em;
}
footer .footer-top h5 {
  font-size: clamp(14px, 1vw, 16px);
  color: #c9c9c9;
  font-weight: 700;
}
footer .footer-top p {
  font-size: clamp(14px, 1vw, 16px);
  color: #c9c9c9;
}
footer .footer-top h6 {
  font-size: 14px;
  color: #c9c9c9;
}
footer .footer-top ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 14px;
  height: 17.5em;
  align-content: space-between;
}
footer .footer-top ul li {
  color: #c9c9c9;
  margin-bottom: 0.857143em;
  max-width: 48%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
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 ul li:nth-child(n+19) {
  display: none;
}
footer .footer-top .info {
  width: 20%;
}
footer .footer-top .info h5,
footer .footer-top .info p {
  margin-bottom: 0.5em;
}
footer .footer-top nav {
  width: 45.8333333%;
}
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: #a41f24;
  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;
  font-size: 14px;
  padding: 0.78125% 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
footer .footer-bt a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt a:hover {
  opacity: 0.7;
}
