@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'KronaOne';
  src: url(../fonts/KronaOne-Regular.ttf) format('truetype'), url(../fonts/KronaOne-Regular.eot) format('eot'), url(../fonts/KronaOne-Regular.woff) format('woff'), url(../fonts/KronaOne-Regular.woff2) format('woff2');
}
:root {
  --font: 'KronaOne';
}

.colorPrimary {
  color: #d8f32c;
}
.font-w-300 {
  font-weight: 300;
}
.font-w-400 {
  font-weight: 400;
}
.font-w-500 {
  font-family: var(--font);
}

#ewm{
  float: right;
  width: 100px;
  border: 5px solid white;
}

body {
  font-family: "Poppins";
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1570px;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header.fixed {
  background-color: black;
}
#header.inner {
  background-color: black;
}
#header .h-top {
  line-height: 36px;
  height: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#header .h-top ul li {
  margin-left: 20px;
  display: inline-block;
  vertical-align: top;
  color: white;
  opacity: .5;
}
#header .h-top ul li i {
  display: inline-block;
  vertical-align: top;
}
#header .h-top ul li i img {
  vertical-align: middle;
}
#header .h-top ul li span {
  display: inline-block;
  vertical-align: top;
  line-height: inherit;
}
#header .h-top .social-links {
  min-width: 180px;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
#header .h-top .social-links a {
  font-size: 14px;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  color: black;
  background-color: white;
  font-family: FontAwesome;
}
#header .h-top .social-links a + a {
  margin-left: 15px;
}
#header .nav {
  height: 80px;
  line-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
  width: 200px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
#header .nav .ui.menu .logo img {
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 45px;
  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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 30%;
  width: 23px;
  height: 23px;
  background-color: #d8f32c;
  opacity: 0;
  border-radius: 0 10px 0 10px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: #d8f32c;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::before {
  opacity: .3;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #d8f32c;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .baseBtn {
  line-height: 1;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: auto;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .h-search img {
  vertical-align: middle;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 10%;
}
#banner ul.slick-dots li {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin: 0 3px;
  border-radius: 100%;
  border: 1px solid #d8f32c;
  background-color: transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  background-color: #d8f32c;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: 50%;
}
table td:first-child {
  color: #2d2d2d;
}
#news_list ._table ._name{
  min-height: 4.6rem;
  line-height: 1.8;
}
table td:last-child {
  color: #666;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  line-height: 28px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 100px;
  }
  #nav-height{
    display: none;
  }

  #ewm{
    display: none;
  }
  .haha{
    display: none;
  }
}
.hover-language .zhuyu {
  color: #FFFFFF;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.hover-language ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #d8f32c;
}
.hover-language:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .content .left{
  max-width: 720px;
}
#banner h4 {
  color: white;
  line-height: 1.8;
}
#banner h2 {
  margin-bottom: 30px;
  font-size: 65px;
  line-height: 1.4;
  color: white;
  font-family: var(--font);
}
#banner h2 span {
  color: #d8f32c;
}
#banner p {
  margin-bottom: 70px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}
#banner p::before {
  content: "";
  position: absolute;
  width: 2px;
  top: 5px;
  bottom: 5px;
  left: -1px;
  background-color: #d8f32c;
}
#index-body {
  overflow: hidden;
}
.baseBtn.type2 i {
  background-color: #d8f32c;
}
.baseBtn.type2 span {
  background-color: #f2f2f2;
}
.baseBtn.type2:hover span {
  background-color: #d8f32c;
}
.baseBtn > a {
  display: inline-block;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
}
.baseBtn > a:hover i {
  color: #d8f32c;
  background-color: black;
}
.baseBtn i {
  font-size: 30px;
  display: inline-block;
  width: 60px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: white;
  vertical-align: top;
  font-family: none;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBtn span {
  display: inline-block;
  width: 176px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: #d8f32c;
  vertical-align: top;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBtn.on > a i {
  color: #d8f32c;
  background-color: black;
}
.baseTit {
  font-size: 65px;
  font-family: var(--font);
}
.our-about {
  padding: 140px 0;
}
.our-about .cms {
  font-size: 50px;
  font-family: var(--font);
}
.our-about .desc {
  color: #5e5e5e;
}
.shouye {
  color: #5e5e5e;
  font-size: 18px;
  line-height: 1.5;
}
.shouye h1{
  display: inline;
  color: #5e5e5e;
}
.our-about ul {
  margin-top: 80px;
}
.our-about ul li:nth-child(2) .num {
  color: #d8f32c;
}
.our-about ul li .num {
  font-size: 50px;
  line-height: 1;
  font-family: var(--font);
}
.our-about ul li .num sup {
  vertical-align: top;
  font-size: 16px;
  font-family: 'Poppins';
}
.our-about ul li p {
  color: #5e5e5e;
  line-height: 2;
}
.our-about .right{
  text-align: right;
}
.our-about .right > div{
  display: inline-block;
}
.our-about .right img{
  border-radius: 0px 80px 0px 0px;
}
.play-btn {
    font-size: 20px;
    width: 3em;
    height: 3em;
    border-radius: 100%;
    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;
    color: #fff;
    background-color: #d8f32c;
    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%);
    z-index: 1;
    cursor: pointer;
}

.play-btn i {
    border-left: .6em solid #fff;
    border-top: .5em solid transparent;
    border-bottom: .5em solid transparent
}

.play-btn:after,
.play-btn:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    z-index: -1;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite
}

.play-btn:before {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s
}
@-webkit-keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    10% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    80% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: .2
    }

    to {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@-moz-keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    10% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    80% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: .2
    }

    to {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    10% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    80% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: .2
    }

    to {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}
