@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';
  --color: #d8f32c;
  --base-color: #d8f32c;
}

.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 20px;
  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: #d90b15;
  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: #d90b15;
}
#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 .baseBtn a span{
  color: #fff;
  background: #d90b15;
}
#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: 2px 15px;
  line-height: 2;
  font-size: 14px;
  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 li>img{
width: 100%;
}
#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 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 em{
  display: block;
  color:#d90b15; 
}
#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;
  max-width: 655px;
}
#banner p::before {
  content: "";
  position: absolute;
  width: 2px;
  top: 5px;
  bottom: 5px;
  left: -1px;
  background-color: #d90b15;
}
#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: 48px;
  font-family: var(--font);
  position: relative;
  z-index: 999;
  margin-right: -55px;

}
.our-about .desc {
  color: #5e5e5e;
}
.shouye {
  color: #5e5e5e;
  font-size: 18px;
  line-height: 32px;
}
.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';
  position: relative;
  top: 27px;
}
.our-about ul li p {
  color: #5e5e5e;
  line-height: 2;
}
.our-about .right{
  text-align: right;
}
.our-about .right .videobox{
  display: inline-block;
  position: relative;
  margin-left: auto;
  margin-right: 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;
  min-height: 3em;
}
.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 #000000;
}
.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: -0px;
  bottom: 56%;
}
.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;
  position: relative;
}
.i-advantage ul li a.arrow{
  width: 61px;
  height: 61px;
  background: var(--color);
  position: absolute;
  bottom: 00px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  opacity: 0;
  transition: 0.3s all;
}
.i-advantage ul li:hover a.arrow{
  opacity: 1;
  bottom: 30px;
  transition: 0.3s all;
}
.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 h4 {
  font-family: var(--font);
  margin-bottom: 30px;
  line-height: 36px;
}
#footer .foot-top .foot-content .foot-block ul li {
  line-height: 2;
}
#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-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 15px;
    font-size: 14px;
  }
  #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 10px;
    font-size: 12px;
  }
  .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;
  }
  #header .nav .ui.menu .logo img {
    width: 130px;
  }
  .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: 1600px) {
.tit1{
  font-size: 32px;
  word-break: break-all;
}
    }
@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;
  }
  .inner-banner{
    height: auto!important;
    padding-bottom: 40px;
  }
}
@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(/jhjxzz/2025/07/16/inner-about-2-img3.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-2 .bottom {
  padding:100px 0;
}
.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;
}
.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;
}
.about-page .about-4 .box ul li .left p {
  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: 36px!important;
    /*margin-top: -10%;*/
  }
  .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 ul li .img{
  display: none;
}
.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: #d8f32c;
  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: 16px;
    line-height: 56px;
    height: 56px;
    transition: .5s;
    background: #f3f3f3;
    padding: 3px 15px;
    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: 1000px) {
  .product-page .slideBar{
    display: none;
  }
}


.qqvbed-tJHJj{
  color: red;
}

