@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins.eot');
  src: url('../fonts/Poppins.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins.woff2') format('woff2'), url('../fonts/Poppins.woff') format('woff'), url('../fonts/Poppins.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #1388c8;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1650px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header.inner {
    position: sticky;
    background-color: white;
    color: black;
}
#header .nav .ui.menu {
  margin: 0 auto;
  height: 110px;
}
#header .nav .ui.menu .menu-box {
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a:before {
  content: '';
  width: 1.33333333em;
  height: 1.33333333em;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--color);
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > :before,
#header .nav .ui.menu .menu-box ul.menu > li.active > :before {
  opacity: 1;
}
#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: 14px;
  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 var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#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 ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#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:hover > ul {
  display: block;
}
#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 .yuy span {
  width: 1em;
  height: 1em;
  border-radius: 100%;
  border: 0.1em solid white;
  display: block;
}
#header .nav .ui.menu .yuy ul {
  right: 0;
  left: auto;
}
#header.active {
  background-color: black;
  color: white;
}
#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;
}
.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 .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#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;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 1.1;
}
.more {
  height: 3em;
  padding: 0 2.5em;
  border-radius: 1.5em;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover {
  background-color: black;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner li .content .left {
  max-width: 750px;
  margin-left: auto;
}
#banner li .content .left .text {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.c {
  content: '';
  width: 2em;
  height: 2em;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  left: 28.5%;
  z-index: -1;
  background-color: var(--color);
  opacity: .33;
}
#index-body .init-1 {
  position: relative;
  z-index: 1;
  background-color: #f7f7f7;
}
#index-body .init-1 .mask i {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  width: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-position: right center;
}
#index-body .init-1 .mask i.active {
  width: 100%;
}
#index-body .init-1 .left .slick-list {
  overflow: unset;
}
#index-body .init-1 .content {
  position: relative;
  z-index: 1;
}
#index-body .init-1 .content span.h2 {
  position: relative;
}
#index-body .init-1 .content span.h2:after {
  content: '';
  width: 2em;
  height: 2em;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  left: 28.5%;
  z-index: -1;
  background-color: var(--color);
  opacity: .33;
}
#index-body .init-1 .content .text {
  max-width: 460px;
  color: #696969;
}
#index-body .init-1 .img {
  margin-left: -15%;
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .slick-current .img {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 1;
}
#index-body .init-1 .right {
  color: #696969;
  line-height: 1.2;
}
#index-body .init-1 .right ul {
  position: relative;
  z-index: 1;
}
#index-body .init-1 .right ul:after {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  right: .25em;
  top: 0;
  margin-right: -1px;
  z-index: -1;
  background-color: #e0e0e0;
}
#index-body .init-1 .right li {
  max-width: 270px;
  margin-left: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: -webkit-calc(100% - .25em) center;
  -moz-transform-origin: -moz-calc(100% - .25em) center;
  -ms-transform-origin: calc(100% - .25em) center;
  transform-origin: calc(100% - .25em) center;
}
#index-body .init-1 .right li:after {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: #575757;
  margin-top: .35em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .right li.active {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: var(--color);
  font-weight: bold;
  max-width: 100%;
}
#index-body .init-1 .right li.active:after {
  background-color: var(--color);
}
#index-body .init-2 {
  background-color: var(--color);
  color: white;
}
#index-body .init-2 .more {
  background-color: black;
}
#index-body .init-2 .more:hover {
  background-color: white;
  color: var(--color);
}
#index-body .init-2 .text {
  line-height: 1.8;
}
#index-body .init-2 span.h2 {
  line-height: 1.2;
}
#index-body .init-3 {
  overflow: hidden;
}
#index-body .init-3 .list {
  padding-right: 31%;
  margin-right: -10%;
  overflow: hidden;
}
#index-body .init-3 .list .slick-list {
  overflow: unset;
}
#index-body .init-3 .list span.h6 {
  line-height: 1.25;
}
#index-body .init-3 .list .img img.pos {
  right: 0;
  bottom: 0;
  z-index: 1;
}
#index-body .init-3 .bottom .line {
  height: 1px;
  background-color: #eee;
  position: relative;
}
#index-body .init-3 .bottom .line i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .bottom .slickBtn div {
  width: 2.2em;
  height: 2.2em;
  border: 1px solid var(--color);
  background-color: transparent;
  color: var(--color);
}
#index-body .init-3 .bottom .slickBtn div:hover {
  background-color: var(--color);
  color: white;
}
#index-body .init-3 .bottom .slickBtn div.next {
  background-color: var(--color);
  color: white;
  border: none;
}
#index-body .init-3 .bottom .slickBtn div.next:hover {
  background-color: black;
}
#index-body .init-3 .bottom .more {
  margin-left: auto;
  border: 1px solid var(--color);
  color: black;
  background-color: transparent;
}
#index-body .init-3 .bottom .more:hover {
  background-color: var(--color);
  color: white;
}
#index-body .init-4 .left {
  position: relative;
}
#index-body .init-4 .left .bg {
  position: absolute;
  height: 100%;
  width: 120%;
  top: 0;
  right: 10%;
  z-index: -1;
}
#index-body .init-4 .right .list li {
  padding: 3%;
  border-bottom: 1px solid #eee;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .right .list li span.h6 {
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .right .list li span.h6 i.iconfont {
  width: 1.33333333em;
  height: 1.33333333em;
  border-radius: 100%;
  border: 1px solid #242424;
  color: #242424;
}
#index-body .init-4 .right .list li span.h6 i.iconfont:before {
  font-size: .7em;
}
#index-body .init-4 .right .list li .text {
  display: none;
}
#index-body .init-4 .right .list li.noline {
  border-bottom-color: transparent;
}
#index-body .init-4 .right .list li.active {
  border-bottom-color: transparent;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.09);
  background-color: white;
}
#index-body .init-4 .right .list li.active span.h6 {
  color: var(--color);
}
#index-body .init-4 .right .list li.active span.h6 i:before {
  content: '\e7b8';
}
#index-body .init-5 span.h2:after {
  content: '';
  width: 2em;
  height: 2em;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  left: 28.5%;
  z-index: -1;
  background-color: var(--color);
  opacity: .33;
  left: 23%;
}
#index-body .init-5 .list time {
  line-height: 1;
}
#index-body .init-5 .list time i {
  width: 1px;
  background-color: #787878;
}
#index-body .init-5 .list .text {
  color: #848484;
}
#index-body .init-6 {
  background-color: #282828;
  color: white;
}
#index-body .init-6 span.tag {
  text-decoration: underline;
}
#index-body .init-6 form input {
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  height: 2.22222222em;
  background-color: transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-6 form input:focus {
  border-bottom-color: var(--color);
}
#index-body .init-6 form input::-webkit-input-placeholder {
  color: white;
}
#index-body .init-6 form input:-moz-placeholder {
  color: white;
}
#index-body .init-6 form input::-moz-placeholder {
  color: white;
}
#index-body .init-6 form input:-ms-input-placeholder {
  color: white;
}
#index-body .init-6 form input::placeholder {
  color: white;
}
#index-body .init-6 form input[type="submit"] {
  padding: 0 2.22222222em;
  border: none;
  background-color: var(--color);
  color: white;
}
#index-body .init-6 form input[type="submit"]:hover {
  background-color: black;
}
#footer {
  background-color: black;
  color: white;
}
#footer span.h6 {
  line-height: 1.2;
}
#footer .share {
  line-height: 1;
}
#footer .nav {
  line-height: 1.2;
}
#footer .nav a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .nav a:hover {
  color: var(--color);
}
#footer .nav li {
  margin-top: .85em;
}
#footer .nav ul ul {
  display: none;
}
#footer .info {
  max-width: 445px;
}
#footer #ewm {
  max-width: 160px;
  border: 4px solid white;
}
#footer .coy {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#footer .coy svg {
  max-height: 1.625em;
  width: auto;
  fill: white;
  display: block;
}
@media screen and (max-width: 1250px) {
  #footer .slide:nth-child(2),
  #footer .slide:nth-child(4) {
    display: none;
  }
  #footer .slide .logo img {
    max-height: 70px;
  }
  #banner li .content .left {
    max-width: 50%;
    zoom: .9;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-1 .right {
    display: none;
  }
  #index-body .init-1 .left {
    width: 100%;
  }
  #index-body .init-4 .left {
    display: none;
  }
  #footer .slide {
    width: auto;
    max-width: 45%;
  }
}
@media screen and (max-width: 700px) {
  #footer .coy {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #index-body .init-6 form input {
    width: 100%;
  }
  #index-body .init-6 form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-1 li > .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-1 li > .flex .content {
    max-width: none;
    width: 100%;
    padding-bottom: 3%;
  }
  #index-body .init-1 li > .flex .img {
    width: 100%;
    margin: 0;
  }
  #banner li .content .left .text {
    display: none;
  }
  #banner li .content .left .more {
    display: none;
  }
  #index-body .init-3 .list {
    padding-right: 0;
    margin-right: 0;
  }
  #footer .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  #footer .box .slide {
    max-width: none;
  }
  #footer .box .share {
    gap: 15px;
    font-size: 16px;
  }
  .font-30 {
    font-size: 16px;
  }
  .font-48 {
    font-size: 20px;
  }
}
/* 栅格 */
.grid-box {
    font-size: 0;
[;letter-spacing: -4px;font-size: 12px;]
}
.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
[;letter-spacing: 0;]
}

