@font-face {
  font-family: 'Arial';
  src: url(../fonts/ArialMT.ttf) format('truetype'), url(../fonts/ArialMT.eot) format('eot'), url(../fonts/ArialMT.woff) format('woff'), url(../fonts/ArialMT.woff2) format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'mon';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'mon';
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype'), url(../fonts/Montserrat-Medium.eot) format('eot'), url(../fonts/Montserrat-Medium.woff) format('woff'), url(../fonts/Montserrat-Medium.woff2) format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'mon';
  src: url(../fonts/Montserrat-ExtraLight.ttf) format('truetype'), url(../fonts/Montserrat-ExtraLight.eot) format('eot'), url(../fonts/Montserrat-ExtraLight.woff) format('woff'), url(../fonts/Montserrat-ExtraLight.woff2) format('woff2');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: 'mon';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-weight: 400;
  font-display: swap;
}
:root {
  --color: #0d856a;
  --base-color: #0d856a;
}
body,
html {
  font-size:20px;
}
body {
  font-family: "mon";
  max-width: 1920px;
  margin: 0 auto;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  font-weight: 700;
}
p {
  font-family: "Arial";
}
.container {
  padding: 0 0px;
  position: relative;
  width: 1496px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 9999999;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
#header:before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: 0;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  background: var(--color);
}
#header.active {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  padding: 5px 0;
}
#header.active:before {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  width: 100%;
}
#header .language {
  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;
  position: relative;
  margin-left: 60px;
}
#header .language span {
  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;
  line-height: 2;
  color: #fff;
  font-size: 16px;
}
#header .language span img {
  margin-right: 15px;
}
#header .language span .fa-angle-down {
  font-size: 14px;
  margin-left: 12px;
}
#header .language ul.lang {
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: 0;
  width: 120px;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--base-color);
  display: none;
}
#header .language ul.lang li {
  display: block;
  float: none;
  padding: 4px 10px;
  line-height: 22px;
  color: #000;
  -webkit-transition: 0.5s all, line-height 0s;
  -moz-transition: 0.5s all, line-height 0s;
  transition: 0.5s all, line-height 0s;
  text-transform: capitalize;
}
#header .language ul.lang 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;
  font-size: 14px;
}
#header .language ul.lang li a img {
  max-width: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -3px;
}
#header .language ul.lang li:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #222;
}
#header .language ul.lang li:hover a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #fff;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: transparent;
  position: relative;
}
#header .nav .feedback {
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--base-color);
  -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;
  border-radius: 100%;
  cursor: pointer;
}
#header .nav .feedback i {
  font-size: 24px;
  color: #fff;
}
#header .nav .feedback:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #000;
}
#header .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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
#header .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .ui.menu .rightbox {
  width: 100%;
  position: unset;
}
#header .ui.menu .rightbox .top{
  position: relative;
  z-index: 9999;
}
#header .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: 870px;
  position: unset;
  text-align: left;
}
#header .ui.menu .menu-box ul.menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: unset;
}
#header .ui.menu .menu-box ul.menu > li {
  margin: 0 0px;
  font-size: 18px;
  color: white;
  /*-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;
  border-bottom: 3px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: CAPITALIZE;
}
#header .ui.menu .menu-box ul.menu > li:hover,
#header .ui.menu .menu-box ul.menu > li.active {
  border-color: var(--base-color);
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}
#header .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 15px 0;
}
#header .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;
  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);
  border-bottom: 3px solid var(--base-color);
  display: none \9;
}
#header .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .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 .ui.menu .menu-box ul.menu > li ul.sub-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: 0;
  left: 100%;
  min-width: 180px;
  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);
  border-bottom: 3px solid var(--base-color);
  display: none \9;
}
#header .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  white-space: nowrap;
}
#header .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .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 .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  cursor: hand;
  position: relative;
  top: 5px;
}
#mobile .menu-content .menu-list ul.menu > li > .sub-menu > li > a {
  font-weight: bold;
}
#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%;
  position: relative;
}
#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 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: var(--base-color);
  -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: var(--base-color);
  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;
}
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;
}
table tr:nth-child(even) {
  background: #fff;
}
.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 .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--base-color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#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: var(--base-color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--base-color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--base-color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.slick-arrow.slick-hidden {
  display: block;
}
.more {
  height: 48px;
  line-height: 48px;
  display: inline-block;
  padding: 0 25px;
  border-radius: 24px;
  background: #fff;
  color: var(--color);
  font-size: 17px;
  font-family: "Arial";
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.more:before{
  content: "";
   background-image: linear-gradient(to right bottom,#0d8369,#8cf4b5);
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 0;
   height: 100%;
  transition: 0.3s all;
  z-index: -1;
 
}
.more:hover:before{
  width: 100%;
  transition: 0.3s all;
}
.more.green {
  background: var(--color);
  color: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.more.green:hover {
   /*background-image: linear-gradient(to right,#0d8369,#8cf4b5);*/
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.more i {
  margin-left: 10px;
  color: inherit;
}
.more:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  /*background-image: linear-gradient(to right,#0d8369,#8cf4b5);*/
  color: #fff;
}
#banner .bannerbox {
  position: relative;
}
#banner .bannerbox img.bgs{
  width: 100%;
  max-height:970px;

}
#banner .bannerbox .slick-arrow.slick-prev {
  display: none!important;
}
#banner .bannerbox .content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
}
#banner .bannerbox .content .ui.container .imgbox {
  width: 45%;
}
#banner .bannerbox .content .ui.container .imgbox .img-box{
  overflow: visible;
}
#banner .bannerbox .content .ui.container .text {
  width: 45%;
  max-width: 620px;
  color: #fff;
}
#banner .bannerbox .content .ui.container .text .btm span.slick-arrow {
  width: 48px;
  height: 48px;
  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;
  text-align: center;
  border-radius: 100%;
  font-size: 18px;
  background: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color);
  cursor: pointer;
}
#banner .bannerbox .content .ui.container .text .btm span.slick-arrow i {
  color: inherit;
  margin-left: 0;
}
#banner .bannerbox .content .ui.container .text .btm span.slick-arrow:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #fff;
  /*background: #000;*/
}
#banner ul.slick-dots {
  position: absolute;
  bottom: -100px;
  right: 10%;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  left: auto;
}
#banner ul.slick-dots li {
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  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;
  border: 1px solid transparent;
  position: relative;
}
/*#banner ul.slick-dots li.slick-active {
  border-color: #fff;
  background: transparent!important;
}*/

#banner ul.slick-dots li.slick-active .box {
  opacity: 1;
}
#banner ul.slick-dots li.slick-active .box .right-circle .circle-border {
  -webkit-animation: circle-loading-right 6s linear forwards;
  -moz-animation: circle-loading-right 6s linear forwards;
  animation: circle-loading-right 6s linear forwards;
}
#banner ul.slick-dots li.slick-active .box .left-circle .circle-border {
  -webkit-animation: circle-loading-left 6s linear forwards;
  -moz-animation: circle-loading-left 6s linear forwards;
  animation: circle-loading-left 6s linear forwards;
}
#banner ul.slick-dots li button {
  display: block;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
}
#banner ul.slick-dots li .box {
  width: 40px;
  height: 40px;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
} 
#banner ul.slick-dots li .box span {
  display: inline-block;
}
#banner ul.slick-dots li .box .right-circle,
#banner ul.slick-dots li .box .left-circle {
  position: relative;
  width: 25px;
  height: 40px;
  overflow: hidden;
}
#banner ul.slick-dots li .box .right-circle .circle-border {
  right: 0;
  top: 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#banner ul.slick-dots li .circle-border {
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border: 1px solid transparent;
}
#banner ul.slick-dots li .box .left-circle .circle-border {
  left: 0;
  bottom: 0;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
