@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff'), url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.eot');
  src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff'), url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 18px;
  --color: #02ab6b;
  --color2: #06905c;
  margin: 0 auto;
}
.container {
  width: 1600px;
}

.bigtt-zt {
  font-family: 'Poppins';
  font-weight: bold;
 
}
#header {
  z-index: 20;
  position: fixed;
  width: 100%;
  top: 22px;
  left: 0;
  transition: all 0.5s;
}
#header .nav {
  position: relative;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.89);
  box-shadow: 15px -5px 28px 4px rgba(201, 201, 201, 0.3);
  border-radius: 10px;
  transition: all 0.5s;
}
#header .nav .logo img{
  transition: all 0.5s;
}
#header .nav .ui.menu {
  border-radius: 10px;
  width: 80%;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
#header .nav .ui.menu .menu-box .menu-menu-container {
  height: 100%;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu::after {
  content: '\20';
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li {
  margin: 0 30px;
  font-size: 18px;
  height: 100%;
  color: #2c2e2d;
  -webkit-perspective: 500px;
  perspective: 500px;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li.active {
  color: var(--color);
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li ul.sub-menu {
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  transform: scaleY(0);
  transform-origin: 0 0;
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li ul.sub-menu li a {
  display: block;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li ul.sub-menu li:hover {
  background: var(--color);
  color: white;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  transform: scaleY(0);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li ul.sub-menu > li:hover > ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: scaleY(1);
  display: block \9;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: scaleY(1);
  display: block \9;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right .h-search img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 0.5s;
}
#header .nav .ui.menu .right .h-search:hover img {
  filter: none;
}
#header .nav .ui.menu .right .line {
  width: 2px;
  height: 45px;
  background-color: #000000;
  transition: all 0.5s;
}
#header .nav .ui.menu .right .h-language {
  position: relative;
  cursor: pointer;
}
#header .nav .ui.menu .right .h-language span img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 0.5s;
}
#header .nav .ui.menu .right .h-language ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  top: 110%;
  right: 0;
  width: 130px;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #60b242;
  display: none \9;
}
#header .nav .ui.menu .right .h-language ul.sub-menu li {
  display: block;
  line-height: 40px;
  text-transform: capitalize;
  text-align: center;
}
#header .nav .ui.menu .right .h-language ul.sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
#header .nav .ui.menu .right .h-language ul.sub-menu li a img {
  vertical-align: middle;
  width: auto;
  height: 15px;
  margin-right: 6px;
}
#header .nav .ui.menu .right .h-language ul.sub-menu li:hover {
  background: #000;
  color: #fff;
}
#header .nav .ui.menu .right .h-language:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .right .h-language:hover img {
  filter: none;
}
#header .nav .ui.menu .right .pt-an {
  font-family: 'Arial';
}

#header.inner_active.active {
  top: 0;
}
#header.inner_active {
  top: 35px;
}
#header.inner_active.active {
  top: 0;
}


#header.active .nav{
  background-color: var(--color);
}
#header.active .nav .logo img{
  filter: brightness(0) invert(1);
}
#header.active .nav .ui.menu .menu-box .menu-menu-container ul.menu > li{
  color: #fff;
}
#header.active .nav .ui.menu .right .h-search img{
  filter: brightness(0) invert(1);
}
#header.active .nav .ui.menu .right .h-language span img{
  filter: brightness(0) invert(1);
}
#header.active .nav .ui.menu .right .line{
  background-color: #fff;
}
#header.active .nav .ui.menu .right .pt-an{
  background-color: #fff;
    color: var(--color);
}

#banner {
  position: relative;
}
#banner .banner-content {
  height: 45.575vw;
  position: relative;
}
#banner .banner-content .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#banner .banner-content .swiper-slide .txt-content {
  height: 100%;
}
#banner .banner-content .swiper-slide .txt-content .con {
  background-color: rgba(2, 171, 106, 0.6);
  border-radius: 30px;
  padding: 55px 30px 55px;
  max-width: 650px;
}
.btn-go {
  width: auto;
  min-width: 230px;
  padding: 0 62px 0 25px;
  height: 56px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  border: 1px solid transparent;
  background-color: #fff;
  font-size: 16px;
  color: var(--color);
  cursor: pointer;
  position: relative;
}
.btn-go i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s;
  position: absolute;
  right: 5px;
  top: 3px;
  font-size: 22px;
  line-height: 1;
}
.btn-go i::before {
  transform: rotate(-30deg);
  transition: all 0.5s;
}
.btn-go:hover {
  border-color: #fff;
  background-color: var(--color);
  color: #fff;
}
.btn-go:hover i {
  background-color: #fff;
  color: var(--color);
}
.btn-go:hover i::before {
  transform: none;
}


.btn-go.thema {
  background-color: var(--color);
  color: #fff;
}
.btn-go.thema i {
  background-color: #fff;
  color: var(--color);
}
.btn-go.thema i img {
  transition: all 0.5s;
}
.btn-go.thema:hover {
  background-color: #fff;
  color: var(--color);
  border-color: var(--color);
}
.btn-go.thema:hover i {
  background-color: var(--color);
  color: #fff;
}
.btn-go.thema:hover i img {
  filter: brightness(0) invert(1);
}

.pt-an {
  width: auto;
  min-width: 170px;
  padding: 0 22px;
  height: 46px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  border: 1px solid transparent;
  background-color: var(--color);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.pt-an:hover {
  border-color: var(--color);
  background-color: #fff;
  color: var(--color);
}
.btn-more {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 32px;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.btn-more i {
  transition: all 0.5s;
  transform: rotate(-30deg);
}
.btn-more:hover {
  background-color: #fff !important;
  color: var(--color);
  border-color: var(--color);
}
.btn-more:hover i {
  transform: none;
}
.color-25 {
  color: #252525;
}
.color-484545 {
  color: #484545;
}
.mk-tt .desc.txtcolor {
  color: rgba(37, 37, 37, 0.65);
}
.swiperDots.swiper-pagination-bullets {
  position: absolute;
  bottom: 5%;
  text-align: center;
  z-index: 10;
}
.swiperDots .swiper-pagination-bullet {
  margin: 0 15px;
  background-color: #fefefe;
  width: 40px;
  height: 7px;
  opacity: 1;
  border-radius: 4px;
  transition: all 0.5s;
}
.swiperDots .swiper-pagination-bullet:hover {
  background-color: var(--color);
}
.swiperDots .swiper-pagination-bullet-active {
  background-color: var(--color);
}
.swiperBtn > div {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color);
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.5s;
  cursor: pointer;
}
.swiperBtn > div:hover {
  background-color: #7c7c7c;
}
.swiperBtn .swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiperBtn .prev {
  left: -75px;
}
.swiperBtn .next {
  right: -75px;
}
.bgys {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  --border-radius: 200px;
}
#index-body .init-category {
  position: relative;
  z-index: 1;
}
#index-body .init-category .bgys {
  top: 0;
  height: 80%;
  background-color: #f1f1f1;
  border-radius: 0 0 var(--border-radius) 0;
  z-index: -1;
}
#index-body .init-category .mk-list {
  position: relative;
  padding: 0 50px;
}
#index-body .init-category .mk-list ul li .box {
  position: relative;
  background-color: #ffffff;
  border-radius: 30px 173px 173px 173px;
  transition: all 0.5s;
}
#index-body .init-category .mk-list ul li .box .icon1 {
  position: absolute;
  left: 20px;
  top: 20px;
}
#index-body .init-category .mk-list ul li .box .imgbox {
  border-radius: 50%;
}
#index-body .init-category .mk-list ul li .box .imgbox .btn-more {
  position: absolute;
  top: 0;
  right: 0;
}
#index-body .init-category .mk-list ul li .box:hover {
  background-color: var(--color2);
}
#index-body .init-category .mk-list ul li .box:hover .icon1 img {
  filter: brightness(0) invert(1);
}
#index-body .init-category .mk-list ul li .box:hover .icon2 img {
  filter: brightness(0) invert(1);
}
#index-body .init-about {
  position: relative;
  z-index: 0;
}
#index-body .init-about .bgys {
  top: -80%;
  height: 150%;
  background-color: var(--color);
  border-radius: 0 0 0 var(--border-radius);
  z-index: -2;
}
#index-body .init-about .txtbg p {
  font-size: 118px;
  line-height: 0.8;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
