input::-webkit-input-placeholder {
  color: #a3a3a3;
}
input::-moz-placeholder {
  color: #a3a3a3;
}
input:-moz-placeholder {
  color: #a3a3a3;
}
input:-ms-input-placeholder {
  color: #a3a3a3;
}
body {
  font-family: '微软雅黑';
  margin: 0;
  padding: 0;
  --color: #0cbabb;
}
.ui.container {
  padding: 0 15px;
  width: 1450px;
  margin: auto;
  position: relative;
}

.sidebar {
  position: fixed;
  right: 15px;
  bottom: 160px;
  z-index: 15;
}
.sidebar .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: var(--color);
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.sidebar .list:hover .box {
  opacity: 1;
  -webkit-transform: translateY(-50%) rotateY(0deg);
  -moz-transform: translateY(-50%) rotateY(0deg);
  transform: translateY(-50%) rotateY(0deg);
}
.sidebar .list i {
  font-size: 30px;
  color: white;
}
.sidebar .list .box {
  position: absolute;
  right: 120%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(-90deg);
  -moz-transform: translateY(-50%) rotateY(-90deg);
  transform: translateY(-50%) rotateY(-90deg);
  border-radius: 15px;
  background-color: white;
  padding: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.sidebar .list .box #ewm {
  width: 120px;
  height: 120px;
}
.sidebar .list .box #ewm canvas,
.sidebar .list .box #ewm img {
  width: 100%;
  height: 100%;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#header .nav {
  position: relative;
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 35px;
  font-size: 18px;
  color: #000;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: var(--color);
  -webkit-transition: 0.5s 0.5s border;
  -moz-transition: 0.5s 0.5s border;
  transition: 0.5s 0.5s border;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 245px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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 .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  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-left: 40px;
}
#header .nav .ui.menu .right .h-search {
  cursor: pointer;
  padding: 0 30px;
  border-left: 2px solid #000;
}
#header .nav .ui.menu .right .h-search i {
  font-size: 22px;
  color: #000;
}
.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;
}
table {
  width: 100%;
  margin-bottom: 20px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
}
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;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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);
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #000;
}
.language-box .zhuyu .icon {
  -webkit-filter: invert(1);
  filter: invert(1);
  margin-right: 10px;
}
.language-box .zhuyu i {
  margin-left: 10px;
  font-weight: bold;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: 0px;
  z-index: 100;
  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: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 5px 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 130px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  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;
}
.btn-go {
  width: 190px;
  height: 50px;
  display: block;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  background-color: transparent;
  border: none;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 35px;
}
.btn-go span {
  position: relative;
  z-index: 2;
  color: #000;
}
.btn-go:hover {
  border: 1px solid var(--color);
  background-color: transparent;
}
.btn-go:hover span {
  color: #fff;
}
.btn-go::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  border-radius: 5px;
}
.btn-go:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  background-color: var(--color);
}
.home-title {
  position: relative;
  color: var(--color);
}
.home-title h3 {
  font-size: 50px;
  text-align: center;
}
.home-title h3 span {
  color: #000;
}
.home-title p {
  color: #000;
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin-top: 15px;
  opacity: 0.6;
}
#banner {
  margin-top: 110px;
}
#banner .banner-content {
  position: relative;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 85px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 1450px;
}
#banner .banner-content ul .slick-dots li {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#banner .banner-content ul .slick-dots li button {
  display: none;
}
#banner .banner-content ul .slick-dots .slick-active {
  background-color: var(--color);
}
#banner .banner-content ul .slick-dots .slick-active::before {
  background-color: #fff;
}
#banner .banner-content ul .slick-dots li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #b7b6b6;
  color: #b7b6b6;
  border-radius: 50%;
  border: none;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  bottom: 305px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  color: #fff;
}
#banner .banner-content ul li .content h3 {
  font-size: 60px;
  font-weight: 700;
}
#banner .banner-content ul li .content h4 {
  font-size: 24px;
  line-height: 2;
}
#banner .banner-content ul li .content a {
  margin-top: 40px;
  display: block;
}
#banner .banner-content ul li .content a button span {
  color: #fff;
}
#banner .banner-content ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-content .banner-btn {
  width: 60px;
  height: 60px;
  color: #b8c3c7;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 50%;
  border: 3px solid #b8c3c7;
  background-color: transparent;
  font-size: 26px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content .banner-prev {
  left: 25px;
}
#banner .banner-content .banner-next {
  right: 25px;
}
#banner .banner-content .banner-btn:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
#index-body .about .line {
  display: block;
  height: 1px;
  width: 95%;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
#index-body .about .about-content {
  background: url("../images/about.jpg") no-repeat;
  background-size: cover;
  padding: 85px 0 90px;
}
#index-body .about .about-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 90px;
}
#index-body .about .about-content ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .about .about-content ul li img {
  display: inline-block;
}
#index-body .about .about-content ul li .icon {
  margin-right: 20px;
}
#index-body .about .about-content ul li .box {
  display: inline-block;
}
#index-body .about .about-content ul li .box h3 {
  font-size: 18px;
  line-height: 1;
}
#index-body .about .about-content ul li .box h3 em {
  font-weight: bold;
  font-size: 48px;
}
#index-body .about .about-content ul li .box p {
  font-size: 18px;
  line-height: 2;
}
#index-body .about .about-t {
  background: url("../images/about-t.jpg") no-repeat;
  background-size: cover;
  height: 410px;
  color: #fff;
  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-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .about .about-t h3 {
  font-size: 30px;
  text-align: center;
}
#index-body .about .about-t p {
  font-size: 24px;
  text-align: center;
  margin: 20px 0 45px;
  max-width: 48%;
}
#index-body .about .about-t .btn-go {
  border-color: #fff;
}
#index-body .about .about-t .btn-go span {
  color: #fff;
}
#index-body .about .about-t .btn-go:hover {
  border-color: transparent;
}
#index-body .sell-product {
  padding: 85px 110px;
}
#index-body .sell-product .sell-product-content {
  margin-top: 50px;
}
#index-body .sell-product .sell-product-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#index-body .sell-product .sell-product-content ul li {
  width: 48%;
  cursor: pointer;
  position: relative;
  margin: 13px 0;
  border-radius: 15px;
  overflow: hidden;
}
#index-body .sell-product .sell-product-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .sell-product .sell-product-content ul li a {
  position: absolute;
  padding: 70px 40px;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#index-body .sell-product .sell-product-content ul li a h4 {
  font-size: 24px;
  font-weight: bold;
  max-width: 240px;
}
#index-body .sell-product .sell-product-content button {
  margin: 65px auto 0;
}
#index-body .advantage {
  padding: 60px 0 0;
}
#index-body .advantage .line {
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 80px auto 0;
}
#index-body .advantage .advantage-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .advantage .advantage-content ul {
  margin: 0 -15px;
}
#index-body .advantage .advantage-content ul li {
  padding: 0 15px;
}
#index-body .advantage .advantage-content ul li .box .img_box {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: #ededed;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 15px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
#index-body .advantage .advantage-content ul li .box .img_box .icon_white {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
  -moz-transform: translate(-50%, -50%) rotateY(180deg);
  transform: translate(-50%, -50%) rotateY(180deg);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .advantage-content ul li .box .img_box .icon_black {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .advantage-content ul li .box .img_box:hover {
  background-color: var(--color);
}
#index-body .advantage .advantage-content ul li .box .img_box:hover .icon_white {
  -webkit-transform: translate(-50%, -50%) rotateY(0deg);
  -moz-transform: translate(-50%, -50%) rotateY(0deg);
  transform: translate(-50%, -50%) rotateY(0deg);
  opacity: 1;
}
#index-body .advantage .advantage-content ul li .box .img_box:hover .icon_black {
  opacity: 0;
}
#index-body .advantage .advantage-content ul li .box h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#index-body .advantage .advantage-content ul li .box P {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  font-weight: 400;
  margin: 20px 0 15px;
}
#index-body .advantage .advantage-content ul li .box a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
#index-body .advantage .advantage-content ul li .box a .icon_show {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .advantage-content ul li .box a .icon_hide {
  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%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .advantage-content ul li .box a:hover .icon_show {
  opacity: 0;
}
#index-body .advantage .advantage-content ul li .box a:hover .icon_hide {
  opacity: 1;
}
#index-body .product {
  margin-top: 65px;
}
#index-body .product .product-content {
  padding: 65px 0 80px;
  background-color: #f6f6f6;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 35px;
}
#index-body .product .product-content .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#index-body .product .product-content .content .left {
  height: 395px;
  width: 50%;
  padding: 0 20px;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  z-index: 2;
  padding: 40px 60px;
}
#index-body .product .product-content .content .left .line {
  display: block;
  background-color: var(--color);
  height: 5px;
  width: 60px;
  border-radius: 5px;
  margin-bottom: 20px;
}
#index-body .product .product-content .content .left h4 {
  font-size: 30px;
  font-weight: bold;
}
#index-body .product .product-content .content .left p {
  font-size: 18px;
  line-height: 2;
  margin: 25px 0 35px;
}
#index-body .product .product-content .content .left .product-btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#index-body .product .product-content .content .left .product-btn-box .product-btn {
  width: 45px;
  height: 45px;
  color: #b8c3c7;
  border-radius: 50%;
  border: 2px solid #b8c3c7;
  background-color: transparent;
  font-size: 26px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content .content .left .product-btn-box .product-prev {
  margin-right: 20px;
}
#index-body .product .product-content .content .left .product-btn-box .product-btn:hover {
  color: var(--color);
}
#index-body .product .product-content .content ul {
  width: 60%;
}
#index-body .product .product-content .content ul li {
  height: 555px;
}
#index-body .product .product-content .content ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .news {
  padding: 85px 0;
}
#index-body .news .news-content ul {
  margin: 0 -15px;
}
#index-body .news .news-content ul li {
  padding: 0 15px;
}
#index-body .news .news-content ul li .content {
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#index-body .news .news-content ul li .content h4 {
  font-size: 24px;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
  text-align: center;
}
#index-body .news .news-content ul li .content h4:hover {
  color: var(--color);
}
#index-body .news .news-content ul li .content .img-box {
  margin: 30px 0;
  display: block;
  width: 100%;
}
#index-body .news .news-content ul li .content .img-box img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .news .news-content ul li .content .list:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#index-body .news .news-content ul li .content .list {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
#index-body .news .news-content ul li .content .list .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .news .news-content ul li .content .list .title h4 {
  font-size: 16px;
}
#index-body .news .news-content ul li .content .list .title span {
  font-size: 14px;
  opacity: 0.6;
}
#index-body .news .news-content ul li .content .list p {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.8;
  margin-top: 20px;
}
#footer {
  position: relative;
  background-color: #f1f1f1;
}
#footer .gotop {
  width: 45px;
  height: 45px;
  background-color: var(--color);
  border-radius: 50%;
  right: 7%;
  top: 50%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