#index-body .h3 {
  color: var(--color);
  line-height: 1.04347826;
}
#index-body .h3 em {
  display: block;
}
#index-body {
  background: url(/aircompressorfactory/2025/07/29/index-body-dec.png) right top no-repeat;

}
.btn {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex!important;
  -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;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.btn i {
  font-size: 24px;
  color: var(--color);
}
.gxs-1 .text p {
  max-width: 1213px;
  margin: 0 auto;
  line-height: 2.46666667;
  color: #404040;
}
.gxs-1 .btm .imgbox{
  width: 100%;
  height: 492px;
  display: block;
}
.gxs-1 .btm .imgbox .play{
  z-index: 99;
}
.gxs-1 .btm .imgbox .mask{
  position: absolute;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  background: url(../images/about-imgs.jpg) center center no-repeat;
  /*background-size: cover;*/
  width: 50%;
}
.gxs-2 .ui.container {
  width: 1740px;
}
.gxs-2 .ui.container .main ul {
  margin: 0 -35px;
}
.gxs-2 .ui.container .main ul li {
  padding: 0 35px;
}
.gxs-2 .ui.container .main ul li:hover .item:before {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  top: 100%;
}
.gxs-2 .ui.container .main ul li:hover .item:after {
  top: 0;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-2 .ui.container .main ul li:hover .item .text .h4 {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-2 .ui.container .main ul li:hover .item .text .h4.pos {
  opacity: 0;
}
.gxs-2 .ui.container .main ul li:hover .item .text .hoverbox {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 1;
}
.gxs-2 .ui.container .main ul li .item {
     height: 600px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-top: 10px;
}
.gxs-2 .ui.container .main ul li .item:before {
  content: "";
  position: absolute;
  width: 270px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../images/cate-bg-1.png) right bottom no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  z-index: -1;
}
.gxs-2 .ui.container .main ul li .item:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 100%;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../images/cate-bg-2.png) right bottom no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  z-index: -1;
}
.gxs-2 .ui.container .main ul li .item .text {
  text-align: center;
  margin: 0 auto;
  margin-top: 25px;
  max-width: 270px;
  color: #fff;
  position: relative;
}
.gxs-2 .ui.container .main ul li .item .text .h4 {
  text-align: center;
}
.gxs-2 .ui.container .main ul li .item .text .h4.pos {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  width: 100%;
}
.gxs-2 .ui.container .main ul li .item .text .hoverbox {
  margin: 0 auto;
  opacity: 0;
  font-size: 16px;
}
.gxs-3 {
  position: relative;
}
.gxs-3 .mask {
  width: 100%;
  position: relative;
}
.gxs-3 .mask img.dec{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.gxs-3 .mask ul li img {
  width: 100%;
  height: 775px;
  -o-object-fit: cover;
  object-fit: cover;
}
.gxs-3 .content {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gxs-3 .content .ui.container {
  max-width: 1708px;
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}
.gxs-3 .content .ui.container .left {
  width: 35%;
      padding-right: 155px;
}
.gxs-3 .content .ui.container .left ul.txtlist li {
  color: #fff;
}
.gxs-3 .content .ui.container .left ul.txtlist li p {

  line-height: 1.5;
  font-family: "mon";
  font-weight: 400;
}
.gxs-3 .content .ui.container .right {
  width: 65%;

  padding-left: 38px;
  overflow: hidden;
}
.gxs-3 .content .ui.container .right ul {
  margin-right: -38px;
}
.gxs-3 .content .ui.container .right ul .slick-list {
  overflow: visible;
}
.gxs-3 .content .ui.container .right ul .slick-current {
  left: -38px;
  position: relative;
}
.gxs-3 .content .ui.container .right ul .slick-current li {
  padding: 0!important;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-3 .content .ui.container .right ul .slick-current li .img-box{
  border-radius: 10px;
  border: 2px solid #fff;
}
.gxs-3 .content .ui.container .right ul li {
  padding: 78px 38px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  cursor: pointer;
}
.gxs-3 .content .ui.container .right ul li .img-box {
  position: relative;
}
.gxs-3 .content .ui.container .right ul li .img-box .text {
  position: absolute;
  color: #fff;
  left: 0%;
  width: 100%;
  bottom: 20px;
  padding: 0 20px;
  text-align: left;
}
.gxs-3 .content .ui.container .right ul li .img-box .text p {
  opacity: 0.5;
}
.gxs-4 {
  background: url(../images/gxs-4-bg.jpg) bottom right no-repeat;

    background-attachment: fixed;
    background-size: cover;
}
.gxs-4 .ui.container .left {
  width: 52%;
  position: relative;
  max-width: 748px;
  top: 38px;
}
.gxs-4 .ui.container .left i {
  position: relative;
  -webkit-transition: 0.5s ease-in all;
  -moz-transition: 0.5s ease-in all;
  transition: 0.5s ease-in all;
  display: inline-block;
}
.gxs-4 .ui.container .left i>img{
  animation: rounds 16s linear infinite;
}
.gxs-4 .ui.container .left i ul.teclist {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.gxs-4 .ui.container .left i ul.teclist li {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 100%;
  overflow: visible;
  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;
}
.gxs-4 .ui.container .left i ul.teclist li img{
  position: relative;
  z-index: 2;
}
.gxs-4 .ui.container .left i ul.teclist li:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color);
  top: 0;
  left: 0;
  animation: ks 2s linear infinite;
  opacity: 0;
  display: none;
  border-radius: 100%;
}
.gxs-4 .ui.container .left i ul.teclist li.active:before{
  display: block;
}
.gxs-4 .ui.container .left i ul.teclist li:nth-child(1) {
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.gxs-4 .ui.container .left i ul.teclist li:nth-child(2) {
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gxs-4 .ui.container .left i ul.teclist li:nth-child(3) {
  top: 50%;
  left: 0%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gxs-4 .ui.container .left i ul.teclist li:nth-child(4) {
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.gxs-4 .ui.container .left .main {
  position: absolute;
  width: 575px;
  height: 575px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #e5e5e5;
  border-radius: 100%;
  overflow: hidden;
}
.gxs-4 .ui.container .left .main .imgbox {
  position: relative;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 li {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: var(--color);
  text-align: center;
  line-height: 16px;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 li:nth-child(1) {
  left: 19%;
  top: 54%;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 li:nth-child(2) {
  left: 45%;
  top: 21%;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 li:nth-child(3) {
  left: 80%;
  top: 45%;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 li:nth-child(4) {
  left: 49%;
  top: 60%;
}
.gxs-4 .ui.container .left .main .imgbox ul.teclist2 li i {
  font-size: 12px;
  color: #fff;
}
.gxs-4 .ui.container .right {
  width: 45%;
  padding-left: 0px;
  position: relative;
}
.gxs-4 .ui.container .right > p {
  color: #404040;
}
.gxs-4 .ui.container .right .maintext ul li .text {
  height: 568px;
  border-radius: 10px;
  color: #fff;
  background: var(--color);
  position: relative;
}
.gxs-4 .ui.container .right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 57px;
  height: 57px;
  background: url(../images/text-jiantou.png) center center no-repeat;
}
.gxs-4 .ui.container .right .maintext ul li .text .h5 {
  max-width: 380px;
}
.gxs-5 {
  color: #fff;
  background: url(../images/gxs-5-bg.jpg) center center no-repeat;
  background-size: cover;
      background-repeat: no-repeat;
    background-attachment: fixed;
}
.gxs-5 .ui.container .text {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}
.gxs-6 .main ul li {
  padding: 0 25px;
}
.gxs-6 .main ul li .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.gxs-6 .main ul li .item .left {
  width: 64px;
}
.gxs-6 .main ul li .item .left span.day {
  width: 64px;
  line-height: 64px;
  color: #fff;
  background: var(--color);
  border-radius: 6px 0 6px 0;
  display: inline-block;
}
.gxs-6 .main ul li .item .right {
  width: -webkit-calc(100% - 88px);
  width: -moz-calc(100% - 88px);
  width: calc(100% - 88px);
  border-left: 1px solid #eee;
}
.gxs-6 .main ul li .item .right .h5 {
  font-weight: 700;
  line-height: 1.5;
}
.gxs-6 .main ul li .item .right .h5 a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-6 .main ul li .item .right .h5 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--color);
}
.gxs-6 .main ul li .item .right .text {
  line-height: 2;
  color: #2b2b2b;
}
.gxs-6 .main ul li .item .right .text p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.gxs-6 .main ul li .item .right a.more2 {
  color: var(--color);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-6 .main ul li .item .right a.more2:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #000;
}
#footer {
  background: url(../images/footer-bg.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
}
#footer p,
#footer a {
  font-weight: 400;
  font-family: "mon";
}
#footer .top form {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .top form .box {
  width: 20%;
  position: relative;
  padding: 18px;
}
#footer .top form .box input[type="text"] {
  width: 100%;
  height: 46px;
  line-height: 46px;
  padding: 0 15px;
  background: #849ca3;
  border-radius: 23px;
  color: #fff;
  font-size: 12px;
  border: none;
}
#footer .top form .box input[type="text"]::-webkit-input-placeholder {
  color: #fff;
}
#footer .top form .box input[type="text"]:-moz-placeholder {
  color: #fff;
}
#footer .top form .box input[type="text"]::-moz-placeholder {
  color: #fff;
}
#footer .top form .box input[type="text"]:-ms-input-placeholder {
  color: #fff;
}
#footer .top form .box input[type="text"]::placeholder {
  color: #fff;
}
#footer .top form .wid50 {
  width: 30%;
  position: relative;
}
#footer .top form .wid50 span {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background: #083947;
  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;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -17px;
  z-index: 3;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
#footer .top form .wid50 span:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #000;
}
#footer .top form .wid50 span input[type="submit"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 3;
}
#footer .top form .wid50 span i {
  font-size: 14px;
  color: #fff;
}
#footer .main > div {
  display: inline-block;
}
#footer .main .h5 {
  font-weight: 500;
}
#footer .main .logobox .text {
  max-width: 465px;
  line-height: 1.73333333;
}
#footer .main .logobox ul li {
  width: 34px;
  height: 34px;
  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;
  border-radius: 100%;
  border: 1px solid #fff;
  margin-right: 15px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
#footer .main .logobox ul li:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: var(--color);
  border-color: var(--color);
}
#footer .main .logobox ul li i {
  font-size: 20px;
  color: #fff;
}
#footer .main .links li a {
  font-size: 16px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  line-height: 1.875;
}
#footer .main .links li a i {
  font-size: 12px;
  margin-right: 10px;
}
#footer .main .links li a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--color);
}
#footer .main .infobox ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .main .infobox ul li i {
  min-width: 38px;
}
#footer .main .infobox p {
  font-size: 16px;
  line-height: 1.875;
  max-width: 290px;
}
#footer .footer-bottom {
  position: relative;
  padding: 0;
  background: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
}
#footer .footer-bottom .ui.container {
  border-top: 1px solid #fff;
  padding: 5px 0;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  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;
}
#footer .footer-bottom .ui.container .center {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .footer-bottom .ui.container .center .right {
  width: auto;
  position: relative;
  top: 5px;
}
#footer .footer-bottom .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer-bottom p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
#footer .footer-bottom p img {
  height: 16px;
  margin: 8px 10px;
}
#footer .footer-bottom p a:hover {
  color: var(--base-color) !important;
}
#footer .footer-bottom svg {
  max-height: 30px;
  width: auto;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  fill: #fff;
  position: relative;
  left: 10px;
  top: 0px;
}
#footer .footer-bottom svg text {
  fill: #fff;
}
#footer .footer-bottom svg:hover {
  fill: var(--base-color);
}
#footer .footer-bottom svg g.en {
  display: block;
}
#footer .footer-bottom svg g.cn {
  display: none;
}
.slick-slider {
  display: block!important;
}
@media screen and (max-width: 1400px) {
  #banner .bannerbox .bgs {
    height: 1000px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .gxs-2 .ui.container .main ul li .item:before,
  .gxs-2 .ui.container .main ul li .item:after {
    max-width: 100%;
  }
  .gxs-4 .ui.container .left .main {
    width: 80%;
    height: 80%;
  }
  .gxs-4 .ui.container .right {
    padding-left: 50px;
  }
  .gxs-4 .ui.container .right:before{
    left: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
   #banner{
     margin-bottom: 0!important;
   }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .bannerbox .bgs {
    height: 700px;
  }
  .gxs-4 .ui.container .left {
    width: 100%;
  }
  .gxs-4 .ui.container .right {
    width: 100%;
    padding-top: 100px;
  }
  div.container {
    padding: 0 15px;
  }
  .gxs-4 .ui.container .right .maintext ul li .text {
    height: auto;
  }
  #footer .main > div {
    width: 48%;
  }
  #footer .main > div.links {
    display: none;
  }
  #footer .top form .box {
    width: 100%;
  }
  .body-overflow-box {
    margin-bottom: 0;
  }
  .gxs-3 .content .ui.container .left{
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  #footer .footer-bottom p {
    font-size: 12px;
  }
  #footer .footer-bottom svg {
    max-height: 22px;
  }
  #footer .footer-bottom .ui.container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -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;
  }
  #footer .footer-bottom .ui.container p {
    text-align: center;
  }
  .mb-nav {
    display: none;
  }
  .gxs-2 .ui.container .main ul li .item {
    height: auto;
    padding-bottom: 40px;
  }
  .gxs-3 .content .ui.container .left {
    width: 100%;
  }
  .gxs-3 .content .ui.container .right {
    width: 75%;
    margin-top: 20px;
  }
  .gxs-4 {
    display: none;
  }
  #footer .main > div {
    width: 100%;
    margin-bottom: 20px;
  }
  #footer .main {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .main .infobox p {
    max-width: none;
  }
}
@media screen and (max-width: 500px) {
  #banner .bannerbox .content .ui.container .imgbox {
    width: 100%;
  }
  #banner .bannerbox .content .ui.container .text {
    width: 100%;
    margin-top: 20px;
  }
  .gxs-1 .btm .play {
    width: 50px;
    height: 50px;
  }
  #footer .main .infobox p {
    font-size: 14px;
  }
}
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
.play2 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.play2::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 100%;
  background: transparent;
  background: #fff;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.play2::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 100%;
  background: #fff;
  background: transparent;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#pups_from i.close:after,
#pups_from i.close:before {
  content: "";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--base-color);
}
#pups_from i.close:hover:after,
#pups_from i.close:hover:before {
  background: white;
}
#pups_from form ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from form ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from form ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from form ul li input,
#pups_from form ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 16px;
}
#pups_from form ul li input:focus,
#pups_from form ul li textarea:focus {
  border-color: var(--base-color);
}
#pups_from form ul li textarea {
  height: 80px;
}
#pups_from form ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--base-color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#pups_from form ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from form ul li:last-child {
  margin-bottom: 0;
}
#Pop_UpsBtn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--base-color);
  color: white;
  right: 20px!important;
  bottom: 40px!important;
  font-size: 24px;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#Pop_UpsBtn:hover {
  background: #000;
}
#pups_from i.close:after,
#pups_from i.close:before {
  content: '';
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--base-color);
}
#pups_from i.close:hover:after,
#pups_from i.close:hover:before {
  background: white;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--base-color) !important;
}
.backtop {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--base-color);
  color: #fff;
  right: 20px;
  bottom: 200px;
  font-size: 24px;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.backtop:hover {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  background: #000;
}
.ewm {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--base-color);
  color: #fff;
  right: 20px;
  bottom: 120px;
  font-size: 24px;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 999;
}
.ewm #ewm{
  width: 120px;
  height: 120px;
  display: none;
  padding: 5px;
  background: #fff;
