@font-face {
  font-family: 'Barlow';
  src: url(../fonts/Barlow-Regular.ttf) format('truetype'), url(../fonts/Barlow-Regular.eot) format('eot'), url(../fonts/Barlow-Regular.woff) format('woff'), url(../fonts/Barlow-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Barlow';
  src: url(../fonts/Barlow-Medium.ttf) format('truetype'), url(../fonts/Barlow-Medium.eot) format('eot'), url(../fonts/Barlow-Medium.woff) format('woff'), url(../fonts/Barlow-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Baskerville';
  src: url(../fonts/Baskerville.ttf) format('truetype'), url(../fonts/Baskerville.eot) format('eot'), url(../fonts/Baskerville.woff) format('woff'), url(../fonts/Baskerville.woff2) format('woff2');
}
body {
  font-family: "Barlow";
  font-weight: 400;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1550px;
}
:root {
  --font: 'Baskerville';
}

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

@-webkit-keyframes zm {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes zm {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zm {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: #FFFFFF;
}
#header .nav > .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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  height: 120px;
}
#header .nav > .menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
}
#header .nav > .menu .flex-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;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#header .nav > .menu .flex-box.right .menu-box {
  margin-left: auto;
}
#header .nav > .menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
}
#header .nav > .menu .menu-box ul.menu > li {
  margin: 0 45px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  -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 > .menu .menu-box ul.menu > li:hover {
  border-color: #051399;
  color: #051399;
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}
#header .nav > .menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header .nav > .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;
  width: 200px;
  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 #051399;
  display: none \9;
}
#header .nav > .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: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav > .menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav > .menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav > .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 > .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 > .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 > .menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 25px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #2935aa;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}

table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  word-break: normal;
}
table tr {
  width: auto !important;
  height: auto !important;
}


.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #fff;
  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: black;
  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: 20px;
  line-height: 36px;
  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: 18px;
  line-height: 32px;
}
#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: 22px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 18px;
  line-height: 32px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  line-height: 36px;
  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: 120px;
  }
}
.hover-language {
  margin-left: 25px;
  margin-right: 35px;
}
.hover-language .zhuyu {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid #000000;
}
.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.hover-language ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 16px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #051399;
  color: white;
}
.hover-language:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100vh;
}
#banner .left {
  max-width: 700px;
}
#banner h2 {
  margin-bottom: 15px;
  font-size: 60px;
  color: #FFFFFF;
  font-family: var(--font);
}
#banner p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
  color: #FFFFFF;
}
#banner .btns a {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  font-weight: 500;
}
#banner .btns a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: -5px;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #051399;
  opacity: .57;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#banner .btns a:hover::before {
  width: 100%;
  opacity: 1;
}
.baseTit .Tag {
  padding-left: .8em;
  font-size: 36px;
  line-height: 1.2;
  font-family: var(--font);
  z-index: 1;
}
.baseTit .Tag::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background-color: #7178c2;
  background-image: -webkit-linear-gradient(135deg, #a3a9de, #7178c2);
  background-image: -moz-linear-gradient(135deg, #a3a9de, #7178c2);
  background-image: linear-gradient(-45deg, #a3a9de, #7178c2);
  -webkit-animation: zm 2s linear infinite;
  -moz-animation: zm 2s linear infinite;
  animation: zm 2s linear infinite;
}
.baseTit .Tit {
  font-size: 60px;
  line-height: 1.2;
  font-family: var(--font);
}
.our-about {
  background-color: #efefef;
  background-image: url(../images/about-bg.png);
  background-position: center left 78%;
  background-repeat: no-repeat;
  padding: 95px 0 120px;
}
.our-about .left {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
  padding-right: 7%;
}
.our-about .left .content {
  font-weight: 500;
  line-height: 2;
}
.our-about .left .content h1{
  display: inline;
}
.our-about .right {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
.our-about .right ul {
  margin: -20px;
  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;
}
.our-about .right li {
  padding: 20px;
}
.our-about .right li .mml-text {
  height: 100%;
  padding: 40px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.94);
}
.our-about .right li .mml-text .icon {
  height: 60px;
  line-height: 60px;
}
.our-about .right li .mml-text .icon img {
  vertical-align: middle;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-about .right li .mml-text .num {
  font-size: 72px;
  line-height: 1.2;
  font-family: var(--font);
}
.our-about .right li .mml-text p {
  font-weight: 500;
}
.our-about .right li .mml-text:hover .icon img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.our-factory {
  position: relative;
  color: #FFFFFF;
  background-color: #efefef;
  padding: 145px 0 100px;
}
.our-factory::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 30%;
  left: 0;
  right: 0;
  background: url(../images/factory-bg.jpg) no-repeat center;
}
.our-factory .desc {
  font-weight: 500;
}
.our-factory .list ul {
  margin: -20px;
}
.our-factory .list li {
  padding: 20px;
}
.our-factory .list li .img {
  margin-bottom: 30px;
  border-radius: 30px;
}
.our-factory .list li .name {
  color: #000000;
  line-height: 1.4;
  font-family: var(--font);
}
.i-category {
  background-color: #efefef;
}
.i-category .list .slick-list {
  overflow: visible;
}
.i-category .list li .bg {
  padding-top: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}
.i-category .list li .img {
  width: 90%;
  left: 5%;
  bottom: -15%;
}
.i-category .list li .content {
  width: 90%;
  left: 5%;
  top: 12%;
}
.i-category .list li .content .left {
  max-width: 920px;
}
.i-category .list li .content .Tit {
  color: #FFFFFF;
}
.i-category .list li .content .text {
  color: #FFFFFF;
  line-height: 2;
}
.i-category .list span.arrow {
  width: 57px;
  height: 57px;
  line-height: 57px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #8f94cc;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.i-category .list span.arrow:hover {
  background-color: #1825a0;
}
.i-category .list span.arrow img {
  vertical-align: middle;
}
.i-category .list span.arrow.arrow_l {
  left: -28px;
}
.i-category .list span.arrow.arrow_r {
  right: -28px;
}
.our-product {
  background-color: #efefef;
  padding: 160px 0 120px;
}
.our-product .list ul {
  margin: -20px;
}
.our-product .list li {
  padding: 20px;
}
.our-product .list li .mml-text {
  background-color: #FFFFFF;
  padding: 35px 30px;
  text-align: center;
  border-radius: 30px;
}
.our-product .list li .mml-text .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list li .mml-text .btns {
  left: 30px;
  right: 30px;
  bottom: 35px;
  -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;
}
.our-product .list li .mml-text .btns a {
  height: 55px;
  line-height: 55px;
  border-radius: 55px;
  padding: 0 36px;
  color: #FFFFFF;
  font-weight: 500;
  background-color: #15229f;
  background-image: -webkit-gradient(linear, left top, right top, from(#7c86da), to(#15229f));
  background-image: -webkit-linear-gradient(left, #7c86da, #15229f);
  background-image: -moz-linear-gradient(left, #7c86da, #15229f);
  background-image: linear-gradient(to right, #7c86da, #15229f);
}
.our-product .list li .mml-text .btns a img {
  display: inline-block;
  vertical-align: middle;
}
.our-product .list li .mml-text:hover .name {
  opacity: 0;
}
.our-product .list li .mml-text:hover .btns {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.our-honor {
  background: url(../images/honor-bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 140px 0;
}
.our-honor .left {
  width: 44%;
  padding-right: 6%;
  vertical-align: middle;
}
.our-honor .left .content {
  line-height: 2;
}
.our-honor .right {
  width: 56%;
  padding-left: 20px;
  vertical-align: middle;
}
.our-honor .list ul {
  margin: -15px;
}
.our-honor .list li {
  padding: 15px;
}
.our-news {
  padding: 130px 0 120px;
}
.our-news .left {
  padding-right: 10%;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
}
.our-news .right li + li {
  margin-top: 66px;
}
.our-news .right li .mml-text {
  padding: 55px 45px;
  border-radius: 40px;
  border: 2px solid #000000;
  position: relative;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
}
.our-news .right li .mml-text::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background-color: #15229f;
  background-image: -webkit-gradient(linear, left top, right top, from(#7c86da), to(#15229f));
  background-image: -webkit-linear-gradient(left, #7c86da, #15229f);
  background-image: -moz-linear-gradient(left, #7c86da, #15229f);
  background-image: linear-gradient(to right, #7c86da, #15229f);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.our-news .right li .mml-text .date {
  top: -30px;
  right: 45px;
  height: 60px;
  line-height: 60px;
  padding: 0 35px;
  border-radius: 30px;
  background-color: #FFFFFF;
  font-family: var(--font);
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}
.our-news .right li .mml-text .name {
  font-family: var(--font);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .right li .mml-text p {
  line-height: 2;
  opacity: .57;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .right li .mml-text:hover {
  border-color: transparent;
}
.our-news .right li .mml-text:hover::before {
  opacity: 1;
}
.our-news .right li .mml-text:hover .date {
  -webkit-box-shadow: 0 0 10px rgba(100, 100, 100, 0.24);
  box-shadow: 0 0 10px rgba(100, 100, 100, 0.24);
}
.our-news .right li .mml-text:hover .name {
  color: #FFFFFF;
}
.our-news .right li .mml-text:hover p {
  color: #FFFFFF;
}
.i-advantage {
  background-color: #efefef;
  padding: 70px 0;
}
.i-advantage .list ul {
  margin: -15px;
}
.i-advantage .list li {
  padding: 15px;
}
.i-advantage .list li .icon {
  width: 80px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.i-advantage .list li .icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #7178c2;
  background-image: -webkit-linear-gradient(135deg, #a3a9de, #7178c2);
  background-image: -moz-linear-gradient(135deg, #a3a9de, #7178c2);
  background-image: linear-gradient(-45deg, #a3a9de, #7178c2);
}
.i-advantage .list li .icon img {
  vertical-align: middle;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-advantage .list li .text {
  font-family: var(--font);
}
.i-advantage .list li:hover .icon::before {
  -webkit-animation: zm 2s linear infinite;
  -moz-animation: zm 2s linear infinite;
  animation: zm 2s linear infinite;
}
.i-advantage .list li:hover .icon img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.i-contact {
  color: #FFFFFF;
  background-color: #2b2c2d;
  padding: 50px 0;
}
.i-contact .Tit {
  font-size: 48px;
  font-family: var(--font);
  line-height: 1.2;
}
.i-contact .right {
  width: 60%;
  margin-top: 15px;
}
.i-contact .right li {
  width: 30%;
}
.i-contact .right li:nth-of-type(3) {
  width: -webkit-calc(40% - 90px);
  width: -moz-calc(40% - 90px);
  width: calc(40% - 90px);
}
.i-contact .right li:nth-of-type(4) {
  width: 90px;
}
.i-contact .right li input {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 50px;
  background-color: #363738;
  border: 0;
  padding-left: 40px;
  padding-right: 15px;
  background-position: left 10px center;
  background-repeat: no-repeat;
}
.i-contact .right li input[name="name"] {
  background-image: url(../images/form-icon1.jpg);
}
.i-contact .right li input[name="mail"] {
  background-image: url(../images/form-icon2.jpg);
}
.i-contact .right li input[name="content"] {
  background-image: url(../images/form-icon3.jpg);
}
.i-contact .right li input[type="submit"] {
  padding-left: 0;
  padding-right: 0;
  background-color: #1724a0;
}
#footer .foot-top {
  background: url(../images/foot-bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 50px 0 65px;
}
#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-block {
  max-width: 380px;
}
#footer .foot-top .foot-block h4 {
  margin: 20px 0;
  font-size: 36px;
  line-height: 1.4;
  font-family: var(--font);
}
#footer .foot-top .foot-block .text {
  line-height: 2;
}
#footer .foot-top .foot-block li {
  line-height: 30px;
  margin-bottom: 15px;
}
#footer .foot-top .foot-block li i {
  font-size: 0;
  width: 30px;
  text-align: center;
}
#footer .foot-top .foot-block li i img {
  vertical-align: middle;
}
#footer .foot-top .foot-block li a {
  padding-left: 40px;
  position: relative;
}
#footer .foot-top .foot-block li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 20px;
  border-bottom: 3px solid #FFFFFF;
  opacity: .2;
}
#footer .foot-top .foot-block li a:hover::before {
  border-color: #1724a0;
  opacity: 1;
}
#footer .foot-top .foot-block li p {
  padding-left: 55px;
}
#footer .foot-top .foot-block .social-links a {
  font-size: 18px;
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  font-family: FontAwesome;
}
#footer .foot-top .foot-block .social-links a + a {
  margin-left: 15px;
}
#footer .foot-bottom {
  color: #FFFFFF;
  background-color: #1724a0;
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}
#footer .foot-bottom img {
  height: 16px;
}
#goback {
  position: fixed;
  right: 25px;
  bottom: 120px;
  width: 43px;
  height: 43px;
  line-height: 43px;
  font-size: 0;
  text-align: center;
  color: #FFFFFF;
  background-color: #15229f;
  background-image: -webkit-gradient(linear, left top, right top, from(#7c86da), to(#15229f));
  background-image: -webkit-linear-gradient(left, #7c86da, #15229f);
  background-image: -moz-linear-gradient(left, #7c86da, #15229f);
  background-image: linear-gradient(to right, #7c86da, #15229f);
  cursor: pointer;
  display: none;
}
.font-18{
  line-height: 32px;
}
.font-20{
  line-height: 36px;
}
.font-30{
  line-height: 1.4;
}
.font-24{
  line-height: 44px;
}
#goback img {
  vertical-align: middle;
}
@media (max-width: 1550px) {
  .ui.container {
    width: 1440px;
  }
  #header .nav > .menu .menu-box ul.menu > li {
    margin: 0 35px;
  }
  #banner h2 {
    font-size: 50px;
  }
  .baseTit .Tag {
    font-size: 30px;
  }
  .baseTit .Tit {
    font-size: 50px;
  }
  .our-factory .list li .name {
    font-size: 24px;
  }
  .our-product .list li .mml-text .name {
    font-size: 20px;
  }
  .our-news .right li .mml-text .name {
    font-size: 24px;
    line-height: 44px;
  }
  .i-advantage .list li .text {
    font-size: 24px;
    line-height: 44px;
  }
  .i-contact .Tit {
    font-size: 40px;
    line-height: 1.2;
  }
  #footer .foot-top .foot-block h4 {
    font-size: 30px;
    line-height: 1.6;
  }
}
@media (max-width: 1440px) {
  .ui.container {
    width: 1230px;
  }
  #header .nav > .menu .menu-box ul.menu > li {
    margin: 0 25px;
  }
  #banner h2 {
    font-size: 40px;
  }
  .baseTit .Tag {
    font-size: 24px;
  }
  .baseTit .Tit {
    font-size: 40px;
  }
  .our-about .left {
    padding-right: 5%;
  }
  .our-about .right li .mml-text {
    padding: 30px;
  }
  .our-about .right ul {
    margin: -15px;
  }
  .our-about .right li {
    padding: 15px;
  }
  .our-factory .list ul {
    margin: -15px;
  }
  .our-factory .list li {
    padding: 15px;
  }
  .i-category .list li .bg {
    padding-top: 500px;
  }
  .our-product .list ul {
    margin: -15px;
  }
  .our-product .list li {
    padding: 15px;
  }
  .our-product .list li .mml-text {
    padding: 15px;
  }
  .our-product .list li .mml-text .img {
    margin-bottom: 15px;
  }
  .our-product .list li .mml-text .btns {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .our-product .list li .mml-text .btns a {
    padding: 0 30px;
  }
  .our-honor .list ul {
    margin: -15px;
  }
  .our-honor .list li {
    padding: 15px;
  }
  .our-news .right li .mml-text {
    padding: 40px 30px;
  }
  .our-news .right li .mml-text .date {
    right: 30px;
  }
  .i-contact .Tit {
    font-size: 34px;
    line-height: 1.4;
  }
}
@media (max-width: 1230px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav > .menu {
    height: auto;
  }
  #header .nav > .menu .menu-box ul.menu > li {
    margin: 0 20px;
    font-size: 16px;
  }
  #header .nav > .menu .logo {
    width: 80px;
  }
  .hover-language .zhuyu {
    font-size: 16px;
  }
  #banner p {
    font-size: 16px;
  }
  #banner .left {
    max-width: 600px;
  }
  .our-about .right li .mml-text .num {
    font-size: 60px;
  }
  .font-18 {
    font-size: 16px;
    line-height: 30px;
  }
  .our-factory .list li .name {
    font-size: 20px;
    line-height: 36px;
  }
  .i-advantage .list li .text {
    font-size: 20px;
    line-height: 36px;
  }
  .i-contact .left {
    width: 100%;
    float: none;
  }
  .i-contact .right {
    width: 100%;
    float: none;
  }
  #footer .foot-top .foot-block {
    max-width: 300px;
  }
  #footer .foot-top .foot-block h4 {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 768px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .bg {
    padding-top: 50%;
  }
  #banner p {
    margin-bottom: 20px;
  }
  #banner h2 {
    font-size: 34px;
  }
  #banner .btns a {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
  #banner .btns a::before {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    opacity: 1;
  }
  .baseTit .Tag {
    font-size: 24px;
  }
  .baseTit .Tit {
    font-size: 34px;
  }
  .our-about {
    padding: 60px 0;
    background-position: top 90% center;
    background-size: 20%;
  }
  .our-about .left {
    width: 100%;
    padding-right: 0;
    display: block;
  }
  .our-about .right {
    width: 100%;
    display: block;
    margin-top: 40px;
  }
  .our-about .box {
    margin-top: 20px;
  }
  .our-about .right li .mml-text .num {
    font-size: 50px;
  }
  .our-factory {
    padding: 60px 0;
  }
  .i-category .list .slick-list {
    overflow: hidden;
  }
  .i-category .list li .bg {
    padding-top: 50%;
  }
  .i-category .list li .img {
    bottom: 0;
  }
  .i-category .list span.arrow {
    display: none;
  }
  .our-product {
    padding: 120px 0 60px;
  }
  .our-honor {
    padding: 60px 0;
  }
  .our-honor .left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .our-honor .right {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .left {
    width: 100%;
    position: static;
    padding-right: 0;
  }
  .our-news .right {
    width: 100%;
    margin-top: 40px;
  }
  .i-advantage {
    padding: 60px 0;
  }
  .i-contact .Tit {
    font-size: 30px;
    line-height: 1.6;
  }
  .hide-1000 {
    display: none!important;
  }
  #goback {
    display: none!important;
  }
}
.font-16{
  line-height: 30px;
}
@media (max-width: 768px) {
  .ui.container {
    width: 100%;
  }
  #banner .bg {
    padding-top: 70%;
  }
  #banner h2 {
    font-size: 24px;
    line-height: 44px;
  }
  #banner p {
    font-size: 14px;
    line-height: 2;
  }
  .baseTit .Tag {
    font-size: 18px;
    line-height: 32px;
  }
  .baseTit .Tit {
    font-size: 24px;
    line-height: 44px;
  }
  .font-16 {
    font-size: 16px;
    line-height: 30px;
  }
  .font-18 {
    font-size: 18px;
    line-height: 32px;
  }
  .our-about .right li .mml-text .num {
    font-size: 40px;
    line-height: 1.2;
  }
  .our-about {
    background-image: none;
  }
  .our-factory .list li .name {
    font-size: 18px;
    line-height: 32px;
  }
  .our-product .list li .mml-text .name {
    font-size: 18px;
    line-height: 32px;
  }
  .our-news .right li .mml-text .name {
    font-size: 20px;
    line-height: 36px;
  }
  .our-news .right li .mml-text .date {
    font-size: 16px;
    top: -20px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 20px;
  }
  .our-news .right li + li {
    margin-top: 50px;
  }
  .i-advantage .list li .text {
    font-size: 18px;
    line-height: 32px;
  }
  .i-contact .Tit {
    font-size: 24px;
    line-height: 44px;
  }
  .i-contact .right ul {
    margin: -10px;
  }
  .i-contact .right li {
    width: 50%!important;
    padding: 10px;
  }
  .i-contact .right li input {
    font-size: 14px;
    line-height: 2;
  }
  #footer .foot-top {
    padding: 40px 0 20px;
  }
  #footer .foot-top .foot-content {
    display: block;
  }
  #footer .foot-top .foot-block {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #footer .foot-bottom img {
    height: 14px;
  }
}
@media (max-width: 500px) {
  #banner .bg {
    padding-top: 100%;
  }
  .our-about .right li .mml-text {
    padding: 20px;
    border-radius: 20px;
  }
  .our-factory .list li .img {
    margin-bottom: 20px;
    border-radius: 20px;
  }
  .i-category .list li .bg {
    display: none;
  }
  .i-category .list li .img {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
  .i-category .list li .content {
    position: static;
    width: 100%;
  }
  .i-category .list li .content .Tit {
    color: #000000;
  }
  .i-category .list li .content .text {
    color: #000000;
  }
  .our-product {
    padding: 60px 0;
  }
  .our-product .list li .mml-text {
    border-radius: 20px;
  }
  .our-news .right li .mml-text {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .our-news .right li .mml-text .date {
    right: 20px;
  }
  .i-contact .right li {
    width: 100%!important;
  }
  .i-contact .right li input {
    height: 40px;
  }
}




.i-tag {
  font-size: 18px;
  line-height: 32px;
  color: #898989;
  display: inline-block;
  position: relative;
}
.i-tag::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #898989;
}