@-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%);
}
.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_from2 i.close:after,
#pups_from2 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_from2 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;
  z-index: 999;
}
#pups_from2 i.close:after,
#pups_from2 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_from2 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_from2 i.close:hover:after,
#pups_from2 i.close:hover:before {
  background: white;
}
#pups_from2 {
  width: 95%;
  max-width: 880px;
  position: fixed;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  background: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #000;
  background: #f3f3f3;
  z-index: 9999;
}
#pups_from2 .top {
  position: relative;
}
#pups_from2 .h4 {
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
#pups_from2 .box {
  display: block;
}
#pups_from2 .box .column {
  margin-bottom: 5px;
}
#pups_from2 .box em {
  color: #000;
  display: block;
  font-weight: 700;
}
#pups_from2 .box input[type="text"] {
  width: 100%;
  max-width: 280px;
  height: 35px;
  line-height: 35px;
  border-radius: 10px;
  border: 1px solid #000;
  padding: 0 15px;
  color: #000;
}
#pups_from2 .box select {
  width: 100%;
  max-width: 280px;
  height: 35px;
  line-height: 35px;
}
#pups_from2 .center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: 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;
}
#pups_from2 .center .left {
  width: 35%;
}
#pups_from2 .center .right {
  width: 50%;
}
#pups_from2 .center .right .img-box {
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
#pups_from2 .checkbox {
  padding: 40px 0;
}
#pups_from2 .checkbox .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pups_from2 .checkbox .top .check {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#pups_from2 .checkbox .top .check .column {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 0;
}
#pups_from2 .checkbox .top .check .column input[type="checkbox"] {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid #000;
  margin-left: 20px;
}
#pups_from2 .checkbox .top .check .column em {
  font-size: 24px;
  margin-left: 20px;
  line-height: 1;
}
#pups_from2 .checkbox .morebox {
  display: none;
}
#pups_from2 .checkbox .morebox .box.three {
  margin: 0 -20px;
}
#pups_from2 .checkbox .morebox .box.three .column {
  padding: 20px;
}
#pups_from2 .covering {
  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;
  padding: 10px 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#pups_from2 .covering .img-box {
  width: 55%;
}
#pups_from2 .covering .column {
  width: 100%;
}
#pups_from2 .bottom {
  padding-top: 10px;
}
#pups_from2 .bottom textarea {
  width: 100%;
  margin-top: 5px;
  height: 120px;
  display: block;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #000;
  line-height: 1.5;
  padding: 20px 15px;
  color: #000;
}
#pups_from2 input[type="submit"] {
  width: 100%;
  max-width: 275px;
  height: 50px;
  border: 1px solid #eee;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  background: #d8f32c;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 10px;
}
#pups_from2 input[type="submit"]:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #fff;
}
@media screen and (max-width: 700px) {
  #pups_from2 .center .left {
    width: 100%;
  }
  #pups_from2 .center .right {
    width: 100%;
  }
  #pups_from2 .grid-box.two > .column {
    width: 100%!important;
  }
  #pups_from2 .center .right {
    width: 100%;
  }
  #pups_from2 .box input[type="text"] {
    width: 100%;
    max-width: none;
  }
  .font-28 {
    font-size: 18px;
  }
  .font-24 {
    font-size: 16px;
  }
}


#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;
  bottom: 5%;
  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;
}



/*//add other pages css*/

.inner-page h2.title {
  font-size: 2.4rem;
  color: #242424;
  font-weight: 700;
  line-height: 2;
}
.title {
  font-size: 2.4rem;
  color: #242424;
  
  line-height: 1.2;
}
.inner-page h2.title em {
  color: #d8f32c;
}