#footer .gotop img {
  margin-top: 10px;
}
#footer .logo {
  padding-top: 30px;
  text-align: left;
}
#footer .footer-center .footer-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .footer-center .footer-t .footer-t-gird {
  padding: 25px 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact {
  width: 30%;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact .phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact .phone .left {
  display: inline-block;
  margin-right: 15px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact .phone .right span {
  display: block;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  opacity: 1;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact .phone .right span:first-child {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.6;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact span {
  margin-bottom: 5px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact span span {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.contact span .address {
  width: auto;
  margin-right: 0;
}
#footer .footer-center .footer-t .footer-t-gird .link span:hover {
  color: var(--color);
}
#footer .footer-center .footer-t .footer-t-gird .t-list.qcode {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.qcode .left {
  margin-right: 30px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list {
  color: #000;
  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;
}
#footer .footer-center .footer-t .footer-t-gird .t-list p {
  font-size: 24px;
  margin-bottom: 25px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list span {
  font-size: 16px;
  margin-bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.6;
}
#footer .footer-center .footer-t .footer-t-gird .t-list span:last-child {
  margin-bottom: 0;
}
#footer .footer-center .footer-b p {
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-center .footer-b p span {
  margin-right: 20px;
  font-size: 16px;
}
#footer .footer-center .footer-b p span .company-name {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
#footer .footer-center .footer-b p img {
  width: 155px;
  height: auto;
  padding-top: 3px;
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #banner .banner-content ul li .content {
    bottom: unset;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #banner .banner-content .banner-btn,
  #banner .banner-content ul .slick-dots,
  #footer .gotop {
    display: none;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #banner .banner-content ul li .content h3 {
    font-size: 50px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
  }
  .home-title h3 {
    font-size: 40px;
  }
  #index-body .about .about-content ul li .box h3 em {
    font-size: 34px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 10px;
  }
  #header .nav .ui.menu .right .h-search {
    padding: 0px 15px;
  }
  #banner .banner-content ul li .content h3 {
    font-size: 40px;
  }
  #index-body .sell-product {
    padding: 65px 40px;
  }
  #index-body .about .about-content ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #index-body .about .about-content ul li {
    width: 30%;
  }
  #index-body .about .about-content ul li:nth-last-child(2),
  #index-body .about .about-content ul li:last-child {
    margin: 40px 30px 0;
  }
  .home-title h3 {
    font-size: 32px;
  }
  #index-body .product .product-content .content .left h4 {
    font-size: 26px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list p {
    font-size: 22px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.contact .phone .right span {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner {
    margin-top: 120px;
  }
  #banner .banner-content ul li .content h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  #banner .banner-content ul li .content h4 {
    font-size: 18px;
    line-height: 1.6;
  }
  #banner .banner-content ul li .content a {
    margin-top: 15px;
    display: block;
  }
  #index-body .sell-product .sell-product-content ul li a h4 {
    font-size: 20px;
  }
  #index-body .about .about-content ul {
    display: none;
  }
  #index-body .about .about-t p {
    font-size: 20px;
    max-width: 80%;
  }
  .btn-go {
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  #index-body .product .product-content .content .left h4 {
    font-size: 22px;
  }
  #index-body .product .product-content .content .left .product-btn-box {
    display: none;
  }
  #index-body .product .product-content .content .left p {
    font-size: 16px;
  }
  #index-body .product .product-content .content .left {
    height: 360px;
  }
  #index-body .product .product-content .content ul li {
    height: 420px;
  }
  #index-body .product .product-content .content .left p {
    margin: 15px 0;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.contact {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  #banner .banner-content ul li .content h4 {
    font-size: 16px;
  }
  .home-title h3 {
    font-size: 26px;
  }
  .home-title p {
    font-size: 16px;
  }
  #index-body .sell-product .sell-product-content ul li {
    width: 100%;
  }
  #index-body .advantage {
    display: none;
  }
  #index-body .product .product-content .content {
    -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;
  }
  #index-body .product .product-content .content .left {
    position: relative;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    left: unset;
    top: unset;
    width: 100%;
    margin-bottom: 40px;
  }
  #index-body .product .product-content .content ul {
    width: 100%;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.contact {
    width: 100%;
  }
  #footer .footer-center .footer-b p {
    -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-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.qcode{
    width: 100%;
    margin-top: 30px;
  }
  #footer .footer-center .footer-t .footer-t-gird{
    flex-direction: column;
  }
  #banner .banner-content ul li .content a,
  #banner .banner-content ul li .content h4 {
    display: none;
  }
  #index-body .sell-product {
    padding: 45px 15px;
  }
  #index-body .about .about-t p {
    font-size: 16px;
    max-width: -webkit-calc(100% - 30px);
    max-width: -moz-calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
  #index-body .about .about-t h3 {
    font-size: 24px;
  }
  #index-body .product .product-content .content .left {
    padding: 40px 20px;
  }
  #index-body .product .product-content .content ul li {
    height: 210px;
  }
  #footer .footer-center .footer-b p {
    height: auto;
    padding: 15px 0;
  }
  #footer .footer-center .footer-b p span {
    text-align: center;
  }
}




































/*inner-page*/
.inner-banner {

  line-height: 470px;
  height: 470px;
  text-align: center;
  background-attachment: fixed;

}

.inner-banner .box {

  display: inline-block;

  vertical-align: middle;

  line-height: normal;

}

.inner-banner .box h2 {

  font-size: 28px;

  color: white;

  font-weight: bold;

  text-transform: uppercase;

}

.mbx {

  padding: 15px 0;

  background: #f3f5f7;

  font-size: 18px;

  color: #373737;

}

.mbx span {

  color: var(--color);

}

.mbx a:hover {

  text-decoration: underline;

}

.inner-page .m-page {

  text-align: center;

}

.inner-page .m-page *:first-child {

  margin-top: 55px  ;

}

.inner-page .m-page a,

.inner-page .m-page span {

  font-size: 24px;

  color: #929292;

  line-height: 32px;

  height: 32px;

  margin: 0 5px;

  padding: 0;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  border: 1px solid transparent;

  display: inline-block;

}

.inner-page .m-page a:hover {

  padding: 0 10px;

  color: var(--color);

  border-color: var(--color);

}

.public-contact {

  padding: 100px 0 80px;

  text-align: center;

  background: url("../images/public-contact.jpg");

  background-size: cover;

  background-position: center center;

  color: white;

}

.public-contact h4 {

  display: block;

  font-size: 32px;

  font-weight: bold;

  line-height: 1;

}

.public-contact p {

  display: block;

  font-size: 24px;

  margin: 20px 0;

}

.public-contact a.more {

  display: inline-block;

  vertical-align: middle;

  line-height: 44px;

  height: 44px;

  padding: 0 40px;

  border: 2px solid white;

  font-size: 16px;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  text-transform: uppercase;

}

.public-contact a.more:hover {

  background: var(--color);

}

.public-info {

  line-height: 110px;

  height: 110px;

  background: #f7f7f7 url("../images/public-info.jpg") left 100px top no-repeat;

}

.public-info .left {

  width: 65%;

  display: none;

}

.public-info .left ul li {

  display: inline-block;

  vertical-align: top;

  margin-right: 30px;

  font-size: 18px;

  color: #333;

}

.public-info .left ul li i {

  color: var(--color);

  margin-right: 7px;

}

.public-info .right {

  width: 100%;

  text-align: center;

}

.public-info .right ul li {

  display: inline-block;

  vertical-align: middle;

}

.public-info .right ul li a {

  line-height: 60px;

  height: 60px;

  border: 1px solid var(--color);

  min-width: 200px;

  text-align: center;

  padding: 0 20px;

  font-size: 16px;

  text-transform: uppercase;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  display: inline-block;

}

.public-info .right ul li a:hover {

  color: white;

  background: var(--color);

}

.about-page .about-1 {

  padding-top: 100px;

  position: relative;

}

.about-page .about-1:after {

  content: '';

  width: 100%;

  height: 100px;

  position: absolute;

  z-index: -1;

  display: block;

  background: #f4f7fd;

}

.about-page .about-1 h3 {

    display: block;

    font-size: 32px;

    color: #212121;

    font-weight: 300;

    line-height: 1;

}

