/*@font-face {
  font-family: 'GothamRounded';
  src: url(../fonts/GothamRounded-Light.ttf) format('truetype'), url(../fonts/GothamRounded-Light.eot) format('eot'), url(../fonts/GothamRounded-Light.woff) format('woff'), url(../fonts/GothamRounded-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Play';
  src: url(../fonts/Play-Bold.ttf) format('truetype'), url(../fonts/Play-Bold.eot) format('eot'), url(../fonts/Play-Bold.woff) format('woff'), url(../fonts/Play-Bold.woff2) format('woff2');
  font-weight: bold;
}*/
:root {
  --font: 'arial';
  --white: #fff;
  --black: #000;
  --color: #3eb134;
}

#index-body {
  overflow: hidden;
}

.t-font{
  font-family: var(--font);
}

body {
  font-family: "arial";
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1600px;
}

#nav-height {
  height: 90px;
}

#header {
  z-index: 200;
  position: relative;
  width: 100%;
  /*top: 0;
  left: 0;*/
  background-color: white;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  
  padding: 0 5%;
  /*-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
  height: 90px;
  line-height: 90px;
  border-radius: 45px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 25px;
  font-size: 20px;
  font-family: var(--font);
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li.active {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li 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;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-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-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: #000;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #3eb134;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li: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);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li: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);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}


#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu > li: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);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}

#header .nav .ui.menu .langBox {
  margin-left: 40px;
  margin-right: 0;
  font-size: 23px;
  line-height: normal;
  font-family: var(--font);
}
#header .nav .ui.menu .langBox > div.lang + div.lang::before {
  content: "/";
  float: left;
  margin: 0 5px;
}
#header .nav .ui.menu .line {
  height: 8px;
  border-left: 1px solid black;
  margin: 0 15px;
}
#header .nav .ui.menu .h-search {
  line-height: normal;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}

.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
      line-height: 28px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  line-height: 28px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 120px;
  }
}
.hover-language .zhuyu {
  font-size: 18px;
  font-family: var(--font);
}

.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  white-space: nowrap;
  -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.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -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);
  display: none \9;
}
.hover-language ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #ffb11b;
  color: white;
}
.hover-language:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
/*#banner {
  opacity: 0;
}
#banner.active {
  opacity: 1;
}*/
#banner li {
  position: relative;
  height: 660px;
}
#banner li > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 40px;
}
#banner h2 {
  font-size: 68px;
  line-height: 1.3;
  font-family: var(--font);
  font-weight: bold;
  color: #3eb134;
  margin-bottom: 15px;
}
#banner p {
  font-size: 20px;
  color: #495c47;
  margin-bottom: 40px;
}
#banner .video {
  width: 200px;
  height: 120px;
  border-radius: 8px;
  background-image: url(../images/banner-video-bg.jpg);
  background-size: cover;
  background-position: center;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
}
#banner .video i {
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#banner .PrevAndNext {
  right: -webkit-calc((100vw - 1570px) / 2 + 220px);
  right: -moz-calc((100vw - 1570px) / 2 + 220px);
  right: calc((100vw - 1570px) / 2 + 220px);
  bottom: 40px;
}
#banner .PrevAndNext > div {
  display: inline-block;
  vertical-align: middle;
}
#banner .PrevAndNext > div.arrow {
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: #3eb134;
  border-radius: 8px;
  border: 1px solid currentcolor;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}
#banner .PrevAndNext > div.arrow:hover {
  border-color: transparent;
  background-color: #ffffff;
}
#banner .PrevAndNext > div.page {
  margin: 0 30px;
  font-size: 44px;
  height: 40px;
  line-height: 40px;
  font-family: var(--font);
  color: white;
}
#banner .PrevAndNext > div.page span {
  font-size: 28px;
}
.baseTag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.baseTag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #3eb134;
  margin-right: 10px;
}
.baseTag.txt-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.baseTit {
  font-size: 60px;
  line-height: 1.3;
  font-family: var(--font);
  font-weight: bold;
}
.our-about .box {
  padding: 0 5%;
}
.our-about .desc {
  margin-bottom: 100px;
}
.our-about .desc h1 {
  display: inline;
}
.our-about ul {
  margin: -15px;
}
.our-about ul li {
  padding: 15px;
}
.our-about ul li i {
  height: 90px;
}
.our-about ul li i img {
  width: auto;
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.our-about ul li span {
  font-family: var(--font);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.our-about ul li:hover i img {
  -webkit-filter: none;
  filter: none;
}
.our-about ul li:hover span {
  color: #3eb134;
}
.i-app {
  height: 630px;
  position: relative;
}
.i-app svg text {
  font-size: 18px;
  font-family: var(--font);
}
.i-app .bgs {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.i-app .bgs .bg {
  background-position: center;
  background-size: cover;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.i-app .bgs .bg:not(.active) {
  z-index: -1;
  opacity: 0;
}
.i-app .content {
  width: 100%;
  max-width: 1050px;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  display: none;
}
.i-app .content::before {
  content: attr(data-text);
  font-size: 165px;
  line-height: .8;
  font-family: var(--font);
  font-weight: bold;
  color: white;
  opacity: .1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.i-app .content .Tit {
  margin: 40px 0;
  font-size: 52px;
  color: white;
  font-family: var(--font);
  font-weight: bold;
}
.i-app .content .desc {
  margin-bottom: 30px;
  color: white;
}
.i-app .content a {
  color: #3eb134;
  border-bottom: 1px solid currentColor;
}
.i-app ul {
  height: 100%;
}
.i-app ul li {
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.i-app ul li svg {
  position: absolute;
  right: 15px;
  bottom: 20px;
  opacity: 0;
}
.i-app ul li svg polygon {
  fill: transparent;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.i-app ul li.active svg polygon {
  fill: #3eb134;
}

.i-app .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.i-app .arrow.arrow_l {
  left: 5%;
}
.i-app .arrow.arrow_r {
  right: 5%;
}

.i-category {
  padding: 70px 0;
}
.i-category svg text {
  font-size: 18px;
  font-family: var(--font);
}
.i-category .line {
  width: 116px;
  height: 4px;
  border-radius: 2px;
  background-color: #3eb134;
  margin: 30px auto;
}
.i-category ul {
  margin-top: 80px;
}
.i-category ul li {
  width: 150px;
  height: 170px;
  line-height: 170px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-image: url(../images/cate-bg2.png);
  position: relative;
  padding: 0 15px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.i-category ul li a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.i-category ul li svg {
  position: absolute;
  right: 15px;
  top: 15px;
}
.i-category ul li span {
  line-height: 1.5;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  font-family: var(--font);
}
.i-category ul li:nth-child(even) {
  margin-top: 85px;
  background-image: url(../images/cate-bg3.png);
}
.i-category ul li:nth-child(even) svg {
  right: auto;
  top: auto;
  left: 15px;
  bottom: 15px;
}
.i-category ul li:first-child {
  background-image: url(../images/cate-bg1.png);
}
.i-category ul li:hover {
  background-image: url(../images/cate-bg.png);
}
a.baseBtn {
  line-height: 40px;
  color: #3eb134;
}
a.baseBtn i {
  margin-left: 30px;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #3eb134;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
a.baseBtn i img {
  display: inline-block;
}
.our-product {
  padding: 70px 0;
}
.our-product .top {
  padding-left: 200px;
  max-width: 70%;
}
.our-product .baseTag {
  left: 0;
  top: 20px;
}
.our-product .baseTit {
  color: #3eb134;
}
.our-product a.baseBtn {
  margin-top: 110px;
}
.our-product .list {
  margin-top: 90px;
  padding: 0 70px;
}
.our-product .list ul {
  margin: -10px;
}
.our-product .list ul li {
  padding: 10px;
}
.our-product .list ul li .img {
  border: 1px solid #c6c6c6;
  border-radius: 12px;
  overflow: hidden;
}
.our-product .list ul li .text {
  padding: 20px;
}
.our-product .list ul li .name {
  font-family: var(--font);
}
.our-product .list ul li a.readMore {
  padding-bottom: 10px;
  color: #3eb134;
  border-bottom: 4px solid currentColor;
}
.our-product .list ul li a.readMore svg {
  vertical-align: bottom;
}
.i-advantage {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}
.i-advantage::before,
.i-advantage::after {
  content: "";
  position: absolute;
  background-color: #3eb134;
  opacity: .15;
  border-radius: 50%;
  z-index: -1;
}
.i-advantage::before {
  width: 350px;
  height: 300px;
  left: 30%;
  top: 20%;
}
.i-advantage::after {
  width: 77px;
  height: 66px;
  left: 48%;
  top: 11%;
}
.i-advantage .baseTag {
  left: 0;
  top: 20px;
}
.i-advantage .left {
  padding-left: 50%;
}
.i-advantage .left .imgs {
  position: absolute;
  z-index: 1;
  right: -webkit-calc(50% + 60px);
  right: -moz-calc(50% + 60px);
  right: calc(50% + 60px);
  bottom: -70px;
  width: 1200px;
  height: 600px;
  border-radius: 600px 600px 0 0;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /*padding: 3% 4% 2% 30%;*/
  background-color: white;
}
.i-advantage .left .imgs ul {
  height: 100%;
}
.i-advantage .left .imgs ul * {
  height: 100%;
}
.i-advantage .left .list ul {
  margin-top: 100px;
}
.i-advantage .left .list ul li {
  padding-left: 90px;
  position: relative;
  margin-bottom: 15px;
}
.i-advantage .left .list ul li em.line {
  position: absolute;
  top: 90px;
  left: 30px;
  height: 167px;
  border-left: 1px solid #3eb134;
}
.i-advantage .left .list ul li em.line::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background-color: #3eb134;
}
.i-advantage .left .list ul li span.num {
  font-size: 26px;
  font-family: var(--font);
  color: white;
  width: 61px;
  height: 61px;
  line-height: 59px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #3eb134;
  position: absolute;
  left: 0;
  top: 0;
}
.i-advantage .left .list ul li span.num::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border-radius: 50%;
  background-color: #3eb134;
  z-index: -1;
}
.i-advantage .left .list ul li .name {
  font-family: var(--font);
}
.i-advantage .left .list ul li .desc {
  line-height: 2;
  min-height: 10em;
}
.our-news {
  background-color: #f4f4f4;
  padding: 100px 0 70px;
}
.our-news .left {
  width: 35%;
}
.our-news .right {
  width: 65%;
}
.our-news .right ul {
  margin: -10px;
}
.our-news .right ul li {
  padding: 10px;
}
.our-news .right ul li .text {
  background-color: white;
  padding: 20px;
}
.our-news .right ul li .text .name {
  font-family: var(--font);
}
.our-news .right ul li .text p {
  font-size: 15px;
  line-height: 30px;
}
.our-news .right ul li .date {
  padding-left: 35px;
  position: relative;
}
.our-news .right ul li .date i {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.our-news .right ul li .date i img {
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
}
.our-news .right ul li .date time {
  height: 38px;
  line-height: 38px;
  padding: 0 20px;
  display: inline-block;
  background-color: #ebebeb;
}
.our-news .right ul li:hover .text {
  color: #3eb134;
}
.our-news .right ul li:hover .date i img {
  -webkit-filter: none;
  filter: none;
}
.our-news .right ul li:hover .date time {
  color: white;
  background-color: #3eb134;
}
#footer {
  color: white;
  background-color: #3b3b3b;
}
#footer .foot-top {
  padding: 40px 0;
  border-bottom: 1px solid white;
}
#footer .foot-top .logo {
  display: inline-block;
}
#footer .foot-top .logo img {
  width: auto;
}
#footer .foot-top ul {
  display: inline-block;
  margin-left: 75px;
}
#footer .foot-top ul li {
  display: inline-block;
  font-family: var(--font);
}
#footer .foot-top ul li a:hover{
  color: #3eb134;
}
#footer .foot-top ul li + li {
  margin-left: 55px;
}
#footer .foot-center {
  padding: 80px 0;
}
#footer .foot-center form input {
  height: 56px;
  font-size: 16px;
  color: black;
  background-color: white;
  border: none;
  padding: 0 20px;
  margin-right: 4px;
  width: 290px;
}
#footer .foot-center form input[type="submit"] {
  padding: 0 30px;
  color: white;
  background-color: #3eb134;
  margin-right: 0;
  width: auto;
}
#footer .foot-center .left p {
  max-width: 500px;
  float: left;
}
#footer .foot-center .left #ewm{
  float: right;
  width: 100px;
  border: 5px solid white;
}
#footer .foot-center .right h4 {
  font-family: var(--font);
}
#footer .foot-center .right .social-links a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
  font-size: 20px;
  color: black;
  background-color: white;
}
#footer .foot-center .right .social-links a:hover {
  background-color: #3eb134;
}
#footer .foot-center .right .social-links a + a {
  margin-left: 10px;
}

#footer .foot-bottom{
  border-top: 1px solid white;
}

#footer .foot-bottom p,
#footer .foot-bottom a{
  display: inline-block;
  vertical-align: middle;
}

#footer .foot-bottom img{
  max-height: 14px;
}

@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #banner .PrevAndNext {
    right: -webkit-calc((100vw - 1370px) / 2 + 220px);
    right: -moz-calc((100vw - 1370px) / 2 + 220px);
    right: calc((100vw - 1370px) / 2 + 220px);
  }
  .baseTit {
    font-size: 50px;
  }
  .our-product .list {
    padding: 0;
  }
  .i-advantage .left .imgs {
    width: 1000px;
    height: 500px;
  }
  .our-about .box {
    padding: 0;
  }
}
@media (max-width: 1400px) {
  #nav-height {
    height: 70px;
  }

  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 18px;
  }
  #header .nav .ui.menu .langBox {
    font-size: 18px;
  }
  #header .nav .ui.menu {
    padding: 0 3%;
    height: 70px;
    line-height: 70px;
  }
  #banner .PrevAndNext {
    right: -webkit-calc((100vw - 1170px) / 2 + 220px);
    right: -moz-calc((100vw - 1170px) / 2 + 220px);
    right: calc((100vw - 1170px) / 2 + 220px);
  }
  #banner h2 {
    font-size: 50px;
  }
  #banner p {
    font-size: 18px;
  }
  .baseTit {
    font-size: 40px;
  }
  .i-app .content .Tit {
    font-size: 40px;
  }
  .i-app .content::before {
    font-size: 140px;
    line-height: 1;
  }
  .i-advantage .left .imgs {
    width: 1000px;
    height: 500px;
  }
  .i-advantage .left .imgs {
    right: 50%;
  }
  .font-20 {
    font-size: 18px;
  }
  .font-22 {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    margin: 0 15px;
  }
  #header .nav .ui.menu .langBox {
    font-size: 16px;
  }
  #banner .PrevAndNext {
    right: -webkit-calc((100vw - 970px) / 2 + 220px);
    right: -moz-calc((100vw - 970px) / 2 + 220px);
    right: calc((100vw - 970px) / 2 + 220px);
  }
  .font-18 {
    font-size: 16px;
  }
  .font-20 {
    font-size: 16px;
  }
  .font-22 {
    font-size: 18px;
  }
  #banner h2 {
    font-size: 40px;
  }
  #banner p {
    font-size: 16px;
  }
  .baseTit {
    font-size: 30px;
  }
  .i-app .content .Tit {
    font-size: 30px;
  }
  .i-app .content::before {
    font-size: 120px;
  }
  .i-category ul li {
    width: 130px;
    height: 150px;
    line-height: 150px;
  }
  .i-category ul li:nth-child(even) {
    margin-top: 70px;
  }
  .i-category ul li svg {
    display: none;
  }
  .i-advantage .left .imgs {
    width: 800px;
    height: 400px;
  }
  .i-advantage .left .list ul {
    margin-top: 40px;
  }
  #footer .foot-center form input {
    width: 220px;
  }
  #footer .foot-top ul li + li {
    margin-left: 30px;
  }
}
@media (max-width: 1000px) {
  #ewm{
    display: none;
  }

  .ui.container {
    width: 700px;
  }
  #nav-height {
    height: 120px;
  }
  #header {
    display: none!important;
  }
  #mobile {
    display: block;
  }
  #banner li {
    height: 400px;
  }
  #banner .PrevAndNext {
    display: none;
  }
  #banner h2 {
    font-size: 30px;
  }
  #banner p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  #banner .video {
    width: 150px;
    height: 90px;
  }
  .font-18 {
    font-size: 14px;
  }
  .baseTit {
    font-size: 24px;
  }
  .our-about ul li i {
    height: 70px;
  }
  .our-about .desc {
    margin-bottom: 40px;
  }
  .font-22 {
    font-size: 16px;
  }
  .our-about ul li {
    width: 25%!important;
  }
  .i-app ul li {
    width: 25%!important;
  }
  .i-app .content {
    top: 30px;
  }
  .i-app .content .Tit {
    margin: 20px 0;
  }
  .i-app .content::before {
    display: none;
  }
  .i-app {
    height: 400px;
  }
  .i-category ul li:nth-child(even) {
    margin-top: 0;
  }
  .i-category ul {
    margin-top: 40px;
  }
  .our-product .top {
    max-width: 100%;
    padding-left: 0;
    float: none;
  }
  .our-product .baseTag {
    position: relative;
    left: auto;
    top: auto;
  }
  .our-product .fr {
    float: none;
    margin-top: 30px;
  }
  .our-product .list {
    margin-top: 40px;
  }
  .our-product .list ul li .text {
    padding: 10px;
  }
  .our-product .list ul li .name {
    margin-bottom: 10px;
  }
  .i-advantage .left .imgs {
    display: none;
  }
  .i-advantage::before,
  .i-advantage::after {
    display: none;
  }
  .i-advantage .left {
    padding-left: 0;
  }
  .i-advantage .baseTag {
    position: relative;
    left: auto;
    top: auto;
  }
  .baseTit br {
    display: none;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .left {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .our-news .right {
    width: 100%;
  }
  #footer .foot-top {
    display: none;
  }
  #footer .foot-center {
    padding: 40px 0;
  }
  #footer .foot-center .fl,
  #footer .foot-center .fr {
    float: none;
  }
  #footer .foot-center form input {
    width: -webkit-calc(40% - 4px);
    width: -moz-calc(40% - 4px);
    width: calc(40% - 4px);
    font-size: 14px;
  }
  #footer .foot-center form input[type="submit"] {
    width: 20%;
    padding: 0;
  }
  .our-news .right ul li .text p {
    font-size: 14px;
  }
  #footer .foot-center .left p {
    max-width: 100%;
  }
  #footer .foot-center .left {
    margin-bottom: 40px;
  }
  .font-16 {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  .prodet-page .prodet-2 .ret .kevinli table tbody{
    min-width: initial;
  }
  .prodet-page .prodet-2 .ret .content p{
    text-align: left;
  }
  #banner li {
    height: 300px;
  }
  #banner p {
    margin-bottom: 0;
  }
  #banner .video {
    display: none;
  }
  .our-about ul li {
    width: 50%!important;
  }
  .i-app {
    display: none;
  }
  /*.i-category {
    display: none;
  }*/
  .i-advantage {
    display: none;
  }
}
@media (max-width: 500px) {
  #banner li {
    height: 200px;
  }
  #banner h2 {
    font-size: 24px;
  }
  .font-22 {
    font-size: 14px;
  }
  #footer .foot-center form input {
    width: 100%;
    height: 40px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  #footer .foot-center form input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
  }
}