#index-body .init-about .imgbox {
  margin-top: -40px;
  position: relative;
}
#index-body .init-about .imgbox .btnbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#index-body .init-about .datashow ul li .content h4 span {
  color: #484545;
}
#index-body .init-about .datashow ul li .content p {
  color: #484545;
}
#index-body .init-product .mk-list ul li .box {
  margin-bottom: 35px;
  background-color: #f8f9fd;
  border-radius: 40px;
  padding: 20px;
  position: relative;
}
#index-body .init-product .mk-list ul li .box .imgbox2 {
  /*margin-top: -20%;*/
}
#index-body .init-product .mk-list ul li .box .btn-more {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
#index-body .init-case {
  background-color: #f8f9fd;
  border-radius: 150px 150px 0px 0px;
  overflow: hidden;
}
#index-body .init-case .mk-top .desc {
  margin-left: -28px;
  margin-right: -28px;
}
#index-body .init-case .mk-top .desc p {
  padding: 2px 28px;
}
#index-body .init-case .mk-list ul li .box .imgbox > img {
  width: 100%;
}
#index-body .init-case .mk-list ul li .box .gq {
  position: absolute;
  top: 0;
  left: 0;
}
#index-body .init-case .mk-list ul li .box .txtbox {
  background-color: var(--color);
  padding: 15px 30px;
}
#index-body .init-case .mk-list ul li .box .txtbox p i {
  width: 19px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(4px);
}
#index-body .init-news .mk-list ul li .box {
  background-color: #f3f2f5;
  border-radius: 30px;
  padding: 60px 25px 38px;
}
#index-body .init-news .mk-list ul li .box .cat_name {
  background-color: var(--color);
  padding: 2px 12px;
  border-radius: 18px;
}
#index-body .init-news .mk-list ul li .box .desc {
  color: rgba(0, 0, 0, 0.53);
}
#index-body .init-news .mk-list ul li .box .btn-more {
  background-color: #7c7f7e;
}
#index-body .init-news .mk-list ul li .box:hover .btn-more {
  background-color: var(--color);
}
#footer .footer-form {
  background-color: var(--color);
  border-radius: 150px 0px 0px 0px;
}
#footer .footer-form .form {
  padding-top: 30px;
  padding-bottom: 35px;
}
#footer .footer-form .form form {
  display: flex;
  align-items: center;
  gap: 14px;
}
#footer .footer-form .form form input {
  width: 16%;
  background-color: #ffffff;
  border-radius: 10px;
  border: 0;
  height: 55px;
  padding: 2px 15px;
}
#footer .footer-form .form form input:not(.content) {
  flex-shrink: 0;
}
#footer .footer-form .form form .content {
  width: 100%;
}
#footer .footer-form .form form .send {
  width: 15%;
  min-width: 150px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 0;
  height: 60px;
  padding: 0 20px;
  background-color: #046e46;
  color: #fff;
  transition: all 0.5s;
}
#footer .footer-form .form form .send:hover {
  background-color: #fff;
  color: var(--color);
}
#footer .footer-center {
  background-color: #ebebeb;
}
#footer .footer-center .footer-t .footer-t-gird {
  width: 100%;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.logo {
  min-width: 240px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.logo .share li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 1px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.logo .share li a:hover {
  background-color: var(--color);
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.link li{
  transition: all 0.5s;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.link li:hover{
  color: var(--color);
}
#footer .footer-center .footer-t .footer-t-gird .t-list li {
  color: rgba(0, 0, 0, 0.55);
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact {
  max-width: 380px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact ul li {
  position: relative;
  line-height: 1.7;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.ewm {
  max-width: 210px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.ewm #ewm {
  width: 140px;
  height: 140px;
  background: #fff;
  border: 5px solid #fff;
}
#footer .footer-center .footer-b .con {
  color: #444242;
  padding: 22px 0;
}
#footer .footer-center .footer-b .con p {
  margin: 0 10px;
}
#footer .footer-center .footer-b .con .svg {
  transform: translateY(2px);
}
#footer .footer-center .footer-b .con svg {
  width: auto;
  max-height: 32px;
  transition: all 0.5s;
  fill: #444242;
}
@media screen and (max-width: 1700px) {
  #header .nav .ui.menu {
    width: 84%;
  }
}
@media screen and (max-width: 1450px) {
  body {
    font-size: 16px;
  }
  .btn-go {
    zoom: 0.9;
  }
  .pt-btn {
    zoom: 0.9;
  }
  .btn-more {
    zoom: 0.9;
  }
  #header .nav .ui.menu .menu-box .menu-menu-container ul.menu > li {
    margin: 0 20px;
  }
  .bgys {
    --border-radius: 150px;
  }
  #index-body .init-category .mk-list {
    padding: 0;
  }
  #index-body .init-about .txtbg p {
    font-size: 100px;
  }
  #index-body .init-news .mk-list ul li .box {
    border-radius: 15px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1250px) {
  #banner .banner-content {
    height: 40vw;
  }
  #banner .banner-content .swiper-slide .txt-content .con {
    padding: 40px 30px;
  }
  #footer .footer-form {
    border-radius: 100px 0px 0px 0px;
  }
  #footer .footer-form .form {
    padding-left: 0;
    padding-right: 0;
  }
  #footer .footer-form .form form {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer .footer-form .form form input {
    width: calc(50% - 7px) !important;
  }
  .swiperBtn > div {
    display: none;
  }
  #index-body .init-about .txtbg p {
    font-size: 90px;
  }
  #index-body .init-about .datashow {
    padding: 0;
  }
  #index-body .init-case {
    border-radius: 100px 100px 0px 0px;
  }
}
@media screen and (max-width: 1000px) {
  #banner .banner-content {
    height: 400px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.logo {
    width: 180px;
    min-width: unset;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.logo .share li a {
    zoom: 0.8;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.contact {
    max-width: 245px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.ewm #ewm {
    width: 80px;
    height: 80px;
  }
  #footer .footer-center .footer-t .footer-t-gird .link {
    display: none;
  }
  #footer .footer-center .footer-b p {
    justify-content: center;
  }
  #footer .footer-center .footer-b .con p {
    font-size: 16px;
  }
  #footer .footer-center .footer-b .con {
    justify-content: center;
  }
  .mk-tt .tt br {
    display: none;
  }
  .mk-tt .desc br {
    display: none;
  }
  .bgys {
    --border-radius: 100px;
  }
  #index-body .init-about .txtbg p {
    font-size: 65px;
  }
  #index-body .init-about .imgbox {
    margin-top: 0;
  }
  #index-body .init-about .imgbox img {
    min-height: 260px;
    object-fit: cover;
  }
  #index-body .init-about .datashow ul {
    margin: -8px;
  }
  #index-body .init-about .datashow ul li {
    width: 50%;
    padding: 8px;
  }
  #index-body .init-about .datashow ul li .content {
    border-bottom: 1px solid #e5e6e5;
  }
}
@media screen and (max-width: 700px) {
  body {
    font-size: 15px;
  }
  .btn-go {
    zoom: 0.8;
  }
  .pt-btn {
    zoom: 0.8;
  }
  .btn-more {
    zoom: 0.8;
  }
  .phone_hide {
    display: none;
  }
  #banner .banner-content .swiper-slide .txt-content .con {
    padding: 20px;
  }
  #footer .footer-form {
    border-radius: 50px 0px 0px 0px;
  }
  #footer .footer-form .form form input {
    width: 100% !important;
    height: 45px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.logo {
    width: 100%;
    min-width: unset;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.contact {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.ewm {
    max-width: 100%;
    margin-top: 20px;
  }
  .swiperDots.swiper-pagination-bullets {
    zoom: 0.8;
  }
  .bgys {
    --border-radius: 50px;
  }
  #index-body .init-about .txtbg p {
    font-size: 9vw;
  }
  #index-body .init-case {
    border-radius: 50px 50px 0px 0px;
  }
}
@media screen and (max-width: 500px) {
  #index-body .init-category .mk-list ul li .box {
    border-radius: 20px 50px 20px 20px;
  }
  #index-body .init-about .datashow ul li {
    width: 100%;
  }
}
/*----- inner-page -----*/
@media (max-width: 1250px) {
  #innerMobileBanner {
    margin-top: 60px;
  }
}
#mobile2{
  background-color: #000000;
}
:root {
  --p16: calc(0.0833vw);
  --n-p16: calc(var(--p16) * -1);
  --px17: calc(0.15625vw + 14px);
  --npx17: calc(var(--px17) * -1);
  --px18: calc(0.20833vw + 14px);
  --npx18: calc(var(--px18) * -1);
  --px19: calc(0.26042vw + 14px);
  --npx19: calc(var(--px19) * -1);
  --px20: calc(0.3125vw + 14px);
  --npx20: calc(var(--px20) * -1);
  --px21: calc(0.3646vw + 14px);
  --npx21: calc(var(--px21) * -1);
  --px22: calc(0.4166vw + 14px);
  --npx22: calc(var(--px22) * -1);
  --px23: calc(0.46875vw + 14px);
  --npx23: calc(var(--px23) * -1);
  --px24: calc(0.5208vw + 14px);
  --npx24: calc(var(--px24) * -1);
  --px25: calc(0.5729vw + 14px);
  --npx25: calc(var(--px25) * -1);
  --px26: calc(0.625vw + 14px);
  --npx26: calc(var(--px26) * -1);
  --px27: calc(0.6771vw + 14px);
  --npx27: calc(var(--px27) * -1);
  --px28: calc(0.7292vw + 14px);
  --npx28: calc(var(--px28) * -1);
  --px29: calc(0.78125vw + 14px);
  --npx29: calc(var(--px29) * -1);
  --px30: calc(0.834vw + 14px);
  --npx30: calc(var(--px30) * -1);
  --px31: calc(0.8854vw + 14px);
  --npx31: calc(var(--px31) * -1);
  --px32: calc(0.9375vw + 14px);
  --npx32: calc(var(--px32) * -1);
  --px33: calc(0.9896vw + 14px);
  --npx33: calc(var(--px33) * -1);
  --px34: calc(1.0417vw + 14px);
  --npx34: calc(var(--px34) * -1);
  --px35: calc(1.0938vw + 14px);
  --npx35: calc(var(--px35) * -1);
  --px36: calc(1.1458vw + 14px);
  --npx36: calc(var(--px36) * -1);
  --px37: calc(1.198vw + 14px);
  --npx37: calc(var(--px37) * -1);
  --px38: calc(1.25vw + 14px);
  --npx38: calc(var(--px38) * -1);
  --px39: calc(1.302vw + 14px);
  --npx39: calc(var(--px39) * -1);
  --px40: calc(1.354vw + 14px);
  --npx40: calc(var(--px40) * -1);
  --px41: calc(1.406vw + 14px);
  --npx41: calc(var(--px41) * -1);
  --px42: calc(1.458vw + 14px);
  --npx42: calc(var(--px42) * -1);
  --px43: calc(1.5104vw + 14px);
  --npx43: calc(var(--px43) * -1);
  --px44: calc(1.5625vw + 14px);
  --npx44: calc(var(--px44) * -1);
  --px45: calc(1.615vw + 14px);
  --npx45: calc(var(--px45) * -1);
  --px46: calc(1.667vw + 14px);
  --npx46: calc(var(--px46) * -1);
  --px47: calc(1.719vw + 14px);
  --npx47: calc(var(--px47) * -1);
  --px48: calc(1.7708vw + 14px);
  --npx48: calc(var(--px48) * -1);
  --px49: calc(1.823vw + 14px);
  --npx49: calc(var(--px49) * -1);
  --px50: calc(1.875vw + 14px);
  --npx50: calc(var(--px50) * -1);
  --px51: calc(1.927vw + 14px);
  --npx51: calc(var(--px51) * -1);
  --px52: calc(1.979vw + 14px);
  --npx52: calc(var(--px52) * -1);
  --px53: calc(2.03125vw + 14px);
  --npx53: calc(var(--px53) * -1);
  --px54: calc(2.0833vw + 14px);
  --npx54: calc(var(--px54) * -1);
  --px55: calc(2.1354vw + 14px);
  --npx55: calc(var(--px55) * -1);
  --px56: calc(2.1875vw + 14px);
  --npx56: calc(var(--px56) * -1);
  --px57: calc(2.2396vw + 14px);
  --npx57: calc(var(--px57) * -1);
  --px58: calc(2.2917vw + 14px);
  --npx58: calc(var(--px58) * -1);
  --px59: calc(2.34375vw + 14px);
  --npx59: calc(var(--px59) * -1);
  --px60: calc(2.3958vw + 14px);
  --npx60: calc(var(--px60) * -1);
  --px61: calc(2.4479vw + 14px);
  --npx61: calc(var(--px61) * -1);
  --px62: calc(2.5vw + 14px);
  --npx62: calc(var(--px62) * -1);
  --px63: calc(2.5521vw + 14px);
  --npx63: calc(var(--px63) * -1);
  --px64: calc(2.6042vw + 14px);
  --npx64: calc(var(--px64) * -1);
  --px65: calc(2.6563vw + 14px);
  --npx65: calc(var(--px65) * -1);
  --px66: calc(2.7083vw + 14px);
  --npx66: calc(var(--px66) * -1);
  --px67: calc(2.7604vw + 14px);
  --npx67: calc(var(--px67) * -1);
  --px68: calc(2.8125vw + 14px);
  --npx68: calc(var(--px68) * -1);
  --px69: calc(2.8646vw + 14px);
  --npx69: calc(var(--px69) * -1);
  --px70: calc(2.9167vw + 14px);
  --npx70: calc(var(--px70) * -1);
  --px71: calc(2.9688vw + 14px);
  --npx71: calc(var(--px71) * -1);
  --px72: calc(3.0208vw + 14px);
  --npx72: calc(var(--px72) * -1);
  --px73: calc(3.0729vw + 14px);
  --npx73: calc(var(--px73) * -1);
  --px74: calc(3.125vw + 14px);
  --npx74: calc(var(--px74) * -1);
  --px75: calc(3.1771vw + 14px);
  --npx75: calc(var(--px75) * -1);
  --px76: calc(3.2292vw + 14px);
  --npx76: calc(var(--px76) * -1);
  --px77: calc(3.2812vw + 14px);
  --npx77: calc(var(--px77) * -1);
  --px78: calc(3.3333vw + 14px);
  --npx78: calc(var(--px78) * -1);
  --px79: calc(3.3854vw + 14px);
  --npx79: calc(var(--px79) * -1);
  --px80: calc(3.4375vw + 14px);
  --npx80: calc(var(--px80) * -1);
  --px81: calc(3.4896vw + 14px);
  --npx81: calc(var(--px81) * -1);
  --px82: calc(3.5417vw + 14px);
  --npx82: calc(var(--px82) * -1);
  --px83: calc(3.59375vw + 14px);
  --npx83: calc(var(--px83) * -1);
  --px84: calc(3.6458vw + 14px);
  --npx84: calc(var(--px84) * -1);
  --px85: calc(3.6979vw + 14px);
  --npx85: calc(var(--px85) * -1);
  --px86: calc(3.75vw + 14px);
  --npx86: calc(var(--px86) * -1);
  --px87: calc(3.802vw + 14px);
  --npx87: calc(var(--px87) * -1);
  --px88: calc(3.854vw + 14px);
  --npx88: calc(var(--px88) * -1);
  --px89: calc(3.906vw + 14px);
  --npx89: calc(var(--px89) * -1);
  --px90: calc(3.958vw + 14px);
  --npx90: calc(var(--px90) * -1);
  --px91: calc(4.01vw + 14px);
  --npx91: calc(var(--px91) * -1);
  --px92: calc(4.0625vw + 14px);
  --npx92: calc(var(--px92) * -1);
  --px93: calc(4.1145vw + 14px);
  --npx93: calc(var(--px93) * -1);
  --px94: calc(4.1667vw + 14px);
  --npx94: calc(var(--px94) * -1);
  --px95: calc(4.21875vw + 14px);
  --npx95: calc(var(--px95) * -1);
  --px96: calc(4.2708vw + 14px);
  --npx96: calc(var(--px96) * -1);
  --px97: calc(4.3229vw + 14px);
  --npx97: calc(var(--px97) * -1);
  --px98: calc(4.375vw + 14px);
  --npx98: calc(var(--px98) * -1);
  --px99: calc(4.427vw + 14px);
  --npx99: calc(var(--px99) * -1);
  --px100: calc(4.479vw + 14px);
  --npx100: calc(var(--px100) * -1);
  --px101: calc(4.53125vw + 14px);
  --npx101: calc(var(--px101) * -1);
  --px102: calc(4.5833vw + 14px);
  --npx102: calc(var(--px102) * -1);
  --px103: calc(4.6354vw + 14px);
  --npx103: calc(var(--px103) * -1);
  --px104: calc(4.6875vw + 14px);
  --npx104: calc(var(--px104) * -1);
  --px105: calc(4.7396vw + 14px);
  --npx105: calc(var(--px105) * -1);
  --px106: calc(4.7917vw + 14px);
  --npx106: calc(var(--px106) * -1);
  --px107: calc(4.84375vw + 14px);
  --npx107: calc(var(--px107) * -1);
  --px108: calc(4.8958vw + 14px);
  --npx108: calc(var(--px108) * -1);
  --px109: calc(4.9479vw + 14px);
  --npx109: calc(var(--px109) * -1);
  --px110: calc(5vw + 14px);
  --npx110: calc(var(--px110) * -1);
  --px111: calc(5.0508vw + 14px);
  --npx111: calc(var(--px111) * -1);
  --px112: calc(5.1042vw + 14px);
  --npx112: calc(var(--px112) * -1);
  --px113: calc(5.15625vw + 14px);
  --npx113: calc(var(--px113) * -1);
  --px114: calc(5.2083vw + 14px);
  --npx114: calc(var(--px114) * -1);
  --px115: calc(5.2604vw + 14px);
  --npx115: calc(var(--px115) * -1);
  --px116: calc(5.3125vw + 14px);
  --npx116: calc(var(--px116) * -1);
  --px117: calc(5.3646vw + 14px);
  --npx117: calc(var(--px117) * -1);
  --px118: calc(5.4167vw + 14px);
  --npx118: calc(var(--px118) * -1);
  --px119: calc(5.46875vw + 14px);
  --npx119: calc(var(--px119) * -1);
  --px120: calc(5.5208vw + 14px);
  --npx120: calc(var(--px120) * -1);
  --px121: calc(5.5729vw + 14px);
  --npx121: calc(var(--px121) * -1);
  --px122: calc(5.625vw + 14px);
  --npx122: calc(var(--px122) * -1);
  --px123: calc(5.6771vw + 14px);
  --npx123: calc(var(--px123) * -1);
  --px124: calc(5.7292vw + 14px);
  --npx124: calc(var(--px124) * -1);
  --px125: calc(5.78125vw + 14px);
  --npx125: calc(var(--px125) * -1);
  --px126: calc(5.8333vw + 14px);
  --npx126: calc(var(--px126) * -1);
  --px127: calc(5.8854vw + 14px);
  --npx127: calc(var(--px127) * -1);
  --px128: calc(5.9375vw + 14px);
  --npx128: calc(var(--px128) * -1);
  --px129: calc(5.9896vw + 14px);
  --npx129: calc(var(--px129) * -1);
  --px130: calc(6.0416vw + 14px);
  --npx130: calc(var(--px130) * -1);
  --px131: calc(6.09375vw + 14px);
  --npx131: calc(var(--px131) * -1);
  --px132: calc(6.1458vw + 14px);
  --npx132: calc(var(--px132) * -1);
  --px133: calc(6.1979vw + 14px);
  --npx133: calc(var(--px133) * -1);
  --px134: calc(6.25vw + 14px);
  --npx134: calc(var(--px134) * -1);
  --px135: calc(6.3021vw + 14px);
  --npx135: calc(var(--px135) * -1);
  --px136: calc(6.3541vw + 14px);
  --npx136: calc(var(--px136) * -1);
  --px137: calc(6.40625vw + 14px);
  --npx137: calc(var(--px137) * -1);
  --px138: calc(6.4583vw + 14px);
  --npx138: calc(var(--px138) * -1);
  --px139: calc(6.5104vw + 14px);
  --npx139: calc(var(--px139) * -1);
  --px140: calc(6.5625vw + 14px);
  --npx140: calc(var(--px140) * -1);
  --px141: calc(6.6145vw + 14px);
  --npx141: calc(var(--px141) * -1);
  --px142: calc(6.6666vw + 14px);
  --npx142: calc(var(--px142) * -1);
  --px143: calc(6.71875vw + 14px);
  --npx143: calc(var(--px143) * -1);
  --px144: calc(6.7708vw + 14px);
  --npx144: calc(var(--px144) * -1);
  --px145: calc(6.8229vw + 14px);
  --npx145: calc(var(--px145) * -1);
  --px146: calc(6.875vw + 14px);
  --npx146: calc(var(--px146) * -1);
  --px147: calc(6.927vw + 14px);
  --npx147: calc(var(--px147) * -1);
  --px148: calc(6.979vw + 14px);
  --npx148: calc(var(--px148) * -1);
  --px149: calc(7.03125vw + 14px);
  --npx149: calc(var(--px149) * -1);
  --px150: calc(7.0833vw + 14px);
  --npx150: calc(var(--px150) * -1);
  --px151: calc(7.1354vw + 14px);
  --npx151: calc(var(--px151) * -1);
  --px152: calc(7.1875vw + 14px);
  --npx152: calc(var(--px152) * -1);
  --px153: calc(7.2395vw + 14px);
  --npx153: calc(var(--px153) * -1);
  --px154: calc(7.2916vw + 14px);
  --npx154: calc(var(--px154) * -1);
  --px155: calc(7.34375vw + 14px);
  --npx155: calc(var(--px155) * -1);
  --px156: calc(7.3958vw + 14px);
  --npx156: calc(var(--px156) * -1);
  --px157: calc(7.4479vw + 14px);
  --npx157: calc(var(--px157) * -1);
  --px158: calc(7.5vw + 14px);
  --npx158: calc(var(--px158) * -1);
  --px159: calc(7.5521vw + 14px);
  --npx159: calc(var(--px159) * -1);
  --px160: calc(7.6042vw + 14px);
  --npx160: calc(var(--px160) * -1);
  --px161: calc(7.65625vw + 14px);
  --npx161: calc(var(--px161) * -1);
  --px162: calc(7.7083vw + 14px);
  --npx162: calc(var(--px162) * -1);
  --px163: calc(7.7604vw + 14px);
  --npx163: calc(var(--px163) * -1);
  --px164: calc(7.8125vw + 14px);
  --npx164: calc(var(--px164) * -1);
  --px165: calc(7.8645vw + 14px);
  --npx165: calc(var(--px165) * -1);
  --px166: calc(7.9166vw + 14px);
  --npx166: calc(var(--px166) * -1);
  --px167: calc(7.96875vw + 14px);
  --npx167: calc(var(--px167) * -1);
  --px168: calc(8.0208vw + 14px);
  --npx168: calc(var(--px168) * -1);
  --px169: calc(8.0729vw + 14px);
  --npx169: calc(var(--px169) * -1);
  --px170: calc(8.125vw + 14px);
  --npx170: calc(var(--px170) * -1);
  --px171: calc(8.177vw + 14px);
  --npx171: calc(var(--px171) * -1);
  --px172: calc(8.2291vw + 14px);
  --npx172: calc(var(--px172) * -1);
  --px173: calc(8.28125vw + 14px);
  --npx173: calc(var(--px173) * -1);
  --px174: calc(8.3333vw + 14px);
  --npx174: calc(var(--px174) * -1);
  --px175: calc(8.3854vw + 14px);
  --npx175: calc(var(--px175) * -1);
  --px176: calc(8.4375vw + 14px);
  --npx176: calc(var(--px176) * -1);
  --px177: calc(8.4895vw + 14px);
  --npx177: calc(var(--px177) * -1);
  --px178: calc(8.5416vw + 14px);
  --npx178: calc(var(--px178) * -1);
  --px179: calc(8.59375vw + 14px);
  --npx179: calc(var(--px179) * -1);
  --px180: calc(8.6458vw + 14px);
  --npx180: calc(var(--px180) * -1);
  --px181: calc(8.6979vw + 14px);
  --npx181: calc(var(--px181) * -1);
  --px182: calc(8.75vw + 14px);
  --npx182: calc(var(--px182) * -1);
  --px183: calc(8.802vw + 14px);
  --npx183: calc(var(--px183) * -1);
  --px184: calc(8.8541vw + 14px);
  --npx184: calc(var(--px184) * -1);
  --px185: calc(8.90625vw + 14px);
  --npx185: calc(var(--px185) * -1);
  --px186: calc(8.9583vw + 14px);
  --npx186: calc(var(--px186) * -1);
  --px187: calc(9.0104vw + 14px);
  --npx187: calc(var(--px187) * -1);
  --px188: calc(9.0625vw + 14px);
  --npx188: calc(var(--px188) * -1);
  --px189: calc(9.1145vw + 14px);
  --npx189: calc(var(--px189) * -1);
  --px190: calc(9.1666vw + 14px);
  --npx190: calc(var(--px190) * -1);
  --px191: calc(9.21875vw + 14px);
  --npx191: calc(var(--px191) * -1);
  --px192: calc(9.2708vw + 14px);
  --npx192: calc(var(--px192) * -1);
  --px193: calc(9.3229vw + 14px);
  --npx193: calc(var(--px193) * -1);
  --px194: calc(9.375vw + 14px);
  --npx194: calc(var(--px194) * -1);
  --px195: calc(9.427vw + 14px);
  --npx195: calc(var(--px195) * -1);
  --px196: calc(9.4791vw + 14px);
  --npx196: calc(var(--px196) * -1);
  --px197: calc(9.53125vw + 14px);
  --npx197: calc(var(--px197) * -1);
  --px198: calc(9.5833vw + 14px);
  --npx198: calc(var(--px198) * -1);
  --px199: calc(9.6354vw + 14px);
  --npx199: calc(var(--px199) * -1);
  --px200: calc(9.6875vw + 14px);
  --npx200: calc(var(--px200) * -1);

}
.lh1 {
  line-height: 1;
}
.lh1-2 {
  line-height: 1.2;
}
.lh1-3 {
  line-height: 1.3;
}