.about-page .about-1 .box {

  margin-top: 40px;

}
.about-page .about-1 .box .Auxil-through{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-page .about-1 .box .Auxil-through a{
  margin: 15px 0;
}
.about-page .about-1 .box .left a {

  display: block;

}

.about-page .about-1 .box .left a img {

  width: 100%;

}

.about-page .about-1 .box .right {

  padding-left: 70px;

}

.about-page .about-1 .box .right .text {

  font-size: 15px;

  color: #666666;

  line-height: 26px;

}

.about-page .about-1 .box .right .text p {

  padding-bottom: 30px;

}

.about-page .about-1 .box .right .text p:last-child {

  padding-bottom: 0;

}

.about-page .about-1 .numList {

  margin-top: -100px;

  position: relative;

  z-index: 1;

}

.about-page .about-1 .numList .btn {

  width: 25%;

  vertical-align: bottom;

  line-height: 100px;

  height: 100px;

  padding: 0 5%;

  text-align: center;

  letter-spacing: -5px;

}

.about-page .about-1 .numList .btn div {

  width: 50%;

  display: inline-block;

  vertical-align: top;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  background-position: center center;

  background-repeat: no-repeat;

  height: 100%;

  cursor: pointer;

  cursor: hand;

}

.about-page .about-1 .numList .btn div.prev {

  background-image: url("../images/icon-about-btn-l.png");

}

.about-page .about-1 .numList .btn div.prev:hover {

  background-image: url("../images/icon-about-btn-l2.png");

}

.about-page .about-1 .numList .btn div.next {

  background-image: url("../images/icon-about-btn-r.png");

}

.about-page .about-1 .numList .btn div.next:hover {

  background-image: url("../images/icon-about-btn-r2.png");

}

.about-page .about-1 .numList .num {

  width: 75%;

  height: 200px;

  line-height: 200px;

  text-align: center;

  background: var(--color);

}

.about-page .about-1 .numList .num ul {

  display: inline-block;

  vertical-align: middle;

  line-height: normal;

  width: 100%;

}

.about-page .about-1 .numList .num ul li h3 {

  display: block;

  font-size: 36px;

  font-weight: bold;

  color: white;

}

.about-page .about-1 .numList .num ul li p {

  display: block;

  font-size: 16px;

  color: rgba(255, 255, 255, 0.35);

  margin-top: 20px;

}

.about-page .about-2 {

  background: #f4f7fd;

  padding: 160px 0;

  text-align: center;

}

.about-page .about-2 h2 {

  display: block;

  color: #212121;

  line-height: 1;

  font-size: 32px;

    font-weight: 300;

}

.about-page .about-2 h2 small {

  display: block;

  font-size: 16px;

  color: rgba(33, 33, 33, 0.72);

  line-height: normal;

  font-weight: normal;

  margin-top: 20px;

}

.about-page .about-2 .year-list {

  margin-top: 90px;

  position: relative;

}

.about-page .about-2 .year-list .btn {

  position: relative;

  z-index: 2;

}

.about-page .about-2 .year-list .btn div {

  content: '';

  position: absolute;

  font-size: 24px;

  color: var(--color);

  top: 1px;

  cursor: pointer;

  cursor: hand;

}

.about-page .about-2 .year-list .btn div:after {

  font-family: "FontAwesome";

}

.about-page .about-2 .year-list .btn .next {

  right: -2px;

}

.about-page .about-2 .year-list .btn .next:after {

  content: "\f105";

}

.about-page .about-2 .year-list .btn .prev {

  left: -2px;

}

.about-page .about-2 .year-list .btn .prev:after {

  content: "\f104";

}

.about-page .about-2 .year-list ul {

  position: relative;

  z-index: 1;

}

.about-page .about-2 .year-list ul:after {

  border-top: 1px solid #212121;

  content: '';

  width: 100%;

  position: absolute;

  top: 20px;

  left: 0;

  z-index: -1;

}

.about-page .about-2 .year-list ul li {

  padding-top: 10px;

}

.about-page .about-2 .year-list ul li * {

  opacity: 0;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.about-page .about-2 .year-list ul li i {

  width: 23px;

  height: 23px;

  border-radius: 100%;

  background: var(--color);

  border: 5px solid #58a9d9;

  display: block;

  margin: 0 auto;

  opacity: 1;

  cursor: pointer;

  cursor: hand;

}

.about-page .about-2 .year-list ul li h4 {

 display: block;

    font-size: 20px;

    color: #212121;

    margin: 30px 0 20px;

    font-weight: 300;

}

.about-page .about-2 .year-list ul li .text {

  width: 500px;

  position: relative;

  left: 50%;

  -webkit-transform: translateX(-50%);

  -moz-transform: translateX(-50%);

  -ms-transform: translateX(-50%);

  -o-transform: translateX(-50%);

  transform: translateX(-50%);

  text-align: center;

  font-size: 18px;

  color: #212121;

  opacity: .86;

}

.about-page .about-2 .year-list ul .slick-current li i {

  -webkit-transform: scale(1.2);

  -moz-transform: scale(1.2);

  -ms-transform: scale(1.2);

  -o-transform: scale(1.2);

  transform: scale(1.2);

}

.about-page .about-2 .year-list ul .slick-current li * {

  opacity: 1;

}

.about-page .about-3 {

  background: #f4f7fd;

}

.about-page .about-3 .img {

  vertical-align: middle;

}

.about-page .about-3 .img a {

  display: block;

}

.about-page .about-3 .img li {

  position: relative;

}

.about-page .about-3 .img li h5 {

  position: absolute;

  bottom: 10px;

  right: 10px;

  font-size: 24px;

  color: white;

  font-weight: bold;

}

.about-page .about-3 .img img {

  width: 100%;

}

.about-page .about-3 .text {

  vertical-align: middle;

  padding: 0 3%;

}

.about-page .about-3 .text h4 {

  display: block;

  color: #212121;

  font-size:24px;

  font-weight: 300;

}

.about-page .about-3 .text .content {

  font-size: 18px;

  line-height: 30px;

  color: rgba(33, 33, 33, 0.75);

  margin-top: 40px;

}

.about-page .about-3 .text .content p em {

  color: var(--color);

}

.about-page .about-4 {

  padding: 80px 0 110px;

}

.about-page .about-4 .img {

  vertical-align: middle;

}

.about-page .about-4 .img a {

  display: block;

}

.about-page .about-4 .img img {

  width: 100%;

}

.about-page .about-4 .text {

  vertical-align: middle;

  padding-right: 5%;

}

.about-page .about-4 .text h4 {

  display: block;

  font-size: 24px;

  color: #212121;

  line-height: 1;

  font-weight: 300;

}

.about-page .about-4 .text .content {

  font-size: 18px;

  line-height: 30px;

  color: rgba(33, 33, 33, 0.75);

  margin-top: 40px;

}

.about-page .about-4 .text .content p em {

  color: var(--color);

}

.about-page .about-5 {

  background: #f4f7fd;

  padding: 80px 0 160px;

  text-align: center;

}

.about-page .about-5 h3 {

  display: block;

  font-size: 48px;

  font-weight: 300;

  color: black;

  line-height: 1;

}

.about-page .about-5 .text {

  display: block;

  font-size: 16px;

  color: rgba(33, 33, 33, 0.71);

  line-height: 28px;

  max-width: 1100px;

  margin: 0 auto;

  padding-top: 20px;

}

.about-page .about-5 .box {

  padding-top: 120px;

  overflow: hidden;

}

.about-page .about-5 .box ul {

  margin: 0 -50px;

}

.about-page .about-5 .box ul li {

  padding: 0 50px;

}

.about-page .about-5 .box ul li span {

  display: block;

  font-size: 300px;

  font-weight: bold;

  color: black;

  text-transform: uppercase;

  line-height: .7;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.about-page .about-5 .box ul li p {

  display: block;

  font-size: 24px;

  font-weight: bold;

  color: var(--color);

  text-transform: uppercase;

}

.about-page .about-5 .box ul li p:before {

  content: '';

  width: 1px;

  height: 90px;

  display: block;

  margin: 0 auto 10px;

  background: var(--color);

}

.about-page .about-5 .box ul li:hover span {

  -webkit-transform: translateY(-10%);

  -moz-transform: translateY(-10%);

  -ms-transform: translateY(-10%);

  -o-transform: translateY(-10%);

  transform: translateY(-10%);

}

.about-page .about-6 {

  background: #f4f7fd;

  position: relative;

  z-index: 1;

}

.about-page .about-6:after {

  /*content: '';*/

  width: 100%;

  height: 42%;

  display: block;

  position: absolute;

  bottom: 0;

  left: 0;

  z-index: -1;

  background: var(--color);

}

.about-page .about-6 h3 {

  text-align: center;

  font-size: 24px;

  color: #212121;

  line-height: 70px;

  font-weight: 300;

}

.about-page .about-6 .box {

  padding: 70px 0;

}

.about-page .about-6 .box ul li a {

  display: block;

}

.about-page .about-6 .box ul li a img {

  width: 100%;

}

.about-page .about-6 .box ul li a .text {

  display: block;

  position: absolute;

  top: 35%;

  left: 0;

  width: 100%;

  padding: 0 8%;

}

.about-page .about-6 .box ul li a .text h4 {

  font-size: 24px;

  color: white;

  font-weight: bold;

  text-transform: uppercase;

  line-height: 1;

}

.about-page .about-6 .box ul li a .text p {

  display: block;

  font-size: 16px;

  line-height: 30px;

  color: white;

  margin: 15px 0;

}

.about-page .about-6 .box ul li a .text em {

  display: inline-block;

  line-height: 40px;

  height: 40px;

  padding: 0 25px;

  background: white;

  font-size: 16px;

  color: black;

  text-transform: uppercase;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.about-page .about-6 .box ul li a .text em:hover {

  background: var(--color);

  color: white;

}

.factory-page {

  display: block;

}

.factory-page .factory-1 {

  background: #f4f7fd;

  text-align: center;

  padding: 50px 0 170px;

  margin-bottom: -100px;

}

.factory-page .factory-1 i {

display: block;

    font-size: 16px;

    color: #242424;

}

.factory-page .factory-1 h2 {

  display: block;

  font-size: 48px;

  font-weight: bold;

  color: #181818;

  line-height: 1;

  text-transform: capitalize;

}

.factory-page .factory-1 h2 i {

  display: block;

  font-size: 16px;

  color: #242424;

  margin-bottom: 10px;

}

.factory-page .factory-1 h2 small {

  display: block;

  font-size: 36px;

  color: var(--color);

  margin-top: 10px;

}

.factory-page .factory-1 .box {

  display: block;

  margin-top: 80px;

}

.factory-page .factory-1 .box ul {

  margin: 0 -40px;

}

.factory-page .factory-1 .box ul li {

  padding: 0 40px;

  text-align: center;

  position: relative;

  z-index: 1;

}

.factory-page .factory-1 .box ul li:after {

  content: '';

  width: 100%;

  height: 2px;

  display: block;

  position: absolute;

  top: 90px;

  background: url("../images/icon-line.png");

  left: 50%;

  z-index: -1;

}

.factory-page .factory-1 .box ul li:last-child:after {

  display: none;

}

.factory-page .factory-1 .box ul li span {

  display: block;

}

.factory-page .factory-1 .box ul li span img {

  display: block;

  margin: 0 auto;

}

.factory-page .factory-1 .box ul li p {

  display: block;

  margin-top: 45px;

  font-size: 18px;

  color: #242424;

  line-height: 1.8;

}

.factory-page .factory-2 ul {

  margin: -40px 0;

}

.factory-page .factory-2 ul li {

  padding: 40px 0;

}

.factory-page .factory-2 ul li .img {

  vertical-align: middle;

  position: relative;

  left: 0;

}

.factory-page .factory-2 ul li .img ul li a {

  display: block;

}

.factory-page .factory-2 ul li .img ul li a img {

  width: 100%;

}

.factory-page .factory-2 ul li .text {

  vertical-align: middle;

  padding-left: 6%;

  position: relative;

  left: 0;

}

.factory-page .factory-2 ul li .text i {

  display: block;

  font-size: 16px;

  color: #242424;

}

.factory-page .factory-2 ul li .text h3 {

  display: block;

  font-size: 48px;

  color: #242424;

  line-height: 1;

  font-weight: bold;

  margin: 20px 0;

}

.factory-page .factory-2 ul li .text .content {

  display: block;

  font-size: 18px;

  color: #727272;

  line-height: 2;

}

.factory-page .factory-2 ul li .text .content em {

  color: var(--color);

  margin-bottom: 10px;

  display: block;

}

.factory-page .factory-2 ul li .text .btn {

  display: block;

  margin-top: 35px;

}

.factory-page .factory-2 ul li .text .btn div {

  width: 35px;

  height: 10px;

  background-position: center center;

  background-repeat: no-repeat;

  display: inline-block;

  vertical-align: middle;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  cursor: pointer;

  cursor: hand;

}

.factory-page .factory-2 ul li .text .btn div.prev {

  background-image: url("../images/icon-about-btn-l.png");

}

.factory-page .factory-2 ul li .text .btn div.prev:hover {

  background-image: url("../images/icon-about-btn-l2.png");

}

.factory-page .factory-2 ul li .text .btn div.next {

  background-image: url("../images/icon-about-btn-r.png");

  margin-left: 50px;

  margin-top: 12px;

}

.factory-page .factory-2 ul li .text .btn div.next:hover {

  background-image: url("../images/icon-about-btn-r2.png");

}

.factory-page .factory-2 ul li:nth-child(even) .img {

  left: 50%;

}

.factory-page .factory-2 ul li:nth-child(even) .text {

  left: -50%;

  padding-right: 6%;

  padding-left: 0;

}

.factory-page .factory-3 {

  padding-top: 110px;

  padding-bottom: 60px;

  position: relative;

  z-index: 1;

}

.factory-page .factory-3:after {

  /*content: '';*/

  width: 100%;

  height: 50%;

  background: var(--color);

  z-index: -1;

  position: absolute;

  display: block;

  bottom: 0;

  left: 0;

}

.factory-page .factory-3 h2 {

  text-align: center;

  font-weight: bold;

  font-size: 48px;

  color: #242424;

}

.factory-page .factory-3 .box {

  display: block;

  padding-top: 60px;

}

.factory-page .factory-3 .box ul {

  margin: -12px;

}

.factory-page .factory-3 .box ul li {

  padding: 12px;

}

.factory-page .factory-3 .box ul li .box2 {

  display: block;

  padding: 50px 20px 70px;

  border: 1px solid #dcdcdc;

  background: #fff;

  text-align: center;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.factory-page .factory-3 .box ul li .box2 span {

  display: block;

}

.factory-page .factory-3 .box ul li .box2 span img {

  margin: 0 auto;

}

.factory-page .factory-3 .box ul li .box2 .text {

  margin-top: 15px;

  font-size: 16px;

  color: #242424;

  line-height: 28px;

  height: 168px;

}

.factory-page .factory-3 .box ul li .box2:hover {

  -webkit-transform: translateY(-10%);

  -moz-transform: translateY(-10%);

  -ms-transform: translateY(-10%);

  -o-transform: translateY(-10%);

  transform: translateY(-10%);

  border-color: var(--color);

}

.factory-page .factory-3 .tit {

  padding: 70px 0 40px;

}

.factory-page .factory-3 .tit h3 {

  display: inline-block;

  width: 70%;

  font-size: 45px;

  font-weight: bold;

  color: #333;

  line-height: 68px;

}

.factory-page .factory-3 .tit a.more {

  float: right;

  display: inline-block;

  line-height: 76px;

  height: 76px;

  padding: 0 60px;

  font-size: 24px;

  color: white;

  background: var(--color);

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  margin-top: 20px;

}

.factory-page .factory-3 .tit a.more:hover {

  background: #222;

}

.support-page h2 {

  font-size: 48px;

  font-weight: bold;

  color: black;

  line-height: 1;

  text-align: center;

}

.support-page .support-1 {

  padding: 80px 0 100px;

  text-align: center;

}

.support-page .support-1 .box {

  padding: 50px 0 15px;

  text-align: left;

}

.support-page .support-1 .box ul {

  margin: -10px;

  display: flex;

  flex-wrap: wrap;

}

.support-page .support-1 .box ul li {

  padding: 10px;

}

/*.support-page .support-1 .box ul li:nth-child(3)~li {

    display:none;

}*/

.support-page .support-1 .box ul li .box2 {

  padding: 25px;

  border-radius: 10px;

  background: #ebf5fa;

  color: #141414;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;


  position: relative;

  height: 100%;

}

.support-page .support-1 .box ul li .box2:after {

  content: '+';

  width: 35px;

  height: 35px;

  border-radius: 100%;

  background: var(--color);

  font-size: 18px;

  display: block;

  text-align: center;

  line-height: 35px;

  color: white;

  cursor: pointer;

  cursor: hand;

  position: absolute;

  right: 25px;

  top: 21px;

  display: none;

}

.support-page .support-1 .box ul li .box2 h4 {

  display: block;

  font-size: 18px;
  text-align: center;

}

.support-page .support-1 .box ul li .box2 .text {

  display: block;

  font-size: 16px;

  margin-top: 10px;

  opacity: .57;

  /*display: none;*/

}

.support-page .support-1 .box ul li .box2.active {

  background: var(--color);

  color: white;

}

.support-page .support-1 .box ul li .box2.active:after {

  content: '-';

  background: white;

  color: black;

}

.support-page .support-1 a.more {

  font-size: 32px;

  color: var(--color);

}

.support-page .support-2 .box {

  padding: 90px 0;

  text-align: center;

}

.support-page .support-2 .box ul {

  margin: 0 -20px;

}

.support-page .support-2 .box ul li {

  padding: 0 20px;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

/*.support-page .support-2 .box ul li:hover {

  -webkit-transform: translateY(-10%);

  -moz-transform: translateY(-10%);

  -ms-transform: translateY(-10%);

  -o-transform: translateY(-10%);

  transform: translateY(-10%);

}*/

.support-page .support-2 .box ul li i {

  display: block;

}

.support-page .support-2 .box ul li i img {

  margin: 0 auto;

}

.support-page .support-2 .box ul li h5 {

  display: block;

  font-size: 18px;

  color: #141414;

  text-transform: uppercase;

  margin: 15px 0 5px;

  line-height: 1.7;

  font-weight: 600;

}

.support-page .support-2 .box ul li p {

  display: block;

  font-size: 16px;

  color: #141414;

  opacity: .77;

  line-height: 32px;

  font-weight: normal;

}

.product-yd-page {

  padding: 90px 0;

  background: #f8f8f8;

}

.product-yd-page ul {

  margin: -40px -20px;

}

.product-yd-page ul li {

  padding: 40px 20px;

}

.product-yd-page ul li a {

  display: block;

}

.product-yd-page ul li a img {

  width: 100%;

}

.product-yd-page ul li a h5 {

  position: relative;

  z-index: 1;

  /*bottom: 15px;*/

  width: 100%;

  padding: 15px 5px;

  font-size: 18px;

  color: black;

  text-align: center;

  background: #eee;

}

.product-yd-page {

  padding: 90px 0;

}

.product-yd-page .top {

  display: block;

}

.product-yd-page .top .left {

  width: 40%;

  vertical-align: middle;

}

.product-yd-page .top .left h3 {

  font-size: 36px;

  color: #1f1f1f;

  font-weight: bold;

  text-align: center;

}

.product-yd-page .top .right {

  width: 60%;

  vertical-align: middle;

  padding-left: 50px;

  border-left: 1px solid #ededed;

}

.product-yd-page .top .right .text {

  padding: 30px 0;

  font-size: 18px;

  color: #797979;

  line-height: 2;

}

.product-yd-page .nav {

  margin-bottom: 40px;

}

.product-yd-page .nav ul {

  margin: -3px -6px;

}

.product-yd-page .nav ul li {

  display: inline-block;

  vertical-align: middle;

  padding: 3px 6px;

}

.product-yd-page .nav ul li a {

  line-height: 40px;

  height: 40px;

  display: inline-block;

  padding: 0 20px;

  font-size: 18px;

  color: #373737;

  text-transform: uppercase;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  position: relative;

}

.product-yd-page .nav ul li a:after {

  content: '';

  width: 100%;

  height: 2px;

  display: block;

  position: absolute;

  bottom: 0;

  left: 0;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  opacity: 0;

  background: var(--color);

}

.product-yd-page .nav ul li a:hover {

  color: var(--color);

}

.product-yd-page .nav ul li a:hover:after,

.product-yd-page .nav ul li a.active:after {

  opacity: 1;

}



.product-yd-page .search {

  padding: 45px 0;

  text-align: right;

}

.product-yd-page .search form {

  width: 260px;

  position: relative;

  margin-left: auto;

  margin-right: 0;

}

.product-yd-page .search form input {

  width: 100%;

  line-height: 32px;

  height: 32px;

  border: none;

  border-bottom: 1px solid #b5b5b5;

  padding-left: 32px;

  padding-right: 10px;

  font-size: 18px;

  color: #222;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.product-yd-page .search form input[type='submit'] {

  width: 32px;

  padding: 0;

  background: url("../images/icon-search.png") center center no-repeat;

  position: absolute;

  left: 0;

  top: 0;

  border-bottom: none;

}

.product-yd-page .search form input:focus {

  border-color: var(--color);

}

.product-yd-page .bottom ul {

  margin: -30px -15px;

}

.product-yd-page .bottom ul li {

  padding: 30px 15px;

}

.product-yd-page .bottom ul li a.img-box {

  display: block;

}

.product-yd-page .bottom ul li a.img-box img {

  width: 100%;

}

.product-yd-page .bottom ul li h5 {

  display: block;

  white-space: nowrap;

  text-overflow: ellipsis;

  overflow: hidden;

  padding: 15px 0;

  font-size: 18px;

  color: #797979;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.product-yd-page .bottom ul li:hover h5 {

  color: var(--color);

}

.cloudzoom-zoom-inside,

.cloudzoom-blank {

  cursor: crosshair;

}

.prodet-page {

  padding: 90px 0 110px;

  background: #f8f8f8;

}

.prodet-page .top {

  display: block;

}

.prodet-page .top .left {

  width: 25%;

  vertical-align: middle;

}

.prodet-page .top .left h3 {

  font-size: 36px;

  color: #1f1f1f;

  font-weight: bold;

  text-align: center;

}

.prodet-page .top .right {

  width: 75%;

  vertical-align: middle;

  padding-left: 50px;

  border-left: 1px solid #ededed;

}

.prodet-page .top .right .text {

  padding: 30px 0;

  font-size: 18px;

  color: #797979;

  line-height: 2;

}

.prodet-page .box {

  padding-top: 0 !important;

}

.prodet-page .box .gallery {

  width: 16%;

  overflow: hidden;

  padding-right: 11px;

}

.prodet-page .box .gallery .box2 {

  overflow: hidden;

  position: relative;

}

.prodet-page .box .gallery ul {

  margin: -5px;

  position: static;

}

.prodet-page .box .gallery ul li {

  padding: 5px;

}

.prodet-page .box .gallery ul .slick-arrow {

  width: 100%;

  height: 25px;

  position: absolute;

  left: 0;

  background-color: #222;

  font-size: 0;

  color: transparent;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  z-index: 1;

  border: none;

  opacity: 0;

}

.prodet-page .box .gallery ul .slick-arrow:after {

  content: '';

  font-size: 20px;

  font-family: "FontAwesome";

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

  -moz-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  -o-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  color: white;

}

.prodet-page .box .gallery ul .slick-arrow:hover {

  background-color: var(--color);

}

.prodet-page .box .gallery ul .slick-arrow.slick-prev {

  top: 0;

}

.prodet-page .box .gallery ul .slick-arrow.slick-prev:after {

  content: "\f102";

}

.prodet-page .box .gallery ul .slick-arrow.slick-next {

  bottom: 0;

}

.prodet-page .box .gallery ul .slick-arrow.slick-next:after {

  content: "\f103";

}

.prodet-page .box .gallery ul:hover .slick-arrow {

  opacity: 1;

}

.prodet-page .box .img {

  width: 48%;

  vertical-align: middle;
  position: relative;

}
.prodet-page .box .img span.arrow{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: white;
  background-color: #ccc;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  cursor: pointer;
  z-index: 5;
}
.prodet-page .box .img span.arrow:hover{
  background-color: var(--color);
}
.prodet-page .box .img span.prev{
  left: 10px;
}
.prodet-page .box .img span.next{
  right:10px;
}
.prodet-page .box .img ul{
  margin: -5px;
}
.prodet-page .box .img ul li{
  padding: 5px;
}
.prodet-page .box .img img {

  width: 100%;

}

.prodet-page .box .text {

  width: 32%;

  vertical-align: middle;
  padding-left: 50px;

}

.prodet-page .box .text h3 {

  display: block;

  font-size: 36px;

  color: #242424;

}

.prodet-page .box .text .content {

  display: block;

  font-size: 15px;

  line-height: 28px;

  margin: 25px 0 40px;

}

.prodet-page .box .text .content table tr {

  border-top: 1px solid #f0edeb;

  border-bottom: 1px solid #f0edeb;

  background: none;

}

.prodet-page .box .text .content table tr td {

  border: none;

  line-height: normal;

}

.prodet-page .box .text .btn a {

  display: inline-block;

  vertical-align: middle;

  width: 150px;

  line-height: 40px;

  height: 40px;

  text-align: center;

  font-size: 18px;

  color: var(--color);

  border: 1px solid var(--color);

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.prodet-page .box .text .btn a:hover {

  background: var(--color);

  color: white;

}

.prodet-page .feat {

  padding-top: 60px;

}

.prodet-page .feat h3 {

  display: block;

  font-size: 24px;

  color: #242424;

  font-weight: bold;

}

.prodet-page .feat .content {

  display: block;

  padding-top: 50px;

  font-size: 16px;

  line-height: 1.8;

  color: black;

}

.prodet-page .rec {

  padding-top: 70px;

}

.prodet-page .rec h3 {

  display: block;

  font-size: 24px;

  color: #242424;

  font-weight: bold;

}

.prodet-page .rec .list {

  padding-top: 40px;

}

.prodet-page .rec .list ul {

  margin: -15px;

}

.prodet-page .rec .list ul li {

  padding: 15px;

}

.prodet-page .rec .list ul li a.img-box {

  display: block;

}

.prodet-page .rec .list ul li a.img-box img {

  width: 100%;

}

.prodet-page .rec .list ul li h5 {

  display: block;

  white-space: nowrap;

  text-overflow: ellipsis;

  overflow: hidden;

  padding: 15px 0;

  font-size: 18px;

  color: #797979;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.prodet-page .rec .list ul li:hover h5 {

  color: var(--color);

}

.news-page {

  padding: 60px 0 90px;

}

.news-page .top .left {

  width: 70%;

}

.news-page .top .left ul {

  margin: -3px -6px;

}

.news-page .top .left ul li {

  display: inline-block;

  vertical-align: middle;

  padding: 3px 6px;

}

.news-page .top .left ul li a {

  line-height: 40px;

  height: 40px;

  display: inline-block;

  padding: 0 20px;

  font-size: 18px;

  color: #373737;

  text-transform: uppercase;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  position: relative;

}

.news-page .top .left ul li a:after {

  content: '';

  width: 100%;

  height: 2px;

  display: block;

  position: absolute;

  bottom: 0;

  left: 0;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  opacity: 0;

  background: var(--color);

}

.news-page .top .left ul li a:hover {

  color: var(--color);

}

.news-page .top .left ul li a:hover:after,

.news-page .top .left ul li a.active:after {

  opacity: 1;

}

.news-page .top .search {

  width: 30%;

  text-align: right;

}

.news-page .top .search form {

  width: 260px;

  position: relative;

  margin-left: auto;

  margin-right: 0;

}

.news-page .top .search form input {

  width: 100%;

  line-height: 32px;

  height: 32px;

  border: none;

  border-bottom: 1px solid #b5b5b5;

  padding-left: 32px;

  padding-right: 10px;

  font-size: 18px;

  color: #222;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.news-page .top .search form input[type='submit'] {

  width: 32px;

  padding: 0;

  background: url("../images/icon-search.png") center center no-repeat;

  position: absolute;

  left: 0;

  top: 0;

  border-bottom: none;

}

.news-page .top .search form input:focus {

  border-color: var(--color);

}

.news-page .bottom {

  padding: 45px 0 85px;

}

.news-page .bottom ul {

  margin: -25px -12px;

}

.news-page .bottom ul li {

  padding: 25px 12px;

}

.news-page .bottom ul li a.img-box {

  display: block;

}

.news-page .bottom ul li a.img-box img {

  width: 100%;

}

.news-page .bottom ul li .content {

  display: block;

  padding: 20px;
  transition: all 0.5s;

}
.news-page .bottom ul li:hover .content {
  background-color: var(--color);
}
.news-page .bottom ul li:hover .content h4,
.news-page .bottom ul li:hover .content .text,
.news-page .bottom ul li:hover .content time{
  color: white;
  border-color:white;
}
.news-page .bottom ul li .content h4 {

  display: block;

  font-size: 18px;

  color: #373737;

  line-height: 28px;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;

  max-height: 56px;
  transition: all 0.5s;

}

.news-page .bottom ul li .content .text {

  display: block;

  font-size: 15px;

  color: #848484;

  line-height: 29px;

  padding: 10px 0 20px;

  border-bottom: 1px solid #e5e5e5;
  transition: all 0.5s;

}
.news-page .bottom ul li .content .btn{
  border: 1px solid #e5e5e5;
  font-size: 18px;
  color: #a3a3a3;
  margin-top: 25px;
  transition: all 0.5s;
  padding: 5px 20px;
  display: block;
  width: fit-content;
}
.news-page .bottom ul li .content:hover .btn{
  border-color: white;
  color: white;
}
.news-page .bottom ul li .content time {

  display: inline-block;

  line-height: 34px;

  height: 34px;

  padding: 0 20px;

  border: 1px solid #e5e5e5;

  font-size: 14px;

  color: #a3a3a3;

  margin-top: 25px;
  transition: all 0.5s;

}

.news-page .m-page *:first-child {

  margin-top: 0;

}

.newdet-page {

  padding-bottom: 50px;

  background: white;

}

.newdet-page .about-1 .right {

  padding-left: 0 !important;

}

.contact-page .contact-1 {

  padding: 80px 0 120px;

  text-align: center;

}

.contact-page .contact-1 h2 {

  display: block;

  font-weight: bold;

  font-size: 36px;

  color: #292929;

}

.contact-page .contact-1 .text {

  display: block;

  max-width: 1100px;

  margin: 15px auto 50px;

  font-size: 18px;

  color: #858585;

  line-height: 30px;

}

.contact-page .contact-1 .list {

  display: block;

}

.contact-page .contact-1 .list ul {

  margin: -10px;

}

.contact-page .contact-1 .list ul li {

  padding: 10px;

}

.contact-page .contact-1 .list ul li .box2 {

  display: block;

  padding: 40px 25px 80px;

  position: relative;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

  background: #f6f6f6;

}

.contact-page .contact-1 .list ul li .box2:hover {

  -webkit-transform: translateY(-10%);

  -moz-transform: translateY(-10%);

  -ms-transform: translateY(-10%);

  -o-transform: translateY(-10%);

  transform: translateY(-10%);

}

.contact-page .contact-1 .list ul li .box2 h4 {

  display: block;

  font-size: 18px;

  color: #7c7a7a;

  font-weight: bold;

}

.contact-page .contact-1 .list ul li .box2 p {

  display: block;

  font-size: 16px;

  line-height: 28px;

  color: #000;

  opacity: .63;

  height: 44px;

}

.contact-page .contact-1 .list ul li .box2 i {

  display: inline-block;

  border: 6px solid #f6f6f6;

  border-radius: 100%;

  position: absolute;

  left: 50%;

  top: 100%;

  -webkit-transform: translate(-50%, -50%);

  -moz-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  -o-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

}

.contact-page .contact-2 {

  padding: 130px 0 160px;

  text-align: center;

  background: #f6f6f6 url("../images/contact-2-bg.jpg") center top no-repeat;

  background-size: 100% auto;

}

.contact-page .contact-2 h2 {

  display: block;

  font-weight: bold;

  font-size: 36px;

  color: #292929;

  line-height: 1;

}

.contact-page .contact-2 h2 small {

  display: block;

  font-size: 18px;

  color: #858585;

  line-height: normal;

  margin-top: 15px;

  font-weight: normal;

}

.contact-page .contact-2 .box {

  margin-top: 45px;

  background: white;

}

.contact-page .contact-2 .box .left {

  width: 40%;

  vertical-align: middle;

}

.contact-page .contact-2 .box .right {

  width: 60%;

  vertical-align: middle;

  text-align: left;

}

.contact-page .contact-2 .box .right .form {

  padding: 0 8%;

}

.contact-page .contact-2 .box .right .form ul {

  margin: -10px 0;

}

.contact-page .contact-2 .box .right .form ul li {

  padding: 10px 0;

}

.contact-page .contact-2 .box .right .form ul li label {

  display: block;

  font-size: 16px;

  font-weight: bold;

  color: #333;

  margin-bottom: 10px;

}

.contact-page .contact-2 .box .right .form ul li input,

.contact-page .contact-2 .box .right .form ul li textarea {

  display: block;

  width: 100%;

  padding: 15px 10px;

  background: #f2f4fa;

  font-size: 16px;

  color: #333;

  border: none;

}

.contact-page .contact-2 .box .right .form ul li textarea {

  height: 120px;

  resize: vertical;

}

.contact-page .contact-2 .box .right .form ul li p {

  display: block;

  margin-top: 10px;

  font-size: 16px;

  color: #666;

}

.contact-page .contact-2 .box .right .form ul li input[type="submit"] {

  line-height: 60px;

  height: 60px;

  padding: 0 35px;

  text-align: center;

  background: var(--color);

  color: white;

  font-size: 24px;

  width: auto;

  margin-top: 10px;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  -ms-transition: .5s;

  -o-transition: .5s;

  transition: .5s;

}

.contact-page .contact-2 .box .right .form ul li input[type="submit"]:hover {

  background: #222;

}

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

  .about-page .about-1 h3,

  .support-page h2,

  .factory-page .factory-1 h2,

  .factory-page .factory-3 h2,

  .factory-page .factory-3 .tit h3,

  .about-page .about-2 h2,

  .about-page .about-5 h3,

  .about-page .about-6 h3 {

    font-size: 40px;

  }

  .about-page .about-6 h3 {

    line-height: 1.5;

  }

  .factory-page .factory-3 .tit h3 {

    line-height: 1.4;

  }

  .about-page .about-1 {

    padding-top: 70px;

  }

  .news-page .bottom ul li {

    padding: 10px;

  }

  .news-page .bottom ul {

    margin: -10px;

  }

  .news-page .bottom ul li .content .text {

    font-size: 14px;

    line-height: 22px;

    padding: 10px 0;

  }

  .news-page .bottom ul li .content time {

    margin-top: 10px;

  }

  .news-page .bottom ul li .content h4 {

    font-size: 16px;

    line-height: 24px;

    max-height: 48px;

  }

  .news-page,

  .prodet-page,

  .product-yd-page,

  .support-page .support-2 .box {

    padding: 60px 0;

  }

  .product-yd-page .search {

    padding: 25px 0;

  }

  .prodet-page .top .left h3,

  .product-yd-page .top .left h3 {

    font-size: 28px;

  }

  .prodet-page .top .right .text,

  .product-yd-page .top .right .text {

    font-size: 16px;

    line-height: 1.8;

    padding: 20px 0;

  }

  .prodet-page .box {

    padding-top: 50px;

  }

  .prodet-page .box .text .btn a {

    width: auto;

    padding: 0 25px;

    font-size: 16px;

  }

  .prodet-page .feat .content {

    padding-top: 30px;

  }

  .prodet-page .rec {

    padding-top: 40px;

  }

  .prodet-page .rec .list ul li h5,

  .product-yd-page .bottom ul li h5 {

    font-size: 16px;

    padding: 10px 0;

  }

  .product-yd-page .bottom ul li {

    padding: 10px;

  }

  .product-yd-page .bottom ul {

    margin: -10px;

  }

  .inner-page .m-page a,

  .inner-page .m-page span {

    font-size: 20px;

  }

  .public-info .right ul li a {

    min-width: auto;

    padding: 0 15px;

    line-height: 44px;

    height: 44px;

    font-size: 15px;

  }

  .public-info {

    line-height: 80px;

    height: 80px;

  }

  .product-yd-page ul li {

    padding: 10px;

  }

  .product-yd-page ul {

    margin: -10px;

  }

  .public-contact {

    padding: 60px 0;

  }

  .public-contact h4,

  .factory-page .factory-1 h2 small {

    font-size: 28px;

  }

  .public-contact p {

    font-size: 20px;

  }

  .public-contact a.more {

    line-height: 40px;

    height: 40px;

  }

  .support-page .support-1 .box ul li .box2 {

    padding: 15px;

    padding-right: 80px;

  }

  .support-page .support-1 .box ul li .box2:after {

    top: 10px;

    right: 15px;

  }

  .support-page .support-2 .box ul li p {

    font-size: 13px;

  }

  .support-page .support-1 {

    padding: 40px 0;

  }

  .support-page .support-1 .box ul li {

    padding: 5px 0;

  }

  .support-page .support-1 .box ul {

    margin: -5px 0;

  }

  .factory-page .factory-1 .box ul li p {

    font-size: 16px;

    line-height: 1.6;

    margin-top: 20px;

  }

  .factory-page .factory-1 .box ul li {

    padding: 0 20px;

  }

  .factory-page .factory-1 .box ul {

    margin: 0 -20px;

  }

  .factory-page .factory-2 ul li .text h3 {

    font-size: 32px;

  }

  .factory-page .factory-2 ul li .text .content {

    font-size: 16px;

    line-height: 1.6;

  }

  .factory-page .factory-2 ul li .text .btn {

    margin-top: 20px;

  }

  .factory-page .factory-3 .box {

    padding-top: 40px;

  }

  .factory-page .factory-3 .box ul li .box2 .text {

    font-size: 14px;

    line-height: 1.8;

  }

  .factory-page .factory-3 .box ul li .box2 span img {

    max-height: 70px;

  }

  .factory-page .factory-3 .tit a.more {

    line-height: 54px;

    height: 54px;

  }

  .factory-page .factory-1 {

    padding-bottom: 120px;

  }

  .inner-banner .box h2 {

    font-size: 50px;

  }

  .mbx {

    font-size: 16px;

  }

  .inner-banner {

    line-height: 340px;

    height: 340px;

    background-size: auto 100%;

  }

  .about-page .about-1 .box .left {

    vertical-align: middle;

  }

  .about-page .about-1 .box .right {

    padding-left: 25px;

    vertical-align: middle;

  }

  .about-page .about-1 .numList .btn {

    width: 50%;

    display: none;

  }

  .about-page .about-1 .numList .num {

    width: 100%;

    line-height: normal;

    height: auto;

    padding: 20px 0;

  }

  .about-page .about-1 .numList {

    margin-top: 20px;

  }

  .about-page .about-2 {

    padding: 70px 0;

  }

  .about-page .about-2 .year-list {

    margin-top: 50px;

  }

  .about-page .about-2 .year-list ul li h4 {

    font-size: 24px;

  }

  .about-page .about-3 .text h4,

  .about-page .about-4 .text h4 {

    font-size: 32px;

  }

  .about-page .about-3 .text .content,

  .about-page .about-4 .text .content {

    font-size: 16px;

    line-height: 1.8;

    margin-top: 20px;

  }

  .about-page .about-3 .text .content br,

  .about-page .about-4 .text .content br {

    display: none;

  }

  .about-page .about-4 {

    padding: 70px 0;

  }

  .about-page .about-5 .box ul li span {

    font-size: 200px;

  }

  .about-page .about-5 .box {

    padding-top: 40px;

  }

  .about-page .about-5 .box ul li p:before {

    height: 60px;

  }

  .about-page .about-5 {

    padding: 80px 0;

  }

  .about-page .about-6 .box {

    padding: 70px 0;

  }

  .about-page .about-6 .box ul li a .text p {

    font-size: 14px;

    line-height: 1.6;

  }

  .about-page .about-6 .box ul li a .text h4 {

    font-size: 20px;

  }

  .about-page .about-6 .box ul li a .text em {

    font-size: 14px;

    line-height: 32px;

    height: 32px;

  }

  .about-page .about-6 .box ul li a .text {

    top: 18%;

  }

  .contact-page .contact-2 {

    padding: 130px 0 50px;

  }

  .contact-page .contact-2 .box .right .form ul li input,

  .contact-page .contact-2 .box .right .form ul li textarea {

    padding: 10px;

  }

  .contact-page .contact-2 .box .right .form ul li input[type="submit"] {

    line-height: 40px;

    height: 40px;

    font-size: 16px;

  }

  .contact-page .contact-2 .box .right .form ul li label {

    margin-bottom: 5px;

  }

}

@media screen and (max-width: 1000px) {
  .about-page .about-1 .box .right .text table{
  display: block;
  overflow: auto;
}
  .inner-banner {

    margin-top: 40px;

    line-height: 300px;

    height: 300px;

  }

  .inner-banner .box h2 {

    font-size: 40px;

  }

  .about-page .about-1 h3,

  .support-page h2,

  .factory-page .factory-1 h2,

  .factory-page .factory-3 h2,

  .factory-page .factory-3 .tit h3,

  .about-page .about-2 h2,

  .about-page .about-5 h3,

  .about-page .about-6 h3 {

    font-size: 32px;

  }

  .about-page .about-1 .box .right {

    width: 100%;

    padding-left: 0;

    padding-top: 20px;

  }

  .about-page .about-1 .box .left {

    width: 100%;

  }

  .about-page .about-1 .numList .num li {

    width: 25%;

  }

  .about-page .about-1 .numList .num ul li h3 {

    font-size: 30px;

  }

  .about-page .about-1 .numList .num ul li p {

    font-size: 15px;

    margin-top: 10px;

  }

  .about-page .about-2 h2 small {

    margin-top: 10px;

  }

  .about-page .about-3 .text,

  .about-page .about-4 .text {

    width: 100%;

    padding: 20px 0;

  }

  .about-page .about-3 .img,

  .about-page .about-4 .img {

    width: 100%;

  }

  .about-page .about-3 .text h4,

  .about-page .about-4 .text h4 {

    font-size: 26px;

  }

  .about-page .about-4 {

    padding: 40px 0;

  }

  .about-page .about-5 .box ul li {

    width: 25%;

    padding: 0 15px;

  }

  .about-page .about-5 .box ul {

    margin: 0 -15px;

  }

  .about-page .about-5 .box ul li span {

    font-size: 140px;

  }

  .about-page .about-5 .box ul li p {

    font-size: 20px;

  }

  .about-page .about-6 .box {

    padding: 40px 0;

  }

  .about-page .about-6 .box ul li {

    width: 100%;

    padding: 10px;

  }

  .about-page .about-6 .box ul {

    margin: -10px;

  }

  .about-page .about-6 .box ul li a .text {

    top: 35%;

  }

  .factory-page .factory-1 .box ul li:after {

    display: none;

  }

  .factory-page .factory-1 .box ul li span img {

    max-width: 100px;

  }

  .factory-page .factory-1 .box ul li {

    width: 50%;

    padding: 15px;

  }

  .factory-page .factory-1 .box ul {

    margin: -15px;

  }

  .public-contact h4,

  .factory-page .factory-1 h2 small {

    font-size: 24px;

  }

  .factory-page .factory-2 ul li .text {

    width: 100%;

    padding: 20px 0;

    left: 0 !important;

  }

  .factory-page .factory-2 ul li .img {

    width: 100%;

    left: 0 !important;

  }

  .factory-page .factory-2 ul li {

    padding: 20px 0;

  }

  .factory-page .factory-2 ul {

    margin: -20px 0;

  }

  .factory-page .factory-3 {

    padding: 60px 0;

  }

  .factory-page .factory-3 .box ul li {

    width: 100%;

  }

  .factory-page .factory-3 .box ul li .box2 .text {

    height: auto;

  }

  .factory-page .factory-3 .box ul li .box2 {

    padding: 25px 15px;

  }

  .factory-page .factory-3 .tit {

    text-align: center;

  }

  .factory-page .factory-3 .tit h3 {

    width: 100%;

  }

  .factory-page .factory-3 .tit a.more {

    float: none;

    margin: 15px auto 0;

  }

  .support-page .support-2 .box ul li {

    width: 50%;

  }

  .support-page .support-2 .box ul li i img {

    width: 160px;

  }

  .product-yd-page ul li a h5 {

    bottom: 5px;

    font-size: 18px;

  }

  .product-yd-page .top .right {

    padding-left: 20px;

  }

  .prodet-page .top .right .text,

  .product-yd-page .top .right .text {

    font-size: 14px;

    line-height: 1.6;

    padding: 0;

  }

  .product-yd-page .top .right,

  .prodet-page .top .right {

    width: 100%;

    padding-left: 0;

    border-left: none;

    padding-top: 20px;

  }

  .product-yd-page .top .left,

  .prodet-page .top .left {

    width: 100%;

    text-align: left;

  }

  .prodet-page .top .left h3,

  .product-yd-page .top .left h3 {

    text-align: left;

  }

  .product-yd-page .search {

    text-align: left;

  }

  .product-yd-page .search form {

    margin-left: 0;

  }

  .inner-page .m-page *:first-child {

    margin-top: 30px;

  }

  .public-info .right ul li a {

    padding: 0 8px;

    font-size: 14px;

    line-height: 34px;

    height: 34px;

  }

  .public-info .left ul li {

    font-size: 16px;

  }

  .inner-page .m-page a,

  .inner-page .m-page span {

    font-size: 16px;

  }

  .prodet-page .box .text h3 {

    font-size: 26px;

    line-height: 1.6;

  }

  .prodet-page .box .text .content {

    margin: 15px 0;

    font-size: 14px;

    line-height: 25px;

  }

  .prodet-page .box .img {

    width: 75%;

    padding-right: 0;

  }

  .prodet-page .box .gallery {

    width: 25%;

  }

  .prodet-page .box .text {

    width: 100%;

    padding-top: 30px;
    padding-left: 0;

  }

  .prodet-page .rec .list ul li {

    padding: 10px;

  }

  .prodet-page .rec .list ul {

    margin: -10px;

  }

  .news-page .top .search form {

    max-width: 100%;

  }

  .news-page .top .left {

    width: 100%;

    text-align: center;

  }

  .news-page .top .search {

    width: 100%;

    padding-top: 20px;

    text-align: center;

  }

  .news-page .top .search form {

    margin: 0 auto;

  }

  .news-page .bottom {

    padding: 40px 0;

  }

  .about-page .about-1 .box {

    margin-top: 30px;

  }

  .support-page .support-2 .box ul li {

    padding: 15px;

  }

  .support-page .support-2 .box ul {

    margin: -15px;

  }

  .contact-page .contact-2 .box .right .form ul li label {

    margin-bottom: 0;

  }

  .contact-page .contact-2 .box .right .form ul li {

    padding: 5px 0;

  }

  .contact-page .contact-2 .box .right .form ul {

    margin: -5px 0;

  }

  .contact-page .contact-2 .box .right .form ul li input,

  .contact-page .contact-2 .box .right .form ul li textarea {

    padding: 5px 10px;

  }

  .contact-page .contact-2 .box .right .form ul li textarea {

    height: 80px;

  }

  .contact-page .contact-2 .box .right .form ul li p {

    font-size: 14px;

  }

  .contact-page .contact-2 .box .right .form ul li input[type="submit"] {

    margin-top: 5px;

  }

  .contact-page .contact-2 h2,

  .contact-page .contact-1 h2 {

    font-size: 28px;

  }

  .contact-page .contact-1 {

    padding: 60px 0;

  }

  .contact-page .contact-1 .text {

    margin: 15px 0 20px;

    font-size: 16px;

    line-height: 1.8;

  }

  .contact-page .contact-1 .list ul li .box2 {

    padding: 30px 15px;

  }

  .contact-page .contact-1 .list ul li .box2 p {

    height: 66px;

  }

}

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

  .inner-banner .box h2 {

    font-size: 32px;

  }

  .inner-banner {

    height: 260px;

    line-height: 260px;

  }

  .about-page .about-1 {

    padding-top: 50px;

  }

  .about-page .about-1 .box .right .text p {

    padding-bottom: 15px;

  }

  .about-page .about-1 .box {

    margin-top: 20px;

  }

  .public-info {

    height: 15px;

  }

  .public-info * {

    display: none;

  }

  .news-page,

  .prodet-page,

  .product-yd-page,

  .support-page .support-2 .box {

    padding: 40px 0;

  }

  .about-page .about-1 h3,

  .support-page h2,

  .factory-page .factory-1 h2,

  .factory-page .factory-3 h2,

  .factory-page .factory-3 .tit h3,

  .about-page .about-2 h2,

  .about-page .about-5 h3,

  .about-page .about-6 h3 {

    font-size: 26px;

  }

  .about-page .about-1 .numList .num li {

    width: 50%;

    padding: 10px;

  }

  .about-page .about-1 .numList .num ul {

    margin: -10px;

  }

  .about-page .about-2 .year-list ul li .text {

    width: 400px;

    font-size: 16px;

  }

  .about-page .about-5 .box ul li span {

    font-size: 110px;

  }

  .about-page .about-5 .box ul li p {

    font-size: 16px;

  }

  .about-page .about-5 .box ul li p:before {

    height: 30px;

  }

  .about-page .about-5 {

    padding: 50px 0;

  }

  .contact-page .contact-1 .list ul li {

    width: 100%;

  }

  .contact-page .contact-1 .list ul li p {

    height: auto;

  }

  .contact-page .contact-1 .list ul li .box2 p {

    height: auto;

  }

  .contact-page .contact-2 h2 small {

    font-size: 16px;

  }

  .contact-page .contact-2 .box .right .form {

    padding: 0;

  }

  .contact-page .contact-2 .box .right {

    width: 100%;

    background: white;

    padding: 30px;

  }

  .contact-page .contact-2 .box .left {

    display: none;

  }

  .contact-page .contact-2 .box .right .form ul li input,

  .contact-page .contact-2 .box .right .form ul li textarea {

    padding: 10px;

  }

  .contact-page .contact-2 .box .right .form ul li textarea {

    height: 140px;

  }

  .contact-page .contact-2 h2,

  .contact-page .contact-1 h2 {

    font-size: 24px;

  }

  .contact-page .contact-2 {

    padding-top: 80px;

  }

#index-body .init-2 .box ul li a:after {

  width: 90%;

  height: 84%;

  left: 5%;

  top: 8%;

  background: rgba(0, 125, 196, 0.5);

}

.prodet-page .feat .content table tbody tr td{
  white-space: nowrap;
}
.prodet-page .feat .content table{
  overflow-x: auto;
  display: block
}

}

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

  .about-page .about-5 .box ul li span {

    font-size: 60px;

  }

  .about-page .about-5 .box ul li p {

    font-size: 12px;

  }

  .about-page .about-6 .box ul li a .text {

    top: 10%;

    padding: 0 10px;

  }

  .about-page .about-6 .box ul li a .text p {

    font-size: 12px;

    line-height: 1.4;

  }

  .public-contact h4,

  .factory-page .factory-1 h2 small {

    font-size: 20px;

  }

  .factory-page .factory-1 .box {

    margin-top: 40px;

  }

  .factory-page .factory-1 .box ul li p {

    font-size: 14px;

  }

  .factory-page .factory-2 ul li .text h3 {

    font-size: 28px;

  }

  .factory-page .factory-3 .tit a.more {

    font-size: 20px;

    line-height: 44px;

    height: 44px;

  }

  .support-page .support-1 .box ul li .box2 h4 {

    font-size: 16px;

  }

  .support-page .support-1 .box ul li .box2 {

    padding-right: 50px;

  }

  .support-page .support-1 .box ul li .box2:after {

    width: 28px;

    height: 28px;

    line-height: 28px;

    top: 13px;

    right: 10px;

  }

  .support-page .support-2 .box ul li h5 {

    font-size: 14px;

  }

  .support-page .support-2 .box ul li p {

    font-size: 12px;

    line-height: 1.6;

  }

  .news-page .bottom {

    padding-bottom: 0;

  }

  .news-page .top .left ul li a {

    padding: 0 15px;

    line-height: 32px;

    height: 32px;

    font-size: 16px;

  }

  .contact-page .contact-2 .box .right {

    padding: 20px;

  }

}



.about2-page .about-1 {

    height: 600px;

    height: 100vh;

    padding-top: 13%;

    color: white;

    background-size: cover;

    background-attachment: fixed;

    background-position: center center;

}

.about2-page .about-1 .text {

    margin-top: 20px;

    font-size: 16px;

    max-height: 10em;

    overflow: auto;

}

.about2-page .about-1 .play {

    width: 100px;

    height: 100px;

    border-radius: 100%;

    display: block;

    position: relative;

    cursor: pointer;

    cursor: hand;

    z-index: 1;

    margin-top: 3%;

    float: right;

}

.about2-page .about-1 .play i {

    border-left: 25px solid white;

    border-top: 15px solid transparent;

    border-bottom: 15px solid transparent;

    display: block;

    width: 0;

    height: 0;

    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%);

}

.about2-page .about-1 .play:after,

.about2-page .about-1 .play:before {

    content: '';

    width: 100%;

    height: 100%;

    position: absolute;

    top: 0;

    left: 0;

    background: var(--color);

    border-radius: 100%;

    -webkit-animation: ks 2s linear infinite;

    -moz-animation: ks 2s linear infinite;

    animation: ks 2s linear infinite;

    z-index: -1;

}

.about2-page .about-1 .play:after {

    -webkit-animation-delay: 1s;

    -moz-animation-delay: 1s;

    animation-delay: 1s;

}

.about2-page .about-2 {

    padding: 100px 0;

    position: relative;

}

.about2-page .about-2:after {

    content: '';

    width: 85%;

    height: 100%;

    z-index: -1;

    background: #F1F1F1;

    position: absolute;

    top: 0;

    left: 0;

}

.about2-page .about-2 .left {

    width: 60%;

    padding-right: 3%;

    vertical-align: middle;

}

.about2-page .about-2 .left .text {

    margin-top: 5%;

}

.about2-page .about-2 .right {

    width: 40%;

    position: relative;

    vertical-align: middle;

}

.about2-page .about-2 .right .img-box {

    height: 640px;

    position: absolute;

    width: 100%;

    top: -210px;

    left: 0;

}

.about2-page .about-3 {

    padding: 85px 0;

}

.about2-page .about-3 .list {

    overflow: hidden;

    width: 100%;

}

.about2-page .about-3 .list ul {

    /*width: 150%;*/

    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

    -moz-box-pack: justify;

    -ms-flex-pack: justify;

    justify-content: space-between;

    flex-wrap: wrap;

    margin: -10px;

    padding-top: 70px;

}

.about2-page .about-3 .list ul li {

    vertical-align: top;

    /*width: 50%;*/

    width: auto !important;

    padding: 10px;

}

.about2-page .about-3 .box {

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: end;

    -webkit-align-items: flex-end;

    -moz-box-align: end;

    -ms-flex-align: end;

    align-items: flex-end;

}

.about2-page .about-3 .box h6 {

    font-size: 80px;

    color: var(--color);

    font-weight: bold;

    position: relative;

    line-height: 1;

}

.about2-page .about-3 .box h6 em {

    display: block;

}

.about2-page .about-3 .box h6 span {

    font-size: 12px;

    font-weight: normal;

    color: white;

    background: var(--color);

    width: 25px;

    height: 25px;

    line-height: 25px;

    display: block;

    position: absolute;

    left: 110%;

    top: 0;

    text-align: center;

    border-radius: 100%;

}

.about2-page .about-3 .box p {

    font-size: 14px;

    padding-left: 10px;

}

.about2-page .about-4 {

    padding-bottom: 100px;

}

.about2-page .about-4 .left {

    width: 60%;

    vertical-align: bottom;

}

.about2-page .about-4 .left .img-box {

    height: 600px;

    width: 122%;

    margin-left: -22%;

}

.about2-page .about-4 .left .img-box .play {

    width: 100px;

    height: 100px;

    line-height: 100px;

    border-radius: 100%;

    background: rgba(195, 28, 36, 0.4);

    white-space: nowrap;

    font-size: 14px;

    color: white;

    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;

}

.about2-page .about-4 .left .img-box .play i {

    margin-right: 35%;

    font-size: 250%;

    display: inline-block;

    vertical-align: middle;

    position: relative;

    top: -2px;

}

.about2-page .about-4 .right {

    width: 40%;

    padding-left: 2%;

    vertical-align: bottom;

}

.about2-page .about-4 .right .content {

    width: 150%;

    margin-left: -50%;

    padding: 8%;

    background: white;

    position: relative;

    z-index: 1;

    margin-bottom: -1px;

    margin-top: 8%;

}

.about2-page .about-4 .right .content .text {

    font-size: 18px;

}

.about2-page .about-5 {

    padding: 150px 0;

    background: url("../images/about-5-bg.jpg") center center no-repeat;

    background-size: cover;

    background-attachment: fixed;

    color: white;

}

.about2-page .about-5 .list2 ul {

  margin: 0 -20px;

}

.about2-page .about-5 .list2 ul li {

  padding: 0 20px;

}

.about2-page .about-5 .box {

    margin-top: 50px;

}

.about2-page .about-5 .box .left {

    width: 75%;

    vertical-align: middle;

}

.about2-page .about-5 .box .left .box2 .content {

    vertical-align: middle;

}

.about2-page .about-5 .box .left .box2 .content .text {

    font-size: 18px;

    margin-top: 0px;

}

.about2-page .about-5 .box .left .box2 .img {

    vertical-align: middle;

    text-align: center;

    position: relative;

}

.about2-page .about-5 .box .left .box2 .img .slick-dots {

    margin-top: 20px;

    text-align: center;

}

.about2-page .about-5 .box .left .box2 .img .slick-dots li {

    width: 10px;

    height: 10px;

    border-radius: 100%;

    opacity: .4;

    background: white;

    display: inline-block;

    vertical-align: middle;

    margin: 0 5px;

    cursor: pointer;

    cursor: hand;

    -webkit-transition: .5s;

    -moz-transition: .5s;

    transition: .5s;

}

.about2-page .about-5 .box .left .box2 .img .slick-dots li button {

    display: none;

}

.about2-page .about-5 .box .left .box2 .img .slick-dots li.slick-active {

    opacity: 1;

}

.about2-page .about-5 .box .right {

    width: 25%;

    padding-left: 3%;

    vertical-align: middle;

}

.about2-page .about-5 .box .right ul li {

    padding: 5px 0;

}

.about2-page .about-5 .box .right ul li a {

    display: block;

    line-height: 40px;

    height: 40px;

    font-size: 24px;

    text-align: center;

    position: relative;

    -webkit-transition: .5s;

    -moz-transition: .5s;

    transition: .5s;

}

.about2-page .about-5 .box .right ul li a:after {

    content: '';

    width: 6px;

    height: 100%;

    position: absolute;

    right: 0;

    top: 0;

    background: black;

    -webkit-transition: .5s;

    -moz-transition: .5s;

    transition: .5s;

    opacity: 0;

}

.about2-page .about-5 .box .right .slick-current a {

    background: var(--color);

}

.about2-page .about-5 .box .right .slick-current a:after {

    opacity: 1;

}

.about2-page .about-6 {

    padding: 75px 0 150px;

}

.about2-page .about-6 .left {

    width: 55%;

}

.about2-page .about-6 .left .text {

    font-size: 16px;

    margin-top: 5%;

    /*padding-right: 20%;*/

}

.about2-page .about-6 .right {

    width: 45%;

    padding-left: 3%;

}

.about2-page .about-6 .right .img-box {

    height: 350px;

}

.about2-page .about-7 {

    padding-bottom: 70px;

}

.about2-page .about-7 .list {

    margin-top: 3%;

    background: url("../images/about-7-bg.jpg") center center;

    background-size: cover;

    padding: 5% 0;

}

.about2-page .about-7 .list ul li {

    height: auto !important;

    position: relative;

    z-index: 1;

    padding: 70px;

}

.about2-page a.more {

  line-height: 3.85714286em;

  height: 3.5714286em;

  padding: 0 4.28571429em;

  font-size: 14px;

  display: inline-block;

  background: var(--color);

  color: white;

  -webkit-transition: .5s;

  -moz-transition: .5s;

  transition: .5s;

}

.about2-page a.more i.fa-eye {

  margin-right: 0.35714286em;

}

.about2-page a.more:hover {

  background: #0c67d7;

}

.about2-page h2.title {

  font-size: 48px;

  line-height: 1.2;

  margin-top: 50px;

}

.about2-page h2.title i.dots {

  display: block;

  width: 10px;

  height: 10px;

  border-radius: 100%;

  background: #0c67d7;

  white-space: nowrap;

  position: relative;

  margin-top: 12px;

  margin-left: 5px;

}

.about2-page h2.title i.dots:after {

  content: '';

  display: inline-block;

  vertical-align: middle;

  background: var(--color);

  border-radius: inherit;

  width: 100%;

  height: 100%;

  position: absolute;

  left: 100%;

  top: 0;

}

.about2-page .text {

  font-size: 18px;

  line-height: 1.8;

}

.about2-page .about-7 .list ul li h6 {

    font-size: 18px;

    /*font-weight: bold;*/

    color: white;

}

.about2-page .about-7 .list ul li h6 small {

    display: block;

    text-transform: none;

    font-size: 70%;

    opacity: .6;

}

.about2-page .about-7 .list ul li .text {

    font-size: 14px;

}

.about2-page .about-7 .list ul li .text:before {

    content: '';

    width: 1px;

    height: 40px;

    background: white;

    margin: 15px auto;

    display: block;

}

.about2-page .about-7 .list ul li .content {

    position: absolute;

    top: 30%;

    left: 0;

    padding: 0 5%;

    text-align: center;

    width: 100%;

    color: white;

    opacity: 0;

    -webkit-transition: .5s;

    -moz-transition: .5s;

    transition: .5s;

}

.about2-page .about-7 .list ul li:hover:after {

    width: 100%;

}

.about2-page .about-7 .list ul li:hover .content {

    opacity: 1;

}

.about2-page .about-8 {

    padding-bottom: 70px;

}

.about2-page .about-8 ul {

    margin: -10px;

}

.about2-page .about-8 ul li {

    padding: 10px;

}

.about2-page .about-9 {

    /*margin-bottom: 70px;*/

    padding: 100px 0 40px;

    color: white;

    background: url('../images/about-9-bg.jpg') center center no-repeat;

    background-size: cover;

}

.about2-page .about-9 .left {

    vertical-align: middle;

    width: 70%;

}

.about2-page .about-9 .right {

    width: 30%;

    padding: 0 5%;

}

/* service */



.p05 h2 {

    font-size: 46px;

    font-weight: bold;

    line-height: 1;

    color: #fff;

}

.p05 div,

.p05 p {

  font: inherit;

}

.white {

    color: #fff;

}





.p05 .support .item{

  display: flex;

  align-items: center;

  margin: 30px 0;

}



.p05 .support .item:nth-child(odd){

  flex-direction: row-reverse;



}



.p05 {

  font-size: 16px

}



.p05 h2 {

  margin-bottom: 40px

}



.p05 .samples,

.p05 .consultation {

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -webkit-align-items: center;

  -ms-flex-align: center;

  align-items: center;

  margin: 120px auto

}



.p05 .samples .mml-text,

.p05 .consultation .mml-text {

  -webkit-box-flex: 1;

  -webkit-flex: 1;

  -ms-flex: 1;

  flex: 1;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  padding: 20px;

  max-width: 50%;

  color: #565656;

  font-size: 18px;

}



.p05 .samples .mml-image,

.p05 .consultation .mml-image {

  margin: auto

}



.p05 .samples h2,

.p05 .consultation h2 {

  color: black;

  text-align: initial;

  line-height: 1.4;

}



.p05 .samples p,

.p05 .samples ul,

.p05 .consultation p,

.p05 .consultation ul {

  margin-top: 15px;

  line-height: 2;

}



.p05 .samples li,

.p05 .consultation li {

  margin: 5px 0;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

  font-size: 18px;

}



.p05 .samples .green,

.p05 .consultation .green {

  margin-right: 5px;

  color: #56d079

}



.p05 .consultation {

  -webkit-box-orient: horizontal;

  -webkit-box-direction: reverse;

  -webkit-flex-direction: row-reverse;

  -ms-flex-direction: row-reverse;

  flex-direction: row-reverse;

  /*max-width: 1404px;*/

}



.p05 .stable {

  overflow: hidden;

  padding: 120px 0;

  background-color: #19181d;

  text-align: center

}



.p05 .stable p {

  margin: 0 auto 15px;

  max-width: 750px;

  color: gray;

  line-height: 2;

}



.p05 .slicker-stable {

  /*max-width: 1700px;*/

  margin: 60px 0 0;

  /*-webkit-transform: translate(25%, 0);

  -ms-transform: translate(25%, 0);

  transform: translate(25%, 0)*/

}

.p05 .slicker-stable{
  margin: 0 -20px;
}
.p05 .slicker-stable .slick-slide {

  position: relative;

  padding: 0 20px

}



.p05 .slicker-stable .slick-slide:before {

  content: '\20';

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  right: 0;

  /*background-color: rgba(25, 24, 29, .5);*/

  -webkit-transition: all 0.24s;

  -o-transition: all 0.24s;

  transition: all 0.24s

}



.p05 .slicker-stable .slick-slide.slick-current:before {

  opacity: 0

}



.p05 .slick-dots {

  max-width: 820px;

  width: 50%;

  margin: 40px auto 0;

}



.p05 .slick-dots>li {

  display: inline-block;

  background-color: #f7f7f7;

}



.p05 .slick-dots>li.slick-active {

  background-color: var(--primary);

}



.p05 .support {

  overflow: hidden;

  color: white;

  padding-bottom: 68px;

}



.p05 .support .mml-row {

  margin: 60px auto;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: reverse;

  -webkit-flex-direction: row-reverse;

  -ms-flex-direction: row-reverse;

  flex-direction: row-reverse;

  -webkit-box-pack: justify;

  -webkit-justify-content: space-between;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -webkit-box-align: center;

  -webkit-align-items: center;

  -ms-flex-align: center;

  align-items: center

}



.p05 .support .mml-row:nth-child(even) {

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

  -webkit-flex-direction: row;

  -ms-flex-direction: row;

  flex-direction: row

}



.p05 .support .mml-image {

  margin: auto

}



.p05 .support .mml-text {

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-box-flex: 1;

  -webkit-flex: 1;

  -ms-flex: 1;

  flex: 1;

  padding: 20px;

  max-width: 50%;

  color: #000;

  text-align: initial;

}



.p05 .support .sup-title {

  display: block;

  margin-top: 70px;

  color: #111;

  line-height: 1.4;

}



.p05 .support h3 {

  margin-bottom: 30px;

  font-size: 30px;

}



.p05 .support p {

  margin-top: 15px;

  font-size: 18px;

  line-height: 1.6;

}



@media (max-width:1200px) {

  .p05 .slicker-stable {

    -webkit-transform: none;

    -ms-transform: none;

    transform: none

  }



  .p05 .slick-dots {

    max-width: unset;

    width: unset

  }

}



@media (max-width:1000px) {



  .p05 .consultation,

  .p05 .samples {

    display: block

  }



  .p05 .consultation .mml-image,

  .p05 .samples .mml-image {

    width: unset

  }



  .p05 .consultation .mml-text,

  .p05 .samples .mml-text {

    margin: auto

  }

}



@media (max-width:780px) {

  .p05 .support .mml-row {

    display: block;

    margin: 40px auto

  }



  .p05 .support .mml-image {

    width: unset;

    max-width: unset

  }



  .p05 .support .mml-text {

    margin: auto

  }



  .p05 .support .sup-title {

    text-align: center

  }

}



@media (max-width:600px) {

  .p05 h2 {

    margin-bottom: 20px

  }



  .p05 .consultation,

  .p05 .samples {

    margin: 40px 0

  }



  .p05 .stable {

    padding: 40px 0

  }



  .p05 .slicker-stable,

  .p05 .slick-dots {

    margin-top: 20px

  }

}



.p05 .support .ui.container {

  max-width: 1404px;

}



.p05 h2 {

    font-size: 46px;

    font-weight: bold;

    line-height: 1;

    color: #fff;

}

.p05 div,

.p05 p {

  font: inherit;

}

.white {

    color: #fff;

}

.slick-dots button{display:none}.slick-dots>li{margin:0 10px;width:12px;height:12px;background-color:#fff;border-radius:50%;cursor:pointer;-webkit-transition:all 0.24s;-o-transition:all 0.24s;transition:all 0.24s}.slick-dots>li.slick-active{background-color:#fff;}



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

  .p05 .samples .mml-text, .p05 .consultation .mml-text{

    max-width: 100%;

  }



  .p05 h2{

    font-size: 30px;

  }



  .p05 .support .item{

    display: block;

  }



  .p05 .support .mml-text{

    max-width: 100%;

  }

}



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

  .p05 .consultation{

    display: block;

  }

  .p05 .samples, .p05 .consultation{

    display: block;

  }

  .p05 .samples .mml-image, .p05 .consultation .mml-image{

    width: 100%;

  }

  .p05 .support .mml-image img{

    width: 100%;

  }

  .p05 .samples .mml-image img, .p05 .consultation .mml-image img{

    width: 100%;

  }

}

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

  .p05 .slicker-stable .slick-list{

    padding-right: 100px !important;

  }

}