.i-category {
  background-color: #0f0f0f;
  padding: 90px 0;
}
.i-category .baseTit {
  color: #d8f32c;
}
.i-category .list ul {
  margin: -25px;
}
.i-category .list ul li {
  padding: 25px;
}
.i-category .list .box {
  background-color: #1b1b1b;
  border: 1px solid #3d3d3d;
  border-radius: 15px;
}
.i-category .list .box .name {
  color: white;
  font-size: 22px;
  line-height: 1.5;
  min-height: 3em;
  font-family: var(--font);
  padding-right: 55px;
  position: relative;
  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-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-category .list .box .name > div {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  background-color: #3d3d3d;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-category .list .box .name > div svg {
  vertical-align: middle;
}
.i-category .list .box hr {
  margin: 0;
  border: none;
  border-bottom: 1px solid white;
}
.i-category .list .box .desc {
  color: white;
  line-height: 2;
   overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.i-category .list .box .img img {
  border-radius: 15px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

.i-category .list .box .img img.on{
  opacity: 0;
  left: 0;
  top: 0;
}

/*.i-category .list .box:hover .img img.def{
  opacity: 0;
}*/

/*.i-category .list .box:hover .img img.on{
  opacity: 1;
}*/

.i-category .list .box .img .arrow {
  width: 95px;
  height: 95px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  left: 0;
  bottom: 0;
  background-color: #d8f32c;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-category .list .box .img .arrow svg {
  vertical-align: middle;
}
.i-category .list .box:hover .name {
  color: #d8f32c;
}
.i-category .list .box:hover .name > div {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.i-category .list .box:hover .img img {
  border-radius: 15px 15px 15px 134px;
}
.i-category .list .box:hover .img .arrow {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.i-category .dots .slick-dots {
  margin-top: 60px;
}
.i-category .dots .slick-dots li {
  margin: 0 9px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #d8f32c;
  border-radius: 50%;
}
.i-category .dots .slick-dots li.slick-active {
  background-color: #d8f32c;
}
.i-category .dots .slick-dots li button {
  display: none;
}
.our-product {
  padding: 110px 0;
}
.our-product .list ul {
  margin: -23px;
}
.our-product .list ul li {
  padding: 23px;
}
.our-product .list .box .img {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid transparent;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  border: 1px solid #0000001a;
}
.our-product .list .box .name {
  color: #767676;
  font-family: var(--font);
  line-height: 1.8;
  min-height: 3em;
  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;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list .box .name .arrow {
  z-index: -1;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  right: 0;
  bottom: 0;
  background-color: #d8f32c;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list .box .name .arrow svg {
  vertical-align: middle;
}
.our-product .list .box:hover .img {
  border-color: #d8f32c;
}
.our-product .list .box:hover .name {
  color: black;
}
.our-product .list .box:hover .name .arrow {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.our-product .dots .slick-dots {
  margin-top: 60px;
}
.our-product .dots .slick-dots li {
  margin: 0 9px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
}
.our-product .dots .slick-dots li.slick-active {
  background-color: #d8f32c;
  border-color: #d8f32c;
}
.our-product .dots .slick-dots li button {
  display: none;
}
.i-contact {
  background-color: #d6f12c;
  padding: 100px 0 250px;
}
.i-contact > img {
  position: absolute;
  right: -50px;
  bottom: 15%;
}
.i-contact .form {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background: url(../images/form-bg.jpg);
}
.i-contact .form ul {
  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;
}
.i-contact .form ul li {
  position: relative;
}
.i-contact .form ul li::before {
  content: "";
  position: absolute;
  top: 35%;
  bottom: 35%;
  left: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
.i-contact .form ul li:first-child::before,
.i-contact .form ul li:last-child::before {
  display: none;
}
.i-contact .form ul li:last-child {
  width: 90px;
}
.i-contact .form ul li:not(:last-child) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.i-contact .form ul li:nth-child(4) {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.i-contact .form input {
  font-size: 18px;
  line-height: 32px;
  width: 100%;
  height: 75px;
  padding: 0 20px;
  border: none;
  background-color: transparent;
}
.i-contact .form button {
  width: 100%;
  border: none;
  background-color: transparent;
}
.i-advantage {
  margin-top: -150px;
}
.i-advantage .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  background-color: black;
  border-radius: 20px;
  overflow: hidden;
}
.i-advantage .left {
  width: 45%;
}
.i-advantage .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.i-advantage .right {
  width: 55%;
  padding: 60px;
}
.i-advantage ul {
  margin: -25px;
}
.i-advantage ul li {
  padding: 25px;
}
.i-advantage ul li i {
  min-height: 65px;
}
.i-advantage ul li .name {
  font-family: var(--font);
  line-height: 36px;
}
.our-news {
  padding: 100px 0 140px;
}
.our-news .list ul li {
  padding: 30px 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;
  border-bottom: 1px solid #cccccc;
}
.our-news .list ul li .date {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 60px;
  background-color: #f2f2f2;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .list ul li .date time {
  display: inline-block;
  vertical-align: middle;
  line-height: 2;
}
.our-news .list ul li .img {
  margin-left: 70px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 260px;
}
.our-news .list ul li .name {
  color: #767676;
  font-family: var(--font);
  max-width: 460px;
  margin-left: 40px;
  line-height: 1.8;
  margin-right: auto;
}
.our-news .list ul li .name a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.our-news .list ul li .name a:hover {
  background-size: 100% 1px;
  color: black;
}
.our-news .list ul li:hover .date {
  background-color: #d8f32c;
}
#footer {
  color: white;
  background-color: #0f0f0f;
}
#footer .foot-top .top {
  padding: 80px 0 50px;
}
#footer .foot-top .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#footer .foot-top .bottom .left {
  width: 65%;
}
#footer .foot-top .bottom .left .imgs {
  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;
}
#footer .foot-top .bottom .right {
  width: 35%;
  padding-left: 80px;
}
#footer .foot-top .social-links a {
  display: inline-block;
  width: 29px;
  height: 29px;
  line-height: 29px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  color: black;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: FontAwesome;
}
#footer .foot-top .social-links a + a {
  margin-left: 20px;
}
#footer .foot-top .social-links a:hover {
  background-color: #d8f32c;
}
#footer .foot-top .foot-content {
  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;
}
#footer .foot-top .foot-content .foot-block {
  max-width: 350px;
}
#footer .foot-top .foot-content .foot-block #ewm{
  bottom: 0;
  right: 0;
  width: 100px;
}
#footer .foot-top .foot-content .foot-block h4 {
  font-family: var(--font);
  margin-bottom: 30px;
  line-height: 36px;
}
#footer .foot-top .foot-content .foot-block ul li{
  margin-bottom: 4px;
}
#footer .foot-top .foot-content .foot-block ul li:last-child{
  margin-bottom: 0;
}
#footer .foot-top .foot-content .foot-block.four ul li {
  line-height: 2;
  margin-bottom: 7px;
}
#footer .foot-top .foot-content .foot-block.four ul li:last-child{
  margin-bottom: 0;
}
#footer .foot-top .foot-content .foot-block ul li a:hover,
#footer .foot-top .foot-content .foot-block ul li p:hover {
  opacity: 1;
  color: #d8f32c;
}
#footer .foot-top .foot-content .foot-block ul li p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .foot-top .foot-content .foot-block.four ul li{
  line-height: 1.5;
}
.pt-19{
  padding-top: 19px;
}
.pb-14{
  padding-bottom: 14px;
}
#footer .foot-bottom {
  background-color: rgba(255, 255, 255, 0.05);
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  display: inline-block;
  vertical-align: middle;
}
.huhu{
  margin-left: 10px;
}
#footer .foot-bottom img {
  max-height: 16px;
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 40px;
  }
  #banner h2 {
    font-size: 50px;
  }
  .our-about .cms {
    font-size: 40px;
  }
  .baseTit {
    font-size: 50px;
  }
  .huhu{
    display: none!important;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
    font-size: 16px;
  }
  .hover-language .zhuyu {
    font-size: 16px;
  }
  .font-20 {
    font-size: 18px;
  }
  #banner h2 {
    font-size: 40px;
  }
  #banner p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .our-about .cms {
    font-size: 30px;
  }
  .font-18 {
    font-size: 16px!important;
    line-height: 30px!important;
  }
  .our-about ul li .num {
    font-size: 36px;
  }
  .our-about ul {
    margin-top: 40px;
  }
  .baseTit {
    font-size: 40px;
  }
  .i-category .list .box .name {
    font-size: 18px;
  }
  .i-category .list ul {
    margin: -15px;
  }
  .i-category .list ul li {
    padding: 15px;
  }
  .our-product .list ul {
    margin: -15px;
  }
  .our-product .list ul li {
    padding: 15px;
  }
  .i-contact .form input {
    font-size: 16px;
  }
  .i-advantage ul {
    margin: -15px;
  }
  .i-advantage ul li {
    padding: 15px;
  }
  .i-advantage .right {
    padding: 40px;
  }
  .font-22 {
    font-size: 20px;
  }
  .our-news .list ul li .img {
    max-width: 200px;
    margin-left: 40px;
  }
  .our-news .list ul li .name {
    max-width: 400px;
  }
  .our-news .list ul li .date {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  #footer .foot-top .foot-content .foot-block {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  .baseBtn i {
    width: 50px;
    height: 45px;
    line-height: 45px;
  }
  .baseBtn span {
    width: auto;
    padding: 0 30px;
    height: 45px;
    line-height: 45px;
  }
  #header .nav .ui.menu .baseBtn {
    display: none;
  }
  #header .nav .ui.menu .h-search {
    margin-right: 0;
  }
  .font-20 {
    font-size: 16px;
    line-height: 30px;
  }
  #banner h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  #banner p {
    margin-bottom: 15px;
  }
  #header .nav {
    height: 60px;
    line-height: 60px;
  }
  #header .nav .ui.menu .logo {
    width: 150px;
    text-align: center;
  }
  #header .nav .ui.menu .logo img {
    width: 65px;
  }
  .baseTit {
    font-size: 30px;
  }
  .i-category .fr {
    display: none;
  }
  .i-category .list {
    padding-top: 0;
  }
  .our-news .list ul li .name {
    max-width: 350px;
  }
  .font-22 {
    font-size: 18px;
  }
  #footer .foot-top .foot-content .foot-block.two {
    display: none;
  }
  #footer .foot-top .bottom {
    display: none;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  .our-about .left {
    width: 100%!important;
  }
  .our-about .right {
    width: 100%!important;
    display: none;
  }
  .our-about {
    padding: 60px 0;
  }
  .our-about .cms {
    font-size: 24px;
  }
  .i-category {
    padding: 60px 0;
  }
  .our-product {
    padding: 60px 0;
  }
  .i-contact > img {
    display: none;
  }
  .i-contact .form {
    padding: 30px;
  }
  .i-contact .form input {
    height: 60px;
    border-bottom: 1px solid black;
  }
  .i-contact .form ul {
    display: block;
    margin: -15px;
  }
  .i-contact .form ul li {
    width: 50%;
    padding: 15px;
  }
  .i-contact .form ul li:nth-child(3)::before {
    display: none;
  }
  .i-contact .form ul li:last-child {
    width: 100%;
  }
  .i-advantage .box {
    display: block;
  }
  .i-advantage .left {
    width: 100%;
  }
  .i-advantage .right {
    width: 100%;
  }
  .our-news .list ul li .baseBtn {
    display: none;
  }
  .our-news .list ul li .date {
    display: none;
  }
  .our-news .list ul li .img {
    margin-left: 0;
  }
  .our-news {
    padding: 60px 0;
  }
  #footer .foot-top .foot-content .foot-block.three {
    display: none;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  .font-20 {
    font-size: 16px!important;
    line-height: 30px!important;
  }
  #banner h2 br {
    display: none;
  }
  #banner h2 {
    font-size: 24px;
  }
  #banner p {
    font-size: 14px;
  }
  #banner p br {
    display: none;
  }
  .our-about .cms {
    font-size: 20px;
  }
  .font-18 {
    font-size: 16px;
    line-height: 30px!important;
  }
  .our-about ul {
    margin: -15px;
    padding-top: 40px;
  }
  .our-about ul li {
    padding: 15px;
  }
  .our-about ul li .num {
    font-size: 24px;
  }
  .baseTit {
    font-size: 24px;
  }
  .i-category .list .box {
    padding: 15px;
  }
  .i-contact {
    padding: 60px 0;
  }
  .i-advantage {
    display: none;
  }
  .i-contact .form input {
    font-size: 14px;
  }
  .i-contact .form input {
    height: 40px;
  }
  .font-22 {
    font-size: 16px;
  }
  .our-news .list ul li .name {
    margin-left: 20px;
  }
  #footer .foot-top .foot-content {
    display: block;
  }
  #footer .foot-top .foot-content .foot-block {
    max-width: 100%;
  }
  #footer .foot-top .top {
    padding: 40px 0;
  }
  .font-16 {
    font-size: 16px!important;
    line-height: 30px!important;
  }
  #footer .foot-top .foot-content .foot-block.one {
    margin-bottom: 40px;
  }
  #footer .foot-bottom img {
    max-height: 14px;
  }
  .our-about ul li .num sup {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  #banner p {
    display: none;
  }
  #banner h2 {
    font-size: 18px;
    line-height: 32px;
  }
  .baseBtn span {
    padding: 0 15px;
  }
  .our-about .cms {
    font-size: 16px;
    line-height: 30px;
  }
  .baseTit {
    font-size: 18px;
    line-height: 32px;
  }
  .i-category .list .box .name {
    font-size: 16px;
  }
  .i-category .list .box .name > div {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  .i-category .dots {
    display: none;
  }
  .our-product .dots {
    display: none;
  }
  .i-contact .form {
    padding: 20px;
  }
  .i-contact .form ul {
    margin: -10px;
  }
  .i-contact .form ul li {
    width: 100%;
    padding: 10px;
  }
  .i-contact .form ul li::before {
    display: none;
  }
  .i-contact .form input {
    padding: 0 10px;
  }
  .our-news .list ul li {
    display: block;
  }
  .our-news .list ul li .img {
    max-width: 100%;
  }
  .our-news .list ul li .img img {
    width: 100%;
  }
  .our-news .list ul li .name {
    margin-left: 0;
    margin-top: 20px;
  }
  .font-22 {
    font-size: 14px;
    line-height: 28px!important;
  }
  #banner li {
    height: 300px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}