.more {
  padding: 14px 23px;
  background: var(--color);
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  font-family: var(--font);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  color: #fff;
}
.more i {
  display: inline-block;
  vertical-align: middle;
  margin: -5px 0 0 9px;
}
.more::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transition: transform .5s ease;
  -moz-transition: transform .5s ease;
  -ms-transition: transform .5s ease;
  -o-transition: transform .5s ease;
  -webkit-transition: transform .5s ease;
  background: var(--black);
}
.more:hover {
  color: var(--white);
}
.more:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}

.inner-page h1,
.inner-page h2,
.inner-page h3{
 font-weight: bold; 
}


.inner-banner {
  display: block;
  height: 410px;
  padding-top: 120px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
}
.inner-banner:after {
  content: '';
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.inner-banner.active:after {
  opacity: 0.3;
  -webkit-transition: 1.2s 1s;
  -moz-transition: 1.2s 1s;
  -ms-transition: 1.2s 1s;
  -o-transition: 1.2s 1s;
  transition: 1.2s 1s;
}
.inner-banner .box {
  text-align: center;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}
.inner-banner.active .box {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-banner .box .content {
  margin: 0 auto;
  text-align: left;
}
.inner-banner .box .mbx {
  display: block;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.inner-banner .box h2 {
  font-size: 26px;
  line-height: 1.2;
  color: #fff;
  position: relative;
  margin: 10px 0;
  text-transform: capitalize;
  z-index: 1;
  font-family: var(--font);
  font-weight: bold;
}
.inner-banner h2:after {
  content: attr(data-text);
  font-size: 80px;
  font-family: var(--font);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: -20%;
  z-index: -2;
  opacity: 0;
}
.inner-banner.active .box h2:after {
  left: 0;
  opacity: 1;
  -webkit-transition: 1.8s .5s;
  -moz-transition: 1.8s .5s;
  -ms-transition: 1.8s .5s;
  -o-transition: 1.8s .5s;
  transition: 1.8s .5s;
}
.inner-banner .btn {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.inner-banner .btn a.more {
  line-height: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 35px;
  background: var(--color);
  color: #fff;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.inner-banner .btn a.more.contact:hover{
  color: #fff;
}
.inner-banner .btn a.more:hover{
  color: #fff;
}
.inner-banner .btn a.more.contact {
  padding-left: 20px;
  background: #fff;
  color: #000;
  margin-left: 10px;
  padding: 0 0 0 10px;
}
.inner-banner .btn a.more {
  line-height: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 35px;
  background: var(--color);
  color: #fff;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-banner .btn a.more.contact i {
  text-align: center;
  color: #fff;
  background: var(--color);
  width: 50px;
  display: inline-block;
  height: 100%;
  vertical-align: top;
  padding-top: 15px;
  margin: 0 0 0 10px;
}
.inner-banner .box h6 {
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 2;
  margin-top: 20px;
}
.inner-banner .nav-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.inner-banner .nav-list ul {
  letter-spacing: -5px;
}
.inner-banner .nav-list ul li {
  display: inline-block;
  letter-spacing: 0;
  min-width: 320px;
  font-size: 18px;
  color: #fff;
  background: rgba(7, 66, 149, 0.6);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin: 0 1px;
}
.inner-banner .nav-list ul li a {
  display: block;
  padding: 30px;
  font-weight: bold;
}
.inner-banner .nav-list ul li:hover {
  background: var(--color);
}
.inner-page .m-page {
  text-align: right;
  display: block;
}
.inner-page .m-page a,
.inner-page .m-page span {
  line-height: 60px;
  height: 60px;
  padding: 0 25px;
  display: inline-block;
  font-size: 28px;
  color: #fff;
  background: var(--color);
  border: 1px solid var(--color);
  border-radius: 4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span {
  background: white;
  color: var(--color);
}
.inner-page .m-page span {
  margin: 0 3px;
}
.about-page h2.h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.about-page p.p {
  font-size: 18px;
  color: #fff;
}
.about-page .abt-2 {
  padding-bottom: 20px;
}
.about-page .abt-2 .grid-box .left {
  vertical-align: middle;
}
.about-page .abt-2 .grid-box .left .ig {
  position: relative;
}
.about-page .abt-2 .grid-box .left .ig .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.about-page .abt-2 .grid-box .left img {
  width: 100%;
}
.about-page .abt-2 .grid-box .right {
  vertical-align: middle;
  padding-right: 20px;
}
.about-page .abt-2 .grid-box .right .text h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
}
.about-page .abt-2 .grid-box .right .text p {
  font-size: 18px;
  color: #000;
  margin-top: 20px;
  line-height: 2;
}
.about-page .abt-2 .grid-box .right .text .link {
  display: inline-block;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: var(--color);
  margin-top: 35px;
}
.about-page .abt-2 .grid-box .right .text .link:hover {
  text-decoration: underline;
}
.about-page .abt-7 {
  padding: 40px;
}
.about-page .abt-7 .grid-box .left {
  vertical-align: middle;
}
.about-page .abt-7 .grid-box .left img {
  max-width: 662px;
  width: 100%;
}
.about-page .abt-7 .grid-box .right {
  vertical-align: middle;
  padding-left: 20px;
  padding-top: 3em;
}
.about-page .abt-7 .grid-box .right .text h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0 15px;
  color: #1a466c;
}
.about-page .abt-7 .grid-box .right .text h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  color: #1a466c;
  text-transform: uppercase;
}
.about-page .abt-7 .grid-box .right .text p {
  font-size: 18px;
  color: #000;
  margin-top: 20px;
  line-height: 2;
}
.about-page .abt-7 .grid-box .right .text .link {
  display: inline-block;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: var(--color);
  margin-top: 35px;
}
.about-page .abt-7 .grid-box .right .text .link:hover {
  text-decoration: underline;
}
/*关于我们*/
.about-page .about-2 .history-Box {
  z-index: 1;
}
.about-page .about-2 .history-Box .history-Box {
  z-index: 0;
}
.about-page .about-2 .history-Box .swiper-button-prev,
.about-page .about-2 .history-Box .swiper-button-next {
  top: 48% !important;
  -o-object-fit: cover;
  object-fit: cover;
  width: 40px;
  height: 60px !important;
  opacity: .5;
  z-index: 10;
}
.inner-page.about-page .about-1 .video-img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  
}
.inner-page.about-page .about-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  right: 0; 
  transition: .5s ease;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  -o-transition: .5s ease;
  overflow: hidden;
}
.inner-page.about-page .about-1 video{
  opacity: 0;
}
.init-left p {
  line-height: 2;
  color: #535353;
  width: 90%;
}
.init-left h5 {
  font-size: 20px;
  width: 70%;
  line-height: 1.5;
  color: #535353;
  font-weight: bold;
  margin-bottom: 24px;
}
.init-left h4 {
  font-size: 38px;
  line-height: 1;
  color: #535353;
  font-weight: bold;
  margin-bottom: 35px;
}
.about-page .about-2 {
  padding: 75px 0 60px;
  background: url(../images/history-bg.jpg) no-repeat center center;
  background-size: cover;
}
.about-page .about-2 .top {
  text-align: center;
  margin-bottom: 90px;
}
.about-page .about-2 .top h3 {
  font-size: 36px;
  line-height: 1;
  color: #fefefe;
  font-weight: bold;
  margin-bottom: 12px;
}
.about-page .about-2 .top p {
  font-size: 20px;
  line-height: 1;
  color: #fefefe;
}
.about-page .about-2 ul li {
  width: 25%;
  position: relative;
}
.about-page .about-2 ul li::after {
  position: absolute;
  content: "";
  height: 190px;
  width: 1px;
  border-left: 1px solid #ffffff;
  left: 0;
  bottom: 0;
}
.about-page .about-2 ul li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 100%;
  left: -6px;
  bottom: -6px;
}
.about-page .about-2 ul li h4 {
  font-size: 25px;
  line-height: 1;
  color: #fefefe;
  font-weight: bold;
  margin-bottom: 15px;
}
.about-page .about-2 ul li p {
  font-size: 14px;
  line-height: 2;
  color: #fefefe;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  height: 120px;
}
.about-page .about-2 ul.h-up {
  position: relative;
}
.about-page .about-2 ul.h-up::after {
  width: 50px;
  height: 1px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  content: "";
  right: 100%;
  bottom: -1px;
}
.about-page .about-2 ul.h-up li {
  padding: 25px 25px 50px;
  position: relative;
}
.about-page .about-2 ul.h-up li:nth-child(even) {
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.about-page .about-2 ul.h-up li:nth-child(even)::before {
  top: -6px;
  bottom: auto;
}
.about-page .about-2 .history-Box .swiper-button-prev,
.about-page .about-2 .history-Box .swiper-button-next {
  position: absolute;
  top: 50%;
  /*-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);*/
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}
.about-page .about-2 .history-Box .swiper-button-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 10px;
}
.about-page .about-2 .history-Box .swiper-button-next {
  background-image: url("../images/banner-btn-r.png");
  right: 10px;
}
.about-page .about-2 .historyBox {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1545px;
  padding-left: 35px;
}
.about-page .about-2 .historyBox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
}
.about-page .about-3 {
  padding: 120px 0 85px;
}
.about-page .about-3 .content {
  margin: 0 auto;
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-page .about-3 .content .left {
  width: 60.7%;
}
.about-page .about-3 .content .left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-3 .content .left ul li {
  width: 31.5%;
  padding: 45px 30px 25px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  border-radius: 10px;
}
.about-page .about-3 .content .left ul li::after {
  position: absolute;
  font-size: 85px;
  line-height: .8;
  color: rgba(7, 66, 149, 0.2);
  font-weight: bold;
  right: 0;
  bottom: 0;
}
.about-page .about-3 .content .left ul li span {
  width: 71px;
  height: 71px;
  display: inline-block;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.about-page .about-3 .content .left ul li h5 {
  font-size: 18px;
  line-height: 1;
  color: #000;
  font-weight: bold;
  margin: 20px 0 20px;
}
.about-page .about-3 .content .left ul li p {
  font-size: 14px;
  line-height: 2;
  color: #777777;
  height: 120px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.about-page .about-3 .content .left ul li:nth-child(1) span {
  background: url(/template/en/images/icon-3-1.jpg) no-repeat center center;
}
.about-page .about-3 .content .left ul li:nth-child(1)::after {
  content: "01";
}
.about-page .about-3 .content .left ul li:nth-child(2) {
  -webkit-transform: translateY(-27px);
  -moz-transform: translateY(-27px);
  -ms-transform: translateY(-27px);
  transform: translateY(-27px);
}
.about-page .about-3 .content .left ul li:nth-child(2) span {
  background: url(/template/en/images/icon-3-2.jpg) no-repeat center center;
}
.about-page .about-3 .content .left ul li:nth-child(2)::after {
  content: "02";
}
.about-page .about-3 .content .left ul li:nth-child(3) span {
  background: url(/template/en/images/icon-3-3.jpg) no-repeat center center;
}
.about-page .about-3 .content .left ul li:nth-child(3)::after {
  content: "03";
}
.about-page .about-3 .content .left ul li:nth-child(4) span {
  background: url(/template/en/images/icon-3-4.jpg) no-repeat center center;
}
.about-page .about-3 .content .left ul li:nth-child(4)::after {
  content: "04";
}
.about-page .about-3 .content .left ul li:nth-child(5) {
  -webkit-transform: translateY(-27px);
  -moz-transform: translateY(-27px);
  -ms-transform: translateY(-27px);
  transform: translateY(-27px);
}
.about-page .about-3 .content .left ul li:nth-child(5) span {
  background: url(/template/en/images/icon-3-1.jpg) no-repeat center center;
}
.about-page .about-3 .content .left ul li:nth-child(5)::after {
  content: "05";
}
.about-page .about-3 .content .left ul li:nth-child(6) span {
  background: url(/template/en/images/icon-3-2.jpg) no-repeat center center;
}
.about-page .about-3 .content .left ul li:nth-child(6)::after {
  content: "06";
}
.about-page .about-3 .content .right {
  width: 39.3%;
  padding-left: 4%;
}
.about-page .about-3 .content .right h4 {
  font-size: 16px;
  line-height: 1;
  color: #014099;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
.about-page .about-3 .content .right h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background: var(--color);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .about-3 .content .right h5 {
  font-size: 38px;
  line-height: 2;
  color: #000;
  font-weight: 700;
  margin: 30px 0;
}
.about-page .about-3 .content .right p {
  font-size: 14px;
  line-height: 2;
  color: #000;
}
.about-page .about-3 .content .right ul {
  margin: 35px 0;
}
.about-page .about-3 .content .right ul li {
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.about-page .about-3 .content .right ul li:hover {
  margin-left: 15px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.about-page .about-3 .content .right ul li {
  padding: 15px 0 15px 75px;
  font-size: 16px;
  line-height: 1;
  color: #535353;
}
.about-page .about-3 .content .right ul li:nth-child(1) {
  background: url(../images/a-4.png) no-repeat 8px center;
}
.about-page .about-3 .content .right ul li:nth-child(2) {
  background: url(../images/a-5.png) no-repeat 10px center;
}
.about-page .about-3 .content .right ul li:nth-child(3) {
  background: url(../images/a-6.png) no-repeat left center;
}
.about-page .about-3 .content .right .link {
  padding-top: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-3 .content .right a {
  font-size: 16px;
  line-height: 1;
  color: var(--color);
  text-transform: uppercase;
  display: inline-block;
  padding: 20px 35px;
  border: 1px solid var(--color);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  margin-right: 50px;
  font-weight: bold;
}
.about-page .about-3 .content .right a:hover {
  background: var(--color);
  color: #ffffff;
}
.about-page .about-3 .content .right a.active {
  background: var(--color);
  color: #ffffff;
}
.about-page .about-2 .history-Box .swiper-button-prev,
.about-page .about-2 .history-Box .swiper-button-next {
  top: 48% !important;
  -o-object-fit: cover;
  object-fit: cover;
  width: 40px;
  height: 60px !important;
  opacity: .5;
}
.about-page .about-gy {
  padding: 60px 0;
  background: url('../images/gongyi.jpg') center center;
  text-align: center;
  color: white;
  background-size: cover;
}
.about-page .about-gy h2 {
  font-size: 44px;
  text-transform: uppercase;
  font-weight: bold;
}
.about-page .about-gy .box {
  margin-top: 60px;
  padding: 0 16%;
}
.about-page .about-gy .box ul {
  margin: -50px;
}
.about-page .about-gy .box ul li {
  padding: 50px;
}
.about-page .about-gy .box ul li .text {
  vertical-align: middle;
  padding-right: 3%;
  text-align: left;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  opacity: 1;
}
.about-page .about-gy .box ul li .text h6 {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
}
.about-page .about-gy .box ul li .text h6 span {
  font-weight: bold;
  font-size: 36px;
  color: white;
  vertical-align: top;
  line-height: 1.4;
}
.about-page .about-gy .box ul li .text h3 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 40px;
  line-height: 2;
  color: #fff;
  word-break: break-word;
  text-transform: uppercase;
}
.about-page .about-gy .box ul li .img {
  position: relative;
  text-align: left;
  vertical-align: middle;
  left: 0;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.about-page .about-gy .box ul li .img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
.about-page .about-gy .box ul li .img .box2 {
  height: 80%;
  top: 10%;
  width: 30%;
  left: -15%;
  background: var(--color);
  padding: 10px;
  position: absolute;
  opacity: 0;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.about-page .about-gy .box ul li .img .box2 span {
  font-size: 22px;
  font-weight: bold;
}
.about-page .about-gy .box ul li .img .box2 h6 {
  font-size: 12px;
  line-height: 2;
  position: absolute;
  padding: inherit;
  width: 100%;
  bottom: 0;
  left: 0;
}
.factory-page .list ul li {
  padding: 15px;
}
.factory-page img {
  transition: all .5s ease;
  width: 100%;
}
.factory-page .list li.column:hover img {
  transform: scale3d(1.05, 1.05, 1);
  transition: all .5s ease;
}
.about-page .about-gy {
  overflow: hidden;
}
.about-page .about-gy .box ul .slick-list {
  overflow: unset;
}
.about-page .about-gy .box ul .slick-current + div li .text {
  opacity: 0;
}
.about-page .about-gy .box ul .slick-current + div li .img {
  left: -45%;
}
.about-page .about-gy .box ul .slick-current + div li .img .box2 {
  opacity: 1;
}
.about-page .about-gy .box ul .slick-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 0;
  margin-left: -80px;
  z-index: 1;
  background: var(--color) url('../images/banner-btn-l.png') center center no-repeat;
  background-size: 14px;
  border: none;
  cursor: pointer;
  cursor: hand;
  color: transparent;
  font-size: 0;
}
.about-page .about-gy .box ul .slick-arrow.slick-next {
  display: none;
}
.about-page .i-semi {
  text-align: center;
  padding: 80px 0 60px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f1f7fc), color-stop(50%, #ffffff));
  background: -webkit-linear-gradient(#f1f7fc 50%, #ffffff 50%);
  background: -moz-linear-gradient(#f1f7fc 50%, #ffffff 50%);
  background: linear-gradient(#f1f7fc 50%, #ffffff 50%);
}
.about-page .i-semi p.p {
  color: #000;
}
.about-page .i-semi .semi-list {
  margin-top: 40px;
  position: relative;
}
.about-page .i-semi .semi-list ul {
  padding-bottom: 80px;
}
.about-page .i-semi .semi-list .slick-arrow {
  position: absolute;
  cursor: pointer;
  width: 49px;
  height: 48px;
  background: url(../images/factory-l.jpg) no-repeat center;
  bottom: 0;
  z-index: 8;
  color: rgba(255, 255, 255, 0);
  border: none;
}
.about-page .i-semi .semi-list .slick-prev {
  right: 50%;
  margin-right: 5px;
}
.about-page .i-semi .semi-list .slick-next {
  background: url(../images/factory-r.jpg) no-repeat center;
  left: 50%;
  margin-left: 5px;
}
.about-page .i-semi .semi-list ul li {
  padding: 0 10px;
}
.about-page .i-semi .semi-list ul li img {
  width: 100%;
}
.about-page .i-semi .semi-list ul li p {
  padding: 25px 0;
  font-size: 18px;
  display: none;
}
@media screen and (max-width: 1400px) {
  .about-page .abt-2 .grid-box .right .text h2 {
    line-height: 1;
  }
  .about-page .about-gy h2 {
    font-size: 36px;
  }
  .about-page .about-gy .box ul li .text h3 {
    font-size: 40px;
  }
  .init-certification-public .column:nth-child(2) .honor-list .slick-arrow {
    bottom: -30px !important;
  }
}
@media screen and (max-width: 1200px) {
  .about-page .abt-2 {
    padding: 40px 0;
  }
  .about-page .abt-2 .grid-box .left {
    width: 100%;
  }
  .about-page .abt-2 .grid-box .right {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-left: 0;
  }
  .about-page .abt-2 .grid-box .right .text .link {
    margin-top: 20px;
  }
  .about-page .abt-7 .grid-box .left {
    width: 100%;
  }
  .about-page .abt-7 .grid-box .right {
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  .about-page .abt-7 .grid-box .right .text .link {
    margin-top: 20px;
  }
  .about-page .abt-2 .grid-box .right .text h2,
  .about-page .about-gy h2,
  .about-page .abt-7 .grid-box .right .text h2 {
    font-size: 14px;
  }
  .about-page .abt-2,
  .about-page .abt-4 {
    padding: 10px 0;
  }
  .about-page .abt-7 {
    padding: 10px 0;
  }
  .about-page .about-gy {
    padding: 20px 0;
  }
  .about-page .about-gy .box ul li .text h3 {
    font-size: 22px;
  }
  .about-page .about-gy .box ul li .text h6 {
    font-size: 18px;
  }
  .about-page .about-gy .box ul li .text h6 span {
    font-size: 24px;
  }
  .about-page .box h2 {
    font-size: 25px;
  }
  .about-page {
    padding: 30px 0;
  }
  .about-page h2.h2 {
    font-size: 25px;
  }
}
/*关于我们*/
.contact-page .contact-request {
  background: #e4e4e4;
  padding: 30px 0;
}
.contact-page .contact-request .column {
  width: 75%;
}
.contact-page .contact-request .column:nth-child(2) {
  width: 25%;
}
.contact-page .contact-request .column h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
}
.contact-page .contact-request .column a.more {
  display: block;
  width: 100%;
  background: var(--color);
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  padding: 15px 0;
}
.contact-page .init-1 {
  padding: 90px 0;
}
.contact-page .init-2 .grid-box .column {
  margin-bottom: 8px;
  width: 100%;
}
.contact-page .init-2 .grid-box .column h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-page .init-2 .grid-box .column p .fa {
  margin-right: 20px;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  text-align: center;
  background: var(--color);
}
.contact-page .init-2 .grid-box .column p {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #555;
}
.contact-page .init-3 h2 {
  text-align: center;
  font-size: 262px;
  color: #eee;
  font-weight: bold;
}
.contact-page .init-3 .ewm {
  width: 130px;
  margin: 0 auto;
  display: block;
  margin-top: -150px;
}
.contact-page .init-3 .ewm h3 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
.contact-page .init-6 {
  padding: 100px 0 50px;
}
.contact-page .init-6 .container {
  width: auto;
  max-width: 1550px;
}
.contact-page .init-6 .left {
  width: 65%;
  vertical-align: middle;
}
.contact-page .init-6 .right {
  width: 35%;
  padding: 0 5%;
  vertical-align: middle;
}
.contact-page .init-6 .right h2 {
  display: block;
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-page .init-6 .right h6 {
  display: block;
  font-size: 18px;
  color: black;
  line-height: 1.6;
  font-weight: bold;
}
.contact-page .init-6 .right h6:before {
  content: '';
  border-left: 17px solid var(--color);
  border-top: 17px solid var(--color);
  border-right: 17px solid transparent;
  border-bottom: 17px solid transparent;
  display: block;
  width: 0;
  height: 0;
  margin: 15px 0 28px;
}
.contact-page .init-6 .right .text {
  font-size: 16px;
  line-height: 2;
  margin-top: 25px;
}
.inner-page .form input,
.inner-page .form textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #eee;
}
.inner-page .form input[type="submit"] {
  width: 200px;
  color: #fff;
  background: var(--color);
}
.inner-page .form textarea {
  min-height: 270px;
}
.inner-page .form ul li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
  float: left;
}
.inner-page .form ul li:nth-child(2) {
  margin-right: 0;
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.factory-page {
  padding: 90px 0 110px;
}
.factory-page img {
  display: block;
  margin: 0 auto;
}
.factory-page .list {
  margin-top: 100px;
}
.factory-page .list ul {
  margin: -15px;
}
.factory-page .list ul li {
  padding: 15px;
}
.technology-page .i-support {
  background: var(--color);
}
.technology-page .i-support .grid-box {
  background: var(--color);
}
.technology-page .i-support .grid-box .column {
  vertical-align: middle;
}
.technology-page .i-support .grid-box .column:nth-child(2) {
  padding: 0 5%;
  color: #fff;
}
.technology-page .i-support .grid-box .column:nth-child(2) h2 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 2;
}
.technology-page .i-support .grid-box .column:nth-child(2) p {
  font-size: 18px;
  font-weight: 300;
}
.technology-page .i-support .grid-box .column:nth-child(2) a.more {
  display: block;
  width: 228px;
  height: 60px;
  margin-top: 70px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color);
  font-weight: bold;
}
.technology-page .i-faq {
  padding-top: 70px;
  padding-bottom: 40px;
}
.technology-page .i-faq h2.h2 {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1;
}
.technology-page .i-faq p.p {
  text-align: center;
  color: #848d95;
  font-size: 16px;
  max-width: 640px;
  line-height: 2;
  margin: 0 auto;
}
.technology-page .i-faq .faq-list {
  padding-top: 50px;
}
.technology-page .i-faq .faq-list dt {
  padding: 16px 30px 14px;
  background-color: #f4f4f4;
  cursor: pointer;
  color: #333;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
  font-size: 18px;
  line-height: 2;
  font-weight: bold;
  margin-top: 4px;
}
.technology-page .i-faq .faq-list dt i.fa {
  margin-top: 5px;
}
.technology-page .i-faq .faq-list dt:hover,
.technology-page .i-faq .faq-list dt.active {
  background: #014099;
  color: #fff;
}
.technology-page .i-faq .faq-list dd {
  font-size: 18px;
  line-height: 2;
  color: #757575;
  padding: 15px 30px;
  display: none;
}
.contact-page .join-us-page{
  background: url(/template/en/images/contact-1.jpg) no-repeat;
  /*height: 600px;*/
    background-attachment: fixed;
    background-position: left top 200px;
}
.join-us-page .join-us-1 {
  padding: 90px 0;
}
.join-us-page .join-us-1 .box {
  display: block;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
}
.join-us-page .join-us-1 .box .left {
  vertical-align: middle;
  width: 42%;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  overflow: hidden;
}
.join-us-page .join-us-1 .box .right {
  width: 58%;
  vertical-align: middle;
  padding: 0 5%;
}
.join-us-page .join-us-1 .box .right h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 2;
  text-transform: capitalize;
}
.join-us-page .join-us-1 .box .right .text p {
  font-size: 16px;
  line-height: 2;
}
.join-us-page .join-us-1 .box .right .text {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 40px;
}
.join-us-page .join-us-1 .box .right .btn a {
  display: inline-block;
  font-weight: bold;
  line-height: 52px;
  height: 52px;
  padding: 0 35px;
  border-radius: 7px;
  border: 1px solid #033f94;
  background: #033f94;
  color: white;
  font-size: 24px;
  text-transform: uppercase;
}
.join-us-page .join-us-1 .box .right .btn a:last-child {
  background: transparent;
  color: #033f94;
  margin-left: 25px;
}
.join-us-page .technology-page .i-support img {
  width: 100%;
}
.join-us-page .about-page {
  padding: 0;
}
.join-us-page .about-page .init-certification-public {
  background: -webkit-gradient(linear, left top, right top, color-stop(36%, #014099), color-stop(0%, #f7f7f7));
  background: -webkit-linear-gradient(left, #014099 36%, #f7f7f7 0%);
  background: -moz-linear-gradient(left, #014099 36%, #f7f7f7 0%);
  background: linear-gradient(to right, #014099 36%, #f7f7f7 0%);
  padding: 120px 0;
}
.join-us-page .about-page .init-certification-public h2 {
  color: white;
  line-height: 1;
}
.join-us-page .about-page .init-certification-public p {
  color: #fff;
  line-height: 2;
}
.join-us-page .about-page .init-certification-public .column:nth-child(1) {
  padding-left: 12%;
  padding-right: 5%;
  width: 36%;
}
.join-us-page .about-page .init-certification-public .column:nth-child(2) {
  padding-left: 3%;
  width: 64%;
}
.join-us-page .about-page .init-certification-public .column:nth-child(2) .slick-list {
  padding-right: 14%;
}
.join-us-page .about-page .init-certification-public .column {
  position: relative;
}
.join-us-page .about-page .init-certification-public .column .btn {
  margin-top: 20px;
}
.join-us-page .about-page .init-certification-public .column .slick-arrow {
  position: static;
  cursor: pointer;
  width: 58px;
  height: 60px;
  background: url(../images/factory-l.jpg) no-repeat center;
  left: -80%;
  bottom: 10%;
  z-index: 8;
  color: rgba(255, 255, 255, 0);
  border: none;
}
.join-us-page .about-page .init-certification-public .column .slick-next {
  background: url(../images/factory-r.jpg) no-repeat center;
  margin-left: 10px;
}
.join-us-page .about-page .init-certification-public .column:nth-child(2) .honor-list ul {
  margin: 0 -25px;
}
.join-us-page .about-page .init-certification-public .column:nth-child(2) .honor-list ul li {
  padding: 0 25px;
}
.join-us-page .join-us-2 {
  padding: 50px 0 50px;
}
.join-us-page .join-us-2 h3 {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
.join-us-page .join-us-2 .text {
  display: block;
  font-size: 16px;
  color: #838383;
  font-weight: 300;
  line-height: 2;
  margin-top: 20px;
}
 
.join-us-page .join-us-2 .from ul li {
  padding: 10px 18px;
}
.join-us-page .join-us-2 .from ul li label {
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 300;
}
.join-us-page .join-us-2 .from ul li input,
.join-us-page .join-us-2 .from ul li textarea {
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 13px 15px;
  font-size: 16px;
  border: 1px solid #dedede;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.join-us-page .join-us-2 .from ul li input:focus,
.join-us-page .join-us-2 .from ul li textarea:focus {
  border-color: var(--color);
}
.join-us-page .join-us-2 .from ul li textarea {
  height: 180px;
}
.join-us-page .join-us-2 .from ul li input[type="submit"] {
  background: var(--color);
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-transform: capitalize;
  padding: 15px 10px;
  width: 145px;
  border-radius: 10px;
}
.join-us-page .join-us-2 .from ul li input[type="submit"]:hover {
  background: black;
}
.join-us-page .join-us-2 .from ul li.wid-100 {
  width: 100%;
}
.news-page {
  padding: 90px 0;
}
.news-page .newsList {
  margin-bottom: 90px;
  padding-right: 70px;
}
.inner-page .m-page a,
.inner-page .m-page span {
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  margin: 0 3px;
  font-size: 20px;
}
.inner-page .sideLeft {
  width: 30%;
  padding-right: 30px;
}
.inner-page .sideLeft .box {
  padding: 30px;
  background: #f7f7f7;
}
.inner-page .sideLeft .box h3 {
  display: block;
  padding: 30px 20px;
  background: var(--color);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.inner-page .sideLeft .box .list ul li {
  margin-top: 6px;
  padding: 15px 20px;
  border-left: 4px solid var(--color);
  font-size: 16px;
  color: black;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.inner-page .sideLeft .box .list ul li::before {
  content: '';
  width: 10px;
  height: 1px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.inner-page .sideLeft .box .list ul li ul li::before {
  display: none;
}
.inner-page .sideLeft .box .list ul li i {
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -10px;
  cursor: pointer;
}
.inner-page .sideLeft .box .list ul li .children {
  display: none;
}
.inner-page .sideLeft .box .list ul li .children li {
  border-left: 0;
}
.inner-page .sideLeft .box .list ul li img {
  max-width: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.inner-page .sideLeft .box .list ul li:hover,
.inner-page .sideLeft .box .list ul li.active {
  /*background: var(--color);
color: white;*/
  color: var(--color);
}
/*.inner-page .sideLeft .box .list ul li a.active{
color: var(--color);
}*/
.inner-page .sideLeft .img {
  display: block;
  margin-top: 40px;
  padding: 60px 5%;
  text-align: center;
  color: white;
}
.inner-page .sideLeft .img h4 {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.inner-page .sideLeft .img p {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin: 25px 0 45px;
}
.inner-page .sideLeft .img a.more {
  line-height: 36px;
  height: 36px;
  padding: 0 32px;
  border: 1px solid white;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
}
.inner-page .sideLeft .img a.more:hover {
  background: var(--color);
  color: white;
}
.inner-page .sideRight {
  width: 70%;
}


.display {
  display: flex;
}
.display .display-left {
  width: 40%;
}
.display-right {
  width: 60%;
}
.display .display-left p {
  line-height: 1.8;
  font-size: 18px;
  color: #6e6e6e;
}
.display-right h5 {
  font-size: 24px;
}
.display-right h5 {
  font-size: 24px;
  padding-bottom: 20px;
}
.display-right img {
  padding: 20px 0;
}

@media screen and (max-width: 1600px) {
  .contact-page .init-1 {
    padding: 50px 0;
  }
  .contact-page .init-2 .grid-box .column h2 {
    font-size: 20px;
  }
  .contact-page .init-2 .grid-box .column p {
    font-size: 16px;
  }
  .contact-page .init-6 .right h2 {
    font-size: 36px;
  }
  .contact-page .init-6 .right h6:before {
    border-width: 10px;
    margin: 10px 0;
  }
  .contact-page .init-6 .right h6 {
    font-size: 16px;
  }
  .contact-page .init-6 .right .text {
    font-size: 14px;
  }
  .inner-banner .box {
    padding-left: 0;
  }

  .about-page .abt-2 .grid-box .right .text h2,
  .about-page .abt-7 .grid-box .right .text h2,
  .inner-banner .box h6,
  .technology-page .i-support .grid-box .column:nth-child(2) h2 {
    font-size: 30px;
  }
  .about-page .abt-2 .grid-box .right .text p {
    font-size: 16px;
  }
  .about-page .about-2 .history-Box .swiper-button-prev,
  .about-page .about-2 .history-Box .swiper-button-next {
    display: none !important;
  }
  .about-page .about-3 .content .left ul li::after {
    font-size: 60px;
  }
  .about-page .about-3 .content .right h5 {
    font-size: 28px;
  }
  .about-page .about-3 .content .right a {
    font-size: 14px;
    padding: 15px;
  }
  .about-page .about-3 .content .left ul li h5 {
    margin: 15px 0;
  }
  .about-page .about-3 {
    padding: 40px 0;
  }
  .about-page .about-3 .content .left ul li:nth-child(2),
  .about-page .about-3 .content .left ul li:nth-child(5) {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .about-page .about-3 .content .left ul li {
    padding: 15px;
  }
  .about-page .about-gy {
    margin-top: 0;
  }
  .about-page .about-gy .box ul li .text h6 {
    font-size: 18px;
  }
  .about-page .about-gy .box ul li .text h6 span {
    font-size: 150%;
  }
  .about-page .about-gy .box ul li .text h3 {
    font-size: 30px;
  }
  .about-page .about-gy .box ul .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .about-page {
    padding-bottom: 0;
  }
  .about-page .i-semi .semi-list ul li p {
    padding: 15px 0 0;
  }
  .inner-banner .nav-list ul li a {
    padding: 10px;
  }
  .inner-banner .nav-list ul li {
    min-width: 220px;
  }

  .inner-page .sideLeft .box h3 {
    padding: 30px 15px;
    font-size: 28px;
    line-height: 1;
  }
  .inner-page .sideLeft .box .list ul li img {
    margin-right: 10px;
  }
  .inner-page .sideLeft .box .list ul li {
    padding: 5px 10px;
    font-size: 16px;
  }
  .inner-page .sideLeft .box {
    padding: 10px;
  }
  .inner-page .sideLeft .img p {
    margin: 20px 0 30px;
  }
  .inner-page .sideLeft .img {
    padding: 40px 15px;
  }

  .newsList ul li .box a.more {
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
  }
  
  .inner-page .m-page a,
  .inner-page .m-page span {
    line-height: 40px;
    height: 40px;
    padding: 0 15px;
    font-size: 22px;
  }
  .newsList ul li {
    padding: 15px;
  }
  .newsList ul {
    margin: -15px;
  }
  .join-us-page .join-us-1 {
    padding: 60px 0;
  }
  .join-us-page .join-us-1 .box .right .btn a {
    line-height: 40px;
    height: 44px;
    font-size: 20px;
    padding: 0 20px;
  }
  .technology-page .i-support .grid-box .column:nth-child(2) a.more {
    width: 200px;
    height: 46px;
    line-height: 46px;
    margin-top: 40px;
  }
  .join-us-page .about-page .init-certification-public .column:nth-child(1) {
    padding-left: 5%;
    padding-right: 5%;
  }
  .join-us-page .about-page .init-certification-public .column:nth-child(2) .honor-list ul li {
    padding: 10px;
  }
  .join-us-page .about-page .init-certification-public .column:nth-child(2) .honor-list ul {
    margin: -10px;
  }
  .join-us-page .about-page .init-certification-public .column .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .join-us-page .join-us-2 {
    padding: 60px 0;
  }
  .join-us-page .join-us-2 .from ul li input[type="submit"] {
    font-size: 24px;
    padding: 15px;
  }
  .factory-page {
    padding: 60px 0;
  }
  .factory-page .list {
    margin-top: 60px;
  }
  .abt-7 .shuzi ul li h3 {
    font-size: 40px;
  }
  .abt-7 .shuzi ul li.wow.fadeInUp {
    padding-right: 15px;
  }
}
@media screen and (max-width: 1250px) {

  .inner-banner .box h2{
    font-size: 30px;
  }
  .inner-banner .btn{
    margin-top: 20px;
  }
  .about-page .abt-2 .grid-box .right .text h2,
  .about-page .abt-7 .grid-box .right .text h2,
  .inner-banner .box h6,
  .technology-page .i-support .grid-box .column:nth-child(2) h2 {
    font-size: 24px;
  }
  .factory-page .list ul li {
    padding: 10px;
  }
  .factory-page .list ul {
    margin: -10px;
  }
  .join-us-page .join-us-1 .box .right h3 {
    font-size: 24px;
  }
  .join-us-page .join-us-1 .box .right .text {
    margin: 10px 0;
  }
  .join-us-page .about-page .init-certification-public {
    padding: 50px 0;
  }
  .join-us-page .join-us-2 h3 {
    font-size: 24px;
    margin-top: 20px;
  }
  .join-us-page .join-us-2 .from ul li label {
    font-size: 16px;
  }
  .join-us-page .join-us-2 .from ul li input[type="submit"] {
    margin-top: 0;
  }
  .technology-page .i-faq {
    padding: 60px 0;
  }
  .technology-page .i-faq .faq-list {
    padding-top: 30px;
  }
  .newsList ul li .box h3 {
    font-size: 18px;
  }
  .news-page,
  .newdet-page {
    padding: 60px 0;
  }
  .news-page .newsList {
    margin-bottom: 50px;
  }
  .inner-page .sideLeft {
    display: none;
  }
  .inner-page .sideRight {
    width: 100%;
  }
  
  .about-page .abt-2 .grid-box .right {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .about-page .about-3 .content .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .about-page .about-3 .content .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .i-semi .semi-list {
    padding: 0 7%;
  }
}

@media screen and (max-width: 1000px) {
  .display .display-left {
    width: 100%;
  }
  .display-right {
    width: 100%;
    margin-top: 30px;
  }
  .display {
    display: flex;
    flex-wrap: wrap;
  }
  .display .display-left p {
    font-size: 16px;
  }

  .inner-banner {
    height: 400px;
    padding-top: 60px;
  }

  .inner-banner .box h2 {
    font-size: 32px;
    border-bottom-width: 2px;

  }

  .inner-banner h2:after {
    display: none;
  }

  .about-page .about-2 .top h3 {
    font-size: 30px;
  }
  .about-page .about-3 .content .right ul {
    margin: 15px 0;
  }

  .newsList ul li .box a.more {
    line-height: 34px;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
  }
  .newdet-page .content {
    padding: 30px 0;
  }
  .newdet-page h2 {
    font-size: 24px;
  }
  .inner-page .newsList ul li {
    width: 50% !important;
  }
  .about-page p.p {
    font-size: 14px;
  }
  .join-us-page .about-page .init-certification-public .column:nth-child(2) .slick-list {
    padding-right: 0;
  }
  .join-us-page .join-us-1 .box .right .btn a {
    line-height: 32px;
    height: 34px;
    font-size: 14px;
  }
  .join-us-page .join-us-1 .box .right {
    width: 100%;
    padding-left: 0;
  }
  .join-us-page .join-us-1 .box .left {
    display: none;
  }
  .join-us-page .join-us-1 .box {
    padding: 30px;
  }
  .join-us-page .join-us-2 .from ul li input[type="submit"] {
    font-size: 20px;
  }
  .contact-page .init-6 .left {
    width: 100%;
  }
  .contact-page .init-6 .right {
    width: 100%;
    padding: 30px 0 0;
  }
  .abt-7 .shuzi ul li h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {

  .inner-banner {
    height: 300px;
  }
  .inner-banner .btn{
    display: none;
  }
  .abt-7 .shuzi ul li h3 {
    font-size: 22px;
  }
  .inner-banner .box h6 {
    font-size: 16px;
  }
  .technology-page .i-support,
  .join-us-page .about-page .init-certification-public {
    display: none;
  }
  .technology-page .i-faq,
  .join-us-page .join-us-2 {
    padding-top: 0;
  }
  .join-us-page .join-us-2 .from ul li {
    width: 100%;
  }
  .inner-banner .nav-list {
    display: none;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    font-size: 18px;
  }
  .newdet-page .m-link .prev,
  .newdet-page .m-link .next {
    font-size: 13px;
  }

  .about-page .about-2,
  .about-page .about-3,
  .about-page .about-gy,
  .about-page .i-semi {
    display: none;
  }
  #footer .footer-top .left {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .about-page .abt-2 .grid-box .right .text h2,
  .about-page .abt-7 .grid-box .right .text h2,
  .inner-banner .box h6,
  .technology-page .i-support .grid-box .column:nth-child(2) h2 {
    font-size: 20px;
  }
  .inner-banner .box h6 {
    display: none;
  }
  .inner-banner .box h2 {
    font-size: 24px;
  }
  .newdet-page h2 {
    font-size: 20px;
  }
  .inner-page .newsList ul li {
    width: 100% !important;
  }
  .inner-page .newsList ul li .box {
    padding: 15px;
  }
  .join-us-page .join-us-1 .box {
    padding: 10px;
  }
  .join-us-page .join-us-1 .box .right h3 {
    font-size: 20px;
  }
  .join-us-page .join-us-1 .box .right {
    padding-right: 0;
  }
  .join-us-page .join-us-1 .box {
    border-radius: 5px;
  }
}

/*新闻备份*/
/*
.newdet-page {
padding: 90px 0 60px;
}
.newdet-page h2 {
display: block;
text-align: center;
font-size: 28px;
color: black;
font-weight: bold;
line-height: 1;
}


.newdet-page .content {
  display: block;
  padding: 80px 0 10px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}
.inner-page.newdet-page .ui.container .content {
  overflow: hidden;
}
.inner-page.newdet-page .ui.container .content h2 {
  text-align: left;
  padding-bottom: 20px;
}
.inner-page.newdet-page .ui.container .content p {
  font-weight: 500;
  line-height: 2;
}

.newdet-page .m-link .prev, .newdet-page .m-link .next{

font-weight: 500;

}
.inner-page.newdet-page .ui.container .content .main img {
  padding: 25px 0;
}
.inner-page.newdet-page .ui.container .content .main-left img {
  width: 50%;
  float: left;
  padding: 30px;
}
.newdet-page .content img {
display: block;
margin: 20px auto;
}
.newdet-page .m-link {
border-top: 35px solid #ececec;
padding-top: 25px;
}
.newdet-page .m-link .prev,
.newdet-page .m-link .next {
font-size: 16px;
color: black;
padding-right: 15px;
font-weight: bold;
}
.newdet-page .m-link .next {
text-align: right;
padding-left: 15px;
}
.newdet-page .m-link a:hover {
text-decoration: underline;
}
.newdet-page .content {
  padding: 60px 0 40px;
}
.newdet-page .m-link {
  padding-top: 15px;
  border-top-width: 20px;
}
.news-page .newsList {
  margin-bottom: 80px;
}
*/
/*新闻备份02*/
.news-page {
  padding: 80px 0;
}
.news-page .sidebar-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.news-page .sidebar-box .sidebar-left {
  border-left: 1px solid #e7e7e7;
}
.news-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0px;
}
.news-page .sidebar-box .sidebar-right .news-list {
  padding-right: 85px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li {
  margin-bottom: 75px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li:last-child {
  margin-bottom: 0;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .n-img {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .n-img img {
  width: 100%;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category {
  padding: 0 5px;
  margin-left: 4px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color);
  border: 1px solid var(--color);
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category:hover {
  background: var(--color);
  color: #fff;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category span {
  display: inline-block;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content h4 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content h4:hover {
  color: var(--color);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time {
  font-size: 14px;
  color: #aaa;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 12px;
  margin-bottom: 20px;
  position: relative;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  border-top: 1px solid #aaa;
  left: 0;
  top: 0;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time span {
  color: #000;
  margin-left: 10px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 80%;
  height: 1px;
  border-top: 1px solid #e7e7e7;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 15px 35px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more:hover::after {
  width: 100%;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--color);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page.news-page .sidebar-box .sidebar-left {
  width: 28%;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/inner-s.jpg) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
  padding: 4px 0;
  font-size: 16px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active a {
  color: var(--color);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:first-child {
  padding-top: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
  color: var(--color);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 15px 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 16px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--color);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(/eastrongroup/2022/08/04/news.jpg) no-repeat center center;
  padding: 215px 40px 55px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  color: #90b6df;
  display: block;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 12px 30px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: linear-gradient(to right, var(--color), var(--color));
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: -1;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content {
  padding-right: 85px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a {
  padding: 0 5px;
  margin-left: 4px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color);
  border: 1px solid var(--color);
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a:hover {
  background: var(--color);
  color: #fff;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a span {
  display: inline-block;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time {
  font-size: 14px;
  margin-left: 12px;
  color: #aaa;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time span {
  color: #000;
  margin-left: 10px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title {
  font-size: 30px;
  line-height: 34px;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  border-bottom: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content ul li {
  list-style-type: disc;
  margin-left: 1em;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 14px;
  color: #555;
  margin-top: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a {
  font-size: 14px;
  color: #000;
  margin-left: 18px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a:hover {
  color: var(--color);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link {
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a {
  width: 50%;
  padding: 35px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-img {
  margin-right: 20px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-img img {
  display: block;
  width: 110px;
  min-width: 110px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p {
  color: #000;
  font-size: 16px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  max-width: 255px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p:hover {
  color: var(--color);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
  padding-right: 30px;
  border-right: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
  padding-left: 30px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form {
  margin-top: 60px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text h3 {
  font-size: 30px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text p {
  font-size: 14px;
  line-height: 1;
  color: #555;
  margin-bottom: 30px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text p span {
  color: var(--color);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form span.span {
  font-size: 14px;
  display: inline-block;
  color: #555;
  margin-bottom: 25px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form textarea,
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form input[type="text"] {
  width: 30%;
  height: 54px;
  border: 1px solid #e7e7e7;
  padding: 0 20px;
  color: #555555;
  font-size: 14px;
  margin-bottom: 30px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form .n-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form p {
  font-size: 14px;
  line-height: 1;
  color: #555;
  margin-bottom: 45px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 15px 35px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
  border: none;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button:hover::after {
  width: 100%;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--color);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.newdet-page .sidebar-box .sidebar-right .relate-product {
  margin-top: 40px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product h3 {
  font-size: 30px;
  line-height: 1;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content {
  margin-top: 30px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul {
  margin-right: -15px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul .slick-track {
  margin: 0;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li {
  width: 100%;
  padding: 15px 0;
}
.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.inner-page .sidebar-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content h2 {
  font-size: 24px;
  color: #000;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:hover a {
  font-weight: bold;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box {
  display: flex;
  max-height: 350px;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img {
  width: 45%;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img img {
  object-fit: cover;
  max-height: 350px;
}
/*联系我们地图*/
.contact-page .init-6 .left {
  width: 65%;
  vertical-align: middle;
}
.contact-page .init-6 .left div#map_line {
  -webkit-transition-delay: 1.3s;
  -moz-transition-delay: 1.3s;
  transition-delay: 1.3s;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.contact-page .init-6 .left div#map_line ul li {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--color);
  z-index: 6;
}
.contact-page .init-6 .left div#map_line ul li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(33, 64, 154, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks2 3s infinite;
  -moz-animation: ks2 3s infinite;
  animation: ks2 3s infinite;
  display: block;
  z-index: -1;
}
.contact-page .init-6 .left div#map_line ul li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(33, 64, 154, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks2 3s infinite;
  -moz-animation: ks2 3s infinite;
  animation: ks2 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.contact-page .init-6 .left div#map_line ul li.ie1 {
  width: 35px;
  height: 35px;
  background: url(/template/en/images/ie-bg.png) no-repeat center center;
  background-size: 100% 100%;
  left: 80.2%;
  top: 44.5%;
}
.contact-page .init-6 .left div#map_line ul li.ie2 {
  left: 75%;
  top: 22%;
}
.contact-page .init-6 .left div#map_line ul li.ie3 {
  left: 77%;
  top: 56%;
}
.contact-page .init-6 .left div#map_line ul li.ie4 {
  left: 97%;
  top: 92%;
}
.contact-page .init-6 .left div#map_line ul li.ie5 {
  left: 70%;
  top: 53%;
}
.contact-page .init-6 .left div#map_line ul li.ie6 {
  left: 62%;
  top: 47%;
}
.contact-page .init-6 .left div#map_line ul li.ie7 {
  left: 55.5%;
  top: 43%;
}
.contact-page .init-6 .left div#map_line ul li.ie8 {
  left: 54.5%;
  top: 50%;
}
.contact-page .init-6 .left div#map_line ul li.ie9 {
  left: 47%;
  top: 37%;
}
.contact-page .init-6 .left div#map_line ul li.ie10 {
  left: 15%;
  top: 25%;
}
.contact-page .init-6 .left div#map_line ul li.ie11 {
  left: 16%;
  top: 40%;
}
.contact-page .init-6 .left div#map_line ul li.ie12 {
  left: 14%;
  top: 52%;
}
.contact-page .init-6 .left div#map_line ul li.ie13 {
  left: 30%;
  top: 70%;
}
.contact-page .init-6 .left div#map_line ul li p {
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  position: absolute;
  width: 100px;
}
/*关于我们*/
.inner-page.about-page .about-1 .left.column {
  padding-right: 2%;
  width: 50%;
  vertical-align: middle;
}
.inner-page.about-page .about-1 .right.column {
  width: 50%;
  vertical-align: middle;
}
.inner-page.about-page .about-1 .right,
.inner-page.about-page .about-1 .left {
  padding: 25px;
}
.about-page .about-1 .box .right .born-time {
  font-size: 36px;
  line-height: 1.3;
}
.about-page .about-1 .box .right .color-blue {
  color: var(--color);
  font-size: 24px;
}
.about-page .about-1 .box .right .text {
  font-size: 15px;
  line-height: 1.5;
  text-align-last: left;
  text-align: justify;
}
.about-page .about-1 .box .right .text p:first-child {
  padding-top: 0;
}
.about-page .about-1 .box .right .text p {
  padding-top: 10px;
  line-height: 1.8;
}
.about-page .about-1 .list {
  padding: 40px 0 30px;
  background: #f1f7fc;
  text-align: center;
}
.about-page .about-1 .list ul {
  padding: 0 5%;
  margin: -20px;
}
.about-page .about-1 .list ul li {
  padding: 20px;
}
.about-page .about-1 .list ul li {
  padding: 20px;
}
.about-page .about-1 .list ul li h6 {
  font-size: 36px;
  line-height: 1;
  color: var(--color);
}
.inner-page.about-page .about-1 .left.column .text p {
  line-height: 1.8;
}
.about-page .about-1 .list ul li p {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}
.about-page .our-rz {
  padding: 70px 0;
}
.about-page .about-culture {
  padding: 80px 0;
}
.about-page .about-culture .list:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #909090;
  top: 0;
  left: 38%;
  transform: translateX(-50%);
}
.about-page .about-culture ul {
  margin: 0 -100px;
}
.about-page .about-culture ul li:nth-child(1) {
  width: 40%;
}
.about-page .about-culture ul li:nth-child(2) {
  width: 60%;
}
.about-page .about-culture .tit {
  font-size: 36px;
  color: #0971ce;
  text-transform: uppercase;
}
.about-page .about-culture ul li:nth-child(2) p {
  line-height: 1.8;
}
.about-page .about-culture ul li {
  padding: 0 100px;
}
.about-page .about-factory .play {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  cursor: hand;
}
.about-page .about-factory .play:after {
  -webkit-animation-delay: .5s;
  -o-animation-delay: .5s;
  -ms-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.about-page .about-factory .play:after,
.about-page .about-factory .play:before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.1);
  -webkit-animation: ks 2s linear infinite;
  -o-animation: ks 2s linear infinite;
  -ms-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.about-page .about-factory .play i {
  display: inline-block;
  vertical-align: middle;
  left: 3px;
  font-size: 0;
  position: initial;
}
.fa-play:before {
  content: "\f04b";
}
.about-page .about-factory img {
  width: 100%;
}
.inner-page.about-page .about-1 {
  margin-bottom: -25px;
  padding-bottom: 10px;
}

.inner-page .sideLeft .box .list ul li .children li {
  border-left: 0;
  margin-top: 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 2;
}
.inner-page .sideLeft .box .list ul li .children li:hover {
  background: var(--color);
  color: #fff;
}

@media (max-width: 700px) {
  .Floating-sidebar {
    display: none;
  }
}
.s-logo img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30%;
}
span.anniu {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 99;
  font-size: 20px;
}
span.anniu.arrow_l {
  left: 0;
}
span.anniu.arrow_r {
  right: 0;
}
span.anniu a {
  padding: 20px 15px;
  background: var(--color);
}
.inner-page .sideLeft .box .list ul li.active {
  color: var(--color);
}
.inner-page .sideLeft .box .list ul li ul li.active {
  color: #fff;
  background: var(--color);
}

.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-text {
  width: 70%;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-img {
  width: 30%;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-text h4 {
  font-size: 20px;
  color: #000;
  line-height: 1.5;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .neihe {
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 30px 0px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-text ul li {
  font-size: 14px;
  line-height: 2;
  width: 50%;
  display: inline-block;
  padding: 5px 0;
  color: #000;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-text ul {
  margin: 20px 0;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul.grid-box.four {
  margin: 0 -15px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-text ul li:before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color);
  display: inline-block;
  margin-right: 3px;
  border-radius: 20px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product .content ul li .big-text a.more {
  background: var(--color);
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
}
.inner-page.about-page.download .download-1 li {
  line-height: 2;
  overflow: hidden;
}
.inner-page.about-page.download .download-1 li .top {
  border: 1px solid #f0f0f0;
  padding: 5px 15px;
  background: #f0f0f0;
  font-size: 16px;
}
.inner-page.about-page.download .download-1 li .bottom {
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.inner-page.about-page.download .download-1 li .bottom p {
  width: 20%;
  float: left;
  border: 1px solid #f0f0f0;
  padding: 5px 15px;
  font-size: 14px;
  color: #555;
}
.inner-page.about-page.download .download-1 li .bottom i.fa {
  font-size: 18px;
  color: var(--color);
}
.inner-page.about-page.download .download-1 .item-top p {
  float: left;
  text-align: center;
  width: 20%;
  padding: 20px 15px;
  background: var(--color);
  font-size: 16px;
  color: #fff;
  border-right: 1px solid #FFF;
}
.inner-page.about-page.download .download-1 .item-top {
  overflow: hidden;
}
.inner-page.about-page.download label.selectAlll {
  overflow: hidden;
  float: left;
  width: 100%;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--color);
}
.download .ui.container {
  max-width: 1300px;
  width: 100%;
}
.download .search-box {
  margin: 30px 0;
}
.download .search-box #search {
  display: block;
  width: 100%;
  height: 38px;
  padding: 5px 10px 0;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #aaa;
  position: relative;
  cursor: pointer;
  font-size: 14px;
}
.download .search-box #search::-moz-placeholder {
  color: gray;
}
.download .search-box #search::-webkit-input-placeholder {
  color: gray;
}
.download .search-box #search::placeholder {
  color: gray;
}
.download .search-box span {
  display: block;
  width: 100%;
  height: 38px;
  padding: 5px 10px 0;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #aaa;
  position: relative;
  cursor: pointer;
}
.download .search-box span em {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #444;
  font-size: 14px;
  line-height: 28px;
}
.download .search-box span i {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 24px;
  width: 20px;
  height: 26px;
}
.download .search-box .hz {
  padding: 10px;
  border: 1px solid #aaa;
  border-top: 0;
  display: none;
}
.download .search-box .hz input {
  width: 100%;
  border: 1px solid #aaa;
  padding: 4px;
  height: 32px;
  font-size: 14px;
}
.download .filterSingleBox {
  margin-bottom: 10px;
}
.download .filterSingleBox li ul {
  margin-right: -20px;
}
.download .filterSingleBox li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  padding-right: 20px;
  width: 24%;
  padding-top: 15px;
}
.download .filterSingleBox li input[type="checkbox"] {
  margin-right: 10px;
  margin-top: -5px;
}
.download .download-1 {
  margin-top: 30px;
  margin-bottom: 60px;
}
.download .download-1 ul li {
  display: none;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right:hover h3 a {
  color: var(--color);
}
#fullpage .section:nth-child(2) .init-1 .container .right .solutionBox ul li .box {
  border: 5px solid #ffffff;
  overflow: hidden;
}
.inner-page.about-page.download {
  padding-top: 180px;
}
.inner-page .sideLeft .box .list ul li {
  text-transform: capitalize;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact .c-box span {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
  margin-top: 10px;
}
.lianxi .map {
  width: 50%;
}
.lianxi {
  position: relative;
   
}
.lianxi .from{
  background: white;
  padding: 60px 10%;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.lianxi .from form{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lianxi .from form textarea,
.lianxi .from form input{
  width: 49%;
  height: 60px;
  padding-left: 10px;
  font-size: 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 6px;
  margin-bottom: 15px;
}
.lianxi .from form textarea{
  height: 120px;
  padding: 10px;
  width: 100%;
}
.lianxi .from form p.upfile .btn{
  font-size: 16px;
    background: var(--color);
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    margin-right: 10px;
    cursor: pointer;
}
.lianxi .from form input[type="file"]{
    
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.lianxi .from form button{
  margin: auto;
  background: var(--color);
  font-size: 18px;
  padding: 6px 30px;
  color: white;
  border: none;
  border-radius: 10px;
}
.lianxi .from form button img{
  vertical-align: sub;
}
.contact-page .init-2 {
  margin-bottom: 25px;
}
.contact-page .init-2 .grid-box .column p em {
  font-weight: bold;
  color: #000;
}
.join-us-page .join-us-2 .from h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
img.cctv {
  height: 6px;
  width: 100%;
  margin-top: 15px;
}
.contact-page .init-2 h2 {
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: capitalize;
  width: 90%;
}
.join-us-page .join-us-2 .from p {
  padding-left: 18px;
  font-size: 14px;
  color: #555;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.8;
}
div#header.nav1 {
  position: relative;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center span {
  background-color: var(--color);
  color: white;
  font-size: 28px;
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 6px 0 6px 0;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center {
  font-size: 24px;
  color: #272727;
  text-transform: uppercase;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content {
  display: flex;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #d7f0ef;
  color: #2b2b2b;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right h3 a {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #ccc;
  color: #2b2b2b;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right p {
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 15px;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right a {
  font-size: 16px;
  color: var(--color);
  transition: all 0.5s ease;
  text-transform: capitalize;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li {
  width: 100%;
  padding: 30px 40px;
  border-bottom: 1px dashed #ccc;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li:hover a.mores {
  margin-left: 10px;
}
/*.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li:hover {
background: linear-gradient(to right,var(--color),var(--color));
}

.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li:hover .content .left.txt-center span {
  background-color: #fff;
  color: var(--color);
}

.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li:hover .left.txt-center {
  color: #fff;
}

.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li:hover .content .right a {
  color: #fff;
}


.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li:hover p {
  color: #fff;
}*/
/*history*/
.about-page .about-4 .box {
  display: block;
  margin: 0 auto;
  max-height: 500px;
  overflow: overlay;
}
.about-page .about-4 .box ul {
  margin: 0 -20px;
}
/*.about-page .about-4 .box ul:after {
  content: '';
  width: 2px;
  height: 100%;
  left: 50%;
  margin-left: -1px;
  top: 17px;
  background: #000;
  background: -webkit-gradient(linear, left top, bottom top, color-stop(0%, #5483eb), color-stop(100%, transparent));
  background: -moz-linear-gradient(bottom, #5483eb 0%, transparent 100%);
  background: -webkit-linear-gradient(top, #000000 0%, transparent 100%);
  background: -o-linear-gradient(bottom, #5483eb 0%, transparent 100%);
  background: -ms-linear-gradient(bottom, #5483eb 0%, transparent 100%);
  background: linear-gradient(to bottom, #ffffff, transparent);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#5483eb', endColorstr='transparent',GradientType=0)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5483eb', endColorstr='transparent', GradientType=0);
  position: absolute;
}*/
.about-page .about-4 .box ul li {
  padding: 0 20px;
  position: relative;
}
/*.about-page .about-4 .box ul li:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 4px solid #fff;
  background: var(--color);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  top: 17px;
  z-index: 1;
  -moz-box-shadow: 0 0 3px 3px #fff;
  -o-box-shadow: 0 0 3px 3px #fff;
  box-shadow: 0 0 3px 3px var(--color);
}*/
.about-page .about-4 .box ul li h5 {
  font-size: 20px;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .box ul li .content {
  display: block;
  padding: 10px 25px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  background: rgba(0, 160, 233, 0.5);
}
.about-page .about-4 .box ul li .content .text {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-top: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .box ul li .content:after {
  content: '';
  border-right: 10px solid var(--color);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  right: 100%;
  top: 15px;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: -1;
}
.about-page .about-4 .box ul li .content:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: -1;
  background: #000;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #000000), color-stop(100%, #000000));
  background: -moz-linear-gradient(right, #2cbcff 0%, #3388fc 100%);
  background: -webkit-linear-gradient(left, #000000 0%, #000000 100%);
  background: -o-linear-gradient(right, #2cbcff 0%, #3388fc 100%);
  background: -ms-linear-gradient(right, #2cbcff 0%, #3388fc 100%);
  background: linear-gradient(to right, var(--color), #33b3ed);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#2cbcff', endColorstr='#3388fc',GradientType=1)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2cbcff', endColorstr='#3388fc', GradientType=1);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .box ul li .left {
  padding-top: 10px;
  padding-right: 35px;
  text-align: right;
  position: relative;
}
.about-page .about-4 .box ul li .right {
  padding-left: 25px;
  position: relative;
}
.about-page .about-4 .box ul li:last-child {
  padding-bottom: 0;
}
/*.about-page .about-4 .box ul li:nth-child(odd) .left {
  left: 50%;
  text-align: left;
  padding-right: 0;
  padding-left: 35px;
}
.about-page .about-4 .box ul li:nth-child(odd) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 25px;
  text-align: right;
}*/
.about-page .about-4 .box ul li:nth-child(odd) .right .content:after {
  border-left: 10px solid var(--color);
  border-right: none;
  left: 100%;
}
.about-page .about-4 .box ul li:nth-child(odd) .right .content:before {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-page .about-4 .box ul li:hover .content .text,
.about-page .about-4 .box ul li:hover .content h5 {
  color: #ffffff;
}
.about-page .about-4 .box ul li:hover .content:after,
.about-page .about-4 .box ul li:hover .content:before {
  opacity: 1;
}
.about-page .about-4 h2 {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #1c1c1c;
  font-weight: bold;
}
.about-page .about-4 h2 {
  display: block;
  color: #fff;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-size: 24px;
}
.inner-page .sideLeft .box .list ul li ul {
  margin-top: 20px;
}
.inner-page .sideLeft .box .list ul li.active:before {
  background: #fff;
}
#fullpage .section:nth-child(7) .init-6 .container .left .formBox form button:hover {
  color: #fff;
}
#footer .footer-top .icon {
  margin-top: 50px;
  vertical-align: middle;
}
#footer .footer-top .icon ul {
  margin-left: -15px;
}
#footer .footer-top .icon ul li {
  width: auto;
  padding-left: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
#footer .footer-top .icon ul li i {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: white;
  color: black;
  font-size: 12px;
  margin-right: 8px;
  text-align: center;
  line-height: 20px;
}
.button-group {
  position: absolute;
  
  font-size: 12px;
  padding: 10px 0 !important;
}
.about-page .about-4 .box::-webkit-scrollbar {
  display: none;
}

.inner-page.about-page.download .download-1 li .bottom p:hover i {
  color: #45b035;
}
.inner-page.about-page.download .download-1 li .bottom:nth-child(even) {
  background: #fbfbfb;
}
.download .ui.container {
  max-width: 1300px;
}
.inner-page.about-page.download .table {
  margin: 30px 0 60px;
}
.inner-page.about-page.download .table th {
  text-align: center;
  width: 20% !important;
  padding: 20px 15px;
  background: var(--color);
  font-size: 16px;
  color: #fff;
  border: none;
  border-right: 1px solid #fff;
}
.inner-page.about-page.download .table #top td {
  border: 1px solid #f0f0f0;
  padding: 5px 15px;
  background: #f0f0f0;
  font-size: 16px;
}
.inner-page.about-page.download .table #info {
  width: 100%;
  background: #fff;
}
.inner-page.about-page.download .table #info:nth-child(even) {
  background: #fbfbfb;
}
.inner-page.about-page.download .table #info td,
th {
  width: 20% !important;
  /*float: left;*/
  border: 1px solid #f0f0f0;
  padding: 5px 15px;
  font-size: 14px;
  color: #555;
}
.inner-page.about-page.download .table #info i.fa {
  font-size: 18px;
  color: var(--color);
}

.about-ab .top {
  padding-top: 80px;
}
.about-ab .top .left{
  position: relative;
  z-index: 1;
}
.about-ab .top h2 {
  color: var(--color);
  font-size: 24px;
}
.about-ab .top h3 {
  color: #000;
  font-size: 38px;
  margin-bottom: 10px;
}
.about-ab .top p {
  color: #363636;
  font-size: 18px;
  padding: 15px 0;
  line-height: 2;
}
.corporate-culture {
  padding: 60px 0;
  background: #f9f9f9;
  margin-top: 65px;
}
.corporate-culture .ui.container {
  display: flex;
  align-items: center;
}
.corporate-culture .left {
  width: 50%;
}
.corporate-culture .left h2 {
  color: var(--color);
  font-size: 24px;
}
.corporate-culture .left h3 {
  color: #000;
  font-size: 38px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.corporate-culture .left p {
  color: #000;
  font-size: 18px;
  padding: 8px 0;
  line-height: 1.8;
  font-weight: bold;
}
.corporate-culture .right {
  width: 50%;
}
.corporate-culture .left p em {
  color: #000;
  text-transform: capitalize;
  font-weight: bold;
}
.corporate-culture .left ul {
  display: flex;
  margin-left: -21px;
  width: 95%;
  margin-top: 20px;
}
.corporate-culture .left ul li {
  width: 25%;
  text-align: center;
}
.corporate-culture .left ul li p {
  border: 2px solid var(--color);
  border-radius: 100%;
  height: 120px;
  width: 120px;
  line-height: 100px;
  margin: 0 auto;
  margin-bottom: 10px;
  color: #000;
  font-size: 26px;
  font-weight: bold;
}
.corporate-culture .left ul li span {
  font-size: 14px;
  color: #000;
}
.his-bg .ui.container {
  display: flex;
  align-items: center;

}
.his-bg {
  background-repeat: no-repeat;
  padding: 100px 0;
  /*background-attachment: fixed;*/
}
.his-bg .left-his {
  margin-left: -13%;
  width: 38%;
  display: none;
}
.his-bg .right-his {
  width: 100%;
  margin-left: 0%;
}
.his-bg .right-his .about-4 h3 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 50px;
  line-height: 1.2;
  margin-top: 10px;
}
.his-bg .right-his .about-4 h2 {
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
}
.about-page .our-rz ul {
  display: flex;
  justify-content: space-between;
}
.about-page .our-rz h2 {
  font-size: 24px;
  margin-bottom: 45px;
  position: relative;
}
.about-page .our-rz h2:after {
  content: "";
  position: absolute;
  width: 10%;
  left: 50%;
  height: 3px;
  background: var(--color);
  bottom: -10px;
  transform: translateX(-50%);
}
.indusknow h2 {
    line-height: 1.2;
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.indusknow h3 {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 10px;
    margin-top: 12px;
    color: #363636;
    text-transform: capitalize;
}
.indusknow {
    font-size: 16px;
    line-height: 2;
    padding: 100px 10px;
    margin: 0 auto;
    position: relative;
    color: #363636;
    max-width: 1558px;
}




@media screen and (max-width: 1555px) {
  .productList ul li .box2 .text p {
    margin-bottom: 10px;
  }
  .productList ul li {
    padding: 5px;
  }
  .productList ul {
    margin: -5px;
  }
  .productList ul li .box2 .text {
    font-size: 14px;
  }
  .productList ul li .box2 {
    padding: 10px;
  }
  .productList ul li .box2 h5 {
    padding: 10px;
  }
}

@media screen and (max-width: 1250px) {
  .corporate-culture .left ul{
    margin-left: -10px;
  }
  .corporate-culture .left ul li p{
    width: 90px;
    height: 90px;
    line-height: 80px;
  }
}

@media screen and (max-width: 1000px) {
  .inner-page .sidebar-box {
    display: block;
  }
  .inner-page.news-page .sidebar-box .sidebar-left {
    display: none;
  }
  .inner-page .sidebar-box .sidebar-right {
    width: 100%;
  }
  .news-page .newsList {
    padding-right: 0;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li {
    width: 100% !important;
  }
  .inner-page.about-page.download {
    padding-top: 60px;
  }
  .download .filterSingleBox li {
    width: 33%;
  }
  .about-ab .top .con{
    max-height: 500px;
    overflow: auto;
    padding-right: 10px;
  }
   .about-ab .top .con::-webkit-scrollbar-thumb{
     background: var(--color);
   }
      .corporate-culture .ui.container{
     display: block;
   }
   .corporate-culture .left{
     width: 100%;
   }
   .corporate-culture .right{
     width: 100%;
     margin-top: 20px;
   }
   .about-page .about-factory img.cpm{
     height: auto;
   }
   .productList ul li .box2 .text {
    display: none;
  }
  .productList ul li .box2 a.more {
    margin-top: 0;
  }

  .newdet-page .sidebar-box .sidebar-right .newdet-content{
    padding-right: 0;
  }
  .indusknow h2{
    font-size: 50px;
  }

  .join-us-page .join-us-2 .from h2{
    font-size: 30px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .box .mbx {
    font-size: 16px;
    line-height: 2;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content {
    display: block;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li {
    padding: 30px 20px;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center {
    text-align: left;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center span {
    text-align: center;
    font-size: 16px;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 0;
  }
  .inner-banner .box h2 {
    font-size: 20px;
  }
  .newdet-page .sidebar-box .sidebar-right .relate-product {
    display: none;
  }
  .download .filterSingleBox li {
    width: 49%;
  }
  .inner-banner .btn {
    margin-top: 30px;
  }

  .about-ab .top{
    padding-top: 0px;
  }
  .about-page .about-factory{
    display: none;
  }
   .corporate-culture{
     padding: 30px 0;
   }
   .corporate-culture .left ul{
     display: none;
   }
   .corporate-culture .right{
     width: 100%;
     display: none;
   }
   .his-bg .ui.container{
     display: block;
   }
   .his-bg .left-his{
     width: 100%;
     margin-left: 0;
     display: none;
   }
   .his-bg .right-his{
     width: 100%;
     margin-left: 0;
     padding: 30px 0;
   }
   .about-page .our-rz ul{
     flex-wrap: wrap;
   }
   .about-page .our-rz{
     padding: 30px 0;
   }
   .about-page .our-rz ul li{
     margin-bottom: 6px;
   }
   .inner-page .sideLeft .box .list ul li i{
    top: -13px;
    right: -19px;
  }
  .lianxi{
    display: block;
  }
  .join-us-page .join-us-2 .from{
    width: 100%;
    margin: 20px 0 0 0;
  }
  .join-us-page .join-us-2 .from ul li{
    padding: 10px 0;
  }
  .join-us-page .join-us-2 .from h2{
    width: 100%;
    padding-left: 0;
  }
  .lianxi .map{
    width: 100%;
    margin: 20px 0 30px 0;
  }
  .news-page{
    padding: 30px 0;
  }
  .newdet-page .content{
    padding: 0;
  }
  .indusknow{
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link{
    display: block;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a{
    width: 100%;
    padding: 10px 0;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right{
    padding-left: 0;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form textarea, .newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form input[type=text]{
    width: 100%;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
    font-size: 20px;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center{
    font-size: 20px;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right h3 a{
    font-size: 20px;
  }
  .contact-page .init-2 .grid-box .column p .fa{
    display: block;
  }
  .about-page .our-rz ul li{
    width: 25%;
  }
  .his-bg .right-his .about-4 h2{
    font-size: 20px;
  }
  .his-bg .right-his .about-4 h3{
    font-size: 29px;
    margin-bottom: 20px;
  }
  .corporate-culture .left h2{
    font-size: 20px;
  }
  .corporate-culture .left h3{
    font-size: 29px;
  }
  .about-ab .top h2{
    font-size: 20px;
  }
  .about-ab .top h3{
    font-size: 30px;
    line-height: 1.2;
  }
  .about-ab .top p{
    font-size: 15px;
  }
  .inner-banner .box h2.sngm {
    display: none;
  }
  .inner-banner .btn {
    display: none;
  }
  .download .filterSingleBox li {
    width: 100%;
  }
}

/* 新增 */
.about-page .about-3 {
  padding: 90px 0 100px;
}
.about-page .about-3 h2,
.about-page .about-network h2 {
    display: block;
    font-size: 38px;
    text-transform: capitalize;
    font-weight: 700;
}
.about-page .about-3 .offerBox ul{
  margin: -15px;
}
.about-page .about-3 .offerBox ul li{
  padding: 15px;
} 
.about-page .about-3 .offerBox .slick-dots{
  margin: 0;
  display: flex;
  justify-content: center;

}
.about-page .about-3 .offerBox .slick-dots li{
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #eee;
  transition: 0.5s;
  padding: 0;
  margin: 0 5px;
}
.about-page .about-3 .offerBox .slick-dots li button{
  display: none;
}
.about-page .about-3 .offerBox .slick-dots li.slick-active{
  background: var(--color);
}

.about-page .about-3 .content {
    display: block;
    padding: 20px 0 70px;
    font-size: 16px;
    color: #959595;
    line-height: 2;
    font-weight: 500;
}
.about-page .about-3 .list ul {
display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.about-page .about-3 .list ul li {
  padding: 50px 25px 65px;
  border: 1px solid #eee;
  text-align: center;
  margin: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.about-page .about-3 .list ul li i {
  display: block;
  height: 109px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .list ul li i.ie1 {
  background-image: url("/zjsinoraymetal/2022/06/16/zongzhi.png");
}
.about-page .about-3 .list ul li i.ie2 {
  background-image: url("/zjsinoraymetal/2022/06/16/gongzuo.png");
}
.about-page .about-3 .list ul li i.ie3 {
  background-image: url("/zjsinoraymetal/2022/06/16/tuandui.png");
}
.about-page .about-3 .list ul li i.ie4 {
  background-image: url("../images/icon-3-4-1.png");
}
.about-page .about-3 .list ul li i.ie5 {
  background-image: url("../images/icon-3-5-1.png");
}
.about-page .about-3 .list ul li i.ie6 {
  background-image: url("../images/icon-3-6-1.png");
}
.about-page .about-3 .list ul li:hover i.ie1 {
  background-image: url("/zjsinoraymetal/2022/05/30/zongzhi01.png");
}
.about-page .about-3 .list ul li:hover i.ie2 {
  background-image: url("/zjsinoraymetal/2022/05/30/gongzuo01.png");
}
.about-page .about-3 .list ul li:hover i.ie3 {
  background-image: url("/zjsinoraymetal/2022/05/30/tuandui01.png");
}
.about-page .about-3 .list ul li:hover i.ie4 {
  background-image: url("../images/icon-3-4-2.png");
}
.about-page .about-3 .list ul li:hover i.ie5 {
  background-image: url("../images/icon-3-5-2.png");
}
.about-page .about-3 .list ul li:hover i.ie6 {
  background-image: url("../images/icon-3-6-2.png");
}
.about-page .about-3 .list ul li h5 {
  display: block;
  font-size: 20px;
      color: var(--color);
  line-height: 1.8;
  margin: 10px 0 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.about-page .about-3 .list ul li:hover h5 {
    color: #fff;
}

.about-page .about-3 .list ul li p {
  display: block;
  font-size: 16px;
  color: #959595;
  line-height: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  /*height: 6.4em;*/
}
.about-page .about-3 .list ul li:hover {
  background: var(--color);
  color: white;
}
.about-page .about-3 .list ul li:hover p {
  color: white;
}
.about-page .about-3 .list ul li:nth-child(2),
.about-page .about-3 .list ul li:nth-child(5) {
  top: -30px;
}
.about-page .ab-4{
  padding: 60px 0;
}
.about-page .ab-4 .header span {
    color: var(--color);
    font-size: 28px;
    font-weight: 700;
}
.about-page .ab-4 h2 {
    display: block;
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 700;
    padding: 6px 0;
}
.about-page .ab-4 .header p {
    font-size: 18px;
    line-height: 1.5;
    color: #6e6e6e;
}
.about-page .ab-4 .content{
  margin-top: 15px;
}
.about-page .ab-4 .content .slick-arrow{
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 57px;
  height: 59px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: none;
}
.about-page .ab-4 .content .slick-arrow:hover {
  background-color: rgba(230,198,34,0.5);
}
.about-page .ab-4 .content .slick-prev {
  background: url("../images/inner-l.png") no-repeat center center rgba(0,0,0,0.2);
  left: 46%;
}
.about-page .ab-4 .content .slick-next {
  background: url("../images/inner-r.png") no-repeat center center rgba(0,0,0,0.2);
  right: 46%;
  left: auto;
}
.about-page .ab-4 .content ul{
  margin-right: -15px;
}
.about-page .ab-4 .content ul li{
  padding-right: 15px;
}
.about-page .ab-4 .content ul li a{
  display: block;
}
@media screen and (max-width: 1250px) {
  .about-page .about-3 .list ul li i {
    height: 80px;
    background-size: auto 100%;
  }
  .about-page .about-3 .list ul li h5 {
    font-size: 18px;
  }
  .about-page .about-3 .list ul li p {
    font-size: 16px;
  }
  .about-page .about-3 .list ul li {
    padding: 30px 15px;
  }
  .about-page .about-3 {
    padding: 60px 0;
    line-height: 2;
  }
}
@media screen and (max-width: 1000px) {
   .about-page .about-3 h2,
   .about-page .ab-4 h2,
   .about-page .about-network h2{
    font-size: 24px;
  }
  .about-page .about-3 .content {
    font-size: 16px;
  }
  .about-page .about-3 .list ul li i {
    height: 60px;
  }
  .about-page .about-3 .list ul li {
    width: 50%;
  }
  .about-page .about-3 .list ul li:nth-child(2),
  .about-page .about-3 .list ul li:nth-child(5) {
    top: 0;
  }
  .about-page .ab-4 .content .slick-prev{
    left: 39%;
  }
  .about-page .ab-4 .content .slick-next{
    right: 42%;
  }
  .about-page{
    padding: 0; 
  }
  .his-bg .right-his .about-4 h3{
    font-size: 29px;
    margin-bottom: 20px;
  }
  .about-page .about-3 .offerBox ul li{
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-3 .list ul li {
    width: 100%;
  }
  .about-page .about-3 .list ul li p {
    height: auto !important;
  }
  .about-page .ab-4{
    padding: 30px 0 0;
  }
  .pt-60{
    padding-top: 30px;
  }
  .pb-60{
    padding-bottom: 30px;
  }
  .about-page .ab-4 .content .slick-prev {
    left: 37%;
}
  .about-page .ab-4 .content .slick-next {
    right: 37%;
  }
  .about-ab .top h2{
    font-size: 20px;
    -webkit-text-stroke: 1px rgba(0,0,0,0.5);
  }
  .about-ab .top{
    padding-top: 30px;
  }
  .about-ab .top h3{
    font-size: 32px;
    line-height: 2;
  }
  .corporate-culture .left h3{
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .about-ab .top h3{
    font-size: 28px;
  }
  .corporate-culture .left h3 {
    font-size: 28px;
}
}



.p05 .support .item{
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.p05 .support .item:nth-child(odd){
  flex-direction: row-reverse;

}

.p05 {
  font-size: 16px
}

.p05 h2 {
  margin-bottom: 40px
}

.p05 .samples,
.p05 .consultation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 120px auto
}

.p05 .samples .mml-text,
.p05 .consultation .mml-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  max-width: 50%;
  color: #565656;
  font-size: 18px;
}

.p05 .samples .mml-image,
.p05 .consultation .mml-image {
  margin: auto
}

.p05 .samples h2,
.p05 .consultation h2 {
  color: black;
  text-align: initial;
  line-height: 1.4;
}

.p05 .samples p,
.p05 .samples ul,
.p05 .consultation p,
.p05 .consultation ul {
  margin-top: 15px;
  line-height: 2;
}

.p05 .samples li,
.p05 .consultation li {
  margin: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
}

.p05 .samples .green,
.p05 .consultation .green {
  margin-right: 5px;
  color: #56d079
}

.p05 .consultation {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  /*max-width: 1404px;*/
}

.p05 .stable {
  overflow: hidden;
  padding: 120px 0;
  background-color: #19181d;
  text-align: center
}

.p05 .stable p {
  margin: 0 auto 15px;
  max-width: 750px;
  color: gray;
  line-height: 2;
}

.p05 .slicker-stable {
  /*max-width: 1700px;*/
  margin: 60px 0 0;
  /*-webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  transform: translate(25%, 0)*/
}
.p05 .slicker-stable{
  margin-right: -10%;
}
.p05 .slicker-stable .slick-list{
  padding-right: 200px !important;
}
.p05 .slicker-stable .slick-slide {
  position: relative;
  margin: 0 20px
}

.p05 .slicker-stable .slick-slide:before {
  content: '\20';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(25, 24, 29, .5);
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s
}

.p05 .slicker-stable .slick-slide.slick-current:before {
  opacity: 0
}

.p05 .slick-dots {
  max-width: 820px;
  width: 50%;
  margin: 40px auto 0;
}

.p05 .slick-dots>li {
  display: inline-block;
  background-color: #f7f7f7;
}

.p05 .slick-dots>li.slick-active {
  background-color: var(--color);
}

.p05 .support {
  overflow: hidden;
  color: white
}

.p05 .support .mml-row {
  margin: 60px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.p05 .support .mml-row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row
}

.p05 .support .mml-image {
  margin: auto
}

.p05 .support .mml-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  max-width: 50%;
  color: #000;
  text-align: initial;
}

.p05 .support .sup-title {
  display: block;
  margin-top: 70px;
  color: #111;
  line-height: 1.4;
}

.p05 .support h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

.p05 .support p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width:1200px) {
  .p05 .slicker-stable {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }

  .p05 .slick-dots {
    max-width: unset;
    width: unset
  }
}

@media (max-width:1000px) {

  .p05 .consultation,
  .p05 .samples {
    display: block
  }

  .p05 .consultation .mml-image,
  .p05 .samples .mml-image {
    width: unset
  }

  .p05 .consultation .mml-text,
  .p05 .samples .mml-text {
    margin: auto
  }
}

@media (max-width:780px) {
  .p05 .support .mml-row {
    display: block;
    margin: 40px auto
  }

  .p05 .support .mml-image {
    width: unset;
    max-width: unset
  }

  .p05 .support .mml-text {
    margin: auto
  }

  .p05 .support .sup-title {
    text-align: center
  }
}

@media (max-width:600px) {
  .p05 h2 {
    margin-bottom: 20px
  }

  .p05 .consultation,
  .p05 .samples {
    margin: 40px 0
  }

  .p05 .stable {
    padding: 40px 0
  }

  .p05 .slicker-stable,
  .p05 .slick-dots {
    margin-top: 20px
  }
}

.p05 .support .ui.container {
  max-width: 1404px;
}

.p05 h2 {
    font-size: 46px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}
.p05 div,
.p05 p {
  font: inherit;
}
.white {
    color: #fff;
}

@media only screen and (max-width:1000px){
  .p05 .samples .mml-text, .p05 .consultation .mml-text{
    max-width: 100%;
  }

  .p05 h2{
    font-size: 30px;
  }

  .p05 .support .item{
    display: block;
  }

  .p05 .support .mml-text{
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .p05 .consultation{
    display: block;
  }
  .p05 .samples, .p05 .consultation{
    display: block;
  }
  .p05 .samples .mml-image, .p05 .consultation .mml-image{
    width: 100%;
  }
  .p05 .support .mml-image img{
    width: 100%;
  }
  .p05 .samples .mml-image img, .p05 .consultation .mml-image img{
    width: 100%;
  }
}
@media screen and (max-width: 501px) {
  .p05 .slicker-stable .slick-list{
    padding-right: 100px !important;
  }
}

.faq-page {
  padding: 120px 0;
}
.faq-page ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.faq-page ul li h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  
}
.faq-page ul li .content {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}
.faq-page ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .faq-page{
    padding: 60px 0;
  }
   .faq-page ul li h4 {
    font-size: 18px;
    line-height: 1.6;
  }
  .faq-page ul li .content {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .faq-page{
    padding: 30px 0;
  }
}

.about-ab .about-factory .box img{
  width: 100%;
}
.about-ab .about-factory .box .play{
  position: absolute;
  top: 50%;
  left: 50%;
}

/*2023-5-9 New content on homepage*/
.sustainable{
  padding-top: 80px;
}
.sustainable .header p{
  font-size: 18px;
  line-height: 1.6;
  color: #7a7a7a;
  font-weight: 300;
}
.sustainable .tab{
  margin-top: 30px;
  text-align: center;
}
.sustainable .tab ul{
  margin-right: -30px;
}
.sustainable .tab ul li{
  display: inline-block;
  font-size: 24px;
  line-height: 1.2;
  padding-right: 30px;
}
.sustainable .tab ul li a{
  display: block;
  padding: 10px 36px;
  border: 1px solid #e1e1e1;
   -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.sustainable .tab ul li:hover a,
.sustainable .tab ul li.active a{
  background: #e6c622;
  color: white;
}
.sustainable .content{
  margin-top: 60px;
}
.sustainable .content ul li .img{
  vertical-align: middle;
}
.sustainable .content ul li .img img{
  width: 100%;
}
.sustainable .content ul li .text{
  vertical-align: middle;
  padding-left: 2%;
}
.sustainable .content ul li .text h2{
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.sustainable .content ul li .text .con{
  font-size: 16px;
  line-height: 1.6;
  color: #7a7a7a;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .sustainable .content ul li .img{
    width: 100%;
  }
  .sustainable .content ul li .text{
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .sustainable{
    padding-top: 30px;
  }
  .sustainable .tab ul{
    margin-right: -20px;
  }
  .sustainable .tab ul li{
    font-size: 20px;
    padding-right: 20px;
  }
  .sustainable .tab ul li a{
    padding: 10px 17px;
  }
  .sustainable .content{
    margin-top: 30px;
  }
}
@media screen and (max-width:500px) {
  .sustainable .content ul li .text h2{
    font-size: 22px;
  }
  .sustainable .content ul li .text .con{
    font-size: 14px;
    margin-top: 10px;
  }
  .sustainable .tab{
    text-align: left;
  }
  .sustainable .tab ul{
    margin: 0 -10px -10px 0;
  }
  .sustainable .tab ul li{
    width: 49%;
    font-size: 18px;
    padding: 0 10px 10px 0;;
  }
  .sustainable .tab ul li a{
    padding: 10px 0;
    text-align: center;
  }
}




.contact-1 {
  padding: 110px 0 110px;
}
.contact-1 .list ul {
  margin: -8px;
}
.contact-1 .list ul li {
  padding: 8px;
}
.contact-1 .list ul li .box {
  -o-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  -webkit-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  text-align: center;
  padding-bottom: 30px;
  /*background-color: white;*/
}
.contact-1 .list ul li .box h5,
.contact-1 .list ul li .box p{
  /*color: white;*/
}
.contact-1 .list ul li .box span {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: var(--color);
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.contact-1 .list ul li .box span i {
  color: white;
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
}
.contact-1 .list ul li .box span:after {
  content: '';
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: inherit;
}
.contact-1 .list ul li .box span:before {
  content: '';
  border-right: 13px solid transparent;
  border-bottom: 12px solid #023222;
  position: absolute;
  left: 100%;
  bottom: 100%;
}
.contact-1 .list ul li .box h5 {
  font-size: 18px;
  line-height: 2;
  padding: 25px 0 15px;
  font-weight: bold;
}
.contact-1 .list ul li .box p {
  font-size: 16px;
  line-height: 2;
  font-weight: normal;
  min-height: 100px;
}

@media screen and (max-width: 1000px) {
  .contact-1 .list ul li{
    width: 50%!important;
  }
}

@media screen and (max-width: 700px) {
  .contact-1 .list ul li{
    width: 100%!important;
  }
}

@media screen and (max-width: 500px) {
  .lianxi .from form textarea,
  .lianxi .from form input{
    width: 100%;
    height: 45px;
  }
}


#news-list{
  margin: -30px;
}

#news-list li{
  padding: 30px;
}
@media screen and (max-width: 1000px) {
  #news-list{
    margin: -15px;
  }

  #news-list li{
    padding: 15px;
  }
}




.p06-1-s5 {
    padding-bottom: 160px
}

.p06-1-s5 .mml-row>ul>li {
    margin-top: 167px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}
.p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
    padding-right: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.p06-1-s5 h2 {
    margin-bottom: 30px;
    font-size:40px;
    font-weight: bold;
       
    color: #363636;
}

.p06-1-s5 p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.p06-1-s5 .img-wrap {
    max-width: 822px;
    width: 54%
}

.p06-1-s5 .text {
    max-width: 593px
}

.p06-1-s5 .swiper-pagination {
    position: absolute;
    margin-top: 0
}

.p06-1-s5 .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px
}

@media (max-width:1200px) {
    .p06-1-s2 .small {
        margin-top: 0;
        max-width: 100%
    }

    .p06-1-s4 .text {
        margin: 0
    }
}

@media (max-width:960px) {
    .p06-1-s2 .tab {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s2 .tab li {
        width: calc(50% - 2px);
        margin-bottom: 2px
    }
}

@media (max-width:768px) {
    .p06-1-s1 {
        padding: 40px 0
    }

    .p06-1-s4 .text {
        padding: 10px
    }

    .p06-1-s5 {
        padding-bottom: 40px
    }

    .p06-1-s5 .mml-row>ul>li {
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .img-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .img-wrap {
        width: 100%
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
        margin-top: 20px;
        padding: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text {
        max-width: 100%;
        text-align: center
    }
}

@media (max-width:540px) {
    .p06-1-s2 .tab li {
        width: 100%
    }
}


.about-page .about-ab .factory .content ul{
  margin: -10px;
}
.about-page .about-ab .factory .content ul li{
  padding: 10px;
}





.about-page .ab-2{
 background: url(/gmself-adhesive/2024/02/26/advantage-bg.jpg) no-repeat center center;
    padding-bottom: 100px;
    background-attachment: fixed;
}
.about-page .ab-2 .header{
  text-align: center;
  width: 56%;
  margin: 0 auto;
  padding-top: 50px;
}
.about-page .ab-2 .header span{
    font-size: 48px;
    color: #fff;
    font-weight: 700;
}
.about-page .ab-2 .header h3{
  font-size: 36px;
  line-height: 1.1;
  /*margin-top: 23px;*/
}
.about-page .ab-2 .header p{
  font-size: 18px;
  line-height: 1.6;
  color: #ebebeb;
  margin-top: 24px;
}
.about-page .ab-2 .header .mores{
  width: 133px;
	height: 44px;
  text-align: center;
  line-height: 44px;
  background: rgba(195,13,34);
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-top: 36px;
      transition: all .5s ease;
}
.about-page .ab-2 .header .mores:hover {
    background: rgba(195,13,34,0.7);
        transition: all .5s ease;
}
.about-page .ab-2 .header .play{
  margin-top: 79px;
}
.about-page .ab-2 .header .play i{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.about-page .ab-2 .header .play i::before,
.about-page .ab-2 .header .play i::after{
  position: absolute;
                z-index: -1;
                content: '';
                left: -12px;
                right: -12px;
                top: -12px;
                bottom: -12px;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.5);
                -webkit-animation: ks 2s linear infinite;
                -o-animation: ks 2s linear infinite;
                -ms-animation: ks 2s linear infinite;
                -moz-animation: ks 2s linear infinite;
                animation: ks 2s linear infinite;
}
.about-page .ab-2 .header .play i::before{
  -webkit-animation-delay: .6s;
                -o-animation-delay: .6s;
                -ms-animation-delay: .6s;
                -moz-animation-delay: .6s;
                animation-delay: .6s;
}
.about-page .ab-2 .content{
  padding-top: 100px;
  color: #fff;
}
.about-page .ab-2 .content ul{
  margin-right: -20px;
}
.about-page .ab-2 .content ul .slick-slide {
  margin-right: 20px;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(1) li::after {
  right: -2%;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(2) li::after {
  right: -4.5%;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(3) li::after {
  right: -5%;
}
.about-page .ab-2 .content ul .slick-slide:last-child li::after {
  display: none;
}
.about-page .ab-2 .content ul li {
  padding: 0 10px;
  position: relative;
}
.about-page .ab-2 .content ul li::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.3);
}
.about-page .ab-2 .content ul li span {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.about-page .ab-2 .content ul li h4 {
  display: block;
  font-size: 24px;
 
  font-weight: bold;
  line-height: 1;
  margin: 22.5px 0 13px;
  font-style: italic;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

}
.about-page .ab-2 .content ul li p {
  display: block;
  font-size: 18px;
  line-height: 2;
  min-height: 56px;
}



.about-page .ab-2 .content ul li a.mores {
  display: inline-block;
  width: 17.5px;
  height: 17.5px;
  border: 1px solid white;
  line-height: 17.5px;
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
  border-radius: 100%;
  background: transparent;
  color: #fff;
}
.about-page .ab-2 .content ul li a.mores::before {
  border-bottom-color: #fa582a;
}
.about-page .ab-2 .btn {
  padding: 46px 25px 0;
  display: block;
  text-align: right;
  color: #fff;
}
.about-page .ab-2 .btn div {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .ab-2 .btn div.next {
  margin-left: 15px;
}
.about-page .ab-2 .btn div::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 2px;
  background: white;
  margin-left: 0;
  margin-top: -4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.about-page .ab-2 .btn div:hover::after {
  width: 18px;
  margin-left: 10px;
}
.about-page .about-ab.about-1 .ui.container{
  max-width: 1700px;
}
.about-page .about-ab .wrap {
  margin: -20px;
  padding-top: 50px;
}
.about-page .about-ab .wrap .column{
  padding: 20px;
  margin-bottom: 40px;
  vertical-align: middle;
}
.about-page .wrap .content h3{
  font-size: 30px;
  font-weight: bold;
}
.about-page .wrap .content .text{
  font-size: 18px;
  line-height: 30px;
  font-weight: 700; 
}


.about-page .about-num ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.about-page .about-num ul li {
    padding: 15px 1.85rem 5px 90px;
    position: relative;
    background: url(../images/a-icon.png) no-repeat left center
}

.about-page .about-num ul li:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    border-left: 1px solid #ccc;
    right: -43px;
    top: 0
}

.about-page .about-num ul li:last-child {
    padding: 15px 0 5px 90px
}

.about-page .about-num ul li:last-child:after {
    display: none
}

.about-page .about-num ul li em {
    font-size: 48px;
    line-height: .9;
    color: var(--color);
    font-weight: 700
}

.about-page .about-num ul li p {
    font-size: 16px;
    color: #545252
}

.about-page .about-num ul li:nth-child(1) {
    background: url(../images/about-icon.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(2) {
    background: url(../images/about-icon2.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(3) {
    background: url(../images/about-icon3.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(4) {
    background: url(../images/about-icon4.png) no-repeat left center
}

@media screen and (max-width: 1000px) {
  .toptab{
    display: none;
  }
  .about-page .ab-2 .header{
    width: 100%;
  }
  .about-page .about-ab .wrap .column{
    width: 100%;
  }
  
  .about-page .ab-2 .header span{
    font-size: 24px;
  }

  .about-page .ab-2 .header h3{
    font-size: 16px;
  }

  .about-page .about-num ul {
      flex-wrap: wrap
  }

  .about-page .about-num ul li {
      width: 50%;
      margin-bottom: 20px
  }

  .about-page .about-num ul li:after {
      display: none
  }

  .about-page .about-num ul li p {
      font-size: 14px
  }

  .about-page .about-num ul li em {
      font-size: 24px
  }

  .about-ab .about-factory .box:after{
    display: none;
  }
}
@media screen and (max-width:700px){
  .about-page .wrap .content h3{
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .about-page .about-num ul li {
    width: 100%;
  }
  .about-page .wrap .content h3{
    font-size: 20px;
  }
}



.about-ab .about-factory .box:after {
    position: absolute;
    content: "";
    width: 402px;
    height: 389px;
    background: url(../images/about-after.png) no-repeat 100% 100%;
    left: -92px;
    top: -113px
}



.shopping_cart{
  display: inline-block;
  position: relative;
}
.shopping_cart em {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color);
    line-height: 20px;
    width: 20px;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
    color: #fff;
}





.p03-s01 {
    padding: 120px 0
}

.p03-s01 .text {
    width: 100%;
    vertical-align: middle;
}

.p03-s01 .text-main {
    max-width: 600px;
    padding-right: 10px
}

.p03-s01 h2 {
  font-size: 40px;
  font-weight: bold;
    padding-top: 26px;
    margin-bottom: 30px;
    color: #252118
}

.p03-s01 p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #777
}

.p03-s01 .pic {
    width: 100%;
    vertical-align: middle;
}

.p03-s02 {
    padding-top: 110px;
    padding-bottom: 120px;
    background-color: #f5f8fa;
    text-align: center
}

.p03-s02 h2 {
  font-size: 40px;
  font-weight: bold;
    margin-bottom: 32px;
    color: #252118
}

.p03-s02 h4 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #252118
}

.p03-s02 p {
    max-width: 800px;
    margin: 0 auto 54px;
    font-size: 14px;
    color: #777
}

.p03-s02 a {
    font-size: 14px;
    color: var(--color);
    text-decoration: underline!important
}

.p03-s02 a:hover {
    color: #028b39
}


.p03-s04 {
    padding-top: 110px;
    padding-bottom: 96px
}

.p03-s04 h2 {
  font-size: 40px;
  font-weight: bold;
    margin-bottom: 60px;
    color: #252118
}

.p03-s04 .bd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.p03-s04 .nav {
    width: 40%
}

.p03-s04 .nav ul {
    background-color: #fff;
    -webkit-box-shadow: 0 60px 60px 0 rgba(188,210,220,.2);
    box-shadow: 0 60px 60px 0 rgba(188,210,220,.2)
}

.p03-s04 .nav li {
    height: 57px;
    line-height: 57px;
    padding-left: 60px;
    border-bottom: 1px solid rgba(239,239,239,.46);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 14px;
    color: #777;
    font-weight: 500;
    font-style: normal;
    cursor: pointer
}

.p03-s04 .nav li.current {
    color: #fff;
    background-color: var(--color)
}

.p03-s04 .nav li:last-of-type {
    border: none
}

.p03-s04 .for {
    width: 100%
}

.p03-s04 .for li {
    line-height: 1.4;
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
    font-weight: 300;
    font-style: normal
}

.p03-s04 .for-wrap {
    display: none
}

.p03-s04 .for-wrap.active {
    display: block
}

.p03-s04 .pic {
    margin-bottom: 54px
}

.p03-s04 .text {
    max-width: 680px
}

.p03-s04 h4 {
    padding-top: 4px;
    font-size: 18px;
    color: var(--color)
}

.p03-s04 h5 {
    font-size: 14px;
    color: #252118
}

.p03-s04 p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777
}


.p03-s05 {
    padding-top: 110px;
    padding-bottom: 96px;
    background-color: #f5f8fa
}

.p03-s05 h2 {
  font-size: 40px;
  font-weight: bold;
    margin-bottom: 36px;
    color: #252118;
    text-align: center
}

.p03-s05 .pic {
    max-width: 980px;
    margin: 0 auto
}

.p03-s05 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -20px
}

.p03-s05 li {
    max-width: 380px;
    width: 100%;
    margin-left: 20px
}

.p03-s05 .text {
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.p03-s05 h4 {
    padding-top: 26px;
    font-size: 18px;
    color: #303030
}

.p03-s05 p {
    font-size: 14px;
    color: #777
}

@media (max-width: 1200px) {
    .p03-s03 .for-wrap {
        padding-left:0
    }
}

@media (max-width: 1000px) {
    .p03-s01 h2{
      font-size: 24px;
    }
    .p03-s02 h2{
      font-size: 24px;
    }
    .p03-s04 h2{
      font-size: 24px;
    }
    .p03-s05 h2{
      font-size: 24px;
    }

    .p03-s01 .mml-row {
        -webkit-flex-wrap:wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .p03-s01 h2 {
        padding-top: 0
    }

    .p03-s01 .text {
        max-width: 600px;
        margin: 0 auto
    }

    .p03-s01 .pic {
        margin: 0 auto
    }

    .p03-s03 {
        background: var(--color)
    }

    .p03-s03 .bd {
        padding-left: 0
    }

    .p03-s03 .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .p03-s03 .top h2 {
        max-width: none;
        margin-bottom: 30px;
        text-align: center
    }
}

@media (max-width: 768px) {
    .p03-s03 .bottom {
        -webkit-flex-wrap:wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .p03-s03 .nav {
        max-width: none;
        width: 100%
    }

    .p03-s04 .bd {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .p03-s04 .nav {
        max-width: none;
        width: 100%
    }

    .p03-s05 ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0
    }

    .p03-s05 li {
        margin: 0 auto 20px
    }
}

@media (max-width: 540px) {
    .p03-s01 {
        padding:70px 0
    }

    .p03-s02 {
        padding: 70px 0
    }

    .p03-s03 .top h2 {
        padding-top: 30px
    }

    .p03-s03 .for-wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .p03-s03 .col {
        margin: 0 auto 20px;
        padding: 0 10px
    }

    .p03-s04 {
        padding: 70px 0 60px
    }

    .p03-s04 .nav {
        min-width: auto
    }

    .p03-s04 .nav li {
        padding-left: 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

    .p03-s05 {
        padding: 70px 0 50px
    }
}



.our-product-1 {
  overflow: hidden;
}
.our-product-1 .disc {
  width: 38%;
  padding-top: 90px;
}
.our-product-1 .disc .content {
  max-width: 550px;
  margin-left: auto;
  padding: 0 50px;
}
.our-product-1 .disc .content .icons .icon {
  width: auto;
}
.our-product-1 .disc .content .icons .icon i {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  margin: auto;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
}
.our-product-1 .disc .content .icons .icon i img {
  vertical-align: middle;
}
.our-product-1 .disc .content .icons .icon + .icon {
  margin-left: 40px;
}
.our-product-1 .disc .content .dots {
  margin-top: 70px;
}
.our-product-1 .proImg {
  width: 62%;
  padding-top: 90px;
  padding-bottom: 60px;
  padding-left: 8%;
  background: url(../images/product-1-bg.jpg) no-repeat center left #FFFFFF;
  background-size: 100%;
}
.our-product-1 .proImg ul {
  margin: -15px;
}
.our-product-1 .proImg ul li {
  padding: 15px;
}
.our-product-1 .proImg .small-img .img {
  max-width: 116px;
}
.our-product-1 .proImg .small-img .img + .img {
  margin-left: 5px;
}
.swiper-pagination-bullet {
  border-radius: 100%;
}
.dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000000;
  margin: 0 10px;
  opacity: 0.5;
  color: transparent;
}
.dots .swiper-pagination-bullet-active {
  opacity: 1;
  width: 42px;
  height: 42px;
  line-height: 38px;
  text-align: center;
  border: 2px solid #dadada;
  background-color: transparent;
  color: #000000;
}
.dots .swiper-pagination-bullet-active .rightcircle {
  -webkit-animation: circleProgressLoad_right 4s linear infinite;
  -moz-animation: circleProgressLoad_right 4s linear infinite;
  animation: circleProgressLoad_right 4s linear infinite;
}
.dots .swiper-pagination-bullet-active .leftcircle {
  -webkit-animation: circleProgressLoad_left 4s linear infinite;
  -moz-animation: circleProgressLoad_left 4s linear infinite;
  animation: circleProgressLoad_left 4s linear infinite;
}
.dots .swiper-pagination-bullet-active .wrapper_con {
  display: block;
}
.dots ol {
  font-size: 0;
}
.dots ol li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.dots .swiper-pagination-bullet .left {
  left: -2px;
}
.dots .swiper-pagination-bullet .right {
  right: -2px;
}
.wrapper_con {
  width: 21px;
  height: 42px;
  position: absolute;
  top: -2px;
  overflow: hidden;
  display: none;
}
.circleProgress {
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(-135deg);
}
.rightcircle {
  border-bottom: 2px solid #12a252;
  border-left: 2px solid #12a252;
  right: 0;
}
.leftcircle {
  border-top: 2px solid #12a252;
  border-right: 2px solid #12a252;
  left: 0;
}
.soludet-page,
.solution-page{
  padding: 100px 0;
}
.solution-page ul{
  margin: -15px;
}
.solution-page ul li{
  padding: 15px;
}
.soludet-page .soludet-1 .right{
  padding-left: 30px;
}
.soludet-page .soludet-1 .right h3{
  font-size: 26px;
  font-weight: bold;
}
.soludet-page .soludet-1 .right .content{
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
}
.soludet-page h4{
    font-size: 28px;
    font-weight: bold;
}
.soludet-page .soludet-2{
  padding: 50px 0;
}
.soludet-page .soludet-2 .content{
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px;
}
.soludet-page .soludet-3 ul{
  margin-top: -15px;
}
.soludet-page .soludet-3 ul li{
  padding: 15px;
}
.service-page .service-1 {
  padding: 138px 0 130px;
}
.service-page .service-1 ul {
  margin: -20px;
  display: flex;
  flex-wrap: wrap;
}
.service-page .service-1 ul li {
  padding: 20px;
}
.service-page .service-1 ul li .box {
  background: white;
  -webkit-box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 75px 55px;
  height: 100%;
}
.service-page .service-1 ul li .box .icon {
  min-height: 60px;
}
.service-page .service-1 ul li .box .icon img {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.service-page .service-1 ul li .box h4 {
  font-size: 25px;
  font-weight: bold;
  margin: 20px 0 26px;
}
.service-page .service-1 ul li .box .text {
  font-size: 18px;
  line-height: 30px;
  min-height: 180px;
}
.service-page .service-1 ul li .box:hover .icon img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.service-page .service-2 {
  background-color: #fafafa;
  padding: 100px 0 100px;
}
.service-page .service-2 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/*.service-page .service-2 .top .text {
  width: 60%;
  padding-right: 60px;
}*/
.service-page .service-2 .top .text h3 {
  font-size: 43px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 25px;
}
.service-page .service-2 .top .text h5{
  font-size: 25px;
  line-height: 40px;
}
.service-page .service-2 .top .text .content {
  font-size: 17px;
  line-height: 30px;
  margin-top: 30px;
}
.service-page .service-2 .top .text .content p:not(:last-child) {
  margin-bottom: 50px;
}
.service-page .service-2 .top .img{
  width: 40%;
}
.service-page .service-2 .product {
  margin: 50px 0;
}
.service-page .service-2 .product ul{
  margin: -15px;
}
.service-page .service-2 .product ul li{
  padding: 15px;
}
.service-page .service-2 .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service-page .service-2 .bottom .text {
  width: 60%;
  padding-left: 80px;
}
.service-page .service-2 .bottom .text .content {
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px;
}
.service-page .service-2 .bottom .text .content p:not(:last-child) {
  margin-bottom: 60px;
}
.service-page .service-2 .bottom .text .content ul li{
  margin-bottom: 20px;
  display: flex;
}
.service-page .service-2 .bottom .text .content ul li h5{
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
}
.service-page .service-2 .bottom .text .content ul li p{
  font-size: 18px;
  margin-top: 6px;
  display: inline-block;
  padding-left: 10px;
}
.service-page .honor ul{
  margin: -15px;
}
.service-page .honor ul li{
  padding: 15px;
}
.service-page .service-3 {
  padding: 140px 0;
  overflow: hidden;
}
.service-page .service-3 h2 {
  font-size: 43px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 45px;
}
.service-page .service-3 .text {
  margin: -50px;
}
.service-page .service-3 .text h4 {
  font-size: 25px;
  margin-bottom: 10px;
}
.service-page .service-3 .text .num .item{
  margin-bottom: 15px;
}
.service-page .service-3 .text .num .item h5{
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
}
.service-page .service-3 .text .num .item p{
  font-size: 18px;
  display: inline-block;
  padding-left: 10px;
}
.service-page .service-3 .text .column {
  padding: 50px;
}
.service-page .service-3 .text .content {
  /*font-weight: 300;*/
}
.service-page .service-3 .imgbox {
  margin-top: 50px;
}
.service-page .service-3 ul {
  margin: -15px;
}
.service-page .service-3 ul li {
  padding: 15px;
}
.service-page .service-4 {
  background-color: #fafafa;
  padding-bottom: 100px;
  padding-top: 100px;
}
.service-page .service-4 h2 {
  font-size: 43px;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}
.service-page .service-4 p.text {
  margin: 30px auto 50px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  max-width: 1050px;
}
/*.service-page .service-4 ul.grid-box {
  margin: -35px;
}
.service-page .service-4 ul.grid-box .column {
  padding: 35px;
}*/
.service-page .service-4 ul li .box {
  position: relative;
  margin: -15px;
}
.service-page .service-4 ul li .box .column{
  vertical-align: middle;
  padding: 15px;
}
.service-page .service-4 ul li .box .content {
  /*position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: white;
  max-width: 365px;*/
  vertical-align: middle;
}
.service-page .service-4 ul li .box .content h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.service-page .service-4 ul li .box .content .text {
  font-size: 18px;
  line-height: 23px;
  font-weight: 300;
  margin: 45px 0 45px;
}
.service-page .service-4 ul li .box .content .text p{
  margin-bottom: 20px;
  font-weight: 500;
}
.service-page .service-4 ul.grid-box .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-top: 90px;
}
.service-page .service-4 ul.grid-box .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #878787;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 6px;
}
.service-page .service-4 ul.grid-box .slick-dots li button {
  display: none;
}
.service-page .service-4 ul.grid-box .slick-dots li.slick-active {
  background-color: var(--color);
}
.service-page .about{
  padding: 60px 0;
}
.service-page .about .right{
  padding-left: 50px;
}
.service-page .about .right .content{
  font-size: 18px;
  line-height: 30px;
}
.gallery-page ul{
  margin: -10px;
}
.gallery-page ul li{
  padding: 10px;
}
.history-page{
  padding: 100px 0;
}
.history-page ul li{
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
  padding-top: 30px;
}
.history-page ul li .time{
  width: 15% !important;
  font-size: 30px;
  font-weight: bold;
  color: var(--color);
}
.history-page ul li .content{
  width: 85% !important;
  font-size: 18px;
  line-height: 2;
}
.sustainability-page {
  padding-bottom: 110px;
}
.sustainability-page.pb_0{
  padding-bottom: 0;
}

.sustainability-page .init-0 {
  padding: 80px 0 0px 0;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sustainability-page .init-0 .ui.container{
  padding: 150px 15px;
}

.sustainability-page .init-0 .container .title {
  font-weight: bold;
  font-size: 44px;
}

.sustainability-page .init-0 .container .des {
  margin: 20px auto 0;
  max-width: 1060px;
  line-height: 2;
  font-size: 18px;
}

.sustainability-page .init-1 {
  margin-top: 30px;
}

.sustainability-page .init-1 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sustainability-page .init-1 .container .list {
  margin-top: 30px;
  text-align: center;
  width: 20%;
  padding: 10px 0;
  transition: 0.5s;
}

.sustainability-page .init-1 .container .list img {
  display: block;
  height: 88px;
  width: auto;
  margin: auto;
}

.sustainability-page .init-1 .container .list .text {
  margin-top: 20px;
  color: #222222;
  font-size: 18px;
}

.sustainability-page .init-1 .container .list:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.sustainability-page .init-2 {
  padding-top: 30px;
}

.sustainability-page .init-2 .container .list {
  margin-top: 60px;
}

.sustainability-page .init-2 .container .list .column {
  position: relative;
  vertical-align: middle;
}

.sustainability-page .init-2 .container .list .left {
  width: 45%;
}

.sustainability-page .init-2 .container .list .left img {
  width: 100%;
}

.sustainability-page .init-2 .container .list .right {
  width: 55%;
  padding: 20px 150px 20px 72px;
}

.sustainability-page .init-2 .container .list .right .title {
  font-weight: bold;
  font-size: 38px;
}

.sustainability-page .init-2 .container .list .right .index_line {
  margin-top: 10px;
  width: 80px;
}

.sustainability-page .init-2 .container .list .right .des {
  margin-top: 20px;
  line-height: 2;
  font-size: 16px;
}

.sustainability-page .init-2 .container .list:nth-child(2n) .left {
  left: 50%;
}

.sustainability-page .init-2 .container .list:nth-child(2n) .right {
  left: -50%;
}

.sustainability-page .init-3 {
  padding: 0 30px;
  margin: 100px 0 20px;
}

.sustainability-page .init-3 .container {
  width: 100%;
}

.sustainability-page .init-3 .container .content {
  margin: -15px;
}

.sustainability-page .init-3 .container .content .list {
  padding: 0 15px;
}

.sustainability-page .init-3 .container .content .list img {
  width: 100%;
}

.sustainability-page .init-4 {
  text-align: center;
  margin-top: 80px;
}

.sustainability-page .init-4 .container .title {
  font-weight: bold;
  font-size: 44px;
}

.sustainability-page .init-4 .container .des {
  color: #747474;
  margin: 20px auto 0;
  max-width: 880px;
  line-height: 2;
  font-size: 16px;
}

.sustainability-page .init-4 .container .index_line {
  height: 5px;
  margin: 20px auto 0;
}

.sustainability-page .init-4 .container .content {
  margin-top: 60px;
}

.sustainability-page .init-4 .container .content ul li {
  padding: 0 15px;
}

.sustainability-page .init-4 .container .content ul li .box {
  border: 1px solid #d8d8d8;
}

.sustainability-page .init-4 .container .content ul li .box .img {
  display: block;
  height: 108px;
}

.sustainability-page .init-4 .container .content ul li .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.toptab{
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.toptab.hidden{
  display: none;
}
.toptab ul{
  margin: 0;
}
.toptab ul li{
  padding: 20px 15px;
  text-align: center;
  font-size: 18px !important;
  font-weight: bold;
  border-right: 1px solid rgba(0,0,0,0.2);
  transition: 0.5s;
}
.toptab ul li:first-child{
  border-left: 1px solid rgba(0,0,0,0.2);
}
.toptab ul li a{
  display: block;
}
.toptab ul li.active,
.toptab ul li:hover{
  background: var(--color);
  color: white;
}
@-webkit-keyframes circleProgressLoad_right {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circleProgressLoad_right {
  0% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circleProgressLoad_right {
  0% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes circleProgressLoad_left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circleProgressLoad_left {
  0%,
  50% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circleProgressLoad_left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@media screen and (max-width: 1475px){
  .our-product-1 .proImg {
    padding-left: 5%;
  }
  .our-product-1 .disc .content {
    padding: 0 30px;
  }
   .our-product-1 .disc .content .dots {
    margin-top: 30px;
  }


  .service-page .service-1 ul li .box{
    padding: 30px;
  }

  .service-page .service-1 ul li .box h4{
    font-size: 20px;
  }

  .service-page .service-1 ul li .box .text{
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px){
   .our-product-1 .disc {
    padding-top: 60px;
  }
  .our-product-1 .proImg {
    padding-top: 60px;
  }
   .sustainability-page .init-0 {
    padding: 120px 0;
  }

  .sustainability-page .init-1 {
    display: none;
  }
}
@media screen and (max-width: 1000px){
  .our-product-1 > .grid-box {
    max-width: 700px;
    padding: 0 15px;
    margin: auto;
  }
  .our-product-1 .disc {
    width: 100%;
  }
  .our-product-1 .proImg {
    width: 100%;
    background: transparent;
    padding-left: 0;
  }
  .our-product-1 .disc .content {
    max-width: 100%;
    padding: 0;
  }
  .our-product-1 .disc .content .dots {
    display: none;
  }
  .sustainability-page .init-2 .container .list .left {
    width: 100%;
  }

  .sustainability-page .init-2 .container .list .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }

  .sustainability-page .init-2 .container .list:nth-child(2n) .left {
    left: 0;
  }

  .sustainability-page .init-2 .container .list:nth-child(2n) .right {
    left: 0;
  }


  .service-page .service-1{
    padding: 60px 0;
  }

  .service-page .service-1 ul li{
    width: 50%!important;
  }
  .service-page .service-1 ul li .box{
    padding: 40px 20px;
  }

  .service-page .service-1 ul li .box .text{
    font-size: 16px;
  }

  .service-page .service-2{
    padding: 60px 0;
  }

  .service-page .service-2 .bottom{
    display: block;
  }

  .service-page .service-2 .bottom .text{
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }

  .service-page .service-4 ul li .box > div{
    width: 100%!important;
  }

  .service-page .service-4{
    padding: 60px 0;
  }

  .service-page .service-2 .top .text h3{
    font-size: 30px;
  }

  .service-page .service-4 h2{
    font-size: 30px;
  }
}
@media screen and (max-width: 700px){
  .our-product-1 .disc .content .icons .icon + .icon {
    margin-left: 20px;
  }
  .sustainability-page .init-3 {
    padding: 0;
  }

  .sustainability-page .init-3 .container .content {
    margin: 0;
  }

  .sustainability-page .init-3 .container .content .list {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px){
  .sustainability-page .init-0 {
    padding: 40px 0;
  }

  .sustainability-page .init-2 .container .list {
    margin-top: 20px;
  }

  .sustainability-page .init-2 .container .list .right .des {
    margin-top: 10px;
  }

  .sustainability-page .init-4 .container .content {
    margin-top: 20px;
  }

  .sustainability-page .init-4 .container .content ul li {
    padding: 0 4px;
  }

  .service-page .service-1 ul li {
    width: 100% !important;
  }
}



h3.tit1 {
  font-size: 46px;
  font-family: var(--font);
  font-weight: bold;
  color: #0B262D;
  line-height: 1;
}
h3.tit1 span {
  color: #3eb134;
}

.product-page {
  padding: 75px 0 0;
}
.product-page .product-1 .top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product-page .product-1 .top ul li {
  text-align: center;
  max-width: 11%;
}
.product-page .product-1 .top ul li img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 1px solid #f5f5f5;
  margin: 0 auto;
  object-fit: cover;
}
.product-page .product-1 .top ul li h4 {
  font-size: 20px;
  font-weight: 400;
  color: #010101;
  text-align: center;
  margin-top: 25px;
  text-transform: capitalize;
}
.product-page .product-1 .top ul li.active img,
.product-page .product-1 .top ul li:hover img {
  border: 1px solid #3eb134;
}
.product-page .product-1 .top ul li.active h4,
.product-page .product-1 .top ul li:hover h4 {
  color: #3eb134;
}
.product-page .product-1 .bot .protit1 {
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  line-height: 1.5;
  margin-top: 55px;
}
.promiaoshu a:hover {
  color: orange!important;
}
.product-page .product-1 .bot .promiaoshu {
  font-size: 18px;
  font-weight: 400;
  color: #797979;
  line-height: 2;
  margin-top: 35px;
}
.product-page .product-1 .bot .promiaoshu li {
  list-style-type: disc;
  margin-left: 1em;
}
.product-page .produtc-2 {
  padding: 90px 0;
}
.product-page .produtc-2 .acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-page .produtc-2 .acc h1 {
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  line-height: 1;
}
.product-page .produtc-2 .acc .form {
  position: relative;
}
.product-page .produtc-2 .acc .form input[type=text] {
  width: 412px;
  height: 38px;
  background: #C9C9C9;
  border: none;
  border-bottom: 1px solid #C9C9C9;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: #707070;
  line-height: 1;
  padding-left: 16px;
  background: transparent;
}
.product-page .produtc-2 .acc .form input[type=submit] {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../images/inner-s.jpg) no-repeat center;
  border: none;
}
.product-page .produtc-2 .acc .form::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #F08200;
}
.product-page .produtc-2 .top {
  margin-top: 60px;
}
.product-page .produtc-2 .top ul {
  margin: -25px;
}
.product-page .produtc-2 .top ul li {
  padding: 25px;
}
.hyzs h2 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--font);
    text-align: center;
}
.hyzs h3 {
    margin-top: 30px;
    font-size: 18px;
}
.hyzs {
    line-height: 30px;
}
.product-page .produtc-2 .top ul li .img {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-page .produtc-2 .top ul li h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
}
.product-page .produtc-2 .top ul li h4:hover {
  color: #3eb134;
}
.product-page .imgbox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 50px;
  margin-top: 33px;
}
.product-page .init-konw {
  padding-bottom: 60px;
}
.product-page .init-konw .top .img {
  vertical-align: middle;
}
.product-page .init-konw .top .con {
  vertical-align: middle;
  padding-left: 100px;
}
.product-page .init-konw .top .con h4 {
  font-size: 30px;
  font-weight: bold;
  color: #0B262D;
  line-height: 1;
  margin-bottom: 30px;
}
.product-page .init-konw .top .con .initkonw {
  font-size: 16px;
  font-weight: 300;
  color: #595A5A;
  line-height: 2;
}
.prodet-page .prodet-1 {
  background: #F6F6F6;
  padding: 110px 0;
}
.prodet-page .prodet-1 .top .left {
  width: 53%;
}
.prodet-page .prodet-1 .top .left .left-box .smallImg {
  width: 18.5%;
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-1 .top .left .left-box .smallImg ul {
  margin: -5px 0px;
}
.prodet-page .prodet-1 .top .left .left-box .smallImg ul li {
  padding: 5px 0;
}
.prodet-page .prodet-1 .top .left .left-box .smallImg ul li img {
  background: #FFFFFF;
  border: 1px solid #827F7B;
  border-radius: 10px;
}
.prodet-page .prodet-1 .top .left .left-box .bigImg {
  display: inline-block;
  width: 81.5%;
  padding-left: 20px;
  vertical-align: middle;
}
.prodet-page .prodet-1 .top .left .left-box .bigImg img {
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
}
.prodet-page .prodet-1 .top .right {
  width: 47%;
  padding-left: 77px;
}
.prodet-page .prodet-1 .top .right h1 {
  font-size: 34px;
  color: #000000;
  margin-bottom: 20px;
}
.prodet-page .prodet-1 .top .right h4 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  padding: 20px 0 16px;
}
.prodet-page .prodet-1 .top .right select {
  height: 75px;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  font-size: 20px;
  font-weight: 400;
  color: #676767;
  line-height: 1;
}
.prodet-page .prodet-1 .top .right .caizhi {
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: #676767;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
}
.prodet-page .prodet-1 .top .right .color {
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
}
.prodet-page .prodet-1 .top .right .color .color_list img {margin-right: 15px;}
.prodet-page .prodet-1 .top .right .color ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-page .prodet-1 .top .right .color ul li {
  margin-right: 40px;
  cursor: pointer;
}
.prodet-page .prodet-1 .top .right .color ul li .co {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page .prodet-1 .top .right .color ul li .co i {
  display: inline-block;
  width: 33px;
  height: 33px;
}
.prodet-page .prodet-1 .top .right .color ul li .co h5 {
  font-size: 20px;
  font-weight: 400;
  color: #676767;
  line-height: 1;
  padding-left: 15px;
}

.prodet-page .prodet-1 .top .right .color .img_cont_c {display: none}
.prodet-page .prodet-1 .top .right .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page .prodet-1 .top .right .btn a {
  display: inline-block;
  border: 1px solid #676767;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  padding: 14px 43px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-1 .top .right .btn .acc1 {
  background: #3eb134;
}
.prodet-page .prodet-1 .top .right .btn .acc1 img {
  vertical-align: middle;
  margin-right: 17px;
}
.prodet-page .prodet-1 .top .right .btn .acc1:hover {
  background: #000;
}
.prodet-page .prodet-1 .top .right .btn .acc2 {
  margin-left: 20px;
  background: transparent;
  color: #444444;
}
.prodet-page .prodet-1 .top .right .btn .acc2:hover {
  background: #3eb134;
  color: #fff;
}
.prodet-page .prodet-2 {
  padding: 100px 0 60px;
}
.prodet-page .prodet-2 .options {
  padding-bottom: 23px;
  border-bottom: 1px solid #ECECEC;
}
.prodet-page .prodet-2 .options ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.prodet-page .prodet-2 .options ul li {
  font-size: 26px;
  font-weight: bold;
  color: #B2B2B2;
  line-height: 1;
  margin-right: 55px;
  text-transform: capitalize;
}
.prodet-page .prodet-2 .options ul li.active {
  color: #3eb134;
}
.prodet-page .prodet-2 .ret {
  margin-top: 55px;
}

.prodet-page .prodet-2 .ret .content form {
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 45px 45px 55px;
  margin-top: 30px
}
.prodet-page .prodet-2 .ret .content h4 {
  font-size: 28px;
  font-family: var(--font);
  margin-bottom: 18px;
}

.prodet-page .prodet-2 .ret .content form ul {
  margin: -20px;
  padding-top: 50px;
}
.prodet-page .prodet-2 .ret .content form ul li {
  padding: 20px;
}
.prodet-page .prodet-2 .ret .content form ul li span {
  font-size: 18px !important;
  line-height: 1;
  color: #000000;
  margin-bottom: 10px;
  display: inline-block;
}
.prodet-page .prodet-2 .ret .content form ul li input[type=text] {
  height: 50px;
  width: 100%;
  border: 1px solid #dedede;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1;
  color: #000000;
}
.prodet-page .prodet-2 .ret .content form ul li textarea {
  height: 130px;
  width: 100%;
  border: 1px solid #dedede;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1;
  color: #000000;
}
.prodet-page .prodet-2 .ret .content form ul li input[type=submit] {
  width: 235px;
  height: 50px;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  border: none;
  background: #3eb134;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-2 .ret .content form ul li input[type=submit]:hover {
  background: #000;
}
.prodet-page .prodet-3 {
  position: relative;
  background: #F6F6F6;
  padding: 60px 0;
}
.prodet-page .prodet-3 .swiper-button-prev,
.prodet-page .prodet-3 .swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
  background: url(../images/init32.png) no-repeat center;
}
.prodet-page .prodet-3 .swiper-button-prev {
  left: -6%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.prodet-page .prodet-3 .swiper-button-next {
  right: -6%;
}
.prodet-page .prodet-3 .title2 {
  text-align: center;
}
.prodet-page .prodet-3 .title2 h3.tit1 {
  color: #000;
}
.prodet-page .prodet-3 .title2 p {
  font-size: 20px;
  font-weight: 400;
  color: #797979;
  line-height: 2;
  max-width: 888px;
  margin: 0 auto;
  margin-top: 30px;
}
.prodet-page .prodet-3 .list {
  margin-top: 60px;
}
.prodet-page .prodet-3 .list ul {
  margin: -15px;
}
.prodet-page .prodet-3 .list ul li{
  padding: 15px;
}
.prodet-page .prodet-3 .list .img {
  text-align: center;
}
.prodet-page .prodet-3 .list .img img {
  border-radius: 20px;
}
.prodet-page .prodet-3 .list h4 {
  text-align: center;
  font-size: 20px;
  font-family: var(--font);
  font-weight: 500;
  color: #777777;
  margin-top: 20px;
  line-height: 1.5;
}



@media screen and (max-width: 1570px) {
  .product-page .init-konw .top .con{
    padding-left: 40px;
  }
  .product-page .produtc-2 .top ul li {
    width: 33.333%;
  }
  .prodet-page .prodet-1 .top .right {
    padding-left: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .product-page .product-1 {
    display: none;
  }
  .product-page .produtc-2 .top ul li {
    width: 50%;
  }
  .product-page .produtc-2 .top ul li .img {
    margin: 0 auto;
  }
  .product-page .init-konw .top .con {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .product-page .init-konw .top .img {
    width: 100%;
  }
  .product-page .init-konw {
    padding-bottom: 0;
    display: none;
  }
  .prodet-page .prodet-1 .top .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .top .right {
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }
  .prodet-page .prodet-1,
  .prodet-page .prodet-2,
  .product-page .produtc-2,
  .prodet-page .prodet-3,
  .product-page {
    padding: 60px 0;
  }
}



@media screen and (max-width: 972px) {
  .product-page .init-konw .top .img,
  .prodet-page .prodet-3 .swiper-button-prev,
  .prodet-page .prodet-3 .swiper-button-next{
    display: none;
  }


  h3.tit1 {
    font-size: 36px;
  }
  
  .product-page .produtc-2 .top ul {
    margin: -10px;
  }
  .product-page .produtc-2 .top ul li {
    padding: 10px;
  }
  t-5 .list,
  .prodet-page .prodet-3 .list {
    margin-top: 30px;
  }

  .prodet-page .prodet-1 .top .right h4 {
    font-size: 20px;
    padding: 10px 0;
  }
  .prodet-page .prodet-2 .ret .content form {
    padding: 20px;
  }
  .prodet-page .prodet-2 .ret .content form ul {
    margin: -10px;
  }
  .prodet-page .prodet-2 .ret .content form ul li {
    padding: 10px;
  }

  .prodet-page .prodet-3 .title2 p {
    font-size: 14px;
  }
}


@media screen and (max-width: 768px) {
  h3.tit1 {
    font-size: 32px;
    line-height: 1.5;
  }

  .product-page .produtc-2 .acc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .product-page .produtc-2 .acc .form {
    margin-top: 30px;
    width: 100%;
  }
  .product-page .produtc-2 .top ul li {
    width: 100%!important;
  }
  .product-page .imgbox ul {
    padding-right: 0;
  }
  .prodet-page .prodet-1 .top .right h1 {
    font-size: 24px;
  }
  .prodet-page .prodet-2 .options ul li {
    margin-top: 20px;
    font-size: 20px;
  }
  .prodet-page .prodet-2 .ret .content h4 {
    font-size: 24px;
  }
  .prodet-page .prodet-2 .ret .content p {
    line-height: 30px;
  }
  .prodet-page .prodet-2 .ret .content form ul {
    padding-top: 30px;
  }
  .product-page .produtc-2 .acc .form input[type=text] {
    width: 100%;
  }
  .prodet-page .prodet-3 .list h4 {
    font-size: 16px;
  }

}


@media screen and (max-width: 450px) {
  h3.tit1,
  .product-page .produtc-2 .acc h1 {
    font-size: 24px;
        line-height: 30px;
  }
  .product-page .produtc-2 .top ul li .img {
    width: 320px;
    height: 320px;
  }
  .product-page .produtc-2 .top ul {
    margin: 0;
  }
  .prodet-page .prodet-1,
  .prodet-page .prodet-2,
  .product-page .produtc-2,
  .prodet-page .prodet-3,
  .product-page {
    padding: 40px 0;
  }
  .product-page .produtc-2 {
    padding: 0px 0;
}
.hyzs,
#footer .foot-bottom p.footguanma.font-14 {
    display: none !important;
}
  .product-page .produtc-2 .top ul li {
    padding: 0;
    margin-top: 25px;
  }
  .product-page .init-konw .top .con h4 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .prodet-page .prodet-1 .top .right .color ul,
  .prodet-page .prodet-1 .top .right .btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-1 .top .right h1 {
    line-height: 2;
  }
  .prodet-page .prodet-1 .top .right select,
  .prodet-page .prodet-1 .top .right .caizhi {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .top .right .btn .acc2 {
    margin-left: 0;
    margin-top: 20px;
  }
  .prodet-page .prodet-2 .ret {
    margin-top: 30px;
  }
}



.mbx-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}



.mask {
  position: relative;
}
.mask:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/logo.png) no-repeat left 15px top 15px;
  background-size: 30%;
  pointer-events: none;
}