.p06-1-s5 {

    padding-bottom: 160px

}



.p06-1-s5 .mml-row>ul>li {

    margin-top: 137px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -webkit-align-items: center;

    -ms-flex-align: center;

    align-items: center

}

.p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap {

    display: -webkit-box;

    display: -webkit-flex;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: end;

    -webkit-justify-content: flex-end;

    -ms-flex-pack: end;

    justify-content: flex-end;

    padding-left: 10px;

    -webkit-box-flex: 1;

    -webkit-flex: 1 1 auto;

    -ms-flex: 1 1 auto;

    flex: 1 1 auto

}



.p06-1-s5 .mml-row>ul>li:nth-child(even) {

    -webkit-box-orient: horizontal;

    -webkit-box-direction: reverse;

    -webkit-flex-direction: row-reverse;

    -ms-flex-direction: row-reverse;

    flex-direction: row-reverse

}



.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {

    padding-right: 10px;

    -webkit-box-flex: 1;

    -webkit-flex: 1 1 auto;

    -ms-flex: 1 1 auto;

    flex: 1 1 auto

}



.p06-1-s5 h2 {

    margin-bottom: 30px;

    font-size:40px;

    font-weight: bold;

       

    color: #363636;

    font-family: "roboto";

}



.p06-1-s5 p {

    margin-top: 10px;

    font-size: 18px;

    line-height: 2;

}