.tit1 {
  font-size: 45px;
  font-family: var(--font);
  margin-bottom: 25px;
}
.tit1.line::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: currentcolor;
}
.tit1.txt-center.line::after {
  margin: auto;
}

.inner-banner {
  height: 270px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
}
.inner-banner h2 {
  color: #FFFFFF;
  font-family: var(--font);
}
.inner-banner .mbx {
  color: #FFFFFF;
  font-style: italic;
}
.contact-page .contact-1 {
  padding: 80px 0;
}
.contact-page .contact-1 i {
  display: block;
  height: 70px;
  line-height: 70px;
}
.contact-page .contact-1 i img {
  vertical-align: middle;
}
.contact-page .contact-1 p {
  color: #848484;
  line-height: 2;
  font-size: 16px;
}
.contact-page .contact-1 .box {
  /*max-width: 960px;*/
  margin: auto;
}
.contact-page .contact-1 ul {
  margin: -10px;
}
.contact-page .contact-1 ul li {
  /*padding: 10px;*/
}
.contact-page .contact-2 {
  background-color: #fafafa;
}
.contact-page .contact-2 .left {
  vertical-align: middle;
  padding-left: 10%;
  padding-right: 7%;
}
.contact-page .contact-2 .right {
  vertical-align: middle;
}
/*.contact-page .contact-2 .right .img {
  height: 555px;
}*/
.contact-page .contact-2 .right .img img {
  width: 100%;
}
.contact-page .contact-2 .form input {
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #cfcfcf;
}
.contact-page .contact-2 .form button {
  margin-top: 20px;
  width: 170px;
  height: 40px;
  color: #6e6e6e;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #6d6d6d;
  background-color: transparent;
}
@media screen and (max-width: 1200px) {
  .contact-page .contact-2 .left {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 {
    padding: 100px 0;
  }

  .contact-page .contact-2 .left {
    width: 100%;
    padding: 60px 15px;
  }
  .contact-page .contact-2 .right {
    width: 100%;
  }

  .tit1{
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  
  .contact-page .contact-2 .right .img {
    height: auto;
  }
}
.about-page .about-1 {
  padding: 90px 0;
}
.about-page .about-1 .box {
  padding: 60px 100px;
  background-color: #f9f9f9;
}
.about-page .about-1 .text {
  line-height: 2;
}
.about-page .about-1 .number {
  margin-top: 50px;
}
.about-page .about-1 .number ul {
  margin: 0 -100px;
}
.about-page .about-1 .number ul li {
  padding: 15px;
}
.about-page .about-1 .number ul li + li {
  border-left: 1px solid #c9cecd;
}
.about-page .about-2 {
  /*background-color: #f9f9f9;*/
  border-radius: 40px;
  overflow: hidden;
}
.about-page .about-2 .top {
  height: 460px;
  background: url(/l-jie/2025/08/01/inner-about-2-img.jpg) no-repeat center;
  background-size: cover;
  padding-top: 200px;
}
.about-page .about-2 .top p {
  line-height: 2;
  color: #FFFFFF;
  max-width: 800px;
  margin: auto;
}
.about-page .about-2 .bottom .list {
  margin-top: 50px;
}
.about-page .about-2 .bottom .list ul {
  margin: -40px;
}
.about-page .about-2 .bottom .list ul li {
  padding: 40px;
}
.about-page .about-2 .bottom .list i {
  width: 58px;
  height: 58px;
  line-height: 48px;
  text-align: center;
  border-radius: 2px;
  /*background-color: #FFFFFF;*/
}
.about-page .about-2 .bottom .list i img {
  vertical-align: middle;
}
.about-page .about-3 {
  padding: 100px 0;
}
.about-page .about-3 .left ul li + li {
  margin-top: 30px;
}
.about-page .about-4 {
  background: url(../images/about-4-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0 120px;
  margin-top: 60px;
}
.about-page .about-4 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1560px;
  margin: auto;
  overflow: hidden;
}
.about-page .about-4 .box .list {
  width: 100%;
  height: 456px;
  overflow-y: auto;
  /*解决ios上滑动不流畅*/
  -webkit-overflow-scrolling: touch;
  padding-right: 25px;
  margin-right: -25px;
}
.about-page .about-4 .box ul::after {
  content: '';
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
}
.about-page .about-4 .box ul li i {
  width: 12px;
  height: 12px;
  background: #d8f32c;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  top: 17px;
  z-index: 1;
}
.about-page .about-4 .box ul li i::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(194, 157, 99, 0.15);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.about-page .about-4 .box ul li .left {
  padding-right: 45px;
  text-align: right;
  position: relative;
}
.about-page .about-4 .box ul li .left h5 {
  color: #FFFFFF;
  margin-bottom: 7px;
}
.about-page .about-4 .box ul li .left .con {
  min-height: 63px;
  color: #FFFFFF;
  line-height: 2;
}
.about-page .about-4 .box ul li:nth-child(even) .left {
  left: 50%;
  text-align: left;
  padding-right: 0;
  padding-left: 45px;
}
.about-page .about-5 {
  padding: 80px 0;
}
.about-page .about-5 .box {
  max-width: 1140px;
  margin: auto;
}
.about-page .about-5 .list ul {
  margin: -2px;
}
.about-page .about-5 .list ul li {
  padding: 2px;
}
.about-page .about-6 {
  padding: 80px 0;
  background-color: #f9f9f9;
}
.about-page .about-61 {
  background-color: white! important;;
}
.about-page .about-6 .left {
  width: 35%;
  vertical-align: middle;
      line-height: 2;
}
h4.font-18.font-w-400.mt-10 {
    line-height: 2;
}
.about-page .about-6 .right {
  padding: 50px 80px;
  background: url(../images/about-6-bg.png) no-repeat center bottom;
  background-size: 100% auto;
  width: 65%;
  vertical-align: middle;
}
.about-page .about-6 .right ul{
  margin: -10px;
}
.about-page .about-6 .right ul li{
  padding: 10px;
}

.about-page .about-7 {
  padding: 100px 0;
}
.about-page .about-7 .list {
  overflow: hidden;
}
.about-page .about-7 .list ul {
  margin: -15px;
}
.about-page .about-7 .list ul li {
  padding: 15px;
}
.about-page .about-7 .list .slick-arrow {
  position: absolute;
  z-index: 1;
  top: -webkit-calc(50% - 25px);
  top: -moz-calc(50% - 25px);
  top: calc(50% - 25px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
  width: 28px;
  height: 56px;
  border: none;
  background-color: #FFFFFF;
}
.about-page .about-7 .list .slick-arrow.slick-prev {
  left: 115px;
}
.about-page .about-7 .list .slick-arrow.slick-next {
  right: 115px;
}
@media screen and (max-width: 1200px) {
  .about-page .about-1 .box {
    padding: 60px;
  }
  .about-page .about-1 .number ul {
    margin: 0 -60px;
  }
  .about-page .about-2 .top {
    height: 400px;
    padding-top: 150px;
  }
  .about-page .about-2 .bottom .list ul {
    margin: -15px;
  }
  .about-page .about-2 .bottom .list ul li {
    padding: 15px;
  }
  .about-page .about-3 .left ul li + li {
    margin-top: 15px;
  }
  .about-page .about-3 .left {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-1 {
    padding: 60px 0;
  }
  .about-page .about-1 .box {
    padding: 30px 15px;
  }
  .about-page .about-1 .number ul {
    margin: 0 -15px;
  }
  .about-page .about-1 .number {
    margin-top: 30px;
  }
  .about-page .about-2 .top {
    height: 300px;
    padding-top: 100px;
  }
  .about-page .about-3 {
    padding: 60px 0;
  }
  .about-page .about-3 .left {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .about-page .about-3 .right {
    width: 100%;
  }
  .about-page .about-4 {
    padding: 60px 0;
  }
  .about-page .about-5 {
    padding: 60px 0;
  }
  .about-page .about-6 {
    padding: 60px 0;
  }
  .about-page .about-6 .left {
    width: 100%;
  }
  .about-page .about-6 .right {
    width: 100%;
  }
  .about-page .about-7 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-1 .number ul li {
    border: none!important;
  }
  .about-page .about-2 .top {
    height: auto;
    padding: 100px 15px;
  }
  .about-page .about-4 .box ul {
    padding-left: 40px;
  }
  .about-page .about-4 .box ul li {
    padding-bottom: 30px;
  }
  .about-page .about-4 .box ul li .right,
  .about-page .about-4 .box ul li .left {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 !important;
  }
  .about-page .about-4 .box ul li i {
    left: -18px;
    top: 5px;
  }
  .about-page .about-4 .box ul:after {
    left: 22px;
    top: 5px;
  }
  .about-page .about-6 .right {
    padding: 50px;
  }
}
@media screen and (max-width: 500px) {
  .about-page .about-6 .right {
    padding: 20px;
  }
  .about-page .about-7 .list .slick-arrow.slick-prev {
    left: 30px;
  }
  .about-page .about-7 .list .slick-arrow.slick-next {
    right: 30px;
  }
}
.faq-page {
  padding: 90px 0 40px;
}
.faq-page .box ul li {
  border: 1px solid #dfe1e6;
  border-radius: 5px;
  padding: 20px 90px;
  background-image: url("../images/icon-lt.png");
  background-position: top 35px left 40px;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.faq-page .box ul li::after {
  content: "\f107";
  font-size: 30px;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "FontAwesome";
}
.faq-page .box ul li + li {
  margin-top: 10px;
}
.faq-page .box ul li.active {
  background-image: url("../images/icon-lt2.png");
}
.faq-page .box ul li.active::after {
  content: "\f106";
}
@media screen and (max-width: 1000px) {
  .faq-page {
    padding: 60px 0;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .box ul li {
    padding: 20px;
    background-image: none!important;
  }
  .faq-page .box ul li::after {
    right: 15px;
  }
}
.application-page .appBox {
  padding: 80px 0;
  background-color: #f8f8f8;
}
.application-page .appBox .box {
  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;
}
.application-page .appBox .box .left .imgs .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #d8f32c;
  background-color: #FFFFFF;
}
.application-page .appBox .box .left .imgs .slick-arrow.slick-prev {
  left: 10px;
}
.application-page .appBox .box .left .imgs .slick-arrow.slick-next {
  right: 10px;
}
.application-page .appBox .box .right {
  padding-left: 120px;
}
.application-page .appBox .box .right ul li + li {
  margin-top: 5px;
}
.application-page .appBox .box .right ul li {
  color: #d8f32c;
  font-style: italic;
  position: relative;
}
.application-page .appBox .box .right ul li::before {
  content: "\f105";
  font-size: 20px;
  font-family: FontAwesome;
  font-style: initial;
  margin-right: 5px;
}
.application-page .appBox:nth-child(odd) {
  background-color: #FFFFFF;
}
.application-page .appBox:nth-child(odd) .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;
}
.application-page .appBox:nth-child(odd) .box .right {
  padding-left: 0;
  padding-right: 120px;
}
@media screen and (max-width: 1200px) {
  .application-page .appBox .box .right {
    padding-left: 60px;
  }
  .application-page .appBox:nth-child(odd) .box .right {
    padding-right: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .application-page .appBox .box {
    display: block;
  }
  .application-page .appBox .box .left {
    width: 100%;
  }
  .application-page .appBox .box .right {
    width: 100%;
    padding: 0!important;
    margin-top: 30px;
  }
  .application-page .appBox {
    padding: 60px 0;
  }
}
.news-page {
  padding-top: 100px;
}
.news-page .news-list ul li + li {
  margin-top: 80px;
}


.news-page .news-list .mml-text{
  margin: -15px;
}

.news-page .news-list .mml-text > div{
  padding: 15px;
}

.news-page .news-list .mml-text .img{
  width: 30%;
}

.news-page .news-list .mml-text .tit{
  width: 70%;
}

.news-page .news-list time {
  color: #adadad;
}
.news-page .news-list p {
  color: #6d6d6d;
}
.news-page .news-list a.btn1 {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  color: #6d6d6d;
  border: 1px solid #6d6d6d;
  padding: 0 40px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news-page .news-list a.btn1:hover {
  color: #FFFFFF;
  background-color: #d8f32c;
  border-color: #d8f32c;
}
@media screen and (max-width: 1000px) {
  .font-36 {
    font-size: 30px;
  }
  .news-page {
    padding-top: 60px;
  }
  .youshi{
    padding: 10px 10px!important;
  }
}
@media screen and (max-width: 700px) {
  .font-36 {
    font-size: 20px;
    line-height: 1.4;
  }
  .news-page .news-list ul li + li {
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .news-page .news-list .mml-text .img{
    width: 100%;
  }
  .news-page .news-list .mml-text .tit{
    width: 100%;
  }
}
#sideBox {
  margin: -25px;
}
#sideBox .sideLeft {
  padding: 30px;
  width: 75%;
}
#sideBox .sideRight {
  padding: 25px;
  width: 25%;
}
#sideBox .sideRight .latestInfo ul li + li {
  margin-top: 10px;
}
#sideBox .sideRight .latestInfo .img {
  width: 100px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
#sideBox .sideRight .latestInfo .text {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  vertical-align: middle;
}
#sideBox .sideRight .navInfo {
  margin-top: 50px;
}
#sideBox .sideRight .navInfo ul li + li {
  margin-top: 15px;
}
#sideBox .sideRight .navInfo ul li a {
  color: #adadad;
  border-bottom: 1px solid transparent;
  line-height: 30px;
}
#sideBox .sideRight .navInfo ul li a:hover {
  color: #d8f32c;
  border-color: currentcolor;
}
#sideBox .sideRight .contact-info {
  margin: 50px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}