.lh1-4 {
  line-height: 1.4;
}
.lh1-5 {
  line-height: 1.5;
}
.lh1-6 {
    line-height: 1.6;
}
.lh1-7 {
  line-height: 1.7;
}

.lh1-8 {
  line-height: 1.8;
}

.lh-9 {
  line-height: 1.9;
}

.lh2 {
  line-height: 2;
}
.color6 {
  color: #666;
}
.imgBg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.colorF {
  color: #fff;
}
.text-C {
  text-align: center;
}
.medium {
  font-weight: 500;
}
.inner-banner .txtcon {
  position: absolute;
  bottom: 14%;
  left: 0;
  width: 100%;
}
.inner-banner .txtcon .text .mbx {
  background: url(../images/in-home.png) no-repeat left 4px;
}

.inner-banner.noimg {
  background-color: var(--color2);
}

.inner-banner.noimg .txtcon {
  position: static;
}

.color-2c2c2b {
  color: #2c2b2b;
}
.processingline-page .processingline-1 .mk-content .left {
  position: sticky;
  top: 100px;
}
.processingline-page .processingline-1 .mk-content .left .imgbox {
  display: inline-block;
}
.processingline-page .processingline-1 .mk-content .left .imgbox .play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.processingline-page .processingline-1 .mk-content .right .desc {
  color: rgba(44, 43, 43, 0.77);
}
.processingline-page .processingline-2 .mk-content {
  background-color: #f4f4f5;
  border-radius: 50px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.processingline-page .processingline-2 .mk-content .icobg {
  position: absolute;
  left: 22px;
  top: 35px;
}
.processingline-page .processingline-3 {
  background-color: #f6f7f8;
}
.processingline-page .processingline-4 {
  background-repeat: no-repeat;
  background-position: bottom left;
}
.processingline-page .processingline-4 .left {
  width: 43.8%;
  position: sticky;
  top: 120px;
}
.processingline-page .processingline-4 .right {
  width: 56.2%;
}
.processingline-page .processingline-4 .right .mk-list ul li .box {
  border-bottom: 1px solid rgba(33, 34, 34, 0.58);
  cursor: pointer;
  transition: all 0.5s;
  color: #212222;
}
.processingline-page .processingline-4 .right .mk-list ul li .box .title h2 {
  width: 100%;
}
.processingline-page .processingline-4 .right .mk-list ul li .box .content {
  display: none;
}
.processingline-page .processingline-4 .right .mk-list ul li .box .content .imgbox{
  display: none;
}
.processingline-page .processingline-5 {
  background-color: #f6f7f8;
}
.processingline-page .processingline-5 .content table tbody td{
  min-width: 215px;
}
.processingline-page .processingline-5 .content table tbody td,
.processingline-page .processingline-5 .content table tbody th {
  padding: 8px 10px;
}
.processingline-page .processingline-6 .mk-list .swiper{
  margin: 0;
}
.processingline-page .processingline-6 .mk-list ul li .box {
  margin-bottom: 35px;
  background-color: #f6f8fa;
  border-radius: 40px;
  padding: 20px;
  position: relative;
}
.processingline-page .processingline-6 .mk-list ul li .box .btn-more {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 1450px) {
  .processingline-page .processingline-2 .mk-content .icobg {
    zoom: 0.8;
  }
}
@media screen and (max-width: 1000px) {
  .processingline-page .processingline-1 .mk-content .left {
    position: static;
  }
  .processingline-page .processingline-4 .left{
    position: static;
  }
  .processingline-page .processingline-4 .left .swiper-box{
    display: none;
  }
  .processingline-page .processingline-4 .right .mk-list ul li .box .content .imgbox{
    display: block;
    margin-top: 15px;
  }
}
@media screen and (max-width: 700px) {
  .processingline-page .processingline-2 .mk-content .icobg {
    zoom: 0.6;
  }
}


.services-page .services-1 .mk-bottom .imgbox {
  z-index: 0;
  padding-top: 16%;
}

.services-page .services-1 .mk-bottom img {
  position: absolute;
  top: 0;
  left: 0;
  height: 88%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.services-page .services-1 .mk-bottom .desc {
  background-color: var(--color2);
  border-radius: 30px;
  width: 65%;
}

@media screen and (max-width: 700px) {
  .services-page .services-1 .mk-bottom .desc {
    width: 90%;
    padding: 30px;
  }
}


/*
    about_page
==============================================*/
.about_page .about-1 .itemBox .left {
    width: 47.4%;
}

.about_page .about-1 .itemBox .right {
    width: 48%;
}

.about_page .about-1 .itemBox .Hbtn {
    background-color: #13100f;
    color: #fff;
}

.about_page .about-1 .itemBox .Hbtn.btn-text-nina .pxl--btn-text::before {
    color: #fff;
}

.about_page .about-1 .itemBox:last-child {
    padding-bottom: 0;
}

.about_page .about-1 .itemBox:nth-child(even) {
    flex-direction: row-reverse;
}

.about_page .about_3 {
    background-color: #f7f7f7;
}

.about_page .about_3 .lists {
    margin: 0 var(--npx25);
    align-items: stretch;
}

.about_page .about_3 .lists li {
    width: 33.3%;
    padding: 0 var(--px20);
    flex-shrink: 0;
}

.about_page .about_3 .lists li .list {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.9s;
   border-radius: 30px;

    padding: var(--px60) var(--px45);
    background-color: #fff;
}

.about_page .about_3 .lists li .list .icon {
    width: var(--px75);
    height: var(--px75);
    min-width: 50px;
    min-height: 50px;
}

.about_page .about_3 .lists li .list:hover {
    background-color: var(--color);
    color: #fff;
}

.about_page .about_3 .lists li .list:hover .txt {
    color: #fff;
}

.about_page .about_3 .lists li .list:hover .icon img {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
@media screen and (max-width: 1250px) {
    .about_page .about_3 .lists li {
        width: 50%;
    }
}
@media screen and (max-width: 700px) {
    .about_page .about_3 .lists {
        margin: 0;
        margin-top: 30px;
    }

    .about_page .about_3 .lists li {
        padding: 0 5px;
        margin-top: 5px;
        margin-bottom: 5px;
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .about_page .about_3 .lists li {
        
    }
}

/*==============================================
    about_page
*/

/*
    factory_page
==============================================*/
.factory_page {
    color: #666;
}

.factory_page .top .titl {
    color: #0c0f0f;
}

.factory_page .factory_1 .swiper ul li {
    text-align: center;
}

.factory_page .factory_1 .swiper ul li a.imgBox {
    display: block;
}

.factory_page .factory_1 .swiper ul li a.titl:hover {
    display: inline-block;
    color: #0c0f0f;
}

.factory_page .factory_2 {
    background-color: #f7f9f9;
}

.factory_page .factory_2 .swiper ul li .img {
    width: 100%;
}

.factory_page .factory_2 .swiper ul li .img img {
    width: 100%;
    height: auto;
}

.factory_page .factory_2 .swiper ul li .list {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.factory_page .factory_2 .swiper ul li .list .textBox {
    width: 100%;
    height: 100%;
}

.factory_page .factory_2 .swiper ul li .list .textBox .txt {
    line-height: 30px;
    max-height: 90px;
    overflow-y: auto;
}

.factory_page .factory_2 .swiper ul li .list:hover {
    background-color: #12100f;
    color: #fff;
}

.factory_page .factory_2 .swiper ul li .list:hover .txt {
    opacity: 0.7;
}

.factory_page .factory_3 .swiperBtn {
    position: relative;
}

.factory_page .factory_3 .swiperBtn .btns {
    position: static;
    transform: none;
}

.factory_page .factory_3 .swiper ul li {
    width: 30%;
}

.factory_page .factory_3 .swiper ul li .img {
    width: 100%;
}

.factory_page .factory_3 .swiper ul li .titl:hover {
    color: #0c0f0f;
}

.factory_page .factory_4 {
    background-color: #f7f9f9;
}

.factory_page .factory_4 .swiperBtn {
    position: relative;
}

.factory_page .factory_4 .swiperBtn .btns {
    position: static;
    transform: none;
}

.factory_page .factory_4 .swiper ul li {
    width: 30%;
}

.factory_page .factory_4 .swiper ul li .img {
    width: 100%;
}

.factory_page .factory_4 .swiper ul li .titl:hover {
    color: #0c0f0f;
}
/*==============================================
    factory_page
*/

/*
    gallery-page
==============================================*/
.gallery-page .gallery-list ul {
    margin: -15px;
}

.gallery-page .gallery-list ul li {
    padding: 15px;
    width: 25%;
}

.gallery-page .gallery-list ul li .box {
    box-shadow: 0 0 10px rgba(72, 73, 121, 0.3);
    padding: 10px;
    border-radius: 5px;
    height: 100%;
}

.gallery-page .gallery-list ul li .box a.img-box {
    margin-bottom: 10px;
    display: block;
}

.gallery-page .gallery-list ul li .box h5 {
    display: block;
    color: #111;
    padding: 8px 5px 8px 5px;
    text-align: center;
    transition: all 0.5s;
}

.gallery-page .gallery-list ul li .box:hover h5 {
    background: #0060ab;
    color: white;
}

@media screen and (max-width: 1250px) {
    .gallery-page .gallery-list ul li {
        width: 33.3%;
    }
}

@media screen and (max-width: 1000px) {
    .gallery-page .gallery-list ul {
        margin: -10px;
    }

    .gallery-page .gallery-list ul li {
        padding: 10px;
    }
}

@media screen and (max-width: 700px) {
    .gallery-page .gallery-list ul li {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .gallery-page .gallery-list ul li {
        width: 100%;
    }
}

/*==============================================
    gallery-page
*/


.m-page {
  text-align: center;
}
.m-page a,
.m-page span {
  display: inline-flex;
  margin: 3px 6px;
  color: var(--color);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: solid 1px var(--color);
  border-radius: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.m-page a:hover,
.m-page span:hover {
  background-color: var(--color);
  color: #fff;
}
.m-page span {
  background-color: var(--color);
  color: #fff;
}

/*
    download-page
==============================================*/
.download-page {
    position: relative;
}

.download-page .box .boxLeft {
    width: 22%;
}

.download-page .box .boxLeft article {
    position: -webkit-sticky;
    position: sticky;
    top: 125px;
    max-height: 84vh;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.download-page .box .boxLeft .item {
    border-bottom: 1px solid #eee;
}

.download-page .box .boxLeft .item .title {
    cursor: pointer;
    min-height: 70px;
    padding: 5px 0;
}

.download-page .box .boxLeft .item .title .right {
    display: flex;
    align-items: center;
}

.download-page .box .boxLeft .item .title .right span {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #aaaaaa;
    position: relative;
    transition: 0.4s;
}

.download-page .box .boxLeft .item .title .right span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaaaaa;
    transform: rotate(90deg);
    transition: 0.4s;
}

.download-page .box .boxLeft .item .title .right.on span::after {
    transform: rotate(0deg);
}

.download-page .box .boxLeft .item.active .title .left {
    color: var(--color);
}

.download-page .box .boxLeft .item.active .title .right span {
    background: var(--color);
}

.download-page .box .boxLeft .item.active .title .right span::after {
    background: var(--color);
}

.download-page .box .boxRight {
    width: 74%;
}

.download-page .box .boxRight .boxTop {
    border: 1px solid #eee;
    border-top: 0;
}

.download-page .box .boxRight .boxTop .right form .search {
    position: relative;
}

.download-page .box .boxRight .boxTop .right form .search>input {
    width: 20.625rem;
    display: block;
    font-size: 1rem;
    color: #666;
    height: 3.125rem;
    border: 0;
    padding: 0 1.875rem;
    background: #f8f8f8;
    box-sizing: border-box;
}

.download-page .box .boxRight .boxTop .right form .search p {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.download-page .box .boxRight .boxTop .right form .search p input {
    display: none;
}

.download-page .box .boxRight .boxBottom .item {
    border: 1px solid #eee;
    border-top: 0;
}
.download-page .box .boxRight .boxBottom.download-video{
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  padding: 15px;
}

.download-page .box .boxRight .boxBottom .li{
  width: 33.3%;
  padding: 15px;
}
.download-page .box .boxRight .boxBottom .li .play_icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.download-page .box .boxRight .index_page {
    margin-top: 4rem;
}


@media screen and (max-width: 1250px) {

    .download-page .box .boxLeft,
    .download-page .box .boxRight {
        width: 100%;
    }

    .download-page .box {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media screen and (max-width: 1000px) {

    .download-page .box .boxRight .boxTop .right {
        display: none;
    }
    .download-page .box .boxRight .boxBottom .li{
      width:50%;
      padding: 8px;
    }
}

@media screen and (max-width: 700px) {
    .download-page .box .boxRight .boxTop .right {
        display: none;
    }
    .download-page .box .boxRight .boxBottom .li .play_icon{
      zoom: 0.8;
    }

}
@media screen and (max-width: 500px) {
    .download-page .box .boxRight .boxBottom .li{
      width:100%;
    }
}
/*==============================================
    download-page
*/
/*
    product-page
==============================================*/
.product-page .pro_list ul{
  margin: -14px;
}
.product-page .pro_list ul li{
    padding: 14px;
    position: relative;
}
.product-page .pro_list ul li .box{
  background-color: #f8f9fd;
  padding: 20px;
  border-radius: 40px;
}

.product-page .pro_list ul li .box .imgbox.fruit-veg-process-juice-paste-production-line{
  border-radius: 50%;
}
.product-page .pro_list ul li .box .imgbox.fruit-veg-process-line{
  border-radius: 50%;
}
.product-page .pro_list ul li .box .imgbox.img_570734{
  border-radius: 50%;
}

.product-page .pro_list ul li .intr{
  padding: 30px 20px;
 
  position: relative;
  z-index: 0;
}
.product-page .pro_list ul li .intr .desc{
  color: #9c9999;
}
.product-page .pro_list ul li .intr b {
    display: block;
    width: 32px;
    height: 2px;
    margin: 10px 0;
    transition: all ease .3s;
    background: #9C9999;
    position: relative;
    z-index: 2;
}

.product-page .pro_list ul li .box:hover .intr:after{
    height: 100%;
}
.product-page .pro_list ul li .box:hover .intr{
  color: var(--color);
}
.product-page .pro_list ul li .box:hover .intr .desc{
  color:  #9c9999;;
}
.product-page .pro_list ul li .box:hover .intr b {
 color: var(--color);
}
@media screen and (max-width: 1250px) {
  .product-page .pro_list ul{
    margin: -8px;
  }
  .product-page .pro_list ul li{
    padding: 8px;
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .product-page .pro_list ul li .intr{
    padding: 15px 10px;
  }
}
@media screen and (max-width: 700px) {
  .product-page .pro_list ul li .box {
    padding: 14px;
    border-radius: 18px;
}
}
@media screen and (max-width: 500px) {
    .product-page .pro_list ul li{
      width: 100%;
    }
}
/*==============================================
    product-page
*/

.seoPublic>div {
    padding: 90px 0;
}
.seoPublic .Auxil-about .box .left{
  width: 50%;
}
.seoPublic .Auxil-about .box .right {
    padding-top: 0;
    padding-bottom: 0;
    width: 50%;
}

.seoPublic .Auxil-about .box .right .text {
    max-height: calc(1.8em * 8);
    overflow-y: auto;
    color: #141414;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    height: auto;
}

.seoPublic .Auxil-news .list ul li .content {
    margin-top: 0;
}

.seoPublic .Auxil-news .list ul li .content div.h6 {
    height: 2.8em;
}

.seoPublic .Auxil-news .list ul li .content p {
    height: 4.3em;
}

.seoPublic .Auxil-related .list ul {
    margin: -20px -18px;
}

.seoPublic .Auxil-related .list ul li {
    padding: 20px 18px;
}

.seoPublic .Auxil-related .list ul li .box {
    box-shadow: unset;
    background-color: transparent;
}



@media screen and (max-width: 1700px) {
    .seoPublic>div {
        padding: 80px 0;
    }
}

@media screen and (max-width: 1450px) {
    .seoPublic>div {
        padding: 70px 0;
    }
}

@media screen and (max-width: 1250px) {
    .seoPublic>div {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1000px) {
    .seoPublic>div {
        padding: 50px 0;
    }
}

@media screen and (max-width: 700px) {
    .seoPublic>div {
        padding: 40px 0;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -12px -8px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 12px 8px;
    }
}

@media screen and (max-width: 500px) {
    .seoPublic>div {
        padding: 35px 0;
    }
}
/*
    prodet-page
==============================================*/
.inner-page .sidebox .sideleft {
    width: 24%;
    position: sticky;
    top: 140px;
}

.inner-page .sidebox .sideleft .widget {
    background: #f8f9fd;
    border-radius: 30px;
    padding: 30px;
}

.inner-page .sidebox .sideleft .widget h6 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.inner-page .sidebox .sideleft .search-widget form {
    position: relative;
}

.inner-page .sidebox .sideleft .search-widget form input {
    width: 100%;
    padding: 10px;
    padding-right: 50px;
    border: 0;
    background: #f8f8f8;
    margin-bottom: 0;
    height: 40px;
    font-size: 16px;
    line-height: 2;
}

.inner-page .sidebox .sideleft .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--color);
    color: #fff;
    border: 0;
    padding: 8px 16px;
    cursor: pointer;
    height: 40px;
}
.inner-page .sidebox .sideleft .category-widget{
  color: #242524;
}

.inner-page .sidebox .sideleft .category-widget ul li {
  transition: all 0.5s;
  position: relative;
}
.inner-page .sidebox .sideleft .category-widget ul li a{
  transition: all 0.5s;
}
.inner-page .sidebox .sideleft .category-widget ul li a:hover{
  color: var(--color);
}
.inner-page .sidebox .sideleft .category-widget ul li.active>a{
  color: var(--color);
}
.inner-page .sidebox .sideleft .category-widget ul.menu_subs{
  /*display: none;*/
}
.inner-page .sidebox .sideleft .category-widget ul li.active>ul.menu_subs{
  display: block;
}


.inner-page .sidebox .sideleft .category-widget>ul>li {
    margin-bottom: 18px;
    overflow: hidden;
}
.inner-page .sidebox .sideleft .category-widget>ul>li>i{
  top: 8px!important;
}
.inner-page .sidebox .sideleft .category-widget>ul>li>a.pl{
  padding-left: 18px;
}
.inner-page .sidebox .sideleft .category-widget>ul>li:last-child {
    margin-bottom: 0;
}

.inner-page .sidebox .sideleft .category-widget ul li i {
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 12px;
}
.inner-page .sidebox .sideleft .category-widget ul li i.hide{
  display: none;
  
}


.inner-page .sidebox .sideleft .category-widget>ul>li>ul {
    color: rgba(36, 37, 36, 0.8);
    margin-top: 10px;
}

.inner-page .sidebox .sideleft .category-widget>ul>li>ul>li {
    padding-left: 18px;
}
.inner-page .sidebox .sideleft .category-widget >ul >li >ul >li >a{
  line-height: 36px;
}

.inner-page .sidebox .sideleft .category-widget>ul>li>ul>li>ul{
  color: rgba(36, 37, 36, 0.6);
  padding-left: 10px;
}
.inner-page .sidebox .sideleft .category-widget>ul>li>ul>li>ul>li{
  padding: 3px 0;
}

.inner-page .sidebox .sideleft .recent-widget li {
    display: block;
}

.inner-page .sidebox .sideleft .recent-widget li .thum {
    width: 100px;
    overflow: hidden;
}

.inner-page .sidebox .sideleft .contact-widget .form1 {
    text-align: center;
}

.inner-page .sidebox .sideleft .contact-widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .contact-widget .form1 textarea {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f8f8f8;
    margin-bottom: 0;
    margin-bottom: 15px;
    height: 40px;
    font-size: 16px;
}

.inner-page .sidebox .sideleft .contact-widget .form1 textarea {
    height: 70px;
}

.inner-page .sidebox .sideleft .contact-widget .form1 input[type="submit"] {
    height: 40px;
    background-color: var(--color);
    color: #fff;
}
.inner-page .sidebox .sideleft .contact-widget .form1 input[type="submit"]:hover {
  background-color: #fff;
  color: var(--color);
}

.inner-page .sidebox .sideright {
    width: 76%;
    padding-left: 3%;
}
@media screen and (max-width: 1450px) {
  .inner-page .sidebox .sideleft .widget{
    padding: 15px;
  }
}
@media screen and (max-width: 1250px) {
  .inner-page .sidebox .sideleft {
      width: 27%;
  }
  .inner-page .sidebox .sideright {
      width: 73%;
  }
}
@media screen and (max-width: 1000px) {
    .inner-page .sidebox .sideleft {
        display: none;
    }

    .inner-page .sidebox .sideright {
        width: 100%;
        padding-left: 0;
    }
}

.prodet-page .product-box .prodet-1 .left{
  width: 42%;
}
.prodet-page .product-box .prodet-1 .left .big ul li a {
    display: block;
    background-color: #f8f9fd;
    padding: 72px 20px;
    border-radius: 30px;
}

.prodet-page .product-box .prodet-1 .left .big ul li img {
    width: 100%;
}

.prodet-page .product-box .prodet-1 .left .big a img {
    width: 100%;
}

.prodet-page .product-box .prodet-1 .left .small ul li a {
    background-color: #f8f9fd;
    border-radius: 20px;
    display: block;
    border: 1px solid transparent;
    padding: 25px 10px;
}
.prodet-page .product-box .prodet-1 .left .small ul li.swiper-slide-thumb-active a{
  border-color: var(--color);
}

.prodet-page .product-box .prodet-1 .right {
  width: 58%;
  padding-left: 4%;
}

.prodet-page .product-box .prodet-1 .right .text {
    max-height: calc(2em * 8);
    overflow-y: auto;
}

.prodet-page .product-box .prodet-1 .right .share ul li {
    width: auto;
    color: #666;
    font-size: 15px;
    line-height: 1;
    transition: all 0.5s;
}

.prodet-page .product-box .prodet-1 .right .share ul li:hover {
    color: var(--color);
}

.prodet-page .product-box .prodet-2 {
    line-height: 2;
    
}

.prodet-page .product-box .prodet-2 .options ul.itembox {
    background: #fff;
}

.prodet-page .product-box .prodet-2 .options ul.itembox .li {
    width: auto;
    display: flex;
    align-items: center;
    height: 44px;
    background-color: #f8f9fd;
    border-radius: 30px 30px 0 0;
    padding: 0 35px;
    color: #3d474a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .5s;
    cursor: pointer;
}

.prodet-page .product-box .prodet-2 .options ul.itembox .li:hover,
.prodet-page .product-box .prodet-2 .options ul.itembox .li.active {
    color: white;
    background: var(--color);
}

.prodet-page .product-box .prodet-2 .ret {
    padding: 50px;
    background-color: #f8f9fd;
    
}
.prodet-page .product-box .prodet-2 .ret>ul>li .content .text{
  color: #3f3e3e;
}
.prodet-page .product-box .prodet-2 .ret>ul>li .content .text .tecon2 table{
  overflow: hidden;
}
.prodet-page .product-box .prodet-2 .ret>ul>li .content .text .tecon2 table tbody tr{
  border: 0;margin: 0 -10px;
    display: block;
}
.prodet-page .product-box .prodet-2 .ret>ul>li .content .text .tecon2 table tbody td{
  border: 0;
}

.prodet-page .product-box .prodet-2 .ret .form form {
    padding: 10px;
    background: #fff;
    box-shadow: #ccc 0 0 10px 0;
}

.prodet-page .product-box .prodet-2 .ret .form form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li {
    margin-top: 10px;
    width: 49%;
    display: inline-block;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li:nth-child(5) {
    width: 100%;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li:nth-child(5) textarea {
    width: 100%;
    border: #ccc solid 1px;
    padding: 5px;
    font-size: 16px;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li:nth-child(6) {
    width: 100%;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li:nth-child(6) input {
    background: var(--color);
    color: #fff;
    transition: all .5s;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li:nth-child(6) input:hover {
    background: #000;
}

.prodet-page .product-box .prodet-2 .ret .form form ul li input {
    padding: 5px;
    border: #ccc solid 1px;
    width: 100%;
    font-size: 16px;
}
@media screen and (max-width: 1250px){
  .prodet-page .product-box .prodet-2 .ret>ul>li .content .text .tecon2 table{
    overflow: auto;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .product-box .prodet-1 .left{
    width: 100%;
  }
  .prodet-page .product-box .prodet-1 .right{
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .prodet-page .product-box .prodet-2 .ret .form form ul li{
    width:100%!important;
  }

}
.prodet-3 .mk-list ul li .box .imgbox{
  padding: 20px;
  border-radius: 50%;
  background-color: #e5e0e0;
}
@media screen and (max-width: 700px) {
  .prodet-page .product-box .prodet-2 .ret{
    padding: 25px;
  }
  .prodet-page .product-box .prodet-2 .options ul.itembox .li{
    width: 100%;
    border-radius:0;
  }
}
/*==============================================
    prodet-page
*/


/*----- news-page -----*/

.inner-page ul.nav li {
    font-size: 20px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    color: #484343;
}

.inner-page ul.nav li a {
    display: block;
    padding: 5px 10px;
    position: relative;transition: 0.3s;
}

.inner-page ul.nav li a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #484343;
}

.inner-page ul.nav li:last-child a::after {
    content: none;
}

.inner-page ul.nav li:hover,
.inner-page ul.nav li.active {
    color: var(--color);
}
.inner-page ul.nav li:hover a,
.inner-page ul.nav li.active a{
    /*background-color: var(--color);*/
}

@media screen and (max-width: 1000px) {
    .inner-page ul.nav {
        display: none;
    }
}
.intag {
    position: relative;
    padding-left: 15px;
}
.intag::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color);
}
.news-page #index-body .i-news ul li .box .h4 {
    min-height: 50px;
}

.news-page #index-body .i-news ul li .box .img-box img {
    max-height: 270px;
    object-fit: cover;
}

.news-page .news-1 {
    background-color: white;
}

.news-page .news-1 .des {
    text-align: center;
    line-height: 35px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    max-height: 210px;
    overflow: auto;
}

.news-page.product-page .news-1 .des {
    text-align: left;
}



#index-body .i-news {

    border-radius: 73px 73px 0 0;
}

#index-body .i-news .top .text {
    line-height: 40px;
    max-width: 530px;
}

#index-body .i-news ul li {
    height: 100%;
}

#index-body .i-news ul li .box {
    background-color: #ebebeb;
    border-radius: 20px;
    padding: 25px 40px 40px;
    height: 100%;
}

#index-body .i-news ul li .box .time {
    color: rgba(0, 0, 0, 0.9);
}

#index-body .i-news ul li .box .h4 {
    line-height: 1.3;
    /*min-height: 82px;*/
    transition: all 0.5s;
}

#index-body .i-news ul li .box .h4:hover {
    color: var(--color);
}


#index-body .i-news ul li .box .des {
    line-height: 28px;
    color: rgba(0, 0, 0, 0.7);
}

#index-body .i-news ul li .box .arrow {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 7px solid #fff;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    line-height: 1;
}

#index-body .i-news ul li .box .arrow i {
    margin-top: 3px;
}

#index-body .i-news ul li .box .arrow:hover {
    background-color: var(--color);
    color: #fff;
}
@media screen and (max-width: 1450px) {
    #index-body .i-news ul li .box {
        padding: 45px 30px 40px;
    }
}
@media screen and (max-width: 1250px) {

    .news-page .news-1,
    .news-page .news-2 {
        border-radius: 40px 40px 0 0;
    }

    .news-page .news-1 {
        margin-top: 0px;
    }

    .news-page #index-body .i-news ul li {
        width: 33.33%;
    }

    .news-page .news-1 {
        margin-top: 20px;
    }

    #index-body .i-news ul li .box {
        padding: 30px 20px 30px;
    }
}