.p06-1-s5 .img-wrap {

    max-width: 822px;

    width: 54%

}



.p06-1-s5 .text {

    max-width: 730px;

}



.p06-1-s5 .swiper-pagination {

    position: absolute;

    margin-top: 0

}



.p06-1-s5 .swiper-container-horizontal>.swiper-pagination-bullets {

    bottom: 30px

}



@media (max-width:1200px) {

    .p06-1-s2 .small {

        margin-top: 0;

        max-width: 100%

    }



    .p06-1-s4 .text {

        margin: 0

    }

}



@media (max-width:960px) {

    .p06-1-s2 .tab {

        -webkit-flex-wrap: wrap;

        -ms-flex-wrap: wrap;

        flex-wrap: wrap;

        -webkit-box-pack: center;

        -webkit-justify-content: center;

        -ms-flex-pack: center;

        justify-content: center

    }



    .p06-1-s2 .tab li {

        width: calc(50% - 2px);

        margin-bottom: 2px

    }

}



@media (max-width:768px) {

    .p06-1-s1 {

        padding: 40px 0

    }



    .p06-1-s4 .text {

        padding: 10px

    }



    .p06-1-s5 {

        padding-bottom: 40px

    }



    .p06-1-s5 .mml-row>ul>li {

        margin-top: 20px;

        -webkit-flex-wrap: wrap;

        -ms-flex-wrap: wrap;

        flex-wrap: wrap;

        -webkit-box-pack: center;

        -webkit-justify-content: center;

        -ms-flex-pack: center;

        justify-content: center

    }



    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .img-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .img-wrap {

        width: 100%

    }



    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {

        margin-top: 20px;

        padding: 0;

        -webkit-box-pack: center;

        -webkit-justify-content: center;

        -ms-flex-pack: center;

        justify-content: center

    }



    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text {

        max-width: 100%;

        text-align: center

    }

}