.quality-page .quality-1 {
  padding: 5rem 0;
}
.quality-page .quality-1 .header {
  text-align: center;
}
.quality-page .quality-1 .header p {
  font-size: 16px;
  line-height: 1.7;
  font-family: 'PL';
  color: #1e1e1e;
  margin-top: 1rem;
}
.quality-page .quality-1 .content {
  margin-top: 3.95rem;
}
.quality-page .quality-1 .content ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.quality-page .quality-1 .content ul li {
  background-color: #f8f8f8;
  width: 33.3333%;
}
.quality-page .quality-1 .content ul li .img {
  width: 100%;
  height: 100%;
}
.quality-page .quality-1 .content ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality-page .quality-1 .content ul li .text {
  padding: 3.5rem 2.75rem 4.1rem 2.05rem;
  font-size: 20px;
  color: #3b3b3b;
  font-family: 'PL';
  line-height: 2;
}
.quality-page .quality-1 .content ul li:last-child .text {
  padding-top: 5.6rem;
}
.quality-page .quality-2 {
  text-align: center;
  padding-bottom: 5rem;
}
.quality-page .quality-2 .header p {
  font-size: 16px;
  line-height: 2;
  color: #1e1e1e;
  font-family: 'PL';
  margin: 10px auto 0;
  width: 70%;
}
.quality-page .quality-2 .content {
  margin-top: 3rem;
}
.quality-page .quality-2 .content ul {
  margin-right: -5.85rem;
}
.quality-page .quality-2 .content ul .slick-track {
  margin: 0;
}
.quality-page .quality-2 .content ul .slick-slide li:last-child::before {
  display: none;
}
.quality-page .quality-2 .content ul li {
  padding-right: 5.85rem;
  position: relative;
}
.quality-page .quality-2 .content ul li .img {
  background-color: #f6f6f6;
  padding: 1.35rem;
  border-radius: 50%;
}
.quality-page .quality-2 .content ul li .img a.ig {
  display: block;
  position: relative;
}
.quality-page .quality-2 .content ul li .img a.ig::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(199, 0, 37, 0.37);
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.quality-page .quality-2 .content ul li .img a.ig span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 3.6rem;
  font-family: 'PB';
  line-height: 1;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.quality-page .quality-2 .content ul li .text {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  font-size: 20px;
  color: #1e1e1e;
  line-height: 1.7;
  font-family: 'PL';
  text-align: center;
  padding-top: 1.95rem;
}
.quality-page .quality-2 .content ul li:hover .img a.ig::after {
  opacity: 1;
}
.quality-page .quality-2 .content ul li:hover .img a.ig span {
  opacity: 1;
  top: 40%;
}
.quality-page .quality-2 .content ul li:hover .text {
  color: #d8f32c;
}
.quality-page .quality-2 .content ul li::before {
  content: '';
  position: absolute;
  right: 12%;
  top: 35%;
  width: 20px;
  height: 34px;
  background: url(../images/about4-right.png) no-repeat;
}
.quality-page .quality-2 .content ul .slick-dots {
  position: absolute;
  left: 0;
  bottom: -20%;
  width: 94%;
  text-align: center;
}
.quality-page .quality-2 .content ul .slick-dots li {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  background-color: rgba(199, 0, 37, 0.4);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  padding: 0;
  cursor: pointer;
}
.quality-page .quality-2 .content ul .slick-dots li button {
  display: none;
}
.quality-page .quality-2 .content ul .slick-dots li::before {
  display: none;
}
.quality-page .quality-2 .content ul .slick-dots li:last-child {
  margin-right: 0;
}
.quality-page .quality-2 .content ul .slick-dots li.slick-active {
  width: 52px;
  height: 10px;
  background-color: #d8f32c;
  border-radius: 5px;
}
.quality-page .quality-3 {
  padding-top: 4.4rem;
}
.quality-page .quality-3 .box {
  background-color: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 4rem 6rem;
}
.quality-page .quality-3 .box .left {
  vertical-align: middle;
}
.quality-page .quality-3 .box .left p {
  font-size: 16px;
  color: #343434;
  line-height: 2;
  font-family: 'PL';
  margin-top: 2rem;
  padding-right: 2.5rem;
}
.quality-page .quality-3 .box .right {
  vertical-align: middle;
  padding-left: 2.9rem;
}
.quality-page .quality-3 .box .right ul {
  margin-right: -0.75rem;
}
.quality-page .quality-3 .box .right ul li {
  padding: 0 0.75rem 0.75rem 0;
}
.quality-page .quality-3 .box .right ul li .info {
  border: 1px solid rgba(54, 54, 54, 0.2);
  text-align: center;
  padding: 1.65rem 0 1.6rem;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.quality-page .quality-3 .box .right ul li .info .img {
  height: 70px;
}
.quality-page .quality-3 .box .right ul li .info .img img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.quality-page .quality-3 .box .right ul li .info h4 {
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.quality-page .quality-3 .box .right ul li:hover .info {
  background: #f6f6f6;
}
.quality-page .quality-3 .box .right ul li:hover .info .img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.quality-page .quality-3 .box .right ul li:hover .info h4 {
  color: #d8f32c;
}
.quality-page .quality-4 {
  padding: 6.4rem 0 5rem;
}
.quality-page .quality-4 .left {
  vertical-align: middle;
  width: 57.6%;
}
.quality-page .quality-4 .left ul {
  margin-right: -3.45rem;
}
.quality-page .quality-4 .left ul .slick-track {
  margin: 0;
}
.quality-page .quality-4 .left ul li {
  padding-right: 3.45rem;
}
.quality-page .quality-4 .left ul li .img {
  position: relative;
}
.quality-page .quality-4 .left ul li .img img {
  width: 100%;
}
.quality-page .quality-4 .left ul li .img p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(216, 243, 44, 0.77);
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  padding: 1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quality-page .quality-4 .right {
  vertical-align: middle;
  width: 42.4%;
  padding-left: 5rem;
}
.quality-page .quality-4 .right p {
  font-size: 16px;
  line-height: 2;
  font-family: 'PL';
  color: #222;
  margin-top: 2rem;
}
@media screen and (max-width: 1366px) {
  .quality-page .quality-1 .content ul li .text {
    padding: 3.5rem 1rem 2rem 1rem;
    font-size: 16px;
  }
  .quality-page .quality-3 .box {
    padding: 4rem 2rem;
  }
  .quality-page .quality-3 .box .right {
    padding-left: 1.5rem;
  }
  .quality-page .quality-3 .box .right ul li .info h4 {
    font-size: 16px;
  }
  .quality-page .quality-4 .right {
    padding-left: 3rem;
  }
  .quality-page .quality-4 .left ul {
    margin-right: -2rem;
  }
  .quality-page .quality-4 .left ul li {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .quality-page .quality-1 .content ul li .text {
    padding: 2rem 1rem 2rem 1rem;
    font-size: 16px;
  }
  .quality-page .quality-1 .content ul li:last-child .text {
    padding-top: 3rem;
  }
  .quality-page .quality-2 .header p {
    width: 90%;
  }
  .quality-page .quality-3 .box {
    padding: 4rem 1rem;
  }
  .quality-page .quality-3 .box .left {
    width: 100%;
  }
  .quality-page .quality-3 .box .right {
    width: 100%;
    padding: 2rem 0 0 0;
  }
  .quality-page .quality-4 .left {
    width: 100%;
  }
  .quality-page .quality-4 .right {
    width: 100%;
    padding: 2rem 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .quality-page .quality-1 .content ul {
    display: block;
  }
  .quality-page .quality-1 .content ul li {
    width: 100%;
  }
  .quality-page .quality-2 {
    display: none;
  }
  .quality-page .quality-3 {
    padding-top: 0;
  }
  .quality-page .quality-3 .box .left p {
    padding-right: 0;
  }
}


/*yiningyeya add css kaishi*/


.project-page{
  padding: 100px 0;
}
.project-page ul{
  margin: -15px;
}
.project-page ul li{
  padding: 15px;
}
.project-page ul li p{
  font-size: 18px;
  text-align: center;
  padding: 5px 10px;
  line-height: 2;
}
.news2-page {
  padding: 90px 0;
}
.news2-page .newsList {
  margin-bottom: 90px;
  padding-right: 70px;
}
 
.newdet2-page {
  padding: 138px 0 80px;
}
.newdet2-page .newdet-1 h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 2;
}
.newdet2-page .newdet-1 .time {
  font-size: 14px;
  margin: 35px 0 20px;
}
.newdet2-page .newdet-1 .time span {
  margin-right: 20px;
  display: inline-block;
}
.newdet2-page .newdet-1 .content {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  padding: 50px 0 60px;
  font-size: 18px;
  line-height: 2;
}
.newdet2-page .newdet-2 {
  overflow: hidden;
  padding-top: 150px;
}
.newdet2-page .newdet-2 h2 {
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 60px;
}
.newdet2-page .newdet-2 ul {
  margin: -28px;
}
.newdet2-page .newdet-2 ul li {
  padding: 28px;
}
.newdet2-page .newdet-2 ul li .img-box {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.newdet2-page .newdet-2 ul li .img-box img {
  display: block;
  margin: auto;
}
.newdet2-page .newdet-2 ul li h4 {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  line-height: 2;
}
.newdet2-page .newdet-2 ul li:hover .img-box {
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.15);
}
.newdet2-page .newdet-2 ul .slick-arrow{
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: none;
  background: white;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.newdet2-page .newdet-2 ul .slick-prev{
  left: 0;
  transform: translate(-50%,-50%);
}
.newdet2-page .newdet-2 ul .slick-prev::after{
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 24px;
}
.newdet2-page .newdet-2 ul .slick-next{
  right: 0;
  transform: translate(50%,-50%);
}
.newdet2-page .newdet-2 ul .slick-next::after{
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 24px;
}


.news2-page {
  padding: 80px 0;
}
.news2-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;
}
.news2-page .sidebar-box .sidebar-left {
  border-left: 1px solid #e7e7e7;
}
.news2-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0px;
}
.news2-page .sidebar-box .sidebar-right .news-list {
  padding-right: 85px;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li {
  margin-bottom: 75px;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li:last-child {
  margin-bottom: 0;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .n-img {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .n-img img {
  width: 100%;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .category {
  padding: 0 5px;
  margin-left: 4px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  -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;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .category:hover {
  background: var(--primary);
  color: #fff;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .category span {
  display: inline-block;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content h4 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
  font-family: 'DINCond';
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content h4:hover {
  color: var(--primary);
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .time {
  font-size: 14px;
  color: #aaa;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 12px;
  margin-bottom: 20px;
  position: relative;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .time::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  border-top: 1px solid #aaa;
  left: 0;
  top: 0;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .time span {
  color: #000;
  margin-left: 10px;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .link {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .link::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 80%;
  height: 1px;
  border-top: 1px solid #e7e7e7;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .link .more {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 15px 35px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .link .more:hover::after {
  width: 100%;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .link .more span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.news2-page .sidebar-box .sidebar-right .news-list ul li .content .link .more::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.news2-page .sidebar-box .sidebar-left .inner {
    margin: 0 0 0 auto;
    padding-left: 0;
}
/*.inner-page.news2-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}*/
.inner-page.news2-page .sidebar-box .sidebar-left {
  width: 28%;
  padding-left: 20px;
}

.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/inner-s.jpg) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
  padding: 4px 0;
  font-size: 16px;
  line-height: 2;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active a {
  color: var(--primary);
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li:first-child {
  padding-top: 0;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
  color: var(--primary);
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 7px 0;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news2-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.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page.news2-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.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 18px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--primary);
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(/eastrongroup/2022/08/04/news.jpg) no-repeat center center;
  padding: 215px 40px 55px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  color: #90b6df;
  display: block;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 12px 30px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}
.inner-page.news2-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.news2-page .sidebar-box .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--primary));
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: -1;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li {
    width: 100%;
    padding: 30px 40px;
    border-bottom: 1px dashed #ccc;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content {
    display: flex;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center {
    font-size: 24px;
    color: #272727;
    text-transform: uppercase;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center span {
    background-color: var(--color);
    color: #fff;
    font-size: 28px;
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 6px 0;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right {
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #ccc;
    color: #2b2b2b;
}
.inner-page.news2-page h1, .inner-page.news2-page h2, .inner-page.news2-page h3 {
    font-weight: 700;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right h3 a {
    font-size: 22px;
    font-weight: 700;
    line-height: 2;
    color: #000;
    transition: 0.5s;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right p {
    line-height: 2;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right a {
    font-size: 16px;
    color: var(--color);
    transition: all .5s ease;
    text-transform: capitalize;
}
.inner-page.news2-page .sidebar-box .sidebar-left .inner .inner-cat ul li:hover a {
  font-weight: bold;
}

.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box {
  display: flex;
  max-height: 350px;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img {
  width: 45%;
}
.inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img img {
  object-fit: cover;
  max-height: 350px;
}
.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.inner-page .sidebar-box{
  display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 85px;
}
.newdet2-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;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .category a {
    padding: 0 5px;
    margin-left: 4px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color);
    border: 1px solid var(--color);
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.newdet2-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);
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .category .time {
    font-size: 14px;
    margin-left: 12px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content h1.n-title {
    font-size: 35px;
    line-height: 2;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
}

.newdet2-page .sidebar-box .sidebar-right .newdet-content .content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .content .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    color: #555;
    margin-top: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e7e7e7;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .content .icon a {
    font-size: 14px;
    color: #000;
    margin-left: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.newdet2-page .sidebar-box .sidebar-right .relate-product {
    margin-top: 40px;
}
.newdet2-page .sidebar-box .sidebar-right .relate-product h3 {
    font-size: 30px;
    line-height: 1;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .m-link {
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .m-link a {
    width: 50%;
    padding: 35px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
    padding-right: 30px;
    border-right: 1px solid #e7e7e7;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
    padding-left: 30px;
}
.newdet2-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    max-width: 255px;
}
.newdet2-page .application-img {
  margin: 50px 0;
}
.newdet2-page .application-img ul{
  margin: -10px;
}
.newdet2-page .application-img ul li{
  padding: 10px;
}
.newdet2-page .application-intro b,
.newdet2-page .application-intro strong{
  font-weight: bold;
}
.newdet2-page .app-related-pro{
  padding: 50px 0;
}
.newdet2-page .app-related-pro ul{
  margin: -10px;
}
.newdet2-page .app-related-pro ul li{
  padding: 10px;
}
.newdet2-page .app-related-pro ul li p{
  text-align: center;
  padding: 6px 10px;
  font-size: 18px;
}
.newdet2-page.appdet-page .sidebar-box .sidebar-right .newdet-content .right{
  padding-left: 20px;
}
.newdet2-page.appdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
  font-size: 28px;
}


@media screen and (max-width: 1250px){
   .news2-page,
  .newdet2-page {
    padding: 60px 0;
  }
  .news2-page .newsList {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page.news2-page .sidebar-box .sidebar-left,
  .inner-page .sideLeft{
    display: none;
  }
  .inner-page .sidebar-box .sidebar-right,
  .inner-page .sideRight{
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
    .news2-page .newsList{
    padding-right: 0;
  }
}

@media screen and (max-width: 500px) {
  .inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li{
    padding: 30px 0;
  }
  .inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content{
    flex-wrap: wrap;
  }
  .inner-page.news2-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right{
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border: none;
  }
}


/*case css add*/


.inner-page.case-page {
  padding: 80px 0;
    background-color: #f5f5f5;
}

.inner-page.case-page .case-right,
.inner-page.product-page .pro-right {
    width: 75%;
    padding-left: 4%;
}

.inner-page.case-page .case-right > ul > li,
.inner-page.product-page .pro-right ul li {
    padding: 35px;
    background: #fff;
    margin-bottom: 30px;
}

.inner-page.case-page .case-right > ul > li h6,
.inner-page.product-page .pro-right ul li h6 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #d8f32c;
}

.inner-page.case-page .case-right > ul > li .all-case,
.inner-page.product-page .pro-right ul li .all-pro {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.inner-page.case-page .case-right > ul > li .all-case .left,
.inner-page.product-page .pro-right ul li .all-pro .left {
    width: 50%;
    overflow: hidden;
}

.inner-page.case-page .case-right > ul > li .all-case .left ul li,
.inner-page.product-page .pro-right ul li .all-pro .left ul li {
    padding: 5px;
    width: 100%;
}

.inner-page.case-page .case-right > ul > li .all-case .left ul li a,
.inner-page.product-page .pro-right ul li .all-pro .left ul li a {
    display: block;
    overflow: hidden;
}

.inner-page.case-page .case-right > ul > li .all-case .right {
    width: 50%;
    padding-left: 5%;
}

.inner-page.case-page .case-right > ul > li .all-case .right .text {
    font-size: 17px;
    line-height: 1.5;
    max-height: 10.5em;
    overflow-y: auto;
    position: relative;
}



.inner-page.case-page .case-right > ul > li .all-case .right h4,
.inner-page.product-page .pro-right ul li .all-pro .right h4 {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #000;
    position: relative;
}

.inner-page.case-page .case-right > ul > li .all-case .right .imgC ul,
.inner-page.product-page .pro-right ul li .all-pro .right .imgC ul {
    margin-top: 30px;
}

.inner-page.case-page .case-right > ul > li .all-case .right .imgC ul li,
.inner-page.product-page .pro-right ul li .all-pro .right .imgC ul li {
    padding: 5px;
}

.inner-page.case-page .case-right > ul > li .all-case .right .imgC ul li a,
.inner-page.product-page .pro-right ul li .all-pro .right .imgC ul li a {
    display: block;
}

.inner-page.case-page .case-right > ul > li .all-case .right .imgC ul li a img,
.inner-page.product-page .pro-right ul li .all-pro .right .imgC ul li a img {
    width: 100%;
}

.inner-page.case-page .case-right > ul > li .all-case .right a.more,
.inner-page.product-page .pro-right ul li .all-pro .right a.more {
    font-size: 15px;
    margin-top: 20px;
    display: inline-block;
    background: #d8f32c;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    transition: .3s ease;
}

.inner-page.case-page .case-right > ul > li .all-case .right a.more:hover,
.inner-page.product-page .pro-right ul li .all-pro .right a.more:hover {
  background: #fea305;
}


.inner-page.case-page .case-right > ul > li .all-case .right h4:after,
.inner-page.product-page .pro-right ul li .all-pro .right h4:after {
    content: '';
    width: 40px;
    height: 3px;
    position: absolute;
    background: #000;
    left: 0;
    bottom: -10px;
}


.inner-page.product-page .pro-right ul li .all-pro .right .text {
    font-size: 17px;
    line-height: 1.5;
    max-height: 10.5em;
    overflow-y: auto;
    position: relative;
}

.inner-page.product-page .pro-right ul li .all-pro .right {
    width: 50%;
    padding-left: 5%;
}

.inner-page.product-page .pro-right ul li .all-pro .left {
    position: relative;
}

.inner-page.product-page .pro-right ul li .all-pro .left img.img_2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .5s ease;
}

.inner-page.product-page .pro-right ul li .all-pro .left:hover img.img_2 {
    opacity: 1;
    transition: all .5s ease;
    background: #fff;
}


@media screen and (max-width:1000px) {
  .inner-page.case-page .case-right,
  inner-page.product-page .pro-right{
    width: 100%;
    padding: 0;
  }


  .inner-page .sideBarBox .sideBarLeft {
    display: none;
  }

  .inner-page.case-page .case-right,
  .inner-page.product-page .pro-right {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width:700px) {
  .prodet-page .prodet-1 .right,
  .inner-page.case-page .case-right > ul > li .all-case .right {
      width: 100%;
      padding-left: 0;
      margin-top: 20px;
  }

  .prodet-page .prodet-1 .left,
  .inner-page.case-page .case-right > ul > li .all-case .left {
      width: 100%;
  }


  .inner-page.case-page .case-right > ul > li .all-case .left,
  .inner-page.product-page .pro-right ul li .all-pro .left {
    width: 100%;
  }

  .inner-page.product-page .pro-right ul li .all-pro .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

@media screen and (max-width:500px) {
  .inner-page.case-page .case-right > ul > li,
  .inner-page.product-page .pro-right ul li{
    padding: 30px 10px;
  }
}






.inner-page .sidebox .sideleft {
    width: 22%;
    position: sticky;
    top: 100px;
}
.inner-page .sidebox .sideleft .widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.inner-page .sidebox .sideleft .widget form {
    position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f8f8f8;
    margin-bottom: 0;
    height: 40px;
    font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget form button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fea305;
    color: #fff;
    border: 0;
    padding: 8px 16px;
    cursor: pointer;
    height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000;
}
.inner-page .sidebox .sideleft .widget ul {
    margin-bottom: 0;
    padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}
.inner-page .sidebox .sideleft .widget ul li a {
    padding-left: 20px;
    line-height: 28px;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
    margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
    font-size: 14px;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
    color: #fea305
}
.inner-page .sidebox .sideleft .widget ul li ul {
    display: none;
    margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
    padding-left: 0;
    color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active{
    color: #fea305;
}

.inner-page .sidebox .sideleft .widget .form1 {
    text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f8f8f8;
    margin-bottom: 0;
    margin-bottom: 15px;
    height: 40px;
    font-size: 16px;
}
.inner-page .sidebox .sideleft .widget .form1 textarea {
    height: 70px;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
    background: #fea305;
    color: #fff;
    font-size: 18px;
    height: 40px;
    padding: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-radius: 0px;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
    background: #000;
}
.inner-page .sidebox .sideright {
    width: 78%;
}

@media screen and (max-width: 1366px) {
    .inner-page .sidebox .sideleft {
        width: 28%;
    }
    .inner-page .sidebox .sideright {
        width: 72%;
    }
    .inner-page .sidebox .sideleft .widget .recent li a.title {
        margin-left: 98px;
    }
}
@media screen and (max-width: 1000px) {
    .inner-page .sidebox .sideleft {
        display: none;
    }
    .inner-page .sidebox .sideright {
        width: 100%;
        padding-left: 0;
    }
}




.inner-page .sideBarBox .sideBarLeft {
    width: 25%;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.inner-page .sideBarBox .sideBarLeft form {
    height: 42px;
    line-height: 42px;
    border: 1px solid #eee;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
}

.inner-page .sideBarBox .sideBarLeft form input {
    width: 100%;
    border: none;
    background-color: #fff;
    padding: 0 1em;
}

.inner-page .sideBarBox .sideBarLeft form button {
    width: 42px;
    border: none;
    background-color: #d8f32c;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.inner-page .sideBarBox .sideBarLeft form button img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide {
    margin-top: 50px;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a {
    font-size: 18px;
    margin-top: 1em;
    display: block;
    padding-right: 1.5em;
    position: relative;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a i.fa {
    position: absolute;
    right: .3em;
    top: 0;
    font-size: 140%;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a i.fa.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a em {
    opacity: .6;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li.active>a,
.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li:hover>a {
    color: #d8f32c;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li ul {
    display: none;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li li {
    padding-left: 1em;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li li a {
    font-weight: 400;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list {
    margin: 10px 0;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li {
    padding: 15px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li a.img-box {
    width: 25%;
    margin-right: 4%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content {
    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-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content span.h6 {
    font-size: 17px;
    width: 100%;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content .star {
    font-size: 14px;
    color: #d8f32c;
}

.inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content time {
    font-size: 14px;
    color: #d8f32c;
}

.inner-page .sideBarBox .sideBarLeft .sideBarImg {
    background-image: url(../images/sideBarImg-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 180px 10% 80px;
    display: block;
}

.inner-page .sideBarBox .sideBarLeft .sideBarImg span.h3 {
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
}

.inner-page .sideBarBox .sideBarLeft .sideBarImg .text {
    font-size: 16px;
    line-height: 1.4;
    margin: 1em 0 2em;
}

.inner-page .sideBarBox .sideBarLeft .sideBarImg a.more {
    line-height: 2em;
    height: 2em;
    padding: 0 1em 0 .5em;
    background: url(../images/icon-sideBarImg-link.png) center no-repeat;
    background-size: 100% 100%;
}


.news-page {
  padding: 80px 0;
}
.news-page .sidebar-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.news-page .sidebar-box .sidebar-left {
  border-left: 1px solid #e7e7e7;
}
.news-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0px;
}
.news-page .sidebar-box .sidebar-right .news-list {
  padding-right: 85px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li {
  margin-bottom: 75px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li:last-child {
  margin-bottom: 0;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .n-img {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .n-img img {
  width: 100%;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category {
  padding: 0 5px;
  margin-left: 4px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category:hover {
  background: var(--primary);
  color: #fff;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category span {
  display: inline-block;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content h4 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
  font-family: 'DINCond';
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content h4:hover {
  color: var(--primary);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time {
  font-size: 14px;
  color: #aaa;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 12px;
  margin-bottom: 20px;
  position: relative;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  border-top: 1px solid #aaa;
  left: 0;
  top: 0;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time span {
  color: #000;
  margin-left: 10px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 80%;
  height: 1px;
  border-top: 1px solid #e7e7e7;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 15px 35px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more:hover::after {
  width: 100%;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.news-page .sidebar-box .sidebar-left .inner {
    margin: 0 0 0 auto;
    padding-left: 0;
}
/*.inner-page.news-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}*/
.inner-page.news-page .sidebar-box .sidebar-left {
  width: 28%;
  padding-left: 20px;
}

.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/inner-s.jpg) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
  padding: 4px 0;
  font-size: 16px;
  line-height: 2;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active a {
  color: var(--primary);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:first-child {
  padding-top: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
  color: var(--primary);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 7px 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 18px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--primary);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(/eastrongroup/2022/08/04/news.jpg) no-repeat center center;
  padding: 215px 40px 55px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  color: #90b6df;
  display: block;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background: #000;
  padding: 12px 30px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--primary));
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: -1;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li {
    width: 100%;
    padding: 30px 40px;
    border-bottom: 1px dashed #ccc;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content {
    display: flex;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center {
    font-size: 24px;
    color: #272727;
    text-transform: uppercase;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center span {
    background-color: var(--color);
    color: #fff;
    font-size: 28px;
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 6px 0;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right {
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #ccc;
    color: #2b2b2b;
}
.inner-page.news-page h1, .inner-page.news-page h2, .inner-page.news-page h3 {
    font-weight: 700;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right h3 a {
    font-size: 22px;
    font-weight: 700;
    line-height: 2;
    color: #000;
    transition: 0.5s;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right p {
    line-height: 2;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right a {
    font-size: 16px;
    color: var(--color);
    transition: all .5s ease;
    text-transform: capitalize;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:hover a {
  font-weight: bold;
}

.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box {
  display: flex;
  max-height: 350px;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img {
  width: 45%;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img img {
  object-fit: cover;
  max-height: 350px;
}
.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.inner-page .sidebar-box{
  display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 85px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a {
    padding: 0 5px;
    margin-left: 4px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color);
    border: 1px solid var(--color);
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a span {
    display: inline-block;
    -webkit-transform: skewX(10deg) skewY(0);
    -moz-transform: skewX(10deg) skewY(0);
    -ms-transform: skewX(10deg) skewY(0);
    transform: skewX(10deg) skewY(0);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time {
    font-size: 14px;
    margin-left: 12px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title {
    font-size: 35px;
    line-height: 2;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    color: #555;
    margin-top: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a {
    font-size: 14px;
    color: #000;
    margin-left: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .relate-product {
    margin-top: 40px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product h3 {
    font-size: 30px;
    line-height: 1;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link {
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a {
    width: 50%;
    padding: 35px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
    padding-right: 30px;
    border-right: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
    padding-left: 30px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    max-width: 255px;
}

.newdet-page .application-img {
  margin: 50px 0;
}
.newdet-page .application-img ul{
  margin: -10px;
}
.newdet-page .application-img ul li{
  padding: 10px;
}
.newdet-page .application-intro b,
.newdet-page .application-intro strong{
  font-weight: bold;
}
.newdet-page .app-related-pro{
  padding: 50px 0;
}
.newdet-page .app-related-pro ul{
  margin: -10px;
}
.newdet-page .app-related-pro ul li{
  padding: 10px;
}
.newdet-page .app-related-pro ul li p{
  text-align: center;
  padding: 6px 10px;
  font-size: 18px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content .right{
  padding-left: 20px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
  font-size: 28px;
}
@media screen and (max-width: 1000px) {
    .inner-page .sidebar-box .sidebar-right,
  .inner-page .sideRight{
    width: 100%;
  }
  .inner-page.newdet-page #sideBox .sideLeft,
  .inner-page.news-page #sideBox .sideLeft{
    display: block;
  }
}
@media screen and (max-width: 768px) {
   .newdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
     font-size: 20px;
   }
   .newdet-page .sidebar-box .sidebar-right .newdet-content{
     padding-right: 0;
   }
}

/*#banner .left .baseBtn a i{
  color: #000;
  background: #fff;
}*/
#banner .left .baseBtn a span{
background: #d90b15;
color: #fff;
} 


    .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 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;
        }
    }
    
    #cp-Nav .nav div.title {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 10px;
    background: var(--color);
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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;
}
.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;
}
