@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype'), url(../fonts/Montserrat-Medium.eot) format('eot'), url(../fonts/Montserrat-Medium.woff) format('woff'), url(../fonts/Montserrat-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype'), 
  url(../fonts/Montserrat-SemiBold.eot) format('eot'), 
  url(../fonts/Montserrat-SemiBold.woff) format('woff'), 
  url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-weight: bold;
}
@font-face {
    font-family: 'Syne';
    src:  url('../fonts/Syne-Bold.eot');
    src:  url('../fonts/Syne-Bold.eot') format('eot'),
         url('../fonts/Syne-Bold.woff2') format('woff2'),
         url('../fonts/Syne-Bold.woff') format('woff'),
         url('../fonts/Syne-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.d-r {
  direction: rtl;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

body {
  font-family: "Montserrat";
  font-weight: 400;
  --color:#f28800;
  font-size: 16px;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1450px;
  margin: auto;
}
@media (min-width: 1600px) {
  #header .nav .ui.menu {
    height: 124px;
  }
  #header.fixed .nav .ui.menu {
    height: 84px;
  }
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0 5px 8px 6px rgba(96, 96, 96, 0.09);
  box-shadow: 0 5px 8px 6px rgba(96, 96, 96, 0.09);
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 20px;
  font-size: 16px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: #000418;
  font-weight: 500;
  
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: var(--color);
  color: var(--color);
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a i {
  margin-left: 10px;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid 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: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
  margin-right: 30px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
  word-break: normal;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  background: #f7f7f7;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  line-height: 28px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  line-height: 32px;
  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;
  line-height: 36px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.language-box .language-img {
  display: inline-block;
  vertical-align: middle;
}
.language-box .zhuyu {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 0;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.language-box ul.sub-menu li:hover a {
  background: #ffb11b;
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  max-width: 1780px;
  margin: auto;
}
#banner li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 90%;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .left {
  text-align: center;
}
#banner h2 {
  margin-bottom: 30px;
  font-size: 70px;
  line-height: 1.2;
  color: white;
  font-weight: 500;
  /*text-transform: uppercase;*/
}
.baseBtn {
  display: inline-block;
  color: white;
  background-color: var(--color);
  border: 1px solid var(--color);
  padding: 9px;
  min-width: 230px;
  text-align: center;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  /*line-height: 30px;*/
}
.baseBtn:hover {
  color: var(--color);
  background-color: transparent;
}
.baseBtn.no_bg {
  background-color: transparent;
  color: var(--color);
}
.baseBtn.no_bg:hover {
  color: white;
  background-color: var(--color);
}
.quick-links {
  background-color: #f3f3f3;
  max-width: 1780px;
  margin: auto;
  padding: 45px 0;
}
.quick-links .wrapper {
  margin: 0 auto;
  max-width: 1366px;
}
.quick-links .wrapper .container {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 16px;
}
.quick-links .wrapper .container > a {
  background-color: #fff;
  border-left: 4px solid var(--color);
  color: #393b3c;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 -webkit-calc(100% - 16px);
  -moz-box-flex: 1;
  -ms-flex: 1 1 calc(100% - 16px);
  flex: 1 1 calc(100% - 16px);
  padding: 20px 40px 16px;
  text-decoration: none;
}
.quick-links .wrapper .container > a > span {
  background-image: url(../images/arrow-icon.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  display: block;
  padding-bottom: 2px;
  -webkit-transition: border-color 0.3s ease-out;
  -moz-transition: border-color 0.3s ease-out;
  transition: border-color 0.3s ease-out;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.quick-links .wrapper .container > a:hover span {
  border-bottom-color: var(--color);
}
.baseTit .Tag {
  font-weight: 500;
  color: var(--color);
  line-height: 1.8;
}
.baseTit .Tit {
  font-size: 40px;
  line-height: 1.6;
  color: #000;
  font-weight: 600;
}
.baseTit .Tit span {
  color: var(--color);
}
.model-1 {
  padding: 90px 0;
}
.model-1 .container {
  max-width: 790px;
  padding: 0 15px;
  margin: auto;
}
.model-1 .text {
  font-weight: 500;
  color: #343639;
  /*max-width: 85%;*/
  margin: auto;
  line-height: 30px;
}
.model-2 {
  margin-bottom: 80px;
  /*height: 820px;*/
  overflow: hidden;
}
/*.pin-spacer{
   max-height: 820px;
   padding: 0 0 820px !important;
}*/
.model-2 .scroll,.model-2 .scroll-2{
  /*width:max-content;*/
}

.model-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;*/
  margin: -20px;
  overflow: hidden;
}
.model-2 li {
  /*width: 50%;*/
  width: 700px;
  padding: 20px;
}
.model-2 li a {
  position: relative;
}
.model-2 li a::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(242, 136, 0));
  bottom: 0;
  opacity: 0;
  transition: all .3s linear;
}
.model-2 li a:hover::before{
  opacity: 1;
}
.model-2 li .cmp-card-tile-grid__title {
  margin-bottom: -5px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-right: 70px;
}
.model-2 li .cmp-card-tile-grid__title h3 {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.model-2 li .cmp-card-tile-grid__title h3 img{
  width: 7px;
  margin-left: 49px;
}
.model-2 li .cmp-card-tile-grid__text {
  margin-bottom: 0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 70px;
  line-height: 30px;
}
.model-2 .item.rtl .slick-slide {
  direction: ltr;
}
.model-2 .item.rtl .slick-list {
  direction: rtl;
}
.cmp-card-tile-grid__link {
  color: #fff;
  display: block;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.cmp-card-tile-grid__background-image {
  height: 100%;
}
.cmp-card-tile-grid__content {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(57%, #000), color-stop(92%, #00c)), -webkit-gradient(linear, left bottom, left top, from(#00001a), to(#00001a));
  background: -webkit-linear-gradient(top, #000 57%, #00c 92%), -webkit-linear-gradient(bottom, #00001a, #00001a);
  background: -moz-linear-gradient(top, #000 57%, #00c 92%), -moz-linear-gradient(bottom, #00001a, #00001a);
  background: linear-gradient(180deg, #000 57%, #00c 92%), linear-gradient(0deg, #00001a, #00001a);*/
  bottom: 0;
  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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  left: 0;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 0;
}
.cmp-card-tile-grid__chevron-right {
  bottom: 12.5%;
  right: 6%;
}
.model-2 .cmp-card-tile-grid__chevron-right{
  width: 7px;
  right:60%;
  bottom: 32px;
}
.cmp-card-tile-grid__chevron-right,
.cmp-card-tile-grid__chevron-right::after {
  content: url(../images/model-2-arrow.png);
  position: absolute;
}
.cmp-card-tile-grid__chevron-right:after {
  content: "";
  right: 0;
  top: 0;
}
.model-3 {
  padding: 60px 0;
  margin-bottom: 80px;
}
.model-3 .box {
  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;
}
.model-3 .box .left {
  width: 47%;
  padding: 0 35px;
}
.model-3 .box .left .text {
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 30px;
  color: #343639;
}
.model-3 .box .right {
  width: 47%;
  text-align: center;
}
.model-3 .box .right video {
  background-color: black;
}
.i-category {
  padding-top: 40px;
  margin-bottom: 60px;
  overflow: hidden;
}
.i-category .slick-list {
  overflow: unset;
}
.i-category .list {
  margin-top: 60px;
}
.i-category .list > ul {
  margin: 0 -60px;
}
.i-category .list > ul li {
  padding: 0 60px;
}
.i-category .list > ul li .img {
  height: 560px;
}
.i-category .list > ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.i-category .list > ul li .content {
  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%);
  background-color: white;
  padding: 50px;
  max-width: 450px;
  width: 100%;
}
.i-category .list > ul li .content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30px;
  bottom: -30px;
  left: -35px;
  right: -35px;
  background-color: white;
  opacity: .3;
}
.i-category .list > ul li .name {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
}
.i-category .list span.arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 60px;
  opacity: .5;
  cursor: pointer;
}
.i-category .list span.arrow:hover {
  opacity: 1;
}
.i-category .list span.arrow.arrow_l {
  left: -70px;
}
.i-category .list span.arrow.arrow_r {
  right: -70px;
}
.i-category .list .dots {
  position: absolute;
  left: 50%;
  bottom: 5%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.i-category .list .dots li {
  margin: 0 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
}
.i-category .list .dots li.slick-active {
  background-color: var(--color);
}
.i-category .list .dots li button {
  display: none;
}
.i-category .productBot{
  padding-top: 60px;
  padding-left: 13%;
}
.i-category .productBot .swiper{
  padding-bottom: 90px;
}
.i-category .productBot .swiper ul li img{
  width: 100%;
}
.i-category .productBot .swiper ul li .modelBg {
  width: 100%;
  height: 50px;
  background-color: var(--color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: all .5s linear;
}
.i-category .productBot .swiper ul li .textBg{
  width: 100%;
  height: 130px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  padding: 30px 60px 40px;
  text-align: center;
  color: #242424;
  line-height: 1.5;
  transition: all .3s ease;
}
.i-category .productBot .swiper ul li:hover .modelBg {
  opacity: 1;
}
.i-category .productBot .swiper ul li:hover .textBg {
  background-color: #f3f3f3;
	box-shadow: 0px 13px 18px 0px rgba(204, 204, 204, 0.5);
}
.i-category .productBot .swiper .swiper-horizontal>.swiper-scrollbar {
  height: 4px;
	background-color: #f3f3f3;
}
.i-category .productBot .swiper .swiper-scrollbar-drag {
  height: 8px;
	background-color: #f28800;
  top:-2px;
  border-radius: 0;
}
.our-news {
  padding-top: 60px;
  margin-bottom: 80px;
}
.our-news .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  margin-top: 60px;
  
}
.our-news .left {
  width: 65%;
  background-color: #343639;
}
.our-news .right {
  width: 35%;
  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;
  background-color: #343639;
  padding: 56px 40px;
}
.our-news .right ul {
  margin: -15px;
}
.our-news .right li {
  padding: 15px;
}
.our-news .right .date {
  color: var(--color);
}
.our-news .right .name {
  font-size: 30px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 4em;
}
.our-news .right .text {
  line-height: 30px;
  min-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.our-news .link-style-text-reversed{
   border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.fdn-link {
  display: inline-block;
}
.link-style-text-reversed {
  border-bottom: 2px solid #000;
  -webkit-transition: border-color 0.3s ease-out;
  -moz-transition: border-color 0.3s ease-out;
  transition: border-color 0.3s ease-out;
}
.link-style-text-reversed:hover {
  border-color: var(--color);
}
.icon-arrow-animated .icon-arrow-animated-container {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.icon-arrow-animated .icon-arrow-animated-base {
  background: var(--color);
  border: 1px solid var(--color);
  height: 2px;
  margin-left: 8px;
  position: relative;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  width: 12px;
}
.icon-arrow-animated .icon-arrow-animated-head {
  border: 1px solid var(--color);
  height: 2px;
  position: absolute;
  right: -4px;
  top: 2px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
}
.icon-arrow-animated .icon-arrow-animated-head:after {
  border: 1px solid var(--color);
  content: "";
  position: absolute;
  right: -5px;
  top: -5px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 10px;
}
.icon-arrow-animated:hover .icon-arrow-animated-base {
  margin-left: 12px;
}
.our-about {
  padding: 60px 0;
  margin-bottom: 80px;
  overflow: hidden;
}
.our-about .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 1780px;
  margin: auto;
}
.our-about .left {
  width: 55%;
}
.our-about .left .imgAll{
  display: none;
}
.our-about .left .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.our-about .left .img img{
  transition: all .5s ease;
}
.our-about .left .img img.img-img{
  position: absolute;
  z-index: 2;
}
.our-about .left .img img.img-1{
  left: 10%;
  top: 20%;
}
.our-about .left .img img.img-2{
  right: 5%;
  top: -2%;
}
.our-about .left .img img.img-3{
  right: 5%;
  bottom: 0%;
}
.our-about .left .img img.img-bg {
  position: absolute;
}
.our-about .left .img img.img-bg1{
  left: 15%;
  top: -40px;
}
.our-about .left .img img.img-bg2{
  left: 77%;
  top: 110px;
}
.our-about .left .img img.img-bg3 {
  left: 2%;
  bottom: 0;
}
.our-about .left .img.active img.img-1{
  left: 18%;
  /*top:40px;*/
}
.our-about .left .img.active img.img-2{
  right: 19%;
}
.our-about .left .img.active img.img-3{
  right: 6%;
  bottom: 0;
}
.our-about .right {
      width: 36%;
    padding-left: 2%;
        line-height: 30px;
}
.our-about .right .text {
  font-weight: 500;
  margin: 40px 0;
  line-height: 2;
}
.our-about .right .numList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.font-35{
  font-size: 35px;
}
.our-about .right .numList .num{
  color: #000;
  font-family: Syne;
  font-weight: bold;
  position: relative;
}
.our-about .right .numList .num span{
  font-size: 20px;
}
.our-about .right .numList .num::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
	height: 41px;
  border-radius: 50%;
	background-color: #f28800;
	opacity: 0.2;
  transition: all .3s linear;
  z-index: -1;
}
.our-about .right .numList li:hover .num::before{
  opacity: 1;
}
.our-about .right .numList .text {
  color: #494949;
  font-weight: 500;
  margin: 5px 0;
}
.Auxil-industry h2{
  font-size: 30px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  color: var(--color);
  font-weight: bold;
  padding-bottom: 20px;
}
.Auxil-industry h3{
  font-size: 20px;
  line-height: 1.8;
  color: var(--color);
  font-weight: bold;
  padding: 10px 0;
}
.shouye{
  font-weight: 500;
  margin: 40px 0;
  font-size: 16px;
  line-height: 30px;
}
.shouye h1{
  display: inline!important;
  font: inherit;
  color: inherit;;
}
#footer {
  max-width: 1780px;
  margin: auto;
  color: white;
  font-weight: 500;
  background-color: #343639;
  padding: 80px 0 40px;
}
#footer .foot-top,
#footer .foot-bottom {
  margin: auto;
  max-width: 1420px;
}
#footer .foot-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 50px;
}
#footer .foot-content .foot-block {
  max-width: 400px;
}
#footer .foot-content .foot-block .text {
  margin: 40px 0 60px;
  line-height: 28px;
  font-weight: 500;
}
#footer .foot-content .foot-block h4 {
  margin: 25px 0 50px;
  line-height: 36px;
}
#footer .foot-content .foot-block li {
  color: #a9a9a9;
  line-height: 1.8;
  transition: all .3s;
}
#footer .foot-content .foot-block li a:hover {
  color:#fff;
}
#footer .foot-content .foot-block li p.line {
  text-decoration: underline;
}
#footer .foot-content .foot-block .social-links a {
  color: #a9a9a9;
}
#footer .foot-content .foot-block .social-links a + a {
  margin-left: 25px;
}
#footer .form {
  padding: 20px 0;
  border-top: 1px solid #53565a;
}
#footer .form p {
  color: #737373;
  line-height: 30px;
}
#footer .form form {
  display: grid;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  grid-template-columns: repeat(24, 1fr);
}
#footer .form input {
  height: 40px;
  border: 0;
  font-size: 14px;
  background-color: #53565a;
  padding: 0 10px;
}
#footer .form input::-webkit-input-placeholder {
  color: white;
}
#footer .form input:-moz-placeholder {
  color: white;
}
#footer .form input::-moz-placeholder {
  color: white;
}
#footer .form input:-ms-input-placeholder {
  color: white;
}
#footer .form input::placeholder {
  color: white;
}
#footer .form input[name="name"],
#footer .form input[name="mail"] {
  grid-column: span 5;
}
#footer .form input[name="content"] {
  grid-column: span 10;
}
#footer .form input[type="submit"] {
  grid-column: span 4;
  text-align: center;
  background-color: var(--color);
}
.module-footer-bottom__primary {
  padding-top: 45px;
  border-top: 1px solid #53565a;
}
.module-footer-bottom__primary p,
.module-footer-bottom__primary a {
  display: inline-block;
  vertical-align: middle;
  color: #787878;
}
.module-footer-bottom__primary span {
  border-bottom: 1px solid currentColor;
}
.module-footer-bottom__primary img {
  height: 15px;
  filter: brightness(0.5);
}
#ewm {
  width: 150px;
  border: 5px solid white;
}
.fdn-image__img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .quick-links .wrapper .container {
    gap: 32px;
  }

 
  .quick-links .wrapper .container > a {
    -webkit-flex-basis: -webkit-calc(50% - 32px);
    -ms-flex-preferred-size: calc(50% - 32px);
    flex-basis: -moz-calc(50% - 32px);
    flex-basis: calc(50% - 32px);
  }
}
@media (min-width: 1450px) {
  .quick-links .wrapper .container {
    gap: 50px;
  }
  .quick-links .wrapper .container > a {
    -webkit-flex-basis: -webkit-calc(25% - 50px);
    -ms-flex-preferred-size: calc(25% - 50px);
    flex-basis: -moz-calc(25% - 50px);
    flex-basis: calc(25% - 50px);
  }
 
  .i-category .productBot .swiper{
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1700px) {
  .i-category .productBot{
    padding-left: 10%;
  }
  .our-about .box{
    max-width: 1450px;
  }
  .our-about .right{
    width: 40%;
  }
  .our-about .left .img img.img-bg1{
    left: 0;
    top: -40px;
  }
   .our-about .left .img img.img-bg1{
    left: 0%;
    bottom: 0;
  }
  .our-about .left .img img.img-1{
    left: 0%;
    top: 20%;
  }
  .our-about .left .img img.img-2{
    right: 0%;
    top: -2%;
  }
  .our-about .left .img img.img-3{
    bottom: 0%;
    right: -2%;
  }
  .our-about .left .img.active img.img-1 {
    left: 8%;
  }
  .our-about .left .img.active img.img-2 {
    right: 15%;
  }
  .our-about .left .img.active img.img-3 {
    right: 0%;
    bottom: 8%;
  }
}
@media (max-width: 1600px) {
  #banner h2 {
    font-size: 70px;
  }
  .i-category .list span.arrow.arrow_l {
    left: 0;
  }
  .i-category .list span.arrow.arrow_r {
    right: 0;
  }
  .i-category .productBot{
    padding-left: 5%;
  }
}

