@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: 120px;
  width: 100%;
}
.container {
  max-width: 1515px;
  width: 88%;
  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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s;
  background-color: transparent;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
header .logo {
  width: 223px;
}
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: 20px;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li a {
  color: #fff;
  font-size: 20px;
  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 img {
  margin-right: 0.4em;
}
header .lv1 .lang .on {
  color: #1c448a;
}
header .lv1 > .active > a {
  font-weight: 700;
  color: #fff;
}
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: 70.35644%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 161px;
  height: 23px;
  border-radius: 11px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.6);
  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: 6px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.header-active {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  animation: fadeInDown 2s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.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;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #fff;
  margin: 5px;
  color: #eb6100;
  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: #eb6100;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #eb6100;
  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;
  overflow: hidden;
}
.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 .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition:1s linear 2s;
  transform: scale(1.1, 1.1);
}
.index-banner .swiper .swiper-slide-active .banner-img, .index-banner .swiper .swiper-slide-duplicate-active .banner-img{
  transition: 6s linear;
  transform: scale(1, 1);
}
.index-banner .container {
  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: 10%;
  width: auto;
  left: 10.41667%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  transition: all 0.5s;
  font-size: 19px;
  color: #fff;
  font-weight: 300;
  margin: 0 1.526316em 0 0;
  opacity: 1;
  width: 1.5em;
  height: auto;
  line-height: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  font-weight: 700;
}
.index-title {
  text-align: center;
  margin-bottom: 1.5%;
}
.index-title h3 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  transition: all 0s;
}
.index-title h5 {
  font-size: 19px;
  color: #1c448a;
  transition: all 0s;
}
.index-about {
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  padding: 3.125% 0 3.489583%;
}
.index-about .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.index-about .container .lt {
  position: relative;
  width: 44.68647%;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 800px;
}
.index-about .container .lt .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(28, 68, 138, 0.4);
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.index-about .container .lt .circle1 {
  width: 103.9882%;
  height: 103.9882%;
}
.index-about .container .lt .circle2 {
  width: 108.86263%;
  height: 108.86263%;
}
.index-about .container .lt .circle2 .play-btn {
  position: absolute;
  right: 22%;
  transition: all 0.5s;
  z-index: 1;
}
.index-about .container .lt .circle2 .play-btn:hover {
  transform: scale(1.05);
}
.index-about .container .lt .circle2 .path {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1c448a;
  offset-path: circle(50% at 50% 50%);
  animation: mv 5s infinite;
}
.index-about .container .lt .circle2 .path::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #1c448a;
  border-radius: 50%;
  transition: all 0.5s;
}
.index-about .container .lt .circle2 #path1 {
  animation-delay: 0s;
}
.index-about .container .lt .circle2 #path2 {
  animation-delay: -0.5s;
}
.index-about .container .lt .circle2 #path3 {
  animation-delay: -1s;
}
.index-about .container .lt .circle2 #path4 {
  animation-delay: -1.5s;
}
@keyframes mv {
  0% {
    offset-distance: 0;
  }
  20% {
    width: 16px;
    height: 16px;
    background-color: #666;
  }
  100% {
    offset-distance: 100%;
  }
}
.index-about .container .lt .circle2:hover .path::after {
  width: 300%;
  height: 300%;
}
.index-about .container .lt .circle2:hover #path1::after {
  transition-delay: 1.5s;
}
.index-about .container .lt .circle2:hover #path2::after {
  transition-delay: 1s;
}
.index-about .container .lt .circle2:hover #path3::after {
  transition-delay: 0.5s;
}
.index-about .container .lt .circle2:hover #path4::after {
  transition-delay: 0s;
}
.index-about .container .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.index-about .container .lt .pic > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.index-about .container .rt {
  width: 47.128713%;
}
.index-about .container .rt .index-title {
  position: relative;
  text-align: left;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 1.96078%;
  margin-bottom: 8.12325%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-about .container .rt .index-title a {
  color: #fff;
  font-size: 20px;
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
}
.index-about .container .rt .index-title::after {
  display: block;
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 7.96875vw;
  height: 2px;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
}
.index-about .container .rt .brief {
  font-size: 18px;
  color: #333;
  text-align: justify;
  text-indent: 2em;
  line-height: 2.5556;
  margin-bottom: 9.2437%;
}
.index-about .container .rt .data {
  display: flex;
  justify-content: space-between;
}
.index-about .container .rt .data .block {
  flex: 1;
  margin-right: 17px;
}
.index-about .container .rt .data .block:last-child {
  flex: none;
  flex: unset;
  margin-right: 0;
}
.index-about .container .rt .data .block:last-child h5 em {
  display: none;
}
.index-about .container .rt .data .block:nth-child(even) h5 em::after {
  animation-delay: -2s;
}
.index-about .container .rt .data .block h5 {
  font-size: 18px;
  color: #1c448a;
  display: flex;
  align-items: center;
}
.index-about .container .rt .data .block h5 em {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  margin-left: 1em;
}
.index-about .container .rt .data .block h5 em::after {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #1c448a;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: turn 4s ease-in-out infinite;
}
@keyframes turn {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: 100%;
  }
}
.index-about .container .rt .data .block h2 {
  font-size: 38px;
  color: transparent;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  -webkit-background-clip: text;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
}
.index-prod {
  margin: 2% 0 0;
}
.index-prod .wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-prod .wrapper .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.index-prod .wrapper .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-prod .wrapper .block {
  position: relative;
  overflow: hidden;
  width: 25%;
  height: 0;
  padding-bottom: 35.6771%;
  z-index: 1;
}
.index-prod .wrapper .block .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  padding: 1em 18.75% 1em 18.75%;
}
.index-prod .wrapper .block .mask .pic {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.5s;
}
.index-prod .wrapper .block .mask .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-prod .wrapper .block .mask .icon {
  width: 2.6em;
  height: 2em;
  text-align: center;
  margin-bottom: 0.5em;
}
.index-prod .wrapper .block .mask .icon img {
  max-height: 100%;
}
.index-prod .wrapper .block .mask .line {
  width: 3px;
  height: 6.3333em;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5), transparent 5% 10%, #fff);
  transition: all 0.5s;
}
.index-prod .wrapper .block .mask .brief {
  font-size: 14px;
  text-align: justify;
  line-height: 2.5;
  height: 10em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.index-prod .wrapper .block .mask .more {
  display: block;
  font-size: 16px;
  width: 2em;
  height: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  color: #fff;
  margin-top: 2em;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  transition: all 0.5s;
}
.index-prod .wrapper .block:hover .mask .pic {
  opacity: 1;
  transition-duration: 1s;
}
.index-prod .wrapper .block:hover .mask .line {
  height: 0;
  transition-duration: 1s;
}
.index-prod .wrapper .block:hover .mask .more {
  height: 2em;
  opacity: 1;
  line-height: 2;
  visibility: visible;
  transition-duration: 1s;
}
.index-tech {
  padding: 2% 0 3%;
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
}
.index-tech .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.index-tech .bg img {
  display: block;
  width: 100%;
}
.index-tech .wrapper {
  position: relative;
}
.index-tech .wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #a0a0a0;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.index-tech .wrapper .swiper-button-prev,
.index-tech .wrapper .swiper-button-next {
  font-size: 20px;
  color: #fff;
  width: 1.6em;
  height: 1.6em;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  margin: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
}
.index-tech .wrapper .swiper-button-prev:hover,
.index-tech .wrapper .swiper-button-next:hover {
  filter: brightness(120%);
}
.index-tech .wrapper .swiper-button-prev::after,
.index-tech .wrapper .swiper-button-next::after {
  font-size: inherit;
  color: inherit;
}
.index-tech .wrapper .swiper-button-prev {
  left: -3%;
}
.index-tech .wrapper .swiper-button-next {
  right: -3%;
}
.index-tech .wrapper .swiper {
  padding: 0 16px;
}
.index-tech .wrapper .swiper .swiper-slide {
  position: relative;
  width: 20%;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  height: 20em;
}
.index-tech .wrapper .swiper .swiper-slide .icon {
  position: absolute;
  width: 6.75em;
  height: 1.6667em;
  line-height: 1.6667;
  text-align: center;
  margin-top: -42%;
  transition: all 0.5s;
}
.index-tech .wrapper .swiper .swiper-slide .icon img {
  max-height: 100%;
}
.index-tech .wrapper .swiper .swiper-slide .date {
  color: #fff;
  border-radius: 1em;
  background-color: #1c448a;
  line-height: 1.70833;
  padding: 0 0.83333em;
}
.index-tech .wrapper .swiper .swiper-slide .brief {
  position: absolute;
  font-size: 0.83333333em;
  color: #333;
  width: 120%;
  height: 8.3333333em;
  transform: translateY(70%);
  overflow: auto;
  padding-right: 0.5em;
}
.index-tech .wrapper .swiper .swiper-slide .brief::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #e6e6e6;
}
.index-tech .wrapper .swiper .swiper-slide .brief::-webkit-scrollbar {
  width: 3px;
  background-color: #e6e6e6;
}
.index-tech .wrapper .swiper .swiper-slide .brief::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #ccc;
}
.index-tech .wrapper .swiper .swiper-slide:hover .icon {
  animation: swing 1s;
}
.index-tech .wrapper .swiper .swiper-slide:hover .date {
  animation: rubberBand 1s;
}
.index-tech .wrapper .swiper .swiper-slide:nth-child(1) {
  align-items: flex-start;
}
.index-tech .wrapper .swiper .swiper-slide:nth-child(5) {
  align-items: flex-end;
  text-align: right;
}
.index-tech .wrapper .swiper .swiper-slide:nth-child(even) {
  flex-direction: column-reverse;
}
.index-tech .wrapper .swiper .swiper-slide:nth-child(even) .icon {
  margin-top: 42%;
}
.index-tech .wrapper .swiper .swiper-slide:nth-child(even) .brief {
  transform: translateY(-70%);
}
.index-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1920px;
}
.index-layout .lt {
  width: 25%;
  padding: 1.770833% 0 0 10%;
  white-space: nowrap;
}
.index-layout .lt .index-title {
  text-align: left;
  margin-bottom: 25.175%;
}
.index-layout .lt .data .block {
  margin-bottom: 33.566%;
}
.index-layout .lt .data .block:last-child {
  margin-bottom: 0;
}
.index-layout .lt .data .block h5 {
  font-size: 18px;
  color: #1c448a;
  display: flex;
  align-items: center;
}
.index-layout .lt .data .block h5 em {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  margin-left: 1em;
}
.index-layout .lt .data .block h5 em::after {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #1c448a;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: turn 4s ease-in-out infinite;
}
@keyframes turn {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: 100%;
  }
}
.index-layout .lt .data .block h2 {
  font-size: 38px;
  color: transparent;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  display: inline-block;
  -webkit-background-clip: text;
  font-weight: 700;
  line-height: 1.5;
}
.index-layout .rt {
  position: relative;
  width: 75%;
  max-width: 1393px;
}
.index-layout .rt > img {
  position: relative;
  z-index: -1;
}
.index-layout .rt .location-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
.index-layout .rt .location {
  position: absolute;
  z-index: 1;
  top: 47%;
  left: 63%;
}
.index-layout .rt .location .pin {
  position: relative;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.index-layout .rt .location .pin em {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #f5f5f5;
  border: 3px solid #1c448a;
  box-shadow: 0 0 0 3.5px rgba(28, 68, 138, 0.6);
  border-radius: 50%;
  transition: all 0.5s;
  margin: 0 auto;
  animation: boom 1.5s linear infinite;
  z-index: 1;
  transform-style: preserve-3d;
}
.index-layout .rt .location .pin em::before {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, -1px);
  background: -webkit-linear-gradient(top, #DF9F0A, #B94B0C);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.5s;
}
@keyframes boom {
  0% {
    scale: 1;
  }
  30% {
    scale: 1.4;
    box-shadow: 0 0 0 5px rgba(28, 68, 138, 0.4);
  }
  100% {
    scale: 1;
    box-shadow: 0 0 0 15px rgba(28, 68, 138, 0);
  }
}
.index-layout .rt .location .pin h4 {
  font-size: 24px;
  color: #1c448a;
  font-weight: 700;
  line-height: 1.4;
}
.index-layout .rt .location .pin h5 {
  font-size: 16px;
  font-family: var(--Noto-Sans-SC);
  color: #1c448a;
  line-height: 1.4;
  font-weight: 600;
}
.index-layout .rt .location .pin:hover em {
  animation-play-state: paused;
}
.index-layout .rt .location .tip {
  position: absolute;
  font-size: 18px;
  transform: translate(-100%, -100%);
  left: 50%;
  top: 0;
  visibility: hidden;
  display: flex;
  z-index: -1;
}
.index-layout .rt .location .tip .border {
  width: 317px;
  height: 87px;
  border-top: 1px solid #135e99;
  border-right: 1px solid #135e99;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: all 0.5s;
}
.index-layout .rt .location .tip h4 {
  color: #1c448a;
  font-family: var(--Noto-Sans-SC);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.index-layout .rt .location .tip .pic {
  position: absolute;
  padding: 0.2em 0.5em 0.5em;
  top: 30px;
  left: 0;
  transform: translate(-100%, -50%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.index-layout .rt .location .tip .pic em {
  display: block;
  position: absolute;
  width: 1.9em;
  height: 1.9em;
  border-top: 2px solid #135e99;
  border-left: 2px solid #135e99;
  top: 0;
  left: 0;
  transition: all 1s;
  opacity: 0;
  transform: translate(-10px, -10px);
}
.index-layout .rt .location .tip .pic em:nth-of-type(2) {
  left: auto;
  right: 0;
  transform: translate(10px, -10px) rotate(90deg);
}
.index-layout .rt .location .tip .pic em:nth-of-type(3) {
  top: auto;
  bottom: 0;
  transform: translate(-10px, 10px) rotate(270deg);
}
.index-layout .rt .location .tip .pic em:nth-of-type(4) {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  transform: translate(10px, 10px) rotate(180deg);
}
.index-layout .rt .location .tip .pic .img {
  position: relative;
  overflow: hidden;
  width: 207px;
  height: 154px;
  padding: 4px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.index-layout .rt .location .tip .pic .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-layout .rt .location .tip .pic .img:hover img {
  transform: scale(0.95);
}
.index-layout .rt .location2 {
  top: 45%;
  left: 53%;
}
.index-layout .rt .location2 h5 {
  transform: translate(-35%, -185%);
}
.index-layout .rt .location3 {
  top: 46%;
  left: 60%;
}
.index-layout .rt .location3 h5 {
  transform: translate(-45%, 0%);
}
.index-layout .rt .location4 {
  top: 53%;
  left: 54%;
}
.index-layout .rt .location4 h5 {
  transform: translate(-45%, 0%);
}
.index-layout .rt .location5 {
  top: 59%;
  left: 54%;
}
.index-layout .rt .location5 h5 {
  transform: translate(-24%, 0%);
}
.index-layout .rt .location6 {
  top: 69%;
  left: 50%;
}
.index-layout .rt .location6 h5 {
  transform: translate(-6%, 0%);
}
.index-layout .rt .active {
  z-index: -1;
}
.index-layout .rt .active .pin em {
  animation: none;
  box-shadow: none;
  border: 0;
  width: 16px;
  height: 16px;
  margin-bottom: 10px;
}
.index-layout .rt .active .pin em::before {
  width: 200%;
  height: 200%;
}
.index-layout .rt .active .pin h5 {
  font-weight: 400;
}
.index-layout .rt .active .tip {
  visibility: visible;
}
.index-layout .rt .active .tip .border {
  transform: translateX(0);
  opacity: 1;
}
.index-layout .rt .active .tip .pic {
  top: 0;
  opacity: 1;
}
.index-layout .rt .active .tip .pic em {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.5s;
}
.index-layout .rt .active .tip .pic em:nth-of-type(2) {
  transform: translate(0, 0) rotate(90deg);
}
.index-layout .rt .active .tip .pic em:nth-of-type(3) {
  transform: translate(0, 0) rotate(270deg);
}
.index-layout .rt .active .tip .pic em:nth-of-type(4) {
  transform: translate(0, 0) rotate(180deg);
}
.index-layout .rt .location2.active h5 {
  transform: translate(-35%, -250%);
}
.index-news {
  position: relative;
  padding: 2% 0 3%;
  background-color: #fcfcfc;
  overflow: hidden;
}
.index-news .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.index-news .bg img {
  display: block;
  width: 100%;
}
.index-news .wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper h4 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
}
.index-news .wrapper p {
  font-size: 16px;
  color: #666;
  line-height: 2.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper p a {
  color: inherit;
  transition: all 0.5s;
}
.index-news .wrapper p a:hover {
  color: #135e99;
}
.index-news .wrapper h5 {
  font-size: 23px;
  color: #595757;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-top: 0.869565em;
}
.index-news .wrapper h5 a {
  color: inherit;
  transition: all 0.5s;
}
.index-news .wrapper h5 a:hover {
  color: #135e99;
}
.index-news .wrapper span {
  font-size: 14px;
  color: #999;
  font-weight: 300;
}
.index-news .wrapper .lt {
  width: 23.9604%;
}
.index-news .wrapper .lt .row {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 6.61157%;
  margin-bottom: 4.9587%;
}
.index-news .wrapper .lt .row:last-child {
  margin-bottom: 0;
}
.index-news .wrapper .mid {
  width: 49.307%;
  position: relative;
}
.index-news .wrapper .mid .picture {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 63.05221%;
}
.index-news .wrapper .mid .picture img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .mid .picture:hover img {
  transform: scale(1.05);
}
.index-news .wrapper .mid .swiper-pagination {
  bottom: -8%;
}
.index-news .wrapper .mid .swiper-pagination-bullet {
  opacity: 1;
  background-color: #1c448a;
  transition: all 0.5s;
  width: 15px;
  height: 15px;
  margin: 0 6px;
}
.index-news .wrapper .mid .swiper-pagination-bullet-active {
  background-color: #c4640b;
}
.index-news .wrapper .rt {
  width: 23.43234%;
  text-align: center;
}
.index-news .wrapper .rt p {
  line-height: 2;
  text-align: left;
}
.index-news .wrapper .rt .picture {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 85.9155%;
  margin-top: 6.76056%;
}
.index-news .wrapper .rt .picture img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.index-news .wrapper .rt .picture:hover img {
  transform: scale(1.05);
}
footer {
  position: relative;
  background-color: #555452;
  overflow: hidden;
}
footer .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
footer .footer-top {
  position: relative;
  z-index: 1;
  padding: 2.864583% 0 1.041667%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top .container .info .logo {
  width: 236px;
}
footer .footer-top .container nav {
  width: 75.0495%;
  display: flex;
  justify-content: space-around;
}
footer .footer-top .container em {
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-linear-gradient(left, #b43f0d, #f1c30b 60%, #d2d2d2 60%);
  margin: 16px 0;
}
footer .footer-top .container h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
footer .footer-top .container p {
  font-size: 16px;
  color: #bababa;
}
footer .footer-top .container p img {
  margin-right: 0.25em;
}
footer .footer-top .container ul li {
  color: #bababa;
  transition: all 0.5s;
  margin-bottom: 0.25em;
  font-size: 16px;
}
footer .footer-top .container ul li a {
  color: inherit;
}
footer .footer-top .container ul li:hover {
  color: #fff;
}
footer .footer-top .container .link {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
footer .footer-top .container .link a {
  position: relative;
  margin-left: 32px;
  transform-style: preserve-3d;
  perspective: 800px;
}
footer .footer-top .container .link .tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -100%) rotateX(90deg);
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  min-width: clamp(100px, 7.2916667vw, 140px);
}
footer .footer-top .container .link .tip img {
  width: 100%;
}
footer .footer-top .container .link a > img {
  transition: all 0.5s;
  filter: contrast(0) brightness(200%);
  width: 46px;
  height: 46px;
  object-fit: contain;
}
footer .footer-top .container .link a:first-child {
  margin-left: 0;
}
footer .footer-top .container .link a:hover > img {
  filter: contrast(1) brightness(100%);
}
footer .footer-top .container .link a:hover .tip {
  transform: translate(-50%, -10%) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
footer .footer-bt {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #bababa;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5729167% 0;
}
footer .footer-bt a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt a:hover {
  color: #fff;
}
.news-list {
  margin: 3.125% 0 2.4479167%;
}
.news-list .index-title {
  margin-bottom: 2%;
}
.news-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-list .wrapper .block {
  position: relative;
  width: 32%;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 0 30px 16px 16px;
  margin-bottom: 2.2442%;
}
.news-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 71.875%;
  border-radius: 0 30px 0 30px;
}
.news-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .wrapper .block .title {
  padding: 2.5% 4.375% 2.70833%;
}
.news-list .wrapper .block .title h4 {
  font-size: 18px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.3333em;
  transition: all 0.5s;
}
.news-list .wrapper .block .title h4 a {
  color: inherit;
}
.news-list .wrapper .block .title p {
  font-size: 16px;
  color: #666;
  line-height: 2.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list .wrapper .block .title p a {
  color: inherit;
}
.news-list .wrapper .block .title .more {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  padding: 2.0548% 0 0 6.1644%;
  line-height: 1.7333;
  font-size: 15px;
  margin-top: 2.28311%;
}
.news-list .wrapper .block .title .more::after {
  position: absolute;
  display: block;
  content: "";
  top: -1px;
  left: 0;
  width: 9.1333em;
  height: 2px;
  background: -webkit-linear-gradient(left, #B43F0D, #F1C30B);
  transition: all 0.5s;
}
.news-list .wrapper .block .title .more span {
  color: #999;
}
.news-list .wrapper .block .title .more a {
  display: inline-block;
  background-color: #e5e5e5;
  color: #999;
  padding: 0 0.5em 0 1em;
  transition: all 0.5s;
}
.news-list .wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.news-list .wrapper .block:hover .title h4 {
  color: #eb6100;
}
.news-list .wrapper .block:hover .title .more::after {
  width: 100%;
}
.news-list .wrapper .block:hover .title .more a {
  background-color: #eb6100;
  color: #fff;
}
.inner-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 51.0416667%;
}
.inner-banner .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  z-index: -1;
}
.inner-banner .bg img {
  display: block;
  width: 100%;
}
.inner-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.inner-banner .banner-text .container {
  text-align: center;
  line-height: 1.6;
}
.inner-banner .banner-text .container h2 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 4px 5px rgba(0, 0, 0, 0.59);
}
.inner-banner .banner-text .container h3 {
  font-size: 38px;
  color: #fff;
  text-shadow: 0 4px 3px rgba(0, 0, 0, 0.59);
}
.inner-banner .scroll-down {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, 0);
  cursor: pointer;
}
.inner-banner .scroll-down img {
  animation: bounce 1.5s infinite;
}
.news-detail {
  margin: 2.08333% 0;
}
.news-detail .news-title {
  text-align: center;
  margin-bottom: 3%;
}
.news-detail .news-title h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
}
.news-detail .news-title h5 {
  font-size: 18px;
  color: #999;
}
.news-detail article {
  background-color: #f6f6f6;
  padding: 2.7778em 5.9406% 2.1111em;
  font-size: 18px;
  color: #333;
  border-radius: 1em;
  line-height: 2.8333;
}
.news-detail article img {
  margin: 1em 0;
}
.news-detail .article-tab {
  font-size: 18px;
  color: #333;
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news-detail .article-tab .lt {
  width: 50%;
}
.news-detail .article-tab .lt p {
  margin-bottom: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail .article-tab .lt a {
  color: inherit;
  transition: all 0.5s;
}
.news-detail .article-tab .lt a:hover {
  color: #1c448a;
}
.news-detail .article-tab .rt a {
  display: inline-block;
  width: 8.1111em;
  line-height: 2.5;
  border-radius: 1.25em;
  color: #fff;
  background-color: #1c448a;
  transition: all 0.5s;
  text-align: center;
  padding-left: 0.25em;
}
.news-detail .article-tab .rt a:hover {
  filter: brightness(120%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding-left: 0;
}
.recruit-info {
  margin: 1% 0;
}
.recruit-info h2 {
  text-align: center;
  font-size: clamp(24px, 3.4375vw, 66px);
  color: #1c448a;
  line-height: 1.6;
  margin-bottom: 0.25em;
}
.recruit-info .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruit-info .wrapper .block {
  width: 23.9604%;
  background-color: #f5f5f5;
  font-size: 24px;
  border-radius: 0 1.25em 0 1.25em;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  line-height: 1.75;
  text-align: center;
  padding: 4.8845% 0.5em 1.650165%;
  margin-bottom: 1.45215%;
}
.recruit-info .wrapper .block .icon {
  width: 2.6667em;
  height: 2.08333em;
  margin: 0 auto 0.5em;
}
.recruit-info .wrapper .block .icon img {
  max-height: 100%;
}
.recruit-info .wrapper .block h4 {
  font-weight: 700;
}
.recruit-info .wrapper .block h5 {
  font-weight: 300;
}
.recruit-list {
  background-color: #f5f5f5;
  padding: 3.02083% 0 2%;
  font-size: 22px;
}
.recruit-list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  margin-bottom: 1.58416%;
  border-radius: 1.6136364em;
  padding: 0.79545455em 1em 0.79545455em 1.909091em;
  line-height: 1.63636364;
}
.recruit-list ul li {
  color: #333;
  font-weight: 300;
  text-align: center;
}
.recruit-list ul li:first-child {
  text-align: left;
}
.recruit-list ul li:last-child {
  text-align: left;
}
.recruit-list ul li:nth-child(1) {
  width: 15.79941%;
}
.recruit-list ul li:nth-child(2) {
  width: 15.439528%;
}
.recruit-list ul li:nth-child(3) {
  width: 18.38938%;
}
.recruit-list ul li:nth-child(4) {
  width: 45.38938%;
}
.recruit-list ul li:nth-child(5) {
  width: 42%;
}
.recruit-list .title li {
  font-size: 1.2727273em;
  font-weight: 700;
}
.recruit-list .title li:last-child {
  text-align: center;
}
.prod-advantage {
  position: relative;
  overflow: hidden;
  padding: 2% 0 5.208333%;
}
.prod-advantage .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.prod-advantage .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-advantage .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-advantage .wrapper .block {
  width: 17.557756%;
  background: url(../images/prod-adv-block-bg.png) no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 22px;
  color: #333;
  padding: 3.036304% 2% 5%;
  cursor: default;
  margin-bottom: 1.320132%;
}
.prod-advantage .wrapper .block .icon {
  width: 3.409091em;
  height: 3.181882em;
  text-align: center;
}
.prod-advantage .wrapper .block .icon img {
  max-height: 100%;
}
.prod-advantage .wrapper .block h3 {
  font-weight: 700;
}
.prod-advantage .wrapper .block h5 {
  font-size: 0.727273em;
  min-height: 4em;
}
.prod-advantage .wrapper .block:hover .icon {
  animation: swing 1s;
}
.prod-list {
  position: relative;
  overflow: hidden;
  padding: 14.9479167% 0 10.416667%;
}
.prod-list .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.prod-list .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-list .prod-category {
  margin-bottom: 4.94791667%;
}
.prod-list .prod-category .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 28px;
}
.prod-list .prod-category .container .block {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.prod-list .prod-category .container .block h3 {
  position: relative;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.714286em;
}
.prod-list .prod-category .container .block h3::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 4px;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  left: 50%;
  margin-top: 0.2857143em;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
.prod-list .prod-category .container .block .icon {
  width: 2.7857143em;
  height: 2em;
  text-align: center;
}
.prod-list .prod-category .container .block .icon img {
  max-height: 100%;
}
.prod-list .prod-category .container .block:hover .icon {
  animation: swing 1s;
}
.prod-list .prod-category .container .block:hover h3::after {
  width: 100%;
}
.prod-list .prod-category .container .active h3 {
  font-weight: 700;
}
.prod-list .prod-category .container .active h3::after {
  width: calc(100% + 1em);
}
.prod-list .prod-category .container em {
  width: 2px;
  height: 30px;
  display: block;
  background-color: #fff;
}
.prod-list .prod-category .container em:last-of-type {
  display: none;
}
.prod-wrapper .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prod-wrapper .container .block {
  width: 25.54455%;
  margin-bottom: 2%;
}
.prod-wrapper .container .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 102.0672%;
  border-radius: 0 26px 0 26px;
}
.prod-wrapper .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  filter: brightness(60%);
}
.prod-wrapper .container .block .pic .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 36px;
  color: #fff;
  padding: 11.62791% 10px 0;
  overflow: auto;
}
.prod-wrapper .container .block .pic .mask::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  background-color: #f5f5f5;
}
.prod-wrapper .container .block .pic .mask::-webkit-scrollbar {
  width: 3px;
  background-color: #f5f5f5;
}
.prod-wrapper .container .block .pic .mask::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
.prod-wrapper .container .block .pic .mask h3 {
  font-weight: 700;
}
.prod-wrapper .container .block .pic .mask em {
  display: block;
  width: 1.5833em;
  height: 0.166667em;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
  margin-bottom: 0.3333em;
}
.prod-wrapper .container .block .pic .mask ul {
  width: 100%;
  padding: 0 0.5em;
}
.prod-wrapper .container .block .pic .mask ul li {
  font-weight: 300;
  font-size: 23px;
  transition: all 0.5s;
  margin-bottom: 0.26087em;
  width: 100%;
  text-align: center;
}
.prod-wrapper .container .block .pic .mask ul li a {
  color: inherit;
}
.prod-wrapper .container .block .pic .mask ul li:hover {
  font-weight: 700;
}
.prod-wrapper .container .block .pic .mask ul .active {
  font-weight: 700;
}
.prod-wrapper .container .block:hover .pic img {
  filter: brightness(40%);
}
.prod-detail {
  margin: 2.6041667% 0 2.08333%;
}
.prod-detail .prod-wrapper {
  margin-bottom: 2.083333%;
}
.prod-detail article {
  position: relative;
  font-size: 20px;
  color: #333;
}
.prod-detail article .prod-title {
  text-align: center;
  font-size: 36px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 2.31023%;
}
.prod-detail article h3 {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  line-height: 2.09091;
  padding: 0 0.5em 0 0.68182em;
  background-color: #1c448a;
  margin: 1em 0;
}
.prod-detail article h3::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 2.09091em;
  background-color: #f5f5f5;
  left: 0;
  transform: translate(0, -100%);
  z-index: -1;
}
.prod-detail article table {
  width: 100% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.prod-detail article table tr td {
  border: 1px solid #bfbfbf;
  text-align: center;
  height: 55px;
  font-size: 20px;
  color: #000;
  font-weight: 300;
  padding: 3px;
}
.prod-detail article table tr:first-child td {
  background-color: #1c448a;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  border-color: #1c448a;
}
.contact-us {
  margin: 2.8125% 0 0;
}
.contact-us .online-msg {
  margin-bottom: 3.1770833%;
}
.contact-us .online-msg form .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3.10231%;
}
.contact-us .online-msg form .row .col {
  width: 48.38284%;
}
.contact-us .online-msg form input,
.contact-us .online-msg form textarea {
  width: 100%;
  color: #333;
  font-size: 14px;
  outline: none;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
  transition: all 0.5s;
}
.contact-us .online-msg form input::placeholder,
.contact-us .online-msg form textarea::placeholder {
  color: #999;
}
.contact-us .online-msg form input:focus,
.contact-us .online-msg form textarea:focus {
  background-color: #e9e9e9;
}
.contact-us .online-msg form input {
  padding: 0 1em 0 3.2857143em;
  background-image: url(../images/msg-icon1.png);
  background-position: 1em center;
  height: 48px;
  border-radius: 24px;
}
.contact-us .online-msg form textarea {
  padding: 1em 1em 0 3.2857143em;
  height: 190px;
  border-radius: 4px;
  background-position: 1em 1em;
}
.contact-us .online-msg form .btn-row {
  text-align: center;
}
.contact-us .online-msg form .btn-row button {
  width: 10.25em;
  height: 2.75em;
  border-radius: 1.375em;
  color: #fff;
  background-color: #1c448a;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.5s;
}
.contact-us .online-msg form .btn-row button:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  filter: brightness(120%);
}
.contact-us .contact-info {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us .contact-info .lt {
  width: 58.854167%;
}
.contact-us .contact-info .lt iframe {
  width: 100%;
  height: 100%;
}
.contact-us .contact-info .rt {
  width: 41.145833%;
  font-size: 20px;
  color: #333;
  padding: 2.6041667% 1.25em;
  background-color: #eee;
}
.contact-us .contact-info .rt img {
  width: 1.6em;
  height: 1.6em;
  object-fit: scale-down;
  margin-right: 0.25em;
}
.contact-us .contact-info .rt h4 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.contact-us .contact-info .rt p {
  margin-bottom: 0.5em;
}
.contact-us .contact-info .rt address {
  margin-bottom: 10.56911%;
}
.contact-us .contact-info .rt address:last-child {
  margin-bottom: 0;
}
.about-banner .video {
  z-index: 0;
}
.about-banner .video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-banner .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
  filter: contrast(0) brightness(200%);
}
.about-tab {
  margin: 1.5625% 0;
}
.about-tab .container {
  display: flex;
  justify-content: space-around;
}
.about-tab .container .block {
  width: 15.18152%;
  background-color: #eee;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  color: #000;
  font-weight: 300;
  padding: 3.16832% 0.5em 2.6403%;
  cursor: pointer;
}
.about-tab .container .block .icon {
  width: 1.916667em;
  height: 1.916667em;
  margin-bottom: 0.3333em;
}
.about-tab .container .block .icon img {
  max-height: 100%;
}
.about-tab .container .block:hover .icon img {
  animation: rubberBand 1s;
}
.anchor-fixed {
  position: relative;
  top: -120px;
}
.about-intro .wrapper {
  display: flex;
  justify-content: space-around;
}
.about-intro .wrapper .lt {
  width: 80.8581%;
  transform-style: preserve-3d;
  perspective: 800px;
}
.about-intro .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 39.91837%;
  border-radius: 0 50px 0 50px;
}
.about-intro .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro .wrapper .rt {
  flex: 1;
  margin-left: 4.8185%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-intro .wrapper .rt .block {
  position: relative;
  padding-left: 17.0507%;
  margin-bottom: 10%;
}
.about-intro .wrapper .rt .block:last-child {
  margin-bottom: 0;
}
.about-intro .wrapper .rt .block::before {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 100%;
  background: -webkit-linear-gradient(top, #b4400d, #efbe0c);
  left: 0;
}
.about-intro .wrapper .rt .block h5 {
  font-size: 18px;
  color: #1c448a;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.about-intro .wrapper .rt .block h2 {
  font-size: 38px;
  color: transparent;
  display: inline-block;
  background: -webkit-linear-gradient(left, #b4400d, #efbe0c);
  -webkit-background-clip: text;
  font-weight: 700;
  line-height: 1.2;
}
.about-intro .brief {
  font-size: 20px;
  color: #333;
  line-height: 2.25;
  text-indent: 2em;
  margin-top: 3.036304%;
}
.company-culture {
  max-width: 1920px;
  margin: 0 auto;
}
.company-culture .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company-culture .wrapper .block {
  position: relative;
  width: 17.34375%;
  font-size: 17px;
  color: #fff;
  overflow: hidden;
  transition: all 0.5s;
  transform-style: preserve-3d;
  perspective: 800px;
}
.company-culture .wrapper .block .icon {
  width: 3.29411765em;
  height: 3.29411765em;
  text-align: center;
}
.company-culture .wrapper .block .icon img {
  max-height: 100%;
}
.company-culture .wrapper .block em {
  display: block;
  width: 1px;
  height: 9.1764706em;
  background-color: #fff;
  margin: 1.411765em 0 2.11765em;
}
.company-culture .wrapper .block h3 {
  font-size: 1.411765em;
  font-weight: 700;
  line-height: 1.4;
}
.company-culture .wrapper .block .brief {
  text-align: center;
  min-height: 8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.company-culture .wrapper .block .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.company-culture .wrapper .block .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-culture .wrapper .block .mask {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(50px, 6.145833vw, 118px) 1em 1em;
  transition: all 0.8s;
}
.company-culture .wrapper .block .bt-mask {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1em 2em;
  background-color: rgba(28, 68, 138, 0.4);
  transition: all 0.5s;
  transform: translateY(100%);
}
.company-culture .wrapper .block .bt-mask .icon {
  margin-right: 0.76471em;
}
.company-culture .wrapper .block .bt-mask .brief {
  text-align: left;
  min-height: auto;
}
.company-culture .wrapper .block .bt-mask .title {
  flex: 1;
}
.company-culture .wrapper .active {
  width: 47.96875%;
}
.company-culture .wrapper .active .mask {
  opacity: 0;
  transform: translateZ(500px);
}
.company-culture .wrapper .active .bt-mask {
  transform: translateY(0);
}
.company-honor {
  padding: 2% 0;
  max-width: 1920px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.company-honor .swiper .swiper-slide {
  width: clamp(250px, 26.9791667%, 518px);
}
.company-honor .swiper .picture {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 74.868726%;
}
.company-honor .swiper .picture img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-honor .swiper-btn {
  display: flex;
  justify-content: center;
  margin-top: 3.125%;
}
.company-honor .swiper-btn .swiper-button-next,
.company-honor .swiper-btn .swiper-button-prev {
  position: relative;
  margin: 0 0.65em;
  top: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  width: 2.3em;
  height: 2.3em;
  background: -webkit-linear-gradient(left, #B43F0D, #F0D049);
}
.company-honor .swiper-btn .swiper-button-next::after,
.company-honor .swiper-btn .swiper-button-prev::after {
  font-size: inherit;
  color: #fff;
}
.company-honor .swiper-btn .swiper-button-prev {
  background: -webkit-linear-gradient(right, #B43F0D, #F0D049);
}
.factory {
  padding: 2% 0;
  background-color: #eee;
}
.factory .container {
  max-width: 1663px;
}
.factory .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.factory .wrapper .block {
  width: 23.83157%;
  margin-bottom: 1.32291%;
}
.factory .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 70.9796673%;
  border-radius: 0 50px 0 50px;
}
.factory .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.factory .wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.partner {
  position: relative;
  overflow: hidden;
  padding: 2% 0;
}
.partner .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  z-index: -1;
}
.partner .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner .wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.partner .wrapper .block {
  width: 15.97359736%;
  margin: 2%;
  transform-style: preserve-3d;
  perspective: 800px;
}
.partner .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 88.843%;
}
.partner .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.08));
}