@media (max-width:540px) {

    .p06-1-s2 .tab li {

        width: 100%

    }

}



.sustainability-page {

  padding-bottom: 110px;

}

.sustainability-page.pb_0{

  padding-bottom: 0;

}



.sustainability-page .init-0 {

  padding: 80px 0 0px 0;

  -o-background-size: cover;

  background-size: cover;

  text-align: center;

  color: #fff;

}

.sustainability-page .init-0 .ui.container{

  padding: 150px 15px;

}



.sustainability-page .init-0 .container .title {

  font-weight: bold;

  font-size: 44px;

}



.sustainability-page .init-0 .container .des {

  margin: 20px auto 0;

  max-width: 1150px;

  line-height: 2;

  font-size: 18px;

}



.sustainability-page .init-1 {

  margin-top: 30px;

}



.sustainability-page .init-1 .container {

  display: -webkit-box;

  display: -webkit-flex;

  display: -moz-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -webkit-justify-content: space-between;

  -moz-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

}



.sustainability-page .init-1 .container .list {

  margin-top: 30px;

  text-align: center;

  width: 20%;

  padding: 10px 0;

  transition: 0.5s;

}



.sustainability-page .init-1 .container .list img {

  display: block;

  height: 88px;

  width: auto;

  margin: auto;

}



