@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;
}
.wow {
  visibility: hidden;
}
html,
body {
  font-family: var(--Noto-Sans-SC);
}
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: 173px;
  width: 100%;
}
.container {
  max-width: 1440px;
  width: 80%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 117px;
}
header .header-top .logo {
  width: 50%;
}
header .header-top .logo img {
  transition: all 0.5s;
}
header .header-top .info {
  display: flex;
  align-items: flex-start;
  font-size: clamp(14px, 1.1vw, 18px);
}
header .header-top .info img {
  width: 2.33333333em;
  margin-right: 9px;
}
header .header-top .info span {
  font-size: clamp(12px, 1vw, 14px);
  color: #626262;
  line-height: 1;
}
header .header-top .info h4 {
  color: #0d6c58;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.55em;
}
header .header-top .info h4:last-child {
  margin-bottom: 0;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.1vw, 18px);
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
header .lv1 > li > a {
  display: block;
  width: 100%;
  color: #fff;
  transition: all 0.5s;
  text-transform: uppercase;
  line-height: 56px;
  padding: 0 1em;
  text-align: center;
}
header .lv1 > li > a:hover {
  background-color: #00af73;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  pointer-events: all;
}
header .lv1 .lang {
  color: #fff;
  margin-right: 5%;
}
header .lv1 .lang img {
  margin-right: 6px;
}
header .lv1 .lang a {
  width: auto;
  padding: 0;
  background-color: transparent !important;
}
header .lv1 .lang a:hover {
  text-decoration: underline !important;
}
header .lv1 .lang .on {
  color: #fff;
  font-weight: 700;
}
header .lv1 > .active > a {
  color: #fff;
  background-color: #00af73;
  font-weight: 700;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 5%);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  min-width: 100%;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 10px;
  min-width: 100%;
}
header .lv2 > li a {
  display: block;
  width: 100%;
  font-size: clamp(14px, 1vw, 16px);
  color: #fff;
  transition: all 0.5s;
}
header .lv2 > li a:hover {
  background-color: #00af73;
}
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: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d6c58;
}
.pagination {
  margin-top: 2%;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  border: 1px solid #dedede;
  padding: 0 0.25em;
  min-width: 2em;
  height: 2em;
  margin: 2.5px;
  color: #a6a6a6;
  border-radius: 2px;
  transition: all 0.5s;
}
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  border: 1px solid transparent;
  padding: 0 0.25em;
  min-width: 2em;
  height: 2em;
  margin: 2.5px;
  background-color: #00af73;
  color: #fff;
  border-radius: 2px;
  transition: all 0.5s;
}
.pagination a:hover {
  color: #fff;
  background-color: #00af73;
  border-color: transparent;
}
.index-banner {
  position: relative;
}
.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-active img {
  transform: scale(1);
}
.index-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 3s;
}
.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 {
  width: auto;
  bottom: 7%;
  left: 12.5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 1em;
  height: 6px;
  opacity: 1;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 6px;
  border-radius: 3px;
  font-size: clamp(20px, 5.1041667vw, 98px);
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00af73;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(20px, 3.07291667vw, 59px);
  color: #fff;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  font-size: inherit;
}
.index-title {
  text-align: center;
  margin-bottom: 3%;
}
.index-title h3 {
  font-size: clamp(20px, 2.08333333vw, 40px);
  color: #333;
  font-weight: 700;
  line-height: 1.45;
}
.index-prod {
  margin: 4.1667% 0;
}
.index-prod .prod-tab {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(14px, 1vw, 16px);
  margin: 0 auto 3.264%;
  gap: 1.111111em 1em;
}
.index-prod .prod-tab > li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
  background-color: #f2f2f2;
  line-height: 2.6666667em;
  padding: 0 0.75em;
  border-radius: 1.33333335em;
  width: calc((100% - 5 * 1em) / 6);
  transition: all 0.5s;
  font-weight: 700;
}
.index-prod .prod-tab > li a {
  color: inherit;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-prod .prod-tab > li i {
  color: #b1b1b1;
  transition: all 0.5s;
  margin-left: 0.3889em;
}
.index-prod .prod-tab > li:hover {
  background-color: #0d6c58;
  color: #fff;
}
.index-prod .prod-tab > li:hover i {
  color: #fff;
}
.index-prod .prod-tab > li:hover .sub-tab {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0%);
}
.index-prod .prod-tab .sub-tab {
  position: absolute;
  top: 100%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 5%);
  transition: all 0.5s;
  font-size: clamp(12px, 1vw, 14px);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 0.714286em 1.4286em;
  z-index: 2;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.18);
}
.index-prod .prod-tab .sub-tab li {
  color: #333;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 0.5em;
  transition: all 0.5s;
}
.index-prod .prod-tab .sub-tab li:last-child {
  margin-bottom: 0;
}
.index-prod .prod-tab .sub-tab li:hover {
  color: #0d6c58;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 66.764706%;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(12px, 1.2vw, 20px);
  color: #333;
  height: 5em;
  background-color: #f2f2f2;
  padding: 0 1em;
}
.index-prod .swiper .title h4 {
  font-weight: 700;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-prod .swiper .title i {
  background-color: #e5e5e5;
  width: 2.45em;
  height: 2.45em;
  text-align: center;
  line-height: 2.45;
  border-radius: 50%;
  rotate: -45deg;
  transition: all 0.5s;
}
.index-prod .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.index-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .swiper .swiper-slide:hover .title h4 {
  color: #337766;
}
.index-prod .swiper .swiper-slide:hover .title i {
  background-color: #00af73;
  color: #fff;
  rotate: 0deg;
}
.index-prod .swiper-pagination {
  position: relative;
  line-height: 1;
  bottom: 0;
  font-size: clamp(11px, 1.2vw, 22px);
  margin-top: 2.2222%;
}
.index-prod .swiper-pagination .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  transition: all 0.5s;
  background-color: #d9d9d9;
}
.index-prod .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00af73;
}
.index-about {
  position: relative;
  overflow: hidden;
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 8.85416667% 0;
}
.index-about .container {
  max-width: 1640px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-about .container .lt {
  width: 50.304878%;
}
.index-about .container .lt .index-title {
  text-align: left;
}
.index-about .container .lt .index-title h3 {
  color: #0d6c58;
}
.index-about .container .lt h4 {
  font-size: clamp(16px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1.5%;
}
.index-about .container .lt .brief {
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  line-height: 1.8;
}
.index-about .container .lt ul {
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  margin-top: 4%;
}
.index-about .container .lt ul li {
  line-height: 1.45;
  margin-bottom: 0.5em;
}
.index-about .container .lt ul li img {
  width: 1.375em;
  margin-right: 0.625em;
}
.index-about .container .lt ul li b {
  font-weight: 700;
}
.index-about .container .lt .more {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  background-color: #00af73;
  line-height: 2.8;
  border-radius: 1.4em;
  padding: 0 1.8em;
  margin-top: 4%;
}
.index-about .container .lt .more i {
  margin-left: 1.85em;
}
.index-about .container .lt .more::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
}
.index-about .container .lt .more:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: all 0.5s;
}
.index-about .container .rt {
  width: 46.3414634%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-about .container .rt i {
  position: relative;
  font-size: clamp(30px, 7.1875vw, 138px);
  width: 1em;
  height: 1em;
  color: #0d6c58;
  line-height: 1;
  z-index: 1;
}
.index-about .container .rt i em {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: fade-out 2s linear infinite;
  z-index: -1;
}
.index-about .container .rt i em:nth-child(2) {
  animation-delay: -0.6666s;
}
.index-about .container .rt i em:nth-child(3) {
  animation-delay: -1.3333s;
}
@keyframes fade-out {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.index-slogan {
  position: relative;
  overflow: hidden;
  background: url(../images/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  padding: 4.94791667% 0 2.86458333%;
}
.index-slogan .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
  line-height: 1.45;
}
.index-slogan .container .lt {
  width: 72.222222%;
}
.index-slogan .container .lt h2 {
  font-size: clamp(18px, 2.08333333vw, 40px);
  font-weight: 700;
  margin-bottom: 0.35em;
}
.index-slogan .container .lt h5 {
  font-size: clamp(12px, 1.1vw, 18px);
}
.index-slogan .container .rt {
  width: 20.833333%;
}
.index-slogan .container .rt h4 {
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 700;
  margin-bottom: 0.35em;
}
.index-slogan .container .rt h3 {
  font-weight: 700;
}
.index-slogan .container .rt .tel {
  position: relative;
  font-size: clamp(16px, 1.875vw, 36px);
  line-height: 1.3;
}
.index-slogan .container .rt .tel::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.63888889em;
  height: 1.63888889em;
  background: url(../images/index-slogan-icon.png) no-repeat;
  background-size: contain;
  left: -0.625em;
  top: 50%;
  transform: translate(-100%, -50%);
}
.index-app {
  position: relative;
  overflow: hidden;
  padding: 4.1667% 0 7.60416667%;
}
.index-app .container {
  position: relative;
  z-index: 1;
}
.index-app .container .index-title {
  text-align: left;
}
.index-app .container .index-title h3 {
  color: #fff;
}
.index-app .index-title {
  margin-bottom: 5.5556%;
}
.index-app .appSwiper {
  margin-bottom: 11.388889%;
}
.index-app .appSwiper .title {
  max-width: 526px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 3.055556%;
  transition: all 1s;
  opacity: 0;
}
.index-app .appSwiper .title h3 {
  font-size: clamp(16px, 1.5625vw, 30px);
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
.index-app .appSwiper .title h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  font-family: var(--Montserrat);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.45;
}
.index-app .appSwiper .title a {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  display: inline-block;
  margin-top: 1.5em;
}
.index-app .appSwiper .title a i {
  background-color: #00af73;
  width: 2.9em;
  height: 2.9em;
  line-height: 2.9;
  text-align: center;
  border-radius: 50%;
}
.index-app .appSwiper .title a:hover i {
  animation: rubberBand 1s;
}
.index-app .appSwiper .swiper-slide-active .title {
  opacity: 1;
  animation: fadeInRight 1s;
}
.index-app .bgSwiper {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.index-app .bgSwiper .bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 3s;
  scale: 1.2;
}
.index-app .bgSwiper::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, rgba(11, 85, 69, 0.3), transparent, #0b5545);
  z-index: 1;
}
.index-app .bgSwiper .swiper-slide-active .bg {
  scale: 1;
}
.index-app .app-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 1.2vw, 20px);
}
.index-app .app-tab .block {
  position: relative;
  text-align: center;
  cursor: pointer;
}
.index-app .app-tab .block .icon {
  width: 2.85em;
  height: 2.85em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.index-app .app-tab .block .icon img {
  width: 1.6em;
  height: 1.6em;
  object-fit: scale-down;
}
.index-app .app-tab .block h4 {
  position: absolute;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  padding-top: 0.6em;
  width: 10em;
  left: 50%;
  transform: translate(-50%, 0);
	font-size: clamp(12px, 1vw, 16px);
}
.index-app .app-tab .block:hover .icon {
  animation: bounce 1s;
}
.index-app .app-tab .active .icon {
  background-color: #00af73;
}
.index-app .app-tab em {
  display: block;
  flex: 1;
  border-top: 1px dashed #fff;
  margin: 0 0.25em;
}
.index-app .app-tab em:last-of-type {
  display: none;
}
.index-serv {
  margin: 4.1667% 0;
}
.index-serv .serv-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3.05%;
}
.index-serv .serv-tab li {
  position: relative;
  overflow: hidden;
  text-align: center;
  font-size: clamp(14px, 1.25vw, 24px);
  background-color: #e5e5e5;
  border-radius: 0.25em;
  width: 24.0972222%;
  padding: 0.8333em 0.8333em 1.0833em;
  cursor: pointer;
  transition: all 0.5s;
}
.index-serv .serv-tab li img {
  width: 2.08333333em;
  height: 2.08333333em;
  object-fit: scale-down;
  transition: all 0.5s;
}
.index-serv .serv-tab li h4 {
  color: #333;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.5833em;
}
.index-serv .serv-tab li::after {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border: 0.916667em solid transparent;
  border-top: 0;
  border-bottom: 0.666667em solid #fff;
  transition: all 0.5s;
}
.index-serv .serv-tab li:hover img {
  animation: swing 1s;
}
.index-serv .serv-tab .active {
  background-color: #0d6c58;
}
.index-serv .serv-tab .active img {
  filter: contrast(0) brightness(200%);
}
.index-serv .serv-tab .active h4 {
  color: #fff;
}
.index-serv .serv-tab .active::after {
  transform: translate(-50%, 0);
}
.index-serv .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-serv .swiper .swiper-slide .lt {
  position: relative;
  width: 46.111111%;
}
.index-serv .swiper .swiper-slide .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 64.90964%;
  border-radius: 6px;
}
.index-serv .swiper .swiper-slide .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-serv .swiper .swiper-slide .lt::after {
  position: absolute;
  display: block;
  content: "";
  font-size: clamp(20px, 2.55208333vw, 49px);
  width: 1em;
  height: 3.2857143em;
  background-color: #00af73;
  z-index: 1;
  right: 0;
  bottom: 0;
  transform: translate(50%, -30%);
}
.index-serv .swiper .swiper-slide .rt {
  width: 46.111111%;
}
.index-serv .swiper .swiper-slide .rt .title {
  font-size: clamp(16px, 1.875vw, 36px);
  color: #0d6c58;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1em;
}
.index-serv .swiper .swiper-slide .rt .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  line-height: 1.6667;
}
.index-process {
  background: url(../images/index-process-bg.jpg) no-repeat;
  background-size: cover;
  padding: 3.125% 0 5.88541667%;
}
.index-process .index-title {
  text-align: left;
}
.index-process .index-title h3 {
  color: #fff;
}
.index-process .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 1.25vw, 24px);
}
.index-process .wrapper .block {
  position: relative;
  text-align: center;
}
.index-process .wrapper .block .icon {
  position: relative;
  width: 4em;
  height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}