position: absolute;
top: 50%;
right: 100%;
transform: translateY(-50%);
}
.ewm:hover {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  background: #000;
}
img[src=""],
img:not([src]) {
  opacity: 0;
}
.seo_title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
#seo_about ._box {
  margin: -15px;
}
#seo_about ._left,
#seo_about ._right {
  padding: 15px;
}
#honor_list ul {
  margin: -15px;
}
#honor_list ul li {
  padding: 15px;
}
#news_list ul {
  margin: -15px;
}
#news_list ul li {
  padding: 15px;
}
#news_list ._time span {
  display: inline-block;
  padding: 5px;
}
#news_list ._time span._cate {
  color: #FFFFFF;
  background-color: #000000;
}
#news_list ._time span._date {
  background-color: #CCCCCC;
}
#news_list ._table {
  padding: 20px;
  border: 2px solid #CCCCCC;
}


/*inner css kaishi*/
@-webkit-keyframes kzs {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-moz-keyframes kzs {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes kzs {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-webkit-keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
@-moz-keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
@keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}




.inner-banner {
    position: relative;
    padding: 250px 0 200px;
    overflow: hidden;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*.inner-banner .luxy-el {
  position: absolute;
  z-index: -1;
  width: 100%;
    height: 60vh;
  background: no-repeat center center;
  background-size: cover;
  left: 0;
  top: 0;
}*/


.inner-banner.huanbao {
  position: relative;
  height: 89vh;
  padding-top: 17.25rem;
  overflow: hidden;
}
.inner-banner.huanbao .luxy-el {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 89vh;
  background: no-repeat center center;
  background-size: cover;
  left: 0;
  top: 0;
}




.inner-banner .container {
  z-index: 2;
}
.inner-banner .mbx-box {
  position: relative;

}
.inner-banner .mbx-box::after {
  position: absolute;
  z-index: -1;
  content: attr(data-name);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 4.85rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2); 
  text-transform: uppercase;
  font-weight: bold;
}
.inner-banner .mbx-box .mbx {
  font-size: 18px;
  line-height: 32px;
  color: #fff; 
  padding-top: 1.5rem;
}
.inner-banner .mbx-box .mbx a,
.inner-banner .mbx-box .mbx span {
  margin: 0 3px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-banner .mbx-box .mbx a:first-child {
  margin-left: 0;
}
.inner-banner .mbx-box .mbx a:hover {
  color: #0d856a;
}
.inner-banner .mbx-box .mbx span {
  margin-right: 0;
}
.inner-banner .mbx-box h2 {
  font-size: 1.9rem;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  margin-top: 0.5rem;
}
.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;
}
.inner-page .sidebar-box .sidebar-left {
  width: 30%;
}
.inner-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 36px;
  color: #000;
  text-transform: CAPITALIZE;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 2rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-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: 5rem;
  font-size: 14px;
  line-height: 28px;
  color: #555555; 
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search.png) 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 .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 2rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li {
    padding: 8px 0;
    font-size: 17px;
    line-height: 30px;
    position: relative;
    color: #000000;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    text-transform: capitalize;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li ul{
  margin-top: 16px;
  /*display: none;*/
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li i{
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 5px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li a {
  padding-right: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li a span {
  color: #aaa;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:hover {
  color: #0d856a;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li.active{
  color: #0d856a;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 2rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 0.75rem 0;
}
.inner-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 .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 1rem;
}
.inner-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 .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 17px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .4rem;
  font-weight: bold;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: #0d856a;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 28px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(../images/cat2.png) no-repeat center center;
  padding: 10.75rem 2rem 2.75rem;
  color: #fff;
  background-size: cover;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
      font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  line-height: 32px;
  margin-top: 1.1rem;
  text-transform: uppercase;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #0d856a;
  text-transform: capitalize;
  background: #fff;
  padding: 8px 12px;
  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;
  margin-top: 1.3rem;
  font-weight: bold;
}
.inner-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 .sidebar-box .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: #0d856a;
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a:hover {
  color: #fff;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}
.inner-page .sidebar-box .sidebar-right {
  width: 70%;
}
.inner-page .m-page {
  text-align: center;
  float: none;
  margin: 15px -5px 0;
}
.inner-page .m-page a,
.inner-page .m-page span {
  display: inline-block;
  text-align: center;
  width: 45px;
  height: 35px;
  font-size: 15px;
  line-height: 35px;
  border-radius: 5px;
  color: #111;
  font-weight: 500;
  -moz-box-shadow: 0 2px 10px 0 #d8dde6;
  -o-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}
.inner-page .m-page a:hover {
  background: #0d856a none repeat scroll 0 0;
  color: #fff;
}
.about-page .about-1 {
  background: url(../images/ab-bg.jpg) no-repeat center center;
  padding: 70px 0 70px;
  overflow: hidden;
  background-size: cover;
}
.about-page .about-1 .left {
  width: 58%;
  vertical-align: middle;
}
.about-page .about-1 .left h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #0d856a;
}
.about-page .about-1 .left .line {
  width: 10rem;
  height: 2px;
  background-color: #0d856a;
}
.about-page .about-1 .left .text { 

  line-height: 2;
  margin-top: 0.7rem;
}
.about-page .about-1 .right {
  width: 42%;
  vertical-align: middle;
}
.about-page .about-1 .right .img {
  display: inline-block;
  position: relative;
  padding: 25px;
  margin-bottom: 30px;
}
.about-page .about-1 .right .img > img {
  border-radius: 0 0 100px 100px;
}
.about-page .about-1 .right .img .play-box {
  text-align: center;
  min-width: 280px;
  padding: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #0d856a;
  color: white;
  border-radius: 100px 0 100px 0;
}
.about-page .about-1 .right .img .play-box .plays {
  padding-top: 2rem;
}
.about-page .about-1 .right .img .play-box .play {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
}
.about-page .about-1 .right .img .play-box .play::before,
.about-page .about-1 .right .img .play-box .play::after {
  position: absolute;
  z-index: -1;
  content: '';
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 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 .about-1 .right .img .play-box .play::before {
  -webkit-animation-delay: .6s;
  -o-animation-delay: .6s;
  -ms-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.about-page .about-1 .right .img .play-box h3 {
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  width: 82%;
  margin: 2rem auto 0;
}
.about-page .about-1 .mask {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.about-page .about-1 .mask::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10rem;
  font-weight: bold;
  line-height: .5;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.05); 
  z-index: -1;
}
.about-page .about-1 .mask h5 {
     font-size: 3.3rem;
    line-height: 1; 
}
.about-page .about-1 .mask h6 {
font-size: 30px;
    line-height: 1.4;
    color: #0d856a;
    margin-top: 10px;
    text-transform: capitalize;
}
.about-page .about-1 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  margin-top: 4.8rem;
}
.about-page .about-1 ul li h4 em {
  font-size: 1.8rem; 
  line-height: 1;
  display: inline-block;
}
.about-page .about-1 ul li h4 sub {
  font-size: 1.8rem; 
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
}
.about-page .about-1 ul li h4 span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  padding-left: 5px;
  vertical-align: bottom;
  margin-bottom: 5px;
}
.about-page .about-1 ul li p {
  font-size: 20px;
  line-height: 1.8; 
  font-weight: bold;
  margin-top: 0.5rem;
}
.about-page .about-1 ul li::after {
  content: '';
  width: 18px;
  height: 2px;
  background: #000;
  display: block;
  margin-top: 1rem;
}
.about-page .about-2 {
  padding: 5.25rem 0;
}
.about-page .about-2 h2 {
  font-size: 2.5rem; 
  line-height: 1;
  color: #0d856a;
}
.about-page .about-2 .box {
  margin: -15px;
}
.about-page .about-2 .box .left {
  padding: 15px;
  width: 60%;
}
.about-page .about-2 .box .left .btn {
  display: inline-block;
  font-size: 24px;
  line-height: 46px;
  padding: 0 40px;
  background-color: #0d856a;
  color: white;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.about-page .about-2 .box .left .btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  z-index: -1;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.about-page .about-2 .box .left .btn:hover {
  color: #fff;
}
.about-page .about-2 .box .left .btn:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.about-page .about-2 .box .left p {
  line-height: 2;
}
.about-page .about-2 .box .right {
  padding: 15px;
  width: 40%;
}
.about-page .about-2 .box .right .img {
  display: inline-block;
  border-radius: 19px;
  overflow: hidden;
}
.about-page .about-3 {
  position: relative;
  z-index: 1;
    padding-bottom: 5.5rem;
    padding-top: 5.5rem;
}
.about-page .about-3 .left {
  width: 44%;
}
.about-page .about-3 .left h2 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
      margin-bottom: 40px;
}
.about-page .about-3 .left p {
  margin-top: 1rem;
      margin-bottom: 40px;
}
.about-page .about-3 .left .img {
  margin: 1.5rem 0;
}
.about-page .about-3 .left .tab {
  font-size: 0;
}
.about-page .about-3 .left .tab span {
  display: inline-block;
  background-color: #0d856a;
  line-height: 40px;
  padding: 0 15px;
  cursor: pointer;
}
.about-page .about-3 .left .tab span img {
  vertical-align: middle;
}
.about-page .about-3 .left .tab span.left-btn {
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
.about-page .about-3 .left .tab span.right-btn {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.about-page .about-3 .right {
  width: 56%;
  position: relative;
}
.about-page .about-3 .right ul {
  margin: -15px;
}
.about-page .about-3 .right ul li {
  padding: 15px;
}
.about-page .about-3 .right ul li img {
  width: 100%;
}
.about-page .about-4 {
  position: relative;
  height: 385px;
}
.about-page .about-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*.about-page .about-4 img.bg{
  height: 900px;
}*/
.about-page .about-4  .i-semi{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
 .i-semi{
   position: relative;
 }
.i-semi .about-4{
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.about-page .about-4 .BL {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12%;
}
.about-page .about-4 .text-box {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-page .about-4 .text-box h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin-bottom: 2.2rem;
}
.about-page .about-4 .text-box p {
    font-size: 17px;
    color: #fff;
    margin-bottom: 14px;
}
.about-page .about-4 .text-box .btnbox .btn {
font-size: 17px;
    line-height: 1;
    padding: 12px 15px;
    color: #0d856a;
    background-color: #fff;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
        margin: 5px 20px;
        width: auto;
}


.about-page .about-4 .text-box .btnbox .btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  z-index: -1;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #0d856a;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.about-page .about-4 .text-box .btnbox .btn:hover {
  color: #fff;
  border: none;
}
.about-page .about-4 .text-box .btnbox .btn:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.about-page .about-4 .text {
  font-size: 2.4rem; 
  font-weight: bold;
  line-height: 1.2;
  -webkit-text-stroke-color: #0d856a;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.about-page .about-4 .text h4 {
  color: #0d856a;
}
.about-page .about-4 .outline {
  color: transparent;
  -webkit-text-stroke: 1px #0d856a;
}
.about-page .about-5 {
  padding: 4rem 0 6rem;
}
.about-page .about-5 ul {
  margin: -18px;
}
.about-page .about-5 ul li {
  padding: 21px;
}
.about-page .about-5 ul li .item {
    padding: 35px 35px 35px;
    border-top: 2px solid #0d856a;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 5%);
    position: relative;
    top: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.about-page .about-5 ul li .item i {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.about-page .about-5 ul li .item i::after {
  content: '';
  width: 82px;
  height: 82px;
  border-radius: 100%;
  background: #eff4fe;
  z-index: -1;
  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%);
  display: block;
  position: absolute;
}
.about-page .about-5 ul li .item i::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #eff4fe;
  z-index: -1;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(90%, -190%);
  -moz-transform: translate(90%, -190%);
  -ms-transform: translate(90%, -190%);
  -o-transform: translate(90%, -190%);
  transform: translate(90%, -190%);
  display: block;
  position: absolute;
}
.about-page .about-5 ul li .item a.more {
  float: right;
  margin-top: 8px;
}
.about-page .about-5 ul li .item h6 {
    font-size: 1.6rem;
    color: #212121;
    font-weight: bold;
    line-height: 1;
    margin-top: 1.5rem;
}
.about-page .about-5 ul li .item .text {
     margin-top: 1.4rem;
    font-size: 16px;
    line-height: 1.5; 
    font-weight: bold;
    height: 195px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    margin-bottom: 0px;
    width: 90%;
}
.about-page .about-5 ul li .item a.more2 {
  font-size: 18px;
  line-height: 32px;
  color: #0d856a;
  font-weight: bold;
}
.about-page .about-5 ul li .item a.more2 img {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-5 ul li .item:hover {
  top: -15px;
}
.about-page .about-5 ul li .item:hover h6 {
  color: #0d856a;
}
.about-page .i-semi {
  text-align: center;
  padding: 4rem;

}
.about-page .i-semi h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #fff;
}
.about-page .about-4 .i-semi h2{
  color: #fff;
}
.about-page .i-semi p {
    font-size: 16px;
    line-height: 1.8;
    color: #545454;
}
.about-page .i-semi .semi-list {
  margin-top: 2rem;
  position: relative;
}
.about-page .i-semi .semi-list ul li {
  padding: 0 10px;
}
.about-page .i-semi .semi-list ul li p {
  font-size: 18px;
  padding: 20px 10px;
  display: none;
}
.about-page .i-semi .semi-list .slick-arrow {
  position: absolute;
  cursor: pointer;
  width: 49px;
  height: 48px;
  background: url(../images/inner-l.png) no-repeat center;
  left: 45.8%;
  bottom: 10px;
  z-index: 8;
  color: rgba(255, 255, 255, 0);
  border: none;
}
.about-page .i-semi .semi-list .slick-next {
  background: url(../images/inner-r.png) no-repeat center;
  left: calc(51%);
}
@media screen and (max-width: 1100px) {
  .about-page .about-5 ul li .item {
    padding: 50px 20px;
  }
  .about-page .about-5 ul li .item .text {
    width: 100%;
  }
  .about-page .about-5 ul li .item h6 {
    font-size: 20px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner {
    padding-top: 15rem;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .right {
    display: none;
  }
  .about-page .about-1 ul li p {
    font-size: 16px;
  }
  .about-page .about-2 .box .left {
    width: 100%;
  }
  .about-page .about-2 .box .right {
    display: none;
  }
  .about-page .about-3 .left {
    width: 100%;
  }
  .about-page .about-3 .right {
    width: 100%;
    padding-top: 1.5rem;
  }
  .about-page .about-4 {
    display: none;
  }
  .about-page .about-5 ul li {
    width: 100% !important;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .mbx-box::after {
    font-size: 4rem;
  }
  .about-page .about-1 .left h2 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .about-page .about-1 .left .text {
    line-height: 1.5;
  }
  .about-page .about-1 .mask {
    display: none;
  }
  .about-page .about-1 ul {
    display: none;
  }
  .about-page .about-2 .box .left p {
    line-height: 2;
  }
  .about-page .about-2 .box .left .btn {
    font-size: 15px;
  }
  .about-page .i-semi {
    padding: 4rem 0;
  }
  .about-page .i-semi p {
    font-size: 16px;
    line-height: 30px;
  }
}
.contact-page .contact-1 .text-map {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
.contact-page .contact-1 .text-map h5 {
  font-size: 28px;
  padding: 15px 0; 
  line-height: 1.2;
  font-weight: 500;
}
.contact-page .contact-1 .text-map p {
  font-size: 18px;
  line-height: 32px;
}
.contact-page .contact-1 .container {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
.contact-page .contact-1 .container .map {
  width: 100%;
  position: relative;
  background: rgba(0,0,0,0.1);
}
.contact-page .contact-1 .container .con-right {
  width: 35%;
  margin: auto;
  padding-left: 7%;
}
.contact-page .contact-1 .container .con-right h3 {
  font-size: 24px;
  line-height: 1.4;
  padding-bottom: 20px; 
}
.contact-page .contact-1 .container .con-right li {
  padding: 20px 0;
  font-size: 18px;
  line-height: 32px;
}
.contact-page .contact-1 .container .con-right li:nth-child(1) {
  background: url(../images/c-1.png) no-repeat left center;
  padding-left: 80px;
}
.contact-page .contact-1 .container .con-right li:nth-child(2) {
  background: url(../images/c-2.png) no-repeat left center;
  padding-left: 80px;
}
.contact-page .contact-1 .container .con-right li:nth-child(3) {
  background: url(../images/c-3.png) no-repeat left center;
  padding-left: 80px;
}
.contact-page .contact-2 {
  margin-top: 4.1rem;
      margin-bottom: 50px;
}
.contact-page .contact-2 .box {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  background: #f8f8f8;
  align-items: center;
  -webkit-box-align-items: center;
  -moz-box-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
}
.contact-page .contact-2 .left {
  background-color: #0d856a;
  padding: 5.8rem 0 5.8rem 12.45rem;
  color: #fff;
  width: 25.63%;
}
.contact-page .contact-2 .left h4 {
  font-size: 1.6rem;
  line-height: 1.2;
      font-weight: bold;
}
.contact-page .contact-2 .right {
  width: 74.37%;
  padding: 0 11.7rem 0 8.4rem;
}
.contact-page .contact-2 .right ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
.contact-page .contact-2 .right ul li {
    display: inline-block;
    width: 33.33%;
}
.contact-page .contact-2 .right ul li h2 {
  font-size: 22px;
  line-height: 40px; 
}
.contact-page .contact-2 .right ul li p {
  font-size: 18px;
  line-height: 32px;
}
.contact-page .contact-2 .right ul li:last-child {
  margin-right: 0;
  width: 34%;
  text-transform: capitalize;
}
.contact-page .contact-3 {
  padding: 2.05rem 0 5.55rem;
}
.contact-page .contact-3 h3 {
    font-size: 2.85rem;
    line-height: 1;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.2);
    text-align: center;
    text-transform: capitalize;
}
.contact-page .contact-3 form {
  margin-top: 2.5rem;
}
.contact-page .contact-3 form ul li.wid-100 {
  width: 100% !important;
  margin-right: 0;
}
.contact-page .contact-3 form ul li.wid-100 textarea {
  height: 200px;
  padding-top: 12px;
}
.contact-page .contact-3 form ul li {
  margin-bottom: 1.5rem;
  margin-right: 2.7rem;
  width: 30.75% !important;
}
.contact-page .contact-3 form ul li input[type="text"],
.contact-page .contact-3 form ul li textarea {
  width: 100%;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  line-height: 30px;
  height: 50px;
  padding-left: 25px;
}
.contact-page .contact-3 form ul li input[type="text"]:focus,
.contact-page .contact-3 form ul li textarea:focus {
  border-color: #0d856a;
}
.contact-page .contact-3 form ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-3 form ul li:nth-child(4) {
  margin-right: 0;
}
.contact-page .contact-3 form ul li .box {
  width: 136px;
  height: 45px;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 16px;
  text-transform: uppercase;
  /*transform: skewX(-20deg);*/
  border-left: 5px solid #0d856a;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact-page .contact-3 form ul li .box span {
  display: inline-block;
  /*transform: skewX(20deg);*/
}
.contact-page .contact-3 form ul li .box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  z-index: -1;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #0d856a;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.contact-page .contact-3 form ul li .box:hover {
  color: #fff;
}
.contact-page .contact-3 form ul li .box:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media screen and (max-width: 1800px) {
  .contact-page .contact-2 .left {
    padding: 2.8rem 0 2.8rem 10rem;
  }
  .contact-page .contact-2 .right {
    padding: 0 3rem 0 2.4rem;
  }
  .contact-page .contact-2 .right ul li {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1680px) {
  .contact-page .contact-2 .left {
    padding: 2.8rem 0 2.8rem 6rem;
  }
  .contact-page .contact-2 .right {
    padding: 0 2rem 0 2rem;
  }
  .contact-page .contact-2 .right ul li {
    margin-right: 1rem;
  }
  .contact-page .contact-3 form ul li {
    margin-right: 2.65rem;
  }
}
@media screen and (max-width: 1400px) {
  .contact-page .contact-2 .left {
    display: none;
  }
  .contact-page .contact-2 .right {
    width: 100%;
    padding: 2rem 1rem;
  }
  .contact-page .contact-2 .right ul li {
    margin-right: 2.5rem;
  }
  .contact-page .contact-3 form ul li {
    margin-right: 2.6rem;
  }
}
@media screen and (max-width: 1120px) {
  .contact-page .contact-2 .right ul {
    display: block;
  }
  .contact-page .contact-2 .right ul li {
    width: 49.5%;
    margin-right: 0;
  }
  .contact-page .contact-2 .right ul li:last-child {
    width: 49.5%;
  }
  .contact-page .contact-3 form ul li {
    margin-right: 2rem;
    width: 31.1% !important;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .container {
    display: block;
  }
  .contact-page .contact-1 .container .map {
    width: 100%;
  }
  .contact-page .contact-1 .container .con-right {
    width: 100%;
    padding: 2rem 0 0 0;
  }
  .contact-page .contact-3 form ul li {
    margin-right: 1rem;
    width: 32.1% !important;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-1 .text-map h5 {
    font-size: 22px;
    line-height: 40px;
  }
  .contact-page .contact-1 .text-map p {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-page .contact-2 .right ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .contact-page .contact-2 .right ul li:last-child {
    width: 100%;
  }
  .contact-page .contact-2 .right ul li p {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-page .contact-3 form ul li {
    width: 100% !important;
    margin-right: 0;
  }
}
.news-page {
  padding: 5rem 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;
      position: -webkit-sticky;
    position: sticky;
    top: 165px;
}
.news-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0rem;
}
.news-page .sidebar-box .sidebar-right .news-list {
  padding-right: 2rem;
}
.news-page .sidebar-box .sidebar-right .news-list ul {
  margin-right: -1.1rem;
}
.news-page .sidebar-box .sidebar-right .news-list ul li {
  padding-right: 1.1rem;
  margin-bottom: 3.4rem;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .img {
  position: relative;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .img img {
  width: 100%;
      object-fit: cover;
    height: 300px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .img time {
  font-size: 14px;
  line-height: 28px; 
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 16px;
  left: 13px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text {
  padding: 1rem 0 0 8px;
  color: #2b2b2b;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text h3 {
  font-size: 18px;
  line-height: 32px;
  font-weight: bold;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text h3:hover {
  color: #0d856a;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text p {
  font-size: 15px; 

  margin-top: 0.5rem;
}
.news-page .sidebar-box .sidebar-right .news-list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1230px) {
  .inner-page .sidebar-box .sidebar-left {
    display: none;
  }
  .inner-page .sidebar-box .sidebar-right {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
 
}
@media screen and (max-width: 700px) {
  .news-page .sidebar-box .sidebar-right .news-list ul li {
    width: 100%;
    padding-right: 0;
  }
}
.newdet-page .sidebar-box .sidebar-right .newdet-content {
  padding-right: 4.25rem;
}
.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: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #0d856a;
  border: 1px solid #0d856a;
  -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-color: #0d856a;
  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;
  line-height: 28px;
  margin-left: 12px;
  color: #aaa; 
  text-transform: uppercase;
  position: relative;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time span {
  color: #000;
  margin-left: 0.5rem;
}
.xinwen{
  font-size: 34px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem; 
  border-bottom: 1px solid #e7e7e7;
}

.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;
  line-height: 28px;
  color: #555; 
  margin-top: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a {
  font-size: 14px;
  color: #000;
  margin-left: 0.9rem;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a:hover {
  color: #0d856a;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link {
  border-bottom: 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-bottom: 30px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a {
  width: 50%;
  padding: 1.75rem 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: 1rem;
}
.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: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .4rem;
  max-width: 255px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p:hover {
  color: #0d856a;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 28px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
  padding-right: 1.5rem;
  border-right: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
  padding-left: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form {
  margin-top: 3rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text h3 {
       font-size: 24px;
    line-height: 1;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-weight: bold;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text p {
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin-bottom: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text span {
  color: #0d856a;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form .span {
  font-size: 16px;
  line-height: 30px;
  display: inline-block;
  color: #555;
  margin-bottom: 1.25rem;
}
.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 1rem;
  color: #555555;
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form textarea {
  width: 100%;
  height: 200px;
  padding: 1rem;
}
.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: 2.25rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button {
  display: inline-block;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #fff; 
  background: #000;
  padding: 15px 1.75rem;
  position: relative;

  margin-left: 5px;
  border: none;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button span {
  display: inline-block;
  position: relative;

  z-index: 2;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: #0d856a;
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button:hover::after {
  width: 100%;
}
@media screen and (max-width: 1230px) {
  .newdet-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a {
    width: 100%;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
    border-right: 0px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
    padding-left: 0;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 0;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form .n-input {
    display: block;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form .n-input input[type="text"] {
    width: 100%;
  }
}
.product-page {
  padding: 5rem 0;
}
.product-page .top h3 {
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
}
.product-page .top p {
  font-size: 17px;
  line-height: 1.5;
  color: #757575; 

  margin-top: 1rem;
}
.product-page .product-list {
  margin-top: 1.65rem;
}
.product-page .product-list ul {
  margin-right: -1.6rem;
}
.product-page .product-list ul li {
  padding-right: 1.6rem;
  margin-bottom: 1.6rem;
}
.product-page .product-list ul li .box {
  position: relative;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
  overflow: hidden;
}
.product-page .product-list ul li .box .header {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #eee;
      background: #eeeeee;
}
.product-page .product-list ul li .box .header img {
  width: 100%;
  height: 100%;
}
.product-page .product-list ul li .box .header .product-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  
}
.product-page .product-list ul li .box .header .product-inner .img {
  position: relative;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -moz-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  bottom: 100%;
}
.product-page .product-list ul li .box .header .product-inner .img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.product-page .product-list ul li .box .header .product-inner .img.img1 {
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-page .product-list ul li .box .content {
  padding: 1.05rem 1.05rem 0;
  text-align: center;
}
.product-page .product-list ul li .box .content h4 {
    font-size: 15px;
    color: #353535;
    line-height: 1.8;
}
.fenlei{
  font-size: 22px;
  line-height: 40px;
  font-weight: bold;
  color: #0d856a;

}
.miaoshu{
  font-size: 15px;
  line-height: 2;
}
.jianjiejuli{
    padding: 0.8rem 0!important;
}
.product-page .product-list ul li .box:hover .header .product-inner {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, -moz-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, -moz-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.product-page .product-list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {

}
@media screen and (max-width: 700px) {
  .product-page .product-list ul li {
    width: 100% !important;
  }
}
.prodet-page {
  padding-bottom: 2.9rem;
}
.prodet-page .prodet-1 {
  padding: 4rem 0 3rem;
}
.prodet-page .prodet-1 .left {
    position: sticky;
    top: 165px;
  width: 45%;
}
.prodet-page .prodet-1 .left .img {
  display: block;
  position: relative;
  z-index: 1;
}
.prodet-page .prodet-1 .left .img a{
  border: 1px solid #eee;
  display: block;
}
.prodet-page .prodet-1 .left .img img {
  width: 100%;
      background: #f7f9f8;
}
.prodet-page .prodet-1 .left .color h3 {
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
}
.prodet-page .prodet-1 .left .color{
  margin-top: 30px;
}
.prodet-page .prodet-1 .left .color h4{
  text-transform: capitalize;
  font-size: 18px;
  font-weight: bold;
}
.prodet-page .prodet-1 .left .color img{
  border: 2px solid #f7f7f7;
}

.prodet-page .prodet-1 .left .color ul{
  margin: -10px;
}

.prodet-page .prodet-1 .left .color ul li{
  padding: 10px;
}
.prodet-page .prodet-1 .right {
  vertical-align: middle;
  width: 55%;
      position: sticky;
    top: 165px;
        padding-left: 4rem;
}
.prodet-page .prodet-1 .right h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
}
.prodet-page .prodet-1 .right .content {
    padding: 10px 0 10px;
    font-size: 18px;
    color: #757575;
    line-height: 1.8;

}
.prodet-page .prodet-1 .right .slick {
  margin-bottom: 1rem;
}
.prodet-page .prodet-1 .right .slick h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
}
.prodet-page .prodet-1 .slick ul {

}
.prodet-page .prodet-1 .slicks ul li {
  padding-right: 1rem;
}
.prodet-page .prodet-1 .slicks ul li a{
  display: block;
  border: 1px solid #eee;
}
.prodet-page .prodet-1 .slicks ul li img {
  width: 100%;
      background: #f7f9f8;
}
.prodet-page .prodet-1 .right .slick .slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 0;
  color: transparent;
  border: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none!important;
}
.prodet-page .prodet-1 .right .slick .slick-arrow::after {

  color: #fff;
  font-size: 16px;
}
.prodet-page .prodet-1 .right .slick .slick-arrow.slick-prev {
  left: -20px;
}
.prodet-page .prodet-1 .right .slick .slick-arrow.slick-prev::after {
  content: "\f0d9";
}
.prodet-page .prodet-1 .right .slick .slick-arrow.slick-next {
  right: -10px;
}
.prodet-page .prodet-1 .right .slick .slick-arrow.slick-next::after {
  content: "\f0da";
}
.prodet-page .prodet-1 .right .inquiry-box {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
      text-transform: capitalize;
}
/*.prodet-page .prodet-1 .right .inquiry-box a.more {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff; 
  background: #000;
  padding: 15px 1.75rem;
  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;
  z-index: 1;
}
.prodet-page .prodet-1 .right .inquiry-box a.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;
}
.prodet-page .prodet-1 .right .inquiry-box a.more::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 5px;
  height: 100%;
  background: #0d856a;
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.prodet-page .prodet-1 .right .inquiry-box a.more:hover::after {
  width: 100%;
}*/
.prodet-page .prodet-1 .right .inquiry-box a.more:first-child {
  margin-right: 1rem;
}
.prodet-page .prodet-1 .right .share {
  display: block;
    padding: 1rem 0 1rem;
}
.prodet-page .prodet-1 .right .share li {
  width: auto;
  font-size: 16px;
  line-height: 30px;
  color: #555555;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin-right: 10px;
  text-transform: capitalize;
}
.prodet-page .prodet-1 .right .share li:hover {
  color: #0d856a;
}
.prodet-page .prodet-2 {
      padding: 0rem 0 2rem;
  text-align: center;
}
.prodet-page .prodet-2 .text {
  display: block;
  font-size: 16px;
  color: #7a7a7a;
  margin: 20px 0 30px;
  line-height: 30px;
}
.prodet-page .prodet-2 .list ul {
 
  text-align: left;
}
.prodet-page .prodet-2 .list ul li {
  padding: 1.25rem 0 1.25rem 0;
  border-top: 1px solid #e7e7e7;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.prodet-page .prodet-2 .list ul li i {
  position: absolute;
  top: 18px;
  left: 0;
  width: 60px;
}
.prodet-page .prodet-2 .list ul li i img {
  display: block;
  max-width: 100%;
}
.prodet-page .prodet-2 .list ul li h5 {
  padding-right: 3rem;
  position: relative;
  font-size: 30px;
  line-height: 1.2; 
}
.prodet-page .prodet-2 .list ul li h5 span {
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}
.prodet-page .prodet-2 .list ul li h5 span::after,
.prodet-page .prodet-2 .list ul li h5 span::before {
  content: '';
  width: 100%;
  height: 1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 0;
}
.prodet-page .prodet-2 .list ul li h5 span::after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .list ul li .content {
  margin-top: 1.5rem;
  font-size: 16px;
  color: #7a7a7a;
  line-height: 30px;
}
.prodet-page .prodet-2 .list ul li .content table tbody td,
.prodet-page .prodet-2 .list ul li .content table tbody th {
  border: 1px solid #ededed;
}
.prodet-page .prodet-2 .list ul li:first-child {

}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form li {
    border: 0;
}
.prodet-page .prodet-2 .list ul li.active h5 span::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 {
 
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 h3 {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .text {
  display: block;
  font-size: 16px;
  color: #838383;
  font-weight: 300;
  line-height: 2;
  margin-top: 20px;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form {
  margin-top: 1.75rem;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul {
  margin: -10px -45px;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li {
  padding: 10px 45px;
  width: 50%;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li input,
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form 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;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li input:focus,
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li textarea:focus {
  border-color: #0d856a;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li textarea {
  height: 180px;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li input[type="submit"] {
  margin-top: 30px;
  background: #0d856a;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 23px;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li input[type="submit"]:hover {
  background: #000;
}
.prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li.wid-100 {
  width: 100%;
}
.prodet-page .prodet-3 {
  padding: 2rem 0;
}
.prodet-page .prodet-3 h2.title {
  display: block;
  font-size: 30px;
  line-height: 1;

  text-transform: capitalize; 
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-1 .right {
    padding-left: 2rem;
  }
  .prodet-page .prodet-1 .right h1 {
    padding-right: 0;
    font-size: 24px;
  }
  .prodet-page .prodet-1 .right .content {
    font-size: 16px;
    line-height: 1.5;
  }
  .prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 h3 {
    font-size: 24px;
  }
  .prodet-page .prodet-3 .product-list ul li {
    width: auto !important;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-1 .left {
    width: 100%;
    position: relative;
    top: 0;
  }
  .inner-banner{
    background-size: cover;
  }
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding: 2rem 0 0 0;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 20px;
    line-height: 36px;
  }
  .prodet-page .prodet-1 .right .content {
    font-size: 14px;
  }
  .prodet-page .prodet-2 .list ul li .content {
    font-size: 16px;
  }
  .prodet-page .prodet-2 .list ul li {
    width: 100%;
  }
  .prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .form ul li input[type="submit"] {
    font-size: 20px;
    padding: 10px;
  }
  .prodet-page .prodet-3 h2.title {
    font-size: 27px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .from ul li input[type=submit] {
    font-size: 20px;
    padding: 10px;
  }
  .prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 .from ul li label {
    font-size: 15px;
  }
  .prodet-page .prodet-2 .list ul li .join-us-page .join-us-2 h3 {
    font-size: 18px;
    line-height: 32px;
  }
}
.factory-page-1 .factoty-list ul {
  margin: 0 -15px;
}
.factory-page-1 .factoty-list ul li {
  padding: 15px;
}
.factory-page-1 .factoty-list ul li .box {
  overflow: hidden;
}
.factory-page .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.factory-page .container .left {
  width: 60%;
  position: relative;
}
.factory-page .container .left button.slick-prev {
  display: none !important;
}
.factory-page .container .left button.slick-next {
  position: absolute;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  background: #0d856a;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  transition: .5s;
  left: 108.5%;
  top: 80%;
  width: 150px;
  text-align: center;
  border: none;
}
.factory-page .container .right {
  width: 40%;
  padding-left: 5%;
  padding-bottom: 5%;
}
.factory-page .container .right .four.slick {
  margin-top: 2rem;
}
.factory-page .container .right .four.slick ul {
  margin: 0 -5px;
}
.factory-page .container .right .four.slick ul li {
  padding: 5px;
}
.factory-page .container .text-left h2 {
  font-size: 20px;
  text-transform: capitalize;
  padding-bottom: 20px;
}
.factory-page .container .text-left p {
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 1230px) {
  .factory-page .container .right {
    padding-left: 3%;
    padding-bottom: 0%;
  }
}
@media screen and (max-width: 1000px) {
  .factory-page .container .left {
    width: 100%;
  }
  .factory-page .container .right {
    padding-left: 0%;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 0;
  }
}



.w-accor4 li img{
      max-width: 100%;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}


#index-body .news .desc ul li:hover .content .right h3 {
    color: #0d856a;
}

.about-page .about-5 ul li .item .text p {
    line-height: 2;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content h3 {
    font-size: 20px;
    line-height: 36px;
    color: #000; 
    margin-top: 20px;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content p {
    line-height: 2;
    font-size: 15px;
    padding: 10px 0;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content .top-news {
    margin-bottom: 40px;
}


.newdet-page .sidebar-box .sidebar-right .newdet-content .content p img {
    padding: 10px;
    width: 49%;
}


/*.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:hover a {
    color: #0d856a;
    font-weight: bold;
        padding-left: 10px;
}*/

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li a{
  font-weight: bold;
}


.inner-page .sidebar-box .sidebar-right .top .text01 p {
    font-size: 15px;
    line-height: 2;
}


.inner-page .sidebar-box .sidebar-right .top .text02 h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}

.inner-page .sidebar-box .sidebar-right .top .text02 {
  padding-top: 30px
  
}
.inner-page .sidebar-box .sidebar-right .top .text02 h2:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}


.inner-page .sidebar-box .sidebar-right .top .text02 p {
    margin-top: 5px;
    line-height: 2;
}


.inner-page .sidebar-box .sidebar-right .top .text03 h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}

.inner-page .sidebar-box .sidebar-right .top .text03 h2:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}

.inner-page .sidebar-box .sidebar-right .top .text03 {
    padding-top: 30px;
    display: flex;
}

.inner-page .sidebar-box .sidebar-right .top .text03 .left {
    width: 60%;
}
.inner-page .sidebar-box .sidebar-right .top .text03 .right{
     width: 40%;
    padding-left: 35px;
}

.inner-page .sidebar-box .sidebar-right .top .text03 .left p {
    margin-top: 0rem;
}



.inner-page .sidebar-box .sidebar-right .top .text04 h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}

.inner-page .sidebar-box .sidebar-right .top .text04 h2:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}


.inner-page .sidebar-box .sidebar-right .top .text04 {
    padding-top: 30px;

}


.inner-page .sidebar-box .sidebar-right .top .text04 p {
    line-height: 2;
    margin-top: 0rem;
}

.product-page .top h3:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}



.inner-page .sidebar-box .sidebar-right .top .text03 .right ul li {
    width: 33.33%;
    text-align: center;
    display: inline-block;
        padding: 5px 0;
}

.inner-page .sidebar-box .sidebar-right .top .text03 .right ul {
    font-size: 0;
}

.inner-page .sidebar-box .sidebar-right .top .text03 .right ul li p {
    margin-top: 0;
    font-size: 14px;
}


.prodet-page .prodet-2 .list ul li .content table tbody td, .prodet-page .prodet-2 .list ul li .content table tbody th{
  border: 1px solid #757575;
}


.prodet-page .prodet-1 .right .slick .slick-arrow {
    padding: 55px 10px;
    z-index: 999;
    background: rgba(0,0,0,0.5);
}

.prodet-page .prodet-1 .right .slick .slick-arrow.slick-prev {
left: 0;

}



.prodet-page .prodet-1 .right .content p{
    padding: 5px 0;
    font-size: 16px;
    line-height: 30px;
}

.prodet-page .prodet-1 .right .content p strong {
    font-weight: bold;
    color: #000;
    font-size: 18px;
    line-height: 32px;
}


.prodet-page .prodet-1 .right .content p strong:before {
      content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}

.prodet-page .prodet-2 .list ul li .content .tu ul li {
    border-top: 0px solid #e7e7e7 !important;
    width: 12.5%;
    text-align: center;
} 
.prodet-page .prodet-2 .list ul li .content .tu ul {
    display: flex;
}

.prodet-page .prodet-2 .list ul li .content .tu {
        text-align: center;
    padding: 25px 0;
}


.prodet-page .prodet-2 .list ul li .content .tu p strong {
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
    color: #000;
}
.prodet-page .prodet-2 .list ul li .content .tu p {
    color: #000;
}

.prodet-page .prodet-2 .list ul li .content .tu h2 {
    padding: 10px;
    width: 18%;
    margin: 10px auto;
    background: #0d856a;
    border-radius: 45px;
    color: #fff;
    font-weight: bold;
}
.prodet-page .prodet-1 .right .content .cp ul li {
    display: flex;
    align-items: center;
}

.prodet-page .prodet-1 .right .content .cp ul li .cp-left {
    width: 75%;
    padding-right: 25px;
}

.prodet-page .prodet-1 .right .content .cp ul li .cp-right {
    width: 25%;
    padding: 15px;
}



.prodet-page .prodet-1 .right .content .pro ul li p {
    padding: 5px 0;
    font-size: 16px;
    text-align: left;
    padding-right: 25px;
    color: #000;
    font-weight: bold;
}


.prodet-page .prodet-1 .right .content .pro ul li img {
    border-radius: 55px;
    width: 10%;
    margin-right: 25px;
}


.prodet-page .prodet-1 .right .content .pro ul li {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}



.prodet-page .prodet-2 .list ul li .content .dt01 p {
    color: #000;
    line-height: 2;
    padding: 5px 0;
}


.prodet-page .prodet-2 .list ul li .content .dt01 p strong {
    font-weight: bold;
    color: #000;
    font-size: 18px;
}
.prodet-page .prodet-2 .list ul li .content .dt01 p strong:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}


.prodet-page .prodet-1 .right .content .yingyogn ul {
    display: flex;
}
.prodet-page .prodet-1 .right .content .yingyogn ul li {
    padding: 15px;
}
.prodet-page .prodet-1 .right .content .yingyogn ul img {
    border-radius: 100%;
}

.prodet-page .prodet-2 .list ul li .content .dt001 {
    display: flex;
    align-items: center;
}

.prodet-page .prodet-2 .list ul li .content .dt001 .proleft {
    width: 50%;
    text-align: left;
}
.prodet-page .prodet-2 .list ul li .content .dt001 .proright {
    width: 50%;
    text-align: center;
}
.prodet-page .prodet-2 .list ul li .content .dt001 .proleft ul {
    display: initial;
    font-size: 0;
}
.prodet-page .prodet-2 .list ul li .content .dt001 .proleft ul li {
    width: 25%;
    display: inline-block;
}


.prodet-page .prodet-2 .list ul li .content .dt001 .proleft p strong:before {
   content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}

.service-page{
  padding: 3rem 0;
}
.service-page li{
  margin-bottom: 2rem;
  position: relative;
}
.service-page li .left{
  vertical-align: middle;
}
.service-page li .right{
  vertical-align: middle;
  padding-left: 3rem;
}
.service-page li .right h3{
  font-size: 1.8rem;
  line-height: 1; 
}
.service-page li .right .desc{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1rem;
}
.service-page li .right .more{
  width: 100px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #0d856a;
  color: #fff;
  font-size: 16px;
  display: block;
  margin-top: 1rem;
}
.service-page li .right .scroll-img{
  margin-top: 2rem;
}
.service-page li:nth-child(even) .left{
  float: right;
}
.service-page li:nth-child(even) .right{
  float: left;
  padding: 10% 3rem 0 0;
}
@media screen and (max-width: 700px) {
  .service-page li .left{
    width: 100%;
  }
  .service-page li .right{
    width: 100%;
    padding: 2rem 0 0 0;
  }
  .service-page li:nth-child(even) .right{
    padding: 2rem 0 0 0;
  }
}



.inner-page .sidebar-box .sidebar-right .top p strong {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.inner-page .sidebar-box .sidebar-right .top p strong:before {
      content: '';
    width: 12px;
    height: 12px;
    background: #0d856a;
    display: inline-block;
    margin-right: 10px;
}

.inner-page .sidebar-box .sidebar-right .top p{
  margin-top: 5px;
    line-height: 1.8;
}


.prodet-page .prodet-1 .right .color {
    padding-bottom: 25px;
}


.prodet-page .prodet-1 .right .color h3 {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    padding-bottom: 10px;
}
.prodet-page .prodet-1 .right .color ul {
    display: flex;
}
.prodet-page .prodet-1 .right .color ul li {
    overflow: hidden;
    margin-right: 10px;
    border-radius: 100%;
}
.prodet-page .prodet-1 .right .color ul li img {
    object-fit: cover;
    
}




.seoPublic .title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 2em;
}

.seoPublic > div {
    padding: 60px 0;
}

.seoPublic > div:nth-child(odd) {
    background: #fafafa;
}

.seoPublic .Auxil-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.seoPublic .Auxil-about .box .left {
    width: 40%;
}

.seoPublic .Auxil-about .box .left .img {
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: block;
}

.seoPublic .Auxil-about .box .right {
    width: 60%;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.seoPublic .Auxil-about .box .right div.h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-height: 400px;
    overflow: auto;
}

.seoPublic .Auxil-honor .list ul {
    margin: -10px;
}

.seoPublic .Auxil-honor .list ul li {
    padding: 10px;
}

.seoPublic .Auxil-honor .list ul li a {
    display: block;
}

.seoPublic .Auxil-honor .list ul li a img {
    width: 100%;
}

.seoPublic .Auxil-news .list ul {
    margin: -13px;
}

.seoPublic .Auxil-news .list ul li {
    padding: 13px;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    display: block;
    height: 240px;
    background-size: cover;
    background-position: center center;
}

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

.seoPublic .Auxil-news .list ul li .content div.h6 {
    font-size: 22px;
    line-height: 1.4;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-news .list ul li .content div.h6:hover {
    color: var(--color);
}

.seoPublic .Auxil-news .list ul li .content time {
    font-size: 14px;
    margin-top: .5em;
    display: block;
}

.seoPublic .Auxil-news .list ul li .content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    margin: 1em 0;
}

.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.seoPublic .Auxil-news .list ul li .content a.link:hover {
    border-color: var(--color);
    color: var(--color);
}

.seoPublic .Auxil-form .form ul {
    margin: -10px;
}

.seoPublic .Auxil-form .form ul li {
    padding: 10px;
}

.seoPublic .Auxil-form .form ul li input,
.seoPublic .Auxil-form .form ul li textarea {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-form .form ul li textarea {
    height: 100px;
}

.seoPublic .Auxil-form .form ul li input:focus,
.seoPublic .Auxil-form .form ul li textarea:focus {
    border-color: var(--color);
}

.seoPublic .Auxil-form .form ul li.wid-100 {
    width: 100%;
}

.seoPublic .Auxil-form .form ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--color);
    color: whitesmoke;
    border: none;
}

.seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
    background: #222;
}

.seoPublic .seoIndustry .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.seoPublic .text a {
    color: var(--color);
}

.seoPublic .text a:hover {
    text-decoration: underline;
}

.seoPublic .Auxil-through {
    padding: 15px 0;
    background: none !important;
}

.seoPublic .Auxil-through a {
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    font-size: 14px;
    color: black;
    border: 1px solid #eee;
    background: #f8f8f8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-through a:hover {
    background: var(--color);
    color: white;
}

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

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

.seoPublic .Auxil-related .list ul li .box {
    display: block;
    background: white;
    -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
}

.seoPublic .Auxil-related .list ul li .box a.img-box {
    display: block;
}

.seoPublic .Auxil-related .list ul li .box .content {
    display: block;
    padding: 20px;
    text-align: center;
}

.seoPublic .Auxil-related .list ul li .box .content div.h3 {
    font-size: 22px;
    color: #111;
    font-weight: 500;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
    color: var(--color);
}

.seoPublic .Auxil-related .list ul li .box .content p {
    display: block;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
    margin: .5em 0;
    height: 4.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.seoPublic .Auxil-related .list ul li .box .content a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid var(--color);
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: var(--color);
}

.seoPublic .Auxil-related .list ul li .box .content a.more i {
    margin-left: 5px;
}

.seoPublic .Auxil-related .list ul li .box .content a.more:hover {
    color: white;
    background: var(--color);
}

@media screen and (max-width: 1400px) {
    .seoPublic .title {
        font-size: 28px;
        margin-bottom: 1.5em;
    }

    .seoPublic .Auxil-about .box .right div.title,
    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 20px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea,
    .seoPublic .Auxil-about .box .right .text,
    .seoPublic .Auxil-news .list ul li .content p,
    .seoPublic .seoIndustry .text,
    .seoPublic .Auxil-related .list ul li .box .content p {
        font-size: 14px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 18px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        font-size: 14px;
        line-height: 34px;
        height: 34px;
        padding: 0 15px;
    }

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

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

@media screen and (max-width: 1000px) {
    .seoPublic .title {
        font-size: 24px;
        margin-bottom: 1em;
    }

    #cp-Nav {
        display: block;
    }

    #cp-Nav .nav {
        padding: 0 15px;
    }

    #cp-Nav .nav div.title {
        font-size: 18px;
        font-weight: bold;
        padding: 8px 10px;
        background: var(--color);
        border-radius: 5px;
        color: white;
    }
     #cp-Nav .nav div.title i{
      float: right;
      font-size: 30px;
      cursor: pointer;
    }

    #cp-Nav .nav i.mask {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 230;
        background: rgba(0, 0, 0, 0.2);
    }

    #cp-Nav .nav > ul {
        display: none;
    }

    #cp-Nav .nav ul {
        position: fixed;
        top: 10%;
        max-height: 80%;
        left: 5%;
        width: 90%;
        padding: 20px;
        border-radius: 5px;
        background: white;
        z-index: 300;
        font-size: 16px;
        overflow: auto;
    }

    #cp-Nav .nav ul ul {
        padding: 0 10px;
        font-size: 14px;
        position: static;
        max-height: none;
        width: 100%;
        margin: 10px 0;
    }

    #cp-Nav .nav ul li a {
        display: block;
        padding: 5px 0;
        line-height: 28px;
    }

    .seoPublic .Auxil-about .box {
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .seoPublic .Auxil-about .box .left {
        width: 100%;
        padding: 0;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 300px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 18px;
    }

    .seoPublic > div {
        padding: 30px 0;
    }
    .seoPublic .Auxil-about .box .right .text {
        max-height: none;
    }
}


/*设计*/
.inner-page.application-ny {
    padding: 100px 0;
}
.application-02 {
    padding-bottom: 80px;
}
.application-01 span {
  color: var(--color);
  font-size: 18px;
  text-transform: capitalize;
}
.application-01 {
  width: 70%;
  margin-bottom: 40px;
}
.application-01 h2 {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
    text-transform: capitalize;
 
    font-size: 32px;
}
.application-01 p {
  font-size: 18px;
  padding: 7px 0;
}
.application-08 {
  padding: 80px 0;
  background-color: #f8f7f7;
      margin-bottom: 90px;
}
.application-08 .flex {
  -webkit-box-align: unset;
  -webkit-align-items: unset;
  -moz-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
      display: flex;
}
.application-08 .left span.h2 {
  margin-bottom: 1em;
}
.application-08 .left .text {
  max-width: none;
  line-height: 2.22222222;
}
.application-08 .right {
  margin: 0 auto;
  width: 30%;
}
.application-08 .right .info {
  font-size: 18px;
  height: 100%;
  width: 100%;
  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;
  background-color: white;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 10%;
}
.application-08 .right .info i.iconfont {
  color: var(--color);
  margin-right: 1.5em;
  border-radius: 100%;
  flex-shrink: 0;
}
.application-08 .options .right .info i.iconfont {
  /*color: transparent;*/
  color: var(--color);
  /*border: 1px solid var(--color);*/
}
.application-08 .options .right .info p.active i.iconfont {
  color: #fff;
  border-color: transparent;
}


.application-08 .flex .left {
    width: 65%;
    padding-right: 220px
}
.application-08 .flex .right {
    width: 35%;
}
.application-08 .flex .left span.h2 {
text-transform: capitalize;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
    text-transform: capitalize;
    font-size: 32px;
}
.application-08 .flex .right p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
        cursor: pointer;
            padding: 10px;
                line-height: 2;
                max-width: 100%;
}
.application-08 .options .right .info p.active{
  background: var(--color);
  color: #fff;
}


.application-08 .left .text {
      min-height: 280px;
}


    @media screen and (max-width: 1000px) {
 .application-08 .flex .left {
    width: 100%;
    padding-right: 0;
  }
  .application-08 .flex .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .application-08 .flex {
    flex-wrap: wrap;
  }
  .application-08 .left .text {
    min-height: auto;
  }
  .application-08 .right .info {
    padding: 5%;
  }
}

.application-08 .flex .left span.tag {
     margin-bottom: 18px;
    color: var(--color);
    font-size: 22px;
    text-transform: capitalize;
}
.application-08 .left .text p {
    font-size: 18px;
    line-height: 1.8;
}





.application-14{
      overflow: hidden;
    text-align: center;
    color: white;
        padding-bottom: 70px;
    }
    .application-14 h2,
    .customized-1 h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 60px;
    }
    .application-14 .box{
    padding: 0 16%;
    }
    .application-14 .box ul {
    margin: -50px;
    }
    .application-14 .box ul li {
    padding: 50px;
    }
    .application-14 .box ul li .text{
    vertical-align: middle;
    padding-right: 3%;
    text-align: left;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 1;
    }
    .application-14 .box ul li .text h6 {
    font-size: 22px;
    color: rgba(0,0,0,.5);
    }
    .application-14 .box ul li .text h6 span {
    font-weight: bold;
    font-size: 36px;
    color: #000;
    vertical-align: top;
    line-height: 1.4;
    }
    .application-14 .box ul li .text h3 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 40px;
    line-height: 1.2;
    color: #000;
    word-break: break-word;
    }
    .application-14 .box ul li .img {
    position: relative;
    text-align: left;
    vertical-align: middle;
    left: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .application-14 .box ul li .img img {
    width: 100%;
    }
    .application-14 .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;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .application-14 .box ul li .img .box2 span {
    font-size: 22px;
    font-weight: bold;
    }
    .application-14 .box ul li .img .box2 h6 {
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    padding: inherit;
    width: 100%;
    bottom: 0;
    left: 0;
    }

    .application-14 .box ul .slick-list {
    overflow: unset;
    }
    .application-14 .box ul .slick-current+div li .text{
    opacity: 0;
    }
    .application-14 .box ul .slick-current+div li .img{
    left: -45%;
    }
    .application-14 .box ul .slick-current+div li .img .box2 {
    opacity: 1;
    }
    .application-14 .box ul .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
    margin-left: -80px;
    z-index: 1;
    background: url('../images/inner-l.png') center center no-repeat;
 
    border: none;
    cursor: pointer;
    cursor: hand;
    color: transparent;
    font-size: 0;
    }
    .application-14 .box ul .slick-arrow.slick-next {
    margin-top: 40px;
    transform: rotate(180deg);
    }
    
    @media screen and (max-width: 1400px) {
    .application-14 h2 {
        font-size: 36px;
    }
    .application-14 .box ul li .text h3 {
        font-size: 40px;
    }
    
    }
    
    
    @media screen and (max-width: 1200px) {
    .application-14 {
        padding: 20px 0;
    }
    .application-14 .box ul li .text h3 {
        font-size: 22px;
    }
    .application-14 .box ul li .text h6 {
        font-size: 18px;
    }
    .application-14 .box ul li .text h6 span {
        font-size: 24px;
    }
    }
    
    @media screen and (max-width: 700px) {
    .application-14 .box ul li {
        padding: 10px;
    }
    .application-14 .box ul {
        margin: -10px;
    }
    .application-14 .box ul .slick-arrow {
        width: 30px;
        height: 30px;
        background-size: 8px;
        display: none !important;
    }
    .application-14 .box ul li .img .box2 h6 {
        display: none;
    }
    .application-14 .box ul .slick-current+div li .img {
        left: 0 !important;
        margin-top: 10px;
    }
    .application-14 .box ul li .img .box2 {
        display: none;
    }
    
    }


    .sustainability-01 .top h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sustainability-01 .top p {
    font-size: 17px;
}
.sustainability-01 .top {
    margin-bottom: 30px;
    width: 70%;
}


.sustainability-01 .bottom ul{
  margin: 0 -15px;
}


.sustainability-01 .bottom ul li {
    padding: 15px;
        text-align: center;
}
.sustainability-01 .bottom ul li img {
    width: 100%;
    object-fit: cover;
    height: 350px;
}
.sustainability-01 .bottom ul li p {
    text-transform: capitalize;
    padding: 20px 0;
    font-size: 18px;
}
.sustainability-01 {
    margin-bottom: 90px;
}

/*.zplc .cont li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 15px solid #196a59;
    border-bottom: 8px solid transparent;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
}*/

.customized-1 li {
    text-align: center;
}

.customized-1 li img {
     border-radius: 120px;
    margin-bottom: 25px;
    border: 10px solid #eee;
}
.customized-1 li .text {
    font-size: 17px;
}
.customized-1 {
    text-align: center;
    padding: 100px 0;
}


.customized-1.huishou li img {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 25px;
}
.customized-1.huishou li {
    padding:0 15px;
}

.customized-1.huishou {
    padding: 100px 0 100px;
    background: #eee;
}

.inner-banner.huanbao p {
    COLOR: #FFF;
    FONT-SIZE: 17PX;
    WIDTH: 50%;
    MARGIN-TOP: 20PX;
}

.inner-page.factory-page-1.honor .factoty-list li .box {
    border: 1px solid #eee;
}


.history-page {
    padding: 110px 0;
    overflow: hidden
}

.history-page .historySideBar .historySideLeft {
    width: 40%;
    padding: 0 8%
}

.history-page .historySideBar .historySideLeft span.h3 {
    font-size: 30px;
    padding: 1.83333333em 15%;
    display: block;
    background: var(--color);
    background-size: cover;
    line-height: 1.2;
    color: #fff;
    position: relative
}

/*.history-page .historySideBar .historySideLeft span.h3:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    background: url(../images/historySideLeft-3.jpg) center center no-repeat;
    background-size: cover
}*/

.history-page .historySideBar .historySideLeft span.h3:after {
    content: '';
    width: 1.66666667em;
    height: .13333333em;
    display: block;
    margin-top: .5em;
    background-color: #fff
}

.history-page .historySideBar .historySideLeft .img {
    padding: 10%;
    height: 480px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: url(../images/historySideLeft-2.jpg) center center no-repeat;
    background-size: cover;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    color: #fff
}

.history-page .historySideBar .historySideLeft .img span.h6 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    display: block
}

.history-page .historySideBar .historySideLeft .img .text {
    font-size: 16px;
    margin-top: .5em
}

.history-page .historySideBar .historySideRight {
    width: 60%
}

.history-page .historySideBar .historySideRight .list {
    position: relative
}

.history-page .historySideBar .historySideRight .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.history-page .historySideBar .historySideRight .list ul li time {
    font-size: 24px;
    color: var(--color);
    line-height: 1.2;
}

.history-page .historySideBar .historySideRight .list ul li .slide {
    padding-left: 30px;
    margin-left: 30px;
    padding-bottom: 30px;
    position: relative
}

.history-page .historySideBar .historySideRight .list ul li .slide:before {
    content: '';
    width: 1px;
    height: 140%;
    position: absolute;
    left: 0;
    top: -20%;
    background: #e5e5e5
}

.history-page .historySideBar .historySideRight .list ul li .slide:after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid #e5e5e5;
    display: block;
    position: absolute;
    left: -7px;
    top: 5px;
    background: #fff;
    z-index: 1
}

.history-page .historySideBar .historySideRight .list ul li .slide .text {
    font-size: 16px;
    color: #7e7f81;
    padding-left: 2em;
    padding-bottom: 20px;
    position: relative
}

.history-page .historySideBar .historySideRight .list ul li .slide .text i.fa {
    position: absolute;
    left: 0;
    top: 3px;
    color: #202778;
    font-size: 120%
}
#header .box .right img {
    margin-bottom: 15px;
}
#header .box .right p {
    font-size: 17px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li ul li a {
    font-weight: 400;
}
.slick-track {
    margin-left: 0;
}
.prodet-page .prodet-1 .right .item {
    margin-bottom: 35px;
}

#index-body .i-advantage ul li:hover .box {
    background: var(--color);
        transition: all .5s ease;
}
#index-body .i-advantage ul li:hover .box img {
    filter: drop-shadow(0 108px #fff);
    position: relative;
    top: -108px;
}

#index-body .i-advantage ul li .box{
      overflow: hidden;
}
#index-body .i-advantage ul li:hover .box .num {
    color: rgba(255,255,255,.1);
}

#index-body .i-advantage ul li:hover .box h4 {
    color: #fff;
    border-bottom: 1px solid #fff;
}
#index-body .i-advantage ul li:hover .box .des {
    color: #fff;
}






/*设计-end*/

@media screen and (max-width:1000px){
  .inner-banner.huanbao{
    height: 500px;
    padding-top: 50px;
  }
  .history-page .historySideBar .historySideLeft{
    display: none;
  }
  .history-page .historySideBar .historySideRight{
    width: 100%;
  }
}
@media screen and (max-width:700px){
  .inner-banner.huanbao p{
    width: 100%;
  }
  .inner-banner.huanbao{
    height: 360px;
  }
  .sustainability-01 .top h2{
    font-size: 30px;
  }
  .sustainability-01 .top{
    width: 100%;
  }
}
@media screen and (max-width:500px){
  .inner-banner.huanbao{
    padding-top: 10px;
  }
  .application-14 .box{
    padding: 0;
  }
  .sustainability-01{
    margin-bottom: 20px;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide{
    margin-left: 20px;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide{
    padding-left: 20px;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide .text{
    padding-left: 1em;
  }
}


@-webkit-keyframes rounds {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-moz-keyframes rounds {
  from {
    -moz-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -moz-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes rounds {
  from {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
.hoverimg{
  position: relative;
display: block;
}
.hoverimg img{
  /*transition: 0.3s all;*/
}
.hoverimg img.decs{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
}
.hoverimg img.dec1{
  position: relative;
  opacity: 1;
}
.hoverimg:hover img.dec1{
  
  opacity: 0;
}
.hoverimg:hover img.decs{
  
  opacity: 1
}

/*设计*/
.about-page .about-1 .left .text p {
    margin-bottom: 15px;
}

.init-8 {
  padding: 80px 0 120px;
  position: relative;
  text-align: center;
}
.init-8:before {
  content: '';
  width: 100%;
  height: 200%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/init-8-bg.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
.init-8 span.tag {
     -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    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;
    line-height: 1;
}
.init-8 span.h2 {
    margin-bottom: 1em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    font-size: 34px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.3em;
    line-height: 1;
}
.init-8 .list {
  font-size: 10px;
  padding: 0 6em;
}
.init-8 .list .slick-list {
  overflow: unset;
}
.init-8 .list .slick-slide {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.init-8 .list .slick-slide.slick-active {
  opacity: 1;
}
.init-8 .list ul {
  margin-bottom: 2.5em;
}
.init-8 .list ul:last-child {
  margin-bottom: 0;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.init-8 .list ul:last-child img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.init-8 .list ul li {
  padding: 0 2.5em;
  font-size: inherit;
}
.init-8 .list ul li a {
  display: block;
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.init-8 .list ul li a img {
  width: 100%;
      background: #fff;
}




@media screen and (max-width: 1250px) {
  .init-8 .list {
    font-size: 6px;
  }

  }

@media screen and (max-width: 1000px) {
  .init-8 .list ul:last-child {
    max-width: none;
  }
  .init-8 .list {
    padding: 0;
  }
  .init-8 {
    padding: 60px 0;
  }
  }

  
/*3-27 add header css*/
.t_1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.flex_cont {
    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
}

.flex_a_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.flex_j_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}
#header .ui.menu .menu-box ul.menu>li.menu-about {
    position: unset!important;
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    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);
    transform-origin: top;
    opacity: 0;
    display: block;
}

#header .ui.menu .menu-box ul.menu>li.menu-about:hover .menu-content {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .container {
    background: #fff;
    padding: 40px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    background: #fff;
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .one {
    width: 45%;
    padding: 0 15px;
    text-align: left;
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .one .aboutTitle {
    font-size: 32px;
    color: #111;
    line-height: 40px;
    margin-bottom: 15px
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .one .aboutDesc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    width: 80%;
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .one .aboutMore {
    font-size: 14px;
    line-height: initial;
        color: #000;
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .one .aboutMore:hover {
    color: var(--base-color)
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .two {
    width: 25%;
    padding: 0 15px
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .two .link {
    margin-top: 16px
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .two .link:first-child {
    margin-top: 0
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .two .link a {
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: inline-block;
    position: relative;
    color: #000;
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .two .link a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--base-color);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .two .link a:hover:before {
    width: 100%
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .three {
    width: 30%;
    padding: 0 15px
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .three img {
    width: 100%
}

#header .ui.menu .menu-box ul.menu>li.menu-about .menu-content .three .shipingbiaoti {
    margin-top: 10px;
    font-size: 16px;
    text-align: right;
    color: #000;
}

#header .ui.menu .menu-box ul.menu>li.menu-product {
    position: unset!important;
    
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content {
    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);
    transform-origin: top;
    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
 
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08)
}

#header .ui.menu .menu-box ul.menu>li.menu-product:hover .menu-content {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1;
    display: block;
    
}
#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .container{
  padding: 40px;
  background: #fff;
  text-align: left;
}
#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left {
    width: 70%;
    position: relative;
    border-right: 1px solid #ccc;
    justify-content: flex-start;
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product {
    font-size: 14px;
    width: 25%;
    padding-right: 20px
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product .child-title {
     font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 10px;
    color: #000;
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product .child-title:hover {
    color: var(--base-color)
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product .child-img {
    width: auto
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product ul {
    font-size: 16px
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product ul li {
    margin-top: 10px;
    color: #000;
    
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .left .left-nav-product ul li a:hover {
    color: var(--base-color)
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .right {
    width: 30%;
    padding:0 0px 0px 25px;
    font-size: 14px;
    top: 0;
    color: #333
}

#header .ui.menu .menu-box ul.menu>li.menu-product .menu-content .right ul li {
width: 100%;
    padding: 10px 0;
    font-size: 17px;
}

#header .ui.menu .menu-box ul.menu > li:hover .menu-content {
  -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 .ui.menu .menu-box ul.menu>li.menu-product .menu-content .right .child-title {
    font-size: 24px;
}


.gxs-3 .content .ui.container .left ul.txtlist li .h5 {
    font-weight: 500;
        margin-bottom: 15px;
}

.gxs-4 .ui.container .right .maintext ul li .text .content p:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background: #fff;
    left: 0;
    top: 8px;
        border-radius: 45px;
}
.gxs-4 .ui.container .right .maintext ul li .text .content p {
    position: relative;
    padding-left: 20px;
}
.prodet-page .prodet-2 .list ul li .content table tbody td {
    border: 1px solid #eee;
    padding: 15px 10px;
        color: #000;
}
.prodet-page .prodet-2 .list ul li .content table tr:nth-child(1) td {
    color: #fff;
}
table{
      border: 0;
}

.prodet-page .prodet-2 .list ul li .content table tr:nth-child(1) {
    background: var(--color);
    color: #fff;
}




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

.inner-banner{
padding: 200px 0 150px;
}

  }



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

.inner-banner{
    padding: 170px 0 120px;
}

  }

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

.inner-banner{
    padding: 110px 0 80px;
}

  }


  
@-webkit-keyframes circle-loading-right {
  0% {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circle-loading-right {
  0% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circle-loading-right {
  0% {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes circle-loading-left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circle-loading-left {
  0%,
  50% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circle-loading-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);
  }
}