.i-title {
  font-family: var(--font);
}

.more {
  background: #444444;
  color: white;
  font-size: 20px;
  height: 55px;
  line-height: 55px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  padding: 0 40px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.more::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  background: #15116f;
}
.more:hover::after {
  width: 110%;
}

@media (max-width:1000px) {
  .more {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
}

.inner-banner {
  height: 550px;
  background-size: cover;
  background-position: center center;
  /*padding-top: 170px;
  padding-bottom: 280px; */
  position: relative;
}
.inner-banner::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}
.inner-banner .ui.container{
  position: absolute;
  left: 50%;
  bottom: 7%;
   -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  padding: 0 100px;
  z-index: 3;
}
.inner-banner .box .left {
  vertical-align: bottom;
  padding-right: 10%;
}
.inner-banner .box .left span.h2 {
  font-weight: normal;
  font-family: var(--font);
  color: #ffffff;
}
.inner-banner .box .right {
  vertical-align: bottom;
}
.inner-banner .box .right .mbx {
  text-align: right;
  font-size: 20px;
  color: white;
  /*margin-bottom: 1.5em;*/
  line-height: 1.6;
}
.inner-page span.txt { 
  margin-bottom: .5em;
}
.inner-page .marginBox {
  /*margin-top: -260px;*/
  background: white;
  position: relative;
  z-index: 1;
  width: 100%;
}
.inner-page.newdet-page .marginBox,
.inner-page.news-page .marginBox{
  margin-top: -330px;
}
.inner-page .marginBox:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: -1;
  background: inherit;
}
.inner-page .marginTop {
  width: 118%;
}
.inner-page .m-page {
  margin-top: 50px;
  text-align: center;
  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 .m-page a,
.inner-page .m-page span,
.inner-page .m-page .next,
.inner-page .m-page .prev {
  margin: 0 15px;
  padding-bottom: 5px;
  font-size: 20px;
  color: #242424;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  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;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page .next,
.inner-page .m-page .prev {
  font-size: 35px;
  color: #666;
}
.inner-page .m-page > div {
  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 .m-page a:hover,
.inner-page .m-page span.current {
  border-bottom-color: #242424;
}
.inner-page .m-page .prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.inner-page .m-page .next,
.inner-page .m-page .prev {
  border-color: #ccc;
  cursor: pointer;
  cursor: hand;
}
.inner-page .m-page .next img,
.inner-page .m-page .prev img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page .next:hover,
.inner-page .m-page .prev:hover {
  background-color: #051399;
}
.inner-page .m-page .next:hover img,
.inner-page .m-page .prev:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.inner-page #productList ul {
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;*/
  /*border-left: 1px solid #bfbfbf;*/
  margin: -15px;
}
/*.inner-page #productList ul {
  border-bottom: 1px solid #bfbfbf;
}*/
.inner-page #productList ul li {
  text-align: center;
  
  overflow: hidden;
  
  position: relative;
    
  padding: 15px;
  
}
.inner-page #productList ul li .box{
  border: 1px solid #ccc;
  overflow: hidden;
}
 
.inner-page #productList ul.relatedlist li{
 
  border: none;
}
.inner-page #productList ul.relatedlist li .box1{
  border: 1px solid #ccc;
  margin-right: -2px;
}
/*.inner-page #productList ul.relatedlist li .box1:hover{
  border-color: #051399;
  z-index: 5;
  position: relative;
}*/
/*.inner-page #productList ul li:nth-child(4n-3){
  border-left: 1px solid #bfbfbf;
}*/
/*.inner-page #productList ul.slick-slider {
  border-bottom: none;
}
.inner-page #productList ul.slick-slider li {
  border-bottom: 1px solid #bfbfbf;
}*/
.inner-page #productList ul li:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #051399;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 0;
  display: none;
}
.inner-page #productList ul li a.img-box {
  display: block;
  /*padding: 50px 5% 0;*/
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.inner-page #productList ul li a.img-box img {
  width: auto;
  margin: 0 auto;
  display: block;
   background: #ececec;
}
.inner-page #productList ul li a.img-box:hover img{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.inner-page #productList ul li .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.inner-page #productList ul li .btn 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  margin: 0 5px;
  border: 1px solid #ccc;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page #productList ul li .btn a img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page #productList ul li .btn a:hover {
  border-color: #15116f;
  background-color: #15116f;
}
.inner-page #productList ul li .btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.inner-page #productList ul li span.h6 {
  /*font-weight: bold;*/
  font-size: 22px;
    color: #332f2c;
    height: 70px;
    line-height: 40px;
    margin: 0.7em 0 0;
    display: block;
    padding: 0 1em;
    position: relative;
    z-index: 2;
}
.font-17{
  line-height: 32px;
  font-size: 18px!important;
}
.font-21{
  font-size: 22px!important;
  line-height: 40px;
}
.inner-page #productList ul.slick-slider li span.h6 {
  height: 3.5em;
  overflow: hidden;
}
.inner-page #productList ul li a.link {
  font-size: 18px;
  color: white;
  height: 2.44444444em;
  text-align: center;
  background-color: #c1c1c1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(110%);
  -moz-transform: translateY(110%);
  -ms-transform: translateY(110%);
  transform: translateY(110%);
  width: 100%;
  z-index: 2;
}
.inner-page #productList ul li a.link em {
  position: relative;
  display: inline-block; 
  line-height: 1;
}
 
.inner-page #productList ul li a.link:hover {
  background-color: #15116f;
}
.inner-page #productList ul li:hover {
  z-index: 1;
  /*border-color: #051399;*/
}
.inner-page #productList ul li:hover:after {
  opacity: 1;
}
.inner-page #productList ul li:hover a.link {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.inner-page #productList ul li .line i{
  position: absolute;
      -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
    background: #15116f;
    z-index: 4;
}
.inner-page #productList ul li .line i:nth-child(1){
      left: 0;
    top: 0;
    width: 1px;
    height: 0;
}
.inner-page #productList ul li .line i:nth-child(2){
  left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}
