@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;
}
html,
body {
  scroll-behavior: smooth;
  font-family: var(--Noto-Sans-SC);
  background-color: #f7f8f9;
}
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: 80px;
  width: 100%;
}
.container {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
header .logo {
  width: 30%;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #9acc36;
  font-size: clamp(16px, 1.2vw, 20px);
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li a {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: inherit;
  transition: all 0.5s;
  text-transform: uppercase;
  padding: 0 1em;
}
header .lv1 > li a:hover {
  background-color: #9acc36;
  color: #fff;
}
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: #9acc36;
}
header .lv1 > .active > a {
  color: #fff;
  background-color: #9acc36;
}
header .lv1 > .active > a:hover {
  text-decoration: none !important;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10%);
  transition: all 0.5s;
  background-color: #9acc36;
  padding: 15px 10px;
  visibility: hidden;
  opacity: 0;
  font-size: clamp(16px, 1.2vw, 20px);
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  padding: 0;
  min-width: 130px;
}
header .lv2 > li a {
  font-weight: 300;
  color: #fff;
  text-align: left;
  justify-content: flex-start;
}
header .lv2 > li a:hover {
  color: #363636;
}
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: 60%;
  height: 100%;
  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;
}
.pagination {
  margin-top: 2%;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: block;
  font-size: clamp(14px, 1.2vw, 21px);
  line-height: 32px;
  margin: 1em;
  color: #bbb;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination span {
  display: block;
  font-size: clamp(14px, 1.2vw, 21px);
  line-height: 32px;
  margin: 1em;
  color: #363636;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination img {
  width: 2.2857143em;
}
.pagination a:hover {
  color: #363636;
  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;
}
.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 .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: 2%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(12px, 1.875vw, 36px);
  width: 1em;
  height: 1em;
  opacity: 1;
  background-color: #fff;
  border-radius: 0.5em;
  transition: all 0.5s;
  margin: 0 0.208333em;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 4em;
  background-color: #9acc36;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(16px, 2.65625vw, 51px);
  color: #9acc36;
  outline: none;
  font-weight: 700;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  color: inherit;
  font-size: inherit;
}
.index-banner .swiper-button-prev {
  left: 12.5%;
}
.index-banner .swiper-button-next {
  right: 12.5%;
}
.index-title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3%;
  position: relative;
  z-index: 1;
}
.index-title h2 {
  position: relative;
  font-size: clamp(24px, 3.125vw, 60px);
  color: #9acc36;
  font-weight: 700;
}
.index-title h2::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 4.83333em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(154, 204, 54, 0.215);
  z-index: -1;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #9acc36;
  font-weight: 700;
  position: relative;
}
.index-title h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #707070;
}
.index-prod {
  margin: 2% 0 3%;
}
.index-prod .container {
  max-width: 1240px;
}
.index-prod .tab {
  display: flex;
  flex-wrap: wrap;
  max-width: 1190px;
  margin: 0 auto;
  gap: 3.02521%;
}
.index-prod .tab li {
  margin-bottom: 3.02521%;
  width: 17.563%;
}
.index-prod .tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 3.9166667em;
  background-color: #fff;
  text-align: center;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #000;
  line-height: 1.4;
  padding: 0 0.25em;
  box-shadow: 2px 3px 3px rgba(65, 99, 2, 0.13);
  transition: all 0.5s;
}
.index-prod .tab li a:hover {
  color: #fff;
  background-color: #9acc36;
}
.index-prod .prod-swiper {
  position: relative;
}
.index-prod .prod-swiper .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.index-prod .prod-swiper .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .prod-swiper .swiper .pic:hover img {
  scale: 1.05;
}
.index-prod .prod-swiper .swiper-button-prev,
.index-prod .prod-swiper .swiper-button-next {
  font-size: clamp(14px, 1.3541667vw, 26px);
  color: #9acc36;
  width: 2.30769231em;
  height: 2.30769231em;
  border-radius: 50%;
  border: 3px solid #9acc36;
  font-weight: 700;
}
.index-prod .prod-swiper .swiper-button-prev::after,
.index-prod .prod-swiper .swiper-button-next::after {
  font-size: inherit;
}
.index-prod .prod-swiper .swiper-button-prev {
  left: -8%;
}
.index-prod .prod-swiper .swiper-button-next {
  right: -8%;
}
.index-adv .container {
  max-width: 1280px;
}
.index-adv .index-title {
  text-align: left;
}
.index-adv .index-title h3::before {
  display: inline-block;
  width: 0.3em;
  height: 0.95em;
  content: "";
  background-color: #363636;
  vertical-align: middle;
  margin-right: 1.65em;
}
.index-adv .wrapper {
  display: flex;
}
.index-adv .wrapper .block {
  position: relative;
  z-index: 1;
  flex: 1;
  height: clamp(300px, 41.666667vw, 800px);
  transition: all 0.5s;
  overflow: hidden;
}
.index-adv .wrapper .block .bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.index-adv .wrapper .block .bg img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  filter: brightness(70%);
}
.index-adv .wrapper .block .name {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.1em;
  left: 0;
  bottom: 5%;
  width: 100%;
  font-size: clamp(16px, 2.083333vw, 40px);
  color: #fff;
  font-weight: 500;
  transition: all 0.5s;
}
.index-adv .wrapper .block .name h3 {
  flex: 1;
  margin-right: 0.5em;
}
.index-adv .wrapper .block .name .icon {
  width: 2.2em;
  height: 2.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.index-adv .wrapper .block .name .icon img {
  max-height: 100%;
}
.index-adv .wrapper .block .mask {
  position: absolute;
  display: block;
  width: 81.0526316%;
  left: 11.7544%;
  bottom: 6%;
  padding: 3.85965% 7.017544% 5px;
  border-radius: clamp(10px, 2.08333vw, 40px);
  background: -webkit-linear-gradient(-45deg, #6cbe2e, #d1ecc5);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 150%);
}
.index-adv .wrapper .block .mask .title h2 {
  font-size: clamp(20px, 2.8125vw, 54px);
  font-weight: 900;
  color: transparent;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.05em;
}
.index-adv .wrapper .block .mask .title h3 {
  display: inline-block;
  font-size: clamp(18px, 2.083333vw, 40px);
  font-weight: 900;
  color: #fff;
  border-bottom: 2px solid #383b37;
  line-height: 1.6;
  padding-right: 0.95em;
  margin-top: -1em;
}
.index-adv .wrapper .block .mask .title h4 {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.4em;
}
.index-adv .wrapper .block .mask .brief {
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  line-height: 1.4375;
}
.index-adv .wrapper .block .mask .icon {
  margin: 0 0 0 auto;
  font-size: clamp(16px, 2.083333vw, 40px);
  width: 2.2em;
  height: 2.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-adv .wrapper .block .mask .icon img {
  max-height: 100%;
}
.index-adv .wrapper .block:hover {
  flex: 1.605634;
}
.index-adv .wrapper .block:hover .bg img {
  filter: brightness(100%);
}
.index-adv .wrapper .block:hover .name {
  opacity: 0;
  visibility: hidden;
}
.index-adv .wrapper .block:hover .mask {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  transition-delay: 0.3s;
}
.index-device {
  margin: 2% 0 3%;
}
.index-device .index-title h3::after {
  display: block;
  content: "";
  margin: 0.45em auto 0;
  width: 9.3em;
  height: 2px;
  background-color: #353d41;
}
.index-device .container {
  max-width: 1234px;
}
/* .index-device {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-device {
  width: 49.432739%;
  margin-bottom: 1.134522%;
} */
.index-device .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 66.557377%;
}
.index-device .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-device .pic:hover img {
  scale: 1.05;
}
.index-about {
  margin: 2% 0 3%;
}
.index-about .wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #9acc36;
  overflow: hidden;
  z-index: 1;
}
.index-about .wrapper .text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 15.1041667vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5976);
  line-height: 1;
  transform: translate(1%, 6%);
  z-index: 1;
}
.index-about .wrapper .lt {
  width: 39.473684%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3% 6.96053% 3% 6.25%;
}
.index-about .wrapper .lt .title {
  font-size: clamp(20px, 1.770833vw, 34px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 10.869565%;
}
.index-about .wrapper .lt .title::after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #393f3b;
  margin-top: 0.382353em;
}
.index-about .wrapper .lt .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  line-height: 2.05;
}
.index-about .wrapper .lt a {
  display: inline-block;
  font-size: clamp(14px, 1.05vw, 16px);
  color: #9acc36;
  font-weight: 500;
  line-height: 1.875;
  border-radius: 0.9375em;
  border: 1px solid transparent;
  background-color: #363636;
  padding: 0 0.6875em;
  transition: all 0.5s;
  margin-top: 7.1875vw;
}
.index-about .wrapper .lt a:hover {
  border-color: #fff;
  background-color: #fff;
}
.index-about .wrapper .rt {
  width: 60.526316%;
}
.index-about .wrapper .rt .pic {
  width: 100%;
  height: 100%;
}
.index-about .wrapper .rt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-news {
  margin: 2% 0 3%;
}
.index-news .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .container .lt {
  width: 65.9375%;
}
.index-news .container .lt .wrapper-title {
  font-size: clamp(20px, 2.08333vw, 40px);
  color: #363636;
  background: #9acc36;
  line-height: 1;
  padding: 0.5em 0.5em 0.34884em;
  margin-bottom: 3.4123223%;
}
.index-news .container .lt .wrapper-title h3 {
  font-weight: 700;
  margin-left: 1.255814em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.index-news .container .lt .wrapper-title h3::before {
  display: inline-block;
  width: 0.3023256em;
  height: 0.9534884em;
  content: "";
  background-color: #363636;
  vertical-align: bottom;
  margin-right: 1.3721em;
}
.index-news .container .lt .wrapper-title a {
  font-size: 0.5em;
  margin-left: 6.3256em;
  color: #363636;
}
.index-news .container .lt .wrapper-title a:hover {
  text-decoration: underline !important;
}
.index-news .container .lt .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .container .lt .wrapper .block {
  width: 48.43602%;
  background-color: #fff;
  transition: all 0.5s;
}
.index-news .container .lt .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 98.0392157%;
}
.index-news .container .lt .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .container .lt .wrapper .block .title {
  padding: 1.1741683% 3.91389432% 1.76125%;
}
.index-news .container .lt .wrapper .block .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.0769231em;
}
.index-news .container .lt .wrapper .block .title p {
  font-size: clamp(12px, 1.1vw, 16px);
  color: #363636;
  font-weight: 300;
  line-height: 2;
  height: 4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .container .lt .wrapper .block .title .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.136752%;
}
.index-news .container .lt .wrapper .block .title .more a {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 300;
  color: #666;
  transition: all 0.5s;
}
.index-news .container .lt .wrapper .block .title .more span {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 300;
  color: #666;
}
.index-news .container .lt .wrapper .block .title a {
  color: inherit;
}
.index-news .container .lt .wrapper .block:hover {
  box-shadow: 5px 5px 8px rgba(1, 75, 3, 0.11);
  transform: translateY(-3px);
}
.index-news .container .lt .wrapper .block:hover .pic img {
  scale: 1.05;
}
.index-news .container .lt .wrapper .block:hover .title .more a {
  color: #9acc36;
}
.index-news .container .rt {
  width: 31.875%;
  padding: 1% 2.8125% 0;
  background: #9acc36;
  display: flex;
  flex-direction: column;
}
.index-news .container .rt .wrapper-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: clamp(20px, 2.083333vw, 40px);
  border-bottom: 3px solid #fff;
  padding-bottom: 3.809524%;
  margin-bottom: 6.666667%;
}
.index-news .container .rt .wrapper-title h3 {
  font-weight: 700;
}
.index-news .container .rt .wrapper-title a {
  font-size: 0.6em;
  color: #666;
  font-weight: 300;
}
.index-news .container .rt .wrapper-title a:hover {
  text-decoration: underline !important;
}
.index-news .container .rt .wrapper {
  position: relative;
  flex: 1;
}
.index-news .container .rt .wrapper .list {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-right: 5px;
}
.index-news .container .rt .wrapper .list::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}
.index-news .container .rt .wrapper .list::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}
.index-news .container .rt .wrapper .list::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #fff;
}
.index-news .container .rt .wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #fff;
  padding-bottom: 6.1905%;
  margin-bottom: 5.47619%;
}
.index-news .container .rt .wrapper .block:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.index-news .container .rt .wrapper .block .date {
  background-color: #363636;
  line-height: 1.2199;
  font-size: clamp(14px, 1.35416667vw, 26px);
  padding: 0 0.5em;
  text-align: center;
}
.index-news .container .rt .wrapper .block .date h4 {
  color: #fff;
  font-weight: 200;
}
.index-news .container .rt .wrapper .block .date h5 {
  font-size: clamp(10px, 1vw, 15px);
  color: #bbb;
  font-weight: 200;
}
.index-news .container .rt .wrapper .block p {
  flex: 1;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #363636;
  margin-left: 0.718em;
  line-height: 1.2821;
  max-height: 2.5642em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .container .rt .wrapper .block p a {
  color: inherit;
}
.index-news .container .rt .wrapper .block:hover p {
  color: #fff;
}
footer {
  background-color: #666;
}
footer .container {
  max-width: 1600px;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2.4375% 3.75% 1.875%;
  color: #bbb;
}
footer .footer-top .logo {
  width: 100%;
  margin-bottom: 1.0810811%;
}
footer .footer-top .info {
  width: 58.783784%;
}
footer .footer-top .info .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top .info .wrapper .block {
  min-width: 34%;
  max-width: 49%;
}
footer .footer-top .ewm {
  width: 33.7838%;
  text-align: center;
}
footer .footer-top .ewm img {
  max-width: 110px;
}
footer .footer-top h4 {
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 500;
  margin-bottom: 0.1em;
}
footer .footer-top p {
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.85;
}
footer .footer-bt {
  text-align: center;
  line-height: 1.6;
  font-size: clamp(12px, 1.2vw, 20px);
  color: #fff;
  border-top: 3px solid #aaa;
  padding: 1% 0;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: inherit;
  text-decoration: underline !important;
}
.inner-banner img {
  display: block;
  width: 100%;
}
.inner-content {
  margin: 2% 0 3%;
}
.inner-title {
  text-align: left;
  border-bottom: 0 !important;
}
.inner-title h3 {
  color: #363636;
  font-weight: 500;
}
.inner-title h5 {
  color: #9acc36;
  font-weight: 500;
  font-size: clamp(12px, 1.25vw, 24px);
}
.about-us {
  position: relative;
  overflow: hidden;
}
.about-us .inner-title h2 {
  font-size: clamp(24px, 4.166667vw, 80px);
  color: #fff;
  text-align: center;
  margin-top: 0.2875em;
}
.about-us .inner-title h2::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-color: #9acc36;
  height: 100%;
  width: 200%;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  line-height: 1.325;
}
.about-us .inner-title h2::after {
  font-size: 3.625em;
  top: -30%;
}
.about-us .index-title {
  padding-bottom: 1.666667%;
  border-bottom: 1px solid #666;
}
.about-us .about-intro {
  max-width: 1205px;
  margin: 0 auto;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #363636;
  font-weight: 400;
}
.about-us .about-intro b,
.about-us .about-intro strong {
  font-weight: 500;
}
.online-msg .wrapper {
  background-color: #fff;
  padding: 2.2395833% 0 2.8125%;
}
.online-msg .wrapper .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1420px;
}
.online-msg .wrapper .container .lt {
  width: 48.09859155%;
}
.online-msg .wrapper .container .lt .pic {
  width: 100%;
  height: 100%;
}
.online-msg .wrapper .container .lt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-msg .wrapper .container .rt {
  width: 46.26761%;
}
.online-msg .wrapper .container .rt h4 {
  color: #363636;
  font-size: clamp(16px, 1.458333vw, 28px);
  font-weight: 500;
  margin-bottom: 7.61035%;
}
.online-msg .wrapper .container .rt h4 img {
  width: 1.67857em;
  margin-right: 0.5714286em;
}
.online-msg .wrapper .container .rt form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.online-msg .wrapper .container .rt form input,
.online-msg .wrapper .container .rt form textarea {
  font-size: clamp(14px, 1.25vw, 24px);
  outline: none;
  color: #000;
  background-color: #f4f4f4;
  margin-bottom: 3.04414%;
}
.online-msg .wrapper .container .rt form input::placeholder,
.online-msg .wrapper .container .rt form textarea::placeholder {
  color: #919191;
}
.online-msg .wrapper .container .rt form input {
  width: 48.4018265%;
  height: 2.875em;
  padding: 0 1em;
}
.online-msg .wrapper .container .rt form textarea {
  width: 100%;
  padding: 1em;
}
.online-msg .wrapper .container .rt form button {
  width: 100%;
  cursor: pointer;
  outline: none;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  background-color: #9ad135;
  height: 2em;
  transition: all 0.5s;
}
.online-msg .wrapper .container .rt form button:hover {
  filter: brightness(90%);
}
.device-list .index-title {
  padding-bottom: 1.666667%;
  border-bottom: 1px solid #666;
}
.device-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1416px;
  margin: 0 auto;
}
.device-list .wrapper .block {
  width: 32.2740113%;
  margin-bottom: 1.55367232%;
}
.device-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.device-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.device-list .wrapper .block .pic:hover img {
  scale: 1.05;
}
.prod-list .index-title {
  padding-bottom: 1.666667%;
  border-bottom: 1px solid #666;
}
.prod-list .wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .wrapper .block {
  width: 32.25806452%;
  margin-bottom: 1.55367232%;
}
.prod-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.prod-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-list .wrapper .block .pic:hover img {
  scale: 1.05;
}
.news-list .index-title {
  padding-bottom: 1.666667%;
  border-bottom: 1px solid #666;
}
.news-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-list .wrapper .block {
  width: 31.8860244%;
	margin-bottom: 2.5%;
  background-color: #fff;
  transition: all 0.5s;
}
.news-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 98.0392157%;
}
.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: 1.1741683% 3.91389432% 1.76125%;
}
.news-list .wrapper .block .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.0769231em;
}
.news-list .wrapper .block .title p {
  font-size: clamp(12px, 1.1vw, 16px);
  color: #363636;
  font-weight: 300;
  line-height: 2;
  height: 4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list .wrapper .block .title .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.136752%;
}
.news-list .wrapper .block .title .more a {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 300;
  color: #666;
  transition: all 0.5s;
}
.news-list .wrapper .block .title .more span {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 300;
  color: #666;
}
.news-list .wrapper .block .title a {
  color: inherit;
}
.news-list .wrapper .block:hover {
  box-shadow: 5px 5px 8px rgba(1, 75, 3, 0.11);
  transform: translateY(-3px);
}
.news-list .wrapper .block:hover .pic img {
  scale: 1.05;
}
.news-list .wrapper .block:hover .title .more a {
  color: #9acc36;
}
.join-us .inner-title h3::before {
  display: none !important;
}
.join-us .index-title {
  text-align: left;
}
.join-us .index-title h3 {
  font-weight: 400;
}
.join-us .index-title h3::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 0.175em;
  height: 0.975em;
  background-color: #363636;
  margin-right: 1em;
}
.join-us .why-choose-us {
  margin-bottom: 5.5555556%;
}
.join-us .why-choose-us .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.join-us .why-choose-us .wrapper .block {
  width: 17.84722%;
}
.join-us .why-choose-us .wrapper .block .icon {
  border-bottom: 3px solid #00a9ce;
  font-size: clamp(30px, 2.9166667vw, 56px);
  line-height: 1;
  margin-bottom: 0.357143em;
}
.join-us .why-choose-us .wrapper .block .icon img {
  max-width: 1em;
  max-height: 1em;
  margin-bottom: 0.4643em;
  animation: bounce 1.5s infinite;
}
.join-us .why-choose-us .wrapper .block .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  text-align: justify;
  line-height: 1.44444;
}
.join-us .why-choose-us .wrapper .block:nth-child(2) .icon {
  border-color: #9acc36;
}
.join-us .why-choose-us .wrapper .block:nth-child(2) .icon img {
  animation-delay: 0.2s;
}
.join-us .why-choose-us .wrapper .block:nth-child(3) .icon {
  border-color: #9b26b6;
}
.join-us .why-choose-us .wrapper .block:nth-child(3) .icon img {
  animation-delay: 0.4s;
}
.join-us .why-choose-us .wrapper .block:nth-child(4) .icon {
  border-color: #fa651e;
}
.join-us .why-choose-us .wrapper .block:nth-child(4) .icon img {
  animation-delay: 0.6s;
}
.recruitment .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruitment .wrapper .lt {
  background-color: #fff;
  width: 17.9166667%;
  padding: 0.277778% 1.111111%;
}
.recruitment .wrapper .lt h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
  font-weight: 700;
  color: #363636;
  margin-bottom: 1em;
}
.recruitment .wrapper .lt h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #363636;
  font-weight: 700;
  margin-bottom: 1em;
}
.recruitment .wrapper .lt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}
.recruitment .wrapper .lt ul li {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #363636;
  transition: all 0.5s;
}
.recruitment .wrapper .lt ul li:first-child {
  width: 100%;
}
.recruitment .wrapper .lt ul li a {
  color: inherit;
}
.recruitment .wrapper .lt ul li:hover {
  color: #9acc36;
}
.recruitment .wrapper .lt ul .active {
  color: #9acc36;
}
.recruitment .wrapper .rt {
  width: 80.1388889%;
}
.recruitment .wrapper .rt .total-num {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #363636;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.40625em;
}
.recruitment .wrapper .rt .total-num span {
  font-size: clamp(16px, 1.5625vw, 30px);
  line-height: 1;
}
.recruitment .wrapper .rt .list .block {
  background-color: #fff;
  padding: 4px 2.50202% 2.3406%;
  margin-bottom: 1.61421%;
  cursor: pointer;
}
.recruitment .wrapper .rt .list .block:last-child {
  margin-bottom: 0;
}
.recruitment .wrapper .rt .list .block h4 {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #363636;
  font-weight: 700;
  margin-bottom: 0.71875em;
  display: flex;
  align-items: center;
}
.recruitment .wrapper .rt .list .block h4 a {
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.recruitment .wrapper .rt .list .block h4 span {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;
  margin-left: 1em;
  margin-top: 0.5em;
  white-space: nowrap;
}
.recruitment .wrapper .rt .list .block .brief {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #363636;
  font-size: clamp(12px, 1.2vw, 20px);
}
.recruitment .wrapper .rt .list .block .brief p {
  flex: 1;
  margin-right: 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.recruitment .wrapper .rt .list .block .brief p span::after {
  display: inline-block;
  content: "/";
  margin: 0 1.35em;
}
.recruitment .wrapper .rt .list .block .brief p span:last-child::after {
  display: none;
}
.recruitment .wrapper .rt .list .block .brief span {
  white-space: nowrap;
}
.recruitment .wrapper .rt .list .block:hover h4 {
  color: #9acc36;
}
.recruitment .wrapper .rt .list .block .content {
  display: none;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #666;
  padding: 1em 1em;
  margin-top: 1em;
  font-weight: 300;
  border-top: 1px solid #eee;
}
.recruitment .wrapper .rt .list .block .content b,
.recruitment .wrapper .rt .list .block .content strong {
  font-size: 1.2em;
  font-weight: 700;
}
.bread-crumb {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #000;
  border-bottom: 1px solid #999;
}
.bread-crumb .container {
  min-height: 3.3em;
  display: flex;
  align-items: center;
}
.bread-crumb i {
  margin-right: 0.5em;
}
.bread-crumb a {
  color: inherit;
}
.bread-crumb a:hover {
  text-decoration: underline !important;
}
.news-detail {
  margin: 2% 0 3%;
}
.news-detail .news-title {
  text-align: center;
  margin-bottom: 2%;
}
.news-detail .news-title h3 {
  font-size: clamp(18px, 1.40625vw, 27px);
  color: #444;
}
.news-detail .news-title h5 {
  font-size: clamp(12px, 1vw, 19px);
  color: #999;
  font-weight: 300;
}
.news-detail article {
  padding: 0 4.83871%;
  font-size: clamp(14px, 1.2vw, 19px);
  color: #333;
  line-height: 2.84211;
}
.news-detail .article-tab {
  margin-top: 3%;
  padding-top: 2%;
  border-top: 1px solid #ddd;
}
.news-detail .article-tab p {
  font-size: clamp(14px, 1.2vw, 19px);
  color: #333;
  margin-bottom: 0.5em;
  transition: all 0s;
}
.news-detail .article-tab p a {
  color: inherit;
  transition: all 0.5s;
}
.news-detail .article-tab p a:hover {
  color: #056af8;
}