@media (max-width: 1450px) {
  .ui.container {
    max-width: 1230px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 12px;
    font-weight: 400;
  }
  #header .nav .ui.menu .h-search {
    margin-left: 15px;
    margin-right: 20px;
  }
  #banner h2 {
    font-size: 60px;
  }
  .quick-links .wrapper {
    padding: 0 20px;
  }
  .model-2 ul {
    margin: -15px;
  }
  .model-2 li {
    padding: 15px;
    width: 520px;
  }
  .model-2 .cmp-card-tile-grid__chevron-right{
    right: 40%;
  }
  .model-3 .box .left {
    padding: 0;
  }
  .our-news .box {
    display: block;
  }
  .our-news .left {
    width: 100%;
  }
  .our-news .left img {
    width: 100%;
  }
  .our-news .right {
    width: 100%;
  }
  .our-news .right .text {
    min-height: auto;
  }
  .our-about .left .img {
    margin-left: 0;
    margin-right: 0;
  }
  #footer .container {
    margin: 0 32px;
  }
  .module-footer-bottom__primary .left {
    float: none;
  }
  .module-footer-bottom__primary .right {
    float: none;
  }
 .our-about .box {
   max-width: 1200px;
   justify-content: center;
 }
 .our-about .left .img img.img-1{
   width: 40%;
 }
 .our-about .left .img img.img-2{
   width: 35%;
 }
 .our-about .left .img img.img-3{
   width: 50%;
 }
 .our-about .left .img img.img-2{
   right: 5%;
 }
 .our-about .left .img.active img.img-2{
   top: 5%;
 }
 .our-about .left .img.active img.img-3{
   bottom: 20%;
 }
 .our-about .left .img img.img-bg2{
   left: auto;
   right: 0;
 }
 .baseTit .Tit{
   font-size: 34px;
 }
 .font-35 {
    font-size: 28px;
}
}
@media (max-width: 1230px) {
  .model-2 li{
    width: 400px;
  }

  #header .nav .ui.menu .menu-box ul.menu > li > a i {
    display: none;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 14px;
  }
  #header .nav .ui.menu .logo {
    width: 200px;
  }
  #banner h2 {
    font-size: 50px;
  }
  .quick-links .wrapper .container > a > span {
    font-size: 16px;
  }
  #footer .foot-content .foot-block {
    max-width: 100%;
    width: 45%;
  }
  #footer .foot-content .foot-block h4 {
    margin: 25px 0;
    padding: 20px 6px;
    border-bottom: 1px solid #6d767e;
  }
  #footer .foot-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .our-about .box{
    max-width: 950px;
  }
}
@media (max-width: 1000px) {
   .i-category .productBot{
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
  }
  #nav-height {
    display: none;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner,
  .inner-banner {
    margin-top: 120px;
  }
  .baseBtn {
    min-width: auto;
    padding: 12px 16px;
  }
  #banner h2 {
    font-size: 45px;
  }
  .model-3 .box {
    display: block;
  }
  .model-3 .box .left {
    width: 100%;
  }
  .model-3 .box .right {
    width: 100%;
    margin-top: 40px;
  }
  .i-category .list span.arrow {
    display: none;
  }
  .i-category .list > ul li .img {
    height: auto;
  }
  .i-category .list > ul li .content {
    position: static;
    max-width: 100%;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .i-category .list > ul li .content::before {
    display: none;
  }
  .i-category .list .dots {
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .i-category .list .dots li {
    background-color: #343639;
  }
  .model-3{
    margin-bottom: 20px;
  }
  .i-category .productBot .swiper ul li .textBg{
    padding: 20px;
  }
  .our-about .box {
    display: block;
    max-width: 700px;
  }
  .our-about .left .img{
    display: none;
  }
  .our-about .left .imgAll{
    display: block;
  }
  .our-about{
    padding: 30px 0;
  }
  .i-category .productBot .swiper{
    padding-bottom: 30px;
  }
  .our-about .left {
    width: 100%;
    
  }
  .our-about .right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }
  #footer .form input[name="name"],
  #footer .form input[name="mail"] {
    grid-column: span 12;
  }
  #footer .form input[name="content"] {
    grid-column: span 12;
  }
  #footer .form input[type="submit"] {
    grid-column: span 12;
  }
  #footer .form form {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #banner h2 {
    font-size: 26px;
  }
  .font-16 {
    font-size: 14px;
    line-height: 1.5;
  }
  .font-18 {
    font-size: 16px;
    line-height: 30px;
  }
  .baseTit .Tit {
    font-size: 32px;
  }
  .model-1 {
    padding: 60px 0;
  }
  .model-2 {
    margin-bottom: 40px;
  }
  .cmp-card-tile-grid__content {
    padding: 10px;
  }
  .model-2 li .cmp-card-tile-grid__title {
    padding-right: 0;
  }
  .model-2 li .cmp-card-tile-grid__title h3 img{
    margin-left: 20px;
  }
  .model-2 li .cmp-card-tile-grid__text {
    padding-right: 48px;
  }
  .model-3 {
    margin-bottom: 40px;
  }
  .model-3 .box .left .text {
    margin-bottom: 30px;
  }
  .i-category {
    margin-bottom: 0px;
  }
  .i-category .list > ul li .content {
    padding: 40px;
  }
  .i-category .productBot .swiper ul li .textBg{
    padding: 20px;
    height: 100px;
  }
  .our-news {
    margin-bottom: 40px;
  }
  .our-news .right {
    padding: 40px;
  }
  .our-news .right .name {
    font-size: 28px;
    min-height: 7em;
  }
  .our-about {
    margin-bottom: 40px;
  }
  .our-about .box{
    width: 100%;
    padding: 0 15px;
  }
  .module-footer-bottom__primary img {
    height: 14px;
  }
  #footer {
    padding: 40px 0;
  }
  #footer .foot-content .foot-block .text {
    margin: 20px 0 30px;
        display: none !important;
  }
  .module-footer-bottom__primary p.font-16.footws {
    display: none !important;
}
  #footer .foot-content .foot-block {
    width: 100%;
  }
  #footer .form form {
    grid-template-columns: repeat(4, 1fr);
  }
  #footer .form input[name="name"],
  #footer .form input[name="mail"] {
    grid-column: 1 / span 4;
  }
  #footer .form input[name="content"] {
    grid-column: 1 / span 4;
  }
  #footer .form input[type="submit"] {
    grid-column: 1 / span 4;
  }
  #footer .container {
    margin: 0 20px;
  }
  .hide-768 {
    display: none!important;
  }
}
@media (max-width: 700px) {
  #banner h2 {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 15px;
  }

  .baseTit .Tit {
   font-size: 20px;
    line-height: 34px;
    display: none;
  }

  .font-20 {
    font-size: 16px;
    line-height: 30px;
  }

  .font-18 {
    font-size: 14px;
    line-height: 28px;
  }

  .font-16 {
    font-size: 16px;
    line-height: 30px;
    overflow: auto;
    max-height: 450px;
  }
  .inner-banner{
    height: 200px!important;
  }
}
@media (max-width: 500px){
      .model-2 li {
        width: 250px;
    }
    .model-3{
      margin-bottom: 0;
    }
}




.inner-banner {
  position: relative;
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.inner-banner .baseTit .Tit {
  color: white;
}
.inner-banner .box {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inner-banner .box .mbx {
  color: #FFFFFF;
  line-height: 30px;
}





.more {
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  height: 65px;
  line-height: 61px;
  background-color: var(--color);
  color: white;
  position: relative;
  z-index: 1;
  padding: 0 45px;
  overflow: hidden;
  font-weight: 600;
}
.more::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 0;
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #222;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.more:hover::after {
  width: 100%;
}



 
.product2-page .product-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.product2-page .product-list ul li {
  padding: 0 10px;
  margin-bottom: 37px;
}
.product2-page .product-list ul li .img {
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  transition: all 1.2s ease;
  background: #f7f7f7;
  position: relative;
}
.product2-page .product-list ul li .img img {
  width: 100%;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.product2-page .product-list ul li .img img.yin {
  position: absolute;
  left: 0;
  opacity: 0;
}
.product2-page .product-list ul li .img:hover img {
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.product2-page .product-list ul li .text .btm .slick-slide img {
  padding: 5px;
}
.product2-page .product-list ul li.wid-100 {
  width: 100%;
}
.product2-page .product-list ul li .pro-box .imgbox img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.product2-page .product-list ul li .pro-box .btm .tupianji .slick-list.draggable .slick-slide:last-child {
  display: none;
}
.product2-page .product-list ul li .pro-box .btm .tupianji img {
  max-height: 145px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product2-page .product-list ul li .text {
  /*background: #f7f7f7;*/
  margin-top: 0;
  padding: 10px;
}
.product2-page .product-list ul li .text .neirong p {
  font-size: 14px;
  color: #aaa;
  text-transform: lowercase;
  font-weight: 300;
}
.product2-page .product-list ul li .text h2 {
  font-weight: bold;
  margin-top: 10px;
  line-height: 30px;
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
   -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
/*.product2-page .product-list ul li:hover .text h2{
  color: var(--color);
}*/
.product2-page .product-list ul li .img img.yin {
  position: absolute;
  left: 0;
  opacity: 0;
}
.product2-page .product-list ul li:hover .img img.yin {
  opacity: 1;
}
.inner-page .sidebar-box .sidebar-left {
  width: 28%;
   position: sticky;
  top: 100px;
  padding-right: 45px;
}
.inner-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 2;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search-icon.png) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
  /*max-height: 3300px;
  overflow-y: auto;*/
  padding-right: 5px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  padding: 8px 0;
  font-size: 16px;
  /*font-weight: bold;*/
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  line-height: 2;
  word-break: break-word;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i{
  float: right;
  position: relative;
  top: 1px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover,
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > a {
  color: var(--color);
}
 
/*.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol{
  display: none;
}*/
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > ol{
  display: block;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li {
  /*list-style-type: disc;*/
  margin-left: 10px;
  color: #7b7b7b;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li a {
  font-size: 16px;
  line-height: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 15px 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 2;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  /*font-weight: bold;*/
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  margin-bottom: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(../images/ny-bg.jpg) no-repeat center center;
  padding: 170px 40px 30px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 20px;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  display: block;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact .baseBtn {
  min-width: auto;
}

.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.inner-page.product2-page .sidebar-left {
  padding-right: 45px;
}
.product2-page .sidebar-right h1{
  margin-bottom: 50px;
    font-size: 30px;
    line-height: 1.6;
    color: var(--color);
    font-weight: 700; 
}
.product2-page .sidebar-right .Auxil-catdes{
    color: #7b7b7b;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 18px;
    max-height: 300px;
    overflow: auto;
}
.inner-page .m-page {
  text-align: center;
  margin-top: 60px;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  display: inline-block;
  margin-right: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background: var(--color);
  color: white;
}

@media screen and (max-width: 1000px) {
  .inner-page .sidebar-box .sidebar-left,
  .inner-page.product2-page .sidebar-left{
    display: none;
  }
  .Auxil-catdes{
        /*display: none;*/
  }
  .inner-page .sidebar-box .sidebar-right,
  .inner-page .sidebar-box .sidebar-right{
    width: 100%;
  }
}


.service-page {
  padding: 100px 0;
}
.service-page .service-1 {
  padding-bottom: 100px;
}
.service-page .service-1 #index-body .about {
  padding: 0;
}

.service-page .service-1 #index-body .about + .about {
  margin-top: 60px;
}

.service-page .service-1 #index-body .about .top {
  display: flex;
  flex-wrap: wrap;
}

.service-page .service-1 #index-body .about:nth-child(even) .top {
  flex-direction: row-reverse;
}

.service-page .service-1 #index-body .about:nth-child(even) .top .text {
  padding-right: 0;
  padding-left: 5%;
}

.service-page .service-1 #index-body .about .top .text h2.title {
   margin-bottom: 40px;
  line-height: 1.4;
}
.service-page .service-1 #index-body .about .top .text h3 {
  font-size: 22px;
  line-height: 1.6;
  color: #181818;
  font-weight: 400;
  margin-top: 32px;
}
.service-page .service-1 #index-body .about .top .text p {
  font-size: 16px;
  line-height: 30px;
  color: #7b7b7b;
}