#sideBox .sideRight .contact-info h4 {
  color: #FFFFFF;
}
#sideBox .sideRight .contact-info a.btn1 {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  color: #000;
  background-color: #FFF;
  padding: 0 40px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#sideBox .sideRight .contact-info a.btn1:hover {
  background-color: #000000;
  color: #d8f32c;
}
@media screen and (max-width: 1000px) {
  #sideBox {
    margin: -15px;
  }
  #sideBox .sideLeft {
    width: 100%;
    padding: 15px;
  }
  #sideBox .sideRight {
    display: none;
    padding: 15px;
  }
}
.newdet-page {
  padding: 100px 0 60px;
}
.newdet-page .prodet-3{
  background-color: #fafafa;
}
@media screen and (max-width: 1000px) {
  .newdet-page {
    padding: 60px 0;
  }
}
.bespoke-page .bespoke-1 {
  padding: 100px 0;
}
.bespoke-page .bespoke-1 .list ul {
  margin: -15px;
}
.bespoke-page .bespoke-1 .list ul li {
  padding: 15px;
}
.bespoke-page .bespoke-1 .list .img {
  overflow: hidden;
}
.bespoke-page .bespoke-1 .list .img .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
}
.bespoke-page .bespoke-1 .list .img .text {
  padding: 15px;
  background-color: #FFFFFF;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.bespoke-page .bespoke-1 .list .img .text span {
  color: #acacac;
}
.bespoke-page .bespoke-1 .list .img:hover .text {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.bespoke-page .bespoke-2 {
  background: url(../images/bespoke-2-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}
.bespoke-page .bespoke-2 p {
  line-height: 2;
}
.bespoke-page .bespoke-2 .btns a {
  min-width: 180px;
  padding: 0 30px;
  display: inline-block;
  line-height: 55px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.bespoke-page .bespoke-2 .btns a:hover {
  color: #FFFFFF;
  border-color: #d8f32c;
  background-color: #d8f32c;
}
.bespoke-page .bespoke-3 {
  padding-top: 100px;
}
.bespoke-page .bespoke-3 .left .content {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebecf0;
}
.bespoke-page .bespoke-3 .left .tabs ul li {
  width: auto;
}
.bespoke-page .bespoke-3 .left .tabs ul li a {
  height: 45px;
  line-height: 45px;
  border-radius: 23px;
  padding: 0 20px;
}
.bespoke-page .bespoke-3 .left .tabs ul li.active a {
  color: #FFFFFF;
  background-color: #d8f32c;
}
.bespoke-page .bespoke-3 .left .list ul {
  margin: -6px;
}
.bespoke-page .bespoke-3 .left .list ul li {
  padding: 6px;
}
.bespoke-page .bespoke-3 .left .list ul li .img {
  border-radius: 5px;
  overflow: hidden;
}
.bespoke-page .bespoke-3 .right {
  padding-left: 120px;
}
.bespoke-page .bespoke-3 .right p {
  line-height: 2;
}
.bespoke-page .bespoke-3 .right a.btn1 {
  margin-top: 50px;
  display: inline-block;
  line-height: 55px;
  height: 55px;
  border-radius: 5px;
  color: #FFFFFF;
  background-color: #d8f32c;
  padding: 0 75px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.bespoke-page .bespoke-3 .right a.btn1:hover {
  background-color: #000000;
}
.bespoke-page .bespoke-4 {
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
  .bespoke-page .bespoke-3 .right {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .bespoke-page .bespoke-1 {
    padding: 60px 0;
  }
  .bespoke-page .bespoke-2 {
    padding: 60px 0;
  }
  .bespoke-page .bespoke-2 .btns {
    margin-top: 30px;
  }
  .bespoke-page .bespoke-3 {
    padding-top: 60px;
  }
  .bespoke-page .bespoke-3 .left {
    width: 100%;
  }
  .bespoke-page .bespoke-3 .right {
    width: 100%;
    padding: 0;
  }
  .bespoke-page .bespoke-4 {
    padding-top: 60px;
  }
  .bespoke-page .bespoke-3 .left .content {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 700px) {
  .bespoke-page .bespoke-2 .btns a {
    display: block;
    margin: 10px 0;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .bespoke-page .bespoke-3 .left .list ul li {
    width: 50%!important;
  }
}
.customer-page {
  padding-top: 100px;
}
.customer-page .customer-1 .list ul {
  margin: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.customer-page .customer-1 .list ul li {
  padding: 20px;
}
.customer-page .customer-1 .list .mml-text {
  height: 100%;
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.customer-page .customer-1 .list i {
  display: block;
  height: 70px;
}
.customer-page .customer-1 .list p {
  line-height: 2;
}
.customer-page .customer-2 {
  padding: 100px 0;
}
.customer-page .customer-2 .box {
  margin: -15px;
}
.customer-page .customer-2 .box .left {
  padding: 15px;
}
.customer-page .customer-2 .box .right {
  padding: 15px;
}
.customer-page .customer-2 .tabs {
  border-bottom: 1px solid #f2f2f2;
}
.customer-page .customer-2 .tabs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.customer-page .customer-2 .tabs ul li {
  padding: 15px 0;
  position: relative;
  width: auto;
}
.customer-page .customer-2 .tabs ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 3px;
  background-color: #d8f32c;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.customer-page .customer-2 .tabs ul li.active::after {
  opacity: 1;
}
.customer-page .customer-2 .tabs ul li a {
  font-style: italic;
}
.customer-page .customer-2 .content .text {
  color: #a0a0a0;
}
.customer-page .customer-3 {
  background-color: #f8f8f8;
  padding: 80px 0;
}
.customer-page .customer-3 hr {
  margin: 50px 0;
  border: none;
  border-bottom: 1px solid #dbdbdb;
}
.customer-page .customer-3 .list .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #d8f32c;
}
.customer-page .customer-3 .list .slick-arrow.slick-prev {
  left: -40px;
}
.customer-page .customer-3 .list .slick-arrow.slick-next {
  right: -40px;
}
.customer-page .customer-3 .list ul {
  margin: -40px;
}
.customer-page .customer-3 .list ul li {
  padding: 40px;
}
.customer-page .customer-3 .list img {
  display: inline-block;
}
.customer-page .customer-4 {
  padding: 100px 0;
}
.customer-page .customer-4 .list ul {
  margin: -15px;
}
.customer-page .customer-4 .list ul li {
  padding: 15px;
}
@media screen and (max-width: 1200px) {
  .customer-page .customer-3 .list ul {
    margin: -15px;
  }
  .customer-page .customer-3 .list ul li {
    padding: 15px;
  }
  .customer-page .customer-3 .list .slick-arrow.slick-prev {
    left: 0;
  }
  .customer-page .customer-3 .list .slick-arrow.slick-next {
    right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .customer-page .customer-1 .list ul {
    display: block;
    margin: -10px;
  }
  .customer-page .customer-1 .list ul li {
    padding: 10px;
  }
  .customer-page .customer-1 .list .mml-text {
    padding: 30px 15px;
  }
  .customer-page .customer-2 .box .left {
    width: 100%;
  }
  .customer-page .customer-2 .box .right {
    width: 100%;
    text-align: center;
  }
  .customer-page {
    padding-top: 60px;
  }
  .customer-page .customer-2 {
    padding: 60px 0;
  }
  .customer-page .customer-3 {
    padding: 60px 0;
  }
  .customer-page .customer-4 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 700px) {
  .customer-page .customer-2 .tabs ul {
    display: block;
  }
  .customer-page .customer-2 .tabs ul li {
    margin-right: 30px;
  }
}
.product-page .category-desc {
  background-color: #f9f9f9;
  line-height: 2;
}
.product-page .productNav ul {
  position: relative;
}
.product-page .productNav ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #f2f2f2;
}
.product-page .productNav ul li {
  width: auto;
  position: relative;
}
.product-page .productNav ul li + li {
  margin-left: 45px;
}
.product-page .productNav ul li a {
  padding: 15px 0;
}
.product-page .productNav ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  display: block;
  height: 3px;
  width: 0;
  background-color: #d8f32c;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.product-page .productNav ul li.active a::after {
  width: 100%;
}
.productList ul {
  margin: -20px;
}
.productList ul li {
  padding: 20px;
}
.productList ul li .img img{
  transition: .5s ease;
}
.productList ul li .img img.on{
  opacity: 0;
  left: 0;
  top: 0;
}
.productList ul li .img:hover img.on{
  opacity: 1;
}
.productList ul li .img:hover img.def{
  opacity: 0;
}

.productList ul li .img .more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 47px;
    line-height: 47px;
    transition: .3s;
    background: #d8f32c;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    z-index: 15;
}

.productList ul li .img .more:hover {
  color: white;
    background: #000;
}

.productList ul li .img:hover .more {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1000px) {
  .product-page .productNav {
    display: none;
  }
  .productList ul {
    margin: -15px;
  }
  .productList ul li {
    padding: 15px;
  }
}
.prodet-page {
  padding: 100px 0;
}
.prodet-page .prodet-1 .box .left .big-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.prodet-page .prodet-1 .box .left .big {
  width: 85%;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #fff;
  background-color: #d8f32c85;
  font-family: FontAwesome;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-prev {
  left: 20px;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-next {
  right: 40px;
}
.prodet-page .prodet-1 .box .left .small {
  width: 15%;
}
.prodet-page .prodet-1 .box .left .small ul {
  margin: -5px;
}
.prodet-page .prodet-1 .box .left .small ul li {
  padding: 5px;
}
.prodet-page .prodet-1 .box .right .content {
  /*max-width: 410px;*/
}
.prodet-page .prodet-1 .box .right .content .text {
  line-height: 2;
      max-height: 403px;
    padding-right: 20px;
    margin-top: 43px;
    overflow: auto;
}
.prodet-page .prodet-1 .box .right .content a.msg {
  background-color: #d8f32c;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  text-align: center;
  font-family: var(--font);
}
.prodet-page .prodet-1 .box .right .content a.msg:hover {
  color: white;
  background-color: #000000;
}
.prodet-page .prodet-1 .box .right .content .social-links h4,
.prodet-page .prodet-1 .box .right .content .social-links ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-2 {
  padding-top: 100px;
}
.prodet-page .prodet-2 form input,
.prodet-page .prodet-2 form textarea {
  width: 100%;
  padding: 20px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  font-style: italic;
}
.prodet-page .prodet-2 form textarea {
  height: 240px;
}
.prodet-page .prodet-2 form button {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #d8f32c;
  border: none;
  padding: 15px 45px;
  text-transform: uppercase;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.prodet-page .prodet-2 form button:hover {
  background-color: #000000;
}
.prodet-page .prodet-2 .options ul {
  position: relative;
}
.prodet-page .prodet-2 .options ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #f2f2f2;
}
.prodet-page .prodet-2 .options ul li {
  width: auto;
  position: relative;
}
.prodet-page .prodet-2 .options ul li + li {
  margin-left: 130px;
}
.prodet-page .prodet-2 .options ul li a {
  padding: 15px 40px;
}
.prodet-page .prodet-2 .options ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  display: block;
  height: 3px;
  width: 0;
  background-color: #d8f32c;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.prodet-page .prodet-2 .options ul li.active a::after {
  width: 100%;
}
.prodet-page .prodet-2 .ret ul li .content {
  padding-left: 126px;
  padding-right: 126px;
}
.prodet-page .prodet-2 .ret ul li .content.form {
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.prodet-page .prodet-3 {
  padding-top: 100px;
}
.prodet-page .prodet-3 .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #d8f32c;
}
.prodet-page .prodet-3 .slick-arrow.slick-prev {
  left: -50px;
}
.prodet-page .prodet-3 .slick-arrow.slick-next {
  right: -50px;
}
@media screen and (max-width: 1200px) {
  .prodet-page .prodet-1 .box .right .content h1 {
    margin: 0;
    line-height: 1.4;
  }
  .prodet-page .prodet-1 .box .right .content a.msg {
    margin-top: 30px;
  }
  .prodet-page .prodet-2 .options ul li + li {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page {
    padding: 60px 0;
  }
  .prodet-page .prodet-1 .box .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .box .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .prodet-page .prodet-2 {
    padding-top: 60px;
  }
  .prodet-page .prodet-3 {
    padding-top: 60px;
  }
  .prodet-page .prodet-2 .ret ul li .content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .prodet-page .prodet-2 .ret ul li .content.form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .box .left .big-small {
    display: block;
  }
  .prodet-page .prodet-1 .box .left .big {
    width: 100%;
    padding: 0;
  }
  .prodet-page .prodet-1 .box .left .small {
    width: 100%;
    margin-top: 10px;
  }
  .prodet-page .prodet-2 form input,
  .prodet-page .prodet-2 form textarea {
    padding: 10px;
  }
  .prodet-page .prodet-2 .options ul li {
    width: 100%;
  }
  .prodet-page .prodet-2 .options ul li + li {
    margin: 0;
  }
  .prodet-page .prodet-2 .ret ul li .content {
    padding-left: 0;
    padding-right: 0;
  }
  .prodet-page .prodet-2 .ret ul li .content.form {
    padding-left: 15px;
    padding-right: 15px;
  }
  .prodet-page .prodet-2 form textarea {
    height: 100px;
  }
}


.inner-page .m-page{
  text-align: center;
}
.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 span.current,
.inner-page .m-page a:hover {
  background: #d8f32c none repeat scroll 0 0;
  color: #fff;
}



.glBox ul{
  margin: -15px;
}
.glBox ul li{
  padding: 15px;
}

.social-links2 ul li {
  width: auto!important;
}
.social-links2 ul li a {
  display: inline-block;
  vertical-align: middle;
}
.social-links2 ul li + li::before {
  content: "";
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 1px;
  background-color: #000000;
}





.product-page .slideBar {
    padding-top: 100px;
}

.product-page .slideBar .top {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.product-page .slideBar .top li a.add {
    display: inline-block;
    font-size: 18px;
    line-height: 56px;
    height: 56px;
    transition: .5s;
    background: #f3f3f3;
    padding: 3px 25px;
    position: relative;
}

.product-page .slideBar .top li a.add:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-left: 8px solid transparent;
    border-top: 8px solid #d8f32c;
    border-right: 8px solid transparent;
    opacity: 0;
    transition: .5s;
}

.product-page .slideBar .top li.active a.add,
.product-page .slideBar .top li:hover a.add {
    background: #d8f32c;
}

.product-page .slideBar .top li.active a.add:after,
.product-page .slideBar .top li:hover a.add:after {
    opacity: 1;
}

.product-page .slideBar .top li a.active.add {
    background: #d8f32c;
}

.product-page .slideBar .top li a.active.add:after {
    opacity: 1;
}

.product-page .slideBar .top li ul.children {
    display: none;
}

.product-page .slideBar .top li.active ul.children {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
}

.product-page .slideBar .top li ul.children li {
    display: inline-block;
}

.product-page .slideBar .top li ul.children li a {
    font-size: 20px;
    transition: .5s;
    position: relative;
    margin-right: 60px;
    color: #767676;
}

.product-page .slideBar .top li ul.children li a.active,
.product-page .slideBar .top li ul.children li a:hover {
    color: #d8f32c;
}

.product-page .slideBar .azz {
    display: none;
}

.product-page .slideBar .bottom {
    display: flex;
    margin-top: 44px;
}

.product-page .slideBar .bottom li:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: #d8f32c;
    opacity: 0;
    transition: .5s;
}

.product-page .slideBar .bottom li.active,
.product-page .slideBar .bottom li:hover {
    color: #d8f32c;
}

.product-page .slideBar .bottom li.active:after,
.product-page .slideBar .bottom li:hover:after {
    opacity: 1;
    width: 100%;
}

.product-page .slideBar .bottom,
.product-page .slideBar .top {
    flex-wrap: wrap;
}

.product-page .slideBar .top li {
    margin-bottom: 35px;
}

@media screen and (max-width: 1250px) {
  .product-page .slideBar .top li ul.children li a{
    font-size: 16px;
    margin-right: 30px;
  }
  .font-36 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page .slideBar{
    display: none;
  }
   .inner-banner h2{
    display: none;
  }
  .inner-banner .mbx{
    margin-top: 0;
  }
}

.qqvbed-tJHJj{
  color: red;
}