.sustainability-page .init-1 .container .list .text {

  margin-top: 20px;

  color: #222222;

  font-size: 18px;

}



.sustainability-page .init-1 .container .list:hover {

  -webkit-transform: translateY(-10px);

  -moz-transform: translateY(-10px);

  -ms-transform: translateY(-10px);

  -o-transform: translateY(-10px);

  transform: translateY(-10px);

}



.sustainability-page .init-2 {

  padding-top: 30px;

}



.sustainability-page .init-2 .container .list {

  margin-top: 60px;

}



.sustainability-page .init-2 .container .list .column {

  position: relative;

  vertical-align: middle;

}



.sustainability-page .init-2 .container .list .left {

  width: 45%;

}



.sustainability-page .init-2 .container .list .left img {

  width: 100%;

}



.sustainability-page .init-2 .container .list .right {

  width: 55%;

  padding: 20px 150px 20px 72px;

}



.sustainability-page .init-2 .container .list .right .title {

  font-weight: bold;

  font-size: 38px;

}



.sustainability-page .init-2 .container .list .right .index_line {

  margin-top: 10px;

  width: 80px;

}



.sustainability-page .init-2 .container .list .right .des {

  margin-top: 20px;

  line-height: 2;

  font-size: 16px;

}



.sustainability-page .init-2 .container .list:nth-child(2n) .left {

  left: 50%;

}