.grid-box .column {
    width: 100%;
}
.grid-box.two>.column {
    width: 50%;
}
.grid-box.three>.column {
    width: 33.33333%;
}
.grid-box.four>.column {
    width: 25%;
}
.grid-box.five>.column {
    width: 20%;
}
.grid-box.six>.column {
    width: 16.6666667%;
}
.grid-box.seven>.column {
    width: 14.285714%;
}
.grid-box.eight>.column {
    width: 12.55%;
}
.grid-box.nine>.column {
    width: 11.11111111%;
}
.grid-box.ten>.column {
    width: 10%;
}
@media screen and (max-width: 1000px){
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 33.33333%;
    }
    .grid-box.four>.column {
        width: 33.33333%;
    }
    .grid-box.five>.column {
        width: 33.33333%;
    }

}
@media screen and (max-width: 700px){
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 50%;
    }
    .grid-box.four>.column {
        width: 50%;
    }
    .grid-box.five>.column {
        width: 50%;
    }

}
@media screen and (max-width: 500px){
    .grid-box.two>.column {
        width: 100%;
    }
    .grid-box.three>.column {
        width: 100%;
    }
    .grid-box.four>.column {
        width: 100%;
    }
    .grid-box.five>.column {
        width: 100%;
    }

}
#cms-desc {
  /*background-color: #f6f6f6;*/
  padding: 50px 0;
}
#cms-desc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#cms-desc ul li {
  width: auto;
  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;
}
#cms-desc ul li i {
  width: 90px;
}
#cms-desc ul li .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#cms-desc ul li .num {
  font-size: 36px;
}
#cms-desc ul li span {
  line-height: 1;
  color: var(--color);
}
.tit1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: bold;
}
.tit1.line::after {
    content: "";
    display: block;
    width: 55px;
    border-bottom: 2px solid var(--color);
    margin-top: 10px;
}
.tit1.line.txt-center::after {
    margin-left: auto;
    margin-right: auto;
}
.i-category {
    padding: 100px 0 200px;
}
.i-category .desc {
    font-size: 24px;
    max-width: 1000px;
    margin: auto;
    line-height: 2;
}
.i-category .list ul {
    margin: -20px;
}
.i-category .list ul li {
    padding: 20px;
}
.i-category .list .name {
    margin-top: 30px;
    font-size: 30px;
    font-weight: bold;
}
.i-category .list .arrows {
    position: absolute;
    top: 40%;
    cursor: pointer;
}
.i-category .list .arrows:hover path {
    fill: var(--color);
}
.i-category .list .arrows.arrow_l {
    left: -120px;
}
.i-category .list .arrows.arrow_r {
    right: -120px;
}
a.baseBtn {
    line-height: 45px;
    display: inline-block;
    font-size: 20px;
    border: 2px solid var(--color);
    padding: 0 30px;
    border-radius: 10px;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
}
a.baseBtn.mask {
    color: white;
    background-color: #a63111;
}
a.baseBtn.mask:hover{
    background-color: #000;
}
a.baseBtn:hover {
    color: white;
    background-color: var(--color);
}
.our-about {
    background-color: #e05e23;
    position: relative;
    padding: 0 0 160px;
    z-index: 2;
}
.our-about .blur {
    position: absolute;
    top: -550px;
    left: 0;
    width: 1104px;
    height: 1267px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: .35;
    z-index: 1;
}
.our-about .blur img {
    display: block;
}
.our-about .circles {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.our-about .circles .circle {
    position: absolute;
    top: -webkit-calc(50% + 100px);
    top: -moz-calc(50% + 100px);
    top: calc(50% + 100px);
    left: 50%;
    width: 2000px;
    height: 2000px;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-animation-name: about_circle;
    -moz-animation-name: about_circle;
    animation-name: about_circle;
    -webkit-animation-duration: 15s;
    -moz-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.555, 0.32, 0.205, 0.63);
    -moz-animation-timing-function: cubic-bezier(0.555, 0.32, 0.205, 0.63);
    animation-timing-function: cubic-bezier(0.555, 0.32, 0.205, 0.63);
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 2;
}
.our-about .circles .circle:nth-child(2) {
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    animation-delay: 5s;
}
.our-about .left {
    position: relative;
    z-index: 1;
}
.our-about .left span.tag {
    font-size: 24px;
    color: white;
}
.our-about .left .name {
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
    color: white;
}
.our-about .left .desc {
    font-size: 20px;
    color: #eeeeee;
    line-height: 2;
}
.our-about .left .desc h1 {
    display: inline-block;
}
.our-about .right {
    margin-top: -60px;
    position: relative;
    z-index: 1;
}
@-webkit-keyframes about_circle {
    0% {
        opacity: .5;
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}
@-moz-keyframes about_circle {
    0% {
        opacity: .5;
        -webkit-transform: translate(-50%, -50%) scale(0);
        -moz-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}
@keyframes about_circle {
    0% {
        opacity: .5;
        -webkit-transform: translate(-50%, -50%) scale(0);
        -moz-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}
.section-general-experience {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    margin-top: -85px;
}
.section-general-experience .flex-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 250px;
}
.section-general-experience .flex-wrapper .left-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #131313;
    -webkit-clip-path: polygon(85px 0, 100% 0, -webkit-calc(100% - 85px) 100%, 0 100%);
    clip-path: polygon(85px 0, 100% 0, -moz-calc(100% - 85px) 100%, 0 100%);
    clip-path: polygon(85px 0, 100% 0, calc(100% - 85px) 100%, 0 100%);
    z-index: 1;
}
.section-general-experience .flex-wrapper .left-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    -moz-transition-property: opacity,transform,-moz-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform,-moz-transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .7s;
    -moz-transition-duration: .7s;
    transition-duration: .7s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -moz-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.section-general-experience .flex-wrapper .left {
    position: relative;
    width: 450px;
    height: 225px;
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-clip-path: polygon(85px 0, 100% 0, -webkit-calc(100% - 85px) 100%, 0 100%);
    clip-path: polygon(85px 0, 100% 0, -moz-calc(100% - 85px) 100%, 0 100%);
    clip-path: polygon(85px 0, 100% 0, calc(100% - 85px) 100%, 0 100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
}
.section-general-experience .flex-wrapper .right {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
    margin-left: -85px;
    padding: 70px 0 0 120px;
    z-index: 1;
}
.section-general-experience .flex-wrapper .right:before {
    content: '';
    background-image: -webkit-gradient(linear, left top, right top, from(#131313), to(#211414));
    background-image: -webkit-linear-gradient(left, #131313, #211414);
    background-image: -moz-linear-gradient(left, #131313, #211414);
    background-image: linear-gradient(to right, #131313, #211414);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 70vw;
    z-index: 1;
}
.section-general-experience .flex-wrapper .right-flex {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    z-index: 2;
}
.section-general-experience .flex-wrapper .right-flex--right {
    margin-left: auto;
    margin-right: auto;
}
.section-general-experience .flex-wrapper .right-flex--left_title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}
.section-general-experience .flex-wrapper .right-flex--left_cta {
    margin-top: 47px;
}
.section-general-experience .flex-wrapper .right-flex--left_cta a {
    color: #cf4520;
    font-size: 18px;
    text-transform: uppercase;
    width: 145px;
    display: inline-block;
    position: relative;
    -webkit-transition-property: color, letter-spacing;
    -moz-transition-property: color, letter-spacing;
    transition-property: color, letter-spacing;
    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -moz-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.section-general-experience .flex-wrapper .right-flex--left_cta a::after,
.section-general-experience .flex-wrapper .right-flex--left_cta a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 65vw;
    height: 1px;
    pointer-events: none;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -moz-transition-property: transform, -moz-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform, -moz-transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -moz-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.section-general-experience .flex-wrapper .right-flex--left_cta a::before {
    background-color: #cf4520;
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    transition-duration: 2s;
    z-index: 1;
}
.section-general-experience .flex-wrapper .right-flex--left_cta.appear a::before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    transition-delay: .3s;
}
.section-general-experience .flex-wrapper .right-flex--right_description {
    width: 500px;
}
.section-general-experience .flex-wrapper .right-flex--right_description p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}
.our-product {
    overflow: hidden;
    padding: 150px 0;
}
.our-product .slick-list {
    padding-right: 100px;
}
.our-product .top {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.our-product .top p {
    max-width: 930px;
    margin-left: auto;
    line-height: 2;
}
.our-product .center {
    margin-bottom: 50px;
    margin-right: -200px;
}
.our-product .center ul {
    margin: -15px;
}
.our-product .center ul li {
    padding: 15px;
}
.our-product .center ul li .box {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    display: block;
}
.our-product .center ul li .box i {
    position: absolute;
    z-index: 1;
    background: #f26122;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    width: 0;
    height: 0;
}
.our-product .center ul li .box i.ie1 {
    width: 2px;
    top: 0;
    left: 0;
}
.our-product .center ul li .box i.ie2 {
    width: 2px;
    bottom: 0;
    right: 0;
}
.our-product .center ul li .box i.ie3 {
    height: 2px;
    top: 0;
    right: 0;
}
.our-product .center ul li .box i.ie4 {
    height: 2px;
    bottom: 0;
    left: 0;
}
.our-product .center ul li .box:hover i.ie1 {
    height: 100%;
    bottom: 0;
    top: auto;
}
.our-product .center ul li .box:hover i.ie2 {
    height: 100%;
    top: 0;
}
.our-product .center ul li .box:hover i.ie3 {
    width: 100%;
    left: 0;
}
.our-product .center ul li .box:hover i.ie4 {
    width: 100%;
    right: 0;
    left: auto;
}
.our-product .center ul li .box:hover .name{
    color: var(--color);
}
.our-product .center .text{
    padding: 15px;
}
.our-product .center .name {
    font-size: 30px;
    font-weight: bold;
    margin-top: 30px;
    opacity: 0;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.our-product .center p {
    margin-top: 10px;
    opacity: 0;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.our-product .center .slick-active .name {
    opacity: 1;
}
.our-product .center .slick-active p {
    opacity: 1;
    line-height: 2;
}
.our-product .bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.our-product .bottom .arrows {
    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;
    width: 65%;
}
.our-product .bottom .arrows::before {
    content: "";
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 1px solid var(--color);
    margin-right: 25px;
}
.our-product .bottom .arrows span {
    margin-right: 15px;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 52px;
    border-radius: 50%;
    text-align: center;
    color: var(--color);
    border: 1px solid var(--color);
    font-size: 30px;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    cursor: pointer;
}
.our-product .bottom .arrows span:hover {
    color: white;
    background-color: var(--color);
}
.i-why {
    overflow: hidden;
    padding-bottom: 160px;
}
.i-why .left {
    width: 35%;
}
.i-why .left .img {
    margin-left: -200px;
}
.i-why .right {
    width: 65%;
}
.i-why .right ul li {
    padding: 25px;
    border-bottom: 1px solid #eeeeee;
    border-radius: 10px;
}
.i-why .right ul li .name {
    font-size: 30px;
    font-weight: bold;
    position: relative;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.i-why .right ul li .name i {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid black;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../images/plus.png);
    background-position: center;
    background-repeat: no-repeat;
}
.i-why .right ul li p {
    margin-top: 10px;
    display: none;
    line-height: 2;
}
.i-why .right ul li.active {
    -webkit-box-shadow: 0 0 15px #ddd;
    box-shadow: 0 0 15px #ddd;
    border-color: transparent;
}
.i-why .right ul li.active .name {
    color: var(--color);
}
.i-why .right ul li.active .name i {
    background-image: url(../images/minus.png);
}
.i-why .right ul li:not(:last-child) {
    margin-bottom: 10px;
}
.i-advantage {
    background: url(../images/adv-bg.jpg) no-repeat center;
    background-size: cover;
    color: white;
    padding: 100px 0;
}
.i-advantage .bg {
    background: url(../images/adv-img.jpg) no-repeat center;
    background-size: cover;
    padding: 180px 0;
    margin-bottom: 100px;
}
.i-advantage .lock {
    margin: auto;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--color);
    cursor: pointer;
}
.i-advantage .lock:hover #key {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    -webkit-animation: draw .5s;
    -moz-animation: draw .5s;
    animation: draw .5s;
}
.i-advantage .box {
    max-width: 1400px;
    margin: auto;
}
.i-advantage ul {
    margin: -30px -40px;
}
.i-advantage ul li {
    padding: 30px 40px;
}
.i-advantage ul li .name {
    margin-bottom: 10px;
    font-size: 30px;
    color: #ff6722;
    font-weight: bold;
}
@-webkit-keyframes draw {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 400;
    }
}
@-moz-keyframes draw {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 400;
    }
}
@keyframes draw {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 400;
    }
}
.i-application {
    padding: 150px 0;
}
.i-application span.tag {
    font-size: 24px;
}
.i-application p {
    font-size: 20px;
    line-height: 2;
}
.i-application ul {
    margin: -25px;
    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;
}
.i-application ul li {
    padding: 25px;
}
.i-application ul li:nth-child(1) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.i-application ul li:nth-child(5) {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.i-application ul li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.i-application ul li .img {
    position: relative;
}
.i-application ul li .img::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(235, 91, 25, 0.7);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.i-application ul li .img .name {
    position: absolute;
    width: 99%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-align: center;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.i-application ul li .img:hover::before {
    opacity: 0;
}
.i-application ul li .img:hover .name {
    opacity: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.contact-box {
    background: url(../images/contact-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 80px 0;
}
.contact-box span.tag {
    margin-bottom: 20px;
    display: inline-block;
    color: white;
    border-bottom: 1px solid white;
}
.contact-box .tit1 {
    color: white;
}
.contact-box form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.contact-box form input {
    padding-bottom: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 50px;
    font-size: 18px;
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.contact-box form input::-webkit-input-placeholder {
    color: white;
}
.contact-box form input:-moz-placeholder {
    color: white;
}
.contact-box form input::-moz-placeholder {
    color: white;
}
.contact-box form input:-ms-input-placeholder {
    color: white;
}
.contact-box form input::-ms-input-placeholder {
    color: white;
}
.contact-box form input:focus {
    border-color: var(--color);
}
.contact-box form button {
    font-size: 18px;
    height: 40px;
    width: 130px;
    border: none;
    color: white;
    background-color: var(--color);
}
@media screen and (max-width: 1600px) {
    .tit1 {
        font-size: 36px;
    }
    #cms-desc ul li .num {
        font-size: 30px;
    }
    .i-category .desc {
        font-size: 20px;
    }
    .i-category .list .arrows.arrow_l {
        left: -60px;
    }
    .i-category .list .arrows.arrow_r {
        right: -60px;
    }
    .i-category .list .name {
        font-size: 24px;
    }
    .our-about .left .name {
        font-size: 40px;
    }
    .our-about .left span.tag {
        font-size: 20px;
    }
    .our-about .left .desc {
        font-size: 18px;
    }
    .section-general-experience .flex-wrapper {
        padding-left: 0;
    }
    .our-product .center .name {
        font-size: 24px;
    }
    .i-why .right ul li .name {
        font-size: 24px;
    }
    .i-why .right ul li {
        padding: 20px;
    }
    .i-application ul li .img .name {
        font-size: 30px;
    }
    .i-application span.tag {
        font-size: 20px;
    }
    .i-application p {
        font-size: 18px;
    }
}
@media screen and (max-width: 1400px) {
    #cms-desc ul li {
        max-width: 300px;
    }
    #cms-desc ul {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #cms-desc ul li span {
        line-height: 1.5;
    }
    #cms-desc ul li {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .i-category .desc {
        font-size: 18px;
    }
    .i-category .list .name {
        margin-top: 15px;
        font-size: 20px;
    }
    .our-product .top p {
        max-width: 700px;
    }
    .our-product .center {
        margin-right: 0;
    }
    .our-product .slick-list {
        padding-right: 0;
    }
    .i-why .right ul li .name {
        font-size: 20px;
    }
    .i-why .right ul li .name i {
        width: 30px;
        height: 30px;
    }
    .i-application ul li .img .name {
        font-size: 24px;
    }
}
@media screen and (max-width: 1200px) {
    #cms-desc ul li .num {
        font-size: 22px;
    }
    #cms-desc ul li i img {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }
    #cms-desc ul li i {
        width: 60px;
    }
    #cms-desc ul li {
        max-width: 250px;
    }
    .i-category .desc {
        font-size: 16px;
    }
    .i-category .list .name {
        font-size: 18px;
    }
    .i-category .list ul {
        margin: -15px;
    }
    .i-category .list ul li {
        padding: 15px;
    }
    a.baseBtn {
        font-size: 16px;
    }
    .our-about .left .name {
        font-size: 30px;
    }
    .our-about .left .desc {
        font-size: 16px;
    }
    .section-general-experience .flex-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        flex-direction: column;
        padding: 0;
    }
    .section-general-experience .flex-wrapper .left {
        -webkit-clip-path: polygon(70px 0, 100% 0, -webkit-calc(100vw + 30px) 100%, 0 100%);
        clip-path: polygon(70px 0, 100% 0, -moz-calc(100vw + 30px) 100%, 0 100%);
        clip-path: polygon(70px 0, 100% 0, calc(100vw + 30px) 100%, 0 100%);
        width: -webkit-calc(100vw + 30px);
        width: -moz-calc(100vw + 30px);
        width: calc(100vw + 30px);
        left: -50px;
    }
    .section-general-experience .flex-wrapper .left-image {
        -webkit-clip-path: polygon(70px 0, 100% 0, -webkit-calc(100% - 70px) 100%, 0 100%);
        clip-path: polygon(70px 0, 100% 0, -moz-calc(100% - 70px) 100%, 0 100%);
        clip-path: polygon(70px 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
    }
    .section-general-experience .flex-wrapper .right {
        width: 100%;
        padding: 0;
        margin: -20px 0 0;
        -webkit-box-flex: unset;
        -ms-flex-positive: unset;
        -webkit-flex-grow: unset;
        -moz-box-flex: unset;
        flex-grow: unset;
        z-index: 2;
    }
    .section-general-experience::after {
        background-image: -webkit-gradient(linear, left top, right top, from(#131313), to(#211414));
        background-image: -webkit-linear-gradient(left, #131313, #211414);
        background-image: -moz-linear-gradient(left, #131313, #211414);
        background-image: linear-gradient(to right, #131313, #211414);
        height: -webkit-calc(100% - 80px);
        height: -moz-calc(100% - 80px);
        height: calc(100% - 80px);
    }
    .section-general-experience .flex-wrapper .right:before {
        display: none;
    }
    .section-general-experience::after {
        content: '';
        background-color: #000;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 50%;
        z-index: 1;
    }
    .section-general-experience::after {
        background-image: -webkit-gradient(linear, left top, right top, from(#131313), to(#211414));
        background-image: -webkit-linear-gradient(left, #131313, #211414);
        background-image: -moz-linear-gradient(left, #131313, #211414);
        background-image: linear-gradient(to right, #131313, #211414);
        height: -webkit-calc(100% - 80px);
        height: -moz-calc(100% - 80px);
        height: calc(100% - 80px);
    }
    .section-general-experience .flex-wrapper .right-flex--left_cta {
        display: none;
    }
    .section-general-experience .flex-wrapper .right-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        flex-direction: column;
    }
    .section-general-experience .flex-wrapper .right-flex--right {
        margin: 35px 0 0;
    }
    .section-general-experience {
        padding: 0 0 120px;
    }
    .section-general-experience .flex-wrapper .right-flex--right_description p {
        font-size: 16px;
    }
    .tit1 {
        font-size: 30px;
    }
    .i-advantage .bg {
        padding: 150px 0;
    }
    .i-application ul {
        margin: -15px;
    }
    .i-application ul li {
        padding: 15px;
    }
    .i-application span.tag {
        font-size: 16px;
    }
    .i-application p {
        font-size: 16px;
    }
    .contact-box form input {
        font-size: 16px;
    }
    .hide-1200 {
        display: none!important;
    }
}
@media screen and (max-width: 1000px) {
    #cms-desc ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -15px;
    }
    #cms-desc ul li {
        width: 50%;
        max-width: 100%;
        padding: 15px;
    }
    .i-category {
        padding: 60px 0;
    }
    .our-about {
        overflow: hidden;
    }
    .our-about .left {
        width: 100%!important;
        padding-right: 0;
    }
    .our-about .right {
        width: 100%!important;
        margin-top: 60px;
    }
    .our-product {
        padding: 60px 0;
    }
    .our-product .top {
        display: block;
    }
    .our-product .center .name {
        font-size: 20px;
    }
    .i-why {
        padding-bottom: 60px;
    }
    .i-why .left {
        display: none;
    }
    .i-why .right {
        width: 100%;
        padding-left: 0;
    }
    .i-advantage {
        padding: 60px 0;
    }
    .i-advantage .bg {
        margin-bottom: 60px;
    }
    .i-advantage .bg {
        padding: 100px 0;
    }
    .i-advantage ul {
        margin: -15px;
    }
    .i-advantage ul li {
        padding: 15px;
    }
    .i-advantage ul li .name {
        font-size: 20px;
    }
    .i-application {
        padding: 60px 0;
    }
    .i-application ul li {
        width: 50%!important;
        -webkit-box-ordinal-group: 1!important;
        -webkit-order: 0!important;
        -moz-box-ordinal-group: 1!important;
        -ms-flex-order: 0!important;
        order: 0!important;
    }
    .i-application ul li .img .name {
        font-size: 20px;
    }
    .contact-box {
        padding: 40px 0;
    }
    .contact-box form {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .contact-box form button {
        width: 100%;
    }
    .contact-box form input {
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -moz-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
        padding: 10px 0;
        margin-bottom: 10px;
    }
    .hide-1000 {
        display: none!important;
    }
    .section-general-experience {
        padding-bottom: 60px;
    }
    .i-category .list .arrows {
        display: none!important;
    }
}
@media screen and (max-width: 700px) {
    .tit1 {
        font-size: 24px;
    }
    #cms-desc {
        display: none;
    }
    .i-category .desc {
        font-size: 14px;
    }
    .our-about .left .name {
        font-size: 24px;
        line-height: 2;
    }
    .our-about .left span.tag {
        font-size: 14px;
    }
    .our-about .left .desc {
        font-size: 14px;
    }
    a.baseBtn {
        font-size: 14px;
    }
    .section-general-experience .flex-wrapper .right-flex--left_title {
        font-size: 24px;
    }
    .section-general-experience .flex-wrapper .right-flex--right_description p {
        font-size: 14px;
    }
    .i-why {
        display: none;
    }
    .i-advantage {
        display: none;
    }
    .i-application {
        display: none;
    }
    .contact-box form input {
        font-size: 14px;
    }
    .section-general-experience .flex-wrapper .right-flex--right_description {
        width: 100%;
    }
    .our-product .bottom .arrows {
        width: auto;
    }
    .our-product .bottom .arrows::before {
        display: none;
    }
}
/*inner-page*/
.inner-banner {
    padding: 40px 0 30px;
    color: white;
    background: url("../images/inner-banner.jpg") no-repeat;
    background-size: cover;
}
.inner-banner .box h1 {
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 2;
}
.inner-banner .box h2 {
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 2;
}
.inner-banner .box .mbx {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 2;
}
.inner-banner .box .mbx a:hover {
    text-decoration: underline;
}
.inner-page {
    position: relative;
    z-index: 1;
    margin-top: 100px;
}
.inner-page .ui.container {
    max-width: 1600px;
}
.related_products{
    margin-top: 60px;
}
.related_products .container{
    padding: 0;
    max-width: 1520px;
}
.related_products .tip_title{
    font-size: 30px;
    line-height: 2;
}
.related_products .swiper{
    margin-top: 30px;
    margin-bottom: 50px;
}
.related_products .swiper .swiper-wrapper{
    margin: -15px;
}
.related_products .swiper .swiper-slide{
    padding: 15px;
}
.related_products .swiper .swiper-slide .img{
    /*height: 330px;*/
    position: relative;
}
.related_products .swiper .swiper-slide .img .sy{
    position: absolute;
    top: 150px;
    left: 10%;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    -o-pointer-events: none;
    pointer-events: none;
}
.related_products .swiper .swiper-slide .img .sy img{
    opacity: 0.3;
    width: 80%;
}
.related_products .swiper .swiper-slide a{
    display: block;
    overflow: hidden;
    transition: all .5s;
}
.related_products .swiper .swiper-slide a:hover{
    color: var(--color);
}
.related_products .swiper .swiper-slide .img img{
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}
.related_products .swiper .swiper-slide .title{
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}
.related_products .swiper .swiper-slide .des{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.factory-page .navList {
    margin-top: 80px;
}
.factory-page .navList 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;
    justify-content: center;
}
.factory-page .navList ul li {
    font-weight: 300;
    font-size: 24px;
    color: #373330;
    width: auto;
    text-transform: capitalize;
    display: inline-block;
    margin-right: 20px;
}
.factory-page .navList ul li a {
    display: block;
    padding: 0 30px;
    position: relative;
    font-size: 20px;
}
.factory-page .navList ul li a:after {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    top: 110%;
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.factory-page .navList ul li a:hover:after, .factory-page .navList ul li a.active:after {
    width: 100%;
}
.factory-page .imgList {
    padding: 60px 0;
}
.factory-page .imgList .list ul {
    margin: -10px;
}
.factory-page .imgList .list ul li {
    padding: 10px;
}
.factory-page .imgList .list ul li a {
    display: block;
    position: relative;
}
.factory-page .imgList .list ul li a h6 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    background: rgba(0,0,0,.3);
    color: #fff;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.factory-page .imgList .list ul li a img {
    display: block;
    width: 100%;
}
.factory-page .imgList .list ul li a:hover h6 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.factory-page .factory-part {
    padding: 50px 0;
}
.factory-page .factory-part .tit {
    text-align: center;
}
.factory-page .factory-part .tit h2 {
    color: #2a2a2a;
    font-size: 44px;
    font-weight: bold;
}
.factory-page .factory-part .tit p {
    color: #666;
    font-size: 16px;
}
.factory-page .factory-part .factory-part-list {
    margin-top: 20px;
}
.factory-page .factory-part .factory-part-list ul li {
    padding: 0 2px;
    margin-top: 5px;
}
.factory-page .factory-part .factory-part-list ul li .img-box .text {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    background: #fff;
    text-align: center;
}
.factory-page .factory-part .factory-part-list ul li .img-box .text h2 {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 18px;
}
.factory-page .factory-part .factory-part-list ul li .img-box .text p {
    color: #666;
    line-height: 30px;
    list-style-type: disc;
    list-style-position: inside;
}
.contact-page .contact-1 {
    padding: 0px 0 110px;
}
.contact-page .contact-1 .left {
    width: 52%;
}
.contact-page .contact-1 .left span.tag {
    font-weight: 500;
    font-size: 24px;
    color: var(--color);
    display: block;
    line-height: 1.2;
}
.contact-page .contact-1 .left h2 {
    font-size: 40px;
    color: #191919;
    font-weight: bold;
    line-height: 1.2;
    margin: 15px 0 20px;
    text-transform: uppercase;
}
.contact-page .contact-1 .left h2:after {
    content: '';
    display: block;
    width: 20%;
    height: 4px;
    background: var(--color);
    margin-top: 10px;
}
.contact-page .contact-1 .left .list ul{
    margin: -15px;
}
.contact-page .contact-1 .left .list ul li{
    padding: 15px;
}
.contact-page .contact-1 .left .list ul li .box2{
    display: flex;
    align-items: center;
}
.contact-page .contact-1 .left .list ul li .box2 p{
    font-size: 18px;
    font-family: arial;
    flex: 1;
    padding-left: 20px;
    line-height: 2;
}
.contact-page .contact-1 .left .text {
    font-weight: 300;
    font-size: 16px;
    color: #101010;
    line-height: 1.8;
    text-align: justify;
}
.contact-page .contact-1 .left .share {
    margin-top: 20px;
}
.contact-page .contact-1 .left .share ul li{
    margin-bottom: 10px;
    width: 50%;
    position: relative;
}
.contact-page .contact-1 .left .share ul li:last-child{
    margin-bottom: 0;
}
.contact-page .contact-1 .left .share ul li i{
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 100%;
    border: 1px solid #cfcfcf;
    text-align: center;
    font-size: 16px;
    color: black;
    margin-right: 10px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    vertical-align: middle;
}
.contact-page .contact-1 .left .share ul li span{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
}
.contact-page .contact-1 .left .share ul li .wechat{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100px;
    display: none;
}
.contact-page .contact-1 .left .share ul li:hover .wechat{
    display: block;
}
.contact-page .contact-1 .left .share ul li a {
    display: block;
}
.contact-page .contact-1 .left .share ul li:hover i {
    color: white;
    border-color: var(--color);
    background: var(--color);
}
.contact-page .contact-1 .right {
    width: 48%;
    padding-left: 8%;
}
.contact-page .contact-1 .right .form ul {
    margin: -15px;
}
.contact-page .contact-1 .right .form ul li {
    padding: 15px;
}
.contact-page .contact-1 .right .form ul li.wid-100 {
    width: 100%;
}
.contact-page .contact-1 .right .form ul li input,
.contact-page .contact-1 .right .form ul li textarea {
    width: 100%;
    line-height: 28px;
    padding: 16px;
    border-radius: 5px;
    border: 1px solid #ababab;
    display: block;
    font-size: 18px;
    color: #ababab;
}
.contact-page .contact-1 .right .form ul li input::-webkit-input-placeholder, .contact-page .contact-1 .right .form ul li textarea::-webkit-input-placeholder {
    color: #666;
}
.contact-page .contact-1 .right .form ul li input:-moz-placeholder, .contact-page .contact-1 .right .form ul li textarea:-moz-placeholder {
    color: #666;
}
.contact-page .contact-1 .right .form ul li input::-moz-placeholder, .contact-page .contact-1 .right .form ul li textarea::-moz-placeholder {
    color: #666;
}
.contact-page .contact-1 .right .form ul li input:-ms-input-placeholder, .contact-page .contact-1 .right .form ul li textarea:-ms-input-placeholder {
    color: #666;
}
.contact-page .contact-1 .right .form ul li input::placeholder,
.contact-page .contact-1 .right .form ul li textarea::placeholder {
    color: #666;
}
.contact-page .contact-1 .right .form ul li textarea {
    height: 170px;
}
.contact-page .contact-1 .right .form ul li input[type="submit"] {
    font-weight: 500;
    font-size: 20px;
    color: white;
    background: var(--color);
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .contact-1 .right .form ul li input[type="submit"]:hover {
    opacity: 1;
    background: #000;
}
.contact-page .contact-2 {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f7f5f5;
}
.contact-page .contact-2 .left {
    padding-right: 2%;
    vertical-align: middle;
}
.contact-page .contact-2 .left span.tag {
    font-size: 132px;
    -webkit-text-stroke: 1px #e7e7e7;
    text-transform: uppercase;
    line-height: .8;
    color: transparent;
    display: block;
    margin-bottom: -47px;
}
.contact-page .contact-2 .left h2 {
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color);
}
.contact-page .contact-2 .left h4 {
    font-weight: bold;
    font-size: 30px;
    color: #191f26;
    text-transform: uppercase;
    margin: 25px 0 20px;
    line-height: 1;
}
.contact-page .contact-2 .left .text {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: #484848;
    margin-top: 25px;
}
.contact-page .contact-2 .left .list {
    margin-top: 40px;
    padding: 30px 0px;
}
.contact-page .contact-2 .left .list ul {
    margin: -10px -15px;
}
.contact-page .contact-2 .left .list ul li {
    padding: 10px 15px;
}
.contact-page .contact-2 .left .list ul li img{width: 80%;}
.contact-page .contact-2 .left .list ul li .box2 {
    display: inline-block;
    position: relative;
    padding-left: 58px;
    width: 100%;
}
.contact-page .contact-2 .left .list ul li .box2 i {
    position: absolute;
    left: 0;
    top: 0;
}
.contact-page .contact-2 .left .list ul li .box2 h6 {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin: 5px 0;
}
.contact-page .contact-2 .left .list ul li .box2 p {
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}
.contact-page .contact-2 .left .list ul li:nth-child(odd) {
    width: 100%;
    margin-top: 10px;
}
.contact-page .contact-2 .left .list ul li:nth-child(even) {
    width: 100%;
    margin-top: 10px;
}
.contact-page .contact-2 .right {
    vertical-align: middle;
}
.contact-page .map .amap-copyright,
.contact-page .map .amap-logo {
    display: none !important;
}
.service-page .service-1 {
    padding: 80px 0 60px;
}
.service-page .service-1 span.tag {
    font-weight: 500;
    font-size: 24px;
    color: var(--color);
    line-height: 1.2;
    display: block;
}
.service-page .service-1 h2 {
    font-weight: bold;
    font-size: 44px;
    color: #191919;
    line-height: 1.2;
    margin: 15px 0;
}
.service-page .service-1 .text {
    font-weight: 300;
    font-size: 16px;
    color: #101010;
    line-height: 1.8;
    margin-top: 1.5rem;
}
.service-page .service-1 .list {
    margin-top: 75px;
}
.service-page .service-1 .list ul {
    margin: -20px;
}
.service-page .service-1 .list ul li {
    padding: 20px;
}
.service-page .service-1 .list ul li .box {
    -o-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
    border-bottom: 4px solid var(--color);
}
.service-page .service-1 .list ul li .box a.img-box {
    display: block;
}
.service-page .service-1 .list ul li .box a.img-box img {
    width: 100%;
}
.service-page .service-1 .list ul li .box .content {
    padding: 25px 15px 10px;
}
.service-page .service-1 .list ul li .box .content h4 {
    font-weight: 600;
    font-size: 24px;
    color: #191919;
    display: block;
    line-height: 1.2;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    min-height: 2.4em;
}
.service-page .service-1 .list ul li .box .content h4:hover {
    color: var(--color);
}
.service-page .service-1 .list ul li .box .content p {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: #191919;
    margin: 10px 0 30px;
}
.service-page .service-1 .list ul li .box .content a.more {
    display: inline-block;
}
.service-page .service-2 {
    padding: 80px 0 70px;
    text-align: center;
    background: #fbfbfb;
    display: inline-block;
    width: 100%;
}
.service-page .service-2 h2{text-align: left; font-weight: bold; font-size: 40px;text-transform: uppercase;}
.service-page .service-2 h2:after{    content: '';
    display: block;
    width: 10%;
    height: 4px;
    background: var(--color);}
.service-page .service-2 ul {
    margin-right: -20px;
    margin-top: 40px;
}
.service-page .service-2 ul li {
    padding: 65px 25px;
    background: #fff;
    margin-right: 20px;
    margin-top: 20px;
    width: calc(30% - 20px);
    float: left;
}
.service-page .service-2 ul li h4{font-size: 20px; font-weight: bold; height: 40px;}
.service-page .service-2 ul li a.img-box {
    display: block;
    border-radius: 5px;
    overflow: hidden;
}
.service-page .service-2 ul li a.img-box img {
    display: block;
    width: 100%;
}
.service-page .service-2 ul li time {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #c03437;
    line-height: 1;
    margin: 15px 0;
}
.service-page .service-2 ul li a.more{color: #c03437; margin-top: 30px;};
.service-page .service-2 ul li h4 {
    display: block;
    font-size: 18px;
    color: #1c1c1c;
    line-height: 32px;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    height: 58px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 30px;
}
.service-page .service-2 ul li h4:hover{
    color: var(--color);
}
.service-page .service-2 ul li p {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 28px;
    text-align: justify;
    height: 64px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 30px;
}
.service-page .service-2 .list {
    text-align: left;
}
.service-page .service-2 .list ul {
    counter-reset: number;
}
.service-page .service-2 .list ul li .left {
    vertical-align: middle;
    padding-right: 2%;
    position: relative;
}
.service-page .service-2 .list ul li .left:before {
    content: '0' counter(number);
    counter-increment: number;
    font-weight: 400;
    color: #cdcdcd;
    display: block;
    line-height: 1;
    font-size: 20px;
}
.service-page .service-2 .list ul li .left h4,
.service-page .service-new .box ul h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4;
    color: var(--color);
    margin: 10px 0 25px;
    display: block;
}
.service-page .service-2 .list ul li .left p,
.service-page .service-new .box ul p {
    font-size: 16px;
    color: #101010;
    line-height: 1.8;
    max-width: 600px;
}
.service-page .service-2 .list ul li .left:after {
    content: '';
    width: 15%;
    height: 1px;
    background: var(--color);
    margin-top: 15px;
    display: block;
}
.service-page .service-2 .list ul li .left div.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    border-radius: 3px;
    background: var(--color);
    color: white;
    cursor: pointer;
    transition: .5s;
}
.service-page .service-2 .list ul li .left div.btn:hover {
    background: #222;
}
.service-page div.formBox {
    margin-top: 60px;
    padding: 35px 60px;
    display: inline-block;
    width: 100%;
    background: #f8f8f8;
    /*-moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
-o-box-shadow: 0 0 10px rgba(0,0,0,.1);
box-shadow: 0 0 10px rgba(0,0,0,.1);*/
}
.service-page div.formBox h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
.service-page div.formBox ul {
    margin: -10px;
}
.service-page div.formBox ul li {
    width: 50%;
    float: left;
    padding: 10px;
}
.service-page div.formBox ul li label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #525252;
}
.service-page div.formBox ul li input {
    width: 100%;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    color: black;
    border: 1px solid #e3e3e3;
    background: #fff;
}
.service-page div.formBox ul li:last-child {
    text-align: center;
    width: 100%;
}
.service-page div.formBox ul li input[type="submit"] {
    width: 10%;
    margin-left: auto;
    padding: 0 20px;
    border-radius: 5px;
    background: var(--color);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}
.service-page .service-new .box ul {
    margin: -15px;
    display: flex;
    flex-wrap: wrap;
}
.service-page .service-new .box ul li {
    padding: 15px;
}
.service-page .service-new .box ul li .box2 {
    padding: 30px;
    background: #fff;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.1);
    /*border: 1px solid #e3e3e3;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);*/
    /* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
    height: 100%;
}
.service-page .service-2 .list ul li .right {
    padding-left: 2%;
    vertical-align: middle;
    position: relative;
}
.service-page .service-2 .list ul li .right .img {
    background-size: cover;
    background-position: center center;
    height: 390px;
}
.service-page .service-2 .list ul li:nth-child(even) {
    margin: 80px 0;
}
.service-page .service-2 .list ul li:nth-child(even) .left {
    left: 50%;
    padding-left: 2%;
    padding-right: 0;
}
.service-page .service-2 .list ul li:nth-child(even) .right {
    left: -50%;
    padding-right: 2%;
    padding-left: 0;
}
.service-page .service-2 a.more {
    display: inline-block;
    text-align: center;
    margin-top: 70px;
    font-weight: 300;
    font-size: 20px;
    color: var(--color);
    line-height: 1.2;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.service-page .service-2 a.more i {
    margin-right: 10px;
}
.service-page .service-2 a.more:after {
    content: '';
    width: 95%;
    height: 1px;
    background: var(--color);
    display: block;
    margin-left: auto;
}
.service-page .service-3 {
    padding: 60px 0 30px;
}
.service-page .service-3 h2 {
    font-weight: bold;
    font-size: 40px;
    color: #191919;
    text-transform: capitalize;
    line-height: 1;
    text-align: center;
}
.service-page .service-3 h2:after {
    content: '';
    display: block;
    margin: 23px auto 0;
    width: 10%;
    height: 4px;
    background: var(--color);
}
.service-page .service-3 .list {
    margin: 65px 0 85px;
}
.service-page .service-3 .list .slide ul{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.service-page .service-3 .list .slide ul li {
    margin-bottom: 15px;
    width: 48%;
}
.service-page .service-3 .list .slide ul li h6 {
    padding: 12px 0;
    font-size: 18px;
    /*font-weight: 300;*/
    border-bottom: 2px solid #efefef;
    /*text-transform: uppercase;*/
    padding-right: 30px;
    position: relative;
}
.service-page .service-3 .list .slide ul li h6 i {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 17px;
    right: 10px;
    cursor: pointer;
}
.service-page .service-3 .list .slide ul li h6 i:after,
.service-page .service-3 .list .slide ul li h6 i:before {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.service-page .service-3 .list .slide ul li h6 i:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.service-page .service-3 .list .slide ul li h6 i.active:after {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.service-page .service-3 .list .slide ul li .text {
    font-size: 18px;
    line-height: 1.6;
    padding: 15px 0;
    font-weight: 300;
    color: var(--color);
    display: none;
}
.service-page .service-3 .list .slide ul li:last-child {
    margin-bottom: 0;
}
.service-page .service-3 .list .slide:first-child {
    padding-right: 2%;
}
.service-page .service-3 .list .slide:last-child {
    padding-left: 2%;
}
.service-page .service-3 .content {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    max-width: 70%;
    display: inline-block;
}
.service-page .service-3 a.more {
    line-height: 50px;
    height: 50px;
    padding: 0 35px;
    border-radius: 5px;
    background: var(--color);
    /*font-weight: bold;*/
    font-size: 20px;
    color: white;
    display: inline-block;
    float: right;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-3 a.more:hover {
    opacity: .7;
}
.why-page .why-1 {
    padding-top: 80px;
}
.why-page .why-1 .left {
    vertical-align: middle;
}
.why-page .why-1 .left .img {
    height: 360px;
    background-size: cover;
    background-position: center center;
}
.why-page .why-1 .right {
    vertical-align: middle;
    padding-left: 4%;
    padding-right: 2%;
}
.why-page .why-1 .right h3 {
    font-weight: bold;
    font-size: 40px;
    line-height: 1.2;
    color: #1b1b1b;
}
.why-page .why-1 .right .content {
    margin-top: 45px;
    font-size: 16px;
    line-height: 1.6;
}
.why-page .why-2 {
    padding: 110px 0;
}
.why-page .why-2 ul {
    margin: -20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.why-page .why-2 ul li {
    padding: 20px;
}
.why-page .why-2 ul li .box {
    -o-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
    box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
    padding: 55px 35px 50px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    height: 100%;
}
.why-page .why-2 ul li .box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, var(--color)), color-stop(100%, #64a5da));
    /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(-45deg, var(--color) 0%, #64a5da 100%);
    /* firefox */
    background: -webkit-linear-gradient(45deg, var(--color) 0%, #64a5da 100%);
    /* chrome */
    /* opera */
    /* ie */
    background: -webkit-gradient(linear, -45deg, from(var(--color)), to(#64a5da));
    background: -webkit-linear-gradient(-45deg, var(--color), #64a5da);
    background: -moz-linear-gradient(-45deg, var(--color), #64a5da);
    background: linear-gradient(to -45deg, var(--color), #64a5da);
    /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#64a5da',GradientType=1)";
    /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#64a5da', GradientType=1);
    /* 兼容IE5~IE9 */
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    opacity: 0;
}
.why-page .why-2 ul li .box i {
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    height: 67px;
}
.why-page .why-2 ul li .box h4 {
    font-size: 24px;
    line-height: 1.2;
    margin: 30px 0 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.why-page .why-2 ul li .box p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.why-page .why-2 ul li .box:hover:after {
    opacity: 1;
}
.why-page .why-2 ul li .box:hover i {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.why-page .why-2 ul li .box:hover h4,
.why-page .why-2 ul li .box:hover p {
    color: white;
}
.why-page .why-3 {
    background: #f9f9f9;
    padding: 115px 0;
}
.why-page .why-3 .left {
    width: 66%;
    vertical-align: middle;
    position: relative;
}
.why-page .why-3 .left ul {
    margin: -7px;
}
.why-page .why-3 .left ul li {
    padding: 7px;
}
.why-page .why-3 .left ul li a.img-box {
    display: block;
}
.why-page .why-3 .left ul li a.img-box img {
    display: block;
    width: 100%;
}
.why-page .why-3 .right {
    width: 34%;
    vertical-align: middle;
    position: relative;
    padding-left: 4%;
}
.why-page .why-3 .right h3 {
    font-weight: bold;
    font-size: 30px;
    color: #1b1b1b;
    line-height: 1.2;
    text-transform: capitalize;
}
.why-page .why-3 .right .text {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0 20px;
}
.why-page .why-3 .right a.more {
    line-height: 35px;
    height: 35px;
    padding: 0 17px;
    border-radius: 17px;
    background: var(--color);
    color: white;
    font-weight: 500;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    text-transform: capitalize;
}
.why-page .why-3 .right a.more:hover {
    opacity: .7;
}
.why-page .why-3 .box {
    margin-top: 95px;
}
.why-page .why-3 .box:first-child {
    margin-top: 0;
}
.why-page .why-3 .box:nth-child(even) .left {
    left: 33.5%;
}
.why-page .why-3 .box:nth-child(even) .right {
    left: -66%;
    padding-left: 0;
    padding-right: 4%;
}
.why-page .why-4 {
    padding: 100px 0 120px;
}
.why-page .why-4 .list ul {
    margin: -40px;
}
.why-page .why-4 .list ul li {
    padding: 40px;
}
.why-page .why-4 .list ul li img {
    display: block;
}
.why-page .why-4 .list ul li p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 25px;
}
.why-page .why-4 .list ul .slick-dots {
    padding-top: 40px;
    text-align: center;
}
.why-page .why-4 .list ul .slick-dots li {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    background: #d4d4d4;
    cursor: pointer;
    padding: 0;
}
.why-page .why-4 .list ul .slick-dots li button {
    display: none;
}
.why-page .why-4 .list ul .slick-dots li.slick-active {
    background: var(--color);
}
@media screen and (max-width: 1700px) {
    .why-page .why-1 .right h3 {
        font-size: 32px;
    }
    .why-page .why-1 .right .content {
        margin-top: 20px;
    }
    .why-page .why-1 {
        padding-top: 70px;
    }
    .why-page .why-2 {
        padding: 60px 0;
    }
    .why-page .why-2 ul li .box {
        padding: 25px;
    }
    .why-page .why-2 ul li .box h4 {
        font-size: 20px;
        margin: 20px 0 10px;
    }
    .why-page .why-2 ul li .box i {
        height: auto;
    }
    .why-page .why-2 ul li .box i img {
        max-height: 48px;
    }
    .why-page .why-2 ul li .box p {
        font-size: 14px;
    }
    .why-page .why-3 {
        padding: 70px 0;
    }
    .why-page .why-3 .box {
        margin-top: 50px;
    }
    .why-page .why-4 {
        padding: 60px 0 80px;
    }
    .service-page .service-1 {
        padding: 60px 0;
    }
    .service-page .service-1 span.tag {
        font-size: 20px;
    }
    .service-page .service-1 h2 {
        font-size: 36px;
    }
    .service-page .service-1 .list {
        margin-top: 50px;
    }
    .service-page .service-1 .list ul li .box .content h4,
    .service-page .service-2 a.more {
        font-size: 20px;
    }
    .service-page .service-1 .list ul li .box .content p {
        font-size: 14px;
    }
    .service-page .service-1 .list ul li .box .content a.more img {
        max-width: 40px;
    }
    .service-page .service-2 .list ul li .left h4,
    .service-page .service-3 h2 {
        font-size: 32px;
    }
    .service-page .service-2 .list ul li .left:before,
    .contact-page .contact-1 .left span.tag {
        font-size: 20px;
    }
    .service-page .service-3 {
        padding: 70px 0;
    }
    .service-page .service-3 a.more {
        line-height: 44px;
        height: 44px;
        padding: 0 25px;
        font-size: 20px;
    }
    .contact-page .contact-1 {
        padding: 70px 0;
    }
    .contact-page .contact-1 .left h2 {
        font-size: 40px;
    }
    .contact-page .contact-1 .left .text {
        font-size: 14px;
    }
    .contact-page .contact-1 .right .form ul li input,
    .contact-page .contact-1 .right .form ul li textarea {
        padding: 10px;
        font-size: 16px;
    }
    .contact-page .contact-1 .right .form ul li {
        padding: 10px;
    }
    .contact-page .contact-1 .right .form ul {
        margin: -10px;
    }
    .contact-page .contact-2 .left span.tag {
        font-size: 70px;
    }
    .contact-page .contact-2 .left h2 {
        font-size: 40px;
    }
    .contact-page .contact-2 .left h4 {
        font-size: 24px;
    }
    .contact-page .contact-2 .left .list ul li .box2 p {
        font-size: 16px;
    }
    .contact-page .contact-1 .right .form ul li input[type="submit"] {
        font-size: 18px;
    }
}
@media screen and (max-width: 1500px) {
    .contact-page .contact-2 {
        padding-bottom: 60px;
    }
    #mapContainer {
        height: 340px !important;
    }
    .why-page .why-3 .right .text {
        font-size: 14px;
        margin: 10px 0;
    }
    .factory-page .navList {
        margin-top: 50px;
    }
}
@media screen and (max-width: 1250px) {
    .why-page .why-4 .list ul li {
        padding: 15px;
    }
    .why-page .why-4 .list ul {
        margin: -15px;
    }
    .why-page .why-3 .right h3 {
        font-size: 24px;
    }
    .why-page .why-2 ul li .box h4 {
        font-size: 18px;
    }
    .why-page .why-2 ul li .box {
        padding: 10px;
    }
    .why-page .why-2 ul li {
        padding: 10px;
    }
    .why-page .why-2 ul {
        margin: -10px;
    }
    .why-page .why-1 .right h3 {
        font-size: 26px;
    }
    .service-page .service-3 h2:after {
        margin-top: 15px;
    }
    .service-page .service-3 .list {
        margin: 30px 0 50px;
    }
    .service-page .service-1 h2,
    .service-page .service-2 .list ul li .left h4,
    .service-page .service-3 h2 {
        font-size: 28px;
    }
    .contact-page .contact-1 .left h2 {
        font-size: 32px;
    }
    .contact-page .contact-1 .right .form ul li input,
    .contact-page .contact-1 .right .form ul li textarea {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-page .contact-1 .right .form ul li input[type="submit"] {
        font-size: 16px;
    }
    .contact-page .contact-2 .left .list ul li {
        width: 100% !important;
        padding: 5px;
    }
    .contact-page .contact-2 .left .list ul {
        margin: -5px;
    }
    .contact-page .contact-2 .left .list ul li .box2 {
        padding-left: 50px;
    }
    .contact-page .contact-2 .left .list ul li .box2 i {
        width: 40px;
    }
    .contact-page .contact-2 .left .list ul li .box2 p {
        margin-top: 0;
    }
    .contact-page .contact-2 .left .list ul li .box2 h6 {
        margin-top: 0;
    }
    .service-page .service-2 ul li{
        width: 46%;
    }
}
@media screen and (max-width: 1100px) {
    .contact-page .contact-1 .left .share ul li span{
        display: block;
    }
}
@media screen and (max-width: 1000px) {
    .service-page .service-1{
        padding: 0;
    }
    .service-page .service-2{
        padding: 60px 0;
    }
    .inner-banner .box {
        padding-left: 0;
    }
    .inner-banner .box h2 {
        font-size: 28px;
    }
    .inner-banner .box .mbx {
        font-size: 14px;
    }
    .factory-page .navList {
        display: none;
    }
    .contact-page .contact-1 .left {
        width: 100%;
        padding-right: 0;
    }
    .contact-page .contact-1 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .contact-page .contact-1 .left .share {
        margin-top: 10px;
    }
    .contact-page .contact-1 .left h2 {
        font-size: 28px;
        margin: 10px 0;
    }
    .contact-page .contact-2 .left span.tag {
        font-size: 50px;
    }
    .contact-page .contact-2 .left h2 {
        font-size: 32px;
    }
    .contact-page .contact-2 .left h4 {
        margin: 10px 0;
    }
    .contact-page .contact-2 .left {
        width: 100%;
        padding-right: 0;
    }
    .contact-page .contact-2 .right {
        width: 100%;
    }
    .contact-page .contact-2 .left .list {
        margin-top: 20px;
    }
    .contact-page .contact-2 .left .text {
        max-width: none;
    }
    .contact-page .contact-1 .left .share ul li .wechat{
        left: 25%;
        right: 0;
        top: 0;
    }
    .service-page .service-1 h2,
    .service-page .service-2 .list ul li .left h4,
    .service-page .service-3 h2 {
        font-size: 24px;
    }
    .service-page .service-2 .list ul li .right {
        width: 100%;
        padding: 0 !important;
        left: 0 !important;
    }
    .service-page .service-2 .list ul li .left {
        width: 100%;
        padding: 0 !important;
        left: 0 !important;
    }
    .service-page .service-2 .list ul li:nth-child(even) {
        margin: 25px 0;
    }
    .service-page .service-2 .list ul li .right .img {
        height: 200px;
    }
    .service-page .service-2 a.more {
        margin-top: 40px;
    }
    .service-page .service-3 .list .slide {
        width: 100%;
        padding: 0 !important;
    }
    .service-page .service-3 .list .slide ul li {
        margin-bottom: 0;
        padding-bottom: 10px;
    }
    .why-page .why-3 .right {
        width: 100%;
        left: 0 !important;
        padding: 0 !important;
        margin-top: 25px;
    }
    .why-page .why-3 .left {
        width: 100%;
        left: 0 !important;
    }
    .why-page .why-3 {
        padding: 40px 0;
    }
    .why-page .why-2 ul li {
        width: 50% !important;
    }
    .why-page .why-1 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
    .why-page .why-1 .left {
        width: 100%;
    }
    .why-page .why-1 .left .img {
        height: 240px;
    }
}
@media screen and (max-width: 700px) {
    .inner-banner {
        padding: 25px 0;
    }
    .inner-banner .box h2 {
        font-size: 24px;
    }
    /*.related_products .swiper .swiper-slide .img{
    height: 50vw;
  }*/
    .contact-page .contact-1 {
        padding: 40px 0;
    }
    .contact-page .contact-1 .left h2 {
        font-size: 24px;
    }
    .service-page .service-1{
        padding: 0;
    }
    .service-page .service-1 .list ul li {
        padding: 10px;
    }
    .service-page .service-1 .list ul {
        margin: -10px;
    }
    .service-page .service-1 .list ul li .box .content {
        padding: 10px;
    }
    .why-page .why-2 ul li {
        width: 100% !important;
    }
    .why-page .why-1 .right h3 {
        font-size: 22px;
    }
    .why-page .why-1 {
        padding-top: 50px;
    }
    .service-page .service-3 .content {
        max-width: none;
    }
    .service-page .service-3 a.more {
        margin-top: 20px;
        float: none;
    }
    .service-page .service-2 a.more {
        font-size: 16px;
    }
    /*.contact-page .contact-1 .left .share ul li {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }*/
    .service-page .service-2{
        padding: 30px 0;
    }
    .service-page .service-2 ul{
        margin-top: 0;
    }
    .service-page .service-3{
        padding: 30px 0;
    }
    .service-page .service-2 ul li{
        width: 100%;
    }
    .contact-page .contact-1{
        padding: 0 0 20px 0;
    }
}
@media screen and (max-width: 500px) {
    .service-page .service-2 h2{
        font-size: 27px;
    }
    .service-page .service-3 .list .slide ul li{
        width: 100%;
    }
    .contact-page .contact-1 .left .share ul li{
        width: 100%;
    }
}
.inner-page {
    padding: 0px 0 100px;
}
.contact-page,
.why-page,
.service-page {
    padding: 0;
}
.m-link {
    margin-top: 40px;
}
.m-link a{
    display: block;
    margin-top: 5px;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
    transition: .5s;
}
.m-link a:hover{
    color: var(--color);
}
.m-page {
    text-align: center;
    margin: 58px 0 0;
}
.m-page a,.m-page span {
    display: inline-block;
    margin: 2px;
    width: 30px;
    height: 30px;
    border: 1px solid #eee;
    font-size: 15px;
    text-align: center;
    line-height: 30px;
    transition: .5s;
}
.m-page a:hover,
.m-page span.current {
    color: white;
    background: var(--color);
}
.about-page .about-1 h4 {
    text-align: left;
    font-size: 39px;
    font-weight: 600;
    color: #090909;
}
.about-page .about-1 .box {
    padding-top: 40px;padding-bottom: 50px;
}
.about-page .about-1 .box .left {
    vertical-align: middle;
    padding-right: 30px;
    position: relative;
}
.about-page .about-1 .box .left .play {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
    cursor: hand;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.about-page .about-1 .box .left .box2 {
    position: absolute;
    bottom: 15px;
    left: 0;
}
.about-page .about-1 .box .left .box2 h3 {
    display: inline-block;
    font-size: 40px;
    color: white;
    padding: 0 60px 0 15px;
    background: rgba(0, 0, 0, 0.66);
    line-height: 50px;
    height: 50px;
}
.about-page .about-1 .box .left .box2 p {
    display: inline-block;
    line-height: 36px;
    height: 36px;
    padding: 0 15px;
    font-size: 25px;
    color: white;
    background: rgba(0, 0, 0, 0.66);
    margin-top: 5px;
}
.about-page .about-1 .box .right {
    vertical-align: middle;
    padding-left: 30px;
}
.about-page .about-1 .box .right .content {
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}
.about-page .about-1 .box .right .content p {
    font-size: 18px;
    padding-bottom: 30px;
    line-height: 1.8;
}
.about-page .about-1 .box .right .content p:last-child {
    padding-bottom: 0;
}
.about-page .about-2 h2 {
    text-align: center;
}
.about-page .about-2 .box {
    /*padding-top: 60px;*/
}
.about-page .about-2 .box .content {
    font-size: 16px;
    line-height: 1.5;
}
.about-page .about-2 .box .content p {
    padding-bottom: 45px;
}
.about-page .about-2 .box .content p:last-child {
    padding-bottom: 0;
}
.about-page .about-2 .box .content img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
}
.about-page .about-2 .box .content .play_cont_c{
    padding: 210px 0;
    position: relative;
}
.about-page .about-2 .box .left {
    padding-right: 15px;
}
.about-page .about-2 .box .right {
    padding-left: 15px;
}
.about-page .about-3 {
    padding-top: 100px;
    text-align: center;
    background: #efefef;
    padding-bottom: 110px;
}
.about-page .about-3 h2 {
    text-transform: capitalize;
}
.about-page .about-3 .box {
    padding-top: 95px;
}
.about-page .about-3 .box ul li {
    padding: 0 15px;
}
.about-page .about-3 .box ul li .text {
    max-width: 300px;
    position: relative;
    z-index: 1;
    text-align: left;
    display: inline-block;
}
.about-page .about-3 .box ul li .text:after {
    content: '';
    width: 175px;
    height: 175px;
    border-radius: 100%;
    background: #ebeeed;
    position: absolute;
    top: -20px;
    left: -25%;
    z-index: -1;
}
.about-page .about-3 .box ul li:nth-child(1) .text:after {
    background: var(--color);
    background: -webkit-gradient(linear, left top, bottom top, color-stop(0%,#fff), color-stop(100%,#e1e8be)); /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(bottom, #fff 0%, #fff 100%); /* firefox */
    background: -webkit-linear-gradient(top, #fff 0%,#fff 100%); /* chrome */
    background: -o-linear-gradient(bottom, var(--color) 0%,#fff 100%); /* opera */
    background: -ms-linear-gradient(bottom, #fff 0%,#fff 100%); /* ie */
    background: linear-gradient(to bottom, #fff,#fff); /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#e1e8be',GradientType=0)"; /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color)', endColorstr='#e1e8be',GradientType=0 ); /* 兼容IE5~IE9 */
}
.about-page .about-3 .box ul li:nth-child(2) .text:after {
    background: var(--color);
    background: -webkit-gradient(linear, left top, bottom top, color-stop(0%,#fff), color-stop(100%,#b7cc8e)); /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(bottom, #fff 0%, #fff 100%); /* firefox */
    background: -webkit-linear-gradient(top, #fff 0%,#fff 100%); /* chrome */
    background: -o-linear-gradient(bottom, #fff 0%,#fff 100%); /* opera */
    background: -ms-linear-gradient(bottom, #fff 0%,#fff 100%); /* ie */
    background: linear-gradient(to bottom, #fff,#fff); /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#b7cc8e',GradientType=0)"; /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color)', endColorstr='#b7cc8e',GradientType=0 ); /* 兼容IE5~IE9 */
}
.about-page .about-3 .box ul li:nth-child(3) .text:after {
    background: var(--color);
    background: -webkit-gradient(linear, left top, bottom top, color-stop(0%,var(--color)), color-stop(100%,#9abf8e)); /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(bottom, #fff 0%, #fff 100%); /* firefox */
    background: -webkit-linear-gradient(top, #fff 0%,#fff 100%); /* chrome */
    background: -o-linear-gradient(bottom, #fff 0%,#fff 100%); /* opera */
    background: -ms-linear-gradient(bottom, #fff 0%,#fff 100%); /* ie */
    background: linear-gradient(to bottom, #fff,#fff); /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#9abf8e',GradientType=0)"; /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color)', endColorstr='#9abf8e',GradientType=0 ); /* 兼容IE5~IE9 */
}
.about-page .about-3 .box ul li .text:after {
    background: var(--color);
    background: -webkit-gradient(linear, left top, bottom top, color-stop(0%,var(--color)), color-stop(100%,#9abf8e)); /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(bottom, #fff 0%, #fff 100%); /* firefox */
    background: -webkit-linear-gradient(top, #fff 0%,#fff 100%); /* chrome */
    background: -o-linear-gradient(bottom, #fff 0%,#fff 100%); /* opera */
    background: -ms-linear-gradient(bottom, #fff 0%,#fff 100%); /* ie */
    background: linear-gradient(to bottom, #fff,#fff); /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#9abf8e',GradientType=0)"; /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color)', endColorstr='#9abf8e',GradientType=0 ); /* 兼容IE5~IE9 */
}
.about-page .about-3 .box ul li .text h3 {
    font-size: 28px;
    line-height: 38px;
    color: var(--color);
    font-weight: 600;
}
.about-page .about-3 .box ul li .text p {
    display: block;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 25px;
}
.about-page .about-4 {
    padding: 100px 0 0px;
    text-align: center;
}
.about-page .about-4 h2 small {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 1570px;
}
.about-page .about-4 .box {
    padding: 0px 0 20px;
    overflow: hidden;
}
.about-page .about-4 .box ul,.network-page .network-2 .box ul,.network-page .network-2 .box ul {
    margin: -15px;
}
.about-page .about-4 .box ul li,.network-page .network-2 .box ul li,.contact-page .contact-4 .box ul li {
    padding: 15px;
}
.about-page .about-4 .box ul li:nth-child(7)~li,
.network-page .network-2 .box ul li:nth-child(7)~li {
    display: none;
}
.team-page .top {
    padding-top: 10px;
    text-align: center;
}
.team-page .top h4 {
    display: block;
    max-width: 1070px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}
.team-page .bottom ul li {
    padding: 100px 0 120px;
}
.team-page .bottom ul li .img {
    padding-right: 4%;
    position: relative;
}
.team-page .bottom ul li .img a {
    display: block;
}
.team-page .bottom ul li .img img {
    width: 100%;
}
.team-page .bottom ul li .text {
    padding: 0 2%;
    position: relative;
}
.team-page .bottom ul li .text .content {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    color: var(--color);
    line-height: 34px;
    max-height: 180px;
}
.team-page .bottom ul li:nth-child(even) {
    background: #f8f8f8;
}
.team-page .bottom ul li:nth-child(even) .img {
    left: 50%;
    padding-left: 4%;
    padding-right: 0;
}
.team-page .bottom ul li:nth-child(even) .text {
    left: -50%;
}
.custom-page {
    /*padding: 90px 0 120px;*/
}
.custom-page h2.title {
    text-align: center;
    text-transform: none;
}
.custom-page h2.title small {
    max-width: 1070px;
    margin: 0 auto;
    font-size: 20px;
    color: #4e4243;
    line-height: 34px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 100px;
    display: block;
}
/*.custom-page .box {
  padding-top: 70px;
}*/
.custom-page .box ul {
    margin: -20px 0;
}
.custom-page .box ul li {
    padding: 20px 0;
}
.custom-page .box ul li .img {
    padding-right: 30px;
    vertical-align: middle;
    position: relative;
}
.custom-page .box ul li .img a.img-box {
    display: block;
}
.custom-page .box ul li .img a.img-box img {
    width: 100%;
}
.custom-page .box ul li .text {
    padding-left: 30px;
    vertical-align: middle;
    position: relative;
}
.custom-page .box ul li .text .content {
    padding: 0 30px;
}
.custom-page .box ul li .text h2.title {
    text-align: left;
    font-size: 40px;
    color: #180f08;
    font-weight: 700;
    text-transform: uppercase;
}
.custom-page .box ul li .text p {
    display: block;
    font-size: 18px;
    line-height: 32px;
    margin-top: 15px;
}
.custom-page .box ul li:nth-child(even) .img {
    left: 50%;
    padding-right: 0;
    padding-left: 30px;
}
.custom-page .box ul li:nth-child(even) .text {
    left: -50%;
    padding-left: 0;
    padding-right: 30px;
}
.network-page {
    padding: 60px 0 50px;
    text-align: center;
}
.network-page h2.title {
    text-transform: none;
}
.network-page .network-1 .content {
    padding-top: 80px;
}
.network-page .network-1 .content img {
    margin: 0 auto;
}
.network-page .network-1 .content .text {
    width: 1070px;
    padding-top: 80px;
    font-size: 18px;
    line-height: 34px;
    margin: 0 auto;
}
.network-page .network-2 {
    padding-top: 100px;
}
.network-page .network-2 h2.title small {
    max-width: 530px;
    margin: 0 auto;
    margin-top: 40px;
}
.network-page .network-2 .box {
    padding-top: 70px;
    padding-bottom: 50px;
}
@media screen and (max-width: 1600px) {
    .about-page .about-1 .box .right .content p {
        font-size: 22px;
        line-height: 30px;
    }
    .about-page .about-1 .box .left .box2 h3 {
        font-size: 34px;
    }
    .about-page .about-1 .box .left .box2 p {
        font-size: 22px;
    }
    .about-page .about-3 .box ul li .text h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .custom-page {
        padding: 60px 0;
    }
    .custom-page .box ul li .text p {
        font-size: 22px;
    }
    .about-page .about-1 .box .right .content p {
        font-size: 18px;
        line-height: 1.7;
    }
    .about-page .about-1 {
        padding: 50px 0;
    }
    .about-page .about-2 {
        padding: 70px 0;
    }
    .about-page .about-2 .box {
        padding-top: 30px;
    }
    .about-page .about-2 .box .content p {
        padding-bottom: 15px;
    }
    .about-page .about-3 .box ul li .text h3 {
        font-size: 26px;
        line-height: 1.4;
    }
    .about-page .about-3 .box ul li .text p {
        font-size: 18px;
        line-height: 1.6;
    }
    .about-page .about-4 h2 small {
        margin-top: 20px;
    }
    .network-page .network-2 h2.title small {
        margin-top: 20px;
    }
}
@media screen and (max-width: 1450px) {
    .custom-page .box ul li .text p {
        font-size: 18px;
    }
    .team-page .top {
        padding-top: 60px;
    }
    .team-page .bottom ul li .text .content {
        font-size: 14px;
        max-height: none;
    }
}
@media screen and (max-width: 1250px) {
    .team-page .bottom ul li .img {
        padding-right: 2%;
    }
    .team-page .bottom ul li:nth-child(even) .img {
        padding-left: 2%;
        padding-right: 0;
    }
    .team-page .bottom ul li .text .content {
        margin-top: 20px;
        font-size: 16px;
        line-height: 24px;
    }
    img.down {
        max-width: 16px;
    }
    .custom-page .box ul li .text h2.title {
        font-size: 26px;
    }
    .custom-page .box ul li .text p {
        font-size: 20px;
        line-height: 28px;
    }
    .about-page .about-1 .box .left {
        padding-right: 0;
    }
    .about-page .about-1 .box .right .content p {
        font-size: 18px;
    }
    .about-page .about-2 .box .content {
        font-size: 16px;
    }
    .team-page .bottom ul li .text .content {
        font-size: 14px;
        max-height: 140px;
        overflow: auto;
    }
    .custom-page h2.title small {
        margin-bottom: 60px;
    }
    .custom-page .box ul li .text h2.title {
        font-size: 25px;
    }
    .custom-page .box ul li .text p {
        font-size: 16px;
        line-height: 1.8;
    }
}
@media screen and (max-width: 1000px) {
    .custom-page .box ul li .text,
    .team-page .bottom ul li .text {
        left: 0 !important;
        padding: 0 0 20px !important;
        width: 100%;
    }
    .custom-page .box ul li .img,
    .team-page .bottom ul li .img {
        width: 100%;
        left: 0 !important;
        padding: 0 !important;
    }
    .custom-page .box ul li .text,
    .team-page .bottom ul li .text{
        padding: 20px 0 0!important;
    }
    .custom-page .box ul li,
    .team-page .bottom ul li{
        border-bottom: 1px #eee dashed;
    }
    .custom-page .box ul li:last-child,
    .team-page .bottom ul li:last-child {
        border-bottom: none;
    }
    .team-page .top h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .about-page .about-4 .box ul li, .network-page .network-2 .box ul li, .contact-page .contact-4 .box ul li {
        width: 20%;
    }
    .team-page .bottom ul li .text .content {
        max-height: none;
    }
    .custom-page .box ul li .text h2.title {
        font-size: 24px;
    }
    .about-page .about-2 .box .content .play_cont_c{
        padding: 100px 0;
    }
    .about-page .about-1 h4{
        font-size: 24px;
    }
}
@media screen and (max-width: 700px) {
    .custom-page .box {
        padding-top: 30px;
    }
    .custom-page .box ul li .text .content {
        padding: 0 15px;
    }
    .custom-page .box ul li .text h2.title {
        font-size: 24px;
    }
    .custom-page .box ul li .text p {
        font-size: 16px;
        line-height: 24px;
    }
    .about-page .about-3 .box ul li .text p {
        margin-top: 10px;
    }
    .about-page .about-3 .box ul li .text h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .about-page .about-3 .box ul li .text:after {
        width: 100px;
        height: 100px;
        left: 20%;
    }
    .about-page .about-3 .box ul li {
        margin: 20px 0;
    }
    .about-page .about-4 {
        padding: 40px 0;
    }
    .about-page .about-3 .box ul li {
        width: 33.333%;
    }
    .about-page .about-3 .box ul li .text p {
        font-size: 12px;
        line-height: 20px;
    }
    .about-page .about-3 .box ul li .text:after {
        left: -10%;
    }
    .about-page .about-4 .box ul li, .network-page .network-2 .box ul li, .contact-page .contact-4 .box ul li {
        padding: 5px;
    }
    .about-page .about-4 .box ul, .network-page .network-2 .box ul, .contact-page .contact-4 .box ul {
        margin: -5px;
    }
    .custom-page .box {
        padding-top: 0;
    }
    .custom-page .box ul li .text h2.title {
        font-size: 20px;
    }
    .about-page .about-4 .box ul li, .network-page .network-2 .box ul li, .contact-page .contact-4 .box ul li {
        width: 33.333%;
    }
}
@media screen and (max-width: 500px) {
    .about-page .about-3 .box ul li,.about-page .about-3 .box ul li .text {
        width: 100%;
    }
    .inner-page{
        padding: 30px 0;
    }
    .factory-page .imgList{
        padding: 30px 0;
    }
    /*.related_products .swiper .swiper-slide .img{
      height: 90vw;
    }*/
}
/*.related_products .swiper{
  overflow: hidden;
}
.related_products .swiper-slide{
  overflow: hidden;
}
.related_products .swiper-wrapper{
  overflow: hidden;
}*/
.about2-page {
    overflow: hidden;
}
.about2-page .text {
    font-size: 16px;
    color: #212121;
    line-height: 30px;
}
.about2-page .about-1 {
    padding: 50px 0 50px;
}
.about2-page .about-1 .top {
    padding-bottom: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid #626363;
}
.about2-page .about-1 .top .left{
    vertical-align: middle;
    padding-right: 7%;
}
.about2-page .about-1 .top .left h3 {
    font-size: 60px;
    color: #040404;
    font-weight: 300;
    line-height: 110px;
    text-transform: uppercase;
}
.about2-page .about-1 .top .left h3 em {
    font-weight: bold;
    color: var(--color);
}
.about2-page .about-1 .top .left h6 {
    font-size: 28px;
    color: #121212;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 10px;
}
.about2-page .about-1 .top .left h4 {
    font-size: 57px;
    color: #121212;
    line-height: 1;
    font-weight: bold;
}
.about2-page .about-1 .top .left h4:first-letter {
    text-transform: capitalize;
}
.about2-page .about-1 .top .left .text {
    margin-top: 35px;
}
.about2-page .about-1 .top .right {
    text-align: right;
    padding-left: 7%;
}
.about2-page .about-1 .top .right ul {
    text-align: left;
    margin: -20px;
}
.about2-page .about-1 .top .right ul li {
    padding: 20px;
}
.about2-page .about-1 .top .right ul li h4 {
    font-size: 80px;
    color: var(--color);
    line-height: 1;
    font-weight: bold;
}
.about2-page .about-1 .top .right ul li h4 sup {
    font-size: 40%;
    text-transform: uppercase;
}
.about2-page .about-1 .top .right ul li p {
    font-size: 22px;
    color: #191a1a;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}
.about2-page .about-1 .top.two {
    text-align: center;
    margin-top: 40px;
}
.about2-page .about-1 .top.two .left {
    padding-right: 0;
    text-align: left;
}
.about2-page .about-1 .top.two h6 {
    text-transform: none;
}
.about2-page .about-1 .top.two h3 {
    color: black;
    text-transform: none;
}
.about2-page .about-1 .top.two h3 em {
    color: var(--color);
    font-weight: bold;
}
.about2-page .about-1 .top.two h3 sup {
    font-size: 50%;
}
.about2-page.history-page .about-1 .top.two {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.about2-page.history-page .about-1 .top.two h6 {
    text-align: center;
}
.about2-page.history-page .about-1 .top.two h3 {
    text-align: center;
    color: var(--color);
}
.about2-page.history-page .about-1 .top.two h3 em {
    font-family: inherit;
    color: black;
}
.about2-page .about-1 .bottom {
    display: inline-block;
    width: 100%;
}
.about2-page .about-1 .bottom .text>* {
    padding-top: 35px;
}
.about2-page .about-1 .bottom .text>*:first-child {
    padding-top: 0;
}
.about2-page .about-1 .bottom .text img {
    float: right;
    width: 50%;
    padding-left: 6%;
}
.about2-page .about-2 {
    padding-bottom: 80px;
}
.about2-page .about-2 .box {
    background: #242525;
    position: relative;
    z-index: 1;
    margin-bottom: 90px;
}
.about2-page .about-2 .box:after {
    content: '';
    width: 200%;
    height: 100%;
    position: absolute;
    left: -50%;
    top: 0;
    z-index: -1;
    background: inherit;
}
.about2-page .about-2 .box .left {
    width: 45%;
    vertical-align: middle;
    padding-right: 4%;
}
.about2-page .about-2 .box .left img {
    margin: -35px 0;
}
.about2-page .about-2 .box .right {
    width: 55%;
    padding-left: 3%;
    vertical-align: middle;
}
.about2-page .about-2 .box .right .text {
    color: #eeeeee;
    font-weight: 300;
}
.about2-page .about-2 .text2 {
    font-size: 24px;
    color: #121212;
    line-height: 44px;
    margin-top: 40px;
}
.about2-page .about-3 {
    padding: 75px 0;
    text-align: center;
    background: #f8f8f8;
}
.about2-page .about-3 h3 {
    font-size: 40px;
    color: #212121;
    line-height: 76px;
}
.about2-page .about-3 .list {
    margin-top: 70px;
}
.about2-page .about-3 .list ul {
    margin: -50px;
}
.about2-page .about-3 .list ul li {
    padding: 50px;
}
.about2-page .about-3 .list ul li i {
    display: block;
}
.about2-page .about-3 .list ul li h5 {
    font-size: 30px;
    color: #141414;
    line-height: 56px;
    margin: 30px 0 20px;
}
.about2-page .about-3 .list ul li p {
    font-size: 16px;
    color: #212121;
    line-height: 30px;
}
.about2-page .about-4 {
    padding-top: 70px;
}
.about2-page .about-4 .box {
    height: 660px;
    position: relative;
    top: 70px;
}
.about2-page .about-4 .box img,
.about2-page .about-4 .box iframe {
    height: 100%;
    width: 100%;
}
.about2-page .about-5 {
    padding: 125px 0 80px;
    background: #3b9ad9;
    text-align: center;
}
.about2-page .about-5 h2 {
    font-size: 40px;
    color: #eeeeee;
    line-height: 76px;
}
.about2-page .about-5 .text {
    font-size: 16px;
    color: #eeeeee;
    line-height: 30px;
    margin: 10px auto 0;
    max-width: 1250px;
}
.about2-page .about-5 img {
    margin: 40px auto 0;
}
.about2-page .about-6 {
    padding: 110px 0 140px;
}
.about2-page .about-6 .img {
    width: 35%;
    vertical-align: middle;
}
.about2-page .about-6 .img a {
    display: block;
}
.about2-page .about-6 .content {
    vertical-align: middle;
    width: 65%;
    padding-left: 3%;
}
.about2-page .about-6 .content h3 {
    font-size: 40px;
    color: #212121;
    line-height: 76px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid #d2d2d2;
}
.about2-page .about-6 .content h3:after {
    content: '';
    width: 15%;
    height: 1px;
    background: var(--color);
    position: absolute;
    left: 0;
    bottom: -1px;
}
.about2-page .about-6 .content .text p {
    padding-top: 20px;
}
.newdet-page{
    padding-bottom: 70px;
}
.newdet-page h1 {
    font-size: 26px;
    line-height: 50px;
    color: black;
    font-weight: 500;
    /*text-transform: capitalize;*/
}
.newdet-page time {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    line-height: 28px;
    color: black;
    opacity: .6;
}
.newdet-page .content {
    display: block;
    padding: 15px 0;
    border-top: 1px #ccc dashed;
    border-bottom: 1px #ccc dashed;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    text-align: justify;
}
.newdet-page .share {
    padding-top: 20px;
    margin-bottom: 10px;
}
.newdet-page .share h4 {
    font-size: 14px;
    line-height: 28px;
    color: black;
    display: inline-block;
    vertical-align: middle;
}
.newdet-page .share ul {
    display: inline-block;
    vertical-align: middle;
}
.newdet-page .share ul li {
    width: auto;
    margin-left: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet-page .share ul li:hover {
    color: var(--color);
}
.news-page .news-1 h3 {
    font-size: 32px;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
}
.news-page .news-1 h3 small {
    display: block;
    font-size: 16px;
    opacity: .45;
    line-height: 30px;
    font-weight: normal;
    text-transform: none;
}
.news-page .news-1 .nav-list {
    padding-top: 30px;
}
.news-page .news-1 .nav-list ul li {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.news-page .news-1 .nav-list ul li a {
    line-height: 40px;
    height: 50px;
    font-size: 20px;
    color: #171717;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    display: block;
    padding: 5px 40px;
}
.news-page .news-1 .nav-list ul li:hover a,
.news-page .news-1 .nav-list ul li.active a {
    color: white;
    background: var(--color);
}
.news-page .news-2 {
    padding: 60px 0 0px;
}
.news-page .news-2 .top .img {
    width: 30%;
    vertical-align: middle;
}
.news-page .news-2 .top .img a {
    display: block;
}
.news-page .news-2 .top .img a img {
    width: 100%;
}
.news-page .news-2 .top .text {
    width: 70%;
    vertical-align: middle;
    padding-left: 50px;
    max-width: 820px;
}
.news-page .news-2 .top .text h3 {
    font-size: 24px;
    color: black;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .top .text h3:hover {
    color: var(--color);
}
.news-page .news-2 .top .text p {
    display: block;
    font-size: 16px;
    color: #3a3a3a;
    margin: 20px 0 30px;
}
.news-page .news-2 .top .text a.more {
    display: inline-block;
    font-size: 18px;
    color: #129dd7;
    border-bottom: 1px solid #129dd7;
    line-height: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .top .text a.more:hover {
    border-color: black;
}
.news-page .news-2 .bottom {
    padding: 80px 0 0px;
}
.news-page .news-2 .bottom ul {
    margin: -13px;
}
.news-page .news-2 .bottom ul li {
    padding: 13px;
}
.news-page .news-2 .bottom ul li .box2 {
    display: block;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}
.news-page .news-2 .bottom ul li .box2 a.img-box {
    display: block;
}
.news-page .news-2 .bottom ul li .box2 a.img-box img {
    width: 100%;
}
.news-page .news-2 .bottom ul li .box2 a.img-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    cursor: pointer;
    cursor: hand;
    border: 1px solid black;
    border-radius: 100%;
    width: 50px;
    height: 50px;
}
.news-page .news-2 .bottom ul li .box2 a.img-box svg path {
    fill: inherit !important;
}
.news-page .news-2 .bottom ul li .box2 .content {
    display: block;
    padding: 35px 20px;
}
.news-page .news-2 .bottom ul li .box2 .content h3 {
    display: block;
    font-size: 19px;
    color: #333;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    /*max-height: 40px;*/
    font-weight: 600;
    padding: 0;
    text-align: left;
    text-transform: none;
    /*height: 4.8em;*/
}
.news-page .news-2 .bottom ul li .box2 .content p {
    display: block;
    font-size: 16px;
    color: #979797;
    line-height: 2;
    /*height: 80px;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin: 15px 0;
}
.news-page .news-2 .bottom ul li .box2 .content time {
    display: block;
    font-size: 14px;
    line-height: 28px;
    color: #979797;
}
.news-page .news-2 .bottom ul li .box2 .box3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color);
    color: white;
    padding: 20px 30px;
    text-align: center;
    -webkit-transform: translateY(101%);
    -moz-transform: translateY(101%);
    -ms-transform: translateY(101%);
    -o-transform: translateY(101%);
    transform: translateY(101%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-page .news-2 .bottom ul li .box2 .box3 i {
    font-size: 16px;
    text-transform: uppercase;
}
.news-page .news-2 .bottom ul li .box2 .box3 h4 {
    display: block;
    font-size: 20px;
    line-height: 1.3;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    max-height: 12.8em;
}
.news-page .news-2 .bottom ul li .box2 .box3 p {
    display: block;
    color: white;
    font-size: 16px;
    line-height: 30px;
    height: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    max-height: 105px;
}
.news-page .news-2 .bottom ul li .box2 .box3 a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    background: white;
    font-size: 14px;
    color: var(--color);
    text-transform: uppercase;
    margin: 30px auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .bottom ul li .box2 .box3 a.more:hover {
    background: #222;
    color: white;
}
.news-page .news-2 .bottom ul li .box2 .box3 time {
    color: white;
    display: block;
    font-size: 14px;
    line-height: 28px;
}
.news-page .news-2 .bottom ul li .box2:hover .box3 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.about2-page .i-history {
    padding-bottom:50px;
}
.about2-page .i-history h2.h2 {
    font-size:40px;
    text-align:center;
    font-weight:700;
    margin-bottom:10px;
    color:#d29b57;
}
.about2-page .i-history p.p {
    padding:0 20%;
    text-align:center
}
.about2-page .i-history .history-list {
    margin-top:50px;
    position:relative
}
.about2-page .i-history .history-list:after {
    content:'';
    position:absolute;
    width:1px;
    height:100%;
    background:#ddd;
    left:50%;
    top:0
}
.about2-page .i-history .history-list .list p {
    font-weight:400;
    color:#504a44;
    font-size:16px;
    line-height:30px
}
.about2-page .i-history .history-list .list .i-text {
    float:left;
    width:49%;
    cursor:pointer;
    transition:.3s ease;
    -webkit-transition:.3s ease;
    -moz-transition:.3s ease;
    -ms-transition:.3s ease;
    -o-transition:.3s ease;
    position:relative
}
.about2-page .i-history .history-list .list .i-text:after {
    content:'';
    position:absolute;
    width:9px;
    height:15px;
    background:url(/template/en/images/r_03.jpg) no-repeat center;
    right:-9px;
    top:50px;
    z-index:8
}
.about2-page .i-history .history-list .list .i-text .text1 {
    border:1px solid #ededed;
    padding:30px;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
    text-align:right;
    width:92%
}
.about2-page .i-history .history-list .list .i-text .text1 .grid-box div.column {
    width:75%
}
.about2-page .i-history .history-list .list .i-text .text1 .grid-box div.column:nth-child(2) {
    width:25%;
    padding-left:10px
}
.about2-page .i-history .history-list .list .i-text .text1 .grid-box .column h4 {
    font-size:20px;
    font-weight:700;
    margin-bottom:10px
}
.about2-page .i-history .history-list .list .i-text:hover .text1 {
    background:#eee
}
.about2-page .i-history .history-list .list .i-year {
    float:right;
    width:50%
}
.about2-page .i-history .history-list .list .i-year .year1 {
    padding:38px 30px 0 8%
}
.about2-page .i-history .history-list .list .i-year .year1 h3 {
    font-size:36px;
    font-weight:700;
    line-height: 1;
    color: var(--color);
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-text {
    float:right
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-text:after {
    background:url(/template/en/images/l_03.jpg) no-repeat center;
    right:auto;
    left:-8px
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-text .text1 {
    float:right;
    text-align:left
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-text .text1 .grid-box div.column:nth-child(1) {
    float:right;
    padding:0 0 0 10px
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-text .text1 .grid-box div.column:nth-child(2) {
    float:left
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-year {
    float:left
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-year h3, .about2-page .i-history .history-list .list:nth-child(2n) .i-year p {
    text-align:right
}
.about2-page .i-history .history-list .list:nth-child(2n) .i-year .year1 {
    padding:32px 8% 0 30px
}
.about2-page .i-history .history-list .list .i-text .text1 .grid-box .img img {
    padding: 5px;
}
@media screen and (max-width: 1500px) {
    .news-page .news-2 {
        padding: 50px 0;
    }
    .news-page .news-2 .bottom {
        padding: 40px 0;
    }
}
@media screen and (max-width: 1270px) {
    .news-page .news-2 .top .text {
        padding-left: 25px;
    }
    .news-page .news-2 .top .text p {
        margin: 15px 0;
    }
    .news-page .news-1 .nav-list ul li {
        line-height: 34px;
        height: 34px;
    }
}
@media screen and (max-width: 1000px) {
    .news-page .news-2 .top .text h3 {
        font-size: 20px;
    }
    .news-page .news-1 .nav-list ul li a {
        padding: 0 20px;
    }
    .news-page .news-1 h3 {
        font-size: 28px;
    }
}
@media screen and (max-width: 700px) {
    .news-page .news-2 .top .text {
        width: 50%;
    }
    .news-page .news-2 .top .img {
        width: 50%;
    }
    .news-page .news-2 .top .text p {
        font-size: 14px;
    }
    .news-page .news-2 .top .text h3 {
        font-size: 18px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .news-page .news-1 .nav-list ul li {
        font-size: 15px;
    }
    .news-page .news-1 .nav-list {
    }
    .news-page .news-2 {
        padding: 30px 0;
    }
    .news-page .news-1 h3 {
        font-size: 24px;
    }
}
@media screen and (max-width: 500px) {
    .news-page .news-2 .top .text {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .news-page .news-2 .top .img {
        width: 100%;
    }
}
@media screen and (max-width: 1600px){
    .about2-page .about-1 .top .left h4 {
        font-size: 40px;
    }
    .about2-page .about-1 .top .right ul li h4 {
        font-size: 60px;
    }
    .about2-page .about-1 .top .right ul li p {
        font-size: 18px;
    }
    .about2-page .about-3 .list ul li h5 {
        font-size: 24px;
    }
    .about2-page .about-6 {
        padding: 80px 0;
    }
    .about2-page .about-6 .content h3 {
        font-size: 32px;
    }
}
@media screen and (max-width: 1250px){
    .about2-page .about-5 {
        padding: 60px 0;
    }
    .about2-page .about-6 .content h3 {
        font-size: 24px;
    }
    .about2-page .about-1 {
        padding: 0px 0 40px;
    }
    .about2-page .about-1 .top .left h3 {
        font-size: 40px;
    }
    .about2-page .about-1 .top .left h6 {
        font-size: 24px !important;
    }
    .about2-page .about-4 .box {
        top: 20px;
    }
}
@media screen and (max-width: 1000px){
    .about2-page .about-1 .top .right {
        display: none;
    }
    .about2-page .about-1 .top .left {
        width: 100%;
        padding-right: 0;
    }
    .about2-page .about-1 .top.two {
        margin: 0 auto 30px;
        padding-bottom: 30px;
    }
    .about2-page .about-1 .bottom .text img {
        width: 70%;
    }
    .about2-page .about-2 .box .left {
        width: 100%;
        padding-right: 0;
    }
    .about2-page .about-2 .box .right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .about2-page .about-2 {
        padding: 30px 0;
    }
    .about2-page .about-3 h3 {
        font-size: 24px;
    }
    .about2-page .about-3 .list ul li {
        width: 50%;
        padding: 15px;
    }
    .about2-page .about-3 .list ul {
        margin: -15px;
    }
    .about2-page .about-3 .list ul li i img {
        max-height: 70px;
    }
    .about2-page .about-4 .box {
        height: 360px;
    }
    .about2-page .about-6 .content {
        width: 100%;
        padding-left: 0;
    }
    .about2-page .about-6 .img {
        display: none;
    }
    .about2-page .i-history .history-list .list .i-text {
        width: 70%;
        float: right;
    }
    .about2-page .i-history .history-list .list .i-year {
        width: 30%;
        float: left;
        text-align: right;
    }
    .about2-page .i-history .history-list:after {
        left: 30%;
    }
    .about2-page .i-history .history-list .list .i-text:after {
        background-image: url('../images/l_03.jpg');
        right: auto;
        left: -8px;
    }
    .about2-page .i-history .history-list .list .i-text .text1 .grid-box .column:nth-child(2) {
        display: none;
    }
    .about2-page .i-history .history-list .list .i-text .text1 .grid-box .column {
        width: 100%;
    }
    .about2-page .i-history .history-list .list .i-text {
        text-align: right;
    }
    .about2-page .i-history .history-list .list .i-text .text1 {
        margin-left: auto;
        text-align: left;
    }
}
@media screen and (max-width: 1000px){
    .about2-page .about-6 {
        padding: 40px 0;
    }
    .about2-page .about-2 .box .left img {
        margin: 0;
    }
    .about2-page .about-1 .bottom .text img {
        width: 100%;
        padding-left: 0;
    }
    .about2-page .about-3 .list ul li h5 {
        margin: 10px 0;
    }
    .about2-page .about-3 .list ul li h5 {
        font-size: 20px;
    }
    .about2-page .i-history .history-list .list p {
        font-size: 12px;
    }
    .about2-page .i-history .history-list .list .i-text .text1 {
        padding: 10px;
    }
    .about2-page .i-history .history-list .list .i-year .year1 h3 {
        font-size: 20px;
    }
    .about2-page .about-1 .top .left h3 {
        font-size: 28px;
    }
}
@media screen and (max-width: 700px) {
    .related_products .container{
        padding: 0 15px;
    }
}
@media screen and (max-width: 500px) {
    .huhu{
        display: none!important;
    }
    .fenlei{
        display: none!important;
    }
    .miaoshu{
        display: none!important;
    }
    .newdet-page h1{
        font-size: 22px;
        line-height: 40px;
    }
}
.about-page h2.title,.about-page h1.title {
    font-size: 40px;
    color: #312e2e;
    padding-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}
.about-page .about-4 h2.title {text-align: left;}
.about-page small {
    display: block;
    max-width: 1070px;
    margin: 0 auto;
    font-size: 16px;
    color: #4e4243;
    line-height:1.5;
    font-weight: 500;
    text-transform: none;
    margin-top: 24px;
}
.gnav_process {
    padding: 0 0 35px 0;
}
.gnav_process li {
    position: relative;
    width: 22%;
    margin-bottom: 20px;
}
.gnav_process a {
    display: inline-block;
    width: 100%;
    position: relative;
    height: 100%;
}
.gnav_process a img {
    opacity: 1;
    transition: all 1s;
}
.gnav_process a:after {
    content: '';
    position: absolute;
    top: 0%;
    right: 0;
    background: #333333;
    width: 0%;
    height: 100%;
    overflow: hidden;
    transition: .5s .2s;
    opacity: 0;
}
.hover_effect_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    z-index: 3;
}
.gnav_process .hover_effect_box p {
    opacity: 0;
    transition: .5s;
    line-height: 150%;
    color: #cccccc;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 auto;
    letter-spacing: 1.5px;
    padding: 10px;
    transition: 0.8s;
}
.gnav_process a:hover p {
    opacity: 1;
    transition: .8s .2s;
}
.gnav_process a:hover:after {
    transition: .5s;
    opacity: 1;
    width: 100%;
}
@media screen and (max-width:420px) {
    .gnav_process li {
        width: 47%;
    }
}
@media screen and (max-width:1023px) {
    .hover_effect_box {
        position: relative;
        top: auto;
        left: auto;
        transform: translate(0%, 0%);
    }
    .gnav_process .hover_effect_box p {
        opacity: 1;
    }
    .gnav_process img {
        display: none;
    }
    .gnav_process a:hover:after {
        opacity: 0;
        width: 0;
    }
}
.page-processing_detail {
    overflow: hidden;
}
.page-product .product-content,
.page-processing .product-content,
.page-processing_detail .product-content {
    width: 72%;
}
.page-product .product-content .des{
    margin: 20px 0;
    font-size: 16px;
    line-height:1.5;
    text-align: justify;
}
.page-product .product-content h1{
    font-weight: bold;
    font-size: 26px;
    color: var(--color);
}
.page-product .product-content .des ul li{
    position: relative;
    padding-left: 15px;
}
.page-product .product-content .des ul li::before{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}
.page-product .product-content .des strong{font-weight: 800;}
.product_newul {
    display: flex;
    justify-content: left;
    /*align-items: center;*/
    flex-wrap: wrap;
    padding: 60px 0;
    margin: 0 -20px -40px;
}
.product_newul li {
    width: 25%;
    padding: 0 10px 40px;
}
@media screen and (max-width:1360px) {
    .product_newul {
        padding: 0 0 80px 0;
        margin: 0;
    }
}
@media screen and (max-width:1023px) {
    .product_newul li {
        width: 50%;
    }
}
@media screen and (max-width:600px) {
    .product_newul li {
        width: 100%;
    }
}
.product_inner {
    max-width: 365px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    overflow: hidden;padding: 15px;
}
.product-content li .product_inner:hover .desc{
    top: 0;
    opacity: 1;
}
.product_inner .sy{
    position: absolute;
    top:103px;
    left: 60px;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    -o-pointer-events: none;
    pointer-events: none;
}
.product_inner .sy img{
    width: 80%;
    opacity: 0.3;
}
.page-product .desc{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eaeaea;
    padding: 20px 10px;
    text-align: center;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.page-product .desc h3{
    font-size: 14px;
    line-height: 1.2x;
    color: var(--color);
    font-weight: bold;
    text-transform: uppercase;
}
.page-product .desc p{
    font-size: 12px;
    margin-top: 10px;
}
.page-product .desc .more{
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: var(--color);
    padding: 5px 15px;
    margin: 10px auto 0;
}
.page-product .desc img{width: 50%;}
.page-product .list-txt,
.page-processing .list-txt {
    padding: 10px 5px 0 !important;
    height: auto;
}
.page-processing .list-txt h3 {
    padding: 0 0 8px 0;
}
.page-product .hvr-icon-wobble-horizontal,
.page-processing .hvr-icon-wobble-horizontal {
    text-transform: uppercase;
}
.page-product .list-txt h3:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #1a1919;
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
}
.page-product .list-txt h3,
.page-processing .list-txt h3 {
    font-size: 16px;
    font-weight: 500;
    word-break: break-word;
}
.page-product .list-txt p {
    line-height: 1.8;
    text-transform: capitalize;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 3.8em;
    color: #484848;
}
.page-product .list-txt>a {
    font-size: 14px;
    color: #484848;
    transition: all .5s;
}
.page-product .list-txt>a:hover{
    color: var(--color);
}
.page-product .list-txt .fontC,
.page-processing .list-txt .fontC {
    font-size: 14px;
    letter-spacing: 1px;
    color: #9e9e9e;
    overflow: hidden;
    font-weight: 300;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 88px;
    line-height: 28px;
    margin: 16px 0 33px;
}
.p_img_box {
    opacity: 1;
}
.p_img_box:hover {
    opacity: 0.8;
}
.processing_box_items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 0 90px 0;
}
.processing_videoBox {
    justify-content: center;
    flex-direction: column;
}
.processing_videoBox p {
    font-size: 14px;
    letter-spacing: 1px;
}
.processing_videoBox iframe{
    width: 60%;
}
.processing_box01 .processing_img,
.processing_box01 .processing_note {
    width: 50%;
}
.processing_box01 .processing_note {
    padding: 0 0 0 20px
}
.processing_box01 .processing_note .fontC {
    padding: 0 0 30px 0;
}
.video_icon {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.video_icon:hover span {
    background: #4c4e79;
}
.video_icon p {
    margin: 0;
    padding-left: 20px
}
.processing_box02 .processing_note {
    padding: 0 50px 0 0px
}
.processing_box03 .processing_note {
    padding: 0 0 0 50px
}
.processing_box02 .processing_img,
.processing_box03 .processing_img {
    width: 30%;
}
.processing_box02 .processing_note,
.processing_box03 .processing_note {
    width: 70%;
}
.page-product{
    padding-bottom: 50px;
}
@media screen and (max-width: 1440px) {
    .page-product .list-txt h3:first-child{
        height: auto;
    }
    /*.page-product .product-content ul li{
    width: 33.3333% !important;;
  }*/
}
@media screen and (max-width: 1200px) {
    .page-product .sidebar-box .product-contents{
        display: none;
    }
    .page-product .product-content{
        width: 100%;
    }
}
@media screen and (max-width:800px) {
    .processing_box02 .processing_img,
    .processing_box03 .processing_img,
    .processing_box02 .processing_note,
    .processing_box03 .processing_note {
        width: 100%;
    }
    .processing_videoBox iframe{
        width: 100% !important;
    }
    .processing_box01 .processing_note .fontC {
        padding: 0 0 0 0;
    }
    .page-product .product-content ul li{
        width: 50% !important;
    }
}
@media screen and (max-width: 500px) {
    .page-product .product-content ul li{
        width: 100% !important;
    }
    .page-product .list-txt{
        padding: 0 !important;
    }
}
.processing_box03 .processing_note ul p {
    margin: 0;
}
.processing_box03 .processing_note ul {
    padding: 16px 0 0 0px
}
.processing_box03 .processing_note li {
    padding: 0 0 10px 0;
    position: relative;
}
.processing_box03 .processing_note li::before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: #4c4e79;
    position: absolute;
    top: 8px;
    left: 10px;
}
.processing_box03 .processing_note li p {
    display: inline-block;
    color: #797979;
    padding: 0 0 0 25px;
}
.processing_note h3,
.processing_note h4 {
    font-size: 36px;
    color: #4c4e79;
}
.processing_note h3 {
    padding: 0 0 10px 0;
}
.processing_note h4 {
    font-size: 22px;
}
.processing_note .fontC {
    color: #797979;
    font-size: 14px;
}
.video_icon p {
    font-size: 14px;
}
.video_icon span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #000;
    border-radius: 50%;
    position: relative;
    transition: all .5s
}
.video_icon i {
    width: 0;
    height: 0;
    border-style: solid;
    display: inline-block;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 7px;
    left: 10px;
    border-width: 5.12px 0 5.12px 7.68px;
}
/*slick*/
.page-processing_detail .slick-dots {
    bottom: 10px;
}
.page-processing_detail .slick-dots li button:before {
    color: #FFF;
}
.page-processing_detail .slick-dots li.slick-active button:before {
    color: #FFF;
    opacity: .9;
}
.page-processing_detail .slick-slider {
    left: 0;
    right: 0;
    margin: auto;
}
.processing_box04 {
    padding: 40px 0 80px 0;
}
@media screen and (max-width:800px) {
    .processing_box_items {
        flex-direction: column;
        padding: 30px 0 50px 0;
    }
    .processing_box02 {
        flex-direction: column-reverse;
    }
    .processing_box01 .processing_img,
    .processing_box01 .processing_note,
    .processing_box02 .processing_note,
    .processing_box03 .processing_note {
        width: 100%;
        padding: 20px 0
    }
    .processing_box01 .processing_img img,
    .processing_box02 .processing_img img,
    .processing_box03 .processing_img img {
        max-width: 1000px;
        width: 100%;
    }
    .processing_box04 {
        padding: 0px 0 40px 0;
    }
}
.page-product-detail04 .right-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background: #fff;
}
.page04_inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.page04_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page04_headerimg,
.page04_note {
    width: 50%;
    text-align: left;
}
.page04_headerimg {
    padding: 0 10%;
}
.page04_note {
    padding: 0 10% 0 0
}
.page04_note h5 {
    font-size: 36px;
    font-weight: 500;
    padding: 0 0 10px 0;
}
.page04_note p {
    font-size: 14px;
    padding: 0 0 50px 0;
}
.page04_note .fontC {
    text-align: center
}
.page04_header .slick-dots li.slick-active button:before {
    color: #868686;
}
.page04_header .slick-dots li button:before {
    color: #a5a5a5;
}
.page04_header .slick-dots {
    bottom: -20px;
}
.page04_bottom_title {
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: bold;
    opacity: 0.6;
    padding: 0 0 70px 0;
    display: inline-block
}
.page04_bottom_title .hr01 {
    margin: 21px auto 0;
}
.page04_bottom {
    padding: 40px 0 160px 0;
}
@media screen and (max-width:1024px) {
    .page04_bottom {
        padding: 40px 0 80px 0;
    }
}
@media screen and (max-width:800px) {
    .page04_header {
        flex-direction: column;
    }
    .page04_headerimg,
    .page04_note {
        width: 100%;
        padding: 0 10%;
    }
    .page04_bottom {
        padding: 80px 0 50px 0
    }
    .page04_bottom_title {
        padding: 0 0 50px 0;
    }
}
@media screen and (max-width:850px) {
    .btn-inquiry-x {
        background: #fff
    }
}
h1.prohdd {
    font-size: 24px;
    text-align: center;
    padding-top: 50px;
    line-height: 40px;
}
.page-product .sidebar-box .product-contents {width: 23%; padding-right: 3%;position: sticky;top: 100px;}
.product-contents .fenlei {
    /*background: #a4b692;*/
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}
.page-product .sidebar-box .product-contents h3{font-size: 40px;
    line-height: 2;
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;}
.product-contents .fenlei .after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: rgba(147,149,185,0.3);
}
.product-contents .fenlei>li {
    position: relative;
    padding: 20px 0px;
    border-bottom: 1px solid #edeaea;
}
.product-contents .fenlei>li a {
    line-height: 2;
    font-size: 16px;
    color: #6C6F74;
    position: relative;
    margin-right: 10px;
}
.product-contents .fenlei>li a.active {
    font-weight: bold;
    color: var(--color);
}
.product-contents .fenlei>li a:hover {
    color: var(--color);
}
.product-contents .fenlei>li:hover .children{
    display: block;
}
.product-contents .fenlei>li:last-child::after {
    display: none;
}
.product-contents .fenlei>li .children{
    position: absolute;
    width: 100%;
    left: 0;
    top: 99.8%;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    display: none;
}
.product-contents .fenlei>li .children li{
    padding: 10px 0;
}
.product-contents .fenlei>li .children li:hover{
    background: #89A373;
}
.product-contents .fenlei>li .children li:hover a{
    color: #fff
}
.product-contents .fenlei>li .children li a::after{
    display: none;
}
.product-contents .pdf-list{
    margin-top: 10px;
}
.product-contents .pdf-list dd{
    /*float: left;
    width: auto;*/
    position: relative;
    padding: 20px 0px;
    border-bottom: 1px solid #edeaea;
    font-size: 16px;
    clear: both;
    overflow: hidden;
    color: #6C6F74;
}
.product-contents .pdf-list dd i {
    margin-right: 5px;
    color: var(--color);
}
.product-contents .pdf-list dd i.fa-download {
    float: right;
    margin-top: 6px;
    color: #6C6F74;
}
.product-contents .product-list {
    margin-top: 15px;
}
.product-contents .product-list li {
    float: left;
    margin-right: 8px;
    width: 417px;
    margin-left: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}
.product-contents .product-list li .img {
    overflow: hidden;
    background: #f2f2f2;
}
.product-contents .product-list li img {
    width: 100%;
    display: block;
    -webkit-transition: transform .75s;
    transition: transform .75s;
}
.product-contents .product-list li:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.product-contents .product-list li .text {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    height: 38px;
    line-height: 38px;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    padding-bottom: 7px;
    padding-top: 10px;
    position: relative;
    border-bottom: 1px solid rgb(222, 223, 234);
}
.product-contents .product-list li:hover .svg svg{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.cp-box{
    display: flex;
    flex-wrap: wrap;
}
.cp-box .left {
    width: 50%;
}
.cp-box .left h2{
    max-width: 805px;
    margin: 0 0 0 auto;
    padding: 0 15px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}
.cp-box .left .zilei {
    padding: 0 15%;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}
.cp-box .left .zilei h3 {
    font-weight: normal;
    padding-bottom: 30px;
    font-size: 20px;
}
.cp-box .left .zl_link a {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
    line-height: 30px;
}
.cp-box .left .zl_link a.current {
    font-weight: bold;
}
.cp-box .left .zl_link a:hover {text-decoration: underline;}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.cp-box .right {
    float: right;
    width: 50%;
    background: #f3f3f3;
    padding: 3% 2%;
    text-align: center;
}
.cp-box .right h2 {
    font-weight: lighter;
    font-size: 32px;
    color: #1e1e1e;
    font-weight: 400;
}
.cp-box .right .rate {
    padding-top: 13px;
    font-size: 18px;
    color: #3b3b3b;
    padding-bottom: 15px;
    line-height: 2.2;
}
.cp-box .right .rate h3 {
    font-weight: normal;
    font-size: 16px;
    padding-bottom: 5px;
    color: #000
}
.cp-box .right .productInquiry {
    margin-top: 35px;
    margin-bottom: 25px;
}
.cp-box .right .productInquiry a {
    width: 250px;
    height: 45px;
    line-height: 45px;
    background-color: #1E1E1E;
    letter-spacing: 1px;
    font-size: 16px;
    color: #FFF;
    display: block;
    text-align: center;
    cursor:pointer;
}
.cp-box .right .productInquiry a:hover {
    background-color: #7e947a;
}
.cp-box {
    margin-top: 30px;
    width: 100%;
    position: relative;
}.cp-detail {
     margin-top: 60px;
     padding-left: 9%;
     position: relative;
     padding-right: 15%;
     margin-bottom: 50px;
 }
.cp-detail h3 {
    font-size: 24px;
    color: #313133;
    font-weight: lighter;
    float: left;
    font-weight: 400;
    position: absolute;
    top: 30%;
}
.cp-detail h3 span {
    background: #7d9479;
    /* padding: 10px 20px; */
    color: #fff;
    display: inline-block;
    padding: 7px 18px;
}
.cp-detail .rt {
    margin-left: 190px;
}
.cp-detail .rt ul{
    display: flex;
    flex-wrap: wrap;
}
.cp-detail .rt ul li {
    width: 16.666%;
    text-align: center;
    padding: 0 8px;
}
.cp_slt {
    position: relative;
    width: 600px;
    margin: 0 auto;
}
.cp_slt img {width: 100%;}
.cp_slt p {
    font-size: 24px;
    text-align: center;
    padding-top: 50px;
}
/* 新增page */
#resources_nav::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #e0e0e0;
    margin-top: 20px;
}
#resources_nav li {
    display: inline-block;
    margin-right: 5px;
}
#resources_nav li a {
    display: block;
    width: 185px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 25px 0 25px 0;
    background-color: #123485;
    color: white;
}
#resources_nav li:nth-child(2) a {
    background-color: #40b5b1;
}
#resources_nav li:nth-child(3) a {
    background-color: #b0c957;
}
#resources_nav li:nth-child(4) a {
    background-color: #b5b5b5;
}
.resources_sidebar {
    margin: 0 -30px;
}
.resources_sidebar .resources_left {
    width: 70%;
    padding: 0 30px;
}
.resources_sidebar .resources_right {
    width: 30%;
    padding: 0 30px;
}
h2.resources {
    font-weight: 600;
}
h2.resources::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: #13237f;
    margin-top: 10px;
}
.resources_more {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}
.video_content h3 {
    font-weight: 500;
}
.resources-page .resources_2 {
    background-color: #fafafa;
}
.product_catalogue .img {
    width: 31%;
    vertical-align: middle;
}
.product_catalogue .mml-text {
    width: 69%;
    vertical-align: middle;
}
.product_catalogue .mml-text p {
    min-height: 75px;
}
.product_catalogue .mml-text .line {
    height: 1px;
    background: #e4e4e4;
}
.product_catalogue .mml-text .date time {
    font-weight: 500;
}
.product_catalogue .mml-text .date .download {
    font-size: 15px;
    font-weight: 500;
    line-height: 34px;
}
.pdf_box ul {
    margin: -15px;
}
.pdf_box ul li {
    padding: 15px;
}
.pdf_box .mml-text {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}
.pdf_box .mml-text .title {
    padding-left: 55px;
    background: url(../images/pdf-icon.png) no-repeat left top;
    min-height: 110px;
}
.pdf_box .mml-text .line {
    height: 1px;
    background-color: #e5e5e5;
}
.pdf_box .mml-text .date time {
    font-weight: 500;
}
.pdf_box .mml-text .date .download {
    font-size: 15px;
    font-weight: 500;
    line-height: 34px;
}
.catalogue-page .catalogue_list li {
    padding: 50px 0;
}
.catalogue-page .product_catalogue .img {
    width: 40%;
}
.catalogue-page .product_catalogue .mml-text {
    width: 60%;
}
#Product_Categories li {
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
    font-weight: 500;
}
#Product_Categories li a {
    display: block;
    padding-left: 20px;
    position: relative;
}
#Product_Categories li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: #9a9a9a;
    border-radius: 50%;
}
#Latest_News h4 {
    font-weight: 500;
}
#Latest_News a.view_more {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}
.video-page .video_box {
    -webkit-box-shadow: 0 100px 40px -120px #ccc;
    box-shadow: 0 100px 40px -120px #ccc;
}
.video-page .video_list .list ul {
    margin: -25px -10px;
}
.video-page .video_list .list ul li {
    padding: 25px 10px;
}
.video-page .video_list .line {
    height: 1px;
    background-color: #e4e4e4;
}
.video-page .video_list .cat_name {
    padding: 3px 10px;
    background-color: #b0c957;
    color: white;
    border-radius: 8px;
}
.lg-page .lg_box ul{
    margin: -25px -10px;
}
.lg-page .lg_box ul li{
    padding: 25px 10px;
}
.page-product .prodet-box{width: 72%;}
.prodet-box {
    padding: 100px 0;
}
.prodet-box .ui.container {
    max-width: 1520px;
}
.prodet-box .prodet-1 .left{
    position: relative;
}
.prodet-box .prodet-1 .left img{width: 70%}
.prodet-box .prodet-1 .left .sy{
    position: absolute;
    top: 190px;
    left:100px;
}
.prodet-box .prodet-1 .left .sy img{
    width: 80%;
    opacity: 0.3;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}
.prodet-box .prodet-1 .right {
    padding-left: 3%;
    padding-top: 3%;
}
.prodet-box .prodet-1 .right .text{font-size: 16px;}
/*.prodet-box .prodet-1 .right .text table tbody{
  min-width: 495px;
}*/
.prodet-box .prodet-1 .right span.tag {
    font-size: 24px;
    color: var(--color);
    line-height: 2;
    display: block;
}
.prodet-box .prodet-1 .right h1 {
    font-size: 20px;
    line-height: 2;
    margin: 10px 0;
    font-weight: 600;
}
.prodet-box .prodet-1 .right .text h5 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 35px;
    text-transform: uppercase;
}
.prodet-box .prodet-1 .right .text h6 {
    font-size: 30px;
    line-height: 1;
}
.prodet-box .prodet-1 .right .list {
    margin-top: 40px;
}
.prodet-box .prodet-1 .right .list ul {
    margin: -9px;
}
.prodet-box .prodet-1 .right .list ul .slick-track {
    margin-left: 0;
}
.prodet-box .prodet-1 .right .list ul li {
    padding: 9px;
    position: relative;
}
.prodet-box .prodet-1 .right .list ul li .sy{
    position: absolute;
    top: 40%;
    left: 40%;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    -o-pointer-events: none;
    pointer-events: none;
}
.prodet-box .prodet-1 .right .list ul li .sy img{
    opacity: 0.3;
    width: 50%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}
.prodet-box .prodet-1 .right .list ul li a {
    display: block;
    background: #f7f7f7;
}
.prodet-box .prodet-1 .right a.more {
    margin-top: 50px;
    line-height: 54px;
    height: 54px;
    padding: 0 34px;
    background: #1e1e1e;
    color: white;
    font-size: 20px;
    transition: .5s;
    display: inline-block;
}
.prodet-box .prodet-1 .right a.more:hover {
    background: var(--color);
}
.prodet-box .prodet-2 {
    padding-top: 60px;
}
.prodet-box .prodet-2 h3.title {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.prodet-box .prodet-2 h3.title .list{
    margin-right: 100px;
    margin-top: 10px;
    cursor: pointer;
    transition: all .5s;
}
.prodet-box .prodet-2 h3.title .list:hover,.prodet-box .prodet-2 h3.title .list.active{
    color: var(--color);
}
.prodet-box .prodet-2 .content {
    font-size: 16px;
    line-height: 2;
}
.prodet-box .prodet-2 .content table {
    background: #fafafa;
    border: none!important;
    margin: 0 auto;
}
.prodet-box .prodet-2 .content table td {
    padding: 12px;
    word-break: initial;
}
.prodet-box .prodet-2 .content table tr:nth-child(odd) {
    background: #eee;
}
.prodet-box .prodet-2 .content table tr:nth-child(even) {
    background: transparent;
}
.prodet-box .prodet-2 .product-content {
    max-width: none;
    width: 100%;
}
.prodet-box .prodet-2 .product_newul {
    margin: -15px;
    padding-top: 0;
}
.prodet-box .prodet-2 .product_newul li {
    padding: 15px;
    margin: 0;
}
.prodet-box .prodet-2 .product_newul li .product_inner {
    max-width: none;
}
.development-page {
    padding-bottom: 0;
}
.development-page span.tag {
    font-size: 24px;
    font-weight: 500;
    color: #268bc6;
    line-height: 1.2;
    display: block;
    margin-bottom: 20px;
}
.development-page h2.title {
    font-size: 72px;
    font-weight: bold;
    color: #191919;
    line-height: 1;
}
.development-page h3.title {
    font-size: 44px;
    font-weight: bold;
    color: #191919;
    line-height: 1.2;
}
.development-page .text {
    font-size: 16px;
    font-weight: 300;
    color: #101010;
    line-height: 1.8;
    margin-top: 25px;
}
.development-page .development-1 {
    padding: 50px 0 120px;
}
.development-page .development-1 .left {
    padding-right: 4%;
    vertical-align: middle;
}
.development-page .development-1 .left img {
    margin-top: 25px;
}
.development-page .development-1 .right {
    vertical-align: middle;
}
.development-page .development-1 .right .img {
    height: 520px;
    display: block;
    background-size: cover;
    background-position: center center;
}
.development-page .development-2 {
    padding: 120px 0;
    background: #fbfbfb;
    text-align: center;
}
.development-page .development-2 ul,
.development-page .development-2 .top {
    margin: -15px -30px;
}
.development-page .development-2 ul li {
    padding: 15px 30px;
}
.development-page .development-2 .top .slide {
    vertical-align: middle;
    padding: 15px 30px;
}
.development-page .development-2 .top .slide:nth-child(2) {
    width: 50%;
}
.development-page .development-2 .list {
    padding-top: 15px;
}
.development-page .development-3 {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}
.development-page .development-3 .left {
    padding-right: 3%;
    vertical-align: middle;
}
.development-page .development-3 .right {
    vertical-align: middle;
    padding-left: 4%;
}
.development-page .development-3 .right img {
    margin-bottom: -170px;
}
.development-page .development-4 {
    background: #46b82c;
}
.development-page .development-4 span {
    font-size: 128px;
    line-height: .8;
    font-weight: bold;
    -webkit-text-stroke: 1px white;
    opacity: .25;
    text-transform: capitalize;
    color: transparent;
}
@media screen and (max-width: 1200px) {
    #resources_nav li a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    .page-product .prodet-box{
        width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    #resources_nav {
        display: none;
    }
    .resources_sidebar {
        margin: 0;
    }
    .resources_sidebar .resources_left {
        width: 100%;
        padding: 0;
    }
    .resources_sidebar .resources_right {
        display: none;
    }
    .resources_more {
        display: none;
    }
}
@media screen and (max-width: 700px) {
    .video_content h3 {
        font-size: 20px;
    }
}
@media screen and (max-width: 500px) {
    .product_catalogue .img {
        width: 100%!important;
    }
    .product_catalogue .mml-text {
        width: 100%!important;
        padding: 0!important;
        margin-top: 30px;
    }
}
.advantages-page .advantages-1 {
    padding: 100px 0 90px;
    position: relative;
}
.advantages-page .advantages-1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 47%;
    z-index: -1;
    background: #f7f7f7;
}
.advantages-page .advantages-1 .box .left {
    padding-right: 10%;
}
.advantages-page .advantages-1 .box .left span.tag {
    font-weight: bold;
    color: #1c88c5;
    font-size: 36px;
    line-height: 1.2;
    display: block;
    margin-bottom: 55px;
}
.advantages-page .advantages-1 .box .left h3 {
    font-size: 72px;
    font-weight: bold;
}
.advantages-page .advantages-1 .box .left .text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    margin: 20px 0 35px;
}
.advantages-page .advantages-1 .box .left .text2 {
    font-size: 16px;
}
.advantages-page .advantages-1 .box .left div.tag {
    margin-top: 50px;
}
.advantages-page .advantages-1 .box .left div.tag h6 {
    font-size: 148px;
    font-weight: bold;
    line-height: 1;
}
.advantages-page .advantages-1 .box .left div.tag h6 sup {
    font-size: 70%;
}
.advantages-page .advantages-1 .box .left div.tag p {
    font-weight: 300;
    font-size: 26px;
    line-height: 1.4;
    margin-top: 20px;
}
.advantages-page .advantages-1 .box .right .img img {
    width: 100%;
}
.advantages-page .advantages-1 .box .right .text {
    padding: 60px 5%;
    background: #1c88c5;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
}
.advantages-page .advantages-1 .list {
    padding-top: 45px;
}
.advantages-page .advantages-1 .list ul {
    margin: -15px;
    display: flex;
    flex-wrap: wrap;
}
.advantages-page .advantages-1 .list ul li {
    padding: 15px;
}
.advantages-page .advantages-1 .list ul li .box2 {
    padding: 100px 5% 20px;
    background: white;
    border: 1px solid #e3e3e3;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.advantages-page .advantages-1 .list ul li .box2 h6 {
    font-size: 30px;
    font-weight: bold;
    color: #1c88c5;
    line-height: 1.2;
    margin-bottom: 10px;
}
.advantages-page .advantages-1 .list ul li .box2 p {
    font-size: 18px;
    color: #1b1b1b;
    line-height: 1.2;
}
.advantages-page .advantages-2 {
    padding: 100px 0;
}
.advantages-page .advantages-2 h3.title {
    font-size: 40px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: bold;
    text-align: center;
}
.advantages-page .advantages-2 h3.title:after {
    content: '';
    margin: 15px auto 0;
    width: 114px;
    height: 4px;
    background: var(--color);
    display: block;
}
.advantages-page .advantages-2 .list {
    margin-top: 60px;
}
.advantages-page .advantages-2 .list .border {
    padding: 35px 0;
    position: relative;
}
.advantages-page .advantages-2 .list .border:nth-child(even) {
    background: #eee;
}
.advantages-page .advantages-2 .list .border:nth-child(even):after {
    content: '';
    width: 200%;
    left: -25%;
    top: 0;
    height: 100%;
    background: inherit;
    z-index: -1;
    position: absolute;
}
.advantages-page .advantages-2 .list ul {
    margin: -45px -15px;
}
.advantages-page .advantages-2 .list ul li {
    padding: 45px 15px;
}
.advantages-page .advantages-2 .list ul li .box {
    padding-left: 160px;
    position: relative;
}
.advantages-page .advantages-2 .list ul li .box i {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 130px;
}
.advantages-page .advantages-2 .list ul li .box h6 {
    font-size: 30px;
    font-weight: bold;
    color: #1b1b1b;
    line-height: 1.2;
}
.advantages-page .advantages-2 .list ul li .box .text {
    margin-top: 20px;
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.4;
}
.advantages-page .advantages-2 .list ul li .box .text table {
    border: none;
}
.advantages-page .advantages-2 .list ul li .box .text table tr:nth-child(even) {
    background: #f7f7f7;
}
.advantages-page .advantages-2 .list ul li .box strong {
    font-weight: bold;
    color: var(--color);
    line-height: 1.4;
    margin-top: 15px;
    font-size: 18px;
}
.advantages-page,.business-page {
    padding: 0;
}
.business-page .business-1 {
    padding: 200px 0 130px;
    background: url('../images/business-1-bg.jpg') center center no-repeat;
    background-size: cover;
}
.business-page .business-1 .iconList ul li {
    width: 150px;
    height: 150px;
    text-align: center;
    line-height: 150px;
    border-radius: 100%;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}
.business-page .business-1 .iconList ul li img {
    display: inline-block;
    vertical-align: middle;
}
.business-page .business-1 .title {
    margin-top: 60px;
    font-size: 32px;
    color: #1b1b1b;
    font-weight: bold;
    line-height: 1.4;
    max-width: 1000px;
}
.business-page .business-2 {
    padding: 130px 0 100px;
}
.business-page .business-2 .pic {
    margin-bottom: 80px;
    padding-top: 60px;
    overflow: hidden;
    position: relative;
}
.business-page .business-2 .pic .slick-list {
    overflow: unset;
}
.business-page .business-2 .pic ul li {
    position: relative;
    transition: .5s;
    top: 0;
}
.business-page .business-2 .pic ul li img {
    width: 100%;
}
.business-page .business-2 .pic .btn div {
    position: absolute;
    top: 50%;
    z-index: 1;
    cursor: pointer;
    cursor: hand;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.business-page .business-2 .pic .btn div.prev {
    left: 3%;
    margin-top: -30px;
}
.business-page .business-2 .pic .btn div.next {
    right: 3%;
    margin-top: 30px;
}
.business-page .business-2 .pic ul .slick-current li,
.business-page .business-2 .pic ul .slick-current+div+div li {
    top: -60px;
}
.business-page .business-2 h3.title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    color: #1b1b1b;
}
.business-page .business-2 .text {
    margin-top: 30px;
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
}
.business-page .business-3 {
    padding: 70px 5%;
    background: #fafafa;
    text-align: center;
}
.business-page .business-3 ul li {
    padding: 10px;
}
.business-page .business-3 ul {
    margin: -10px;
}
@media screen and (max-width:1000px) {
    .about-page .about-1 .box .right {
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
    }
    .about-page .about-1 .box .left {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .advantages-page .advantages-1 {
        padding: 50px 0;
    }
    .advantages-page .advantages-1 .box .left span.tag {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .advantages-page .advantages-1 .box .left h3 {
        font-size: 28px;
    }
    .advantages-page .advantages-1 .box .left .text {
        font-size: 16px;
    }
    .advantages-page .advantages-1 .box .left div.tag h6 {
        font-size: 40px;
    }
    .advantages-page .advantages-1 .box .left,
    .development-page .development-1 .left,
    .development-page .development-2 .top .slide:nth-child(1),
    .development-page .development-3 .left {
        width: 100%;
        padding-right: 0;
    }
    .advantages-page .advantages-1 .box .right,
    .development-page .development-1 .right,
    .development-page .development-2 .top .slide:nth-child(2),
    .development-page .development-3 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .advantages-page .advantages-1 .box .left div.tag p {
        font-size: 18px;
    }
    .advantages-page .advantages-1 .box .right .text {
        padding: 20px;
        font-size: 20px;
    }
    .advantages-page .advantages-1 .list ul li .box2 {
        padding: 15px;
    }
    .advantages-page .advantages-1 .list ul li .box2 h6 {
        font-size: 20px;
    }
    .advantages-page .advantages-1 .list ul li .box2 p {
        font-size: 16px;
    }
    .advantages-page .advantages-1 .list ul li {
        width: 100%;
    }
    .advantages-page .advantages-2 h3.title {
        font-size: 28px;
    }
    .advantages-page .advantages-2 h3.title:after {
        width: 70px;
        height: 2px;
    }
    .advantages-page .advantages-2 .list ul li {
        width: 100%;
        padding: 15px;
    }
    .advantages-page .advantages-2 .list ul {
        margin: -15px;
    }
    .advantages-page .advantages-2 .list ul li .box {
        padding-left: 80px;
    }
    .advantages-page .advantages-2 .list ul li .box i {
        max-width: 70px;
    }
    .advantages-page .advantages-2 .list ul li .box h6 {
        font-size: 20px;
    }
    .advantages-page .advantages-2 {
        padding: 50px 0 0;
    }
    .advantages-page .advantages-2 .list ul li .box strong {
        font-size: 16px;
    }
    .advantages-page .advantages-2 .list ul li .box .text {
        font-size: 14px;
    }
    .business-page .business-1 {
        padding: 50px 0;
    }
    .business-page .business-1 .iconList ul li {
        width: 80px;
        height: 80px;
        line-height: 80px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .business-page .business-1 .iconList ul li img {
        max-width: 60px;
    }
    .business-page .business-1 .title {
        font-size: 20px;
        margin-top: 20px;
    }
    .business-page .business-2 h3.title {
        font-size: 28px;
    }
    .business-page .business-2 .pic ul .slick-current li, .business-page .business-2 .pic ul .slick-current+div+div li {
        top: 0;
    }
    .business-page .business-2 .pic .btn div.prev {
        margin-top: 0;
    }
    .development-page span.tag {
        font-size: 18px;
    }
    .development-page h3.title,.development-page h2.title {
        font-size: 28px;
    }
    .development-page .development-1 .right .img {
        height: 240px;
    }
    .development-page .development-4 span {
        font-size: 70px;
        padding: 30px 0;
    }
    .development-page {
        overflow: hidden;
    }
    .development-page .development-3 .right img {
        margin-bottom: -50px;
    }
    .service-page .service-2 .list ul li .left h4, .service-page .service-new .box ul h4 {
        font-size: 24px;
    }
    .service-page .service-new .box ul li {
        width: 100%;
    }
    .service-page .service-2 .list ul li .left p, .service-page .service-new .box ul p {
        font-size: 14px;
    }
    .service-page .service-new .box ul li .box2 {
        padding: 0;
    }
    .service-page div.formBox {
        padding: 20px;
    }
    .service-page div.formBox ul li {
        width: 100%;
    }
    .service-page div.formBox ul li input[type=submit] {
        width: 50%;
    }
    .about-page h2.title,.about-page h1.title,.about2-page .about-5 h2 {
        font-size: 24px;
    }
    .about-page .about-1 .box {
        padding-top: 0;
    }
    .about-page .about-1 .box .right .content {
        font-size: 14px;
    }
    .about-page .about-3 .box {
        padding-top: 20px;
    }
    .about-page .about-3 {
        padding: 40px 0;
    }
    .about2-page .i-history .history-list .list .i-year .year1,
    .about2-page .i-history .history-list .list:nth-child(2n) .i-year .year1 {
        padding-left: 5%;
        padding-right: 20px;
        padding-top: 25px;
    }
    .about2-page .i-history .history-list .list .i-text:after {
        top: 30px;
    }
    .about2-page .i-history .history-list .list .i-text .text1 .grid-box div.column {
        width: 100% !important;
        padding-left: 5% !important;
        text-align: left;
    }
    .business-page .business-2 .pic .btn div {
        margin-top: 0 !important;
    }
    .development-page .development-2 {
        padding: 50px 0;
    }
    .development-page .development-2 .top .slide {
        width: 100%;
    }
    .development-page .development-2 .top .slide:nth-child(2) {
        padding-left: 15px;
        padding-right: 15px;
    }
    .development-page .development-2 ul li {
        width: 50%;
        float: left;
        padding: 10px;
    }
    .development-page .development-2 ul {
        margin: -10px;
    }
    .team-page .top {
        padding-top: 0;
    }
    .product_inner {
        max-width: none;
    }
    .prodet-box .prodet-1 .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }
    .prodet-box .prodet-1 .left {
        width: 100%;
    }
    .prodet-box .prodet-1 .right h1,.prodet-box .prodet-1 .right .text h6,h2.resources {
        font-size: 24px;
    }
    .prodet-box .prodet-1 .right span.tag {
        font-size: 18px;
    }
    /*.prodet-box .prodet-2 .content table td {
    white-space: nowrap;
  }*/
    .product_newul {
        padding: 0;
    }
    .product_catalogue .mml-text h3 {
        font-size: 24px;
    }
    .news-page .news-1 .nav-list ul li {
        height: auto;line-height: normal;
        margin: 2px 0;
    }
    .news-page .news-1 .nav-list ul li a {
        font-size: 14px;
        height: 40px;
    }
}
.init-history {
    padding: 20px 0;
    background: url(/jintachina/2023/11/06/abbg.jpg) no-repeat top center;
}
.aw-history{
    padding: 20px 0 0;
    background: url(../images/aa04.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
}
.aw-history .title{
    text-align: center;
    width: 100%;
    margin-bottom:50px;
}
.aw-history .title h2{
    font-size: 40px;
    color: #333333;
    line-height: 67px;
    font-weight: bold;
}
.aw-history .title span{
    font-size: 24px;
    color: #000;
    padding-left: 52px;
    background: url(../images/pro05.png) no-repeat left center;
    line-height: 32px;
    display: inline-block;
}
.pc-history{
    width: 100%;
    height: 540px;
    overflow: hidden;
    background: url(../images/aa08.png) no-repeat center;
}
.pc-history .btns{
    width: 107px;
    height: 107px;
    position: absolute;
    top: 42%;
    margin-top: 3px;
    transition:background 0.3s;
    z-index: 2;
}
.pc-history .btns.prev{
    background: url(../images/aa06.png) no-repeat center;
    left: 0;
}
/*.pc-history .btns.prev:hover{
  background: url(../images/aa06_h.png) no-repeat center;
}*/
.pc-history .btns.next{
    background: url(../images/aa07.png) no-repeat center;
    right: 0;
}
/*.pc-history .btns.next:hover{
  background: url(../images/aa07_h.png) no-repeat center;
}*/
.pc-history .box{
    margin: 0 auto;
    height: 100%;
}
.pc-history .box ul{
    position: relative;
}
.pc-history .box li{
    width:410px;
    float: left;
    position: relative;
    margin-left: -83px;
}
.pc-history .box li.even{
    margin-bottom: 30px;
    padding-bottom: 100px;
    background: url(../images/aa05.png) no-repeat center bottom;
}
.pc-history .box li.odd{
    margin-top: 270px;
    padding-top: 100px;
    background: url(../images/aa05.png) no-repeat center top;
}
.pc-history .box li:first-child{
    margin-left: 0;
}
.pc-history .box ul{
    float: left;
}
.pc-history .box h2{
    font-size: 24px;
    color: #000;
    font-weight: 500;
    line-height: 40px;
}
.pc-history .box p{
    font-size: 16px;
    color: #666666;
    line-height: 2;
}
@media screen and (max-width: 1200px) {
    .pc-history .box p {
        margin: 0;
    }
    .inner-page .neirong1{
        display: none!important;
    }
}
@media screen and (max-width: 500px) {
    .pc-history .box li{
        width: 350px;
        margin-left: 0;
    }
}
.faq-page ul li {
    margin: 15px 0;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
    background: #F9F9F9;
    padding: 15px 10px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.faq-page ul li:hover {
    -webkit-box-shadow: 0 0 15px #CCCCCC;
    -moz-box-shadow: 0 0 15px #CCCCCC;
    box-shadow: 0 0 15px #CCCCCC;
}
.faq-page ul li .a {
    font-size: 16px;
    color: #333;
    padding-left: 60px;
    position: relative;
    line-height: 28px;
}
.faq-page ul li .a i.fa-question-circle {
    font-size: 28px;
    padding-left: 20px;
    color: #a98e60;
    position: absolute;
    top: 0;
    left: 0;
}
.faq-page ul li .a i.fa-plus {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    cursor: pointer;
}
.faq-page ul li .q {
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
    display: block;
    color: #666;
    padding-left: 60px;
    position: relative;
}
.faq-page ul li .q i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: #222;
    font-size: 20px;
}
.support-page h2.title {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #312e2e;
    text-align: center;
    /*text-transform: uppercase;*/
}
.support-page h2.title:after {
    content: '';
    display: block;
    width: 55px;
    height: 2px;
    background: var(--color);margin: 10px auto;
}
.support-page .support-1 {
    padding: 0px 0 100px;
}
.support-page .support-1 .list {
    margin-top: 3.75rem;
}
.support-page .support-1 .list ul {
    margin: -10px;
}
.support-page .support-1 .list ul li {
    padding: 0px;
}
.support-page .support-1 .list ul li img {
    width: 90%;
}
.support-page .support-1 .list ul li p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 2;
    color: #6a6868;
    padding-right: 50px;
}
.support-page .support-2 {
    padding: 5rem 0 2.5rem;
    position: relative;
    z-index: 1;
}
.support-page .support-2 img {
    width: 100%;
}
.support-page .support-2 .box {
    position: relative;
}
.support-page .support-2 .box .box2 {
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 55%;
    color: white;
}
.support-page .support-2 .box .box2 h4 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
}
.support-page .support-2 .box .box2 .text {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 25px;
    color: white;
}
.support-page .support-3 .box{
    margin-top: 3rem;
}
.support-page .support-3 .box .left {
    vertical-align: middle;
}
.support-page .support-3 .box .left img {
    width: 100%;
}
.support-page .support-3 .box .right {
    vertical-align: middle;
    padding: 0 5%;
}
.support-page .support-3 .box .right .text {
    font-size:18px;
    line-height: 1.4;
    color:#312e2e;
    text-align: justify;
}
.support-page .support-3 .box .right .list ul{
    margin: -10px;
}
.support-page .support-3 .box .right .list ul li{
    padding: 10px;
}
.support-page .support-4 {
    padding-top: 3.5rem;
    background: url('../images/service-4-bg.jpg') center bottom no-repeat;
    color: #423f3f;
    text-align: center;
}
.support-page .support-4 h2.title {
    color: inherit;
}
.support-page .support-4 .text {
    max-width: 650px;
    display: block;
    margin: 25px auto;
    font-size: 18px;
    line-height: 1.4;
    color: inherit;
    height: 1.6em;
}
.support-page .support-4 .box {
    height: 700px;
    position: relative;
}
.support-page .support-4 .box img.bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.support-page .support-4 .box li {
    width: 210px;
    height: 210px;
    border-radius: 100%;
    background: white;
    text-align: center;
    position: absolute;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.support-page .support-4 .box li i {
    display: block;
    padding: 50px 0 15px;
}
.support-page .support-4 .box li span {
    font-size: 18px;
    color: #343131;
    font-weight: 600;
}
.support-page .support-4 .box li.ie1 {
    left: 6%;
    bottom: 10%;
}
.support-page .support-4 .box li.ie2 {
    left: 20%;
    bottom: 42%;
}
.support-page .support-4 .box li.ie3 {
    left: 42%;
    bottom: 55%;
}
.support-page .support-4 .box li.ie4 {
    left: 65%;
    bottom: 42%;
}
.support-page .support-4 .box li.ie5 {
    left: 79%;
    bottom: 10%;
}
.support-page .support-5 {
    padding: 6rem 0;
    background: #f3f1f1;
}
.support-page .support-5 h2.title {
    text-transform: uppercase;
    text-align: left;
}
.support-page .support-5 .text {
    max-width: 60%;
    font-size: 16px;
    line-height: 1.4;
    color: #666;
}
.support-page .support-5 .text:before {
    content: '';
    margin: 15px 0;
    width: 71px;
    height: 5px;
    background: #393737;
    display: block;
}
.support-page .support-5 .box {
    margin-top: 35px;
}
.support-page .support-5 .box .left {
    width: 20%;
    vertical-align: middle;
}
.support-page .support-5 .box .left ul li {
    margin-bottom: 50px;
}
.support-page .support-5 .box .left ul li h5 {
    font-size: 60px;
    color: var(--color);
    font-weight: bold;
    line-height: 1;
}
.support-page .support-5 .box .left ul li p {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    margin-top: 10px;
}
.support-page .support-5 .box .left ul li:last-child {
    margin-bottom: 0;
}
.support-page .support-5 .box .right {
    width: 80%;
    vertical-align: middle;
    padding-left: 2%;
}
.support-form{
    padding: 5rem 0 2.5rem;
}
.support-form .form{
    margin-top: 3rem;
}
.support-form ul {
    margin: -15px;
}
.support-form ul li {
    padding: 15px;
}
.support-form ul li.wid-100 {
    width: 100% !important;
}
.support-form ul li input,
.support-form ul li textarea {
    width: 100%;
    line-height: 28px;
    padding: 16px;
    border-radius: 5px;
    border: 1px solid #ababab;
    display: block;
    font-size: 18px;
    color: #ababab;
}
.support-form ul li input::-webkit-input-placeholder, .support-form ul li textarea::-webkit-input-placeholder {
    color: #666;
}
.support-form ul li input:-moz-placeholder, .support-form ul li textarea:-moz-placeholder {
    color: #666;
}
.support-form ul li input::-moz-placeholder, .support-form ul li textarea::-moz-placeholder {
    color: #666;
}
.support-form ul li input:-ms-input-placeholder, .support-form ul li textarea:-ms-input-placeholder {
    color: #666;
}
.support-form ul li input::placeholder,
.support-form ul li textarea::placeholder {
    color: #666;
}
.support-form ul li textarea {
    height: 170px;
}
.support-form ul li input[type="submit"] {
    font-weight: 500;
    font-size: 20px;
    color: white;
    background: var(--color);
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.support-form ul li input[type="submit"]:hover {
    opacity: .7;
}
@media screen and (max-width: 1000px) {
    .support-page{
        padding: 40px 0;
    }
}
.culture-page .stroke {
    position: relative;
    z-index: 1;
}
.culture-page .stroke:after {
    content: attr(data-text);
    text-stroke: 1px rgb(160 160 160 / .55);
    -webkit-text-stroke: 1px rgb(160 160 160 / .55);
    text-transform: capitalize;
    position: absolute;
    color: transparent;
    font-size: 135px;
    line-height: 1;
    z-index: -1;
}
.culture-page .culture-1 {
    padding: 0px 0 60px;
}
.culture-page .culture-1 h2 {
    display: inline-block;
    width: 70%;
    font-size: 60px;
    color: #040404;
    line-height: 1;
}
.culture-page .culture-1 h2 em {
    color: #e60012;
    text-transform: uppercase;
}
.culture-page .culture-1 h2 small {
    display: block;
    font-size: 28px;
    color: #121212;
    line-height: 56px;
    padding: 10px 0;
    border-bottom: 1px solid #868686;
}
.culture-page .culture-1 h3.stroke {
    float: right;
    font-size: 40px;
    color: #212121;
    max-width: 30%;
    text-align: right;
    margin-top: 70px;
    line-height: 90px;
}
.culture-page .culture-1 h3.stroke:after {
    position: absolute;
    bottom: 50%;
    right: 0;
}
.culture-page .culture-1 .box {
    margin-top: 100px;
}
.culture-page .culture-1 .box .left {
    height: 100%;
    width: 55%;
    background-size: cover;
}
.culture-page .culture-1 .box .right {
    width: 100%;
    height: 100%;
}
.culture-page .culture-1 .box .right .top {
    color:#000;
    padding: 1% 1%;
}
.culture-page .culture-1 .box .right .top .content {
    padding-right: 240px;
    position: relative;
}
.culture-page .culture-1 .box .right .top h4 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    overflow: hidden;
}
.culture-page .culture-1 .box .right .top h4 small {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-top: 10px;
    white-space: nowrap;
}
.culture-page .culture-1 .box .right .top h4 small:after {
    content: '';
    width: 100%;
    height: 1px;
    background: white;
    display: inline-block;
    margin-left: 10px;
}
.culture-page .culture-1 .box .right .top .content h3 {
    font-size: 112px;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    line-height: .8;
}
.culture-page .culture-1 .box .right .bottom {
    padding: 1% 1%;
}
.culture-page .culture-1 .box .right .bottom h4 {
    font-size: 38px;
    line-height: 70px;
}
.culture-page .culture-1 .box .right .bottom .text {
    font-size: 18px;
    line-height: 30px;
    margin-top: 25px;
}
.culture-page .culture-1 .box .right .bottom .text p {
    padding-top: 10px;
}
.culture-page .culture-1 .box .right .bottom .text p:first-child {
    padding-top: 0;
}
.culture-page .culture-2 {
    position: relative;
    padding-bottom: 70px;
}
/*.culture-page .culture-2:after {
    content: '';
    width: 100%;
    height: 55%;
    z-index: -1;
    position: absolute;
    bottom: 0;
}*/
.culture-page .culture-2 h2 {
    font-size: 40px;
    font-weight: bold;
    color: #be1d23;
    line-height: 90px;
    overflow: hidden;
    text-transform:uppercase;
}
.culture-page .culture-2 .box{
    padding: 0 1%;
}
.culture-page .culture-2 .box .text{
    vertical-align: middle;
    width: 64%;
}
.culture-page .culture-2 .box .text p{
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
}
.culture-page .culture-2 .box .img{
    vertical-align: middle;
    width: 36%;
    text-align: center;
}
.culture-page .culture-2 .box .img img{
    display: inline-block;
    vertical-align: middle;
    margin-top: 50px;
}
/*.culture-page .culture-2 h2:after {
    left: 0;
    bottom: 6%;
    background: white;
    padding-right: 20px;
}
.culture-page .culture-2 h2:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #cd0010;
    position: absolute;
    bottom: 22%;
    left: 0;
    z-index: -2;
}*/
.culture-page .culture-2 .list {
    margin-top: 75px;
    padding: 0 5%;
}
.culture-page .culture-2 .list ul li {
    padding: 0 50px;
    text-align: center;
}
.culture-page .culture-2 .list ul li i {
    display: block;
    margin-bottom: -100px;
}
.culture-page .culture-2 .list ul li h3 {
    font-size: 240px;
    color: #e60012;
    text-transform: uppercase;
    line-height: .6;
}
.culture-page .culture-2 .list ul li h3 small {
    display: block;
    font-size: 110px;
    color: #bdbdbd;
    line-height: .5;
    margin-top: 20px;
}
.culture-page .culture-2 .list ul li h4 {
    font-size: 32px;
    color: #040404;
    line-height: 60px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.culture-page .culture-2 .list ul li p {
    font-size: 16px;
    color: #383838;
    line-height: 30px;
}
.culture-page .culture-3 {
    padding-top: 25px;
}
.culture-page .culture-3 h2{font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;}
.culture-page .culture-3 h4{font-size: 26px;}
.culture-page .culture-3 .content{font-size: 18px;    text-align: justify;}
.culture-page .culture-3:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #e60012;
    margin: 0 auto 55px;
}
.culture-page .culture-3 .box {
    position: relative;
}
.culture-page .culture-3 .box:after {
    content: '';
    background: #e60012;
    width: 2px;
    height: 70%;
    left: 47%;
    bottom: 0;
    position: absolute;
}
.culture-page .culture-3 .left {
    vertical-align: middle;
}
.culture-page .culture-3 .left h2,
.culture-page .culture-4 .left h2 {
    font-size: 40px;
    color:#be1d23;
    line-height: 1;
    margin-left: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.culture-page .culture-3 .left h4,
.culture-page .culture-4 .left h4 {
    font-size: 18px;
    line-height: 1.5;
    color: #212121;
    margin: 10px 0;
    margin-left: 30px;
    max-width: 506px;
}
.culture-page .culture-3 .left .content {
    padding: 25px 30px 40px;
    width: 90%;
    text-align: justify;
    font-size: 16px;
    color: #212121;
    line-height: 32px;
    z-index: 1;
    position: relative;
}
.culture-page .culture-3 .right {
    vertical-align: middle;
}
.culture-page .culture-3 .right a {
    display: block;
}
.culture-page .culture-4 {
    padding-top: 110px;
    padding-bottom: 100px;
}
.culture-page .culture-4 .left {
    width: 55%;
    padding-right: 5%;
}
.culture-page .culture-4 .left:after {
    content: '';
    width: 50%;
    height: 2px;
    display: block;
    background: #e60012;
    margin-top: 30px;
}
.culture-page .culture-4 .left h2 {
    margin-left: 0;
}
.culture-page .culture-4 .left h4 {
    max-width: none;
    margin-left: 0;
}
.culture-page .culture-4 .right {
    width: 45%;
}
.culture-page .culture-4 .right .content {
    font-size: 18px;
    color: #212121;
    line-height: 1.5;
    text-align: justify;
}
.culture-page .culture-4 .top {
    padding: 0 20px;
}
.culture-page .culture-4 .bottom {
    margin-top: 70px;
    text-align: center;
}
.culture-page .culture-5 {
    padding: 90px 0;
    text-align: center;
}
.culture-page .culture-5 h2 {
    display: block;
    line-height: 1;
    font-size: 65px;
    color: #141414;
}
.culture-page .culture-5 .nav-list {
    margin: 50px 0 60px;
}
.culture-page .culture-5 .nav-list ul {
    margin: -7px;
}
.culture-page .culture-5 .nav-list ul li {
    padding: 7px;
}
.culture-page .culture-5 .nav-list ul li a {
    display: block;
    padding: 50px 15px 40px;
    text-align: center;
    font-size: 54px;
    color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: #333333;
    line-height: 1;
    text-transform: capitalize;
}
.culture-page .culture-5 .nav-list ul li a:after {
    content: '';
    display: block;
    height: 2px;
    width: 30%;
    background: #e60012;
    margin: 15px auto 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.culture-page .culture-5 .nav-list ul li a:hover,
.culture-page .culture-5 .nav-list ul li.active a {
    background: #e60012;
}
.culture-page .culture-5 .nav-list ul li a:hover:after,
.culture-page .culture-5 .nav-list ul li.active a:after {
    background: white;
}
.culture-page .culture-5 .slideBox {
    font-size: 18px;
    color: #212121;
    line-height: 1.8;
    text-align: center;
}
.culture-page .culture-6 {
    padding: 150px 0 130px;
    background: #f7f7f7;
    text-align: center;
}
.culture-page .culture-6 h2 {
    font-size: 65px;
    color: #e60012;
    text-transform: uppercase;
    line-height: 1;
    padding-bottom: 15px;
}
.culture-page .culture-6 h2:before {
    content: '';
    width: 130px;
    height: 1px;
    position: absolute;
    left: 50%;
    margin-left: -65px;
    bottom: 0;
    background: #e60012;
}
.culture-page .culture-6 h2:after {
    left: 50%;
    bottom: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.culture-page .culture-6 h3 {
    display: block;
    margin: 40px 0 50px;
    text-align: center;
    font-size: 50px;
    color: #292828;
    line-height: 1;
}
.culture-page .culture-6 .list li a.img-box{
    display: block;
}
.culture-page .culture-6 .list li h5 {
    display: block;
    margin-top: 25px;
    font-size: 30px;
    color: #161616;
    line-height: 56px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
}
@media screen and (max-width: 1250px){
    .culture-page .stroke:after {
        font-size: 90px;
    }
    .culture-page .culture-2 .list ul li h3 {
        font-size: 120px;
    }
    .culture-page .culture-2 .list ul li h4 {
        font-size: 24px;
    }
    .culture-page .culture-3 .left h2, .culture-page .culture-4 .left h2,.culture-page .culture-5 h2,.culture-page .culture-6 h2 {
        font-size: 36px;
    }
    .culture-page .culture-3 .left h4, .culture-page .culture-4 .left h4,.culture-page .culture-5 .nav-list ul li a,.culture-page .culture-6 h3 {
        font-size: 24px;
    }
    .culture-page .culture-6 .list li h5 {
        font-size: 20px;
    }
}
@media screen and (max-width: 1000px){
    .culture-page .culture-1 h2 small {
        font-size: 20px;
    }
    .culture-page .culture-1 h3.stroke {
        display: none;
    }
    .culture-page .culture-1 .box {
        margin-top: 30px;
        height: auto;
    }
    .culture-page .culture-1 .box .left {
        width: 100%;
        height: 240px;
    }
    .culture-page .culture-1 .box .right {
        width: 100%;
        padding: 30px 15px;
    }
    .culture-page .culture-1 .box .right .top h4 {
        font-size: 24px;
    }
    .culture-page .culture-1 .box .right .top .content h3 {
        display: none;
    }
    .culture-page .culture-1 .box .right .top .content {
        padding-right: 0;
    }
    .culture-page .culture-2,.culture-page .culture-3:before {
        display: none;
    }
    .culture-page .culture-3 .left {
        width: 100%;
    }
    .culture-page .culture-3 .right {
        width: 100%;
        padding-left: 0;
    }
    .culture-page .culture-3 .left .content {
        width: 100%;
        padding: 15px;
        margin: 0 !important;
    }
    .culture-page .culture-4 .left {
        padding-right: 0;
        width: 100%;
    }
    .culture-page .culture-4 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .culture-page .culture-5 .nav-list ul li {
        width: 50%;
    }
    .culture-page .culture-5 .nav-list ul li a {
        padding: 30px 15px;
    }
    .culture-page .culture-6 .list li {
        width: 50%;
        margin-bottom: 10px;
    }
    .culture-page .culture-6 {
        padding: 80px 0 40px;
    }
    .culture-page .culture-1 {
        padding: 60px 0;
    }
    .culture-page .culture-1 .box .right .bottom h4 {
        font-size: 28px;
    }
    .culture-page .stroke:after {
        font-size: 70px;
    }
}
.inner-banner .box{
    position: relative;
}
.search-box-pro{
    position: absolute;
    right: 0;
    top:10px;
    z-index: 10;
}
.search-box-pro input[type="text"]{
    height: 30px;
    padding: 5px 25px 5px 15px;
    border: 1px solid #fff;
    background: #fff;
    font-size: 14px;
    color: #222;
}
.search-box-pro button{
    position: absolute;
    right:10px;
    top: 5px;
    z-index: 11;
    background: none;
    border: none;
    outline: none;
    color: #222;
}
.page-product .sidebar-box form {
    position: relative;
}
.page-product .xp{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}
.page-product .xp form{
    width: 420px;
    border-radius: 10px;
    background: #fff;
    position: relative;
    overflow: auto;
    max-height: 90vh;
    margin: 10% auto 0;
    padding: 50px 10px;
    z-index: 2;
}
.page-product .xp form i{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.page-product .xp form input[type="submit"]{
    position: inherit !important;
    margin: 60px 1.4rem 0 !important;
    background: #e60012 !important;
    width: 86% !important;
    font-size: 16px;
    color: #fff;
}
.page-product  .xp form input[type="text"],
.page-product  .sidebar-box form input[type="text"] {
    width: 100%;
    height:56px;
    border-radius:56px;
    border: 1px solid #eee;
    padding: 0 1.4rem;
    font-size: 14px;
    color: #000;
    line-height: 1;
}
.page-product  .xp form input[type="submit"],
.page-product  .sidebar-box form input[type="submit"] {
    width: 54px;
    height: 54px;
    background: url(../images/product-s.png) no-repeat center center;
    background-size: 100% auto;
    border: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right:3px;
}
.product-contents .fenlei li:hover .fa {
    color: var(--color);
    margin-right: 20px;
}
@media screen and (max-width:1440px) {
    .service-page .service-1 h2
    {font-size: 24px; font-weight: bold;}
    .contact-page .contact-2 .left h2
    {font-size: 24px; font-weight: bold;}
    .prodet-box .prodet-2 h3.title{font-size: 19px;}
    .product_inner .sy{top: 110px;}
    .prodet-box .prodet-1 .left .sy{top:135px;}
    .contact-page .contact-1 .left h2{font-size: 28px;}
    .contact-page .contact-2 .left h2{font-size: 28px;}
    .about-page h1.title{font-size: 28px;}
    .about-page .about-2 .box .content p{font-size: 16px;}
    .about-page h2.title, .about-page h1.title{font-size: 28px;}
    .about-page h2.title small, .about-page h1.title small{font-weight: normal; font-family: 'Arial';
        font-size: 16px;}
    .page-product .sidebar-box .product-contents h3{font-size: 1.6rem;}
    .support-page .support-3 .box .right .text{font-size: 18px; text-align: justify;}
}
@media screen and (max-width: 1279px) {
    .page-product .product-content li{
        width: 33.3333% !important;
    }
}
@media screen and (max-width: 700px) {
    .page-product .prodet-box{
        width: 100%;
        padding: 0 0 30px 0;
    }
    .inner-page{
        margin-top: 0;
    }
    .prodet-box .prodet-1 .right a.more{
        margin-top: 20px;
    }
    .prodet-box .prodet-2{
        padding-top: 20px;
    }
    .m-link{
        margin-top: 20px;
    }
    .related_products{
        margin-top: 30px;
    }
    .prodet-box .prodet-1 .left img{
        width: 100%;
    }
    .about-page .about-2{
        display: none;
    }
}
.con h1{
    display: inline;
}
.box h2 {
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 2;
}
/*2023-8-15*/
@media screen and (max-width: 1440px) {
    .page-product .list-txt, .page-processing .list-txt{
        padding: 10px 5px 0 !important;
    }
    .page-product .list-txt h3:first-child{
        font-size: 14px;
    }
}
.oem-page .tips_title {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #312e2e;
    text-align: center;
}
.oem-page .init-1 .container .tips_des {
    text-align: center;
    font-size: 18px;
    margin: 10px auto 0;
    max-width: 1200px;
    line-height: 36px;
}
.oem-page .init-1 .container .content {
    margin-top: 66px;
}
.oem-page .init-1 .container .content .swiper .swiper-wrapper {
    margin: -15px;
}
.oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide{
    padding: 15px;
}
.oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .img img {
    width: 100%;
}
.oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .title {
    font-weight: bold;
    font-size: 22px;
    margin-top: 30px;
}
.oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .des {
    font-weight: 300;
    font-size: 16px;
    margin-top: 20px;
    line-height: 30px;
}
.oem-page .init-2 {
    margin-top: 110px;
}
.oem-page .init-2 .container .content {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.oem-page .init-2 .container .content .left {
    width: 42%;
}
.oem-page .init-2 .container .content .left .des {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}
.oem-page .init-2 .container .content .left .img_cont {
    position: relative;
    margin-top: 50px;
}
.oem-page .init-2 .container .content .left .img_cont .img_1 {
    display: block;
    width: 100%;
}
.oem-page .init-2 .container .content .left .img_cont .img_2 {
    height: 86%;
    position: absolute;
    bottom: 30px;
    right: -100px;
}
.oem-page .init-2 .container .content .right {
    width: 47%;
}
.oem-page .init-2 .container .content .right .img {
    display: block;
    width: 100%;
}
.oem-page .init-2 .container .content .right .des {
    margin-top: 36px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
}
.oem-page .init-2 .container .content .right .list_cont {
    margin-top: 10px;
}
.oem-page .init-2 .container .content .right .list_cont .list {
    margin-top: 36px;
}
.oem-page .init-2 .container .content .right .list_cont .list .title_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.oem-page .init-2 .container .content .right .list_cont .list .title_cont .name {
    font-size: 20px;
}
.oem-page .init-2 .container .content .right .list_cont .list .title_cont .num {
    font-size: 16px;
}
.oem-page .init-2 .container .content .right .list_cont .list .jdt {
    margin-top: 10px;
    height: 9px;
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #b7b7b7;
}
.oem-page .init-2 .container .content .right .list_cont .list .jdt div {
    border-radius: 4px;
    background-color: #f90000;
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 1.5s;
    transform-origin: left;
    transform: scaleX(0);
}
.oem-page .init-2 .container .content .right .list_cont .list:nth-child(2) .jdt div {
    width: 20%;
}
.oem-page .init-2 .container .content .right .list_cont .list:nth-child(3) .jdt div {
    width: 50%;
}
.oem-page .init-2 .container .content .right .list_cont .list.active .jdt div {
    transform: scaleX(1);
}
@media (max-width: 1500px) {
    .oem-page .tips_title {
        font-size: 50px;
    }
}
@media (max-width: 1250px) {
    .oem-page .init-2 .container .content .left .img_cont .img_2 {
        right: -44px;
        bottom: 10px;
    }
}
@media (max-width: 1000px) {
    .oem-page .init-2 .container .content .left {
        width: 100%;
    }
    .oem-page .init-2 .container .content .left .img_cont .img_2 {
        display: none;
    }
    .oem-page .init-2 .container .content .right {
        margin-top: 20px;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .oem-page .init-2 {
        margin-top: 40px;
    }
    .oem-page .init-2 .container .content {
        margin-top: 20px;
    }
}
@media (max-width: 500px) {
    .oem-page .tips_title {
        font-size: 24px;
    }
    .oem-page .init-1 .container .tips_des {
        font-size: 16px;
    }
    .oem-page .init-1 .container .content {
        margin-top: 20px;
    }
    .oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide {
        text-align: center;
    }
    .oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .title {
        font-size: 18px;
        margin-top: 14px;
    }
    .oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .des {
        margin-top: 10px;
        font-size: 16px;
        line-height: 2;
    }
    .oem-page .init-2 .container .content {
        margin-top: 10px;
    }
    .oem-page .init-2 .container .content .left .des {
        text-align: center;
    }
    .oem-page .init-2 .container .content .left .img_cont {
        margin-top: 20px;
    }
    .oem-page .init-2 .container .content .right .des {
        margin-top: 20px;
        text-align: center;
    }
    .oem-page .init-2 .container .content .right .list_cont .list .title_cont .name {
        font-size: 16px;
    }
}
/* sidebox */
.inner-page .sidebox {
    padding: 100px 0 0;
}
.inner-page .sidebox .sideleft {
    width: 20%;
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
}
.inner-page .sidebox .sideleft .widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
}
.inner-page .sidebox .sideleft .widget form {
    position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f8f8f8;
    margin-bottom: 0;
    height: 40px;
    font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget form button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--color);
    color: #fff;
    border: 0;
    padding: 8px 16px;
    cursor: pointer;
    height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000;
}
.inner-page .sidebox .sideleft .widget ul {
    margin-bottom: 0;
    padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 2;
    position: relative;
}
.inner-page .sidebox .sideleft .widget ul li a {
    padding-left: 20px;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
    margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
    font-size: 14px;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
    color: var(--color);
}
.inner-page .sidebox .sideleft .widget ul li ul {
    display: none;
    margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
    padding-left: 0;
    color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active {
    color: var(--color);
}
.inner-page .sidebox .sideleft .widget .recent li {
    display: block;
}
.inner-page .sidebox .sideleft .widget .recent li .thum {
    width: 100px;
    overflow: hidden;
    float: left;
}
.inner-page .sidebox .sideleft .widget .recent li .txt {
    margin-left: 115px;
}
.inner-page .sidebox .sideleft .widget .recent li a.title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0;
}
.inner-page .sidebox .sideleft .widget .form1 {
    text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f8f8f8;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"]{
    height: 40px;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
    background: var(--color);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    height: 40px;
    padding: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
    background: #000;
}
.inner-page .sidebox .sideright {
    width: 80%;
    padding: 0 10px 50px 50px;
}
@media screen and (max-width: 1366px) {
    .inner-page .sidebox .sideleft {
        width: 28%;
    }
    .inner-page .sidebox .sideright {
        width: 72%;
    }
    .inner-page .sidebox .sideleft .widget .recent li .txt {
        margin-left: 98px;
    }
}
@media screen and (max-width: 1000px) {
    .inner-page .sidebox{
        padding: 60px 0;
    }
    .inner-page .sidebox .sideleft {
        display: none;
    }
    .inner-page .sidebox .sideright {
        width: 100%;
        padding-left: 0;
    }
    .inner-page .sidebox .sideright {
        padding: 0 0 50px 0;
    }
}
/* end */
/* product */
.product-page {
    background: #f5f5f5;
    overflow: hidden;
    margin-top: 0;
}
.product-page .sideright .top {
    width: 100%;
}
.product-page .sideright .top h3,
.product-page .sideright .top h1 {
    font-size: 50px;
    line-height: 1.6;
}
.product-page .sideright .top h3 em {
    color: var(--color);
    font-weight: bold;
}
.product-page .sideright .top .desc {
    margin-top: 10px;
    line-height: 1.5em;
    max-height: 15em;
    overflow-y: auto;
}
.product-page .sideright .list {
    margin-top: 40px;
}
.product-page .sideright .list ul {
    margin: 0 -30px -30px 0;
}
.product-page .sideright .list ul li {
    padding: 0 30px 30px 0;
}
.product-page .sideright .list ul li .box {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    position: relative;
    display: block;
}
.product-page .sideright .list ul li .box i {
    position: absolute;
    z-index: 1;
    background: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    width: 0;
    height: 0;
}
.product-page .sideright .list ul li .box i.ie1 {
    width: 2px;
    top: 0;
    left: 0;
}
.product-page .sideright .list ul li .box i.ie2 {
    width: 2px;
    bottom: 0;
    right: 0;
}
.product-page .sideright .list ul li .box i.ie3 {
    height: 2px;
    top: 0;
    right: 0;
}
.product-page .sideright .list ul li .box i.ie4 {
    height: 2px;
    bottom: 0;
    left: 0;
}
.product-page .sideright .list ul li .box .img {
    width: 100%;
    background: #fff;
}
.product-page .sideright .list ul li .box .text {
    padding: 29px 26px 26px;
}
.product-page .sideright .list ul li .box .text h4 {
    font-size: 18px;
    line-height: 1.8;
    font-weight: bold;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .sideright .list ul li .box .text p {
    font-size: 16px;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 6px;
}
.product-page .sideright .list ul li .box:hover i.ie1 {
    height: 100%;
    bottom: 0;
    top: auto;
}
.product-page .sideright .list ul li .box:hover i.ie2 {
    height: 100%;
    top: 0;
}
.product-page .sideright .list ul li .box:hover i.ie3 {
    width: 100%;
    left: 0;
}
.product-page .sideright .list ul li .box:hover i.ie4 {
    width: 100%;
    right: 0;
    left: auto;
}
.product-page #index-body {
    background: #fff;
}
@media screen and (max-width: 1366px) {
    .product-page .sideright .list ul li {
        width: 50%;
    }
    .product-page .sideright .top h3,
    .product-page .sideright .top h1 {
        font-size: 30px;
    }
}
@media screen and (max-width: 700px) {
    .product-page .sideright .top {
        width: 100%;
    }
    .product-page .sideright .top .desc {
        font-size: 14px;
        line-height: 2;
    }
    .product-page .sideright .list ul li {
        width: 100%;
    }
}
/* end */
.prodet-page {
    padding: 40px 0;
}
.prodet-page i.tag {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--color);
    line-height: 30px;
}
.prodet-page h2,
.prodet-page h1 {
    display: block;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.6;
    /*text-transform: uppercase;*/
}
.prodet-page .prodet-1 .left {
    background-size: 100% 100%;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid rgb(0 0 0 / 11%);
    position: relative;
}
.prodet-page .prodet-1 .left img {
    display: block;
    margin: 0 auto;
}
.prodet-page .prodet-1 .left i.block {
    width: 25%;
    height: 30%;
    position: absolute;
    background: #eee;
    z-index: -1;
    left: -12%;
    top: 20%;
}
.prodet-page .prodet-1 .right {
    padding-left: 5%;
    vertical-align: middle;
}
.prodet-page .prodet-1 .right h1 {
    font-size: 36px;
    line-height: 1.6;
    font-weight: 600;
}
.prodet-page .prodet-1 .right .content {
    display: block;
    padding: 30px 0;
    font-size: 16px;
    color: #545454;
    line-height: 30px;
    max-height: 210px;
    padding-right: 20px;
    overflow-y: scroll;
    margin-bottom: 30px;
}
.prodet-page .prodet-1 .right .content h6 {
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
    color: var(--color);
    font-weight: bold;
}
.prodet-page .prodet-1 .right .btn {
    padding: 35px 0;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}
.prodet-page .prodet-1 .right .btn a {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    text-transform: uppercase;
    padding: 0 24px;
    border-radius: 20px;
    background: var(--color);
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-right: 25px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-top: 5px;
}
.prodet-page .prodet-1 .right .btn a:hover {
    background: var(--color);
}
.prodet-page .prodet-1 .right .share {
    margin-top: 20px;
}
.prodet-page .prodet-1 .right .share h6 {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 30px;
}
.prodet-page .prodet-1 .right .share ul {
    display: inline-block;
    vertical-align: middle;
}
.prodet-page .prodet-1 .right .share ul li {
    width: auto;
    margin-left: 15px;
    color: #666;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-1 .right .share ul li:hover {
    color: var(--color);
}
.prodet-page .prodet-1 .right .image-gallery ul{
    margin: -10px;
}
.prodet-page .prodet-1 .right .image-gallery ul li{
    padding: 3px;
}
.prodet-page .prodet-1 .right .image-gallery ul .slick-track{
    margin-left: 0;
}
.prodet-page .custom-page .custom-3 {
    background: none;
    padding: 80px 0 50px;
}
.prodet-page .custom-page .custom-3 .list>ul>li {
    padding-left: 0;
}
.prodet-page .custom-page .custom-3 .list>ul>li i {
    display: none;
}
.prodet-page .prodet-2{
    padding-bottom: 0px;
}
.prodet-page .prodet-2 h2 {
    display: inline-block;
}
.prodet-page .prodet-2 .btn {
    float: right;
}
.prodet-page .prodet-2 .btn div {
    width: 36px;
    height: 36px;
    display: inline-block;
    margin-left: 10px;
    border: 1px solid var(--color);
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
    color: var(--color);
}
.prodet-page .prodet-2 .btn div:hover {
    color: white;
    background: var(--color);
}
.prodet-page .prodet-2 .list {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
}
.prodet-page .prodet-2 .list ul {
    margin: -12px;
}
.prodet-page .prodet-2 .list ul li {
    padding: 12px;
}
.prodet-page .prodet-2 .list ul li .box {
    padding: 15px;
    background: white;
    background-size: 100% 100%;
    text-align: center;
    position: relative;
    -o-box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
}
.prodet-page .prodet-2 .list ul li .box span {
    font-size: 14px;
    color: #404040;
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    right: 20px;
    display: block;
}
.prodet-page .prodet-2 .list ul li .box span i {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: block;
    margin: 0 auto 5px;
}
.prodet-page .prodet-2 .list ul li .box h5 {
    font-size: 18px;
    line-height: 30px;
    /*font-weight: bold;*/
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    padding-top: 20px;
    min-height: 100px;
}
.prodet-page .form ul {
    margin: -10px;
}
.prodet-page .form ul li {
    padding: 10px;
}
.prodet-page .form ul li input,
.prodet-page .form ul li textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    line-height: 30px;
    background: transparent;
}
.prodet-page .form ul li input:focus,
.prodet-page .form ul li textarea:focus {
    border-color: var(--color);
}
.prodet-page .form ul li textarea {
    height: 120px;
}
.prodet-page .form ul li input[type="submit"] {
    padding: 12px;
    max-width: 180px;
    border-color: black;
    background-color: transparent;
    font-weight: bold;
}
.prodet-page .form ul li input[type="submit"]:hover {
    color: white;
    background-color: var(--color);
    border-color: var(--color);
}
.prodet-page .form ul li.wid-100 {
    width: 100%;
}
.custom-page .custom-3 {
    padding: 80px 0 100px;
    text-align: center;
    background: #f5f5f5;
}
.custom-page .custom-3 .text {
    display: block;
    font-size: 16px;
    color: #7a7a7a;
    margin: 20px 0 30px;
    line-height: 30px;
}
.custom-page .custom-3 .list>ul {
    border-bottom: 1px solid #eee;
    text-align: left;
}
.custom-page .custom-3 .list>ul>li {
    padding: 30px 0 30px 65px;
    border-top: 1px solid #eee;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}
.custom-page .custom-3 .list ul li i {
    position: absolute;
    top: 18px;
    left: 0;
    width: 60px;
}
.custom-page .custom-3 .list ul li i img {
    display: block;
    max-width: 100%;
}
.custom-page .custom-3 .list ul li h5 {
    padding-right: 60px;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.8;
}
.custom-page .custom-3 .list ul li h5 b{
    position: relative;
    z-index: 1;
    display: inline-block;
}
.custom-page .custom-3 .list ul li h5 b:after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    bottom: 15px;
    height: 10px;
    background-color: rgba(235, 91, 25, 0.5);
}
.custom-page .custom-3 .list ul li h5 span {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    cursor: hand;
}
.custom-page .custom-3 .list ul li h5 span:after,
.custom-page .custom-3 .list ul li h5 span:before {
    content: '';
    width: 100%;
    height: 1px;
    background: black;
    position: absolute;
    top: 50%;
    left: 0;
}
.custom-page .custom-3 .list ul li h5 span:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.custom-page .custom-3 .list ul li .content {
    margin-top: 30px;
    font-size: 18px;
    color: #7a7a7a;
    line-height: 32px;
}
.custom-page .custom-3 .list ul li.active {
    /*border-top: 2px solid black;*/
}
.custom-page .custom-3 .list ul li.active h5 span:after {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
@media screen and (max-width: 1500px) {
    .prodet-page {
        padding: 80px 0;
    }
    .prodet-page .prodet-1 .right h1 {
        font-size: 40px;
    }
    .prodet-page .prodet-1 .right .content {
        padding: 30px 0 50px;
    }
    .custom-page h2,
    .prodet-page .prodet-1 .right h1 {
        font-size: 32px;
    }
    .custom-page .custom-3 .list ul li .content {
        font-size: 16px;
    }
    .custom-page .custom-3 .list ul li h5 {
        font-size: 26px;
    }
}
@media screen and (max-width: 1250px){
    .custom-page h2,
    .prodet-page .prodet-1 .right h1,
    .prodet-page h2 {
        font-size: 28px;
    }
    .prodet-page .custom-page .custom-3 {
        padding: 60px 0;
    }
    .prodet-page .about-3 .list ul li i {
        height: 80px;
        background-size: auto 100%;
    }
    .prodet-page .about-3 .list ul li h5 {
        font-size: 18px;
    }
    .prodet-page .about-3 .list ul li p {
        font-size: 16px;
    }
    .prodet-page .about-3 .list ul li {
        padding: 30px 15px;
    }
    .prodet-page .about-3 {
        padding: 60px 0;
    }
    .prodet-page .about-3{
        padding: 0 0 30px;
    }
    .custom-page .custom-3 .list ul li .content {
        font-size: 16px;
        line-height: 30px;
    }
    .custom-page .custom-3 .list ul li i {
        width: 40px;
        top: 21px;
    }
    .custom-page .custom-3 .list ul li h5 {
        font-size: 22px;
    }
    .about-page .about-5 ul.list li.item .content {
        width: -webkit-calc(100% - 145px);
        width: -moz-calc(100% - 145px);
        width: calc(100% - 145px);
    }
}
@media screen and (max-width: 1000px){
    .custom-page h2,
    .prodet-page .prodet-1 .right h1,
    .prodet-page h2 {
        font-size: 24px;
    }
    .prodet-page .prodet-1 .right .btn a {
        line-height: 32px;
        height: 32px;
        padding: 0 15px;
        font-size: 14px;
    }
    .prodet-page .prodet-1 .right {
        width: 60%;
        padding-left: 3%;
    }
    .prodet-page .prodet-1 .left {
        width: 40%;
    }
    .prodet-page .prodet-1 .right .content h6 {
        font-size: 16px;
    }
    .prodet-page .prodet-1 .right .content {
        font-size: 16px;
        line-height: 30px;
    }
    .prodet-page .prodet-1 .right .content {
        padding: 15px 0;
    }
    .prodet-page .prodet-1 .right .btn {
        padding: 10px 0;
    }
    .prodet-page .prodet-1 .right .share {
        margin-top: 10px;
    }
    .prodet-page {
        padding: 60px 0 30px;
    }
    .custom-page .custom-3 {
        padding: 60px 0;
    }
    .prodet-page .prodet-1 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .prodet-page .prodet-1 .left {
        width: 100%;
    }
}
@media screen and (max-width: 750px){
    .oem-page .oem-5 .wrap .right,
    .oem-page .oem-5 .wrap .left{
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .custom-page h2,
    .prodet-page .prodet-1 .right h1,
    .prodet-page h2 {
        font-size: 20px;
        line-height: 1.8;
    }
    .prodet-page .prodet-1 .right .btn a {
        margin-right: 15px;
        font-size: 16px;
    }
    .prodet-page .prodet-2 .btn div {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 18px;
    }
    .custom-page .custom-3 .list ul li h5 {
        font-size: 16px;
        line-height: 30px;
    }
    .custom-page .custom-3 .list ul li h5 span {
        top: 3px;
    }
    .custom-page .custom-3 .list ul li {
        padding-left: 20px;
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .custom-page .custom-3 .list ul li i {
        width: 30px;
        top: 14px;
    }
}
.seo_title{
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
#seo_about ._box{
    margin: -15px;
}
#seo_about ._left,
#seo_about ._right{
    padding: 15px;
}
#honor_list ul{
    margin: -15px;
}
#honor_list ul li{
    padding: 15px;
}
#news_list ul{
    margin: -15px;
}
#news_list ul li{
    padding: 15px;
}
#news_list ._time span{
    display: inline-block;
    padding: 5px;
}
#news_list ._time span._cate{
    color: #FFFFFF;
    background-color: #000000;
}
#news_list ._time span._date{
    background-color: #CCCCCC;
}
#news_list ._table{
    padding: 20px;
    border: 2px solid #CCCCCC;
}
@media screen and (max-width: 1000px){
    #seo_about ._left,
    #seo_about ._right{
        width: 100%!important;
    }
}
.lg-page ul{
    margin: -15px;
}
.lg-page ul li{
    padding: 15px;
}
.support-page .support-3 .box .right .form ul {
    margin: -5px;
}
.support-page .support-3 .box .right .form ul li {
    padding: 5px;
}
.support-page .support-3 .box .right .form ul li.wid-100 {
    width: 100%;
}
.support-page .support-3 .box .right .form ul li input,
.support-page .support-3 .box .right .form ul li textarea {
    width: 100%;
    line-height: 28px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ababab;
    display: block;
    font-size: 16px;
    color: #ababab;
}
.support-page .support-3 .box .right .form ul li input[type="submit"] {
    font-weight: 500;
    font-size: 20px;
    color: white;
    background: var(--color);
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.support-page .support-3 .box .right .form ul li input[type="submit"]:hover {
    opacity: .7;
}
#faq ul li h4 {
    position: relative;
    padding: 15px 25px;
    background: #f7f8fa;
    border-radius: 5px;
    cursor: pointer;
}
#faq ul li h4::after {
    content: "\e7b9";
    font-family: iconfont;
    position: absolute;
    top: 15px;
    right: 20px;
}
#faq ul li p {
    padding: 0 25px;
    display: none;
}
#faq ul li.active h4 {
    color: #FFFFFF;
    background: var(--color);
}
#faq ul li.active h4::after {
    content: "\e7b8";
}
.support-page .support-3 .box .left ul.slick-dots {
    text-align: center;
    margin-top: 40px;
}
.support-page .support-3 .box .left ul.slick-dots li {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    border: 3px solid white;
    background-color: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.support-page .support-3 .box .left ul.slick-dots li button {
    display: none;
}
.support-page .support-3 .box .left ul.slick-dots li.slick-active {
    border-color: var(--color);
    background-color: white;
}
.product10-page {
    padding: 110px 0;
}
.product10-page .product-list h1{
    font-size: 30px;
    line-height: 2;
}
.product10-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;
}
.product10-page .product-list ul li {
    width: 33.3333%;
}
.product10-page .product-list ul li .product-block {
    position: relative;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
    border: 1px solid;
    border-color: #e7e7e7;
    margin-left: -1px;
    margin-top: -1px;
    margin-bottom: 0;
    overflow: hidden;
}
/*.product10-page .product-list ul li .product-block:hover .product-transition .product-inner {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, -moz-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, -moz-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}*/
.product10-page .product-list ul li .product-block:hover .product-transition .fa-box .fa {
    opacity: 1;
}
.product10-page .product-list ul li .product-block:hover .see-more {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.product10-page .product-list ul li .product-block .product-transition {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 10px 35px;
}
.product10-page .product-list ul li .product-block .product-transition .product-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.product10-page .product-list ul li .product-block .product-transition .product-inner .product-image {
    position: relative;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    opacity: 1;
    filter: alpha(opacity=100);
    /*-webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -moz-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0ms;*/
    bottom: 100%;
}
/*.product10-page .product-list ul li .product-block .product-transition .product-inner .product-image:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}*/
.product10-page .product-list ul li .product-block .product-transition .product-inner .product-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
.product10-page .product-list ul li .product-block .product-transition .fa-box {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.product10-page .product-list ul li .product-block .product-transition .fa-box .fa {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e7e7e7;
    color: #aaa;
    background: #fff;
    font-size: 18px;
    font-weight: 100;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin: 0 2px;
    opacity: 1;
}
.product10-page .product-list ul li .product-block .product-transition .fa-box .fa:hover {
    background: var(--primary);
    color: #fff;
}
.product10-page .product-list ul li .product-block .product-content {
    padding: 10px 30px 0;
    text-align: center;
    margin-bottom: 20px;
}
.product10-page .product-list ul li .product-block .product-content h4 {
    font-size: 16px;
    line-height: 2;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 12px;
    min-height: 66px;
}
.product10-page .product-list ul li .product-block .product-content h4 a {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    font-family: 'HelveticaNeue';
}
.product10-page .product-list ul li .product-block .product-content h4 a:hover {
    text-decoration: underline;
}
.product10-page .product-list ul li .product-block .product-content p {
    font-size: 16px;
    line-height: 2;
    color: #aaa;
}
.product10-page .product-list ul li .product-block .see-more {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    text-align: center;
    padding: 5px 35px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    background: #0c0c0c;
    color: #fff;
    height: 48px;
    line-height: 38px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: translateY(48px);
    -moz-transform: translateY(48px);
    -ms-transform: translateY(48px);
    transform: translateY(48px);
    font-family: 'Krona';
}
.product10-page .product-list ul li .product-block .see-more:hover {
    background: -webkit-linear-gradient(178deg,#1a4893 0%,#237699 0%,#2ca39f 0%,#36738e 47%,#3f437c 100%),-webkit-linear-gradient(#000,#000);
    background: -moz-linear-gradient(178deg,#1a4893 0%,#237699 0%,#2ca39f 0%,#36738e 47%,#3f437c 100%),-moz-linear-gradient(#000,#000);
    background: linear-gradient(-88deg,#1a4893 0%,#237699 0%,#2ca39f 0%,#36738e 47%,#3f437c 100%),linear-gradient(#000,#000);
}
.prodet10-page .prodet-1 {
    padding: 80px 0 60px;
}
.prodet10-page .prodet-1 .left {
    padding-right: 5%;
    vertical-align: top;
}
.prodet10-page .prodet-1 .left .img {
    display: block;
    position: relative;
    z-index: 1;
    border: 1px solid #e7e7e7;
}
.prodet10-page .prodet-1 .left .img .pv-video-player {
    display: none;
}
.prodet10-page .prodet-1 .left .img.active .pv-video-player {
    display: block;
}
.prodet10-page .prodet-1 .left .img.active > img {
    display: none;
}
.prodet10-page .prodet-1 .left .img.active .zoom {
    display: none;
}
.prodet10-page .prodet-1 .left .img img {
    width: 100%;
}
.prodet10-page .prodet-1 .left .img .zoom {
    line-height: 32px;
    height: 32px;
    padding: 0 18px;
    color: #595959;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #ebebeb;
}
.prodet10-page .prodet-1 .left .img .zoom img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: auto;
}
.prodet10-page .prodet-1 .left .img .zoom:before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    border-bottom: 32px solid #ebebeb;
    border-left: 32px solid transparent;
}
.prodet10-page .prodet-1 .right {
    vertical-align: middle;
}
.prodet10-page .prodet-1 .right h1 {
    font-size: 36px;
    font-family: 'HelveticaNeue';
    line-height: 2;
    font-weight: 500;
}
.prodet10-page .prodet-1 .right h6 {
    font-size: 18px;
    color: #000000;
    line-height: 1;
    padding: 10px 0 20px;
    border-bottom: 1px solid #e7e7e7;
}
.prodet10-page .prodet-1 .right h6 small {
    font-size: 150%;
    margin-left: 10px;
}
.prodet10-page .prodet-1 .right .content {
    padding: 20px 0 25px;
    font-size: 16px;
    color: #555555;
    line-height: 2;
}
.prodet10-page .prodet-1 .right .slick {
    margin-bottom: 30px;
}
.prodet10-page .prodet-1 .right .slick .slick-track {
    margin-left: 0;
}
.prodet10-page .prodet-1 .right .slick ul {
    margin: -10px;
}
.prodet10-page .prodet-1 .right .slick ul li {
    padding: 10px;
}
.prodet10-page .prodet-1 .right .slick ul li img {
    display: block;
    border: 1px solid #e7e7e7;
}
.prodet10-page .prodet-1 .right .slick .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 0;
    color: transparent;
    border: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.prodet10-page .prodet-1 .right .slick .slick-arrow:after {
    font-family: "FontAwesome";
    color: #fff;
    font-size: 16px;
}
.prodet10-page .prodet-1 .right .slick .slick-arrow.slick-prev {
    left: -20px;
    padding: 9% 10px;
    background: rgba(0, 0, 0, 0.2);
}
.prodet10-page .prodet-1 .right .slick .slick-arrow.slick-prev:after {
    content: "\f0d9";
}
.prodet10-page .prodet-1 .right .slick .slick-arrow.slick-next {
    right: -20px;
    padding: 9% 10px;
    background: rgba(0, 0, 0, 0.2);
}
.prodet10-page .prodet-1 .right .slick .slick-arrow.slick-next:after {
    content: "\f0da";
}
.prodet10-page .prodet-1 .right a.mores {
    display: inline-block;
    z-index: 1;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 10px 30px;
    position: relative;
    /*-webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);*/
    margin-left: 5px;
}
.prodet10-page .prodet-1 .right a.more:hover::after {
    width: 100%;
}
.prodet10-page .prodet-1 .right a.mores span {
    display: inline-block;
    position: relative;
    /*-webkit-transform: skewX(10deg) skewY(0);
    -moz-transform: skewX(10deg) skewY(0);
    -ms-transform: skewX(10deg) skewY(0);
    transform: skewX(10deg) skewY(0);*/
    z-index: 2;
    margin: 0;
    padding: 0;
    background: transparent;
}
.prodet10-page .prodet-1 .right a.mores::after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 5px;
    height: 100%;
    background: var(--primary);
    left: 0;
    top: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.prodet10-page .prodet-1 .right a.mores::before{
    display: none;
}
.prodet10-page .prodet-1 .right .inquiry-box {
    padding-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
}
.prodet10-page .prodet-1 .right a.mores:hover::after{
    width: 100%;
}
/*.prodet10-page .prodet-1 .right .inquiry-box .more{
  display: inline-block;
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background: var(--primary);
    color: var(--black);
    font-size: 16px;
    line-height: 2;
    text-transform: capitalize;
    padding: 5px 4px 5px 22px;
}*/
.prodet10-page .prodet-1 .right .inquiry-box .more em {
    display: inline-block;
    vertical-align: middle;
}
.prodet10-page .prodet-1 .right .inquiry-box .more span {
    display: inline-block;
    vertical-align: middle;
    padding: 20px 15px 20px 16px;
    background: var(--black);
    margin-left: 29px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet10-page .prodet-1 .right .inquiry-box .more i:before{
    background: url(../images/ann.png) no-repeat center;
}
/*.prodet10-page .prodet-1 .right .inquiry-box .more::before{
  content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -moz-transition: transform .5s,-moz-transform .5s;
    transition: transform .5s;
    transition: transform .5s,-webkit-transform .5s,-moz-transform .5s;
}
.prodet10-page .prodet-1 .right .inquiry-box .more:hover{
  color: var(--white);
}
.prodet10-page .prodet-1 .right .inquiry-box .more:hover::before{
  -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}*/
.prodet10-page .prodet-1 .right .share {
    display: block;
    padding: 20px 0 2em;
    border-bottom: 1px solid #e7e7e7;
}
.prodet10-page .prodet-1 .right .share ul li {
    width: auto;
    font-size: 16px;
    line-height: 2;
    color: #555555;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-right: 10px;
    text-transform: uppercase;
}
.prodet10-page .prodet-1 .right .share ul li:hover {
    color: var(--primary);
}
.prodet10-page .prodet-2 {
    padding-top: 50px;
}
.prodet10-page h2.title {
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 30px;
    /*text-transform: uppercase;*/
    font-family: 'Krona';
}
.prodet10-page .product-list {
    width: 100%;
}
.prodet10-page .product-list ul {
    width: 100%;
}
.prodet10-page .product-list ul .slick-list {
    width: 100%;
}
.prodet10-page .prodet-2 .content {
    margin-top: 10px;
    font-size: 18px;
    line-height: 2;
    text-align: left;
}
.prodet10-page .prodet-2 .content .slick {
    margin-top: 30px;
}
.prodet10-page .prodet-2 .content .slick ul {
    margin: -10px;
}
.prodet10-page .prodet-2 .content .slick ul li {
    padding: 10px;
}
.prodet10-page .prodet-2 .content .slick ul li a {
    display: block;
    position: relative;
}
.prodet10-page .prodet-2 .content .slick ul li a:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/icon-search-white.png') center center no-repeat rgba(0, 0, 0, 0.05);
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet10-page .prodet-2 .content .slick ul li a:hover:after {
    opacity: 1;
}
.prodet10-page .prodet-2 .content table,
.prodet10-page .prodet-2 .content table td {
    border: none;
}
.prodet10-page .prodet-2 .content table td {
    padding: 5px 10px;
}
.prodet10-page .prodet-2 .content table td:first-child {
    padding-left: 0;
}
.prodet10-page .prodet-2 .content table td blockquote {
    max-width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.prodet10-page .prodet-2 .content table td blockquote:title {
    padding: 10px;
    font-size: 16px;
}
.prodet10-page .prodet-2 .content table tr {
    border-bottom: 1px solid #dedede;
    background: none !important;
}
.prodet10-page .prodet-2 .content table tr:last-child {
    border-bottom: none;
}
.prodet10-page .prodet-3 {
    padding: 40px 0 40px;
}
.prodet10-page.product10-page .prodet-3 .product-list ul li {
    width: 25%;
}
.prodet10-page.product10-page .prodet-3 .product-list ul {
    border-right: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
}
.inner-page .sidebar-box .sidebar-left {
    width: 30%;
}
.inner-page .sidebar-box .sidebar-left .inner {
    max-width: 375px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-title {
    font-size: 24px;
    line-height: 1.8;
    color: #000;
    /*text-transform: uppercase;*/
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    font-family: 'HelveticaNeue';
}
.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/inner-s.jpg) no-repeat center center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
    margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
    padding: 8px 0;
    font-size: 16px;
    line-height: 2;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
    color: var(--primary);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li:first-child {
    padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li:last-child {
    padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
    color: #000000;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
    color: var(--primary);
}
.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 .item_cont {
    margin-top: 10px;
    display: none;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active .item_cont{
    display: block;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li .item_cont .nav_item{
    text-transform: capitalize;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li .item_cont .nav_item a {
    position: relative;
    display: block;
    padding-left: 25px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li .item_cont .nav_item a:before {
    content: '';
    width: 15px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 18px;
    left: 0;
}
.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: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-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 p {
    color: #000;
    font-size: 18px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}
p.nesdre {
    font-size: 14px!important;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
    color: var(--primary);
}
.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-pdf .inner-title{
    border-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
    background: url(../images/tongyong.jpg) no-repeat center center;
    padding: 215px 40px 55px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'BackNine';
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
    font-size: 18px;
    line-height: 2;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Krona';
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
    color: #90b6df;
    display: block;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 12px 30px;
    position: relative;
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    margin-left: 5px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
    width: 100%;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a span {
    display: inline-block;
    position: relative;
    -webkit-transform: skewX(10deg) skewY(0);
    -moz-transform: skewX(10deg) skewY(0);
    -ms-transform: skewX(10deg) skewY(0);
    transform: skewX(10deg) skewY(0);
    z-index: 2;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background: var(--primary);
    left: 0;
    top: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    z-index: 1;
}
.inner-page .sidebar-box .sidebar-right {
    width: 70%;
    position: sticky;
    top: 100px;
}
@media screen and (max-width: 1500px) {
    .f_56 {
        font-size: 36px;
    }
    .f_44 {
        font-size: 30px;
    }
}
@media screen and (max-width: 1400px) {
    .inner-page .sidebar-box .sidebar-left {
        padding-right: 30px;
    }
    .inner-page .sidebar-box{
        padding-left: 0;
    }
}
@media screen and (max-width: 1250px) {
    .sidebar-box .sidebar-left {
        display: none;
    }
    .sidebar-box .sidebar-right {
        width: 100%;
    }
    .inner-page .form ul li input,
    .inner-page .form ul li textarea {
        padding: 8px 15px;
    }
    .product10-page{
        padding: 80px 0;
    }
    .inner-page .sidebar-box{
        padding-left: 0;
    }
    .inner-page .sidebar-box .sidebar-left {
        display: none;
    }
    .inner-page .sidebar-box .sidebar-right {
        width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    .f_56 {
        font-size: 36px;
    }
    .inner-page .form ul li {
        width: 100% !important;
    }
    .product10-page .product-list ul li {
        width: 50%;
    }
    .product10-page{
        padding: 60px 0;
    }
    .inner-page .sidebar-box .sidebar-right {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .product10-page{
        padding: 30px 0;
    }
    .prodet10-page .prodet-3 {
        width: 100%;
    }
    .prodet10-page .prodet-1 .left {
        width: 100%;
        padding-right: 0;
    }
    .prodet10-page .prodet-1 .right {
        width: 100%;
        margin-top: 24px;
    }
}
@media screen and (max-width: 500px) {
    .product10-page .product-list ul li {
        width: 100%;
    }
    .pt_80{
        padding-top: 40px;
    }
    .f_56 {
        font-size: 22px;
    }
    .f_20 {
        font-size: 16px;
    }
    .f_44 {
        font-size: 22px;
        line-height: 2;
    }
}
.custom-page .custom-3 {
    padding: 80px 0 100px;
    text-align: center;
    background: #f5f5f5;
}
.custom-page .custom-3 .text {
    display: block;
    font-size: 16px;
    color: #7a7a7a;
    margin: 20px 0 30px;
    line-height: 30px;
}
.custom-page .custom-3 .list > ul {
    border-bottom: 1px solid #e7e7e7;
    text-align: left;
}
.custom-page .custom-3 .list > ul > li {
    padding: 10px 0 80px 65px;
    border-top: 1px solid #e7e7e7;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}
.custom-page .custom-3 .list ul li i {
    position: absolute;
    top: 18px;
    left: 0;
    width: 60px;
}
.custom-page .custom-3 .list ul li i img {
    display: block;
    max-width: 100%;
}
.custom-page .custom-3 .list ul li h5 {
    padding-right: 60px;
    position: relative;
    font-size: 30px;
    line-height: 1.6;
    font-family: 'HelveticaNeue';
    color: #000;
}
.custom-page .custom-3 .list ul li h5 span {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}
.custom-page .custom-3 .list ul li h5 span:after,
.custom-page .custom-3 .list ul li h5 span:before {
    content: '';
    width: 100%;
    height: 1px;
    background: black;
    position: absolute;
    top: 50%;
    left: 0;
}
.custom-page .custom-3 .list ul li h5 span:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.custom-page .custom-3 .list ul li .content {
    margin-top: 30px;
    font-size: 16px;
    /*color: #7a7a7a;*/
    line-height: 2;
}
.custom-page .custom-3 .list ul li .content table {
    border: none;
}
.custom-page .custom-3 .list ul li .content table tbody td {
    border: 1px solid #dedede;
}
.custom-page .custom-3 .list ul li .content table tbody td:first-child {
    /*padding-right: 5%;*/
}
.custom-page .custom-3 .list ul li .content table tbody td:last-child {
    /*padding-left: 5%;*/
}
.custom-page .custom-3 .list ul li.active h5 span:after {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.prodet10-page .custom-page .custom-3 {
    background: none;
    padding: 0 0 50px;
}
.prodet10-page .custom-page .custom-3 .list > ul > li {
    padding-left: 0;
}
.prodet10-page .custom-page .custom-3 .list > ul > li i {
    display: none;
}
.prodet10-page .custom-page .custom-3 .list > ul .m-link {
    border-top: 1px solid #e7e7e7;
    padding-top: 15px;
    padding-bottom: 20px;
}
.prodet10-page .custom-page .custom-3 .list > ul .m-link a {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    display: block;
    margin-top: 10px;
    font-size: 16px;
}
.prodet10-page .custom-page .custom-3 .list > ul .m-link a:hover {
    color: var(--color);
}
.prodet10-page .m-link {
  border: 1px solid rgba(0, 0, 0, 0.7);
  margin-top: 1.5rem;
  padding: 1.3rem 11px;
}
.prodet10-page .m-link a span {
  font-size: 16px;
    
  color: #151515;
  font-weight: bold;
}
.prodet10-page .m-link a em {
  font-size: 18px;
   
}
.prodet10-page .m-link .next {
  text-align: right;
}
.support10-page .support-1 .left {
    width: 44.5%;
}
.support10-page .support-1 .left img {
    border-radius: 20px;
}
.support10-page .support-1 .right {
    width: 47%;
}
.support10-page .support-1 .right .sub {
    color: var(--color);
}
.support10-page .support-2 .left {
    width: 20.5%;
    background-image: linear-gradient(-28deg, var(--color) 0%, #507bf0 100%);
    border-radius: 20px;
}
.support10-page .support-2 .left form input,
.support10-page .support-2 .left form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
}
.support10-page .support-2 .left form input::placeholder,
.support10-page .support-2 .left form textarea::placeholder {
    font-size: 14px;
    color: #fff;
}
.support10-page .support-2 .left form input.inquery,
.support10-page .support-2 .left form textarea.inquery {
    font-size: 16px;
    width: auto;
    border: none;
    background-color: #fff;
    color: var(--color);
    padding: 10px 30px;
    border-radius: 23px;
}
.support10-page .support-2 .left form input.inquery:hover,
.support10-page .support-2 .left form textarea.inquery:hover {
    background-color: var(--color);
    color: white;
}
.support10-page .support-2 .right {
    width: 74.5%;
}
.support10-page .support-2 .right .slickBox ul {
    position: relative;
    width: 88%;
    margin: auto;
    z-index: 1;
}
.support10-page .support-2 .right .slickBox ul li {
    text-align: center;
}
.support10-page .support-2 .right .slickBox ul li .list {
    position: relative;
    z-index: 2;
}
.support10-page .support-2 .right .slickBox ul li .list .icon img {
    display: block;
    margin: 0 auto;
}
.support10-page .support-2 .right .slickBox ul li .list .num {
    width: 48px;
    height: 48px;
    background-color: var(--color);
    border-radius: 50%;
    color: #fff;
    margin: 0 auto;
}
.support10-page .support-2 .right .slickBox ul li .list .titl {
    line-height: 1.34;
    width: 75%;
    margin: 0 auto;
}
.support10-page .support-2 .right .slickBox ul::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.support10-page .support-2 .right .slickBox .slickBtn.pos div {
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    color: #d9d9d9;
}
.support10-page .support-2 .right .slickBox .slickBtn.pos div:hover {
    background-color: var(--color);
    color: #fff;
}
.support10-page .support-2 .right .slickBox .slickBtn.pos div.next {
    left: auto;
    right: 0;
}
.support10-page .support-2 .right .slickBox .slickBtn.pos div.prev {
    left: 0;
    right: auto;
}
.support10-page .support-3 {
    background-color: #f1f5f6;
}
.support10-page .support-3 img.bg {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.support10-page .support-3 .container {
    margin-top: -600px;
}
.support10-page .support-3 .container .line {
    height: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    position: relative;
    margin: auto;
}
.support10-page .support-3 .container .line::after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: hua 2.5s linear infinite;
}
.support10-page .support-3 .container .slickBox ul li {
    height: 495px;
    overflow: hidden;
}
.support10-page .support-3 .container .slickBox ul li .list {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    font-size: 16px;
}
.support10-page .support-3 .container .slickBox ul li .list .icon {
    width: 139px;
    height: 139px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}
.support10-page .support-3 .container .slickBox ul li .list .icon::after,
.support10-page .support-3 .container .slickBox ul li .list .icon::before {
    content: '';
    border-radius: 50%;
    border: 1px dashed var(--color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.support10-page .support-3 .container .slickBox ul li .list .icon::after {
    width: 100%;
    height: 100%;
}
.support10-page .support-3 .container .slickBox ul li .list .icon::before {
    width: 83.5%;
    height: 83.5%;
}
.support10-page .support-3 .container .slickBox ul li .list .minTitl {
    color: #ccc;
}
.support10-page .support-3 .container .slickBox ul li .list .lineB {
    width: 22px;
    height: 5px;
    background-color: var(--color);
}
.support10-page .support-3 .container .slickBox ul li .list .text {
    line-height: 1.875;
    height: 94px;
    overflow-y: auto;
}
.support10-page .support-3 .container .slickBox ul li .cont {
    height: 100%;
    width: 100%;
    background-color: var(--color);
    border-radius: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(-20%);
}
.support10-page .support-3 .container .slickBox ul li .cont .icon img {
    -webkit-filter: invert(1) brightness(2);
    filter: invert(1) brightness(2);

}
.support10-page .support-3 .container .slickBox ul li .cont .titl {
    line-height: 1.2;
    margin: 0 auto;
}
.support10-page .support-3 .container .slickBox ul li .cont .lineB {
    width: 94px;
    height: 5px;
    background-color: #ffffff;
    margin: 19px auto;
}
.support10-page .support-3 .container .slickBox ul li .cont .txt {
    line-height: 1.6;
    height: 194px;
    overflow-y: auto;
}
.support10-page .support-3 .container .slickBox ul li .cont .txt::-webkit-scrollbar {
    width: 2px;
}
.support10-page .support-3 .container .slickBox ul li .cont .txt::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.2);
}
.support10-page .support-3 .container .slickBox ul li .cont .txt::-webkit-scrollbar-thumb {
    background-color: #fff;
}
.support10-page .support-3 .container .slickBox ul li:hover .list {
    /*position: absolute;
    left: 8%;
    opacity: 0;
    transform: translateY(-20%);
    width: 20%;*/
    background-color: var(--color);
    color: #fff;

}
.support10-page .support-3 .container .slickBox ul li:hover .icon::after,.support10-page .support-3 .container .slickBox ul li:hover .icon::before {
    border-color: #fff;
}
.support10-page .support-3 .container .slickBox ul li:hover .list .icon img {
    -webkit-filter: invert(1) brightness(2);
    filter: invert(1) brightness(2);
}
.support10-page .support-3 .container .slickBox ul li:hover .list .lineB {
    background-color: #fff;
}
/*.support10-page .support-3 .container .slickBox ul li:hover .cont {
  opacity: 1;
  transform: translateY(0);
}*/
.support10-page .support-3 .container .bot {
    line-height: 2;
}
.support10-page .support-3 .container .bot p {
    width: 90%;
    margin: 0 auto;
}
@media screen and (max-width: 1700px) {
    .support10-page .support-3 .container {
        margin-top: -450px;
    }
    .support10-page .support-3 .container .slickBox ul li {
        height: 450px;
    }
}
@media screen and (max-width: 1450px) {
    .support10-page .support-2 .left {
        width: 25%;
    }
    .support10-page .support-2 .right {
        width: 72%;
    }
    .support10-page .support-2 .right .slickBox ul li .list .titl {
        width: 85%;
    }
    .support10-page .support-3 .container {
        margin-top: -400px;
    }
    .support10-page .support-3 .container .slickBox ul li {
        height: 430px;
    }
}
@media screen and (max-width: 1250px) {
    .support10-page .support-2 .left {
        width: 60%;
        margin: 10px auto;
        padding: 20px !important;
    }
    .support10-page .support-2 .right {
        width: 100%;
    }
    .support10-page .support-2 .right .slickBox ul::after {
        top: 53%;
    }
    .support10-page .support-3 .container {
        margin-top: -330px;
    }
    .support10-page .support-3 .container .slickBox ul li {
        height: 400px;
    }
    .support10-page .support-3 .container .slickBox ul li .list .icon {
        width: 120px;
        height: 120px;
    }
}
@media screen and (max-width: 1000px) {
    .support10-page .support-2 .right .slickBox ul::after {
        top: 60%;
    }
    /*.support10-page .support-3 .container {
      margin-top: -220px;
    }*/
    .support10-page .support-3 .container .line {
        height: 25px;
    }
    .support10-page .support-3 .container .line::after {
        width: 5px;
        height: 5px;
    }
    .support10-page .support-3 .container .txt {
        max-height: 110px;
        overflow-y: auto;
    }
    .support10-page .support-3 img.bg {
        min-height: 400px;
    }
    .support10-page .support-3 .container .slickBox ul li {
        height: 370px;
    }
    .support10-page .support-3 .container .bot p {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .support10-page .support-3 img.bg {
        height: 300px;
    }
    .support10-page .support-3 .container {
        margin-top: -310px;
    }

}
.colorF {
    color: #fff;
}
.por {
    position: relative;
}