@font-face {
  font-family: 'AlibabaSans';
  src: url(../fonts/AlibabaSans-Light.ttf) format('truetype'), url(../fonts/AlibabaSans-Light.eot) format('eot'), url(../fonts/AlibabaSans-Light.woff) format('woff'), url(../fonts/AlibabaSans-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'AlibabaSans';
  src: url(../fonts/AlibabaSans-Regular.ttf) format('truetype'), url(../fonts/AlibabaSans-Regular.eot) format('eot'), url(../fonts/AlibabaSans-Regular.woff) format('woff'), url(../fonts/AlibabaSans-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'AlibabaSans';
  src: url(../fonts/AlibabaSans-Medium.ttf) format('truetype'), url(../fonts/AlibabaSans-Medium.eot) format('eot'), url(../fonts/AlibabaSans-Medium.woff) format('woff'), url(../fonts/AlibabaSans-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'AlibabaSans';
  src: url(../fonts/AlibabaSans-Bold.ttf) format('truetype'), url(../fonts/AlibabaSans-Bold.eot) format('eot'), url(../fonts/AlibabaSans-Bold.woff) format('woff'), url(../fonts/AlibabaSans-Bold.woff2) format('woff2');
  font-weight: bold;
}
body {
  font-family: "AlibabaSans";
  font-weight: 200;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1550px;
      /*line-height: 2;*/
}
.home.container {
  max-width: 1350px;
}
:root {
  --color: #006e37;
}
#ewm {
  position: absolute;
  width: 100px;
  right: 0;
  top: 100%;
  border: 4px solid #FFFFFF;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: none;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header.fixed {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#header.inner {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: #FFFFFF;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 25px;
  font-size: 18px;
  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;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a {
  border-bottom-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  -webkit-transition: border-bottom-color 0.5s ease;
  -moz-transition: border-bottom-color 0.5s ease;
  transition: border-bottom-color 0.5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  margin-right: 60px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .h-emw {
  font-size: 28px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  text-align: center;
  color: #FFFFFF;
  background-color: var(--color);
}
#header .nav .ui.menu .h-emw:hover #ewm {
  display: block;
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
.search-box form input {
  background: none;
  outline: none;
  border: none;
}
.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
.search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: 50%;
}
table td:first-child {
  color: #2d2d2d;
}
table td:last-child {
  color: #666;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #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: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 120px;
  }
}
.language-box .language-img {
  width: auto;
  vertical-align: middle;
}
.language-box .language-img img {
  vertical-align: middle;
}
.language-box .zhuyu {
  color: #FFFFFF;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.language-box .zhuyu i {
  margin-left: 15px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 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;
}
.language-box ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.language-box ul.sub-menu li:hover a {
  background: #ffb11b;
  color: white;
}
.language-box:hover .hover-language 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%);
}
.langs a {
  color: #a0a0a0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  -webkit-transition: border-bottom-color 0.5s ease;
  -moz-transition: border-bottom-color 0.5s ease;
  transition: border-bottom-color 0.5s ease;
}
.langs a + a {
  margin-left: 15px;
}
.langs a.active {
  color: var(--color);
  border-bottom-color: var(--color);
}
.i-banner {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.i-banner .left {
  width: 15%;
  height: 100%;
}
.i-banner .left > div {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.i-banner .left .logo {
  margin-top: 20%;
}
.i-banner .left .i-search {
  margin-top: auto;
}
.i-banner .left .langs {
  margin-top: 10%;
}
.i-banner .left .menu-box {
  margin-top: 10%;
}
.i-banner .left .menu-box ul.menu > li {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
.i-banner .left .menu-box ul.menu > li + li {
  margin-top: 20px;
}
.i-banner .left .menu-box ul.menu > li ul.sub-menu {
  display: none;
}
.i-banner .left .menu-box ul.menu > li > a:hover {
  color: var(--color);
}
.i-banner .left .down {
  margin: auto;
}
.i-banner .right {
  width: 85%;
  height: 100%;
  background: url(../images/banner.jpg) no-repeat center;
  background-size: cover;
  border-radius: 0 0 0 100px;
}
.i-banner .right .play {
  border-radius: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  cursor: hand;
}
.i-banner .right .play:before,
.i-banner .right .play:after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.35);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.i-banner .right .play:after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
@-webkit-keyframes ks {
  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 ks {
  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 ks {
  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;
  }
}
.baseLine {
  width: 77px;
  height: 6px;
  background-color: var(--color);
}
.baseTag {
  font-size: 24px;
}
.baseTit {
  font-size: 48px;
  line-height: 1.3;
}
.baseTit span {
  color: var(--color);
}
.baseBtn {
  font-weight: 400;
  text-align: center;
  display: inline-block;
  min-width: 154px;
  height: 54px;
  line-height: 54px;
  border-radius: 27px;
  color: #FFFFFF;
  background-color: var(--color);
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.baseBtn:hover {
  background-color: #000000;
}
@-webkit-keyframes rotate {
  from {
    stroke-dashoffset: 126px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
@-moz-keyframes rotate {
  from {
    stroke-dashoffset: 126px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
@keyframes rotate {
  from {
    stroke-dashoffset: 126px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
.baseDots li {
  display: inline-block;
  position: relative;
}
.baseDots li svg {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  opacity: 0;
}
.baseDots li.slick-active svg {
  opacity: 1;
}
.baseDots li.slick-active .progress {
  -webkit-animation: rotate 5500ms linear both;
  -moz-animation: rotate 5500ms linear both;
  animation: rotate 5500ms linear both;
}
.baseDots .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--color);
}
.our-about {
  padding: 130px 0 280px;
  position: relative;
  overflow: hidden;
}
.our-about::before {
  content: attr(data-text);
  position: absolute;
  left: 43%;
  bottom: 0;
  font-size: 17vw;
  line-height: .9;
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(to bottom, #ddd, white);
  /* Chrome, Safari */
  background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(white));
  background: -webkit-linear-gradient(top, #ddd, white);
  background: -moz-linear-gradient(top, #ddd, white);
  background: linear-gradient(to bottom, #ddd, white);
  /* 标准语法 */
  -webkit-background-clip: text;
  /* Chrome, Safari */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Chrome, Safari */
  color: transparent;
  /* 其他浏览器 */
  opacity: .5;
}
.our-about .left {
  width: 30%;
}
.our-about .right {
  width: 70%;
}
.our-about .right .text h1 {
  display: inline;
}
.our-about .list {
  margin-top: 100px;
}
.our-about .list li i {
  float: left;
  display: block;
  width: 130px;
  text-align: center;
}
.our-about .list li .text {
  padding-left: 130px;
}
.our-about .list li .num {
  font-size: 45px;
  font-weight: bold;
  color: var(--color);
}
.our-about .list li .num span {
  font-size: 16px;
}
.our-about .list li .p {
  font-weight: 400;
}
.i-category {
  background: url(../images/cate-bg.jpg) no-repeat center;
  background-size: cover;
}
.i-category .box {
  padding: 200px 0 100px;
  z-index: 1;
}
.i-category .box::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  width: 46%;
  background-color: var(--color);
  border-radius: 120px 0 0 0;
}
.i-category .box .left {
  width: 42%;
  padding-right: 80px;
}
.i-category .box .left > ul {
  margin: -15px;
}
.i-category .box .left > ul li {
  padding: 15px;
}
.i-category .box .left .name {
  margin-top: 60px;
  font-size: 60px;
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
}
.i-category .box .left .desc {
  margin: 30px 0 60px;
}
.i-category .box .left .dots {
  margin-top: 90px;
}
.i-category .box .right {
  margin-top: 45px;
  width: 58%;
}
.i-category .box span.arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  line-height: 68px;
  border-radius: 34px;
  background-color: #FFFFFF;
  text-align: center;
  font-size: 34px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  font-family: FontAwesome;
  cursor: pointer;
}
.i-category .box span.arrow:hover {
  color: #FFFFFF;
  background-color: var(--color);
}
.i-category .box span.arrow.arrow_l {
  left: -185px;
}
.i-category .box span.arrow.arrow_r {
  right: -185px;
}
.our-product {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.our-product::before {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  font-size: 19.5vw;
  line-height: .9;
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(to bottom, #ddd, white);
  /* Chrome, Safari */
  background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(white));
  background: -webkit-linear-gradient(top, #ddd, white);
  background: -moz-linear-gradient(top, #ddd, white);
  background: linear-gradient(to bottom, #ddd, white);
  /* 标准语法 */
  -webkit-background-clip: text;
  /* Chrome, Safari */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Chrome, Safari */
  color: transparent;
  /* 其他浏览器 */
  opacity: .5;
}
.our-product .parts {
  position: absolute;
  left: 9%;
  top: 6%;
}
.our-product .container {
  max-width: 1430px;
}
.our-product .dots {
  margin-top: 160px;
}
.pro_list ul {
  margin: -25px;
}
.pro_list li {
  padding: 25px;
}
/*.pro_list .mll-text {
  padding: 0 40px 30px;
}*/
.pro_list .mll-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f8f8;
  border-radius: 150px 150px 0 0;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.pro_list .mll-text.color::before {
  top: 0;
  border-radius: 200px 200px 0 0;
}
.pro_list .mll-text.color .img {
  padding: 5%;
}
.pro_list .mll-text .img {
  margin-bottom: 50px;
}
.pro_list .mll-text .img img {
  display: block;
  margin: auto;
}
.pro_list .mll-text .text {
  padding: 0 40px 30px;
}
.pro_list .mll-text .text .name {
  line-height: 1.5;
  min-height: 3em;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_list .mll-text .text .desc {
  margin-bottom: 30px;
  line-height: 1.5;
  min-height: 7.5em;
  font-weight: 400;
  color: #737373;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_list .mll-text .text .arrow img {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.pro_list .mll-text:hover::before {
  background-color: var(--color);
}
.pro_list .mll-text:hover .text .name {
  color: #FFFFFF;
}
.pro_list .mll-text:hover .text .desc {
  color: #FFFFFF;
}
.pro_list .mll-text:hover .text .arrow img {
  opacity: 1;
}
@media (max-width: 1350px) {
  .pro_list ul {
    margin: -15px;
  }
  .pro_list li {
    padding: 15px;
  }
  /*.pro_list .mll-text {
    padding: 0 20px 15px;
  }*/
  .pro_list .mll-text .img {
    margin-bottom: 25px;
  }
  .pro_list .mll-text .text .desc {
    margin-bottom: 15px;
  }
}
@-webkit-keyframes moveY {
  from {
    top: -55px;
  }
  to {
    top: 100%;
  }
}
@-moz-keyframes moveY {
  from {
    top: -55px;
  }
  to {
    top: 100%;
  }
}
@keyframes moveY {
  from {
    top: -55px;
  }
  to {
    top: 100%;
  }
}
.i-advantage {
  background: url(../images/adv-bg.jpg) no-repeat center;
  background-size: cover;
}
.i-advantage ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.i-advantage li {
  position: relative;
  min-height: 830px;
  padding: 10% 3% 0;
  background-color: var(--color);
}
.i-advantage li:nth-child(2) {
  background-color: rgba(0, 110, 55, 0.75);
}
.i-advantage li:nth-child(3) {
  background-color: rgba(0, 110, 55, 0.55);
}
.i-advantage li:nth-child(3)::after {
  -webkit-animation-delay: 1500ms;
  -moz-animation-delay: 1500ms;
  animation-delay: 1500ms;
}
.i-advantage li:nth-child(4) {
  background-color: rgba(0, 110, 55, 0.25);
}
.i-advantage li + li {
  border-left: 1px solid #FFFFFF;
}
.i-advantage li + li::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -55px;
  width: 10px;
  height: 55px;
  background-color: #FFFFFF;
  -webkit-animation: moveY 5500ms infinite linear;
  -moz-animation: moveY 5500ms infinite linear;
  animation: moveY 5500ms infinite linear;
}
.i-advantage .box i {
  height: 85px;
  display: block;
  margin-bottom: 30px;
}
.i-advantage .box .name {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 4.5em;
  color: #FFFFFF;
}
.i-advantage .box .name span {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}
.i-advantage .box .desc {
  color: #FFFFFF;
  line-height: 2;
}
.NewsAndContact .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.NewsAndContact .i-news {
  position: relative;
  width: 53%;
  padding: 130px 7% 60px 8%;
}
.NewsAndContact .i-news::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 11.45vw;
  line-height: .9;
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(to bottom, #ddd, white);
  /* Chrome, Safari */
  background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(white));
  background: -webkit-linear-gradient(top, #ddd, white);
  background: -moz-linear-gradient(top, #ddd, white);
  background: linear-gradient(to bottom, #ddd, white);
  /* 标准语法 */
  -webkit-background-clip: text;
  /* Chrome, Safari */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Chrome, Safari */
  color: transparent;
  /* 其他浏览器 */
  opacity: .5;
}
.NewsAndContact .i-news .list {
  margin-bottom: 80px;
}
.NewsAndContact .i-news .list ul {
  margin: 0 -40px;
}
.NewsAndContact .i-news .list li {
  padding: 0 40px;
}
.NewsAndContact .i-news .list li .name {
  font-size: 26px;
  font-weight: bold;
}
.NewsAndContact .i-news .list li .desc {
  font-weight: 400;
  line-height: 2;
  min-height: 12em;
}
.NewsAndContact .i-news .list li time {
  font-size: 24px;
  display: block;
  font-weight: bold;
  color: var(--color);
}
.NewsAndContact .i-contact {
  width: 47%;
  background-color: var(--color);
  padding: 130px 8% 130px 7%;
  border-radius: 150px 0 0 0;
}
.NewsAndContact .i-contact .baseLine {
  background-color: #FFFFFF;
}
.NewsAndContact .i-contact .baseTag {
  color: #FFFFFF;
}
.NewsAndContact .i-contact .baseTit {
  color: #FFFFFF;
}
.NewsAndContact .i-contact .text {
  color: #FFFFFF;
}
.NewsAndContact .i-contact .form input {
  margin-bottom: 30px;
  padding: 0 10%;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  width: 100%;
  height: 45px;
  border-radius: 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.14);
}
.NewsAndContact .i-contact .form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.NewsAndContact .i-contact .form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.NewsAndContact .i-contact .form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.NewsAndContact .i-contact .form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.NewsAndContact .i-contact .form input::placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.NewsAndContact .i-contact .form input[type="submit"] {
  margin-bottom: 0;
  margin-top: 50px;
  width: 160px;
  color: #000000;
  text-transform: uppercase;
  background-color: #FFFFFF;
  padding: 0;
  font-weight: bold;
}
#footer {
  background-color: #f3f3f3;
}
#footer .foot-top {
  padding: 100px 0 45px;
}
#footer .foot-top .menu-box ul.menu > li {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#footer .foot-top .menu-box ul.menu > li + li {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #000000;
}
#footer .foot-top .menu-box ul.menu > li ul.sub-menu {
  display: none;
}
#footer .foot-top .menu-box ul.menu > li > a:hover {
  color: var(--color);
}
#footer .foot-bottom {
  padding: 45px 0;
}
#footer .foot-bottom p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
}
#footer .foot-bottom p .footlink {
  margin-left: 10px;
  display: inline-block;
  width: 400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}
#footer .foot-bottom img.sup {
  max-height: 15px;
}
@media (max-width: 1800px) {
  .i-category .box span.arrow.arrow_l {
    left: -100px;
  }
  .i-category .box span.arrow.arrow_r {
    right: -100px;
  }
}
@media (max-width: 1600px) {
  .i-category .box span.arrow {
    display: none;
  }
}
@media (max-width: 1550px) {
  .ui.container {
    width: 1350px;
  }
}
@media (max-width: 1350px) {
  .ui.container {
    width: 1230px;
  }
  #header {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #header .nav .ui.menu .h-emw {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    margin: 0 15px;
  }
  #header .nav .ui.menu .h-search {
    margin-right: 20px;
  }
  .i-banner .left {
    display: none;
  }
  .i-banner .right {
    width: 100%;
  }
  .our-about {
    padding: 100px 0 200px;
  }
  .i-category .box {
    padding: 100px 0;
  }
  .i-category .box .left .name {
    font-size: 48px;
  }
  .our-product .dots {
    margin-top: 100px;
  }
  .i-advantage li {
    padding: 10% 2% 0;
  }
  .i-advantage .box .name {
    font-size: 20px;
  }
  .i-advantage .box i {
    margin-bottom: 15px;
  }
  .NewsAndContact .i-news {
    padding: 130px 2% 60px;
  }
  .NewsAndContact .i-news .list ul {
    margin: 0 -20px;
  }
  .NewsAndContact .i-news .list li {
    padding: 0 20px;
  }
  .NewsAndContact .i-contact {
    padding: 130px 2% 130px;
  }
  .NewsAndContact .i-news .list li .desc {
    min-height: auto;
  }
  .NewsAndContact .i-news .list li .name {
    font-size: 24px;
  }
  .NewsAndContact .i-news .list li time {
    font-size: 20px;
  }
  #footer .foot-top .menu-box ul.menu > li + li {
    margin-left: 25px;
    padding-left: 25px;
  }
  #footer .foot-top .menu-box ul.menu > li {
    font-size: 16px;
  }
}
@media (max-width: 1230px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .logo {
    width: 80px;
  }
  .langs a + a {
    margin-left: 10px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 10px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a {
    padding: 15px 0;
  }
  .baseTag {
    font-size: 20px;
  }
  .baseTit {
    font-size: 40px;
  }
  .font-18 {
    font-size: 16px;
  }
  .our-about .list {
    margin-top: 60px;
  }
  .our-about .list ul {
    margin: -15px;
  }
  .our-about .list li {
    width: 50%!important;
    padding: 15px;
  }
  .i-category .box .left .dots {
    margin-top: 40px;
  }
  .i-category .box .left .name {
    margin-top: 30px;
  }
  .i-category .box .left .name {
    font-size: 40px;
  }
  .i-category .box .left {
    padding-right: 40px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #nav-height {
    display: none;
  }
  #header {
    display: none!important;
  }
  #mobile {
    display: block;
  }
  .i-banner {
    margin-top: 120px;
    height: -webkit-calc(100vh - 120px);
    height: -moz-calc(100vh - 120px);
    height: calc(100vh - 120px);
  }
  .our-about {
    padding: 60px 0;
  }
  .our-about::before {
    display: none;
  }
  .our-about .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .our-about .right {
    width: 100%;
  }
  .baseTag {
    font-size: 18px;
  }
  .baseTit {
    font-size: 32px;
  }
  .our-about .list li .num {
    font-size: 34px;
  }
  .i-category {
    padding: 60px 0;
  }
  .i-category .box .left {
    width: 100%;
    padding: 0;
  }
  .i-category .box .right {
    width: 100%;
    display: none;
  }
  .i-category .box::before {
    display: none;
  }
  .i-category .box {
    padding: 0;
  }
  .i-category .box .left .name {
    font-size: 34px;
  }
  .i-category .box .left .desc {
    margin: 15px 0 30px;
  }
  .our-product {
    padding: 60px 0;
  }
  .our-product::before {
    display: none;
  }
  .our-product .dots {
    margin-top: 40px;
  }
  .i-advantage ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .i-advantage li {
    width: 50%!important;
    min-height: auto;
    padding: 30px 15px;
    border: 1px solid #FFFFFF!important;
  }
  .i-advantage li + li::after {
    display: none;
  }
  .NewsAndContact .i-news::before {
    display: none;
  }
  .NewsAndContact .box {
    display: block;
  }
  .NewsAndContact .i-news {
    width: 100%;
    padding: 60px 5%;
  }
  .NewsAndContact .i-news .list {
    margin: 40px 0;
  }
  .NewsAndContact .i-contact {
    width: 100%;
    padding: 60px 5%;
  }
  .NewsAndContact .i-contact {
    border-radius: 100px 0 0 0;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  .baseTag {
    font-size: 16px;
  }
  .baseTit {
    font-size: 24px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-16 {
    font-size: 18px;
  }
  .our-about .list li i {
    display: none;
  }
  .our-about .list li .text {
    padding-left: 0;
  }
  .our-about .list {
    margin-top: 30px;
  }
  .i-category .box .left .name {
    font-size: 24px;
  }
  .i-advantage {
    display: none;
  }
  .our-product {
    padding: 60px 0 0;
  }
  .NewsAndContact .i-news .list li .name {
    font-size: 20px;
  }
  .NewsAndContact .i-contact .form input {
    font-size: 14px;
  }
  .NewsAndContact .i-contact .form input[type="submit"] {
    margin-top: 0;
  }
  #footer .foot-top {
    display: none;
  }
}




.more {
  display: inline-block;
  width: 229px;
  height: 62px;
  line-height: 62px;
  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;
  font-weight: bold;
  background-color: var(--color);
  color: #fff;
  border-radius: 31px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  padding-left: 46px;
}
.more i {
  display: inline-block;
  margin-left: 32px;
  margin-top: -3px;
  color: #000;
}
.more::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 45px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover i{
  color: #fff;
}
.more:hover::after {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 31px;
  background-color: #000;
}


@media screen and (max-width: 1000px) {
  .more {
    width: 180px;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
  }
  .more i {
    margin-left: 20px;
  }
  .more::after {
    top: 13px;
    right: 33px;
  }
}

@media screen and (max-width: 500px) {
  .more {
    font-size: 14px;
    width: 150px;
    height: 40px;
    padding-left: 10px;
  }
  .more i {
    margin-left: 25px;
  }
  .more::after {
    top: 8px;
    right: 21px;
  }
}

.inner-banner {
  height: 435px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 200px;
  border-radius: 0px 0px 300px 0px;
  color: #fff;
}
.inner-banner .mbx {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.inner-banner .tit {
  font-size: 40px;
  font-weight: bold;
  margin-top: 17px;
  text-transform: uppercase;
}
.font-48 {
  font-size: 30px;
}

.font-36 {
  line-height: 1.3;
}
.inner-page .in-num {
  font-weight: bold;
  line-height: 1.1;
  text-transform: uppercase;
}
.inner-page .in-num::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--color);
  display: inline-block;
  vertical-align: bottom;
  margin: -2px 7px 0 0;
}
.inner-page .title {
  font-weight: bold;
}
.inner-page .m-page {
  margin-top: 100px;
  text-align: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 100%;
  background: #333;
  font-size: 17px;
  font-weight: bold;
  color: white;
  margin: 0 10px;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background: var(--color);
}
.about-page .title {
  margin-top: 6px;
}
.about-page .about-1 {
  padding-top: 8%;
  position: relative;
}
.about-page .about-1 .img {
  margin-top: 38px;
}
.about-page .about-1 .img img{
  border-radius: 200px 0 0 0;
}
.about-page .about-1 .con {
  margin-top: 57px;
  font-weight: 400;
}
.about-page .about-1::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .7;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-page .about-2 {
  padding-top: 5.521%;
}
.about-page .about-2 .parts {
  position: absolute;
  right: 3%;
  top: 52%;
}
.about-page .about-2 .content {
  position: relative;
  padding: 0 40px;
  margin: 90px 0 20%;
}
.about-page .about-2 .content ul li {
  padding: 0 36px 88px;
  position: relative;
  cursor: pointer;
}
.about-page .about-2 .content ul li .tit {
  color: var(--color);
  font-weight: bold;
}
.about-page .about-2 .content ul li .con {
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
  font-weight: 400;
}
.about-page .about-2 .content ul li::before {
  content: '';
  position: absolute;
  /*width: 1px;*/
  height: 78px;
  background: #bfbfbf;
  bottom: 0;
  left: 36px;
}
.about-page .about-2 .content ul li:after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  left: 25px;
  bottom: 0;
  /*background: #000;*/
  z-index: 8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .content ul li:hover::after {
  background: var(--color);
}
.about-page .about-2 .content::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 12px;
  /*background: #afafaf;*/
}
.about-page .about-2 .bottom {
  /*padding: 9.167% 0 0 0;*/
  overflow: hidden;
    width: calc(100% - 3vw);
    border-radius: 0 300px 300px 0;
    position: relative;
    z-index: 1;
}
.about-page .about-2 .bottom ul {
  margin-right: -16px;
}
.about-page .about-2 .bottom ul li {
  padding-right: 16px;
}
.about-page .about-2 .bottom ul li a img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 {
  padding: 5.573% 0 0;
}
.about-page .about-3 .ui.container {
  max-width: 1580px;
  padding: 0 15px 0 30px;
}
.about-page .about-3 .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 22px;
}
.about-page .about-3 .content {
  margin-top: 65px;
}
.about-page .about-3 .content ul {
  margin: -15px -10px;
}
.about-page .about-3 .content ul li {
  padding: 15px 10px;
}
.about-page .about-3 .content ul li .img-box {
  background: #fff;
  border: solid 4px #fff;
  text-align: center;
  line-height: 120px;
}
.about-page .about-3 .content ul li .img-box img {
  display: inline-block;
  vertical-align: middle;
  /*-webkit-filter: grayscale(100%);*/
  /*filter: grayscale(100%);*/
}
.about-page .about-3 .content ul li .img-box:hover img {
  -webkit-filter: none;
  filter: none;
}
.about-page .about-4 {
  padding: 7.5% 0 11.146%;
}