.service-page .service-1 #index-body .about .top .img .i2 {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  z-index: 1;
}
.service-page .service-2 {
  background: #fff;
  padding: 120px 0 0;
}
.service-page .service-2 .header {
  width: 70%;
  margin: 0 auto;
}
.service-page .service-2 .header .title{
  line-height: 1.2;
  margin-top: 12px;
}
.service-page .service-2 .content {
  margin-top: 80px;
}
.service-page .service-2 .content ul {
  margin-right: -30px;
}
.service-page .service-2 .content ul li {
  padding-right: 30px;
}
.service-page .service-2 .content ul li .ig {
  text-align: center;
}
.service-page .service-2 .content ul li .ig .img-box {
  display: block;
  width: 60%;
  margin: 0 auto;
  border-radius: 50%;
}
.service-page .service-2 .content ul li .ig .text {
  padding-top: 28px;
}
.service-page .service-2 .content ul li .ig .text span {
  font-size: 17px;
  color: #83827F;
  line-height: 1.6;
  text-transform: uppercase;
}
.service-page .service-2 .content ul li .ig .text h3 {
  font-size: 24px;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: bold;
}
.service-page .service-2 .content ul li .ig .text p {
  font-size: 16px;
  line-height: 30px;
  color: #83827F;
  margin-top: 10px;
}
.service-page .service-2 .content ul li .ig .text .mores {
  width: 47px;
  height: 47px;
  line-height: 45px;
  text-align: center;
  background: #fff;
  border: 1px solid #d1d0c8;
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 25px;
  display: inline-block;
}
.service-page .service-2 .content ul li .ig .text .mores img {
  display: inline-block;
  vertical-align: middle;
}
.service-page .service-2 .content ul li .ig .text .mores:hover {
  background: var(--color);
  border-color: var(--color);
}
.service-page #index-body .init1 h3 {
  width: 46%;
}
.service-page #index-body .rate {
  padding: 100px 0 30px;
}
.service-page #index-body .rate .content{
  margin-top: 50px;
}
.service-page #index-body .rate .content ul{
  margin: -15px;
}
.service-page #index-body .rate .content ul li{
  padding: 15px;
}
.service-page #index-body .rate .content ul li .box{
  background: #f2f2f2;
    padding: 30px;
    min-height: 300px;
}

.service-page #index-body .rate .content ul li .box .title{
  display: block;
  font-weight: bold;
  font-size: 26px;
  margin-top: 15px;
}
.service-page #index-body .rate .content ul li .box .desc{
  font-size: 18px;
  line-height: 32px;
  margin-top: 20px;
  color: #7b7b7b;
}
.service-page .service-3 {
  padding: 120px 0;
}
.service-page .service-3 .top .img {
  vertical-align: middle;
}
.service-page .service-3 .top .img .info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 70px;
  width: 100%;
}
.service-page .service-3 .top .img img {
  width: 48.2%;
  margin-right: 20px;
}
.service-page .service-3 .top .img img:last-child {
  margin: 0 0 0 20px;
}
.service-page .service-3 .top .text {
  padding-left: 48px;
  vertical-align: middle;
}
.service-page .service-3 .top .text .box {
  width: 80%;
}
.service-page .service-3 .top .text .box h2.title {
  line-height: 1.2;
  width: 90%;
}
.service-page .service-3 .top .text .box p {
  font-size: 17px;
  line-height: 1.8;
  color: #83827F;
  margin-top: 20px;
}
.service-page .service-3 .top .text .box .more {
  padding: 21px 29px 20px 28px;
  margin-top: 45px;
}
.service-page .service-3 .bottom {
  padding-top: 120px;
}
.service-page .service-3 .bottom ul {
  margin-right: -60px;
}
.service-page .service-3 .bottom ul li {
  text-align: center;
  padding-right: 60px;
}
.service-page .service-3 .bottom ul li i {
  display: inline-block;
  height: 69px;
}
.service-page .service-3 .bottom ul li i img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-3 .bottom ul li i:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.service-page .service-3 .bottom ul li .text {
  padding-top: 21px;
}
.service-page .service-3 .bottom ul li .text h3 {
  font-size: 26px;
  line-height: 1.1;
}
.service-page .service-3 .bottom ul li .text p {
  font-size: 17px;
  line-height: 1.6;
  color: #83827F;
  margin-top: 20px;
}
.service-page .service-3 .bottom ul li .text .mores {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  overflow: hidden;
}
.service-page .service-3 .bottom ul li .text .mores span {
  margin-top: 5px;
  position: relative;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-indent: -110px;
  visibility: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  will-change: visibility, margin-right, text-indent, opacity;
}
.service-page .service-3 .bottom ul li .text .mores em {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  line-height: 21px;
}
.service-page .service-3 .bottom ul li .text .mores em img {
  display: inline-block;
  vertical-align: middle;
}
.service-page .service-3 .bottom ul li .text .mores:hover span {
  opacity: 1;
  text-indent: 0;
  margin-right: 6px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}
#index-body .about .top .text {
    
    vertical-align: middle;
    padding-right: 5%;
}
#index-body .about .top .text .btn a.link {
    display: inline-block;
    vertical-align: top;
    margin-left: 35px;
}
#index-body .about .top .text .btn a.link em {
    display: inline-block;
    padding: 22px;
    background: var(--color);
}
 
#index-body .about .top .text .btn a.link span {
    display: inline-block;
    font-size: 20px;
    line-height: 36px;
    padding-left: 5px;
}
#index-body .about .top .text .btn {
    margin-top: 37px;
}
#index-body .init1 {
    background: var(--color);
    padding: 60px 0 68px;
}
#index-body .init1 .info {
    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;
}
.service-page #index-body .init1 h3 {
width: 55%;
    color: #fff;
        font-size: 34px;
    line-height: 1.4;
    font-weight: 600;
}
.service-page #index-body .init1 .more{
  background: white;
  color: black;
}
.service-page #index-body .init1 .more:hover{
  color: white;
}
@media screen and (max-width: 1680px) {
  .service-page .service-3 .top .text .box h2.title {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .service-page {
    padding: 100px 0;
  }
  .service-page .service-1 {
    padding-bottom: 60px;
  }
   
  .service-page .service-2 {
    padding: 100px 0;
  }
  .service-page .service-3 .top .img {
    width: 55%;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 40px;
  }
  .service-page .service-3 .top .text {
    width: 45%;
  }
  .service-page .service-3 .top .text .box {
    width: 100%;
  }
  .service-page .service-3 {
    padding: 100px 0;
  }
  .service-page .service-3 .bottom {
    padding-top: 100px;
  }
  .service-page #index-body .rate .content ul li .box .title{
    font-size: 20px;
    line-height: 36px;
  }
  .service-page #index-body .rate .content ul li .box .desc{
    min-height: 162px;
  }
  
}
@media screen and (max-width: 1280px) {
   
  #index-body .about .top .text {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .service-page .service-1 #index-body .about .top .img {
    padding: 0 0 50px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .service-page {
    padding: 60px 0;
  }
  #index-body .init1 .info{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page #index-body .init1 h3{
    width: 100%;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .service-page .service-1 #index-body .about .top .text {
    padding-right: 0;
    width: 100%;
  }
  .service-page .service-1 #index-body .about .top .img{
    width: 100%;
    margin-top: 25px;
  }
  .service-page .service-1 {
    padding-bottom: 60px;
  }
  .service-page .service-2 {
    padding: 60px 0;
  }
  .service-page .service-2 .content ul li .ig .text h3 {
    min-height: 60px;
  }
  .service-page .service-3 {
    padding: 60px 0;
  }
  .service-page .service-3 .top .img {
    width: 100%;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 40px 0 20px;
  }
  .service-page .service-3 .top .text {
    width: 100%;
    padding: 20px 20px 0;
  }
  .service-page .service-3 .bottom {
    padding-top: 60px;
  }
  .service-page .service-3 .bottom ul {
    margin-right: -20px;
  }
  .service-page .service-3 .bottom ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .service-page {
    padding: 30px 0;
  }
  
  .service-page .service-1 #index-body .about .top .text h3 {
    margin-top: 12px;
  }
  .service-page .service-1 {
    padding-bottom: 30px;
  }
  .service-page .service-2 {
    padding: 30px 0;
  }
  .service-page .service-2 .header {
    width: 100%;
  }
  .service-page .service-2 .content {
    margin-top: 20px;
  }
  .service-page .service-2 .content ul {
    margin-right: -15px;
  }
  .service-page .service-2 .content ul li {
    padding-right: 15px;
  }
  .service-page .service-2 .content ul li .ig .text {
    padding-top: 14px;
  }
  .service-page .service-2 .content ul li .ig .text span {
    font-size: 15px;
  }
  .service-page .service-2 .content ul li .ig .text h3 {
    font-size: 24px;
    line-height: 1.6;
  }

  .service-page .service-3 .top .text .box .more {
    margin-top: 20px;
  }
  .service-page .service-3 .bottom {
    padding-top: 30px;
  }
  .service-page .service-3 .bottom ul li .text h3 {
    font-size: 20px;
  }
  .service-page .service-3 .bottom ul li .text p {
    font-size: 15px;
  }
  .service-page .service-3 .bottom ul {
    margin-bottom: -20px;
  }
  .service-page .service-3 .bottom ul li {
    padding-bottom: 20px;
  }
  .service-page .service-3 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 500px) {
   

  .service-page #index-body .about .top .text .btn a.link {
    display: block;
    margin: 10px 0 0 0;
  }
  .service-page .service-3 .top .text .box p {
    font-size: 15px;
    line-height: 30px;
  }
  .service-page .service-3 .top .text .box .more {
    padding: 12px 18px;
  }
  #index-body .about .top .text .btn a.link em {
    padding: 10px;
  }
  .service-page .service-3 .top .img img {
    margin-right: 10px;
    width: 49.5%;
  }
  .service-page .service-3 .top .img img:last-child {
    margin: 0 0 0 10px;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 30px 0 20px;
  }
    .yejiao{
    display: none!important;
  }
  .chanpyexinwen{
    min-height: 4em;
  }

  .product2-page .sidebar-right h1{
    font-size: 20px;
line-height: 36px;
  }
  .jtchanpyexinwen{
    min-height: 5.8em!important;
  }
}
.jtchanpyexinwen{
  min-height: 4em;
}
.faq-page .marginBox {
  padding: 0px 0 100px;
  text-align: center;
}
.faq-page .marginBox .h2{
  line-height: 1.2;
  margin-top: 12px;
}
.faq-page .marginBox .box {
  text-align: left;
}
.faq-page .marginBox .box .left {
  width: 40%;
}
.faq-page .marginBox .box .left .box2 {
  padding: 50px 35px;
  background: #f7f7f7;
}
.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}
.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 1.8em;
  display: block;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #8e8e8e;
  margin-bottom: 1em;
  line-height: 32px;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li ul {
  display: none !important;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li:last-child {
  margin-bottom: 0;
}
.faq-page .marginBox .box .right {
  width: 60%;
  padding-left: 3%;
}
.faq-page .marginBox .box .right .list ul li {
  margin-bottom: 20px;
  padding: 15px;
  background: #f7f7f7;
  border: 1px solid #bfbfbf;
}
.faq-page .marginBox .box .right .list ul li span.title {
  font-weight: bold;
font-size: 18px;
line-height: 32px;
  color: #242424;
  text-align: right;
  display: block;
  position: relative;
  padding-left: 25px;
}
.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 5px;
  cursor: pointer;
  cursor: hand;
}
.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
  content: '';
  background: black;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .marginBox .box .right .list ul li span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .marginBox .box .right .list ul li .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 32px;
  margin: 30px 0;
  display: none;
}
.faq-page .marginBox .box .right .list ul li.active {
  background: white;
}
.faq-page .marginBox .box .right .list ul li.active span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.faq-page .marginBox .box .right .list ul li:last-child {
  margin-bottom: 0;
}

.video-page .video-1 {
  padding: 38px 0 90px;
  background: #f6f6f6;
}
.video-page .video-1 .tag,
.video-page .video-2 .tag{
  color: var(--color);
}
.video-page .video-1 .header h2.title {
  margin-top: 14px;
  line-height: 1.2;
}
.video-page .video-1 .content {
  margin-top: 40px;
}
.video-page .video-1 .content ul {
  margin: -10px -12px;
}
.video-page .video-1 .content ul li {
  padding: 10px 12px;
}
.video-page .video-1 .content ul li .ig {
  display: block;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  background-color: #fff;
  padding: 14px;
}
.video-page .video-1 .content ul li .ig video {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-page .video-2 {
  padding: 93px 0 107px;
}
.video-page .video-2 .header h2.title {
  margin-top: 14px;
}
.video-page .video-2 .content {
  margin-top: 57px;
}
.video-page .video-2 .content ul {
  margin: 0 -26px -25px 0;
}
.video-page .video-2 .content ul li {
  padding: 0 26px 25px 0;
}
.video-page .video-2 .content ul li .ig {
  background: #eee;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  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;
}
.video-page .video-2 .content ul li .ig span {
  display: inline-block;
}
.video-page .video-2 .content ul li .ig .fl {
  padding: 0 15px;
  width: 75%;
}
.video-page .video-2 .content ul li .ig .fr {
  width: 150px;
  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;
}
.video-page .video-2 .content ul li .ig .fr img {
  margin-right: 15px;
}
.video-page .video-2 .content ul li .ig:hover {
  background: var(--color);
  color: white;
}
.video-page .video-2 .content ul li .ig:hover .fr img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1280px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 70%;
  }
}
@media screen and (max-width: 1100px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 68%;
  }
  .faq-page .marginBox .box .left{
    display: none;
  }
  .faq-page .marginBox .box .right{
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .video-page .video-1 {
    padding: 38px 0 60px;
  }
  .video-page .video-1 .content ul li {
    width: 50%;
  }
  .video-page .video-2 .content ul li {
    width: 100%;
  }
  .video-page .video-2 {
    padding: 60px 0;
  }
  .video-page .video-2 .content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .video-page .video-1 {
    padding: 30px 0;
  }
  .video-page .video-1 .content ul li {
    width: 100%;
  }
  .video-page .video-2 .content ul li .ig {
    font-size: 16px;
    height: auto;
    line-height: 30px;
    padding: 10px 0;
  }
  .video-page .video-2 .content ul li .ig .fl {
    width: 100%;
  }
  .video-page .video-2 .content ul li .ig .fr {
    width: 100%;
    padding: 10px 0 0 15px;
  }
}

.news-page .sidebar-right ul{
  margin: -15px;
}
.news-page .sidebar-right ul li{
  padding: 15px;
}
.news-page .sidebar-right ul li .cat_name{
      background-color: #262626;
    display: inline-block;
    color: white;
    font-size: 14px;
    line-height: 2;
    padding: 8px 18px 7px 17px;
    margin-top: 20px;
}
.news-page .sidebar-right ul li .title{
      font-size: 20px;
      font-weight: 600;
    line-height: 36px;
    margin-top: 21px; 
    min-height: 5.6em;
}
.news-page .sidebar-right ul li .des{
      font-size: 16px;
    color: #000;
    line-height: 30px;
    margin-top: 6px;
}
.news-page .sidebar-right ul li .time{
      font-size: 16px;
    line-height: 30px;
    color: var(--color);
    display: inline-block;
    margin-top: 2px;
}