.sustainability-page .init-2 .container .list:nth-child(2n) .right {

  left: -50%;

}



.sustainability-page .init-3 {

  padding: 0 30px;

  margin: 100px 0 20px;

}



.sustainability-page .init-3 .container {

  width: 100%;

}



.sustainability-page .init-3 .container .content {

  margin: -15px;

}



.sustainability-page .init-3 .container .content .list {

  padding: 0 15px;

}



.sustainability-page .init-3 .container .content .list img {

  width: 100%;

}



.sustainability-page .init-4 {

  text-align: center;

  margin-top: 80px;

}



.sustainability-page .init-4 .container .title {

  font-weight: bold;

  font-size: 44px;

}



.sustainability-page .init-4 .container .des {

  color: #747474;

  margin: 20px auto 0;

  max-width: 880px;

  line-height: 2;

  font-size: 16px;

}



.sustainability-page .init-4 .container .index_line {

  height: 5px;

  margin: 20px auto 0;

}



.sustainability-page .init-4 .container .content {

  margin-top: 60px;

}



.sustainability-page .init-4 .container .content ul li {

  padding: 0 15px;

}



.sustainability-page .init-4 .container .content ul li .box {

  border: 1px solid #d8d8d8;

}



.sustainability-page .init-4 .container .content ul li .box .img {

  display: block;

  height: 108px;

}



.sustainability-page .init-4 .container .content ul li .box .img img {

  width: 100%;

  height: 100%;

  -o-object-fit: contain;

  object-fit: contain;

}



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

   .sustainability-page .init-0 {

    padding: 120px 0;

  }



  .sustainability-page .init-1 {

    display: none;

  }

}

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

  .sustainability-page .init-2 .container .list .left {

    width: 100%;

  }



  .sustainability-page .init-2 .container .list .right {

    width: 100%;

    padding: 0;

    margin-top: 20px;

    text-align: center;

  }



  .sustainability-page .init-2 .container .list:nth-child(2n) .left {

    left: 0;

  }



  .sustainability-page .init-2 .container .list:nth-child(2n) .right {

    left: 0;

  }

  .his-bg .left-his {

    display: none;

  }

  .his-bg .right-his {

    width: 100%;

    margin-left: 0;

  }

  .his-bg {

    padding: 40px 0;

  }

}

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

  .sustainability-page .init-3 {

    padding: 0;

  }



  .sustainability-page .init-3 .container .content {

    margin: 0;

  }



  .sustainability-page .init-3 .container .content .list {

    width: 100%;

    padding: 0;

    margin-top: 20px;

  }

}

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

  .sustainability-page .init-0 {

    padding: 40px 0;

  }



  .sustainability-page .init-2 .container .list {

    margin-top: 20px;

  }



  .sustainability-page .init-2 .container .list .right .des {

    margin-top: 10px;

  }



  .sustainability-page .init-4 .container .content {

    margin-top: 20px;

  }



  .sustainability-page .init-4 .container .content ul li {

    padding: 0 4px;

  }

}

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

  .about2-page .about-2 .left {

    padding-right: 0;

    width: 100%;

  }

  .about2-page .about-2 .right {

    display: none;

  }

  .about2-page h2.title,.p06-1-s5 h2 {

    margin-top: 0;

    font-size: 36px;

  }

  .about2-page .about-2 {

    padding: 60px 0;

  }

  .about2-page .text,.about2-page .about-4 .right .content .text,.p06-1-s5 p {

    font-size: 16px;

  }

  .about2-page .about-3 .box h6 {

    font-size: 32px;

  }

  .about2-page .about-4 .right .content {

    width: 100%;

    margin-left: 0;

    padding: 0;

    margin-top: 20px;

  }

  .about2-page .about-4 .left {

    width: 100%;

  }

  .about2-page .about-4 .right {

    width: 100%;

    padding-left: 0;

  }

  .about2-page .about-4 .left .img-box {

    width: 100%;

    margin-left: 0;

    height: 400px;

  }

  .about2-page .about-4 {

    padding-bottom: 60px;

  }

  .about2-page .about-3 .box h6 span {

    transform: scale(.7);

    left: 100%;

  }

  .about2-page .about-3 .list ul {

    padding-top: 0;

  }

  .about2-page .about-3 .box p {

    padding-left: 25px;

  }

  .about2-page .about-7 .list ul li {

    padding: 15px;

    width: 50%;

  }

  .about2-page .about-5 {

    padding: 90px 0;

  }

  .about2-page .about-6 {

    padding: 60px 0;

  }

  .about2-page .about-9 .left {

    width: 100%;

  }

  .about2-page .about-9 .right {

    width: 100%;

    padding: 0 15px;

    margin-top: 20px;

  }

  .about2-page .about-9 {

    padding: 40px 0;

  }

  .contact-page .contact-1 .list ul li .box2 p {

    height: auto;

    font-size: 14px;

  }

  .contact-page .contact-1 .list ul li .box2 {

    height: 100%;

  }

  .contact-page .contact-1 .list ul {

    display: flex;

    flex-wrap: wrap;

    margin: -5px;

  }

  .contact-page .contact-1 .list ul li {

    padding: 5px;

  }

  .contact-page .contact-1 .list ul li .box2 {

    padding: 20px 10px;

  }

  .inner-banner {

    margin-top: 120px;

  }

}

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

  .about2-page h2.title,.p06-1-s5 h2 {

    font-size: 24px;

  }

  .about2-page .about-3 .box p {

    font-size: 12px;

  }

  .about2-page .about-3 {

    padding: 50px 0;

  }

  .about2-page .about-7 .list ul li {

    width: 100%;

  }

  .about2-page .about-6 .right {

    width: 100%;

    padding-left: 0;

    margin-top: 15px;

  }

  .about2-page .about-6 .left {

    width: 100%;

  }

  .inner-banner {

      background-size: cover;

      background-position: center;

      background-attachment: unset;

  }

  .about2-page .text, .about2-page .about-4 .right .content .text,.p06-1-s5 p {

    font-size: 14px;

  }

  .contact-page .contact-1 .list ul li {

    margin-bottom: 20px;

  }

  .news-page .bottom ul li {

    width: 100% !important;

  }

  .support-page .support-1 .box ul li .box2 {

    padding: 10px;

  }

  .support-page .support-1 .box ul li {

    width: 100%;

  }

  .support-page .support-2 .box ul li i img {

    width: 60px;

  }

  #footer .footer-top .column {

    width: 50%;

  }

}