@media screen and (max-width: 1000px) {
    .news-page #index-body .i-news ul li {
        width: 50%;
    }

    .news-page #index-body .i-news {
        padding-top: 50px;
    }

    #index-body .i-news {
        border-radius: 40px 40px 0 0;
    }
}

@media screen and (max-width: 700px) {
    .news-page #index-body .i-news ul li {
        width: 100%;
    }
   .font-46 {
       line-height: 1.6;
   }
    .news-page #index-body .i-news ul li .box .h4 {
        font-size: 20px!important;
        line-height: 1.4;
        max-height: unset;
        min-height: unset;
        overflow: hidden;
    }
}

@media screen and (max-width: 500px) {
    #index-body .i-news .top .text {
        text-align: left;
        line-height: 26px;
        margin-top: 20px;
    }
}

.news-page .mk-list ul{
  margin: -20px;
}
.news-page .mk-list ul li{
  padding: 20px;
}
@media screen and (max-width: 1250px) {
  .news-page .mk-list ul{
    margin: -10px;
  }
  .news-page .mk-list ul li{
    padding: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .mk-list ul li{
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .news-page .mk-list ul li{
    width: 100%;
  }
}

/*----- newdet-page -----*/
.title {
    line-height: 1.2;
}

.newdet-page {
    background-color: white;
    /*border-radius: 73px 73px 0 0;*/
    /*margin-top: -65px;*/
}

.newdet-page .newdet-1 .content {
    line-height: 1.8;
}

.newdet-page .newdet-1 .tag {
    display: inline-block;
}

@media screen and (max-width: 1250px) {
    .newdet-page {
        border-radius: 40px 40px 0 0;
        margin-top: 20px;
    }
}

.m-link {
    border-top: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
    width: 100%;
}

.m-link .next {
    text-align: right;
}

@media screen and (max-width: 1000px) {
    .m-link {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .m-link .next {
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }
}


/*
    resource-page
==============================================*/


.resource-page .resource-3 .left .title span {
    margin-left: 65px;
}

.resource-page .resource-3 .left p {
    line-height: 1.6;
}

.resource-page .resource-3 .right ul li {
    border-radius: 14px;
    border: 1px solid #c7c7c7;
    padding: 24px 35px 16px 40px;
    cursor: pointer;
}

.resource-page .resource-3 .right ul li .h5 {
    padding-right: 30px;
    position: relative;
}

.resource-page .resource-3 .right ul li .h5 i {
    position: absolute;
    right: 0;
    top: 1px;
    line-height: 1;
    font-size: 24px;
    font-weight: 600;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    display: block;
}

.resource-page .resource-3 .right ul li .des {
    display: none;
    color: #6f6f6f;
    line-height: 1.75;
    margin-top: 19px;
}

.resource-page .resource-3 .right ul li.active .h5 i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 1000px) {
    .resource-page .resource-3 .left {
        width: 100%;
        padding: 0;
    }

    .resource-page .resource-3 .right {
        width: 100%;
        margin-top: 20px;
    }
}

/*==============================================
    resource-page
*/

.contact-page .contact-1 .left form input,
.contact-page .contact-1 .left form textarea {
    width: 100%;
    border: 1px solid #c7c7c7;
    font-size: 20px;
    height: 74px;
    border-radius: 14px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.contact-page .contact-1 .left form textarea {
    padding: 20px;
    height: 150px;
}

.contact-page .contact-1 .right {
    padding-left: 145px;
}

.contact-page .contact-1 .right .share a {
    font-size: 30px;
    margin-right: 15px;
}

.contact-page .contact-2 {
    border-radius: 73px 73px 0 0;
    background-color: #efefef;
}

.contact-page .contact-2 .left {
    max-width: 440px;
}

.contact-page .contact-2 .left ul li {
    color: #2b2b2b;
}

.contact-page .contact-2 .left ul li i {
    color: var(--color);
    font-size: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact-page .contact-2 .right {
    text-align: right;
}

.contact-page .contact-2 .right .pre {
    display: inline-block;
}

.contact-page .contact-2 .right .add {
    background-color: white;
    padding: 30px 45px;
    border-radius: 23px;
    -webkit-box-shadow: -5.814px 15.975px 49px 0px rgba(94, 94, 94, 0.18);
    box-shadow: -5.814px 15.975px 49px 0px rgba(94, 94, 94, 0.18);
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 380px;
    -webkit-transform: translateX(-45%);
    -moz-transform: translateX(-45%);
    -ms-transform: translateX(-45%);
    transform: translateX(-45%);
}

.contact-page .contact-2 .right .add .h4 {
    color: var(--color);
    margin-bottom: 5px;
}

.contact-page .contact-2 .right img {
    border-radius: 20px;
}

@media screen and (max-width: 1700px) {
    .contact-page .contact-1 .right {
        padding-left: 280px;
    }
}

@media screen and (max-width: 1450px) {
    .contact-page .contact-1 .right {
        padding-left: 165px;
    }

    .contact-page .contact-2 .right .add {
        -webkit-transform: translateX(-15%);
        -moz-transform: translateX(-15%);
        -ms-transform: translateX(-15%);
        transform: translateX(-15%);
    }
}

@media screen and (max-width: 1250px) {
    .contact-page .contact-1 .right {
        padding-left: 80px;
    }

    .contact-page .contact-1 .left form input,
    .contact-page .contact-1 .left form textarea,
    .soludet-page .soludet-5 .right form input {
        font-size: 18px;
        height: 60px;
    }

    .contact-page .contact-1 .left form textarea {
        height: 150px;
    }
}

@media screen and (max-width: 1000px) {
    .contact-page .contact-1 .right {
        padding-left: 30px;
    }

    .contact-page .contact-1 .right .share a {
        font-size: 22px;
    }

    .contact-page .contact-2 .left {
        width: 100%;
    }

    .contact-page .contact-2 .right {
        width: 100%;
        margin-top: 20px;
    }

    .contact-page .contact-2 .right .add {
        position: static;
        transform: translateX(0);
    }
    .contact-page .contact-2 .right img{
      margin-top: 40px;
    }
}

@media screen and (max-width: 700px) {
    .contact-page .contact-1 .right {
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .contact-page .contact-1 .left {
        width: 100%;
    }

    .contact-page .contact-2 .right .add {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
    }
}


/*
    ask-page
==============================================*/
.ask-page .ask-2 {
  background-color: var(--color2);
}
.ask-page .ask-2 .mk-content {
  background-color: #ffffff;
}
.ask-page .ask-2 .mk-content .left .form{
  border: 1px solid #e1e1e1;
  color: #353738;
}
.ask-page .ask-2 .mk-content .left .form input{
  width: 100%;
  background-color: transparent;
  border: 1px solid #c3c3c3;
  height: 52px;
  padding: 2px 20px;
  margin-bottom: 15px;
}
.ask-page .ask-2 .mk-content .left .form textarea{
  width: 100%;
  background-color: transparent;
  border: 1px solid #c3c3c3;
  height: 92px;
  padding: 2px 20px;
  margin-bottom: 15px;
}

.ask-page .ask-2 .mk-content .right {
  color: #353738;
}
.ask-page .ask-2 .mk-content .right .desc {
  color: #353738;
}
@media screen and (max-width: 1000px) {
  .hide-1000 {
    display: none;
  }
}
@media screen and (max-width: 700px){
  .ask-page .ask-2 .mk-content{
    padding:30px 20px;
  }
}
/*==============================================
    ask-page
*/
.case-page .mk-list ul{
  margin: -20px;
}
.case-page .mk-list ul li{
  padding: 20px;
}
.case-page .mk-list ul li .box .imgbox > img {
  width: 100%;
}
.case-page .mk-list ul li .box .gq {
  position: absolute;
  top: 0;
  left: 0;
}
.case-page .mk-list ul li .box .txtbox {
  background-color: var(--color);
  padding: 15px 30px;
}
.case-page .mk-list ul li .box .txtbox p i {
  width: 19px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(4px);
}

.inner-page{
  border-radius: 1em 1em 0 0;
  margin: -1em  -1em 0 0;
  background-color: white;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1450px){
  .case-page .mk-list ul{
    margin: -10px;
  }
  .case-page .mk-list ul li{
    padding: 10px;
  }
}
@media screen and (max-width: 1250px){
  .inner-page{
    margin: 0;
  }
  #innerMobileBanner .banner2.colorWhite{
    background-image: linear-gradient(-160deg, var(--color), rgba(0, 0, 0, 0.05));
  }
}




.seoPublic .Auxil-related .list ul li .box {
    background-color: #f8f9fd;
    padding: 20px;
    border-radius: 40px;
}
#mobile2{
  background-color: var(--color);
}
#mobile2 .logo img{
  filter: brightness(0) invert(1);
}

.oxy-nav-menu .mb2-search input[type='submit']{
  background-color: #046e46;
}