.newdet-page .header {
  background: #fff;
  margin: 0 auto;
  text-align: center;
}
.newdet-page .header .categoty {
  display: inline-block;
    font-size: 16px;
    color: #fff;
    background: var(--color);
    padding: 5px 15px;
  text-transform: uppercase;
}
.newdet-page .header h1 {
  font-size: 48px;
  line-height: 1.4;
  margin: 20px 71px 0;
}
.newdet-page .header .post_meta {
  margin-top: 26px;
}
.newdet-page .header .post_meta span {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author_avatar {
  margin-right: 11px;
}
.newdet-page .header .post_meta .photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.newdet-page .header .post_meta .post_author_name {
  font-size: 16px;
  line-height: 1;
}
.newdet-page .header .post_meta .post_author {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background:#7b7b7b;
  border-radius: 50%;
  margin: 0 10px 0;
}
.newdet-page .header .post_meta .post_date {
    font-size: 16px;
    color: #7b7b7b;
}

.newdet-page .header .post_meta .post_meta_number {
  font-size: 14px;
  color: #83827F;
}
.newdet-page .content {
  margin-top: 40px;
  font-size: 18px;
  line-height: 32px;
  color: #7b7b7b;
}
.newdet-page .share {
  max-width: 1520px;
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0;
  border-top: 1px solid #d1d0c8;
  border-bottom: 1px solid #d1d0c8;
  text-align: right;
}
.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  background: #fff;
  margin: 3px 0 3px 7px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.newdet-page .share a:first-child {
  margin-left: 0;
}
.newdet-page .share a:nth-child(1) {
  background: #48bde9;
  color: #fff;
}
.newdet-page .share a:nth-child(2) {
  background: #4f5fbf;
  color: #fff;
}
.newdet-page .share a:nth-child(3) {
  background: #7a7e83;
  color: #fff;
}
.newdet-page .share a:nth-child(4) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:nth-child(5) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:hover {
  margin-top: -3px;
}
.newdet-page .m-link {
  /*max-width: 1060px;*/
  margin: 40px auto 0;
}
.newdet-page .m-link a {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .m-link a em {
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #7b7b7b;
}
.newdet-page .m-link a:first-child i {
  margin-right: 10px;
}
.newdet-page .m-link a:last-child {
  text-align: right;
}
.newdet-page .m-link a:last-child i {
  margin-left: 10px;
}
.newdet-page .m-link a span {
    font-size: 18px;
    line-height: 32px;
  font-weight: bold;
}
.newdet-page .m-link a:hover {
  color: #000;
}
.newdet-page .prodet-page {
  padding: 0;
}
.newdet-page .prodet-2 {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
}
.newdet-page .prodet-2 .ret .slide .con .right {
  padding: 0;
}

@media screen and (max-width: 1100px) {
  .newdet-page .header h1 {
    font-size: 50px;
    margin: 20px 40px 0;
  }
}
@media screen and (max-width: 1000px) {
  .newdet-page {
    padding: 60px 0;
  }
  .newdet-page .header h1 {
    font-size: 40px;
    margin: 20px 27px 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page {
    padding: 30px 0;
  }
  .newdet-page .header {
    padding: 30px 20px;
  }
  .newdet-page .header h1 {
    font-size: 34px;
    margin: 20px 20px 0;
  }
  .newdet-page .content {
    margin-top: 20px;
  }
  .newdet-page .share {
    margin: 20px auto 0;
  }
  .newdet-page .m-lin {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .header h1 {
    font-size: 24px;
    line-height: 44px;
    margin: 20px 0px 0;
  }
  .newdet-page .content {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .m-link a {
    display: block;
    width: 100%;
  }
  .newdet-page .m-link a:last-child {
    text-align: left;
    margin-top: 20px;
  }
}



.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li a{
  display: block; 
  background: white;
}

.contact-page {
  padding-top: 100px;
  padding-bottom: 30px;
}
.contact-page .contact-1 .left form ul {
  margin: 0 -30px -37px 0;
}
.contact-page .contact-1 .left form ul li {
  padding: 0 30px 37px 0;
}
.contact-page .contact-1 .left form ul li .box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d1d0c8;
}
.contact-page .contact-1 .left form ul li .box input,
.contact-page .contact-1 .left form ul li .box textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0 13px 36px;
  font-size: 16px;
  line-height: 30px;
  color: #7b7b7b;
}
.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder, .contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input:-moz-placeholder, .contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input::-moz-placeholder, .contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder, .contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input::placeholder,
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box i {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 20px;
}
.contact-page .contact-1 .left form ul li .box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .left form ul li .more {
   padding: 0;
  vertical-align: middle;
}
.contact-page .contact-1 .left form ul li .more i {
  margin-right: 6px;
  display: inline-block;
}
.contact-page .contact-1 .left form ul li .more input[type="submit"]{
  background: transparent;
  border: none;
  width: 100%;
  padding: 0 40px;
}
.contact-page .contact-1 .left form ul li p {
  display: inline-block;
  vertical-align: middle;
  padding-left: 26px;
  font-size: 14px;
  line-height: 28px;
  color: #83827F;
}
.contact-page .contact-1 .left form ul li p span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}
.contact-page .contact-1 .left form ul li:hover .box::before,
.contact-page .contact-1 .left form ul li.active .box::before {
  width: 100%;
}
.contact-page .contact-1 .left form ul li.wid-100 {
  width: 100% !important;
}
.contact-page .contact-1 .right {
  padding-left: 7.65%;
}
.contact-page .contact-1 .right .title{
  line-height: 1.2;
}
.contact-page .contact-1 .right p {
font-size: 16px;
line-height: 30px;
  color: #83827F;
  margin-top: 7px;
}
.contact-page .contact-1 .right .list {
  margin-top: 22px;
}
.contact-page .contact-1 .right .list ul li {
  color: #83827F;
font-size: 16px;
line-height: 30px;
  margin-bottom: 10px;
}
.contact-page .contact-1 .right .list ul li i {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  width: 20px;
  text-align: center;
  margin-top: 5px;
}
.contact-page .contact-1 .right .list ul li span {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  padding-left: 20px;
}
.contact-page .contact-1 .right .list ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-2 {
  /*padding: 120px 0;*/
}
.contact-page .contact-2 #mapContainer {
  height: 520px;
}
@media screen and (max-width: 1280px) {
  .contact-page .contact-1 .right {
    padding-left: 5.65%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page {
    padding-top: 60px;
  }
  .contact-page .contact-1 .left {
    width: 100%;
  }
  .contact-page .contact-1 .right {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .contact-page .contact-2 {
    /*padding: 60px 0;*/
  }
  .contact-page .contact-2 #mapContainer {
    height: 360px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page {
    padding-top: 30px;
  }
  .contact-page .contact-1 .left form ul li .more {
    padding: 18px 20px;
  }
  .contact-page .contact-2 {
    /*padding-top: 30px;*/
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 .left form ul li .more {
    padding: 2px 12px;
  }
  .contact-page .contact-1 .left form ul li p {
    display: block;
    padding: 10px 0 0 0;
  }
  .contact-page .contact-1 .left form ul {
    margin-bottom: -20px;
  }
  .contact-page .contact-1 .left form ul li {
    padding-bottom: 20px;
  }
  .contact-page .contact-1 .left form ul li .box input,
  .contact-page .contact-1 .left form ul li .box textarea {
    padding: 10px 0 10px 36px;
  }
  .contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-page .contact-1 .right .list ul li {
    font-size: 16px;
  }
  .contact-page .contact-2 #mapContainer {
    height: 260px;
  }
}


.design-page .design-1 .ui.container{
  max-width: 100%;
  padding: 0 100px;
}
.design-page .design-2 {
  padding: 140px 0 110px;
}
.design-page .design-2 .i-title{
  margin-bottom: 105px;
}
.design-page .design-2 .left .img{
  text-align: right;
}
.design-page .design-2 .right{
  padding-left: 90px;
}
.design-page .design-2 .right .txt{
  font-size: 16px;
  line-height: 36px;
  color: #000;
  margin-top: 70px;
}
.design-page .design-3{
  padding-bottom: 120px;
}
.design-page .design-3 .i-title{
  margin-bottom: 48px;
}
.design-page .design-3 ul {
  margin: -40px;
}
.design-page .design-3 ul li{
  padding: 40px;
}
.design-page .design-3 ul .slick-list{
  padding: 0 28%;
}
.design-page .design-3 ul li .box{
  position: relative;
}
.design-page .design-3 ul li .box img{
  width: 100%;
}
.design-page .design-3 ul li .content{
  /*width: 100%;*/
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: white;
  /*position: absolute;
  left: 0;
  bottom: 18%;*/
  padding: 20px;
  opacity: 1;
}
.design-page .design-3 ul li .content h4{
  font-weight: 600;
  font-size: 30px;
}
.design-page .design-3 ul li .content p{
  font-size: 18px;
  font-weight: bold;
}
.design-page .design-3 ul li .text {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 65%;
  padding: 15px;
  background-color: #fff;
  opacity: 0;
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.design-page .design-3 ul li:hover .text{
  opacity: 1;
}

.design-page .design-3 ul .slick-dots{
  margin: 0;
  text-align: center;
}
.design-page .design-3 ul .slick-dots li{
  padding: 0;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #e5e5e5;
  display: inline-block;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.design-page .design-3 ul .slick-dots li button{
  display: none;
}
.design-page .design-3 ul .slick-dots li.slick-active{
  background: var(--color);
}
.design-page .design-4{
  background: url(../images/design-4-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
  padding: 107px 0 70px;
  background-attachment: fixed;
}
.design-page .design-4 .left{
  position: sticky;
  top: 170px;
}
.design-page .design-4 .left .Tit {
  color: white;
}
.design-page .design-4 .right{
  padding-left: 90px;
}

.design-page .design-4 .right ul li{
  padding-left: 140px;
  position: relative;
  padding-bottom: 100px;
}
.design-page .design-4 .right ul li .icon{
  width: 77px;
  height: 77px;
  border-radius: 100%;
  background: white;
  text-align: center;
  line-height: 77px;
  position: absolute;
  left: 0;
  top: 0;
}
.design-page .design-4 .right ul li .icon img{
  vertical-align: middle;
}
.design-page .design-4 .right ul li .icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 130%;
  width: 1px;
  height: 262%;
  background: rgba(255,255,255,0.3);
}
.design-page .design-4 .right ul li:last-child .icon::after{
  content: none;
}
.design-page .design-4 .right ul li h4{
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
}
.design-page .design-4 .right ul li .des{
  font-size: 16px;
  line-height: 32px;
  margin-top: 14px;
}
.design-page .design-5 .ui.container{
  max-width: 100%;
  padding-left: 13%;
  padding-right: 0;
}
.design-page .design-5{
  padding: 130px 0 110px;
}
.design-page .design-5 .i-title{
  line-height: 1.2;
}
.design-page .design-5 .wrap{
  padding-left: 0%;
  margin-top: 70px;
}
.design-page .design-5 .wrap .left{
  width: 35.3%;
}
.design-page .design-5 .wrap .left .txt{
  font-size: 16px;
  line-height: 36px;
  color: #000;
  margin-bottom: 45px;
}
.design-page .design-5 .wrap .left img{
  width: 100%;
}
.design-page .design-5 .wrap .right{
  width: 64.7%;
  padding-left: 115px;
}
@media screen and (max-width:1600px){
  .design-page .design-5 .ui.container{
    padding-left: 7%;
  }
  .design-page .design-5 .wrap{
    padding-left: 10%;
  }
}
@media screen and (max-width:1450px){
  .design-page .design-4 .right{
    padding-left: 30px;
  }
  .design-page .design-5 .wrap{
    padding-left: 0;
  }
}
@media screen and (max-width:1200px){
  .design-page .design-2 .right{
    padding-left: 50px;
  }
  .design-page .design-3 ul li{
    padding: 20px;
  }
  .design-page .design-3 ul {
    margin: -20px;
  }
  .design-page .design-3 ul li .content h4{
    font-size: 18px;
  }
  .design-page .design-4 .right ul li{
    padding-left: 105px;
    padding-bottom: 40px;
  }
  .design-page .design-4 .right ul li .icon:after{
    height: 225%;
  }
  .design-page .design-5 .wrap .right{
    padding-left: 50px;
  }
}
@media screen and (max-width:1000px){
  .design-page .design-1 .ui.container{
    padding: 0 20px;
  }
  .design-page .design-2{
    padding: 60px 0 65px;
  }
  .design-page .design-3 ul .slick-list{
    padding: 0 18%;
  }
  .design-page .design-4 .left{
    position: relative;
    top: 0;
  }
  .design-page .design-4 .right{
    width: 100%;
    margin-top: 20px;
  }
  .design-page .design-5{
    padding: 55px 0 50px;
  }
  .design-page .design-5 .wrap .left{
    width: 100%;
  }
  .design-page .design-5 .wrap .right{
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .design-page .design-5 .ui.container{
    padding: 0 15px;
  }
}
@media screen and (max-width:700px){
  .design-page .design-2 .right{
    width: 100%;
    padding-left: 0;
    margin-top: 25px;
  }
  .design-page .design-2 .left{
    width: 100%;
  }
  .design-page .design-2 .i-title{
    margin-bottom: 30px;
  }
  .design-page .design-3 ul .slick-list{
    padding: 0;
  }
  .design-page .design-3 {
    padding: 0 15px 50px;
  }
  .design-page .design-4 .right{
    padding-left: 0;
  }
}
@media screen and (max-width:500px){
  .design-page .design-4 .right ul li{
    padding-left: 0;
  }
  .design-page .design-4 .right ul li .icon{
    position: relative;
    margin-bottom: 12px;
  }
  .design-page .design-4 .right ul li .icon::after{
    content: none;
  }
}




.pb-150 {
    padding-bottom: 150px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-70 {
    padding-bottom: 70px;
}

.font-60 {
    font-size: 60px;
}


.font-200 {
    font-size: 200px;
}




.about-page .about-4 .baseTit .Tit {
  color: white;
}

.about-page .about-4 .box {
    background: var(--color);
}
.about-page .about-4 .box .left {
    vertical-align: middle;
    color: var(--white);
    padding-left: 80px;
}
.about-page .about-4 .box .left .tit {
    font-size: 36px;
    line-height: 1.3;

    /*font-weight: bold;*/
}
.about-page .about-4 .box .left .con {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 26px;
    width: 76%;
}
.about-page .about-4 .box .left .more {
    background: var(--white);
    color: var(--color);
    margin-top: 72px;
}
.about-page .about-4 .box .left .more::after {
    background: var(--black);
}
.about-page .about-4 .box .left .more:hover {
    color: var(--white);
}
.about-page .about-4 .box .right {
    vertical-align: middle;
}
.about-page .about-4 .box .right ul {
    max-width: 602px;
    margin: 0 0 0 auto;
}
.about-page .about-4 .box .right ul li {
    line-height: 234px;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-4 .box .right ul li img {
    display: inline-block;
    vertical-align: middle;
}
.about-page .about-4 .box .right ul li:first-child,
.about-page .about-4 .box .right ul li:last-child {
    background-color: var(--color);
}
.about-page .about-4 .box .right ul li:hover {
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.23);
}


.about-page .about-1 {
    padding: 90px 0;
}
.about-page .about-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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.about-page .about-1 .left {
    padding-right: 5%;
}
.about-page .about-1 .left h3 {
    line-height: 1.5;
    color: #000;
    margin-top: 20px;
	font-size: 30px;
    /*font-weight: bold;*/
        
    margin-bottom: 15px;
    /*text-transform: uppercase;*/
}
.about-page .about-1 .left .content p {
      line-height: 1.8;
    max-height: 28em;
    padding-right: 15px;
    /*overflow-y: scroll;*/
     margin-bottom: 30px; 
}
.about-page .about-1 .container .right video{
    display: block;
    width: 100%;
}

.about-page .about-1.row .container {
  flex-direction: row-reverse;
}

.about-page .about-1.row .left {
  padding-right: 0;
  padding-left: 5%;
}

.about-page .about-2 {
    padding: 40px;
}
.about-page .about-2 {
    text-align: left;
}
.about-page .about-2 .culturebox {
    background: url(../images/banner.jpg)no-repeat center;
    background-size: cover;
    margin-top: 25px;
}
.about-page .about-2 .culturebox ul li .item {
    height: 600px;
    color: #fff;
    position: relative;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 200px;
    z-index: 3;
    overflow: hidden;

}
.about-page .about-2 .culturebox ul li .item:before{
    content:"";
       background: var(--color);
    opacity: .8;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
    transition: .3s all;
    z-index: -1;
}
.about-page .about-2 .culturebox ul li .item:hover:before{
    transition: 0.3s all;
    top: 0;

}
.about-page .about-2 .culturebox ul li .item h5 {
    font-weight: 600;
    margin-bottom: 20px;
}
.about-page .about-2 .culturebox ul li .item p {
    color: rgba(255, 255, 255, 1);
    line-height: 2;
}
.about-page .about-3 {
    padding: 150px 0;
}
.about-page .about-3 .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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.about-page .about-3 .container .left {
    padding-left: 65px;
}
.about-page .about-3 .container .left .yearbox {
    height: 750px;
    overflow: hidden;
    position: relative;
}
.about-page .about-3 .container .left .yearbox svg {
    position: absolute;
    right: 45px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: 999;
    /*border: 2px solid #eee;*/
    border-radius: 100%;
}
.about-page .about-3 .container .left .yearbox svg path {
    fill: none;
    stroke: var(--color);
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
    stroke-dasharray: 0,800;
    stroke-dashoffset: 0;
}
.about-page .about-3 .container .left .yearbox ul li {
    height: 250px;
}
.about-page .about-3 .container .left .yearbox ul li h4 {
    line-height: 300px;
    color: #f8f8f9;
    font-weight: 700;
    position: relative;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.about-page .about-3 .container .left .yearbox ul li h4:before {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    left: 0;
    height: 100%;
    background: #fff;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.about-page .about-3 .container .left .yearbox ul .slick-current li h4 {
    color: var(--color);
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.about-page .about-3 .container .left .yearbox ul .slick-current li h4:before {
    content: "";
    position: absolute;
    top: 0;
    width: 0%;
    left: 0;
    height: 100%;
    background: #fff;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.about-page .about-3 .container .right {
    text-align: right;
}
.about-page .about-3 .container .right ul {
    max-width: 500px;
    margin-left: auto;
    margin-right: 80px;
}
.about-page .about-3 .container .right ul li {
    text-align: left;
    padding-bottom: 65px;
    padding-top: 30px;
}
.about-page .about-3 .container .right ul li span {
    color: #aaa;
}
.about-page .about-3 .container .right ul li h5 {
    margin-top: 20px;
}
/*.about-page .about-4 {
    height: 750px;
    position: relative;
    background: url(../images/advantages-1.jpg) center center no-repeat;
    background-size: cover;
    padding-top: 500px;
}*/
.about-page .about-4 .slide::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}

.about-page .about-4 .content {
  width: 100%;
  left: 0;
  bottom: 10%;
}

.about-page .about-4 .dots {
  bottom: 5%;
  left: 0;
  width: 100%;
}

.about-page .about-4 .container p {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 32px;
}
.about-page .about-4 ul{
    margin: -10px;
}
.about-page .about-4 ul li{
    padding: 10px;
    text-align: center;
}
.about-page .about-4 ul li a{
    background: white;
    display: block;
    padding: 10px;
}
.about-page .about-4 ul li img{
    margin: auto;
}
.about-page .about-4 ul.slick-dots {
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0;
	padding-top:15px;
}
.about-page .about-4 ul.slick-dots li {
	width:10px;
	height:10px;
	border-radius:100%;
	background-color:white;
	margin:0 10px;
	cursor:pointer;
	cursor:hand;
	padding:0;
	transition:.5s;
}
.about-page .about-4 ul.slick-dots li.slick-active {
	background-color:var(--color);
}
.about-page .about-4 ul.slick-dots li button {
	display:none;
}
.about-page .about-5 {
    padding: 100px 0;
    text-align: center;
}
.about-page .about-5 p {
    margin-top: 20px;
    margin-bottom: 35px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 30px;
    line-height: 30px;
}
.about-page .about-5 .samplelist li {
    padding: 0 35px;
}

@media screen and (max-width: 1400px) {
    .about-page .about-1 {
        padding: 120px 0;
    }
    .font-200 {
        font-size: 100px;
    }
    .about-page .about-3 .container .left .yearbox {
        height: 600px;
    }
    .about-page .about-3 .container .left .yearbox ul li {
        height: 200px;
    }
    .about-page .about-3 .container .right ul li {
        text-align: left;
        padding-bottom: 20px;
        padding-top: 20px;
        position: relative;
    }

    .complete-page .complete2 .container .bottom .honorbox {
        padding-bottom: 0;
        background: #fff;
    }
    .about-page .about-2 .culturebox ul li .item {
        padding: 0 15px;
        padding-top: 50px;
        position: relative;
    }
    .font-60 {
        font-size: 40px;
    }
}
@media screen and (max-width: 1200px) {
    .font-28 {
        font-size: 20px;
        line-height: 1.8;
    }
    .about-page .about-1 .left .content {
        max-height: 180px;
        overflow-y: scroll;
    }
    .about-page .about-3 .container .left .yearbox ul li {
        height: 150px;
    }
    .about-page .about-3 .container .left .yearbox {
        height: 450px;
    }
    .font-200 {
        font-size: 110px;
    }
    .about-his {
      margin: 40px 0;
    }
}

@media screen and (max-width: 1000px) {
    .about-page .about-1 {
        background: #fff;
    }
    .about-page .about-1 .left {
        padding-right: 20px;
    }
    .about-page .about-2 .culturebox ul li .item {
        height: 400px;
    }
    .about-page .about-3 .container .left {
        display: none;
    }
    .about-page .about-3 .container .right {
        width: 100%;
    }
    .font-127 {
        font-size: 82px;
    }

    .about-page .about-4 .content {
      position: static;
      margin-top: 40px;
    }

    .about-page .about-4 .baseTit .Tit {
      color: black;
    }

    .about-page .about-4 .container p {
      color: black;
    }

    .about-page .about-4 .slide::before {
      display: none;
    }

    .about-page .about-4 .dots {
      display: none;
    }
}
@media screen and (max-width: 700px) {
    .about-page .about-1 {
        padding: 20px 0;
    }
    .about-page .about-1 .left {
        width: 100%;
        margin-bottom: 40px;
    }
    .about-page .about-1 .container .right {
        width: 100%;
    }
    .about-page .about-2 {
        padding: 20px 0;
    }
    .about-page .about-3 {
        padding: 20px 0;
    }
    .about-page .about-5 {
        padding: 20px 0;
        text-align: center;
    }

    
}

.about-his{
    margin: 80px 0;
}
.about-his .container span.gd {
    color: var(--color);
    position: -webkit-sticky;
    position: sticky;
    left: 0%;
    top: 120px;
    width: 25%;
    text-align: right;
    display: block;
    font-weight: 600;
}
.about-his .container span.gd.active {
    /*position: absolute;
    top: 20px;
    left: 0;*/
}
.about-his .container .yearbox {
    width: 75%;
    margin-left: auto;
    margin-right: 0;
}
.about-his .container .yearbox ul {
    width: 100%;
}
.about-his .container .yearbox ul li {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.2;
}
.about-his .container .yearbox .swiper-pagination-bullet-active {
  background: var(--color);
}
.about-his .container .yearbox ul li.active h4 {
       background: var(--color);
}
.about-his .container .yearbox ul li h4 {

    color: #e7e7e7;
    font-weight: 600;
    margin-right: 40px;
    width: 20%;
}
.about-his .container .yearbox ul li .textbox {
    max-width: 480px;
    padding: 40px 0;
}
.about-his .container .yearbox ul li .textbox span {
    color: var(--color);
}
.about-his .container .yearbox ul li .textbox h5 {
    margin-top: 20px;
    line-height: 36px;
}
@media screen and (max-width: 700px) {
    .about-his .container span.gd {
        display: none;
    }
    .about-his .container .yearbox ul li h4 {
        display: none;
    }
    .about-his .container .yearbox {
        width: 100%;
    }
    .about-his .container .yearbox ul li .textbox {
        padding: 20px 0;
    }

    .about-his .container .yearbox ul li .textbox .year {
        display: block;
    }
}









.certification-page {
    padding-top: 100px;
}
.certification-page .certification-1 {
    padding-bottom: 100px;
}
.certification-page .certification-1 .title_c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.certification-page .certification-1 .top ul {
    margin: 0 -20px;
/*     display:flex; */
/*     flex-wrap:wrap; */
}
.certification-page .certification-1 .top.certificate ul {
    display:flex;
    flex-wrap:wrap;
}
.certification-page .certification-1 .top ul li {
    padding: 0 20px;
}
.certification-page .certification-1 .top ul li .box {
    display: block;
    position: relative;
/*     background: #F0F0F0; */
/*     border-radius: 10px; */
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    height: 100%;
/*     padding: 15px; */
}
.certification-page .certification-1 .top.certificate ul li .box {
    background: #F0F0F0;
    border-radius: 10px;
	 padding: 15px;
	margin-top:60px;
}
.certification-page .certification-1 .top.certificate ul li .box .img {
	margin-bottom:-80px;
	position:relative;
	top:-80px;
}
.certification-page .certification-1 .top ul li .box img {
	display:block;
	margin:0 auto;
}
.certification-page .certification-1 .top ul li .box .tit {
    font-size: 20px;
    
    /*font-weight: bold;*/
    color: #000000;
    line-height: 1;
	padding-top:1em;
	display:none;
}
.certification-page .certification-1 .top ul li .box .cona {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 30px;
    opacity: 0.8;
    margin-top: 30px;
}
.certification-page .certification-1 .top.certificate ul li .box .cona {
	min-height:16em;
}
/* .certification-page .certification-1 .top ul li:hover .box {
    background: #073280;
} */
.certification-page .certification-1 .top.certificate ul li .box .tit {
	display:block;
}
.certification-page .certification-1 .top.certificate ul li:hover .box {
    background: var(--color);
}
.certification-page .certification-1 .top ul li:hover .box .tit,
.certification-page .certification-1 .top ul li:hover .box .cona {
    color: #ffffff;
}







.about3-page h3 {
    display: block;
    font-size: 24px;
/* 	    font-weight: 600; */
    color: #242424;
    line-height: 1.2;
}
.about3-page .about-1 {
    padding: 100px 0;
}
.about3-page .about-1 .left {
    width: 57%;
    padding-right: 60px;
}
.about3-page .about-1 .left h5 {
    display: block;
    font-size: 30px;
    color: #303030;
    text-transform: uppercase;
    line-height: 1;
}
.about3-page h2 {
    display: block;
    font-size: 50px;
    color: var(--color);
    line-height: 1.8;
	    font-weight: 600;
/*     text-transform: uppercase; */
    padding: 10px 0 25px;
    border-bottom: 1px solid #d9d9d9;
}
.about3-page .about-1 .left h3 {
    margin-top: 25px;
    line-height:42px;
}
.about3-page .about-1 .right {
    width: 43%;
}
.about3-page .content {
    display: block;
/*     margin-top: 55px; */
    font-size: 16px;
    color: #424242;
    line-height: 2.2;
}

.about3-page .about-4 {
    background: url("http://hwaqtester.hwaq.cc:50922/wp-content/uploads/2025/01/develop.jpg") center center;
    background-size: cover;
    padding: 100px 0 90px;
}
.about3-page .about-4 .ui.container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
}
.about3-page .about-4 .left {
/*     padding: 0 3%; */
    color: white;
	    font-size: 50px;
    font-weight: 600;
    vertical-align: middle;
}
.about3-page .about-4 .left h3 {
    color: white;
}
.about3-page .about-4 .left .text {
    font-size: 18px;
    line-height: 2;
    margin-top: 15px;
}
.about3-page .about-4 .right {
    vertical-align: middle;
}
.about3-page .about-4 .right ul {
    margin: -10px 0;
}
.about3-page .about-4 .right ul li {
    padding: 10px;
}
.about3-page .about-5 {
    background: #f8f9fb;
    padding: 100px 0;
    text-align: center;
}
.about3-page .about-5 h6 {
    font-size: 16px;
    color: #424242;
}
.about3-page .about-5 .box {
    padding-top: 70px;
/*     max-width: 1200px; */
    display: block;
    margin: 0 auto;
}
.about3-page .about-5 .box ul {
    overflow: hidden;
}
.about3-page .about-5 .box ul li {
    background: white;
    padding: 25px 30px 140px;
    margin-bottom: -100px;
    text-align: left;
    color: #323232;
}
.about3-page .about-5 .box ul li i {
    display: block;
    line-height: 80px;
    height: 80px;
}
.about3-page .about-5 .box ul li i img {
    display: inline-block;
    vertical-align: middle;
}
.about3-page .about-5 .box ul li h4 {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin: 15px 0;
}
.about3-page .about-5 .box ul li p {
    display: block;
    font-size: 16px;
    line-height: 30px;
}
.about3-page .about-5 .box ul li:nth-child(even) {
    background: var(--color);
    color: white;
}

@media screen and (max-width: 1400px) {
    .about3-page .about-1 .left h5 {
        font-size: 24px;
    }
    .about3-page .about-1 .left h2 {
        font-size: 38px;
    }
    .about3-page h3 {
        font-size: 28px;
    }
    .about3-page .about-1 .content,
    .about3-page .about-4 .left .text,
    .about3-page .about-5 .box ul li p {
        font-size: 14px;
    }
    .about3-page .about-5 .box ul li h4 {
        font-size: 18px;
    }
    .about3-page .about-5 .box ul li i {
        height: 60px;
        line-height: 60px;
    }
    .about3-page .about-5 .box ul li i img {
        max-height: 100%;
    }
    .about3-page .about-5 .box ul li {
        padding: 15px 15px 120px;
    }

}
@media screen and (max-width: 1000px) {
    .about3-page h3 {
        font-size: 24px;
    }
    .about3-page .about-1 .left h5 {
        font-size: 20px;
    }
    .about3-page .about-1 .left h2 {
        font-size: 28px;
    }
    .about3-page .about-1 .left {
        width: 100%;
    }
    .about3-page .about-1 .right {
        width: 100%;
        margin-top: 30px;
    }
    .about3-page .about-1 {
        padding: 50px 0;
    }
    .about3-page .about-1 .content {
        margin-top: 20px;
    }
    .about3-page .about-1 .content {
        line-height: 2.0;
    }
    .about3-page .about-4,
    .about3-page .about-5 {
        padding: 50px 0;
    }
    .about3-page .about-5 .box ul li p {
        line-height: 28px;
    }
    .about3-page .about-4 .left .text {
        line-height: 28px;
    }
    .about3-page .about-1 .content {
        line-height: 28px;
    }
    .about3-page .about-5 .box {
        padding-top: 40px;
    }
    .about3-page .about-5 .box ul li {
        width: 50%;
    }
    .about3-page .about-5 .box ul li:nth-child(3) {
        left: 50%;
        position: relative;
    }
    .about3-page .about-5 .box ul li:nth-child(4) {
        left: -50%;
        position: relative;
    }
}
@media screen and (max-width: 700px) {
    .about3-page .about-1 .left h2 {
        font-size: 24px;
        line-height:40px;
    }
    .about3-page h3 {
        font-size: 20px;
    }
    .about3-page .about-4 .right {
        width: 100%;
        margin-top: 30px;
    }
    .about3-page .about-4 .right ul li {
        width: 33.333%;
    }
}
@media screen and (max-width: 500px) {
    .about3-page .about-5 .box ul li {
        left: 0 !important;
        width: 100% !important;
    }
}








/* 案例 */
.case-page {
  padding: 100px 0;
}

.case-page .list ul {
  margin: 0 -15px;
}
.case-page .list li {
  padding: 0 15px;
  margin: 0 0 30px;
}

.qodef-e-inner {
  overflow: hidden;
}

.qodef-e-media-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
      background: #f7f7f7;
}

.qodef-e-media-image {
  overflow: hidden;
}

.qodef-e-media-image a,
.qodef-e-media-image img {
  display: block;
  width: 100%;
}

.qodef-e-media-image img {
  --qodef-y: 1.8%;
  transform: scale(1.1) translateY(var(--qodef-y));
  transition: transform .8s cubic-bezier(.3,.61,.3,.97);
}

.qodef-e:hover .qodef-e-media-image img {
  transform: scale(1.1) translateY(calc(-1* var(--qodef-y)));
}

.qodef-e-content {
  bottom: 0;
  left: 0;
  position: absolute;
  transform: translateY(100%);
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
  width: 100%;
}

.qodef-e-text {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.qodef-e-info-wrapper {
  display: flex;
  align-items: center;
}

.qodef-e-info>* {
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  font-size: 11px;
  line-height: 1.63636em;
  letter-spacing: .3em;
  display: inline-flex;
  vertical-align: middle;
  flex-wrap: wrap;
  color: #000;
  letter-spacing: .2em;
}

.qodef-info-separator-single {
  color: initial;
}

.qodef-info-separator-single:after {
  content: '-';
  margin: 0 4px;
}

.qodef-info-separator-end:last-of-type {
  display: none;
}

.qodef-e:hover .qodef-e-content {
  transform: translateY(1%);
}

.qodef-e-title {
  
  line-height: 32px;
}


.case-single {
	padding: 100px 0;
}
.case-single .box {
	margin: 0 -15px;
}
.case-single .left {
	width: 62%;
}
.case-single .right {
	width: 38%;
}

.case-single .Tit {
    font-size: 36px;
    line-height: 1.6;
    /* text-transform: uppercase; */
    
}

@media only screen and (min-width: 1001px) {
	.case-single .qodef-e-content-inner {
		margin-left: 45px;
	}
}


@media (max-width: 1000px) {
  .case-single .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .case-single .right {
    width: 100%;
  }
}



.t_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.flex_cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_a_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_j_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.manufacturing-page .init-1 .container .tips {
  font-weight: 500;
}
.manufacturing-page .init-1 .container .des {
  color: #404040;
  margin-top: 20px;
}
.manufacturing-page .init-1 .container video {
  display: block;
  width: 100%;
  margin-top: 40px;
}
.manufacturing-page .init-2 {
  -o-background-size: cover;
  background-size: cover;
}
.manufacturing-page .init-2 .container .left {
  width: 44%;
}
.manufacturing-page .init-2 .container .left img {
  width: 100%;
}
.manufacturing-page .init-2 .container .right {
  width: 56%;
  padding-left: 80px;
}
.manufacturing-page .init-2 .container .right .des {
  margin-top: 20px;
  line-height: 30px;
}
.manufacturing-page .init-3 .container .left {
  width: 50%;
}
.manufacturing-page .init-3 .container .left .des {
  margin-top: 20px;
}
.manufacturing-page .init-3 .container .right {
  width: 38%;
  margin-left: auto;
}
.manufacturing-page .init-3 .container .right img {
  width: 100%;
}
.manufacturing-page .init-4 .container .content {
  padding: 80px 70px;
  text-align: center;
  background-color: #f2f2f2;
}
.manufacturing-page .init-4 .container .content .title {
  font-weight: 500;
  margin: auto;
}
.manufacturing-page .init-4 .container .content .des {
  margin: 20px auto 0;
}
.manufacturing-page .init-4 .container .content .listC {
  margin-top: 70px;
}
.manufacturing-page .init-4 .container .content .listC ul {
  margin: -15px;
}
.manufacturing-page .init-4 .container .content .listC li {
  padding: 15px;
}


@media (max-width: 1000px) {
  .manufacturing-page .init-2 .container .left {
    width: 100%;
    max-width: 500px;
  }
  .manufacturing-page .init-2 .container .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .manufacturing-page .init-3 .container .left {
    width: 100%;
  }
  .manufacturing-page .init-3 .container .right {
    width: 100%;
    margin-top: 20px;
  }
  .manufacturing-page .init-4 .container .content {
    padding: 40px 16px;
  }
  .manufacturing-page .init-4 .container .content .listC {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .manufacturing-page .init-1 .container video {
    margin-top: 20px;
  }
  .manufacturing-page .init-2 .container .right .des {
    margin-top: 10px;
  }
}






.prodet-page {
  padding: 100px 0;
}
.prodet-page .prodet-1 {
  display: flex;
  flex-wrap: wrap;
}
.prodet-page .prodet-1 .img{
  display: flex;
}
.prodet-page .prodet-1 .img .big-img {
  position: relative;
  overflow: hidden;
  width: calc(100% - 155px);
}
.prodet-page .prodet-1 .img .big-img img {
  width: 100%;
  position: relative;
}
.prodet-page .prodet-1 .img .big-img .i2{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.prodet-page .prodet-1 .img .big-img:hover .i2{
  opacity: 1;
}
.prodet-page .prodet-1 .img .big-img .fd {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
}
.prodet-page .prodet-1 .img .big-img .fd a {
  display: block;
  width: 47px;
  height: 47px;
  line-height: 47px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 18px;
}
.prodet-page .prodet-1 .text {
  padding-left: 50px;
}
.prodet-page .prodet-1 .text h1 {
  font-size: 34px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}
.prodet-page .prodet-1 .text .con {
  font-size: 18px;
  line-height: 1.8;
  color: #83827F;
}
.prodet-page .prodet-1 .text .more {
  margin-top: 35px;
}

.prodet-page .prodet-1 .text .m-link a{
  display: block;
  font-size: 18px;
  line-height: 1.8;
  color: #181818;
}
.prodet-page .prodet-1 .text .m-link a em{
  text-transform: uppercase;
}
.prodet-page .prodet-1 .text .list {
  margin-top: 35px;
}
.prodet-page .prodet-1 .text .list p {
  font-size: 18px;
  line-height: 1.6;
  color: #181818;
}
.prodet-page .prodet-1 .text .list p a {
  display: inline-block;
  color: #83827F;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .text .list p a:hover {
  color: var(--color);
}
.prodet-page .prodet-1 .text .list p span {
  color: #83827F;
}
.prodet-page .prodet-1 .img .gallery-img{
  width: 140px;
  margin-right: 10px;
}
.prodet-page .prodet-1 .img .gallery-img ul{
  margin: -5px 0;
}
.prodet-page .prodet-1 .img .gallery-img ul li{
  padding: 5px 0;
  cursor: pointer;
}
.prodet-page .prodet-1 .img .gallery-img ul li a{
  display: block;
  background: #fff;
}
.prodet-page .prodet-1 .img .gallery-img ul li a img{
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-2 {
  padding: 65px 0;
}
.prodet-page .prodet-2 .options {
  margin-bottom: 35px;
}
.prodet-page .prodet-2 .options ul li {
  display: inline-block;
  padding: 3px 6px;
  margin: 0 -6px;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.prodet-page .prodet-2 .options ul li a {
  padding: 21px;
  min-width: 278px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.5px;
  border-top: 2px solid  #181818;
  font-weight: bold;
  background: #fff;
  color: #181818;
  display: block;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options ul li:hover a,
.prodet-page .prodet-2 .options ul li.active a {
  background: #efefef;
}
.prodet-page .prodet-2 .ret .slide .content {
  font-size: 18px;
  line-height: 32px;
  color: #83827F;
}

.prodet-page .prodet-2 .ret .slide .con h4 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 25px;
  /*font-weight: bold;*/
}
.prodet-page .prodet-2 .ret .slide .con .left {
  padding: 0 15px;
  display: none;
}
.prodet-page .prodet-2 .ret .slide .con .left ul {
  margin-bottom: -20px;
}
.prodet-page .prodet-2 .ret .slide .con .left ul li {
  padding-bottom: 20px;
}
.prodet-page .prodet-2 .ret .slide .con .left ul li .desc {
  font-size: 16px;
  line-height: 1.8;
  color: #83827F;
  margin-top: 10px;
}
.prodet-page .prodet-2 .ret .slide .con .left ul li span {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}
.prodet-page .prodet-2 .ret .slide .con .right {
  padding: 0 15px;
  width: 100%;
}
.prodet-page .prodet-2 .ret .slide .con .right p {
  font-size: 18px;
  line-height: 32px;
  color: #83827F;
}
.prodet-page .prodet-2 .ret .slide .con .right form {
  margin-top: 24px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul {
  margin-bottom: -24px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li {
  margin-bottom: 24px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li label {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #181818;
  font-weight: 500;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li input[type="text"],
.prodet-page .prodet-2 .ret .slide .con .right form ul li textarea {
  padding: 10px 0;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d1d0c8;
  font-size: 16px;
  line-height: 30px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li input[type="submit"]{
  width: 100%;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate {
  margin-top: 7px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i {
  font-size: 18px;
  color: var(--color);
  position: relative;
  width: 18px;
  display: inline-block;
  cursor: pointer;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i::after {
  content: "\f006";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-family: 'fontAwesome';
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i:hover::after,
.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i.active::after {
  content: "\f005";
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li textarea {
  height: 96px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li input[type="checkbox"] {
  display: inline-block;
  padding: 0;
  width: auto;
  vertical-align: middle;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li span {
  font-size: 14px;
  color: #a7a7a7;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}
.prodet-page .prodet-2 .ret .slide .con .right form ul li .more {
  padding: 21px 38px 20px;
}

.prodet-page .prodet-3 .content ul {
  margin: -15px;
}
.prodet-page .prodet-3 .content ul li {
  padding: 15px;
}
.prodet-page .prodet-3 .content ul li .img {
  position: relative;
}
.prodet-page .prodet-3 .content ul li .img .img-box {
  display: block;
}
.prodet-page .prodet-3 .content ul li .img .img-box img {
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon a {
  display: inline-block;
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}
.prodet-page .prodet-3 .content ul li .img .icon a img {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-3 .content ul li .img:hover .img-box img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.prodet-page .prodet-3 .content ul li .img:hover .icon {
  opacity: 1;
}
.prodet-page .prodet-3 .content ul li .text {
  padding-top: 25px;
}
.prodet-page .prodet-3 .content ul li .text h3 {
  font-size: 18px;
  line-height: 32px;
  min-height: 4rem;
  margin-bottom: 0;
}
.prodet-page .prodet-3 .content ul li .text .con {
  font-size: 16px;
  line-height: 30px;
  color: #83827F;
}
@media screen and (max-width: 1000px) {
  .prodet-page {
    padding: 60px 0;
  }
  .prodet-page .prodet-1 .text {
    padding-left: 20px;
  }
  .prodet-page .prodet-1 .text h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .prodet-page .prodet-1 .text .con {
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .prodet-1 .text .more {
    margin-top: 15px;
    padding: 15px 30px;
  }
  .prodet-page .prodet-1 .text .list {
    margin-top: 15px;
  }
  .prodet-page .prodet-2 .ret .slide .con .left {
    width: 100%;
    padding: 15px 0;
  }
  .prodet-page .prodet-2 .ret .slide .con .right {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page {
    padding: 30px 0;
  }
  .prodet-page .prodet-1 .img {
    width: 100%;
  }
  .prodet-page .prodet-1 .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .prodet-page .prodet-2 {
    padding-top: 30px;
  }
  .prodet-page .prodet-2 .options {
    margin-bottom: 20px;
  }
  .prodet-page .prodet-2 .options ul li a {
    min-width: 230px;
    padding: 10px 0;
  }
  .prodet-page .prodet-2 .ret .slide .content {
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .prodet-3 {
    padding-top: 30px;
  }
  .prodet-page .prodet-3 h3 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .prodet-page .prodet-3 .content ul li .text {
    padding-top: 15px;
  }
  .prodet-page .prodet-3 .content ul li .text h3 {
    font-size: 18px;
    line-height: 32px;
  }
  .prodet-page .prodet-3 .content ul li .text .con {
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .prodet-1 .img .big-img{
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .text h1 {
    font-size: 26px;
    line-height: 1.6;
  }
  .prodet-page .prodet-1 .text .list p {
    font-size: 16px;
  }
  .prodet-page .prodet-2 .options ul li {
    display: block;
    width: 100%;
  }
  .prodet-page .prodet-2 .options ul li a {
    min-width: auto;
    width: 100%;
  }
  .prodet-page .prodet-3 h3 {
    font-size: 30px;
  }
  .prodet-page .prodet-2 .ret .slide .con .left {
    display: none;
  }
}




/* 落地页 */
.container2 {
  max-width: 1660px;
  padding: 0 15px;
  margin: auto;
}
#header2 {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header2 .h-top {
  line-height: 34px;
  height: 34px;
  background: #FFFFFF;
}
#header2 .h-top ul {
  float: right;
}
#header2 .h-top ul li {
  width: auto;
}
#header2 .h-top ul li + li {
  margin-left: 45px;
}
#header2 .h-top ul li p {
  color: #333333;
}
#header2 .nav {
  display: inline-block;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
}
#header2 .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header2 .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header2 .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header2 .nav .ui.menu .menu-box ul.menu > li {
  font-size: 18px;
  color: #333333;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header2 .nav .ui.menu .menu-box ul.menu > li + li {
  margin-left: 65px;
}
#header2 .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: #fd2318;
  color: #fd2318;
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}
#header2 .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header2 .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #fd2318;
  display: none \9;
}
#header2 .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: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header2 .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header2 .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header2 .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;
}
#header2 .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;
}
#header2 .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;
}
#header2 .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#banner2 {
  position: relative;
  padding: 156px 0 58px;
}
#banner2 .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#banner2 .left {
  width: 50%;
}
#banner2 .left .Tit {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
}
#banner2 .left .text {
  color: #bfbfbf;
  margin: 30px 0;
}
#banner2 .right {
  width: 40%;
  padding: 3%;
  background-color: rgba(255, 255, 255, 0.9);
}
#banner2 .right .Tit {
  font-size: 36px;
  font-weight: bold;
  color: #6cb52b;
}
#banner2 .right .text {
  color: #333333;
}
#banner2 .form input,
#banner2 .form textarea {
  width: 100%;
  font-size: 18px;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid black;
  padding: 5px 10px;
}
#banner2 .form input[type="submit"] {
  border: 0;
  color: #FFFFFF;
  background-color: #6cb52b;
}
#banner2 .form ul {
  margin: -5px;
}
#banner2 .form li {
  width: 50%;
  padding: 5px;
}
#banner2 .form li.wid-100 {
  width: 100%;
}
.font-60 {
  font-size: 60px;
}
.category-item {
  overflow: hidden;
}
.category-item .Tit {
  margin: 70px 0 20px;
}
.category-item .item {
  margin-bottom: 90px;
}
.category-item .box {
  position: relative;
  color: #FFFFFF;
  padding: 80px 0 250px;
}
.category-item .box .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.category-item .box .bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.category-item .box .left .line {
  margin: 20px 0 10px;
  width: 108px;
  border-bottom: 2px solid #6cb52b;
}
.category-item .box .left .desc {
  margin-bottom: 60px;
}
.category-item .box .right .text {
  color: #cbcbcb;
}
.category-item .box .right .text strong {
  font-weight: 600;
  color: #FFFFFF;
}
.category-item .box .right .text li {
  padding-left: 15px;
  position: relative;
}
.category-item .box .right .text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6cb52b;
}
.category-item .list {
  margin-top: -180px;
}
.category-item .list .slick-list {
  overflow: visible;
}
.category-item .list ul {
  margin: -15px;
}
.category-item .list li {
  padding: 15px;
}
.category-item .list li .mml-text {
  background-color: #f5f5f5;
  padding: 20px;
  overflow: hidden;
}
.category-item .list li .mml-text .img img {
  margin: auto;
}
.category-item .list li .mml-text .name {
  color: #6cb52b;
  font-weight: 600;
  margin: 20px 0 5px;
}
.category-item .list li .mml-text .des {
  color: #666666;
}
.category-item .list li .mml-text .content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #FFFFFF;
  background-color: #6cb52b;
  padding: 20px 15%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.category-item .list li .mml-text .content .baseBtn2 {
  border-color: #FFFFFF;
}
.category-item .list li .mml-text:hover .content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.baseTit {
  line-height: 1.2;
}
.baseBtn2 {
  display: inline-block;
  color: white;
  background-color: var(--color);
  border: 1px solid var(--color);
  padding: 10px;
  min-width: 152px;
  text-align: center;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  line-height: 30px;
}
.hot-product {
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.hot-product .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hot-product .Tit {
  color: #FFFFFF;
}
.hot-product .desc {
  color: #FFFFFF;
  font-weight: 500;
  margin: 20px 0 50px;
}
.hot-product span.arrow {
  display: inline-block;
  width: 48px;
  height: 48px;
  color: #666666;
  background-color: #FFFFFF;
  line-height: 46px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.hot-product span.arrow:hover {
  color: #69ac30;
}
.hot-product span.arrow.arrow_l {
  margin-right: 13px;
}
.hot-product .left {
  width: 25%;
}
.hot-product .right {
  width: 75%;
}
.hot-product .right .list {
  margin-right: -12%;
}
.hot-product .right .list .slick-list {
  padding-right: 3%;
}
.hot-product .right .list ul {
  margin: -10px;
}
.hot-product .right .list li {
  padding: 10px;
}
.hot-product .right .list li .mml-text {
  overflow: hidden;
}
.hot-product .right .list li .mml-text .name {
  width: 90%;
  margin-top: 34px;
  margin-left: 5%;
  font-weight: 600;
  line-height: 1.5;
  min-height: 4.5em;
}
.hot-product .right .list li .mml-text .btns {
  padding: 34px 15px;
}
.hot-product .right .list li .mml-text .default {
  background-color: #f5f5f5;
  overflow: hidden;
}
.hot-product .right .list li .mml-text .hover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #6cb52b;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.hot-product .right .list li .mml-text .content {
  background-color: #6cb52b;
  overflow: hidden;
}
.hot-product .right .list li .mml-text .content .name {
  color: #FFFFFF;
}
.hot-product .right .list li .mml-text .content .baseBtn2 {
  border-color: #FFFFFF;
}
.hot-product .right .list li .mml-text:hover .hover {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.noknow-1 {
  padding: 90px 0;
}
.noknow-1 .left {
  width: 40%;
}
.noknow-1 .left .text {
  color: #999999;
  font-weight: 500;
  margin: 20px 0 50px;
}
.noknow-1 .right {
  width: 53%;
  position: relative;
}
.noknow-1 .right .list {
  position: relative;
}
.noknow-1 .right .list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/noknow-1-mask.png) center;
  background-size: auto 100%;
}
.noknow-1 .right .tab {
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 5%;
}
.noknow-1 .right .tab 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;
}
.noknow-1 .right .tab li {
  width: 80px;
  position: relative;
  -webkit-transition: width .5s ease;
  -moz-transition: width .5s ease;
  transition: width .5s ease;
}
.noknow-1 .right .tab li .icon {
  float: left;
  width: 80px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: .3;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.noknow-1 .right .tab li .name {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-left: 90px;
  font-size: 20px;
  line-height: 34px;
  color: #FFFFFF;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.noknow-1 .right .tab li.active {
  width: 280px;
}
.noknow-1 .right .tab li.active .icon {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.noknow-1 .right .tab li.active .name {
  opacity: 1;
}
.noknow-2 {
  background-color: #f6f6f6;
  padding-top: 80px;
}
.noknow-2 .left {
  padding-right: 5%;
}
.noknow-2 .right .text {
  color: #999999;
}
.noknow-2 .video {
  margin-top: 50px;
}
.noknow-2 .video .bg {
  padding-top: 550px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.noknow-2 .video .play {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.noknow-2 .list {
  padding: 55px 0;
}
.noknow-2 .list ul {
  margin: -10px;
}
.noknow-2 .list li {
  padding: 10px;
  width: 25%;
  text-align: center;
}
.noknow-2 .list li .num {
  font-size: 60px;
  font-weight: bold;
  color: #69ac30;
  line-height: 1;
}
.noknow-2 .list li .num span {
  font-size: 36px;
}
.noknow-2 .list li .num sup {
  font-size: 18px;
}
.noknow-2 .list li p {
  color: #666666;
  font-weight: 500;
}
.noknow-3 {
  padding: 80px 0;
  overflow: hidden;
}
.noknow-3 .list {
  margin-top: 30px;
  position: relative;
}
.noknow-3 .list .slick-list {
  overflow: visible;
}
.noknow-3 .list .slick-current li .img {
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  opacity: 1;
}
.noknow-3 .list .slick-current ~ .slick-slide li .img {
  -webkit-transform: rotate3d(0, 1, 0, -10deg);
  -moz-transform: rotate3d(0, 1, 0, -10deg);
  transform: rotate3d(0, 1, 0, -10deg);
}
.noknow-3 .list ul {
  margin: -80px;
}
.noknow-3 .list li {
  padding: 80px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.noknow-3 .list li .img {
  -webkit-transform: rotate3d(0, 1, 0, 10deg);
  -moz-transform: rotate3d(0, 1, 0, 10deg);
  transform: rotate3d(0, 1, 0, 10deg);
  opacity: .5;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.noknow-3 .list li .name {
  margin-top: 30px;
  font-weight: 500;
}
.noknow-3 .list span.arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid #666666;
  color: #666666;
  line-height: 46px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.noknow-3 .list span.arrow:hover {
  color: #FFFFFF;
  background-color: #69ac30;
  border-color: #69ac30;
}
.noknow-3 .list span.arrow.arrow_l {
  left: 12%;
}
.noknow-3 .list span.arrow.arrow_r {
  right: 12%;
}
.noknow-4 {
  background-color: #f6f6f6;
  padding: 85px 0;
}
.noknow-4 .left {
  padding-right: 10%;
}
.noknow-4 .left .text {
  color: #666666;
  font-weight: 500;
  margin-top: 20px;
}
.noknow-4 .right {
  padding-left: 6%;
}
.noknow-4 .list ul {
  margin: -8px;
}
.noknow-4 .list li {
  padding: 8px;
}
#footer2 {
  background: url(../images/foot-bg.jpg) no-repeat center;
  background-size: cover;
}
#footer2 .foot-top {
  padding: 80px 0;
}
#footer2 .foot-top .Tit {
  font-size: 36px;
  font-weight: 600;
  color: #FFFFFF;
}
#footer2 .foot-top .text {
  color: #FFFFFF;
  font-weight: 500;
}
#footer2 .foot-top .form {
  margin-top: 70px;
}
#footer2 .foot-top .form ul {
  margin: -15px -35px;
}
#footer2 .foot-top .form li {
  width: auto;
  width: 20%;
  padding: 15px 35px;
}
#footer2 .foot-top .form li:nth-of-type(4) {
  width: 25%;
}
#footer2 .foot-top .form li:nth-of-type(5) {
  width: 15%;
}
#footer2 .foot-top .form input {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  padding: 10px;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #FFFFFF;
}
#footer2 .foot-top .form input[type="submit"] {
  border: 0;
  color: #FFFFFF;
  background-color: #6cb52b;
}
#footer2 .foot-bottom p {
  color: #999999;
  font-weight: 500;
  padding: 7px 0;
}
@media (max-width: 1660px) {
  .font-60 {
    font-size: 48px;
  }
  #banner2 .left .Tit {
    font-size: 36px;
  }
  #banner2 .right .Tit {
    font-size: 30px;
  }
  .noknow-3 .list li .name {
    font-size: 30px;
  }
}
@media (max-width: 1440px) {
  .font-60 {
    font-size: 40px;
  }
  #header2 .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
  }
  #header2 .nav .ui.menu .menu-box ul.menu > li + li {
    margin-left: 45px;
  }
  .category-item .list li .mml-text .name {
    font-size: 20px;
  }
  .category-item .box .left .desc {
    font-size: 24px;
  }
  .noknow-1 .right .tab li .name {
    font-size: 18px;
  }
  .noknow-2 .list li .num {
    font-size: 48px;
  }
  .noknow-2 .list li .num span {
    font-size: 30px;
  }
  .noknow-2 .list li .num sup {
    font-size: 16px;
  }
  .noknow-2 .list li p {
    font-size: 18px;
  }
  .noknow-3 .list li .name {
    font-size: 24px;
  }
  .noknow-4 .right {
    padding-left: 0;
  }
  #footer2 .foot-top .form ul {
    margin: -15px;
  }
  #footer2 .foot-top .form li {
    padding: 15px;
  }
}
@media (max-width: 1230px) {
  #header2 .nav .ui.menu .menu-box ul.menu > li + li {
    margin-left: 20px;
  }
  #banner2 .form input,
  #banner2 .form textarea {
    font-size: 16px;
  }
  .hot-product .right .list {
    margin-right: 0;
  }
  .hot-product .right .list .slick-list {
    padding-right: 0;
  }
  .noknow-3 .list ul {
    margin: -40px;
  }
  .noknow-3 .list li {
    padding: 40px;
  }
}
@media (max-width: 1000px) {
  .font-60 {
    font-size: 34px;
  }
  #header2 {
    display: none;
  }
  #banner2 {
    margin-top: 120px;
    padding: 60px 0;
  }
  #banner2 .left .Tit {
    font-size: 24px;
  }
  #banner2 .left {
    width: 100%;
    float: none;
  }
  #banner2 .right {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
  .category-item .box .left {
    width: 100%;
    float: none;
  }
  .category-item .box .left .desc {
    margin-bottom: 30px;
  }
  .category-item .box .right {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
  .category-item .list li .mml-text .content {
    padding: 20px 5%;
  }
  .category-item .box {
    padding: 60px 0 150px;
  }
  .category-item .list {
    margin-top: -120px;
  }
  .hot-product {
    padding: 60px 0 30px;
  }
  .hot-product .left {
    width: 100%;
    float: none;
  }
  .hot-product .desc {
    margin: 20px 0 30px;
  }
  .hot-product .right {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
  .hot-product .right .list li .mml-text .name {
    margin-top: 20px;
  }
  .hot-product .right .list li .mml-text .btns {
    padding: 20px 15px;
  }
  .noknow-1 {
    padding: 60px 0;
  }
  .noknow-1 .left {
    width: 100%;
    float: none;
  }
  .noknow-1 .left .text {
    margin: 20px 0 30px;
  }
  .noknow-1 .right {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
  .noknow-2 {
    padding-top: 60px;
  }
  .noknow-2 .left {
    width: 100%;
    float: none;
    padding-right: 0;
  }
  .noknow-2 .right {
    width: 100%;
    float: none;
    margin-top: 20px;
  }
  .noknow-2 .list li {
    width: 50%;
  }
  .noknow-2 .list {
    padding: 30px 0;
  }
  .noknow-3 {
    padding: 60px 0;
  }
  .noknow-4 {
    padding: 60px 0;
  }
  .noknow-4 .left {
    width: 100%;
    float: none;
    padding-right: 0;
  }
  .noknow-4 .right {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
  #footer2 .foot-top {
    padding: 60px 0;
  }
  #footer2 .foot-top .form {
    margin-top: 40px;
  }
  #footer2 .foot-top .form li {
    width: 50%;
  }
  #footer2 .foot-top .form li:nth-of-type(4) {
    width: 50%;
  }
  #footer2 .foot-top .form li:nth-of-type(5) {
    width: 100%;
  }
  .noknow-3 .list span.arrow {
    display: none;
  }
  .noknow-2 .video .bg {
    padding-top: 50%;
  }
  .noknow-2 .video .play {
    width: 90px;
  }
}
@media (max-width: 768px) {
  #banner2 .right .Tit {
    font-size: 24px;
  }
  .category-item .box .left .desc {
    font-size: 20px;
  }
  .category-item .list li .mml-text .name {
    font-size: 18px;
  }
  .category-item .list li .mml-text {
    padding: 15px;
  }
  .noknow-1 .right .tab li.active {
    width: 200px;
  }
  .noknow-1 .right .tab li .name {
    font-size: 20px;
    line-height: 30px;
  }
  .noknow-2 .list li .num {
    font-size: 36px;
  }
  .noknow-2 .list li .num span {
    font-size: 20px;
  }
  .noknow-2 .list li .num sup {
    font-size: 12px;
  }
  .noknow-2 .list li p {
    font-size: 16px;
  }
  .noknow-3 .list ul {
    margin: -15px;
  }
  .noknow-3 .list li {
    padding: 15px;
  }
  .noknow-3 .list li .name {
    font-size: 18px;
  }
  #footer2 .foot-top .form input {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .font-60 {
    font-size: 24px;
  }
  .noknow-1 .right .tab li.active {
    width: auto;
  }
  .noknow-1 .right .tab li .name {
    display: none;
  }
  .noknow-1 .right .tab li .icon {
    width: 40px;
  }
  #footer2 .foot-top .Tit {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .noknow-2 .list li {
    width: 100%;
  }
  #footer2 .foot-top .form ul {
    margin: -10px;
  }
  #footer2 .foot-top .form li {
    width: 100%;
    padding: 10px;
  }
  #footer2 .foot-top .form li:nth-of-type(4) {
    width: 100%;
  }
  #footer2 .foot-top .form input {
    padding: 5px;
  }
}