.inner-page #productList ul li .line i:nth-child(3){
      right: 0;
    bottom: 0;
    width: 1px;
    height: 0;
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s;
}
.inner-page #productList ul li .line i:nth-child(4){
      right: 0;
    top: 0;
    width: 0;
    height: 1px;
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    transition-delay: .6s;
}
.inner-page #productList ul li:hover .line i:nth-child(1) {
    height: 100%;
}
.inner-page #productList ul li:hover .line i:nth-child(2) {
    width: 100%;
}
.inner-page #productList ul li:hover .line i:nth-child(3) {
    height: 100%;
}
.inner-page #productList ul li:hover .line i:nth-child(4) {
    width: 100%;
}
.inner-page .sideBarBox .sideBarLeft {
  width: 70%;
  padding-right: 3%;
}
.inner-page .sideBarBox .sideBarRight {
  width: 30%;
  padding: 25px;
  background: #eee;
}
.inner-page .sideBarBox .sideBarRight span.h5 {
  font-size: 20px;
  font-weight: bold;
  color: #242424;
  line-height: 1.2;
  margin-bottom: .8em;
  display: block;
  margin-top: 2em;
}
.inner-page .sideBarBox .sideBarRight span.h5:first-child {
  margin-top: 0;
}
.inner-page .sideBarBox .sideBarRight form.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 50px;
  height: 50px;
  border: 1px solid #bfbfbf;
  background-color: white;
  font-size: 18px;
  color: #8e8e8e;
  padding: 0 .7em;
}
.inner-page .sideBarBox .sideBarRight form.search input {
  border: none;
  background-color: transparent;
  width: 100%;
}
.inner-page .sideBarBox .sideBarRight form.search input[type="submit"] {
  width: 30px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../images/icon-search3.png") center center no-repeat;
}
.inner-page .sideBarBox .sideBarRight .nav ul li {
  font-size: 18px;
  line-height: 1.2;
  color: #8e8e8e;
  padding: .5em 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-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarRight .nav ul li:before {
  content: '';
  border: 3px solid #051399;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: .5em;
  border-radius: 100%;
}
.inner-page .sideBarBox .sideBarRight .nav ul li:hover {
  color: #051399;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li {
  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;
  padding: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li a.img-box {
  width: 34%;
  margin-right: 15px;
  height: 80px;
  background-size: cover;
  background-position: center center;
  flex-shrink: 0;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content time {
  display: block;
  font-size: 16px;
  color: #8e8e8e;
  line-height: 2;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 2;
  margin-top: .3em;
  display: block;
}
.inner-page .sideBarBox .sideBarRight .imgBox {
  margin-top: 30px;
  height: 460px;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.inner-page .sideBarBox .sideBarRight .imgBox .text {
  font-size: 16px;
  color: white;
  line-height: 2;
  padding: 2em;
}
.inner-page .form ul {
  margin: -15px -7px;
}
.inner-page .form ul li {
  padding: 15px 7px;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 32px;
  border-radius: 3px;
  padding: .6em 1em;
  border: 1px solid #ccc;
}
.inner-page .form ul li input::-webkit-input-placeholder, .inner-page .form ul li textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input:-moz-placeholder, .inner-page .form ul li textarea:-moz-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input::-moz-placeholder, .inner-page .form ul li textarea::-moz-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input:-ms-input-placeholder, .inner-page .form ul li textarea:-ms-input-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input::placeholder,
.inner-page .form ul li textarea::placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li textarea {
  height: 150px;
}
.inner-page .form ul li input[type="submit"] {
  border: none;
  background: #161616;
  color: white;
  /*font-weight: bold;*/
  font-size: 18px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .form ul li input[type="submit"]:hover {
  background: #15116f;
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.seoBox span.txt {
  letter-spacing: .2em;
  margin-bottom: .5em;
}
.seoBox span.h3 {
  font-weight: bold;
  font-size: 50px;
  color: #242424;
  line-height: 1.8;
}
.seoBox .seoAbout .left {
  width: 45%;
  padding-right: 3%;
}
.seoBox .seoAbout .right {
  width: 55%;
}
.seoBox .seoAbout .right .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
}
.seoBox .seoHonor {
  padding: 65px 0 100px;
}
.seoBox .seoHonor .list ul {
  margin: -15px;
}
.seoBox .seoHonor .list ul li {
  padding: 15px;
}
.seoBox .seoHonor .list ul li a {
  display: block;
  position: relative;
}
.seoBox .seoHonor .list ul li a img {
  display: block;
  width: 100%;
}
.seoBox .seoHonor .list ul li a span {
  height: 40px;
  width: 40px;
  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%);
  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;
  background-color: #051399;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoHonor .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.seoBox .seoHonor .list ul li a:hover span {
  opacity: 1;
}
.seoBox .seoNews {
  padding-bottom: 80px;
}
.seoBox .seoNews .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.seoBox .seoNews .top .btn {
  margin-right: -12px;
}
.seoBox .seoNews .top .btn div {
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  border: 1px solid #bfbfbf;
  margin-right: 12px;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoNews .top .btn div img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoNews .top .btn div.next img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.seoBox .seoNews .top .btn div:hover {
  background: #051399;
  border-color: #051399;
}
.seoBox .seoNews .top .btn div:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.seoBox .seoNews .bottom {
  margin-top: 50px;
}
.seoBox .seoNews .bottom .list ul {
  margin: -18px;
}
.seoBox .seoNews .bottom .list ul li {
  padding: 18px;
}
.seoBox .seoNews .bottom .list ul li .box {
  padding: 22px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoNews .bottom .list ul li .box a.img-box {
  display: block;
}
.seoBox .seoNews .bottom .list ul li .box a.img-box span {
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  background-color: #051399;
  line-height: 2em;
  height: 2em;
  padding: 0 1.2em;
  border-radius: 1em;
  display: inline-block;
  position: absolute;
  right: 1em;
  top: 1em;
}
.seoBox .seoNews .bottom .list ul li .box time {
  font-size: 16px;
  display: block;
  color: #8e8e8e;
  line-height: 2;
  margin: 1.3em 0;
}
.seoBox .seoNews .bottom .list ul li .box span.h6 {
  font-weight: bold;
  font-size: 24px;
  color: #242424;
  line-height: 2;
  margin-bottom: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  width:400px;
  display:inline-block;
  max-width: 100%;
}
.seoBox .seoNews .bottom .list ul li .box span.h6:hover {
  color: #051399;
}
.seoBox .seoNews .bottom .list ul li .box a.link {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid #051399;
  color: #051399;
  position: relative;
}
.seoBox .seoNews .bottom .list ul li .box a.link:after {
  content: '';
  border: 4px solid #051399;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.seoBox .seoNews .bottom .list ul li .box:hover {
  border-color: #051399;
}
.product-cat-page {
  padding-bottom: 95px;
}
.product-cat-page .marginBox {
  display: inline-block;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}
.product-cat-page .slide {
  margin-top: 90px;
}
.product-cat-page .slide .left {
  vertical-align: middle;
  padding-right: 3%;
  position: relative;
}
.product-cat-page .slide .left span.tag {
  line-height: 1;
  display: block;
}
.product-cat-page .slide .left span.h2 {
  margin-top: -2.2em;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 1em;
}
.product-cat-page .slide .left .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  padding-right: 1em;
  max-height: 320px;
  overflow: auto;
  margin: 1em 0 3em;
}
.product-cat-page .slide .left a.more {
  background: #242424;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-cat-page .slide .left a.more:hover {
  background: #051399;
}
.product-cat-page .slide .right {
  vertical-align: middle;
  padding-left: 3%;
  position: relative;
}
.product-cat-page .slide .right a.img {
  display: block;
  height: 800px;
  background-size: cover;
  background-position: center center;
}
.product-cat-page .slide:nth-child(even) .left {
  padding-right: 0;
  padding-left: 3%;
  left: 50%;
}
.product-cat-page .slide:nth-child(even) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 3%;
}
.product-page .marginBox {
  padding: 0 !important;
}
.product-page .marginTop {
  padding: 30px 7% 20px 3.5%;
  background: #e8e3e0;
}
.product-page .marginTop .left {
  width: 45%;
  vertical-align: middle;
}
.product-page .marginTop .left .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
}
.product-page .marginTop .right {
  width: 55%;
  vertical-align: middle;
  padding-left: 2%;
}
.product-page {
  padding: 60px 0 100px;
}
.prodet-page .marginBox {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
}
.prodet-page .prodet-1 {
  padding-top: 90px;
}
.prodet-page .prodet-1 .left {
  width: 53%;
  vertical-align: middle;
}
.prodet-page .prodet-1 .left .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-page .prodet-1 .left img {
  border: 1px solid #ccc;
  width: 100%;
}
.prodet-page .prodet-1 .left .smallImg {
  padding-right: 24px;
  width: 20.5%;
}
.prodet-page .prodet-1 .left .smallImg ul {
  margin: -12px;
}
.prodet-page .prodet-1 .left .smallImg ul li {
  padding: 12px;
}
.prodet-page .prodet-1 .left .smallImg ul .slick-current li img {
  border-color: #15116f;
}
.prodet-page .prodet-1 .left .bigImg {
  width: 79.5%;
}
.prodet-page .prodet-1 .left .bigImg .img {
  position: relative;
  display: block;
}
.prodet-page .prodet-1 .left .bigImg .img span {
  width: 40px;
  height: 40px;
  background-color: #15116f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 12px;
}
.prodet-page .prodet-1 .left .bigImg .img span img {
  border: none;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: auto;
}
.prodet-page .prodet-1 .right {
  width: 47%;
  padding-left: 48px;
  vertical-align: middle;
}
.prodet-page .prodet-1 .right h1 {
  display: block;
  font-size: 36px;
  font-family: 'Baskerville';
  line-height: 1.4;
  /*font-weight: bold;*/
}
.prodet-page .prodet-1 .right .text {
  font-size: 18px;
  color: #626262;
  padding-right: 1em;
  line-height: 1.8;
  margin: 1.5em 0;
  overflow: auto;
  /*max-height: 8.4em;*/
}
.prodet-page .prodet-1 .right .share {
  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;
  color: #bfbfbf;
}
.prodet-page .prodet-1 .right .share span.h6 {
  font-size: 20px;
}
.prodet-page .prodet-1 .right .share a {
  font-size: 18px;
  margin-left: 1.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .right .share a:hover {
  color: #051399;
}
.prodet-page .prodet-1 .right a.more {
  margin-top: 1em;
}
.prodet-page .prodet-2 {
  padding: 80px 0 120px;
}
.prodet-page .prodet-2 .options {
  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 #c3c3c3;
}
.prodet-page .prodet-2 .options span {
  font-size: 26px;
    font-family: 'Baskerville';
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #ccc;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options span i {
  color: #bfbfbf;
}
.prodet-page .prodet-2 .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}
.prodet-page .prodet-2 .ret {
  margin-top: 60px;
  font-size: 20px;
  color: #242424;
  line-height: 1.6;
}

.prodet-page .prodet-3 {
  text-align: center;
  padding-bottom: 90px;
}
.prodet-page .prodet-3 span.txt {
  margin-bottom: .3em;
}
.prodet-page .prodet-3 .list {
  margin: 45px 0;
  /*border-right: 1px solid #bfbfbf;*/
}
.prodet-page .prodet-3 .dots {
  text-align: center;
}
.prodet-page .prodet-3 .dots 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.prodet-page .prodet-3 .dots ul li {
  margin: 0 7px;
}
.prodet-page .prodet-3 .dots ul li button {
  font-size: 20px;
  line-height: 36px;
  color: #242424;
  width: 36px;
  height: 36px;
  border: none;
  border-bottom: 1px solid transparent;
  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;
  -moz-transition: .5s;
  transition: .5s;
  background-color: transparent;
}
.prodet-page .prodet-3 .dots ul li.slick-active button {
  border-color: #242424;
}
.manufacturing-page .marginBox {
  padding: 0 !important;
}
.manufacturing-page .marginTop .list ul li img {
  display: block;
  width: 100%;
}
.manufacturing-page .marginTop .list ul .slick-dots {
  position: absolute;
  bottom: 5%;
  left: 0;
  text-align: center;
  width: 100%;
}
.manufacturing-page .marginTop .list ul .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.manufacturing-page .marginTop .list ul .slick-dots li button {
  display: none;
}
.manufacturing-page .marginTop .list ul .slick-dots li.slick-active {
  background-color: white;
}
.manufacturing-page .manufacturing-1 {
  padding: 90px 0 70px;
}
.manufacturing-page .manufacturing-1 .left {
  padding-right: 3%;
  vertical-align: bottom;
}
.manufacturing-page .manufacturing-1 .left .text {
font-size: 18px;
    color: #8e8e8e;
    line-height: 1.6;
  margin: 1em 0 2em;
}
.manufacturing-page .manufacturing-1 .right {
  padding-left: 3%;
  vertical-align: bottom;
}
.manufacturing-page .manufacturing-1 .right .list ul {
  margin: -40px -15px;
  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-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.manufacturing-page .manufacturing-1 .right .list ul li {
  padding: 40px 15px;
  width: auto;
  min-width: 41%;
}
.manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
  font-weight: bold;
  font-size: 60px;
  color: #15116f;
  display: block;
}
.manufacturing-page .manufacturing-1 .right .list ul li span.h6 sub {
  font-size: 0.78333333em;
  font-weight: normal;
  vertical-align: baseline;
}
.manufacturing-page .manufacturing-1 .right .list ul li span.h6 sup {
  font-size: 0.46666667em;
  vertical-align: middle;
}
.manufacturing-page .manufacturing-1 .right .list ul li p {
  font-size: 20px;
  color: #242424;
}
.manufacturing-page .manufacturing-2 {
  padding-bottom: 90px;
}
.manufacturing-page .manufacturing-2 .list ul {
  margin: -23px;
}
.manufacturing-page .manufacturing-2 .list ul li {
  padding: 23px;
}
.manufacturing-page .manufacturing-2 .list ul li a {
  display: block;
}
.manufacturing-page .manufacturing-2 .list ul li a img {
  display: block;
  width: 100%;
}
.manufacturing-page .manufacturing-2 .list ul li a span {
  display: block;
font-size: 20px;
    text-transform: capitalize;
  padding: .5em;
  text-align: center;
  background-color: #15116f;
  color: white;
}
.manufacturing-page .manufacturing-3 {
  padding: 95px 0 105px;
  background: url("../images/manufacturing-3-bg.jpg") center center no-repeat;
  background-size: cover;
}
.manufacturing-page .manufacturing-3 .box {
  margin-left: 55%;
}
.manufacturing-page .manufacturing-3 .box .text {
    font-size: 18px;
    color: #626262;
    line-height: 1.8;
  padding-right: 1em;
  max-height: 11.2em;
  margin-top: 1.3em;
  overflow: auto;
}
.manufacturing-page .manufacturing-4 {
  padding-top: 100px;
  text-align: center;
}
.manufacturing-page .manufacturing-4 .list {
  margin-top: 50px;
  position: relative;
}
.manufacturing-page .manufacturing-4 .list:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #d5d1d8;
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: -1;
}
.manufacturing-page .manufacturing-4 .list ul {
  margin: 0 -8px;
}
.manufacturing-page .manufacturing-4 .list ul li {
  padding: 0 8px;
}
.manufacturing-page .manufacturing-4 .list ul li a.img-box {
  display: block;
  border: 1px solid #bfbfbf;
}
.manufacturing-page .manufacturing-4 .list ul li span.h6 {
  font-size: 24px;
  color: #242424;
  padding: 1.2em 0 .8em;
  display: block;
  line-height: 1.2;
  position: relative;
}
.manufacturing-page .manufacturing-4 .list ul li span.h6:after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #051399;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.manufacturing-page .manufacturing-5 {
  padding: 120px 0 80px;
  text-align: center;
}
.manufacturing-page .manufacturing-5 .list {
  margin-top: 50px;
}
.manufacturing-page .manufacturing-5 .list ul {
  margin: -15px;
}
.manufacturing-page .manufacturing-5 .list ul li {
  padding: 15px;
}
.manufacturing-page .manufacturing-5 .list .slick-track {
  margin-left: 0;
}
.manufacturing-page .manufacturing-6 {
  padding: 100px 0 75px;
  background: url("../images/manufacturing-6-bg.jpg") center center no-repeat;
  background-size: cover;
}
.manufacturing-page .manufacturing-6 .left {
  vertical-align: bottom;
}
.manufacturing-page .manufacturing-6 .left .img {
  margin-right: -7%;
  margin-left: -5%;
}
.manufacturing-page .manufacturing-6 .right {
  vertical-align: bottom;
  padding-left: 4%;
  margin-bottom: 25px;
}
.manufacturing-page .manufacturing-6 .right .slide {
  margin-top: 60px;
}
.manufacturing-page .manufacturing-6 .right .slide:first-child {
  margin-top: 0;
}
.manufacturing-page .manufacturing-6 .right span.h4 {
  font-weight: bold;
  font-size: 26px;
  color: #242424;
  line-height: 2;
  display: block;
  margin-bottom: 1.2em;
}
.manufacturing-page .manufacturing-6 .right .color {
  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;
}
.manufacturing-page .manufacturing-6 .right .color span {
  font-size: 20px;
  padding: .4em;
  border-radius: 2em;
  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;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
  margin-right: .5em;
}
.manufacturing-page .manufacturing-6 .right .color span i {
  width: 2.2em;
  height: 2.2em;
  border-radius: 100%;
  margin-right: .5em;
  display: inline-block;
  vertical-align: middle;
}
.manufacturing-page .manufacturing-6 .right .color span em {
  margin-right: 2em;
}
.manufacturing-page .manufacturing-6 .right .color span:hover,
.manufacturing-page .manufacturing-6 .right .color span.active {
  background: white;
}
.manufacturing-page .manufacturing-6 .right .select {
  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-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.manufacturing-page .manufacturing-6 .right .select span {
  font-size: 18px;
  color: #1b1b1b;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  cursor: hand;
}
.manufacturing-page .manufacturing-6 .right .select span i {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-size: auto 80%;
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.manufacturing-page .manufacturing-6 .right .select span.active i,
.manufacturing-page .manufacturing-6 .right .select span:hover i {
  background-color: white;
}
.manufacturing-page .manufacturing-6 .right a.more {
  margin-top: 2.5em;
}
.manufacturing-page .manufacturing-7 {
  padding: 100px 0 0px;
  text-align: center;
}
.manufacturing-page .manufacturing-5 .text,
.manufacturing-page .manufacturing-7 .text {
  max-width: 1200px;
  display: block;
    font-size: 18px;
    color: #626262;
    line-height: 1.6;
  margin: 1em auto 2em;
}
.advantage-page .marginBox {
  padding: 0 !important;
}
.advantage-page .advantage-1 {
  padding-top: 90px;
}
.advantage-page .advantage-1 .left {
  width: 45%;
  padding-right: 5%;
}
.advantage-page .advantage-1 .left span.h1 {
  font-weight: bold;
  font-size: 217px;
  color: #051399;
  line-height: 1;
  display: block;
  margin-left: -0.08em;
}
.advantage-page .advantage-1 .left span.h5 {
  font-size: 30px;
  font-weight: bold;
  color: #242424;
  line-height: 2;
  max-width: 390px;
  display: block;
}
.advantage-page .advantage-1 .right {
  width: 55%;
}
.advantage-page .advantage-1 .right .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  margin-bottom: 2.5em;
}
.advantage-page .advantage-1 .right a.more {
  background-color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.advantage-page .advantage-1 .right a.more:hover {
  background-color: #051399;
}
.advantage-page .advantage-2 {
  padding: 115px 0 100px;
}
.advantage-page .advantage-2 .list ul {
  margin: 0 -20px;
}
.advantage-page .advantage-2 .list ul li {
  padding: 0 20px;
}
.advantage-page .advantage-2 .list ul li img {
  display: block;
  margin: 0 auto;
}
.advantage-page .advantage-3 .left {
  vertical-align: middle;
  width: 45%;
  padding-right: 5%;
}
.advantage-page .advantage-3 .left .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  margin-top: 1.6em;
}
.advantage-page .advantage-3 .right {
  width: 55%;
  vertical-align: middle;
}
.advantage-page .advantage-3 .right .img {
  height: 470px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.advantage-page .advantage-4 {
  padding-top: 130px;
  text-align: center;
}
.advantage-page .advantage-4 .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  max-width: 1060px;
  margin: 1em auto 2.2em;
}
.advantage-page .advantage-4 .list ul {
  margin: -8px;
}
.advantage-page .advantage-4 .list ul li {
  padding: 8px;
}
.advantage-page .advantage-4 .list ul li img {
  display: block;
  width: 100%;
}
.advantage-page .advantage-5 {
  padding: 85px 0 100px;
}
.advantage-page .advantage-5 .list ul {
  margin: 0 -20px;
}
.advantage-page .advantage-5 .list ul li {
  padding: 0 20px;
}
.advantage-page .advantage-5 .list ul li img {
  display: block;
  margin: 0 auto;
}
.advantage-page .advantage-6 {
  padding-bottom: 80px;
  text-align: center;
}
.advantage-page .advantage-6 .list {
  margin: 60px 0 30px;
}
.advantage-page .advantage-6 .list ul li {
  padding: 30px 0;
  border-top: 1px solid #bfbfbf;
  width: 100% !important;
}
.advantage-page .advantage-6 .list ul li .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;
  text-align: left;
}
.advantage-page .advantage-6 .list ul li .box .left {
  width: 25%;
  padding-right: 3%;
  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;
}
.advantage-page .advantage-6 .list ul li .box .left .img {
  width: 105px;
  height: 105px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  margin-right: 25px;
}
.advantage-page .advantage-6 .list ul li .box .left .content span.h6 {
  font-weight: bold;
  font-size: 18px;
  color: #242424;
  display: block;
  line-height: 1.2;
}
.advantage-page .advantage-6 .list ul li .box .left .content span.em {
  font-size: 20px;
  color: #051399;
  margin-top: .3em;
  display: block;
  line-height: 1.2;
}
.advantage-page .advantage-6 .list ul li .box .right {
  width: 75%;
}
.advantage-page .advantage-6 .list ul li .box .right .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
}
.advantage-page .advantage-6 .dots {
  text-align: center;
}
.advantage-page .advantage-6 .dots 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.advantage-page .advantage-6 .dots ul li {
  margin: 0 7px;
}
.advantage-page .advantage-6 .dots ul li button {
  font-size: 20px;
  color: #242424;
  width: 36px;
  height: 36px;
  border: none;
  border-bottom: 1px solid transparent;
  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;
  -moz-transition: .5s;
  transition: .5s;
  background-color: transparent;
}
.advantage-page .advantage-6 .dots ul li.slick-active button {
  border-color: #242424;
}
.about-page .marginBox {
  padding: 0 !important;
}
.about-page .marginBox .marginTop {
  position: relative;
}
.about-page .marginBox .marginTop > img{
  width: 100%;
}
.about-page .marginBox .marginTop .play {
  width: 70px;
  height: 70px;
  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%);
  border-radius: 100%;
  z-index: 1;
  border: 1px solid white;
  cursor: pointer;
  cursor: hand;
}
.about-page .marginBox .marginTop .play i {
  border-left: 20px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  position: absolute;
  left: 53%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .marginBox .marginTop .play:after,
.about-page .marginBox .marginTop .play:before {
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 0 solid rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: bks 2s linear infinite;
  -moz-animation: bks 2s linear infinite;
  animation: bks 2s linear infinite;
}
.about-page .marginBox .marginTop .play:before {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.about-page .about-1 {
  padding: 80px 0;
  text-align: center;
}
.about-page .about-1 .ui.container {
  max-width: 1400px;
}
.about-page .about-1 .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  margin: 1em 0 1.5em;
  max-height: 360px;
    padding-right: 20px;
    overflow-y: auto;
    margin-bottom: 30px;
}
.about-page .about-1 .text em {
  color: #242424;
  font-weight: 500;
}
.about-page .about-2 {
  padding-bottom: 80px;
}
.about-page .about-2 .ui.container {
  max-width: 1410px;
}
.about-page .about-2 .list ul {
  margin: -20px;
}
.about-page .about-2 .list ul li {
  padding: 20px;
}
.about-page .about-2 .list ul li .box {
  text-align: center;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.about-page .about-2 .list ul li .box a.img {
  display: block;
}
.about-page .about-2 .list ul li .box a.img img {
  width: 100%;
}
.about-page .about-2 .list ul li .box .content {
  padding: 25px;
}
.about-page .about-2 .list ul li .box .content span.h3 {
  font-family: 'Baskerville';
    font-size: 28px;
  color: #242424;
  line-height: 2;
}
.about-page .about-2 .list ul li .box .content .text {
  font-size: 20px;
  color: #626262;
  line-height: 36px;
  margin-top: .5em;
  min-height: 3em;
}
.about-page .about-3 {
  padding-bottom: 135px;
  text-align: center;
  position: relative;
}
.about-page .about-3:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 32%;
  background: url("../images/about-3-bg.jpg") center top no-repeat;
  background-size: cover;
  z-index: -1;
}
.about-page .about-3 .ui.container {
  max-width: 1410px;
}
.about-page .about-3 .options {
  margin-top: 70px;
}
.about-page .about-3 .options ul {
  margin: -10px;
}
.about-page .about-3 .options ul li {
  padding: 10px;
}
.about-page .about-3 .options ul li span {
  font-weight: bold;
  font-size: 22px;
  color: #332f2c;
  line-height: 1.2;
  padding-bottom: 1em;
  border-bottom: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
  text-align: left;
  cursor: pointer;
  cursor: hand;
}
.about-page .about-3 .options ul .slick-current li span {
  border-bottom-color: #15116f;
  color: #15116f;
}
.about-page .about-3 .ret {
  margin-top: 80px;
  padding: 0 5%;
}
.about-page .about-3 .ret ul {
  margin: -5px;
}
.about-page .about-3 .ret ul li {
  padding: 5px;
}
.about-page .about-3 .ret .left {
  vertical-align: middle;
}
.about-page .about-3 .ret .left .img {
  height: 335px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.about-page .about-3 .ret .right {
  vertical-align: middle;
  padding-left: 0%;
  text-align: left;
}
.about-page .about-3 .ret .right span.txt {
  font-size: 30px;
  font-weight: bold;
  text-transform: unset;
  color: #15116f;
}
.about-page .about-3 .ret .right span.h3 {
  font-size: 20px;
  color: #626262;
  margin-bottom: 1.5em;
  display: block;
  line-height: 1.6;
}
.about-page .about-3 .ret .right .btn div {
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  border: 1px solid #bfbfbf;
  margin-right: 12px;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .ret .right .btn div img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .ret .right .btn div.next img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-page .about-3 .ret .right .btn div:hover {
  background: #15116f;
  border-color: #15116f;
}
.about-page .about-3 .ret .right .btn div:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-4 {
  text-align: center;
}
.about-page .about-4 .list {
  margin-top: 50px;
  padding: 0 10%;
  overflow: hidden;
}
.about-page .about-4 .list ul .slick-list {
  overflow: unset;
}
.about-page .about-4 .list ul li a {
  display: block;
  position: relative;
}
.about-page .about-4 .list ul li a img {
  width: 100%;
}
.about-page .about-4 .list ul li a span {
  height: 50px;
  width: 50px;
  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;
  background-color: #051399;
  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%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.about-page .about-4 .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-4 .list ul li a:hover span {
  opacity: 1;
}
.about-page .about-4 .list ul .slick-slide {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
  position: relative;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.about-page .about-4 .list ul .slick-slide li {
  -webkit-transform: translateX(65%);
  -moz-transform: translateX(65%);
  -ms-transform: translateX(65%);
  transform: translateX(65%);
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.about-page .about-4 .list ul .slick-active {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.about-page .about-4 .list ul .slick-active li {
  -webkit-transform: translateX(25%);
  -moz-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}
.about-page .about-4 .list ul .slick-active.slick-current {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
.about-page .about-4 .list ul .slick-active.slick-current li {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.about-page .about-4 .list ul .slick-active.slick-current + div {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.about-page .about-4 .list ul .slick-active.slick-current + div li {
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%);
}
.about-page .about-4 .list ul .slick-active.slick-current + div + div {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
}
.about-page .about-4 .list ul .slick-active.slick-current + div + div li {
  -webkit-transform: translateX(-65%);
  -moz-transform: translateX(-65%);
  -ms-transform: translateX(-65%);
  transform: translateX(-65%);
}
.about-page .about-5 {
  padding: 50px 0 100px;
  text-align: center;
}
.about-page .about-5 .options {
  margin-top: 65px;
  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 #c3c3c3;
}
.about-page .about-5 .options span {
  font-size: 20px;
  font-weight: bold;
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #c3c3c3;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .options span i {
  color: #bfbfbf;
}
.about-page .about-5 .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}
.about-page .about-5 .ret {
  margin-top: 55px;
  position: relative;
}
/*.about-page .about-5 .ret .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
}*/
.about-page .about-5 .ret .slide.active {
  position: static;
  opacity: 1;
  z-index: 1;
}
.about-page .about-5 .ret ul {
  margin: -8px;
}
.about-page .about-5 .ret ul li {
  padding: 8px;
}
.about-page .about-5 .ret ul li img {
  width: 100%;
}
@-webkit-keyframes bks {
  from {
    border-width: 0;
    opacity: 1;
  }
  80% {
    border-width: 20px;
    opacity: 0;
  }
  to {
    border-width: 20px;
    opacity: 0;
  }
}
@-moz-keyframes bks {
  from {
    border-width: 0;
    opacity: 1;
  }
  80% {
    border-width: 20px;
    opacity: 0;
  }
  to {
    border-width: 20px;
    opacity: 0;
  }
}
@keyframes bks {
  from {
    border-width: 0;
    opacity: 1;
  }
  80% {
    border-width: 20px;
    opacity: 0;
  }
  to {
    border-width: 20px;
    opacity: 0;
  }
}
.sustainablity-page .marginBox {
  padding: 0 !important;
}
.sustainablity-page .sustainablity-1 {
  padding: 100px 0 120px;
}
.sustainablity-page .sustainablity-1 .left {
  width: 55%;
  vertical-align: middle;
}
.sustainablity-page .sustainablity-1 .left .list ul {
  margin: -12px;
}
.sustainablity-page .sustainablity-1 .left .list ul li {
  padding: 12px;
}
.sustainablity-page .sustainablity-1 .right {
  width: 45%; 
  vertical-align: middle;
  text-align: left;
  padding-left: 50px;
}
.sustainablity-page .sustainablity-1 .right.ab-r{
  width: 100%; 
  vertical-align: middle;
  text-align: center;
  padding-left: 0;
}
.sustainablity-page .sustainablity-1 .right span.h3 {
  font-weight: bold;
  font-size: 40px;
  color: #242424;
  line-height: 1.2;
  margin-bottom: .5em;
}
.sustainablity-page .sustainablity-1 .right .slide {
  margin-top: 20px;
}
.sustainablity-page .sustainablity-1 .right .slide span.h5 {
  font-size: 22px;
  color: #15116f;
  margin-bottom: .5em;
  display: block;
}
.sustainablity-page .sustainablity-1 .right .slide .text {
    font-size: 18px;
    color: #626262;
    line-height: 1.6;
    max-width: 1000px;
    padding-top: 30px;
    margin: auto;
}
.sustainablity-page .sustainablity-2 {
  text-align: center;
}
.sustainablity-page .sustainablity-2 .text {
    font-size: 18px;
    color: #626262;
    line-height: 1.6;
  max-width: 1250px;
  display: block;
  margin: 1.5em auto 2em;
}
.sustainablity-page .sustainablity-2 .list ul {
  margin: -23px;
}
.sustainablity-page .sustainablity-2 .list ul li {
  padding: 23px;
}
.sustainablity-page .sustainablity-2 .list ul li a {
  display: block;
}
.sustainablity-page .sustainablity-2 .list ul li a img {
  display: block;
  width: 100%;
}
.sustainablity-page .sustainablity-2 .list ul li a span {
  display: block;
  font-size: 20px;
  padding: .5em;
  text-align: center;
  background-color: #15116f;
  color: white;
}
.sustainablity-page .sustainablity-3 {
  padding: 140px 0 90px;
  text-align: center;
}
.sustainablity-page .sustainablity-3 .list {
  margin-top: 50px;
  padding: 0 10%;
  overflow: hidden;
}
.sustainablity-page .sustainablity-3 .list ul .slick-list {
  overflow: unset;
}
.sustainablity-page .sustainablity-3 .list ul li a {
  display: block;
  position: relative;
}
.sustainablity-page .sustainablity-3 .list ul li a img {
  width: 100%;
}
.sustainablity-page .sustainablity-3 .list ul li a span {
  height: 50px;
  width: 50px;
  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;
  background-color: #051399;
  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%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.sustainablity-page .sustainablity-3 .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.sustainablity-page .sustainablity-3 .list ul li a:hover span {
  opacity: 1;
}
.sustainablity-page .sustainablity-3 .list ul .slick-slide {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
  position: relative;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.sustainablity-page .sustainablity-3 .list ul .slick-slide li {
  -webkit-transform: translateX(65%);
  -moz-transform: translateX(65%);
  -ms-transform: translateX(65%);
  transform: translateX(65%);
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active li {
  -webkit-transform: translateX(25%);
  -moz-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current li {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div li {
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div + div {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div + div li {
  -webkit-transform: translateX(-65%);
  -moz-transform: translateX(-65%);
  -ms-transform: translateX(-65%);
  transform: translateX(-65%);
}
.testimonials-page .marginBox {
  padding: 100px 0 65px;
  text-align: center;
}
.testimonials-page .options {
  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 #c3c3c3;
  margin-top: 100px;
}
.testimonials-page .options span {
  font-size: 22px;
  font-weight: bold;
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #c3c3c3;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.testimonials-page .options span em {
  color: #bfbfbf;
}
.testimonials-page .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}
.testimonials-page .ret .list {
  margin: 100px 0 70px;
}
.testimonials-page .ret .list ul {
  margin: -30px -15px;
  text-align: left;
}
.testimonials-page .ret .list ul li {
  padding: 30px 15px;
  text-align: center;
}
.testimonials-page .ret .list ul li a {
  display: block;
  position: relative;
}
.testimonials-page .ret .list ul li a img {
  width: 100%;
}
.testimonials-page .ret .list ul li a span {
  width: 40px;
  height: 40px;
  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%);
  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;
  background-color: #051399;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.testimonials-page .ret .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.testimonials-page .ret .list ul li a:hover span {
  opacity: 1;
}
.news-page .marginBox {
  padding: 90px 6% 70px;
}
.news-page .sideBarLeft .list ul li a.img-box {
  padding: 30px 30px 20px;
  display: block;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .sideBarLeft .list ul li a.img-box img {
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.news-page .sideBarLeft .list ul li a.img-box time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.news-page .sideBarLeft .list ul li a.img-box time em {
  font-size: 14px;
  padding: .3em 1em;
  border-radius: 1.5em;
  background: #051399;
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}
.news-page .sideBarLeft .list ul li a.img-box:hover {
  border-color: #051399;
}
.news-page .sideBarLeft .list ul li .content {
  padding: 30px 0 50px;
}
.news-page .sideBarLeft .list ul li .content span.h3 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .sideBarLeft .list ul li .content span.h3:hover {
  color: #051399;
}
.news-page .sideBarLeft .list ul li .content .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  margin: 1em 0;
}
.news-page .sideBarLeft .list ul li .content a.link {
  font-size: 18px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid #051399;
  color: #051399;
}
.news-page .sideBarLeft .list ul li .content a.link:after {
  content: '';
  border: 4px solid #051399;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.newdet-page .marginBox {
  padding: 90px 6%;
}
.newdet-page .sideBarLeft time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.newdet-page .sideBarLeft time em {
  font-size: 14px;
  padding: .3em 1em;
  border-radius: 1.5em;
  background: #051399;
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}
.newdet-page .sideBarLeft h1 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  margin: 2em 0 1em;
}
.newdet-page .sideBarLeft .content {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  padding: 1.5em 0;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}
.newdet-page .sideBarLeft .share {
  font-size: 24px;
  color: #bfbfbf;
  margin-top: 1em;
  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 .sideBarLeft .share a {
  margin-left: 1em;
  font-size: 80%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .sideBarLeft .share a:hover {
  color: #051399;
}
.newdet-page .sideBarLeft .m-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 80px;
}
.newdet-page .sideBarLeft .m-link .prev {
  margin-right: 20px;
  width: 100%;
}
.newdet-page .sideBarLeft .m-link .prev a.link img {
  margin-right: .5em;
}
.newdet-page .sideBarLeft .m-link .next {
  margin-left: 20px;
  width: 100%;
}
.newdet-page .sideBarLeft .m-link .next a.link {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.newdet-page .sideBarLeft .m-link .next a.link img {
  margin-left: .5em;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.newdet-page .sideBarLeft .m-link a.link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #242424;
  margin-bottom: .5em;
}
.newdet-page .sideBarLeft .m-link .btnBox {
  padding: 20px;
  background: #eee;
  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 .sideBarLeft .m-link .btnBox a.img {
  width: 35%;
  height: 80px;
  background-size: cover;
  background-position: center center;
}
.newdet-page .sideBarLeft .m-link .btnBox .text {
  margin-left: 15px;
}
.newdet-page .sideBarLeft .m-link .btnBox .text time {
  font-size: 16px;
  color: #8e8e8e;
  margin: 0;
}
.newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 2;
  margin-top: .1em;
  display: block;
}
.newdet-page .sideBarLeft .publicForm span.h6 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  margin-bottom: 1em;
  display: block;
}
.service-page .marginBox {
  padding: 110px 6%;
}
.service-page .service-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-page .service-1 .bottom {
  margin-top: 70px;
  border-top: 1px solid #bfbfbf;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.service-page .service-1 .bottom .left {
  width: 100%;
  padding-right: 0%;
}
.service-page .service-1 .bottom .left .list ul li {
  font-size: 28px;
  line-height: 1.6;
  padding: 1em 0;
  position: relative;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-1 .bottom .left .list ul li h3 {
  font-family: var(--font);
}
.service-page .service-1 .bottom .left .list ul li em {
  color: #bfbfbf;
}
.service-page .service-1 .bottom .left .list ul li:after {
  content: '';
  bottom: 0;
  left: 0;
  width: 300%;
  height: 1px;
  background: #bfbfbf;
  position: absolute;
  z-index: -1;
}
.service-page .service-1 .bottom .left .list ul li .des{
  font-size: 20px;
  color: black;
  line-height: 36px;
  font-weight: normal;
  padding-left: 45px;
  margin-top: 15px;
  display: none;
}
.service-page .service-1 .bottom .left .list ul li.active,
.service-page .service-1 .bottom .left .list ul li:hover {
  color: #15116f;
}
.service-page .service-1 .bottom .right {
  margin-top: 35px;
  margin-right: 45px;
  width: 32%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.service-page .service-1 .bottom .right .img {
  height: 450px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.service-page .service-2 {
  padding: 60px 0 110px;
}
.service-page .service-2 .list {
  margin-top: 50px;
}
.service-page .service-2 .list ul {
  margin: 0 -40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.service-page .service-2 .list ul li {
  padding: 0 40px;
}
.service-page .service-2 .list ul li .box {
  height: 100%;
  padding: 30px 10% 20px;
  background: #f6f1ea;
}
.service-page .service-2 .list ul li .box i {
  display: block;
  height: 60px;
}
.service-page .service-2 .list ul li .box span.h6 {
  display: block;
  font-weight: bold;
  font-size: 24px;
  color: #242424;
  margin: .5em 0;
}
.service-page .service-2 .list ul li .box .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
}
.service-page .service-3 .form {
  margin-top: 40px;
}
.service-page .service-4 {
  padding-top: 120px;
}
.service-page .service-4 .left {
  width: 47%;
  vertical-align: middle;
}
.service-page .service-4 .left .img {
  height: 370px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.service-page .service-4 .right {
  width: 53%;
  padding-left: 2%;
  vertical-align: middle;
}
.service-page .service-4 .right .list ul {
  margin: -25px;
}
.service-page .service-4 .right .list ul li {
  padding: 25px;
}
.service-page .service-4 .right .list ul li span.h6 {
  font-weight: bold;
  font-size: 24px;
  color: #242424;
  line-height: 1.2;
  margin-bottom: .5em;
  display: block;
}
.service-page .service-4 .right .list ul li .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
}
.service-page .service-4 .right .list ul li.wid-100 {
  width: 100%;
}
.download-page .ret .list ul li em {
  font-size: 18px;
  color: #bb8c4b;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  border-bottom: 1px solid #051399;
  margin-top: 1.2em;
  display: inline-block;
}
.download-page .ret .list ul li em:after {
  content: '';
  border: 4px solid #051399;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.download-page .ret .list ul li em:after {
  border-width: 2px;
}
.faq-page .marginBox {
  padding: 110px 0 100px;
  text-align: center;
}
.faq-page .marginBox .box {
  margin-top: 50px;
  text-align: left;
}
.faq-page .marginBox .box .left {
  width: 40%;
}
.faq-page .marginBox .box .left .box2 {
  padding: 50px 35px;
  background: #f6f1ea;
}
.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}
.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 1.8em;
  display: block;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #8e8e8e;
  margin-bottom: 1em;
  line-height: 1.2;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li ul {
  display: none !important;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li:last-child {
  margin-bottom: 0;
}
.faq-page .marginBox .box .right {
  width: 60%;
  padding-left: 3%;
}
.faq-page .marginBox .box .right .list ul li {
  margin-bottom: 20px;
  padding: 15px;
  background: #eee;
  border: 1px solid #bfbfbf;
}
.faq-page .marginBox .box .right .list ul li span.title {
  font-weight: bold;
  font-size: 18px;
  color: #242424;
  text-align: right;
  display: block;
  position: relative;
}
.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 5px;
  cursor: pointer;
  cursor: hand;
}
.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
  content: '';
  background: black;
  height: 2px;
  width: 100%;
  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%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .marginBox .box .right .list ul li span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .marginBox .box .right .list ul li .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  margin: 30px 0;
  display: none;
}
.faq-page .marginBox .box .right .list ul li.active {
  background: white;
}
.faq-page .marginBox .box .right .list ul li.active span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.faq-page .marginBox .box .right .list ul li:last-child {
  margin-bottom: 0;
}
.contact-page .marginBox {
  padding-top: 90px;
}
.contact-page .contact-1 {
  padding: 100px 0 110px;
  text-align: center;
}
.contact-page .contact-1 .text {
  font-size: 20px;
  color: #626262;
  line-height: 36px;
  max-width: 650px;
  display: block;
  margin: 1em auto 2em;
}
.contact-page .contact-1 .list ul {
  margin: -20px;
  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;
}
.contact-page .contact-1 .list ul li {
  padding: 20px;
}
.contact-page .contact-1 .list ul li .box {
  padding: 35px 5% 15px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 100%;
  position: relative;
  top: 0;
}
.contact-page .contact-1 .list ul li .box i {
  display: block;
}
.contact-page .contact-1 .list ul li .box i img {
  display: block;
  margin: 0 auto;
}
.contact-page .contact-1 .list ul li .box span.h6 {
  font-size: 24px;
  color: #242424;
  margin: 1em 0 .5em;
  display: block;
  font-family: var(--font);
}
.contact-page .contact-1 .list ul li .box p {
    font-size: 18px;
    color: #626262;
    line-height: 32px;
}
.contact-page .contact-1 .list ul li .box:hover {
  border-color: #15116f;
  top: -20px;
}
.contact-page .map {
  position: relative;
  z-index: 1;
}
.news-page {
  padding: 60px 0 51px;
}
.news-page .ui.container ul.newslist {
  margin-top: 60px;
}
.news-page .ui.container ul.newslist li {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
.news-page .ui.container ul.newslist li .column {
  vertical-align: top;
}
.news-page .ui.container ul.newslist li:last-child {
  margin-bottom: 0;
}
.news-page .ui.container ul.newslist li .date {
  min-width: 120px;
  width: 120px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news-page .ui.container ul.newslist li .date span {
      font-size: 90px;
    /* font-weight: 700; */
    color: #15116f;
    font-family: var(--font);
    line-height: 1;
    margin-top: -6px;
    text-align: center;
}
.news-page .ui.container ul.newslist li .date em {
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  /*color: .news-page .ui.container ul.newslist li .date em;*/
  margin-top: 10px;
}
.news-page .ui.container ul.newslist li .text {
  width: -webkit-calc(100% - 120px);
  width: -moz-calc(100% - 120px);
  width: calc(100% - 120px);
  padding-left: 80px;
}
/*.news-page .ui.container ul.newslist li .text .content{
     text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}*/
.news-page .ui.container ul.newslist li .text h5 {
  margin-bottom: 20px;
    /*text-transform: uppercase;*/
}
.news-page .ui.container ul.newslist li .text h5 a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.news-page .ui.container ul.newslist li .text h5 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #15116f;
}
.news-page .ui.container ul.newslist li .text p {
  color: #a5a5a5;
  line-height: 2;
}
.news-page .ui.container ul.newslist li .text .content p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news-page .ui.container ul.newslist li .img-box {
  max-height: 170px;
  overflow: hidden;
  width: 30%;
}
.newdet-page .ui.container .newst {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newdet-page .ui.container .newst span {
  color: #15116f;
  font-weight: 500;
}
.newdet-page .ui.container .newst span em {
  color: #a5a5a5;
  font-weight: 400;
  margin-left: 10px;
}

.newdet-page .ui.container .content {
  color: #626262;
  line-height: 2;
  margin-top: 30px;
}
.newdet-page .ui.container .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0 30px;
  border-bottom: 1px solid #ccc;
}
.newdet-page .ui.container .bottom .sharebox {
  color: #222;
}
.newdet-page .ui.container .bottom .sharebox span {
  color: #222;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-right: 10px;
  vertical-align: middle;
  width: auto;
}
.newdet-page .ui.container .bottom .sharebox ul {
  width: auto;
  vertical-align: middle;
}
.newdet-page .ui.container .bottom .sharebox ul li {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: solid 1px #cccccc;
  border-radius: 100%;
  padding: 0;
  margin-right: 10px;
  text-align: center;
  line-height: 50px;
}
.newdet-page .ui.container .bottom .sharebox ul li a {
  font-size: 24px;
  color: #15116f;
}
.newdet-page .ui.container .bottom .tabbox .mores i {
  width: 50px;
  height: 50px;
  border: solid 1px #ccc;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.newdet-page .ui.container .bottom .tabbox .mores i img {
  width: 16px;
  display: block;
  margin: 18px auto 0;
}
.newdet-page .ui.container .bottom .tabbox a.mores.prev i img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotate(180deg);
  transform: rotateZ(180deg);
}
.newdet-page .ui.container .bottom .tabbox .mores:hover i {
  background: #15116f;
}
.newdet-page .ui.container .bottom .tabbox .mores:hover i img{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/*.newdet-page .ui.container .bottom .tabbox .mores:hover i img {
  -webkit-filter: grayscale(1) brightness(2);
  filter: grayscale(1) brightness(2);
}*/
.newdet-page{
  padding-top: 80px;
}
@media screen and (max-width: 1600px) {
   
  span.txt {
    font-size: 20px;
  }
   
   
  span.tag {
    font-size: 140px;
  }
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 48px;
  }
    
  .about-page .about-1 .text,
  .contact-page .contact-1 .list ul li .box span.h6,
  .contact-page .contact-1 .list ul li .box p,
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text,
  .service-page .service-2 .list ul li .box .text,
  .service-page .service-4 .right .list ul li .text,
  .sustainablity-page .sustainablity-1 .right .slide .text,
  .sustainablity-page .sustainablity-2 .text,
  .advantage-page .advantage-1 .right .text,
  .advantage-page .advantage-3 .left .text,
  .advantage-page .advantage-4 .text,
  .advantage-page .advantage-6 .list ul li .box .right .text,
  .contact-page .contact-1 .text {
    font-size: 18px;
  }
    
  .manufacturing-page .manufacturing-6 .right span.h4 {
    font-size: 22px;
  } 
  .manufacturing-page .manufacturing-6 .right .color span {
    font-size: 16px;
  } 
  .manufacturing-page .manufacturing-6 .right .color span i {
    width: 1.8em;
    height: 1.8em;
  } 
  .manufacturing-page .manufacturing-6 .right .select span {
    font-size: 18px;
  } 
  .manufacturing-page .manufacturing-6 .right .select span i {
    width: 90px;
    height: 90px;
  }
   
  .inner-banner .box .right .mbx {
    font-size: 16px;
  }
  .inner-banner {
    height: 560px;
  }
  .about-page .about-2 .list ul li .box .content {
    padding: 15px;
  }
  .about-page .about-2 .list ul li .box .content span.h3 {
    font-size: 20px;
  }
  .about-page .about-2 .list ul li .box .content .text {
    font-size: 18px;
  }
  .about-page .about-2 {
    padding-bottom: 60px;
  }
  .about-page .about-3 .options {
    margin-top: 40px;
  }
  .about-page .about-3 .options ul li span {
    font-size: 18px;
    padding-bottom: .6em;
  }
  .about-page .about-3 .ret {
    margin-top: 30px;
  }
  .about-page .about-3 .ret .right span.h3 {
    font-size: 20px;
  }
  .about-page .about-3 .ret .right .btn div,
  .seoBox .seoNews .top .btn div {
    line-height: 36px;
    height: 36px;
  }
  .about-page .about-3 {
    padding-bottom: 80px;
  }
  .about-page .about-5 {
    padding: 80px 0;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 18px;
    width: 280px;
  }
  .about-page .about-5 .options {
    margin-top: 40px;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 160px;
  }
  .advantage-page .advantage-1 .left span.h5 {
    font-size: 24px;
  }
  .advantage-page .advantage-1 {
    padding-top: 50px;
  }
  .advantage-page .advantage-2 {
    padding: 50px 0;
  }
  .advantage-page .advantage-5 {
    padding: 60px 0;
  }
  .inner-page .form ul li {
    padding: 6px;
  }
  .inner-page .form ul {
    margin: -6px;
  }
  .inner-page .form ul li input,
  .inner-page .form ul li textarea,
  .inner-page .form ul li input[type="submit"] {
    font-size: 16px;
  }
  .contact-page .contact-1 {
    padding: 60px 0;
  }
  .contact-page .contact-1 .text {
    margin-bottom: 2em;
  }
  .contact-page .contact-1 .list ul li .box {
    padding: 15px 5%;
  }
  .contact-page .contact-1 .list ul li .box i img {
    max-height: 80px;
  }
  #mapContainer {
    height: 380px !important;
  }
  .testimonials-page .options {
    margin-top: 60px;
  }
  .testimonials-page .ret .list {
    margin: 50px 0;
  }
  .testimonials-page .ret .list ul li {
    padding: 10px;
  }
  .testimonials-page .ret .list ul {
    margin: -10px;
  }
  .download-page .ret .list ul li em {
    font-size: 16px;
    margin-top: .6em;
  }
  .faq-page .marginBox .box .left .box2 {
    padding: 30px 20px;
  }
  .faq-page .marginBox .box .left .box2 .slide span.h6 {
    font-size: 16px;
    margin-bottom: 1em;
  }
  .faq-page .marginBox .box .left .box2 .slide .nav ul li {
    font-size: 16px;
    margin-bottom: .8em;
  }
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 16px;
  }
  .faq-page .marginBox .box .right .list ul li .text {
    margin: 20px 0;
  }
  .faq-page .marginBox .box .right .list ul li {
    padding: 10px;
    margin-bottom: 10px;
  }
  .faq-page .marginBox {
    padding: 90px 0;
  }
  .manufacturing-page .manufacturing-1 .right .list ul li p {
    font-size: 20px;
  }
  .manufacturing-page .manufacturing-2 .list ul li a span {
    font-size: 16px;
  }
  .manufacturing-page .manufacturing-4 .list ul li span.h6 {
    font-size: 20px;
  }
  .manufacturing-page .manufacturing-5 {
    padding: 80px 0;
  }
  .manufacturing-page .manufacturing-5 .list {
    margin-top: 30px;
  }
  .manufacturing-page .manufacturing-6 {
    padding: 50px 0;
  }
  .manufacturing-page .manufacturing-7 {
    padding: 70px 0;
  }
  .manufacturing-page .manufacturing-2 .list ul li {
    padding: 15px;
  }
  .manufacturing-page .manufacturing-2 .list ul {
    margin: -15px;
  }
  .news-page .sideBarLeft .list ul li a.img-box {
    padding: 20px;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 24px;
  }
  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 16px;
  }
  .news-page .sideBarLeft .list ul li .content a.link:after {
    border-width: 2px;
  }
  .inner-page .sideBarBox .sideBarRight span.h5 {
    font-size: 18px;
    margin-top: 1.5em;
  }
  .inner-page .sideBarBox .sideBarRight form.search,
  .inner-page .sideBarBox .sideBarRight .nav ul li {
    font-size: 16px;
  }
  .inner-page .sideBarBox .sideBarRight .newsList ul li .content time {
    font-size: 14px;
  }
  .inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6 {
    font-size: 16px;
  }
  .inner-page .sideBarBox .sideBarRight .newsList ul li {
    padding: 10px 0;
  }
  .inner-page .sideBarBox .sideBarRight .imgBox {
    height: 380px;
  }
  .inner-page .sideBarBox .sideBarRight .imgBox .text {
    padding: 1em;
    font-size: 14px;
  }
  .newdet-page .sideBarLeft h1 {
    font-size: 24px;
    margin: 1em 0;
  }
  .newdet-page .sideBarLeft .content {
    font-size: 16px;
  }
  .newdet-page .sideBarLeft .share {
    font-size: 20px;
  }
  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 16px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox {
    padding: 10px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox .text time {
    font-size: 14px;
  }
  .newdet-page .sideBarLeft .m-link {
    margin: 30px 0 40px;
  }
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 24px;
  }
  .inner-page #productList ul li span.h6 {
    font-size: 16px;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 80px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 24px;
    line-height: 44px;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 18px;
    line-height: 32px;
    margin: 1.5em 0;
  }
  .prodet-page .prodet-1 .right .share span.h6 {
    font-size: 20px;
  }
  .prodet-page .prodet-1 .right .share a {
    font-size: 16px;
  }
  .prodet-page .prodet-2 .ret {
    margin-top: 30px;
    font-size: 18px;
  }
  .prodet-page .prodet-2 {
    padding: 60px 0;
  }
  .inner-page #productList ul li a.link,
  .seoBox .seoNews .bottom .list ul li .box a.link {
    font-size: 16px;
  }
  .inner-page #productList ul li a.link em:after,
  .seoBox .seoNews .bottom .list ul li .box a.link:after {
    border-width: 2px;
  }
  .seoBox span.h3 {
    font-size: 38px;
  }
  .seoBox .seoAbout .right .text,
  .product-page .marginTop .left .text,
  .product-cat-page .slide .left .text {
    font-size: 16px;
  }
  .seoBox .seoHonor {
    padding: 50px 0;
  }
  .seoBox .seoNews .bottom .list ul li .box time {
    margin: 1em 0;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 20px;
  }
  .seoBox .seoNews .bottom {
    margin-top: 30px;
  }
  .inner-page .m-page a,
  .inner-page .m-page span,
  .inner-page .m-page .next,
  .inner-page .m-page .prev {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin: 0 5px;
  }
  .product-cat-page .slide .right a.img {
    height: 600px;
  }
  .product-cat-page .slide {
    margin-top: 50px;
  }
  .service-page .marginBox {
    padding: 80px 6%;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 24px;
  }
  .service-page .service-1 .bottom .right {
    width: 27%;
  }
  .service-page .service-1 .bottom .right .img {
    height: 360px;
  }
  .service-page .service-1 .bottom {
    margin-top: 40px;
  }
  .service-page .service-2 .list {
    margin-top: 30px;
  }
  .service-page .service-2 .list ul li .box i {
    height: 40px;
  }
  .service-page .service-2 .list ul li .box i img {
    max-height: 100%;
  }
  .service-page .service-2 .list ul li .box span.h6,
  .service-page .service-4 .right .list ul li span.h6 {
    font-size: 20px;
  }
  .service-page .service-2 {
    padding: 50px 0;
  }
  .service-page .service-4 {
    padding-top: 60px;
  }
  .service-page .service-4 .right .list ul li {
    padding: 15px;
  }
  .service-page .service-4 .right .list ul {
    margin: -15px;
  }
  .service-page .service-4 .left .img {
    height: 320px;
  }
  .sustainablity-page .sustainablity-1 {
    padding: 70px 0;
  }
  .sustainablity-page .sustainablity-1 .right span.h3 {
    font-size: 28px;
  }
  .sustainablity-page .sustainablity-1 .right .slide {
    margin-top: 20px;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 24px;
  }
  .sustainablity-page .sustainablity-2 .list ul li a span {
    font-size: 16px;
  }
  .sustainablity-page .sustainablity-3 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1450px) {
  
  .inner-page .marginBox {
    padding: 50px 3%;
    /*margin-top: -80px;*/
  }
  .inner-banner {
     height: 470px;
  }
  .testimonials-page .marginBox {
    padding: 60px 0;
  }
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 38px;
  }
  span.txt {
    font-size: 16px;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 16px;
    width: 220px;
  }
  .sustainablity-page .sustainablity-1 .right span.h3 {
    font-size: 24px;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 20px;
  }
   
  .about-page .about-1 .text,
  .contact-page .contact-1 .list ul li .box span.h6,
  .contact-page .contact-1 .list ul li .box p,
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text,
  .service-page .service-2 .list ul li .box .text,
  .service-page .service-4 .right .list ul li .text,
  .sustainablity-page .sustainablity-1 .right .slide .text,
  .sustainablity-page .sustainablity-2 .text,
  .advantage-page .advantage-1 .right .text,
  .advantage-page .advantage-3 .left .text,
  .advantage-page .advantage-4 .text,
  .advantage-page .advantage-6 .list ul li .box .right .text,
  .contact-page .contact-1 .text {
    font-size: 16px;
  }
  .sustainablity-page .sustainablity-2 .list ul li {
    padding: 10px;
  }
  .sustainablity-page .sustainablity-2 .list ul {
    margin: -10px;
  }
  .sustainablity-page .sustainablity-3 .list {
    margin-top: 30px;
  }
  .service-page .marginBox {
    padding: 60px 4%;
  }
  
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 20px;
  }
  .service-page .service-1 .bottom .right {
    width: 24%;
  }
  .service-page .service-1 .bottom .right .img {
    height: 300px;
  }
  .service-page .service-2 .list ul li {
    padding: 0 15px;
  }
  .service-page .service-2 .list ul {
    margin: 0 -15px;
  }
  .service-page .service-2 .list ul li .box {
    padding: 15px;
  }
  span.tag {
    font-size: 100px;
  }
  .inner-page #productList ul li span.h6 {
    font-size: 14px;
  }
  
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 18px;
  }
  .prodet-page .prodet-1 {
    padding-top: 60px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 20px;
    line-height: 36px;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .prodet-1 .right a.more {
    margin-top: 2em;
  }
  .prodet-page .prodet-1 .left .smallImg {
    padding-right: 23px;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 50px;
  }
  .prodet-page .prodet-3 .list {
    margin: 30px 0;
  }
  .seoBox span.h3 {
    font-size: 32px;
  }
  .seoBox .seoNews .bottom .list ul li,
  .seoBox .seoHonor .list ul li,
  .manufacturing-page .manufacturing-2 .list ul li {
    padding: 10px;
  }
  .seoBox .seoNews .bottom .list ul,
  .seoBox .seoHonor .list ul,
  .manufacturing-page .manufacturing-2 .list ul {
    margin: -10px;
  }
  .manufacturing-page .manufacturing-1 {
    padding: 50px 0;
  }
  .manufacturing-page .manufacturing-1 .right .list ul li {
    padding: 20px 15px;
  }
  .manufacturing-page .manufacturing-1 .right .list ul {
    margin: -20px -15px;
  }
  .manufacturing-page .manufacturing-2 .list ul li a span {
    font-size: 14px;
  }
  .manufacturing-page .manufacturing-3 {
    padding: 60px 0;
  }
  .manufacturing-page .manufacturing-4 {
    padding-top: 60px;
  } 
  .manufacturing-page .manufacturing-6 .right span.h4 {
    font-size: 18px;
  } 
  .manufacturing-page .manufacturing-6 .right .color span {
    font-size: 14px;
  } 
  .manufacturing-page .manufacturing-6 .right .select span {
    font-size: 16px;
  }
  .manufacturing-page .manufacturing-6 .right .slide {
    margin-top: 30px;
  }
  .testimonials-page .options {
    margin-top: 30px;
  }
  .contact-page .contact-1 {
    padding-top: 10px;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 120px;
  }
  .advantage-page .advantage-1 .left span.h5 {
    font-size: 20px;
  }
  .advantage-page .advantage-3 .right .img {
    height: 380px;
  }
   
}
@media screen and (max-width: 1250px) {
   
   
  .about-page .about-1 .text,
  .contact-page .contact-1 .list ul li .box span.h6,
  .contact-page .contact-1 .list ul li .box p,
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text,
  .service-page .service-2 .list ul li .box .text,
  .service-page .service-4 .right .list ul li .text,
  .sustainablity-page .sustainablity-1 .right .slide .text,
  .sustainablity-page .sustainablity-2 .text,
  .advantage-page .advantage-1 .right .text,
  .advantage-page .advantage-3 .left .text,
  .advantage-page .advantage-4 .text,
  .advantage-page .advantage-6 .list ul li .box .right .text,
  .contact-page .contact-1 .text {
    font-size: 14px;
    line-height: 2;
  }
   
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 28px;
  }
   
  .inner-banner {
   height: 330px;
  }
  .inner-banner .box .right .mbx {
    font-size: 14px;
    line-height: 2;
  }
  .about-page .about-1 {
    padding: 40px 0;
  }
  .about-page .about-2 .list ul li .box .content span.h3 {
    font-size: 18px;
  }
  .about-page .about-2 .list ul li .box .content .text {
    font-size: 16px;
  }
  .about-page .about-2 .list ul li {
    padding: 10px;
  }
  .about-page .about-2 .list ul {
    margin: -10px;
  }
  .about-page .about-3 .options ul li span {
    font-size: 16px;
  }
  .about-page .about-3 .ret .right span.txt {
    font-size: 20px;
  }
  .about-page .about-3 .ret .right span.h3 {
    font-size: 18px;
  }
  .about-page .about-3 .ret .right .btn div,
  .seoBox .seoNews .top .btn div {
    line-height: 30px;
    height: 30px;
    padding: 0 15px;
  }
  .about-page .about-3 .ret .left .img {
    height: 240px;
  }
  .about-page .about-4 .list ul li a span {
    zoom: .7;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 16px;
    line-height: 30px;
    width: 200px;
  }
  .about-page .about-5 .ret {
    margin-top: 20px;
  }
  .about-page .about-5 {
    padding: 50px 0;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 90px;
  }
  .advantage-page .advantage-3 .right .img {
    height: 300px;
  }
  .advantage-page .advantage-4 {
    padding-top: 60px;
  }
  .advantage-page .advantage-6 .list {
    margin: 30px 0;
  }
  .advantage-page .advantage-6 .list ul li {
    padding: 15px 0;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.h6 {
    font-size: 16px;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.em {
    font-size: 18px;
  }
  .advantage-page .advantage-6 .list ul li .box .left {
    width: 35%;
    padding-right: 1%;
  }
  .advantage-page .advantage-6 .list ul li .box .left .img {
    margin-right: 10px;
  }
  .contact-page .contact-1 .list ul li .box i img {
    max-height: 60px;
  }
  .contact-page .contact-1 .list ul li {
    padding: 10px;
  }
  .contact-page .contact-1 .list ul {
    margin: -10px;
  }
  .testimonials-page .ret .list {
    margin: 30px 0;
  }
  .faq-page .marginBox .box {
    margin-top: 30px;
  }
  .faq-page .marginBox .box .right {
    width: 100%;
    padding-left: 0;
  }
  .faq-page .marginBox .box .left {
    display: none;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 20px;
  }
  .news-page .sideBarLeft .list ul li .content {
    padding: 20px 0 30px;
  }
  .newdet-page .sideBarLeft h1,
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 20px;
  }
  .product-cat-page .slide .right a.img {
    height: 500px;
  }
  .service-page .service-1 .bottom .right {
    margin-top: 20px;
    margin-right: 20px;
  }
  .sustainablity-page .sustainablity-1 .right span.h3 {
    font-size: 20px;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
   
  .testimonials-page .options {
    display: none;
  }
  .inner-banner {
    
  }
  .sustainablity-page .sustainablity-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .sustainablity-page .sustainablity-1 .left {
    width: 100%;
  }
  .sustainablity-page .sustainablity-1 {
    padding: 30px 0;
  }
  .sustainablity-page .sustainablity-3 {
    padding: 40px 0;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 18px;
  }
  .service-page .service-1 .bottom .right .img {
    height: 200px;
  }
  .service-page .service-2 .list ul li {
    padding: 0 5px;
  }
  .service-page .service-2 .list ul {
    margin: 0 -5px;
  }
  .service-page .service-2 .list ul li .box span.h6,
  .service-page .service-4 .right .list ul li span.h6 {
    font-size: 16px;
  }
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 24px;
    line-height: 44px;
  }
  .inner-page .form ul li input,
  .inner-page .form ul li textarea,
  .inner-page .form ul li input[type="submit"] {
    font-size: 14px;
    line-height: 2;
    padding: .5em;
  }
  .product-cat-page .slide .left {
    width: 100%;
    padding-right: 0;
    left: 0 !important;
    padding: 0 !important;
  }
  .product-cat-page .slide .right {
    display: none !important;
  }
  .product-cat-page .slide .left .text {
    max-height: none;
    margin: 1em 0;
  }
  .product-cat-page {
    padding-bottom: 50px;
  }
  .product-page .marginTop .left {
    width: 100%;
  }
  .product-page .marginTop .right {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
  }
  .inner-page #productList ul li a.img-box {
    padding: 20px 5% 0;
  }
  
  .inner-page .m-page {
    margin-top: 30px;
  }
  .seoBox .seoAbout .left {
    width: 100%;
    padding-right: 0;
  }
  .seoBox .seoAbout .right {
    width: 100%;
    margin-top: 20px;
  }
  .seoBox span.h3 {
    font-size: 28px;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .right .text {
    margin: 0;
    padding-right: 0;
    max-height: none;
  }
  .prodet-page .prodet-2 .ret {
    font-size: 16px;
  }
  .inner-page #productList ul li span.h6 {
    font-size: 14px;
    line-height: 2;
  }
  .inner-page .sideBarBox .sideBarLeft {
    width: 100%;
    padding-right: 0;
  }
  .inner-page .sideBarBox .sideBarRight {
    display: none;
  }
  .prodet-page .prodet-3 .dots ul li button {
    font-size: 16px;
    line-height: 30px;
    width: 32px;
    height: 32px;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 18px;
  }
  .manufacturing-page .manufacturing-4 .list ul li span.h6 {
    font-size: 16px;
  }
  .manufacturing-page .manufacturing-1 .right .list ul li p {
    font-size: 16px;
  }
  .manufacturing-page .manufacturing-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .manufacturing-page .manufacturing-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .manufacturing-page .marginTop .list ul .slick-dots li {
    width: 6px;
    height: 6px;
  }
  .manufacturing-page .manufacturing-2 {
    padding-bottom: 60px;
  }
  .manufacturing-page .manufacturing-1 .right .list ul li {
    padding: 5px;
  }
  .manufacturing-page .manufacturing-1 .right .list ul {
    margin: -5px;
  }
  .manufacturing-page .manufacturing-5 {
    padding: 40px 0;
  }
  .manufacturing-page .manufacturing-5 .list ul li {
    padding: 5px;
  }
  .manufacturing-page .manufacturing-5 .list ul {
    margin: -5px;
  }
  .manufacturing-page .manufacturing-6 .right,
  #index-body .init-6 .top .right {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .manufacturing-page .manufacturing-6 .left {
    width: 100%;
  }
  .manufacturing-page .manufacturing-6 .left .img {
    margin: 0;
  }
  .manufacturing-page .manufacturing-6 .right .slide {
    margin-top: 15px;
  } 
  .manufacturing-page .manufacturing-6 .right span.h4 {
    font-size: 16px;
  }
  .manufacturing-page .manufacturing-6 .right span.h4 {
    margin-bottom: .6em;
  }
  .manufacturing-page .manufacturing-6 .right a.more {
    margin-top: 1.5em;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 60px;
  }
  .advantage-page .advantage-1 .left span.h5 {
    font-size: 16px;
  }
  .advantage-page .advantage-1 .right .text {
    margin-bottom: 1em;
  }
  .advantage-page .advantage-5 {
    padding: 30px 0;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.h6 {
    font-size: 14px;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.em {
    font-size: 16px;
  }
  .advantage-page .advantage-6 .list ul li .box .left {
    width: 40%;
  }
  .advantage-page .advantage-6 .list ul li .box .right {
    width: 60%;
  }
  .advantage-page .advantage-6 .dots ul li button {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }
  .advantage-page .advantage-6 {
    padding-bottom: 40px;
  }
  .about-page .about-3 {
    padding-bottom: 40px;
  }
  .about-page .about-4 .list {
    margin-top: 30px;
  }
  span.txt {
    font-size: 14px;
  }
   
  span.tag {
    font-size: 70px;
  }
   
}
@media screen and (max-width: 700px) {
   .inner-banner{
     height: 220px;
   }
   .inner-banner .box .left{
     width: 100%;
     padding-right: 0;
   }
   .inner-banner .box .right{
     width: 100%;
     text-align: left;
   }
   .inner-banner .box .right .mbx{
     text-align: left;
   }
   .inner-banner .ui.container{
     padding: 0 15px;
   }
  span.tag {
    font-size: 50px;
  }
   
  .about-page .about-2 .list ul li .box .content span.h3 {
    font-size: 16px;
  }
  .about-page .about-2 .list ul li .box .content .text {
    font-size: 14px;
  }
  .about-page .about-3 .ret .right span.h3 {
    font-size: 16px;
  }
  .about-page .about-3 .ret .left .img {
    height: 180px;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 14px;
    line-height: 2;
    width: 140px;
  }
  .advantage-page .advantage-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .advantage-page .advantage-1 .right {
    width: 100%;
    margin-top: 20px;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 40px;
  }
  .advantage-page .advantage-3 .left {
    width: 100%;
    padding-right: 0;
  }
  .advantage-page .advantage-3 .right {
    width: 100%;
    margin-top: 20px;
  }
  .advantage-page .advantage-3 .right .img {
    height: 200px;
  }
  .advantage-page .advantage-6 .list ul li .box .left {
    width: 100%;
  }
  .advantage-page .advantage-6 .list ul li .box .right {
    width: 100%;
    margin-top: 10px;
  }
  .advantage-page .advantage-6 .list ul li .box {
    display: block;
  }
   
  .contact-page .contact-1 .list ul li {
    width: 100%;
  }
  #mapContainer {
    height: 280px !important;
  }
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 14px;
  }
  .manufacturing-page .manufacturing-3 .box {
    margin-left: 25%;
  }
  .news-page .sideBarLeft .list ul li a.img-box time {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li a.img-box time em {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 16px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox .text {
    margin-left: 0;
    width: 100%;
  }
  .newdet-page .sideBarLeft .m-link .btnBox a.img {
    display: none;
  }
  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 14px;
  }
  .seoBox span.h3 {
    font-size: 24px;
  }
  .prodet-page .prodet-1 .left .smallImg ul li {
    padding: 5px;
  }
  .prodet-page .prodet-1 .left .smallImg ul {
    margin: -5px;
  }
  .prodet-page .prodet-1 .left .smallImg {
    padding-right: 10px;
  }
  .seoBox .seoNews .bottom .list ul li .box {
    padding: 10px;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 14px;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
    width:320px;
    display:inline-block;
  }
  .seoBox .seoNews .bottom .list ul li .box time {
    font-size: 12px;
  }
  .inner-page .marginTop {
    width: 103%;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 16px;
  }
  .service-page .service-2 .list ul li {
    width: 100%;
    padding: 5px;
  }
  .service-page .service-2 .list ul {
    display: block;
    margin: -5px;
  }
  .service-page .service-3 .form {
    margin-top: 20px;
  }
  .service-page .service-4 .right {
    width: 100%;
    padding-left: 0;
  }
  .service-page .service-4 .left {
    display: none;
  }
  .sustainablity-page .sustainablity-3 .list,
  .about-page .about-4 .list {
    padding: 0;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 16px;
  }
   .newdet-page .ui.container .content {
    font-size: 18px;
  }
  .newdet-page .ui.container .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-3 .dots ul li button{
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .testimonials-page .ret .list ul li,
  .sustainablity-page .sustainablity-1 .left .list ul li {
    width: 50%;
  }
  .knowledge{
    display: none!important;
  }
  .testimonials-page .marginBox {
    padding: 30px 0;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 14px;
  }
  .service-page .service-1 .bottom {
    display: block;
  }
  .service-page .service-1 .bottom .right {
    width: 100%;
  }
  .service-page .service-1 .bottom .left {
    padding-right: 0;
  }
  .service-page .service-1 .top {
    display: block;
  }
  .service-page .service-1 .top .right {
    margin-top: 10px;
  }
  .service-page .marginBox {
    padding: 30px 4%;
  }
  .product-cat-page .slide .left span.h2 {
    margin-top: -1.5em;
  }
  .seoBox .seoAbout .right .text,
  .product-page .marginTop .left .text,
  .product-cat-page .slide .left .text {
    font-size: 14px;
  }
  .seoBox .seoNews .top {
    display: block;
  }
  .seoBox .seoNews .top .right {
    margin-top: 10px;
  }
  .prodet-page .prodet-2 .ret {
    font-size: 14px;
  }
  .seoBox .seoHonor {
    padding: 25px 0;
  }
  .seoBox .seoNews {
    padding-bottom: 40px;
  }
  .newdet-page .sideBarLeft .m-link .prev {
    margin-right: 10px;
  }
  .newdet-page .sideBarLeft .m-link .next {
    margin-left: 10px;
  }
  .newdet-page .sideBarLeft time {
    margin-top: 0;
    font-size: 14px;
  }
  .newdet-page .sideBarLeft time em {
    font-size: 14px;
  } 
  .manufacturing-page .manufacturing-6 .right .select span {
    font-size: 14px;
  } 
  .manufacturing-page .manufacturing-6 .right .select span i {
    width: 60px;
    height: 60px;
  } 
  .manufacturing-page .manufacturing-6 .right .color span {
    font-size: 14px;
  }
  .manufacturing-page .manufacturing-7 {
    padding: 40px 0;
  }
  .about-page .marginBox .marginTop .play {
    width: 40px;
    height: 40px;
  }
  .about-page .marginBox .marginTop .play i {
    border-left-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
  }
  .inner-banner .box .right {
    margin-top: 5px;
  }
  .inner-banner .box .right,
  .inner-banner .box .right .mbx {
    text-align: left;
  }
  .news-page .ui.container ul.newslist li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .news-page .ui.container ul.newslist li .text {
    max-width: 600px;
    padding: 0 0px;
    width: 100%;
  }
  .news-page .ui.container ul.newslist li .date span {
    text-align: left;
  }
   
}
 
.seoBox .seoNews .bottom .list ul li .box a.link:hover,
.news-page .sideBarLeft .list ul li .content a.link:hover {
  color: #242424;
  border-color: #242424;
}
 
.seoBox .seoNews .bottom .list ul li .box a.link:hover:after,
.news-page .sideBarLeft .list ul li .content a.link:hover:after {
  border-color: #242424;
}



.m-link{
  font-size: 16px; 
  line-height: 30px;
  padding-top: 15px;
}




.why-page .service-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.why-page .service-1 .left {
  vertical-align: middle;
}
.why-page .service-1 .left .img {
  height: 620px;
  display: block;
  -webkit-mask-image: url("../images/service-1-mask.png");
  mask-image: url("../images/service-1-mask.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.why-page .service-1 .right {
  vertical-align: middle;
  padding-left: 5%;
  line-height: 1.8;
  padding-top: 5%;
}
.why-page .service-1 .right span.h2 {
  margin: 0em 0 0.5em 0;
}
.why-page .service-1 .right span.h2 em {
  font-size: 0.875em;
}
.why-page .service-1 .right a.more {
  margin-top: 2em;
  font-size: 18px;
}
.why-page .service-2 {
  padding: 40px 0 10px;
  text-align: center;
}
.why-page .service-2 .list {
  margin-top: 60px;
}
.why-page .service-2 .list ul {
  margin: -13px;
}
.why-page .service-2 .list ul li {
  padding: 13px;
  text-align: center;
  overflow: hidden;
}
.font-36{
  line-height: 1.4;
}
.why-page .service-2 .list ul li .num_box{
  position: relative;
  display: inline-block;
}
.why-page .service-2 .list ul li span.num {
  font-size: 50px;
  color: #15116f;
  display: inline-block;
  font-family: var(--font);
  
  position: relative;
}
.why-page .service-2 .list ul li .num_box::before,
.why-page .service-2 .list ul li .num_box::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 500px;
  background-color: #bfbfbf;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-left: .5em;
  margin-top: -0.2em;
}
.why-page .service-2 .list ul li .num_box::before{
  right: 100%;
  left: auto;
  margin-right: 1em;
  margin-left: 0;
}
.why-page .service-2 .list ul li:first-child .num_box::before{
  display: none;
}
.why-page .service-2 .list ul li:last-child .num_box::after{
  display: none;
}
.why-page .service-2 .list ul li span.h6 {
  font-size: 24px;
  line-height: 44px;
  color: #120c0b;
  margin: .5em 0;
  display: block;
  font-family: var(--font);
}
.why-page .service-2 .list ul li .text {
    line-height: 1.6;
    color: #626262;
}
.why-page .service-2 .list ul .slick-slide:last-child li span.num:after,
.why-page .service-2 .list ul li:last-child span.num:after {
  display: none;
}
.why-page .service-2 .list ul li .text{
  font-size: 18px;
}
.why-page .service-3 {
  padding: 130px 0 90px;
  text-align: center;
  color: white;
  background-image: url("../images/service-3-bg.jpg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.why-page .service-3 span.h2 {
  margin-bottom: 1.2em;
  line-height: 1.4;
    font-size: 48px;
}
.why-page .service-3 a.more {
    color: #ffffff;
    font-size: 18px;
}
.why-page .service-3 a.more:hover {
  color: white;
}
.why-page .service-4 {
  padding: 60px 0;
  background-color: #15116f;
  color: white;
  text-align: center;
}
.why-page .service-4 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.why-page .service-4 ul li {
  padding: 5px;
  border-right: 1px solid white;
}
.why-page .service-4 ul li span.h6 {
  font-size: 60px;
  display: block;
  font-family: var(--font);
}
.why-page .service-4 ul li span.h6 sub {
  font-size: 50%;
  vertical-align: baseline;
}
.why-page .service-4 ul li .text {
  color: inherit;
  margin-top: .5em;
  font-size: 18px;
  line-height: 32px;
}
.why-page .service-4 ul li:last-child {
  border-right: none;
}
.chainList {
  padding: 80px 0 100px;
}
.chainList .top .left {
  vertical-align: bottom;
}
.chainList .top .left span.tag {
  margin-bottom: 1em;
}
.chainList .top .right {
  vertical-align: bottom;
  text-align: right;
}
/*.chainList .top .right a.more {
  background-color: #f3f3f3;
}*/
.chainList .bottom {
  margin-top: 70px;
}
.chainList .bottom .list ul {
  margin: -10px;
}
.chainList .bottom .list ul li {
  padding: 10px;
  font-size: 22px;
  font-weight: 500;
  /*text-transform: uppercase;*/
  line-height: 1.2;
}
.chainList .bottom .list ul li a.img-box {
  display: block;
}
.chainList .bottom .list ul li span.h6 {
  display: block;
  margin-top: .6em;
  margin-bottom: 5px;
}
.chainList .bottom .list ul li time {
  display: block;
  color: #1724a0;
}
@media screen and (max-width: 1600px){
   .why-page .service-1 {
    padding-top: 80px;
  }
   .why-page .service-2,
  .why-page .service-3 {
    padding: 80px 0;
  }
  .why-page .service-2 .list ul li span.h6 {
    font-size: 20px;
  } 
  .why-page .service-4 ul li span.h6 {
    font-size: 48px;
  }
  .why-page .service-2 .list ul li span.num {
    font-size: 36px;
  }
  .why-page .service-2 .list {
    margin-top: 50px;
  }
  .why-page .service-4 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1450px){
  .why-page .service-1 .left .img {
    height: 600px;
  }
  .why-page .service-2 .list ul li span.num {
    font-size: 32px;
  }
  .why-page .service-2 .list ul li span.h6 {
    font-size: 18px;
  }
  .why-page .service-2 .list {
    margin-top: 30px;
  } 
  .why-page .service-1 {
    padding-top: 60px;
  }
  .why-page .service-2,
  .why-page .service-3 {
    padding: 60px 0;
  } 
  .why-page .service-4 ul li span.h6 {
    font-size: 36px;
  } 
  .why-page .service-2 .list ul li span.h6{
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px){
   .why-page .service-2 .list ul li span.h6 {
    font-size: 14px;
    line-height: 28px;
  }
  .why-page .service-4 ul li span.h6 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1000px){
   .why-page .service-1 .right {
    padding: 0;
    width: 100%;
  }
  .why-page .service-1 .left {
    display: none;
  }
  .why-page .service-2 .list ul li {
    width: 25%;
  }
  .why-page .service-2 .list ul li:last-child span.num:after {
    display: inline-block;
  }
  .why-page .service-2 .list ul li span.num {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px){
  .why-page .service-4 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .why-page .service-4 ul li {
    width: 100%;
    border: none;
  } 
  .why-page .service-4 ul li span.h6 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px){
  .why-page .service-1 {
    padding-top: 40px;
  }
  .why-page .service-2,
  .why-page .service-3 {
    padding: 40px 0;
  }
  .why-page .service-2 .list ul li {
    width: 100%;
  }

  .why-page .service-2 .list ul li .num_box:before, 
  .why-page .service-2 .list ul li .num_box:after{
    display: none;
  }
  .why-page .service-4 ul li {
    width: 50% !important;
  }
   .chainList .top .right {
    text-align: left;
    margin-top: 10px;
  }
}






.inner-page .sidebar-content .sidebar-nav {
    width: 30%;
    padding-right: 5%;
    position: sticky;
    top: 120px;
}

.inner-page .sidebar-content .sidebar-box {
    width: 70%;
}

.inner-page .sidebar-content .sidebar-nav form {
    position: relative;
}
.inner-page .sidebar-content .sidebar-nav form input[type="text"] {
    width: 100%;
    height: 70px;
    border-radius: 18px;
    background: transparent;
    padding: 0 25px;
    font-size: 18px;
    color: #000;
    border: 1px solid #9b81ba;
}
.inner-page .sidebar-content .sidebar-nav form input[type="submit"] {
    width: 30px;
    height: 30px;
    background: url(../images/icon-search-black.png) no-repeat center center;
    right: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
}
.inner-page .sidebar-content .sidebar-nav h2 {
    font-size: 24px;
    line-height: 44px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    margin: 50px 0 25px;
    font-family: var(--font);
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li {
    position: relative;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a {
    text-transform: capitalize;
    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: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 18px 0 18px 25px;
    font-size: 18px;
    line-height: 32px;
    color: #000000;
    border-bottom: 2px solid #eeede7;
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a:hover {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a:hover span {
    background: #1724a0;
    color: #fff;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a span {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    background: #eeede7;
    font-size: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    width: 50px;
    text-align: center;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box a {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box a span {
    background: #1724a0;
    color: #fff;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box {
    position: relative;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box i {
    font-size: 20px;
    color: #000;
    height: 75px;
    line-height: 75px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 10px 0 0;
    position: absolute;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    z-index: 3;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box i:after {
    content: "\f0da";
    font-family: "FontAwesome";
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box i {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box i:after {
    content: "\f0d7";
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box:hover i {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .children {
    display: none;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .children {
    display: block;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .children li a {
    display: block;
    padding: 12px 0 12px 25px;
    font-size: 16px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .children li a:hover {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .children li.active a {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .related {
    margin: 40px 0;
}
.inner-page .sidebar-content .sidebar-nav .related-list {
    margin-bottom: 60px;
}
.inner-page .sidebar-content .sidebar-nav .related-list li {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .related-img {
    display: block;
    max-width: 102px;
    border-radius: 5px;
    overflow: hidden;
}

.inner-page .sidebar-content .sidebar-nav .related-list li .related-img img {
    width: 100%;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content {
    padding-left: 15px;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content h4 {
    max-width: 230px;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content h4:hover {
    color: #1724a0;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content p {
    font-size: 14px;
    line-height: 1;
    color: #9a9a9a;
    margin-top: 5px;
}
.inner-page .sidebar-content .sidebar-nav .related-list li:last-child {
    margin-bottom: 0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info {
    margin-bottom: 40px;
    padding: 80px 30px 85px;
    border-radius: 5px;
    margin-top: 60px;
    background: url(../images/side-left-info-bg.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info h5 {
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font);
    margin-bottom: 30px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info .info-tel {
    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;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    margin: 25px 0 28px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info .info-tel img {
    margin-right: 20px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info .icon a {
    margin: 0 14px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}


@media (max-width: 1000px) {
  .inner-page .sidebar-content .sidebar-nav {
    display: none;
  }

  .inner-page .sidebar-content .sidebar-box {
    width: 100%;
  }
}




#index-body .i-case .list {
    margin-top: 40px;
}

#index-body .i-case ul {
    margin: -14px;
}

#index-body .i-case ul li {
    padding: 14px;
}

#index-body .i-case ul li .img-box {
    position: relative;
}

#index-body .i-case ul li .img-box p {
    font-size: 24px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    padding: 0 30px;
    z-index: 2;
}

#index-body .i-case ul li .img-box:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.8)),to(transparent));
    background: -webkit-linear-gradient(bottom,rgba(0,0,0,.8),transparent);
    background: -moz-linear-gradient(bottom,rgba(0,0,0,.8),transparent);
    background: linear-gradient(to top,rgba(0,0,0,.8),transparent);
    z-index: 1;
}

@media screen and (max-width: 1400px) {
  #index-body .i-case ul li .img-box p {
      font-size: 20px;
      bottom: 15px;
  }
}

@media screen and (max-width: 500px) {
  #index-body .i-case .list {
      margin-top: 20px;
  }
}






.about-page .about2-3 {
  position: relative;
  padding-top: 25%;
  background-image: url(../images/about-page-3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.about-page .about2-3 .play {
  width: 190px;
  height: 190px;
  border-radius: 100%;
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 190px;
  position: absolute;
  left: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.about-page .about2-4 {
  padding: 100px 0 50px;
  background-color: white;
}
.about-page .about2-4 ul {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.about-page .about2-4 ul li {
  padding: 15px;
}
.about-page .about2-4 ul li .box {
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  -webkit-box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  padding: 55px 25px;
}
.about-page .about2-4 ul li .box .h5 {
  font-size: 26px;
    font-family: 'Baskerville';
    line-height: 40px;
    /* font-weight: 600; */
    margin: 24px 0 20px;
}
.about-page .about2-4 ul li .box .des {
  color: #818181;
}
.about-page .about2-4 ul li .box:hover {
  background: black;
  color: white;
}
.about-page .about2-4 ul li .box img {
  transition: .5s ease;
}
.about-page .about2-4 ul li .box:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

@media screen and (max-width: 1200px) {
  .about-page .about-3 {
    padding-top: 40%;
    /*background-image: url(../images/about-bj.jpg);
    background-size: 100% auto;*/
  }
  .about-page .about-4 ul li {
    width: 50% !important;
  }
}

@media screen and (max-width: 1000px) {
  .about-page .about-3 .play {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }

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

@media screen and (max-width: 700px) {
  .about-page .about-3 {
    padding-top: 70%;
    background-attachment: unset;
  }
  .about-page .about-3 > img {
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 500px) {
  .about-page .about-4 ul li {
    width: 100% !important;
  }
}

.newdet-page .ui.container .content * {
  font: revert;
}

.newdet-page .ui.container .content ul {
  padding-left: 40px;
}

.newdet-page .ui.container .content li {
  list-style-type: disc;
}