.about-page .about-4 .content {
  margin-top: 60px;
}
.about-page .about-4 .content ul {
  margin-right: -25px;
}
.about-page .about-4 .content ul li {
  padding-right: 25px;
}
.about-page .about-4 .content ul li .img-box img {
  width: 100%;
}
.about-page .about-4 .content ul.slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -89px;
  width: 100%;
  text-align: center;
  margin: 0;
}
.about-page .about-4 .content ul.slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  padding: 0;
  margin-right: 31px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .content ul.slick-dots li button {
  display: none;
}
.about-page .about-4 .content ul.slick-dots li.slick-active {
  background: var(--color);
}
.about-page .about-4 .content ul.slick-dots li:last-child {
  margin-right: 0;
}
.about-page .about-5{
  background-color: var(--color);
	border-radius: 257px 0px 0px 257px;
  padding: 4.382% 0 5.4256%;
  color: #fff;
  margin-top: 100px;
}
.about-page .about-5 .parts {
  position: absolute;
  left: 20%;
  top: 15%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-5 .in-num::before{
  background: #fff;
}
.about-page .about-5 .left{
  width: 40%;
  vertical-align: middle;
}
.about-page .about-5 .right{
  vertical-align: middle;
  width: 60%;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
.about-page .about-6{
  padding: 7% 0;
}
.about-page .about-6 .title em{
  color: var(--color);
}
.about-page .about-6 .content{
  padding-top: 6.349%;
}
.about-page .about-6 .content ul{
  margin-right: -96px;
}
.about-page .about-6 .content ul li{
  padding-right: 96px;
}
.about-page .about-6 .content ul li .top {
  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;
}
.about-page .about-6 .content ul li .top span {
  font-size: 110px;
  line-height: 1;
  color: var(--color);
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.about-page .about-6 .content ul li .top span::after {
  content: '';
  width: 79px;
  height: 95px;
  background: url(../images/ad-bg.png) no-repeat;
  position: absolute;
  bottom: 0;
  left: 0px;
}
.about-page .about-6 .content ul li .top em {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  padding-left: 15px;
}
.about-page .about-6 .content ul li p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  margin-top: 14px;
}
@media screen and (max-width: 1680px) {
  .about-page .about-3 .ui.container{
    max-width: 1400px;
  }
}
@media screen and (max-width: 1440px) {
  .about-page .about-3 .ui.container{
    max-width: 1200px;
  }
  .about-page .about-6 .content ul{
    margin-right: -40px;
  }
  .about-page .about-6 .content ul li{
    padding-right: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .about-page .about-1::after {
    font-size: 300px;
  }
  .about-4 .ui.container {
    padding: 0 15px 0 30px;
  }
}
@media screen and (max-width: 1100px) {
  .about-page .about-2 .content {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner {
    height: 300px;
    padding-top: 100px;
    border-radius: 0;
  }
  .inner-banner .tit {
    font-size: 24px;
  }
  .inner-banner .mbx {
    font-size: 14px;
  }
  .inner-page .in-num::before {
    width: 20px;
    height: 20px;
    margin: 2px 7px 0 0;
  }
  .about-page .about-1::after {
    display: none;
  }
  .about-page .about-2 .content {
    margin-top: 40px;
  }
  .about-page .about-4 {
    border-radius: 100px 0 0 0;
  }
  .about-page .about-4 .content ul.slick-dots {
    bottom: -30px;
  }
  .about-page .about-5{
    margin-top: 60px;
    border-radius: 0;
  }
  .about-page .about-5 .left{
    width: 100%;
  }
  .about-page .about-5 .right{
    width: 100%;
    margin-top: 20px;
  }
  .font-48 {
    font-size: 36px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner {
    background: #fff !important;
    color: #000;
    height: auto;
    padding-top: 80px;
  }

  .about-page .about-1 .con {
    margin-top: 20px;
  }
  .about-page .about-3 .ui.container {
    padding: 0 15px;
  }
  .about-page .about-3 .content {
    margin-top: 20px;
  }
  .about-page .about-3 .content ul li .img-box {
    line-height: 100px;
  }
  .about-page .about-4 .content ul.slick-dots li {
    margin-right: 20px;
  }

}
@media screen and (max-width: 500px) {
  .font-48 {
    font-size: 30px;
  }
  .about-page .about-1 .img {
    margin-top: 20px;
  }
  .about-page .about-2 .content ul li {
    padding: 0 0 88px 0;
  }
  .about-page .about-2 .content ul li::after {
    left: 0;
    width: 20px;
    height: 20px;
  }
  .about-page .about-2 .content ul li::before {
    left: 11px;
  }
  .about-page .about-2 .bottom {
    padding-right: 0;
  }
  .about-page .about-4 {
    border-radius: 0;
  }
  .about-page .about-4 .ui.container {
    padding: 0 15px;
  }
  .about-page .about-4 .content {
    margin-top: 20px;
  }
  .about-page .about-4 .content ul.slick-dots li {
    margin-right: 10px;
  }
}
/*.seo_content {
  padding-top: 5.6771%;
}*/
.seo_content .tag {
  color: var(--color);
  font-weight: bold;
  text-transform: uppercase;
}
.seo_content .title {
  text-transform: uppercase;
}
.seo_content .title small {
  display: block;
}
.seo_content .title em {
  color: var(--color);
}
.seo_content .seo_about {
  background-color: #f6f6f6;
  border-radius: 300px 0px 0px 0px;
  padding: 8.282% 0 9.115%;
}
.seo_content .seo_about .con {
  color: rgba(0, 0, 0, 0.6);
  padding-right: 57px;
  margin-top: 43px;
  max-height: 467px;
  overflow-y: auto;
}
.seo_content .seo_about .con::-webkit-scrollbar {
  width: 6px;
}
.seo_content .seo_about .con::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.22);
}
.seo_content .seo_honor {
  padding: 5.782% 0 10.209%;
}
.seo_content .seo_honor .content {
  margin-top: 29px;
}
.seo_content .seo_honor .content ul {
  margin-right: -25px;
}
.seo_content .seo_honor .content ul li {
  padding-right: 25px;
}
.seo_content .seo_honor .content ul li .img-box img {
  width: 100%;
}
.seo_content .seo_honor .content ul.slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -89px;
  width: 100%;
  text-align: center;
  margin: 0;
}
.seo_content .seo_honor .content ul.slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  padding: 0;
  margin-right: 31px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seo_content .seo_honor .content ul.slick-dots li button {
  display: none;
}
.seo_content .seo_honor .content ul.slick-dots li.slick-active {
  background: var(--color);
}
.seo_content .seo_honor .content ul.slick-dots li:last-child {
  margin-right: 0;
}
.seo_content .seo_news {
  background-color: #f6f6f6;
  padding: 5.834% 0 7.344%;
}
.seo_content .seo_news .content {
  margin-top: 61px;
}
.seo_content .seo_news .content ul {
  margin-right: -25px;
}
.seo_content .seo_news .content ul li {
  padding-right: 25px;
}
.seo_content .seo_news .content ul li .img {
  position: relative;
}
.seo_content .seo_news .content ul li .img .img-box {
  border-radius: 0 100px 0 0;
}
.seo_content .seo_news .content ul li .img .img-box img {
  width: 100%;
}
.seo_content .seo_news .content ul li .img .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 100px 0 0;
  background: rgba(0, 0, 0, 0.2);
}
.seo_content .seo_news .content ul li .img time {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96px;
  height: 96px;
  background-color: var(--color);
  border-radius: 0px 71px 0px 0px;
  color: #fff;
  padding: 27px 33px 0 14px;
}
.seo_content .seo_news .content ul li .img time em {
  line-height: 1;
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
}
.seo_content .seo_news .content ul li .img time span {
  display: block;
  margin-top: 5px;
}
.seo_content .seo_news .content ul li .text {
  padding: 24px 30px 0 16px;
}
.seo_content .seo_news .content ul li .text .tit {
  line-height: 1.8;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seo_content .seo_news .content ul li .text .tit:hover {
  color: var(--color);
}
.seo_content .seo_news .content ul li .text .con {
  color: #737373;
  line-height: 1.7;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.seo_content .seo_industry {
  padding: 5% 0 10%;
}
.seo_content .seo_industry .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 41px;
}
.product-page {
  padding: 7% 0 10.7292%;
  position: relative;
}
.product-page .top .Auxil-h1 {
  line-height: 2;
  font-size: 24px;
  font-weight: bold;
  color: var(--color);
  margin-top: 10px;
}
.product-page .list .in-num {
  color: var(--color);
}
.product-page .list .in-num::before {
  width: 14px;
  height: 14px;
  margin: 5px 7px 0 0;
}
.product-page .list .title {
  margin-top: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
  width: 90%;
}
.product-page .list .title:hover {
  color: var(--color);
}
.product-page .list ul li {
  padding: 46px 0 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}
.product-page .list ul li .ig {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-page .list ul li .ig .text {
  width: 45.549%;
}
.product-page .list ul li .ig .text .con {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 30px;
  line-height: 1.5;
  max-height: 15em;
  overflow-y: auto;
  padding-right: 15px;
}
.product-page .list ul li .ig .text .more {
  margin-top: 46px;
}
.product-page .list ul li .ig .text .more:hover {
  color: #fff;
}
.product-page .list ul li .ig .text .more:hover::after {
  background: #000;
}
.product-page .list ul li .ig .text .more:hover i {
  color: #fff;
}
.product-page .list ul li .ig .img {
  width: 54.451%;
  padding: 3%;
}
.product-page .list ul li::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 774px;
  height: 100%;
  background-color: #f6f6f6;
  border-radius: 289px 0px 0px 289px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .list ul li:hover::after {
  background: var(--color);
}
.product-page .list ul li:nth-child(even) .ig {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.product-page .list ul li:nth-child(even)::after {
  right: initial;
  left: 0;
  width: 964px;
  height: 100%;
  border-radius: 0px 289px 289px 0px;
}
.product-page .list ul li:last-child {
  margin-bottom: 0;
}
.product-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .7;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1680px) {
  .product-page .list ul li::after {
    width: 700px;
    height: 500px;
  }
  .product-page .list ul li:nth-child(even)::after {
    width: 820px;
    height: 500px;
  }
}
@media screen and (max-width: 1440px) {
  .product-page::after {
    font-size: 300px;
    top: -20px;
  }
  .product-page .list ul li::after {
    width: 600px;
    height: 400px;
    border-radius: 200px 0px 0px 200px;
    top: 8%;
  }
  .product-page .list ul li:nth-child(even)::after {
    width: 720px;
    height: 400px;
    border-radius: 0px 200px 200px 0px;
  }

}
@media screen and (max-width: 1280px) {
  .product-page::after {
    font-size: 260px;
    top: -20px;
  }
  .product-page .list .title {
    width: 100%;
  }
  .product-page .list ul li::after {
    width: 500px;
    height: 300px;
    border-radius: 150px 0px 0px 150px;
    top: 24%;
  }
  .product-page .list ul li:nth-child(even)::after {
    width: 620px;
    height: 300px;
    border-radius: 0px 200px 200px 0px;
  }
  .product-page .list ul li {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1100px) {
  .product-page .list ul li:nth-child(even)::after {
    width: 500px;
  }
  .font-36 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page::after {
    display: none;
  }
    .xinsilihide {
    display: none !important;
  }
  .product-page .list ul li {
    margin-bottom: 40px;
    padding: 0;
  }
  .product-page .list ul li .ig .text {
    width: 100%;
    padding-right: 0;
  }
  .product-page .list ul li .ig .text .more {
    padding-left: 31px;
    margin-top: 20px;
  }
  .product-page .list ul li .ig .img {
    width: 100%;
  }
  .product-page .list ul li::after {
    display: none;
  }
  .product-page .list ul li:nth-child(even) .ig .text {
    padding: 0;
  }
  .seo_content .seo_about {
    border-radius: 0;
  }
  .seo_content .seo_honor .content ul.slick-dots {
    bottom: -40px;
  }
}
@media screen and (max-width: 700px) {
  .font-24 {
    font-size: 20px;
  }
  .product-page .list .in-num::before {
    margin: 3px 7px 0 0;
  }
  .font-36 {
    font-size: 30px;
  }
  .seo_content .seo_about .con {
    margin-top: 20px;
    padding-right: 20px;
  }
  .seo_content .seo_news .content ul {
    margin-right: -10px;
  }
  .seo_content .seo_news .content ul li {
    padding-right: 10px;
  }
  .seo_content .seo_news .content ul li .text {
    padding: 10px 0 0 0;
  }
  .seo_content .seo_honor .content ul.slick-dots li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .font-24 {
    font-size: 16px;
  }
  .product-page .list .in-num::before {
    margin: 0px 7px 0 0;
  }
  .font-36 {
    font-size: 24px;
  }
  .product-page .list ul li .ig .text .more {
    padding-left: 19px;
  }
  .seo_content .seo_honor .content {
    margin-top: 10px;
  }
  .seo_content .seo_honor .content ul.slick-dots {
    bottom: -26px;
  }
  .seo_content .seo_honor .content ul.slick-dots li {
    margin-right: 5px;
  }
  .seo_content .seo_news .content {
    margin-top: 20px;
  }
}
.prodet-page {
  padding: 7% 0 10.7292%;
  position: relative;
}
.prodet-page .prodet-1 {
  position: relative;
  padding: 0 197px 0 136px;
}
.prodet-page .prodet-1 .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
}
.prodet-page .prodet-1 .text .in-num {
  color: var(--color);
}
.prodet-page .prodet-1 .text .in-num::before {
  width: 14px;
  height: 14px;
  margin: 5px 7px 0 0;
}
.prodet-page .prodet-1 .text .title {
  margin-top: 11px;
}
.prodet-page .prodet-1 .img img {
  width: 100%;
}
.prodet-page .prodet-2 {
  padding-top: 8.639%;
}
.prodet-page .prodet-2 .ret {
  margin-top: 30px;
}
.prodet-page .prodet-2 .ret .bt {
  height: 106px;
  padding: 0 104px 0 79px;
  line-height: 106px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: var(--color);
  border-radius: 0px 0px 50px 0px;
  color: #fff;
  display: none;
  margin-bottom: 30px;
}
.prodet-page .prodet-2 .ret .bt::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 42px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
.prodet-page .prodet-2 .ret .con {
  color: rgba(0, 0, 0, 0.6);
}
.prodet-page .prodet-2 .ret .con ul{
  margin: -10px;
}
.prodet-page .prodet-2 .ret .con ul li{
  padding: 10px;
}
.prodet-page .prodet-2 .ret .con ul li a{
  border: 2px solid #eee;
  display: block;
}
.prodet-page .prodet-2 .ret form {
  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;
}
.prodet-page .prodet-2 .ret form input {
  width: 46%;
  font-size: 18px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  height: 63px;
  margin-bottom: 30px;
}
.prodet-page .prodet-2 .ret form p {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 20px;
}
.prodet-page .prodet-2 .ret form textarea {
  width: 100%;
  height: 177px;
  font-size: 18px;
  padding: 18px 8px;
  border: 1px solid #dbdbdb;
}
.prodet-page .prodet-2 .ret form input[type="submit"] {
  background: var(--color);
  color: white;
  border: none;
  width: 186px;
  height: 57px;
  margin-top: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-2 .ret form input[type="submit"]:hover {
  background: #000;
}
.prodet-page .prodet-2 .content {
  font-weight: 400;
}
.prodet-page .prodet-3 {
  margin-top: 89px;
}
.prodet-page .prodet-3 .content {
  margin-top: 55px;
}
.prodet-page .prodet-3 .content ul {
  margin-right: -42px;
}
.prodet-page .prodet-3 .content ul li {
  padding-right: 42px;
}
.prodet-page .prodet-3 .content ul li .img-box {
  background-color: #f6f6f6;
  border-radius: 0px 100px 0px 0px;
  padding: 105px 36px 64px 21px;
  text-align: center;
}
.prodet-page .prodet-3 .content ul li .text {
  padding-top: 30px;
}
.prodet-page .prodet-3 .content ul li .text .in-num {
  color: var(--color);
}
.prodet-page .prodet-3 .content ul li .text .in-num::before {
  width: 14px;
  height: 14px;
  margin: 2px 7px 0 0;
}
.prodet-page .prodet-3 .content ul li .text .tit {
  font-weight: bold;
  line-height: 1.6;
  text-transform: uppercase;
  margin-top: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .text .tit:hover {
  color: var(--color);
}
.prodet-page .prodet-3 .content ul li .text .more {
  padding-left: 57px;
  margin-top: 65px;
}
.prodet-page .prodet-3 .content ul li .text .more:hover {
  color: #fff;
}
.prodet-page .prodet-3 .content ul li .text .more:hover i {
  color: #fff;
}
.prodet-page .prodet-3 .content ul li .text .more:hover::after {
  background: #000;
}
.prodet-page .opt {
  background-color: #f6f6f6;
}
/*.prodet-page .opt dl {
  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;
}*/
.prodet-page .opt dl dd {
  height: 106px;
  padding: 0 104px 0 79px;
  line-height: 106px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin-right: 24px;
  cursor: pointer;
}
.prodet-page .opt dl dd::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 45px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color);
}
.prodet-page .opt dl dd::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  border-radius: 0px 0px 50px 0px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.prodet-page .opt dl dd:hover,
.prodet-page .opt dl dd.active {
  color: #fff;
}
.prodet-page .opt dl dd:hover::before,
.prodet-page .opt dl dd.active::before {
  background: #fff;
}
.prodet-page .opt dl dd:hover::after,
.prodet-page .opt dl dd.active::after {
  opacity: 1;
}
.prodet-page .opt dl dd:last-child {
  margin-right: 0;
}
.prodet-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .7;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1680px) {
  .prodet-page .prodet-1 .text {
    width: 40%;
  }
}
@media screen and (max-width: 1440px) {
  .prodet-page::after {
    font-size: 300px;
    top: -20px;
  }
  .prodet-page .prodet-1 {
    padding: 0 100px 0 136px;
  }
  .font-30 {
    font-size: 27px;
  }
  .prodet-page .prodet-3 .content ul li .text .more {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .prodet-page .opt dl dd {
    padding: 0 79px;
  }
  .font-30 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .prodet-page::after {
    font-size: 260px;
  }
  .prodet-page .prodet-1 {
    padding: 0 80px 0 100px;
  }
  .prodet-page .opt dl dd {
    padding: 0 60px;
  }
  .prodet-page .opt dl dd::before {
    left: 30px;
  }
  .prodet-page .prodet-3 .content ul {
    margin-right: -20px;
  }
  .prodet-page .prodet-3 .content ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page::after {
    display: none;
  }
  .prodet-page .prodet-1 {
    padding: 0;
  }
  .prodet-page .prodet-1 .text {
    position: initial;
    width: 100%;
  }
  .prodet-page .opt dl dd {
    margin-right: 0;
    padding: 0 20px 0 40px;
  }
  .prodet-page .opt dl dd::before {
    left: 15px;
  }
  .font-20 {
    font-size: 18px;
  }
  .prodet-page .prodet-3 .content ul li .text .more {
    padding-left: 31px;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-2 .opt {
    display: none;
  }
  .prodet-page .prodet-2 .ret .bt {
    display: block;
    height: 80px;
    line-height: 80px;
  }
  .prodet-page .prodet-2 .ret .bt::before {
    top: 30px;
  }
  .prodet-page .prodet-2 .ret .slide {
    display: block !important;
    margin-top: 30px;
  }
  .prodet-page .prodet-2 .ret .slide:first-child {
    margin-top: 0;
  }
  .prodet-page .prodet-3 {
    margin-top: 30px;
  }
  .prodet-page .prodet-3 .opt dl dd {
    padding: 0 104px 0 79px;
    height: 80px;
    line-height: 80px;
    width: 100%;
  }
  .prodet-page .prodet-3 .opt dl dd::before {
    top: 30px;
    left: 47px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-2 .ret {
    margin-top: 0;
  }
  .prodet-page .prodet-3 .opt dl dd,
  .prodet-page .prodet-2 .ret .bt {
    height: 60px;
    line-height: 60px;
    padding: 0 0 0 30px;
  }
  .prodet-page .prodet-3 .opt dl dd::before,
  .prodet-page .prodet-2 .ret .bt::before {
    left: 10px;
    top: 22px;
    width: 14px;
    height: 14px;
  }
  .prodet-page .prodet-2 .ret form input {
    width: 100%;
    margin-right: 0;
  }
  .prodet-page .prodet-3 .content {
    margin-top: 20px;
  }
  .prodet-page .prodet-3 .content ul li .text .more {
    padding-left: 20px;
  }
}
.news-page {
  padding: 125px 0 68px;
  position: relative;
}
.news-page .header ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.news-page .header ul li {
  font-weight: 400;
  padding: 0 24px 0 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  line-height: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .header ul li:first-child {
  padding-left: 0;
}
.news-page .header ul li:hover,
.news-page .header ul li.active {
  color: var(--color);
}
.news-page .content {
  margin-top: 65px;
}
.news-page .content ul {
  margin: 0 -25px -65px 0;
}
.news-page .content ul li {
  padding: 0 25px 65px 0;
}
.news-page .content ul li .img {
  position: relative;
}
.news-page .content ul li .img .img-box {
  border-radius: 100px 0 0 0;
}
.news-page .content ul li .img .img-box img {
  width: 100%;
}
/*.news-page .content ul li .img .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 100px 0 0;
  background: rgba(0, 0, 0, 0.2);
}*/
.news-page .content ul li .img time {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96px;
  height: 96px;
  background-color: var(--color);
  border-radius: 0px 71px 0px 0px;
  color: #fff;
  padding: 15px 30px 0 14px;
}
.news-page .content ul li .img time em {
  display: block;
  line-height: 1;
  /*border-bottom: 1px solid #fff;*/
}
.news-page .content ul li .img time hr {
  border: none;
  border-bottom: 1px solid #fff;
}
.news-page .content ul li .img time span {
  display: block;
  /*margin-top: 5px;*/
}
.news-page .content ul li .text {
  padding: 24px 30px 0 16px;
}
.news-page .content ul li .text .tit {
  line-height: 1.8;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .content ul li .text .tit:hover {
  color: var(--color);
}
.news-page .content ul li .text .con {
  color: #737373;
  line-height: 1.7;
  margin-top: 10px;
  /*overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;*/
}
.news-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .8;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1280px) {
  .news-page .content ul li .text {
    padding: 24px 10px 0 10px;
  }
  .inner-page .m-page {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .inner-page .m-page {
    margin-top: 60px;
  }
  .news-page::after {
    font-size: 300px;
    top: -20px;
  }
  .news-page .content ul {
    margin: 0 -20px -40px 0;
  }
  .news-page .content ul li {
    padding: 0 20px 40px 0;
    width: 33.3333% !important;
  }
}
@media screen and (max-width: 1000px) {
  .news-page {
    padding: 60px 0;
  }
  .news-page::after {
    display: none;
  }
  .news-page .content {
    margin-top: 30px;
  }
  .news-page .content ul li {
    width: 50% !important;
  }
  .inner-page .m-page {
    margin-top: 40px;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
  }
}
@media screen and (max-width: 700px) {
  .news-page {
    padding: 30px 0;
  }
  .news-page .content {
    margin-top: 20px;
  }
  .news-page .content ul li {
    width: 100% !important;
  }
  .inner-page .m-page {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .news-page .header {
    display: none;
  }
  .news-page .content {
    margin-top: 0;
  }
  .news-page .content ul {
    margin: 0 0 -20px 0;
  }
  .news-page .content ul li {
    padding: 0 0 20px 0;
  }
}
.m-link {
  margin-top: 30px;
}
.m-link a {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  display: inline-block;
}
.m-link a em {
  color: var(--color);
}
.m-link a:first-child {
  margin-top: 0;
}
.newdet-page .info {
  margin-top: 112px;
}
.newdet-page .info h1 {
  font-weight: bold;
}
.newdet-page .info .time_c {
  margin-top: 50px;
  text-align: center;
}
.newdet-page .info .time_c .list {
  display: inline-block;
  margin: 0 15px;
}
.newdet-page .info .time_c .list img {
  vertical-align: middle;
  width: 27px;
}
.newdet-page .info .time_c .list span {
  vertical-align: middle;
  margin-left: 11px;
  position: relative;
  top: 1px;
}
.newdet-page .info .con {
  margin-top: 55px;
}
.newdet-page .info .m-link {
  margin-top: 87px;
}
@media screen and (max-width: 1000px) {
  .newdet-page .info {
    margin-top: 40px;
  }
  .newdet-page .info .time_c,
  .newdet-page .info .con,
  .newdet-page .info .m-link {
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page .info {
    margin-top: 20px;
  }
  .m-link a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .info .time_c .list {
    margin: 0 5px;
  }
  .newdet-page .info .time_c .list span {
    margin-left: 5px;
  }
  .newdet-page .info .time_c,
  .newdet-page .info .con,
  .newdet-page .info .m-link {
    margin-top: 20px;
  }
}
.font-60 {
  font-size: 45px;
  line-height: 1.1;
}
.faq-page .box {
  padding: 10.472% 0 7.069%;
  position: relative;
  z-index: 1;
}
.faq-page .box span.bj {
  color: var(--color);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
  text-transform: uppercase;
}
.faq-page .box .title {
  margin-top: 3px;
}
.faq-page .box .content {
  margin-top: 46px;
}
.faq-page .box .content ul {
  margin-bottom: -24px;
}
.faq-page .box .content ul li {
  padding-bottom: 24px;
}
.faq-page .box .content ul li .ig {
  background-color: #f8f8f9;
  border-radius: 50px;
  padding: 24px 41px 28px 50px;
  position: relative;
}
.faq-page .box .content ul li .ig .tit {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  padding-right: 50px;
}
.faq-page .box .content ul li .ig .tit i {
  width: 41px;
  height: 41px;
  border-radius: 100%;
  background: #006e37;
  cursor: pointer;
  position: absolute;
  display: block;
  right: 41px;
  top: 22px;
}
.faq-page .box .content ul li .ig .tit i::after,
.faq-page .box .content ul li .ig .tit i::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #fff;
  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%);
}
.faq-page .box .content ul li .ig .tit i:after {
  -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 .box .content ul li .ig .con {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 17px 0 32px;
  max-width: 1103px;
  display: none;
}
.faq-page .box .content ul li .ig.active .tit i {
  background: var(--color);
}
.faq-page .box .content ul li .ig.active .tit i::after {
  -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 .box::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .8;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

  .faq-page .box .content ul li .ig .tit {
    font-size: 25px;
  }
}
@media screen and (max-width: 1100px) {

  .faq-page .box .content ul li .ig .tit {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .font-60 {
    font-size: 50px;
  }
  .faq-page .box::after {
    display: none;
  }

  .faq-page .box .content ul li .ig {
    padding: 24px 20px 28px 30px;
  }
  .faq-page .box .content ul li .ig .tit i {
    right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .font-60 {
    font-size: 40px;
  }
 
  .faq-page .box .content ul li .ig {
    padding: 20px 10px 20px 20px;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 20px;
  }
  .faq-page .box .content ul li .ig .tit i {
    right: 10px;
    top: 15px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .box span.bj {
    font-size: 16px;
  }
  .font-60 {
    font-size: 30px;
    line-height: 1.3;
  }
 
  .faq-page .box .content {
    margin-top: 20px;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 18px;
    padding-right: 40px;
  }
  .faq-page .box .content ul li .ig .tit i {
    width: 30px;
    height: 30px;
  }
  .faq-page .box .content ul li .ig .con {
    font-size: 14px;
    line-height: 2;
    margin: 10px 0;
  }
}
.font-72 {
  font-size: 72px;
}
.contact-page {
  padding-top: 13.073%;
  position: relative;
}
.contact-page .ui.container {
  max-width: 1314px;
}
.contact-page .contact-1 ul {
  margin: -15px;
}
.contact-page .contact-1 ul li {
  padding: 15px;
  text-align: center;
}
.contact-page .contact-1 ul li .tit {
  font-weight: bold;
  line-height: 1.3;
  margin: 19px 0 11px;
}
.contact-page .contact-1 ul li p {
  line-height: 1.5;
  color: #000;
}
.contact-page .contact-2 {
  padding-top: 12.15%;
}
.contact-page .contact-2 .form {
  margin-top: 80px;
}
.contact-page .contact-2 .form ul {
  margin: -15px;
}
.contact-page .contact-2 .form ul li {
  padding: 15px;
}
.contact-page .contact-2 .form ul li input,
.contact-page .contact-2 .form ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 20px;
  border-radius: 32px;
  border: 1px solid #bfbfbf;
  font-size: 18px;
  font-weight: 300;
  padding-left: 100px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .form ul li input::-webkit-input-placeholder, .contact-page .contact-2 .form ul li textarea::-webkit-input-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input:-moz-placeholder, .contact-page .contact-2 .form ul li textarea:-moz-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input::-moz-placeholder, .contact-page .contact-2 .form ul li textarea::-moz-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input:-ms-input-placeholder, .contact-page .contact-2 .form ul li textarea:-ms-input-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input::placeholder,
.contact-page .contact-2 .form ul li textarea::placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input:focus,
.contact-page .contact-2 .form ul li textarea:focus {
  border-color: var(--color);
}
.contact-page .contact-2 .form ul li textarea {
  height: 236px;
  resize: vertical;
}
.contact-page .contact-2 .form ul li .box {
  position: relative;
}
.contact-page .contact-2 .form ul li .box label {
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  position: absolute;
  left: 1px;
  top: 0;
  border-radius: 100%;
  background: var(--color);
  display: block;
}
.contact-page .contact-2 .form ul li .box label img {
  display: inline-block;
  vertical-align: middle;
}
.contact-page .contact-2 .form ul li input[type="submit"] {
  margin-top: 40px;
  padding: 0 66px 0 67px;
  line-height: 55px;
  height: 55px;
  border-radius: 28px;
  background: var(--color);
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  width: auto;
  border: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .form ul li input[type="submit"]:hover {
  background: #222;
}
.contact-page .contact-2 .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .form ul li:nth-child(5) .box label::after {
  content: '';
  border-left: 18px solid var(--color);
  border-bottom: 18px solid var(--color);
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 18px solid transparent;
  border-right: 18px solid transparent;
}
.contact-page .contact-3 {
  padding-top: 5.1045%;
  margin-bottom: -125px;
}
.contact-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .7;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1440px) {
  .contact-page::after {
    font-size: 300px;
    top: -20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact-page::after {
    font-size: 260px;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page::after {
    display: none;
  }
  .contact-page .contact-2 .form {
    margin-top: 30px;
  }
  .contact-page .contact-2 .form ul li .box label {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .contact-page .contact-2 .form ul li input,
  .contact-page .contact-2 .form ul li textarea {
    padding: 12px;
    padding-left: 70px;
  }
  .font-72 {
    font-size: 60px;
  }
}
@media screen and (max-width: 700px) {
  .font-72 {
    font-size: 50px;
  }
  .contact-page .contact-2 .form ul li {
    width: 100%;
  }
  .contact-page .contact-2 .form ul li input,
  .contact-page .contact-2 .form ul li textarea {
    font-size: 14px;
    padding-left: 60px;
  }
  .contact-page .contact-2 .form ul li input[type="submit"] {
    margin-top: 0;
  }
}
.gallery-page .content .box {
  text-align: center;
  padding-bottom: 90px;
}
.gallery-page .content .box h2 {
  color: #182333;
  font-size: 35px;
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.gallery-page .content .box p {
  /*max-width: 690px;*/
  text-align: center;
  color: #565969;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 20px;
  /*margin-bottom: 50px;*/
}
.gallery-page .content .box div {
  color: #565969;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 20px;
}
.gallery-page .content .box ul {
  margin: 0 -15px;
  text-align: left;
}
.gallery-page .content .box ul li {
  padding: 1px;
}
.gallery-page .content .box ul li .imgbox {
  overflow: hidden;
  position: relative;
  padding: 5px;
  border-radius: 5px;
}
.gallery-page .content .box ul li .imgbox .text {
  text-align: center;
  margin-top: 5px;
}
.gallery-page .content .box ul li .imgbox .text h5 {
  /*text-transform: uppercase;*/
  display: block;
  color: #ffffff;
  font-size: 18px;
  padding: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 0 15px 0 0;
  background-color: #333;
}
.gallery-page .content .box ul li .imgbox .text .con {
  margin-top: 20px;
  min-height: 90px;
  overflow: auto;
  padding-right: 10px;
  font-size: 16px;
  line-height: 1.7;
}
.gallery-page .content .box ul li .imgbox .text .con::-webkit-scrollbar-thumb {
  background: var(--color);
}
.gallery-page .content .box ul li .imgbox .textbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gallery-page .content .box ul li .imgbox .textbox i {
  margin-bottom: 20px;
  font-size: 45px;
  color: var(--color);
}
.gallery-page .content .box ul li .imgbox .textbox i:hover {
  cursor: pointer;
}
.gallery-page .content .box ul li .imgbox .textbox h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--color);
  padding: 5px 20px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  min-width: 100px;
  text-align: center;
}
.gallery-page .content .box ul li .imgbox .textbox h4:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #000000;
}
.gallery-page .content .box ul li .imgbox:hover .text h5 {
  background: var(--color);
  color: #fff;
}
.gallery-page .content .box ul li:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gallery-page .content .box ul li:hover .imgbox .textbox {
  top: 0;
}
.gallery-page .content .box:nth-child(even) {
  background: #f8f8f8;
  padding: 90px 0;
}
@media screen and (max-width: 1440px) {
  .gallery-page .content .box ul li {
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .gallery-page .content .box ul li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 992px) {
  .gallery-page .content .box ul li {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .gallery-page .content .box p {
    font-size: 14px;
  }
  .gallery-page .content .box ul li {
    width: 100%;
  }
}
.advantages-page{
  position: relative;
  z-index: 1;
  padding: 7.877% 0 11.1112%;
}
.advantages-page::after{
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -30px;
  right: 0;
  font-size: 316px;
  line-height: 1;
  font-weight: bold;
  background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(240,241,243,.5)),to(rgba(240,241,243,0)));
  background-image: -webkit-linear-gradient(top,rgba(240,241,243,.5),rgba(240,241,243,0));
  background-image: -moz-linear-gradient(top,rgba(240,241,243,.5),rgba(240,241,243,0));
  background-image: linear-gradient(to bottom,rgba(240,241,243,.5),rgba(240,241,243,0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.advantages-page .header span{
  color: var(--color);
  font-weight: bold;
}
.advantages-page .header .title{
  margin-top: 10px;
}
.advantages-page .content{
  padding-top: 6.61%;
}
.advantages-page .content ul li{
  padding-bottom: 7.33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantages-page .content ul li .img{
  width: 41%;
  padding: 0 24px 19px 0;
  position: relative;
  z-index: 1;
}
.advantages-page .content ul li .img::after{
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 192px;
	height: 183px;
	background-color: var(--color);
}
.advantages-page .content ul li .text{
  width: 59%;
  padding-left: 70px;
}
.advantages-page .content ul li .text .top {
  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;
}
.advantages-page .content ul li .text .top span{
   font-size: 95px;
  line-height: 1;
  color: var(--color);
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.advantages-page .content ul li .text .top span::after {
  content: '';
  width: 79px;
  height: 95px;
  background: url(../images/ad-bg.png) no-repeat;
  position: absolute;
  bottom: 10px;
  left: 0px;
}
.advantages-page .content ul li .text .top em {
  font-size: 36px;
  line-height: 1.2;
  font-weight: bold;
  padding-left: 5px;
  position: relative;
  z-index: 1;
}
.advantages-page .content ul li .text .con{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0,0,0,0.8);
}
.advantages-page .content ul li:last-child{
  padding-bottom: 0;
}
.advantages-page .content ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.advantages-page .content ul li:nth-child(odd) .img img{
  border-radius: 189px 0px 0px 189px;
}
.advantages-page .content ul li:nth-child(even) .img{
  padding: 0 0 19px 24px;
}
.advantages-page .content ul li:nth-child(even) .img img{
  border-radius: 0px 189px 189px 0px;
}
.advantages-page .content ul li:nth-child(even) .img::after{
  left: 0;
  right: initial;
}
.advantages-page .content ul li:nth-child(even) .text{
  padding: 0 70px 0 0;
}
strong,
b{
  font-weight: bold;
}
@media screen and (max-width: 1680px) {
  .advantages-page:after{
    font-size: 220px;
    top: -22px;
  }
}
@media screen and (max-width: 1000px) {
  .advantages-page:after{
    display: none;
  }
  .advantages-page .content ul li .img{
    width: 100%;
  }
  .advantages-page .content ul li .text{
    width: 100%;
    padding: 20px 0 0 0;
  }
  .advantages-page .content ul li:nth-child(even) .text{
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .advantages-page .content ul li .text .top em{
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 500px) {
  .advantages-page .content ul li .text .top em{
    font-size: 24px;
    line-height: 1.3;
  }
  .advantages-page .content ul li .text .con{
    font-size: 16px;
    line-height: 1.8;
  }
}





/* common */
.i-common{
  background: url(../images/common-bg.jpg)no-repeat center;
  background-size: cover;
  padding: 150px 0 100px;
  border-radius: 0 200px 0 0;
  position: relative;
}
.i-common .baseTag {
  color: #fff;
}
.i-common .baseTit {
  color: #fff;
}
.i-common .form ul{
  margin: -16px;
}
.i-common .form li{
  padding: 16px;
}
.i-common .form li.wid-100{
  width: 100%;
}
.i-common .form input,
.i-common .form textarea{
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-color: #fff;
  padding: 18px 35px;
}

.i-common .form input[type='submit']{
  width: auto;
  min-width: 240px;
  font-weight: 400;
  color: var(--color);
}

.i-common .left ul{
  margin-top: 40px;
  max-width: 500px;
}
.i-common .left li + li {
  margin-top: 34px;
}
.i-common .left li i{
  float: left;
}
.i-common .left li > div {
  padding-left: 90px;
  font-weight: 400;
  color: #fff;
  line-height: 2;
}



.our-about.inner {
  padding: 200px 0 160px;
  background-color: var(--color);
  border-radius: 200px 0 0 0;
}
.our-about.inner .baseLine{
  background-color: #fff;
}
.our-about.inner .baseTag{
  color: #fff;
}
.our-about.inner .baseTit{
  color: #fff;
}
.our-about.inner .right .text{
  color: #fff;
  font-weight: 400;
  line-height: 2;
}
.our-about.inner .list li .num{
  color: #fff;
}
.our-about.inner .list li .p{
  color: #fff;
}
.our-about.inner .list li i{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1200px) {
  .our-about.inner{
    padding: 100px 0;
    border-radius: 100px 0 0 0;
  }
}

@media screen and (max-width: 1000px) {
  .our-about.inner{
    padding: 60px 0;
    border-radius: 50px 0 0 0;
  }
}


.new-prodet-1 .left{
  padding-right: 90px;
  vertical-align: middle;
  width: 60%;
}
.new-prodet-1 .left .content{
  font-weight: 400;
}
.new-prodet-1 .left .more {
  width: 220px;
}
.new-prodet-1 .right{
  position: relative;
  vertical-align: middle;
  width: 40%;
  padding: 5%;
}
.new-prodet-1 .right span.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
}
.new-prodet-1 .right span.arrow:hover {
  color: #fff;
  background-color: var(--color);
}
.new-prodet-1 .right span.arrow.arrow_l{
  left: 2.5%;
}
.new-prodet-1 .right span.arrow.arrow_r{
  right: 2.5%;
}
.new-prodet-1 .right::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc((-100vw + 1520px) / 2);
  background-color: #f6f6f6;
  border-radius: 500px 0 0 500px;
}
.new-prodet-1 .right .dots ul li{
  width: 56px;
  height: 10px;
  border-radius: 5px;
  background-color: #cecece;
  display: inline-block;
  margin: 0 6px;
}
.new-prodet-1 .right .dots ul li.slick-active {
  background-color: var(--color);
}
.new-prodet-1 .right .dots ul li button{
  display: none;
}

@media screen and (max-width: 1550px) {
  .new-prodet-1 .right::before {
    right: calc((-100vw + 1320px) / 2);
  }
}

@media screen and (max-width: 1350px) {
  .new-prodet-1 .right::before {
    right: calc((-100vw + 1200px) / 2);
  }

  .new-prodet-1 .left {
    padding-right: 60px;
  }
}

@media screen and (max-width: 1230px) {
  .new-prodet-1 .right::before {
    right: calc((-100vw + 970px) / 2);
  }
}

@media screen and (max-width: 1000px) {
  .new-prodet-1 .box {
    display: flex;
    flex-direction: column-reverse;
  }

  .new-prodet-1 .left {
    width: 100%;
    padding-right: 0;
  }

  .new-prodet-1 .right {
    width: 100%;
  }

  .new-prodet-1 .right::before {
    display: none;
  }
}

.why-page{
  padding-top: 250px;
}
.why-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 23.8vw;
  line-height: .8;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-page .text{
  font-weight: 400;
}
.why-page .why-1 .box{
  display: flex;
  border-radius: 0 150px 0 0;
  overflow: hidden;
}
.why-page .why-1 .baseLine{
  background-color: #fff;
}
.why-page .why-1 .left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-page .why-1 .right{
  background-color: var(--color);
  color: #fff;
  padding: 60px;
}
.why-page .why-2{
  padding: 120px 0;
}
.why-page .why-2 .list{
  margin-top: 140px;
}
.why-page .why-3 {
  padding-top: 40px;
}
.why-page .why-3 .list{
  margin-top: 90px;
}
.why-page .why-3 ul{
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.why-page .why-3 li{
  padding: 20px;
}
.why-page .why-3 li .box{
  padding: 55px 40px;
  min-height: 410px;
  border-radius: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.why-page .why-3 li .box .num {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  width: 61px;
  height: 71px;
  line-height: 71px;
  text-align: center;
  background: url(../images/why-num.png)no-repeat center;
  background-size: 100% 100%;
}

.why-page .why-3 li .box .name{
  font-size: 24px;
  line-height: 70px;
  font-weight: 500;
  padding-left: 90px;
}

.why-page .why-3 li .box .name span{
  line-height: 35px;
  vertical-align: middle;
  display: inline-block;
}

.why-page .why-3 li .box .text{
  line-height: 1.8;
}

.why-page .why-4{
  padding-top: 120px;
}
.why-page .why-4 .list{
  margin-top: 90px;
}

.why-page .why-4 ul{
  margin: -25px;
}

.why-page .why-4 li{
  padding: 25px;
}

.why-page .why-5{
  padding: 140px 0;
}

.why-page .why-5 .left{
  padding-right: 5%;
}

.why-page .why-5 .right{
  padding-left: 5%;
}



.color_list ul{
  margin: -15px;
}
.color_list li{
  padding: 15px;
  margin-bottom: 60px;
}