#goback {
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--color);
  color: white;
  right: 20px;
  bottom: 200px;
  font-size: 24px;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  box-shadow: 0 2px 7px rgba(0,0,0,.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: 22;
}

/*@media (max-width: 1000px) {
  #goback {
    display: none;
  }
}*/




/* 弹窗 */
.fix-tool {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    width: 20%;
}
.fix-tool .box .close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

@media (max-width:1000px) {
  .fix-tool {
    width: 30%;
  }
}

@media (max-width:500px) {
  .fix-tool {
    width: 50%;
  }
}
/*strength*/
.pb-140{
  padding-bottom: 140px;
}

  .solution-page .init-1 {
    padding-top: 210px;
    position: relative;
    z-index: 2;
  }
  .solution-page .init-1 .subText {
    font-size: 300px;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: bold;
    z-index: -1;
    color: #f3f3f3;
  }
  .solution-page .init-1 .container .tipsTitle {
    position: relative;
    text-align: center;
  }
  .solution-page .init-1 .container .tipsDes {
    position: relative;
    margin: auto;
    max-width: 1000px;
    text-align: center;
  }
  .solution-page .init-1 .container .imgSub {
    display: block;
    margin: -60px auto 0;
    position: relative;
    z-index: -1;
  }
  .solution-page .init-1 .container .desC {
    overflow: hidden;
    /*border-radius: 20px;*/
    -o-background-size: cover;
    background-size: cover;
    text-align: left;
    min-height: 700px;
    color: #fff;
    padding: 10px 90px;
  }
  .solution-page .init-1 .container .desC .title {
    font-weight: 600;
    line-height: 1;
  }
  .solution-page .init-1 .container .desC .des {
    max-width: 820px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .solution-page .init-2 .container .left {
    width: 58%;
  }
  .solution-page .init-2 .container .left img {
    width: 100%;
  }
  .solution-page .init-2 .container .right {
    width: 50%;
    margin-left: auto;
  }
  .solution-page .init-2 .container .right video {
    background-color: #000;
  }
  .solution-page .init-2 .container .right .des {
    color: #666666;
    margin-top: 24px;
    /*text-indent: 36px;*/
  }
  .solution-page .init-3 {
    -o-background-size: cover;
    background-size: cover;
  }
  .solution-page .init-3 .container .left {
    width: 36%;
  }
  .solution-page .init-3 .container .left .des {
    color: #666666;
    margin-top: 20px;
    /*text-indent: 36px;*/
  }
  .solution-page .init-3 .container .right {
    width: 60%;
    margin-left: auto;
  }
  .solution-page .init-3 .container .right .rightL {
    width: 49%;
    overflow: hidden;
    /*border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;*/
  }
  .solution-page .init-3 .container .right .rightL img {
    display: block;
    max-width: unset;
  }
  .solution-page .init-3 .container .right .rightR {
    width: 45%;
    margin-left: auto;
  }
  .solution-page .init-3 .container .right .rightR .img1 {
    overflow: hidden;
    /*border-radius: 10px;*/
    height: 290px;
    border-bottom-left-radius: 0;
  }
  .solution-page .init-3 .container .right .rightR .img1 img {
    height: 100%;
    max-width: unset;
    display: block;
  }
  .solution-page .init-3 .container .right .rightR .img2 {
    margin-top: 50px;
    height: 290px;
    /*border-radius: 10px;*/
    overflow: hidden;
    border-top-left-radius: 0;
  }
  .solution-page .init-3 .container .right .rightR .img2 img {
    height: 100%;
    display: block;
    max-width: unset;
  }
  .solution-page .init-4 .container .tipsTitle {
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight:600;
  }
  .solution-page .init-4 .container .content {
    margin-top: 90px;
  }
  .solution-page .init-4 .container .content ul {
    margin: 0 -45px;
  }
  .solution-page .init-4 .container .content ul li {
    width: 25%;
    padding: 0 25px;
  }
  .solution-page .init-4 .container .content ul li .box {
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600px;
  }
  .solution-page .init-4 .container .content ul li .box .img {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 270px;
    margin: auto;
    display: block;
    margin-top: -110px;
  }
  .solution-page .init-4 .container .content ul li .box .img2 {
    display: block;
    width: 52px;
    margin: auto;
    position: relative;
    z-index: 2;
    -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, 0));
  }
  .solution-page .init-4 .container .content ul li .box .title {
    margin-top: -40px;
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight:bold;
  }
  .solution-page .init-4 .container .content ul li .box .des {
    margin-top: 20px;
    color: #666666;
    text-align: center;
  }
  .solution-page .init-4 .container .content ul li .box:hover .img2 {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-reflect: below 4px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  }
  .solution-page .init-4 .container .content ul li .box:hover .img {
    -webkit-transform: rotateX(36deg);
    -moz-transform: rotateX(36deg);
    transform: rotateX(36deg);
  }
  .solution-page .init-5 .container .cont {
    /*border-radius: 20px;*/
    background-color: #f5f5f5;
    padding: 70px 80px;
  }
  .solution-page .init-5 .container .cont .tips {
    text-align: center;
    font-weight:600;
  }
  .solution-page .init-5 .container .cont .content {
    margin-top: 20px;
  }
  .solution-page .init-5 .container .cont .content form {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .solution-page .init-5 .container .cont .content form .list {
    padding: 0 6px;
    margin-top: 12px;
    width: 33.33%;
  }
  .solution-page .init-5 .container .cont .content form .list input,
  .solution-page .init-5 .container .cont .content form .list textarea {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 16px 24px;
  }
  .solution-page .init-5 .container .cont .content form .w-66 {
    width: 66.66%;
  }
  .solution-page .init-5 .container .cont .content form .w-100 {
    width: 100%;
  }
  .solution-page .init-5 .container .cont .content form .btn {
    max-width: 100%;
    margin: 20px auto 0;
    width: 310px;
    background-color: var(--color);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    cursor: pointer;
  }
  .solution-page .init-5 .container .cont .content form .btn:hover {
    background-color: #000;
  }
  .font-44{
    font-size: 44px;
  }
  .pt-110{
    padding-top: 110px;
  }
  .overHiden{
    overflow: hidden;
  }
  @media (max-width: 1800px) {
    .solution-page .init-1 {
      padding-top: 140px;
    }
    .solution-page .init-1 .subText {
      font-size: 200px;
    }
  }
  @media (max-width: 1700px){
    .font-44 {
        font-size: 37px;
    }
    .font-18 {
      font-size: 16px;
    }
    .pb-140 {
      padding-bottom: 114px;
    }
  }
  @media screen and (max-width: 1450px) {
    .font-44 {
      font-size: 35px;
    }
    .pt-110 {
      padding-top: 81px;
    }
    .font-18 {
      font-size: 15px;
    }
    .pb-140 {
      padding-bottom: 103px;
    }
}
  @media (max-width: 1250px) {
    .font-44 {
        font-size: 31px;
    }
    .pt-110 {
      padding-top: 66px;
    }
    .pb-90 {
      padding-bottom: 54px;
    }
    .pb-140 {
      padding-bottom: 83px;
    }
    .pb-150 {
      padding-bottom: 89px;
    }
    .solution-page .init-1 .subText {
      font-size: 100px;
    }
    .solution-page .init-4 .container .content ul li {
      width: 50%;
      margin-top: 60px;
    }
  }
  @media (max-width: 1000px) {
    .font-44 {
      font-size: 25px;
    }
    .pt-100 {
      padding-top: 51px;
    }
    .pb-150 {
      padding-bottom: 76px;
    }
    .pt-110 {
      padding-top: 56px;
    }
    .pb-90 {
      padding-bottom: 46px;
    }
    .pb-140 {
      padding-bottom: 71px;
    }
    .solution-page .init-1 {
      padding-top: 40px;
    }
    .solution-page .init-1 .subText {
      display: none;
    }
    .solution-page .init-1 .container .tipsDes {
      padding-top: 40px;
    }
    .solution-page .init-1 .container .desC {
      padding: 10px 20px;
    }
    .solution-page .init-2 .container .left {
      width: 100%;
    }
    .solution-page .init-2 .container .right {
      width: 100%;
      margin-top: 20px;
    }
    .solution-page .init-3 .container .left {
      width: 100%;
    }
    .solution-page .init-3 .container .right {
      width: 100%;
      margin-top: 20px;
    }
    .solution-page .init-4 .container .content ul {
      margin: 0 -16px;
    }
    .solution-page .init-4 .container .content ul li {
      padding: 0 16px;
    }
    .solution-page .init-5 .container .cont {
      padding: 60px 16px;
    }
  }
  @media (max-width: 700px) {
    .font-44 {
      font-size: 18px;
    }
    .pb-140 {
      padding-bottom: 61px;
    }
    .solution-page .init-4 .container .content ul li {
      width: 100%;
    }
    .solution-page .init-5 .container .cont .content form .list {
      width: 100%;
    }
  }
  @media (max-width: 500px) {
    .solution-page .init-1 .container .tipsDes {
      padding-top: 20px;
    }
    .solution-page .init-3 .container .right .rightL {
      width: 100%;
    }
    .solution-page .init-3 .container .right .rightR {
      width: 100%;
      margin-top: 10px;
    }
    .solution-page .init-3 .container .right .rightR .img2 {
      margin-top: 10px;
      height: auto;
    }
    .solution-page .init-3 .container .right .rightL img {
      max-width: 100%;
    }
    .solution-page .init-3 .container .right .rightR .img1 {
      height: auto;
    }
    .solution-page .init-3 .container .right .rightR .img1 img {
      max-width: 100%;
    }
    .solution-page .init-3 .container .right .rightR .img2 img {
      width: 100%;
    }
    .solution-page .init-4 .container .content {
      margin-top: 20px;
    }
    .solution-page .init-5 .container .cont {
      padding: 40px 16px;
    }
    .solution-page .init-5 .container .cont .content form .list input,
    .solution-page .init-5 .container .cont .content form .list textarea {
      padding: 8px 10px;
    }
    .solution-page .init-5 .container .cont .content form .btn {
      padding: 4px 10px;
    }
  }
  /*quality*/
  
.quality-page {
  padding-top: 90px;
}
/*.quality-page .ui.container {
  max-width: 1230px;
}*/
.quality-page .mbx .ui.container {
  max-width: none;
}
.quality-page span.h2 {
  font-weight: 600;
}
.quality-page .text {
  font-weight: 300;
}
.quality-page span.h3 {
  font-size: 34px;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-bottom: 1em;
  color: var(--color);
}
.quality-page .quality-1 {
  padding: 0 0 60px;
  text-align: center;
}
.quality-page .quality-1 .text {
  margin-top: 2em;
}
.quality-page .quality-2 .slide {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.quality-page .quality-2 .slide .left {
  padding-right: 7%;
}
.quality-page .quality-2 .slide .left * {
  height: 100%;
}
.quality-page .quality-2 .slide .left .img {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
  /*border: 1px solid #c9cfd2;*/
}
.quality-page .quality-2 .slide .right {
  padding: 20px 0;
  padding-left: 3%;
}
.quality-page .quality-2 .slide:nth-child(even) {
  direction: rtl;
}
.quality-page .quality-2 .slide:nth-child(even) .left {
  padding-left: 7%;
  padding-right: 0;
}
.quality-page .quality-2 .slide:nth-child(even) .right {
  padding-left: 0;
  padding-right: 3%;
  direction: ltr;
}
.quality-page .quality-3 {
  padding: 70px 0 90px;
 background-color: #f9f9f9;
}
.quality-page .quality-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;
}
.quality-page .quality-3 .box .left {
  width: 60%;
}
.quality-page .quality-3 .box .right {
  padding-left: 10%;
  width: 40%;
}
.quality-page .quality-3 .list {
  margin-top: 60px;
}
.quality-page .quality-3 .list ul {
  margin: -7px;
}
.quality-page .quality-3 .list ul li {
  padding: 7px;
}
.quality-page .quality-3 .list ul li a.img-box {
  display: block;
}
.quality-page .quality-4 .list ul {
  margin: -10px;
}
.quality-page .quality-4 .list ul li {
  padding: 10px;
}
.quality-page .quality-4 .list ul li a.img-box {
  display: block;
  border: 1px solid #c9cfd2;
}
.quality-page .quality-4 .list ul li a img {
  width: 100%;
}
.quality-page .quality-4 .list ul li span.h6 {
  font-size: 18px;
  font-weight: 500;
  /*color: var(--color);*/
  display: block;
  margin-top: 0.6em;
  text-align: center;
}
.quality-page .quality-4 .btn {
  font-size: 20px;
}
.quality-page .quality-4 .btn div {
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #999;
  color: white;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  transition: 0.5s;
  cursor: pointer;
  cursor: hand;
}
.quality-page .quality-4 .btn div.prev {
  right: 103%;
}
.quality-page .quality-4 .btn div.next {
  left: 103%;
}
.quality-page .quality-4 .btn div:hover {
  background-color: var(--color);
  color: white;
}
.quality-page .quality-5 {
  padding: 110px 0;
}
.quality-page .quality-5 .box .left {
  vertical-align: middle;
  padding-right: 4%;
}
.quality-page .quality-5 span.h2 {
  margin-bottom: 0.5em;
}
.quality-page .quality-5 .list ul li {
  font-size: 16px;
  padding: 1em 0;
  border-bottom: 1px solid #e3e6ea;
}
.quality-page .quality-5 .list ul li span.h6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.quality-page .quality-5 .list ul li span.h6 i {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  position: relative;
}
.quality-page .quality-5 .list ul li span.h6 i:after,
.quality-page .quality-5 .list ul li span.h6 i:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: black;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.quality-page .quality-5 .list ul li span.h6 i:before {
  transform: translateY(-50%) rotate(90deg);
}
.quality-page .quality-5 .list ul li .text {
  margin-top: 1em;
  display: none;
}
.quality-page .quality-5 .list ul li.active span.h6 i:before {
  transform: translateY(-50%) rotate(0);
}
.quality-page .quality-5 .list ul li.active span.h6 i:after,
.quality-page .quality-5 .list ul li.active span.h6 i:before {
  background-color: var(--color);
}
.quality-page .quality-5 .list ul li.active span.h6 {
  color: var(--color);
}
.quality-page .quality-5 .box .right {
  padding-left: 7%;
  vertical-align: middle;
}
.quality-page .quality-5 .box .right .slick1 {
  position: relative;
}
.quality-page .quality-5 .box .right .slick1 img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
}
.quality-page .quality-5 .box .right .slick1 img.active {
 opacity: 1;
  position: static;
  z-index: 1;
}
.quality-page .quality-7 {
  padding: 100px 0;
}
.quality-page .quality-7 span.h2 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 1.5em;
}
.quality-page .quality-7 .box {
  margin-top: 60px;
}
.quality-page .quality-7 .box .left {
  width: 66%;
  padding-right: 4%;
}
.quality-page .quality-7 .box .left .text {
  font-size: 14px;
}
.quality-page .quality-7 .box .left .text>* {
 margin: 1em 0;
}
.quality-page .quality-7 .box .left .text .f18 {
  font-size: 1.3em;
}
.quality-page .quality-7 .box .left .text .f20 {
  font-size: 1.45em;
}
.quality-page .quality-7 .box .left .text .f24 {
 font-size: 1.7em;
}
.quality-page .quality-7 .box .left .text span {
  color: var(--color);
}
.quality-page .quality-7 .box .right {
  width: 34%;
}
@media screen and (max-width: 1600px) {
  .quality-page {
    padding-top: 70px;
  }
  .quality-page .quality-1 {
    padding: 50px 0;
  }
  .quality-page span.h3{
    font-size: 28px;
      font-weight: 600;
  }
}
@media screen and (max-width: 1250px) {
 .quality-page span.h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .quality-page .quality-5 .box .left,
  .quality-page .quality-5 .box .right,
  .quality-page .quality-2 .slide .left,
  .quality-page .quality-3 .box .left {
    padding: 0 !important;
    width: 100%;
  }
  .quality-page .quality-2 .slide .right,
  .quality-page .quality-3 .box .right {
    padding: 0 !important;
    width: 100%;
    margin-top: 20px;
  }
  .quality-page .quality-2 .slide,
  .quality-page .quality-3 .box {
    direction: ltr !important;
    display: block;
  }
  .quality-page .quality-2 .slide .left .img {
    height: 240px;
  }
  .quality-page .quality-3 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 700px) {
  .quality-page {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1250px) {
  .quality-page .quality-4 .btn div.prev {
    left: 0;
    right: auto;
  }
  .quality-page .quality-4 .btn div.next {
    right: 0;
    left: auto;
  }
  .quality-page .quality-7 .box .left {
    padding-right: 0;
    width: 100%;
  }
  .quality-page .quality-7 .box .right {
    display: none;
  }
}
.prodet-page .prodet-1 .text .con {
    font-size: 18px;
    line-height: 1.8;
    color: #83827F;
    margin-bottom: 18px;
    max-height: 300px;
    overflow: auto;
}

.seoPublic .Auxil-form .form ul {
    margin: -10px;
}

.seoPublic .Auxil-form .form ul li {
    padding: 10px;
}

.seoPublic .Auxil-form .form ul li input,
.seoPublic .Auxil-form .form ul li textarea {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-form .form ul li textarea {
    height: 100px;
}

.seoPublic .Auxil-form .form ul li input:focus,
.seoPublic .Auxil-form .form ul li textarea:focus {
    border-color: var(--color);
}

.seoPublic .Auxil-form .form ul li.wid-100 {
    width: 100%;
}

.seoPublic .Auxil-form .form ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--color);
    color: whitesmoke;
    border: none;
}

.seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
    background: #222;
}
@media screen and (max-width: 1400px){
  .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea{
      font-size: 14px;
    }
}
.bold{
  font-weight: bold;
}