.index-process .wrapper .block .icon::after {
  position: absolute;
  display: block;
  content: "";
  width: 121.875%;
  height: 121.875%;
  transition: all 0.5s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
}
.index-process .wrapper .block .icon img {
  width: 2em;
  height: 2em;
  object-fit: scale-down;
}
.index-process .wrapper .block h4 {
  position: absolute;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  width: 130%;
  left: 50%;
  transform: translate(-50%, 0);
  padding-top: 1.5em;
	font-size: clamp(12px, 1vw, 16px);
}
.index-process .wrapper .block:hover .icon img {
  animation: swing 1s;
}
.index-process .wrapper .block:hover .icon::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
}
.index-process .wrapper em {
  width: 1.75em;
}
.index-more {
  display: inline-block;
  font-size: clamp(14px, 1vw, 20px);
  color: #333 !important;
  background-color: #fff;
  padding: 0 0 0 1.3em;
  line-height: 2.45;
  border-radius: 1.225em;
  transition: all 0.5s;
}
.index-more i {
  color: #fff;
  width: 2.45em;
  height: 2.45em;
  line-height: 2.45;
  border-radius: 50%;
  background-color: #00af73;
  text-align: center;
  margin-left: 1em;
  transition: all 0.5s;
}
.index-more:hover i {
  animation: swing 1s;
}
.index-news {
  margin: 4.1667% 0;
}
.index-news .index-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 47.6388889%;
}
.index-news .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 58.017493%;
  border-radius: 8px;
  margin-bottom: 3.4985423%;
}
.index-news .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .lt .title h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5em;
}
.index-news .wrapper .lt .title p {
  font-size: clamp(12px, 1vw, 16px);
  color: #333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index-news .wrapper .lt .title a {
  color: inherit;
}
.index-news .wrapper .lt:hover .pic img {
  scale: 1.05;
}
.index-news .wrapper .lt:hover .title h4 {
  color: #0d6c58;
}
.index-news .wrapper .rt {
  width: 47.6388889%;
  display: flex;
  flex-direction: column;
}
.index-news .wrapper .rt .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1% 0;
  border-top: 1px solid #c9c9c9;
  flex: 1;
}
.index-news .wrapper .rt .title h4 {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  flex: 1;
  margin-right: 18.95044%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .rt .title h4 a {
  color: inherit;
}
.index-news .wrapper .rt .title span {
  font-size: clamp(12px, 1vw, 16px);
  color: #a0a0a0;
  white-space: nowrap;
}
.index-news .wrapper .rt .title:hover h4 {
  color: #0d6c58;
}
.index-news .wrapper .rt .title:last-child {
  border-bottom: 1px solid #c9c9c9;
}
footer {
  background: url(../images/footer-bg.jpg);
}
footer .footer-top {
  padding: 4.1667% 0 2.6041667%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top .container .logo {
  width: 27.083333%;
}
footer .footer-top .container nav {
  display: flex;
  justify-content: space-between;
  width: 33.333333%;
  gap: 1em;
}
footer .footer-top .container nav .block:nth-child(2) ul {
  columns: 2;
  column-gap: 3em;
}
footer .footer-top .container .info {
  width: 29.1666667%;
}
footer .footer-top .container h4 {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
}
footer .footer-top .container h4::after {
  display: block;
  content: "";
  width: 1.45em;
  height: 3px;
  border-radius: 1.5em;
  background-color: #00af73;
  margin-top: 0.25em;
}
footer .footer-top .container p {
  line-height: 1.45;
  margin-bottom: 0.55em;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
}
footer .footer-top .container ul {
  font-size: clamp(14px, 1.1vw, 18px);
}
footer .footer-top .container ul li {
  color: #fff;
  line-height: 1.45;
  margin-bottom: 0.55em;
}
footer .footer-top .container ul li a {
  color: inherit;
}
footer .footer-top .container ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-bt {
  background-color: #0d6c58;
  text-align: center;
  font-size: clamp(12px, 1.1vw, 18px);
  line-height: 1.45;
  color: #fff;
  padding: 0.55% 0;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
.inner-banner {
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}
.inner-banner img {
  position: relative;
  display: block;
  width: 100%;
}
.bread-crumb {
  background-color: #f2f2f2;
}
.bread-crumb .container {
  display: flex;
  justify-content: space-between;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.45;
  min-height: 5em;
  color: #333;
}
.bread-crumb .container i {
  color: #999;
  margin-right: 0.25em;
}
.bread-crumb .container p {
  align-self: center;
}
.bread-crumb .container p a {
  color: inherit;
  transition: all 0.5s;
  margin: 0.25em;
}
.bread-crumb .container p a:hover {
  color: #00af73;
}
.join-us {
  position: relative;
  overflow: hidden;
  margin: 4.1667% 0 6.51041667%;
}
.join-us .wrapper {
  position: relative;
  background: url(../images/join-bg.jpg) no-repeat;
  background-size: cover;
  margin-right: 4.166667%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 10px;
  padding: 7.6388889% 0;
}
.join-us .wrapper .block {
  position: relative;
  overflow: hidden;
  float: right;
  width: 50.2173913%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-right: -4.3478261%;
  padding: 3.69565217% 3.69565217%;
}
.join-us .wrapper .block h3 {
  font-size: clamp(16px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.75em;
}
.join-us .wrapper .block h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #00af73;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.85em;
}
.join-us .wrapper .block p {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #3d3d3d;
  line-height: 1.45;
  margin-bottom: 0.55em;
}
.join-us .wrapper .block .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(100px, 15.208333vw, 292px);
  transform: translate(10%, 20%);
}
.recruit-list {
  margin-bottom: 5.7291667%;
}
.recruit-list ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: clamp(12px, 1.2vw, 20px);
  color: #333;
  padding: 0.25em 3.958333%;
  line-height: 1.45;
  min-height: 3.85em;
  border-bottom: 1px solid #d8d8d8;
}
.recruit-list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit-list ul li:nth-child(1) {
  justify-content: flex-start;
  text-align: left;
  width: 19.60784314%;
}
.recruit-list ul li:nth-child(2) {
  width: 22.6244344%;
}
.recruit-list ul li:nth-child(3) {
  width: 15.08295626%;
}
.recruit-list ul li:nth-child(4) {
  width: 11.3122172%;
}
.recruit-list .title ul {
  background-color: #f2f2f2;
  border-radius: 0.2em;
  border-top: 0.2em solid #0d6c58;
  border-bottom: 0;
}
.recruit-list .title ul li {
  font-weight: 700;
}
.recruit-list .row ul {
  min-height: 4.4em;
  cursor: pointer;
}
.recruit-list .row ul i {
  display: none;
  color: #0d6c58;
}
.recruit-list .row ul i:nth-child(1) {
  display: block;
}
.recruit-list .row .content-wrapper {
  display: none;
}
.recruit-list .row .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(10px, 1.1vw, 18px);
  color: #3d3d3d;
  line-height: 1.45;
  border-bottom: 1px solid #d8d8d8;
  padding: 1em 3.16667em 1.5556em;
}
.recruit-list .row .content article {
  width: 47.66214178%;
}
.recruit-list .row .content b,
.recruit-list .row .content strong {
  font-weight: 700;
}
.recruit-list .active ul i {
  display: block;
}
.recruit-list .active ul i:nth-child(1) {
  display: none;
}
.app-list {
  margin: 4.16667% 0;
}
.app-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app-list .wrapper .block {
  position: relative;
  overflow: hidden;
  font-size: clamp(12px, 1.2vw, 20px);
  width: 48.6111111%;
  background-color: #f2f2f2;
  border-radius: 1em;
  margin-bottom: 3.3333%;
}
.app-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 60.857143%;
}
.app-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.app-list .wrapper .block .title {
  padding: 1.25em 1em 1em;
  line-height: 1.45;
  text-align: center;
  min-height: 6.75em;
}
.app-list .wrapper .block .title h4 {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  margin-bottom: 0.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-list .wrapper .block .title h5 {
  color: #0d6c58;
  font-weight: 500;
  font-family: var(--Montserrat);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-list .wrapper .block:hover .pic img {
  scale: 1.05;
}
.news-list {
  background-color: #fff;
  padding: 4.16667% 0 6.25%;
}
.news-list .block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5%;
}
.news-list .block .lt {
  width: 30.625%;
}
.news-list .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 61.2244898%;
  border-radius: 10px;
}
.news-list .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s;
}
.news-list .block .rt {
  width: 60.625%;
  padding: 1.3888889% 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list .block .rt .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 1.45;
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5em;
}
.news-list .block .rt .title p {
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  line-height: 1.375;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2.75em;
}
.news-list .block .rt .title a {
  color: inherit;
}
.news-list .block .rt .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.375;
  font-size: clamp(12px, 1vw, 16px);
}
.news-list .block .rt .more span {
  color: #95A1BB;
}
.news-list .block .rt .more a {
  color: #666;
  transition: all 0.5s;
}
.news-list .block:hover .lt .pic img {
  scale: 1.05;
}
.news-list .block:hover .rt .title h4 {
  color: #0d6c58;
}
.news-list .block:hover .rt .more a {
  color: #00af73;
}
.news-detail {
  padding: 4.16667% 0;
  background-color: #fff;
}
.news-detail .title {
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 3.26388889%;
}
.news-detail .title h3 {
  font-size: clamp(18px, 1.875vw, 36px);
  color: #333;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.2em;
}
.news-detail .title h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
}
.news-detail .title h5 i {
  color: #0d6c58;
  font-size: 1.142857em;
  margin-right: 0.75em;
}
.news-detail article {
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  line-height: 1.875;
}
.article-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4.0277778%;
}
.article-tab p {
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1em;
}
.article-tab p a {
  color: inherit;
  transition: all 0.5s;
}
.article-tab p a:hover {
  color: #0d6c58;
}
.contact-info {
  padding: 4.16667% 0;
}
.contact-info .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact-info .wrapper .lt {
  width: 45.555556%;
}
.contact-info .wrapper .lt .block {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.1vw, 18px);
  background-color: #f2f2f2;
  border-radius: 10px;
  transition: all 0.5s;
  margin-bottom: 3.0487805%;
  padding: 1.52439% 2% 1.52439% 5.0304878%;
}
.contact-info .wrapper .lt .block:last-child {
  margin-bottom: 0;
}
.contact-info .wrapper .lt .block .icon {
  width: 4.44444444em;
  height: 4.44444444em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EBEBEB;
  border-radius: 50%;
  margin-right: 1.2222em;
  transition: all 0.5s;
}
.contact-info .wrapper .lt .block .icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.contact-info .wrapper .lt .block h4 {
  line-height: 1.25;
  color: #333;
  flex: 1;
}
.contact-info .wrapper .lt .block:hover {
  background-color: #0d6c58;
}
.contact-info .wrapper .lt .block:hover .icon {
  background-color: #fff;
}
.contact-info .wrapper .lt .block:hover h4 {
  color: #fff;
}
.contact-info .wrapper .rt {
  width: 52.0138889%;
}
.contact-info .wrapper .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 64.48598131%;
  border-radius: 20px;
}
.contact-info .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 110%;
  object-fit: cover;
  border-radius: 20px;
}
.online-msg {
  background-color: #ededed;
  padding: 2.5% 0 3.75%;
}
.online-msg form {
  font-size: clamp(14px, 1vw, 16px);
}
.online-msg form .wrapper {
  columns: 2;
  column-gap: 3.625em;
}
.online-msg form input,
.online-msg form textarea {
  display: block;
  outline: none;
  width: 100%;
  color: #333;
  height: 3.75em;
  margin-bottom: 1.25em;
  border-radius: 0.375em;
  padding: 1.1875em 1em;
  transition: all 0.5s;
}
.online-msg form input::placeholder,
.online-msg form textarea::placeholder {
  color: #9EA0A4;
}
.online-msg form input:focus,
.online-msg form textarea:focus {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.online-msg form textarea {
  height: 8.75em;
}
.online-msg form button {
  cursor: pointer;
  margin-top: 2.875em;
  color: #fff;
  background-color: #00af73;
  padding: 0 3.25em;
  height: 3.125em;
  border-radius: 1.5625em;
  transition: all 0.5s;
}
.online-msg form button:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.online-msg form .code-row {
  position: relative;
}
.online-msg form .code-row .code {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  max-height: 100%;
}
.online-msg form .code-row .code img {
  max-height: 100%;
}
.online-msg form .btn-row {
  text-align: center;
}
.our-location {
  background-color: #fff;
  padding: 4.1667% 0;
}
.our-location .map {
  width: 100%;
  height: clamp(300px, 31.7708333vw, 610px);
}
.our-location .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.about-intro {
  margin: 4.1667% 0;
}
.about-intro .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4.1667%;
}
.about-intro .block:last-child {
  margin-bottom: 0;
}
.about-intro .block .lt {
  width: 47.60416667%;
  padding: 2% 0 2% 12.5%;
}
.about-intro .block .lt .index-title {
  text-align: left;
}
.about-intro .block .lt .brief {
  font-size: clamp(14px, 1vw, 16px);
  color: #3d3d3d;
  line-height: 1.45;
}
.about-intro .block .rt {
  width: 50%;
}
.about-intro .block .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 49.1666667%;
}
.about-intro .block .rt .pic img,
.about-intro .block .rt .pic video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro .block .rt .pic .play-btn {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10px, 1.25vw, 24px);
  line-height: 1;
  width: 4em;
  height: 4em;
}
.about-intro .block:nth-child(even) {
  flex-direction: row-reverse;
}
.about-intro .block:nth-child(even) .lt {
  padding: 2% 12.5% 2% 0;
}
.about-culture {
  margin-bottom: 4.1667%;
}
.about-culture .wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.73611111%;
}
.about-culture .wrapper .block {
  position: relative;
  overflow: hidden;
  height: 25.83333vw;
  border-radius: 10px;
  flex: 1;
  transition: all 0.8s;
}
.about-culture .wrapper .block img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-culture .wrapper .block .title {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  font-weight: 700;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.45;
  padding: 0 0.5em 2em;
  background: linear-gradient(180deg, rgba(13, 108, 88, 0) 2%, #0D6C58 99%);
  transition: all 1s;
}
.about-culture .wrapper .block .mask {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5em 1.75em;
  font-size: clamp(14px, 1.25vw, 24px);
  background: linear-gradient(179deg, #0D6C58 3%, rgba(13, 108, 88, 0) 99%);
  color: #fff;
  line-height: 1.45;
  transition: all 0.5s;
  transform: translate(0, -100%);
}
.about-culture .wrapper .block .mask h3 {
  font-weight: 700;
  margin-bottom: 0.625em;
}
.about-culture .wrapper .block .mask p {
  font-size: clamp(12px, 1vw, 16px);
}
.about-culture .wrapper .block:hover {
  flex: 1.89247312;
}
.about-culture .wrapper .block:hover .title {
  transform: translate(0, 100%);
}
.about-culture .wrapper .block:hover .mask {
  transform: translate(0, 0);
  transition-delay: 0.3s;
}
.factory-workshop {
  margin-bottom: 4.1667%;
}
.factory-workshop .swiper .swiper-slide {
  width: 45.208333%;
}
.factory-workshop .swiper .swiper-slide-active .pic {
  box-shadow: 0px 0px 1.0416667vw 0px rgba(0, 0, 0, 0.3);
}
.factory-workshop .swiper .swiper-slide-active .pic img {
  filter: brightness(100%);
}
.factory-workshop .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 69.431644%;
  border-radius: 10px;
  margin: 1.0416667vw;
  transition: all 0.5s;
}
.factory-workshop .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: all 0.5s;
}
.factory-workshop .swiper .swiper-button-prev,
.factory-workshop .swiper .swiper-button-next {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  font-weight: 700;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #00af73;
  margin: 0;
  transform: translate(0, -70%);
}
.factory-workshop .swiper .swiper-button-prev::after,
.factory-workshop .swiper .swiper-button-next::after {
  font-size: inherit;
}
.factory-workshop .swiper .swiper-button-prev {
  left: 27%;
}
.factory-workshop .swiper .swiper-button-next {
  right: 24%;
}
.factory-workshop .swiper .swiper-pagination {
  position: relative;
  line-height: 1;
  bottom: 0;
  font-size: clamp(11px, 1.2vw, 22px);
  margin-top: 2.2222%;
}
.factory-workshop .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  transition: all 0.5s;
  background-color: #d9d9d9;
}
.factory-workshop .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00af73;
}
.prod-list {
  padding: 2.0833% 0 3.4375%;
  background-color: #fff;
}
.prod-list .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .container aside {
  width: 20.83333333%;
}
.prod-list .container aside .aside-title {
  font-size: clamp(18px, 1.25vw, 24px);
  color: #fff;
  font-weight: 700;
  background-color: #0d6c58;
  line-height: 2.333333;
  padding: 0 1.333333em;
  border-radius: 10px 10px 0 0;
}
.prod-list .container aside .aside-footer {
  background-color: #f2f2f2;
  border-radius: 0 0 10px 10px;
  margin-top: 2.29166667vw;
}
.prod-list .container aside .aside-footer .text {
  font-size: clamp(12px, 1vw, 16px);
  color: #3d3d3d;
  line-height: 1.45;
  padding: 1.375em 1.5em 1.375em 1.875em;
}
.prod-list .container aside .aside-footer .text p {
  position: relative;
  margin-bottom: 0.5em;
}
.prod-list .container aside i {
  display: inline-block;
  font-size: 12px !important;
  transition: all 0.5s;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  cursor: pointer;
}
.prod-list .container aside .aside-lv1 {
  font-size: clamp(16px, 1.2vw, 18px);
  background-color: #f2f2f2;
  line-height: 1.5;
  border-radius: 0 0 10px 10px;
}
.prod-list .container aside .aside-lv1 > li {
  color: #333;
  font-weight: 700;
}
.prod-list .container aside .aside-lv1 > li a {
  color: inherit;
  flex: 1;
  margin-right: 0.5em;
  transition: all 0.5s;
}
.prod-list .container aside .aside-lv1 > li a:hover {
  color: #00af73;
}
.prod-list .container aside .aside-lv1 > li i {
  color: #a6a6a6;
}
.prod-list .container aside .aside-lv1 > li > div {
  display: flex;
  align-items: center;
  padding: 0.25em 0.25em 0.25em 0.3333em;
  min-height: 2.6666667em;
}
.prod-list .container aside .aside-lv1 > .active {
  color: #00af73;
}
.prod-list .container aside .aside-lv1 > .active > div > i {
  rotate: 90deg;
  color: #00af73;
}
.prod-list .container aside .aside-lv2 {
  display: none;
  font-size: clamp(14px, 1.1vw, 16px);
  padding-bottom: 0.75em;
}
.prod-list .container aside .aside-lv2 > li {
  color: #666;
  padding: 0.25em 0.5em 0.25em 2em;
  font-weight: 400;
}
.prod-list .container aside .aside-lv2 > li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 0;
}
.prod-list .container aside .aside-lv2 > .active {
  color: #00af73;
}
.prod-list .container aside .aside-lv2 > .active > div > i {
  rotate: 90deg;
  color: #00af73;
}
.prod-list .container aside .aside-lv3 {
  display: none;
  font-size: clamp(13px, 1.05vw, 15px);
  padding: 0.5em 0;
  border-top: 1px solid #d8d8d8;
  margin-top: 0.25em;
}
.prod-list .container aside .aside-lv3 > li {
  color: #666;
  font-weight: 400;
}
.prod-list .container aside .aside-lv3 > li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 0;
}
.prod-list .container aside .aside-lv3 > .active {
  color: #00af73;
}
.prod-list .container aside .aside-lv3 > .active > div > i {
  rotate: 90deg;
  color: #00af73;
}
.prod-list .container aside .aside-lv4 {
  display: none;
  padding: 0 1em;
}
.prod-list .container aside .aside-lv4 > li {
  font-weight: 400;
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  padding: 0.25em 0;
}
.prod-list .container aside .aside-lv4 > .active {
  color: #00af73;
}
.prod-list .container main {
  width: 76.04166667%;
}
.prod-list .container main .prod-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.649635%;
}
.prod-list .container main .prod-search h3 {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #3d3d3d;
  font-weight: 700;
  line-height: 1.5;
  border-left: 4px solid #00af73;
  padding-left: 1em;
  white-space: nowrap;
}
.prod-list .container main .prod-search form {
  display: flex;
  flex: 1;
  margin-left: 20px;
  max-width: 508px;
  font-size: 14px;
}
.prod-list .container main .prod-search form input {
  flex: 1;
  color: #000;
  outline: none;
  background-color: #f2f2f2;
  padding: 0 1em;
  height: 4em;
  border-radius: 6px 0 0 6px;
}
.prod-list .container main .prod-search form input::placeholder {
  color: #666;
}
.prod-list .container main .prod-search form button {
  cursor: pointer;
  outline: none;
  font-size: clamp(12px, 1.2vw, 20px);
  color: #fff;
  background-color: #00af73;
  width: 5.7em;
  transition: all 0.5s;
  border-radius: 0 6px 6px 0;
}
.prod-list .container main .prod-search form button:hover {
  box-shadow: 0 2px 10px #00af73;
  filter: brightness(120%);
}
.prod-list .container main .prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: baseline;
}
.prod-list .container main .prod-wrapper .block {
  width: 32.328767%;
  margin-bottom: 3.3789954%;
}
.prod-list .container main .prod-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62.1468927%;
  border: 1px solid #dedede;
  border-radius: 10px;
}
.prod-list .container main .prod-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-list .container main .prod-wrapper .block .title {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #333;
  line-height: 1.3888889;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.7778em;
}
.prod-list .container main .prod-wrapper .block .title h4 {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 0.5em;
}
.prod-list .container main .prod-wrapper .block .title h4 a {
  color: inherit;
}
.prod-list .container main .prod-wrapper .block .title i {
  display: block;
  color: #fff;
  background-color: #dedede;
  border-radius: 50%;
  width: 2.666667em;
  line-height: 2.666667;
  text-align: center;
  transition: all 0.5s;
}
.prod-list .container main .prod-wrapper .block:hover .pic img {
  scale: 1.05;
}
.prod-list .container main .prod-wrapper .block:hover .title h4 {
  color: #00af73;
}
.prod-list .container main .prod-wrapper .block:hover .title i {
  background-color: #00af73;
}
.prod-list .container main .pagination {
  margin-top: 1%;
}
.prod-detail {
  background-color: #fff;
  padding: 2.08333% 0 3.75%;
}
.prod-detail .intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5.5556%;
}
.prod-detail .intro .lt {
  width: 50%;
}
.prod-detail .intro .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  border: 1px solid #dedede;
  border-radius: 10px;
}
.prod-detail .intro .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.prod-detail .intro .lt .swiper-button-prev,
.prod-detail .intro .lt .swiper-button-next {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  width: 2.4em;
  height: 2.4em;
  background-color: #00af73;
  border-radius: 50%;
  transform: translate(0, -50%);
}
.prod-detail .intro .lt .swiper-button-prev::after,
.prod-detail .intro .lt .swiper-button-next::after {
  font-size: inherit;
}
.prod-detail .intro .lt .swiper-pagination {
  position: relative;
  line-height: 1;
  bottom: 0;
  font-size: clamp(11px, 1.2vw, 22px);
  margin-top: 1%;
}
.prod-detail .intro .lt .swiper-pagination .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  transition: all 0.5s;
  background-color: #d9d9d9;
}
.prod-detail .intro .lt .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00af73;
}
.prod-detail .intro .rt {
  width: 43.0555556%;
}
.prod-detail .intro .rt h3 {
  font-size: clamp(18px, 2.0833333vw, 40px);
  color: #3d3d3d;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.8em;
}
.prod-detail .intro .rt h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #0d6c58;
  line-height: 1.45;
  margin-bottom: 0.7em;
}
.prod-detail .intro .rt a {
  display: inline-block;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  min-width: 10.5em;
  padding: 0 1.83333em;
  line-height: 3.055556;
  border-radius: 1.527778em;
  background-color: #00af73;
  transition: all 0.5s;
}
.prod-detail .intro .rt a:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.prod-detail .intro .rt a i {
  margin-left: 1.55556em;
}
.prod-detail article {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #3d3d3d;
  line-height: 2;
}
.prod-detail article h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h4 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h5 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article table {
  width: 100% !important;
}
.prod-detail article table tr td {
  font-size: clamp(12px, 1vw, 16px);
  text-align: center;
  vertical-align: middle;
  padding: 0.5em 0.25em;
  border: 1px solid #ededed;
  line-height: 1.45;
}
.prod-detail section {
  margin-bottom: 5.55556%;
}
.prod-detail .section-title {
  background-color: #f2f2f2;
  width: 100%;
  border-radius: 6px;
  font-size: clamp(16px, 1.2vw, 20px);
  color: #fff;
  line-height: 2.65;
  margin-bottom: 2.77778%;
}
.prod-detail .section-title span {
  display: inline-block;
  border-radius: 6px;
  background-color: #0d6c58;
  padding: 0;
  text-align: center;
  padding: 0 1.5em;
  min-width: 10.15em;
}
.prod-detail .msg form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.875%;
}
.prod-detail .msg form .form-row .form-col {
  width: 49.1666667%;
}
.prod-detail .msg form .code-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.prod-detail .msg form .code-row input {
  flex: 1;
  max-width: 247px;
  margin-right: 1em;
}
.prod-detail .msg form .code-row .code {
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.prod-detail .msg form input,
.prod-detail .msg form textarea {
  width: 100%;
  outline: none;
  border-radius: 4px;
  border: 1px solid #b9b9b9;
  font-size: 14px;
  color: #333;
  padding: 0.25em 0.5em;
  height: 33px;
}
.prod-detail .msg form textarea {
  height: 129px;
}
.prod-detail .msg form label {
  display: block;
  width: 100%;
  color: #666;
  font-size: 14px;
  margin-bottom: 0.5em;
}
.prod-detail .msg form label span {
  color: #f00;
}
.prod-detail .msg form button {
  outline: none;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  height: 2.75em;
  border-radius: 1.375em;
  background-color: #00af73;
  min-width: 8.5em;
  padding: 0 1em;
  transition: all 0.5s;
  margin-top: 2.642857em;
}
.prod-detail .msg form button:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
