@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.eot');
  src: url('../fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light.woff') format('woff'), url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
.t_1 {
    transition: .5s;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #a5cf6b;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1620px;
}
.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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  padding: 5px 0;
}
#header .nav .ui.menu {
  margin: 0 auto;
  width: auto;
  max-width: 1850px;
}
#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 {
  color: white;
  -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;
}
#header .nav .ui.menu .menu-box ul.menu > li:first-child {
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#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;
}
#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 .box .yuy {
  height: auto;
}
#header .nav .ui.menu .box .yuy span {
  width: 2.5em;
  height: 2.5em;
  border-radius: 100%;
  border: 1px solid var(--color);
  color: var(--color);
}
#header .nav .ui.menu .box .yuy ul {
  left: auto;
  right: 0;
}
#header .nav .ui.menu .h-search {
  width: 2.5em;
  height: 2.5em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
}
#header .nav .ui.menu .h-search i {
  font-size: 1.5em;
}
#header.active {
  background-color: black;
}
#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 .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;
}
.more {
  --c: var(--color);
  padding: .4em;
  border-radius: 3em;
  border: 1px solid var(--c);
  color: #767879;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more i {
  width: 3em;
  height: 3em;
  border-radius: 100%;
  background-color: var(--c);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more i:before {
  font-size: 1.3em;
}
.more em {
  margin: 0 1.55555556em;
}
.more:hover {
  background-color: var(--color);
  border-color: var(--color);
  color: white;
}
.more:hover i {
  background-color: white;
  color: black;
}
span.h2 {
  line-height: 1.3;
}
.text {
  line-height: 1.8;
  opacity: .9;
}
#banner {
  background-color: #edf0f2;
}
#banner ul.slick {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}
#banner ul.slick li {
  position: relative;
}
#banner ul.slick li:before {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
  background-image: -webkit-linear-gradient(top, black, transparent);
  background-image: -moz-linear-gradient(top, black, transparent);
  background-image: linear-gradient(to bottom, black, transparent);
  opacity: .8;
  pointer-events: none;
}
#banner ul.slick li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
#banner ul.slick li .content .left {
  max-width: 45%;
  color: white;
}
#banner ul.slick li .content .more {
  --c: white;
  color: white;
}
#banner ul.slick li .content .more i {
  color: black;
}
#banner .slickDots {
  bottom: 12%;
  right: 5%;
  z-index: 1;
}
#banner .slickDots ul li {
  width: .6em;
  height: 1em;
  border-radius: .3em;
  background-color: white;
  border: none;
  margin: 0 1.8em;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .slickDots ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  border-radius: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .slickDots ul li.slick-active {
  background-color: var(--color);
}
#banner .slickDots ul li.slick-active:before {
  opacity: 1;
  -webkit-transform: scaleX(10) scaleY(8);
  -moz-transform: scaleX(10) scaleY(8);
  -ms-transform: scaleX(10) scaleY(8);
  transform: scaleX(10) scaleY(8);
}
#index-body .init-1 {
  background-color: #edf0f2;
}
#index-body .init-1 .big .slick-list {
  overflow: unset;
}
#index-body .init-1 .big .slickBtn .next {
  font-size: 2.5em;
  color: #b1cce8;
  height: auto;
  background-color: transparent;
  line-height: 1;
  width: .5em;
}
#index-body .init-1 .box .left {
  margin-left: 2%;
}
#index-body .init-1 .box .left a {
  padding-top: 100%;
  position: relative;
  border-radius: 100%;
}
#index-body .init-1 .box .left a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  background-image: -webkit-radial-gradient(circle, var(--color) 50%, transparent);
  background-image: -moz-radial-gradient(circle, var(--color) 50%, transparent);
  background-image: radial-gradient(circle, var(--color) 50%, transparent);
  -webkit-filter: blur(100px);
  filter: blur(100px);
}
#index-body .init-1 .box .left a:after {
  content: '';
  width: 80%;
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 3px solid var(--color);
  border-radius: 100%;
  z-index: -1;
}
#index-body .init-1 .box .left a img {
  max-width: 90%;
  max-height: 90%;
}
#index-body .init-1 .box .right span.h6 {
  font-weight: 600;
  line-height: 1.4;
}
#index-body .init-1 .list hr {
  height: 2px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
#index-body .init-1 .list hr:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .list span.h6 {
  font-weight: 600;
  line-height: 1.8;
}
#index-body .init-1 .list .slick-current hr:before {
  width: 100%;
  -webkit-transition: 5s 1.5s;
  -moz-transition: 5s 1.5s;
  transition: 5s 1.5s;
}
#index-body .init-2 {
  overflow: hidden;
}
#index-body .init-2 .ui.container {
  max-width: 980px;
}
#index-body .init-2 .list .slick-list {
  overflow: unset;
}
#index-body .init-2 .list .box {
  height: 28.64583333vw;
}
#index-body .init-2 .list .box .content {
  width: 100%;
  padding: 8%;
  color: white;
}
#index-body .init-2 .list .box .content i.font-90 {
  width: 1em;
  height: 1em;
}
#index-body .init-2 .list .box .content i.font-90 img {
  max-width: 100%;
  max-height: 100%;
}
#index-body .init-2 .list .box .content .line {
  width: 2em;
  height: 0.14285714em;
  background-color: var(--color);
}
#index-body .init-2 .list .box .content a.link {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .list .box .content a.link:hover {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .init-3 {
  overflow: hidden;
}
#index-body .init-3 .box {
  width: 85%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--color);
  color: white;
  padding-left: 11%;
  padding-right: 2%;
  position: relative;
}
#index-body .init-3 .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 99%;
  z-index: -1;
  background-color: inherit;
  top: 0;
}
#index-body .init-4 {
  position: relative;
}
#index-body .init-4:before {
  content: '';
  width: 100%;
  height: 56%;
  position: absolute;
  top: 0;
  z-index: -1;
  background-color: #edf0f2;
  left: 0;
}
#index-body .init-4 .ui.container {
  max-width: 1190px;
}
#index-body .init-4 .list .img {
  border-radius: 100%;
  border: .5em solid white;
  overflow: hidden;
  max-width: 190px;
}
#index-body .init-4 .slickBtn div {
  width: auto;
  height: auto;
  font-size: 4em;
  background-color: transparent;
  color: #ababab;
  top: 40%;
}
#index-body .init-4 .slickBtn div:hover {
  color: var(--color);
}
#index-body .init-5 .box .left .text {
  line-height: 2;
}
#index-body .init-5 .box .right span.h6 {
  line-height: 1;
  color: var(--color);
}
#index-body .init-5 > img {
  margin-top: -9.5%;
  pointer-events: none;
  border-bottom-right-radius: 10vw;
}
#index-body .init-6 {
  background-color: #f7f7f7;
  position: relative;
}
#index-body .init-6:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: -1;
  background-color: inherit;
}
#index-body .init-7 ul {
  margin: 0 -2em;
}
#index-body .init-7 ul li {
  padding: 0 2em;
}
#index-body .init-7 li hr {
  height: 3px;
  position: relative;
}
#index-body .init-7 li hr:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: var(--color);
}
#index-body .init-7 li span.cat {
  line-height: 1;
  font-weight: 600;
}
#index-body .init-7 li time {
  color: var(--color);
  line-height: 1.2;
}
#index-body .init-7 li span.h6 {
  line-height: 1.2;
}
#index-body .init-7 li .text {
  opacity: .53;
}
#index-body .init-7 li:hover hr:before {
  width: 100%;
}
#index-body .init-8 {
  background-color: var(--color);
  color: white;
}
#index-body .init-8 span.h2 {
  line-height: 1.2;
}
#index-body .init-8 .form ul li input {
  width: 100%;
  height: 4.44444444em;
  border-radius: 2.22222222em;
  background-color: white;
  border: none;
  padding: 0 1.33333333em;
  color: black;
}
#index-body .init-8 .form ul li input::-webkit-input-placeholder {
  color: #626262;
}
#index-body .init-8 .form ul li input:-moz-placeholder {
  color: #626262;
}
#index-body .init-8 .form ul li input::-moz-placeholder {
  color: #626262;
}
#index-body .init-8 .form ul li input:-ms-input-placeholder {
  color: #626262;
}
#index-body .init-8 .form ul li input::placeholder {
  color: #626262;
}
#index-body .init-8 .form ul li button {
  width: 4.44444444em;
  height: 4.44444444em;
  border-radius: 100%;
  border: none;
  background-color: #6e9d2c;
  margin-left: -2.22222222em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-8 .form ul li button i {
  font-size: 1.6em;
}
#index-body .init-8 .form ul li button:hover {
  background-color: black;
}
#footer {
  color: white;
}
#footer span.h6 {
  line-height: 1;
}
#footer .nav {
  line-height: 1.2;
}
#footer .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
}
#footer .nav ul ul {
  display: none;
}
#footer .nav 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;
  gap: .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .nav a:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#footer .nav a:hover {
  color: var(--color);
}
#footer hr {
  background-color: white;
}
#footer .info span.icon {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: var(--color);
}
#footer .info .text {
  max-width: 360px;
}
#footer .coy {
  color: rgba(255, 255, 255, 0.5);
}
#footer .coy svg {
  max-height: 1.625em;
  width: auto;
  display: block;
  fill: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1250px) {
  #index-body .init-2 .list .box {
    height: 40vw;
  }
}
@media screen and (max-width: 1000px) {
  #footer .slide:nth-child(2),
  #footer .slide:nth-child(3) {
    display: none;
  }
  #footer .slide .logo img {
    max-height: 80px;
  }
  #index-body .init-8 .form ul li input {
    height: 3.4em;
  }
  #index-body .init-8 .form ul li button {
    width: 3.4em;
    height: 3.4em;
  }
  #index-body .init-8 .form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-8 .form ul li {
    width: 100%;
  }
  #banner .slickDots ul li.slick-active:before {
    -webkit-transform: scaleX(5) scaleY(4);
    -moz-transform: scaleX(5) scaleY(4);
    -ms-transform: scaleX(5) scaleY(4);
    transform: scaleX(5) scaleY(4);
  }
}
@media screen and (max-width: 700px) {
  #index-body .init-5 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #index-body .init-5 > img {
    margin-top: -2%;
  }
  #index-body .init-5 .box .left img.block {
    max-width: 40%;
  }
  .font-36 {
    font-size: 20px;
  }
  .more i {
    zoom: .8;
  }
}
@media screen and (max-width: 500px) {
  #banner .more {
    display: none;
  }
  #banner span.h2 {
    margin-bottom: 0;
  }
  #index-body .init-2 .list .box {
    height: 50vw;
  }
  #index-body .init-2 .list .box .content {
    padding: 4%;
  }
}

.inner-banner .box {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
}
.inner-banner .box .mbx {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 5px;
}
.inner-banner .box h2 {
    font-size: 36px;
    line-height: 1.6;
    
}
.inner-banner .box h2 em {
    color: var(--color);
}
.inner-banner::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.about-page {
    padding-top: 4rem;
}
.about-page .about-1 .text {
    padding-right: 4rem;
    vertical-align: middle;
}
.about-page .about-1 .text h3 {
    /*font-size: 1.35rem;*/
    line-height: 1.3;
}
.about-page .about-1 .text .con {
    font-size: 16px;
    line-height: 2;
    margin-top: 15px;
}
.about-page .about-1 .text .con p:first-child {
    margin-bottom: 15px;
}
.about-page .about-1 .text dl {
    margin: 15px 0 1.5rem;
}
.about-page .about-1 .text dl dd i {
    display: inline-block;
    color: var(--color);
    font-size: 20px;
    margin-top: 5px;
}
.about-page .about-1 .text dl dd span {
    display: inline-block;
    padding-left: 0.75rem;
    font-size: 16px;
    line-height: 2;
    width: 90%;
}
.about-page .about-1 .text .line-dec {
    position: relative;
    height: 1px;
    background: #eee;
    margin-top: 20px;
    margin-bottom: 20px;
}
.about-page .about-1 .text .line-dec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 40px;
    background: var(--color);
}
.about-page .about-1 .text .about-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1.5rem 0;
}
.about-page .about-1 .text .about-bottom .image.about-signature {
    margin-right: 2rem;
    width: 80px;
}
.about-page .about-1 .text .about-bottom .about-name {
    color: #000;
    font-size: 16px;
    line-height: 2;
    
}
.about-page .about-1 .text .about-bottom .about-rol {
    color: #555;
    font-size: 14px;
    line-height: 2;
}
.about-page .about-1 .img {
    position: relative;
    vertical-align: middle;
}
.about-page .about-1 .img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 50%;
    bottom: 50%;
    z-index: 1;
    background: var(--color);
}
.about-page .about-1 .img img {
    position: relative;
    z-index: 10;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.about-page .about-1 .img .about-img-hotifer {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 260px;
    padding: 30px 16px;
    z-index: 11;
    border-radius: 2px;
    text-align: left;
    background: var(--color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.about-page .about-1 .img .about-img-hotifer::before {
    /*font-family: 'Nucleo';
    content: "\ea44";*/
    bottom: 15px;
    right: 20px;
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 35px;
    font-weight: normal;
    display: none;
}
.about-page .about-1 .img .about-img-hotifer p {
    color: #fff;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 10px;
    text-align: left;
}
.about-page .about-1 .img .about-img-hotifer .icon {
    position: absolute;
    bottom: 15px;
    right: 10px;
    width: 39px;
    height: 32px;
}
.about-page .about-1 .img .about-img-hotifer .icon svg {
    fill: rgba(255, 255, 255, 0.3);
    vertical-align: middle;
    display: inline-block;
}
.about-page .about-1 .img:hover img {
    transform: scale(0.98);
    -webkit-transform: scale(0.98);
    -o-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -moz-transform: scale(0.98);
}
.about-page .about-2 {
    background: url(/wire-cable-machine/2023/09/01/about-1.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 0 3rem;
    color: #fff;
    margin-top: 4rem;
}
.about-page .about-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.about-page .about-2 .left {
    width: 50%;
    margin: 0 5% 0 auto;
}
.about-page .about-2 .left .play {
    display: inline-block;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    text-align: center;
    line-height: 4.25rem;
    background: rgba(242, 97, 34, 0.8);
    position: relative;
    z-index: 1;
}
.about-page .about-2 .left .play i {
    font-size: 1.75rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}
.about-page .about-2 .left .play::before,
.about-page .about-2 .left .play::after {
    position: absolute;
    z-index: -1;
    content: '';
    left: -15px;
    right: -15px;
    top: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: rgba(242, 97, 34, 0.5);
    -webkit-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    -ms-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
}
.about-page .about-2 .left .play::before {
    -webkit-animation-delay: .6s;
    -o-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
}
.about-page .about-2 .left .cont h6 {
    position: relative;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 0px;
    padding-left: 50px;
}
.about-page .about-2 .left .cont h6::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color);
    position: absolute;
    left: 0;
    top: 50%;
}
.about-page .about-2 .left .cont h4 {
    font-size: 26px;
    line-height: 1.8;
    
    color: #fff;
    margin-bottom: 0px;
}
.about-page .about-2 .left .cont p {
    font-size: 16px;
    line-height: 2;
}
.about-page .about-3 {
    background: #f5f5f5;
    padding: 6rem 0;
}
.about-page .about-3 .header span {
    font-size: 16px;
    color: #555;
    position: relative;
    margin-bottom: 0px;
    padding-left: 50px;
}
.about-page .about-3 .header span::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color);
    position: absolute;
    left: 0;
    top: 50%;
}
.about-page .about-3 .header h3 {
    font-size: 50px;
    
    line-height: 1.1;
    color: #000;
    position: relative;
    margin-bottom: 20px;
}
.about-page .about-3 .header h3 em {
    color: var(--color);
}
.about-page .about-3 .info ul {
    margin-right: -24px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-box-flex-wrap: wrap;
    -moz-box-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.about-page .about-3 .info ul li {
    padding-right: 24px;
}
.about-page .about-3 .info .single-facility {
    background: #fff;
    padding: 40px 30px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
}
.about-page .about-3 .info .single-facility h5 {
    font-size: 24px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 10px;
}
.about-page .about-3 .info .single-facility span {
    font-size: 48px;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
    background: var(--color);
    padding: 10px;
}
.about-page .about-3 .info .single-facility p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 2;
}
.about-page .about-3 .info .single-facility .facility-shape {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    bottom: 60px;
    left: 90px;
}
.about-page .about-3 .info .single-facility .facility-shape span {
    font-size: 140px;
    color: #ccc;
    background: transparent;
}
.about-page .about-3 .info .single-facility:hover h5 {
    color: var(--color);
    -webkit-transition: .5s;
    transition: .5s;
}
.about-page .about-3 .info .single-facility:hover span {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.about-page .about-4 {
    background: url(/wire-cable-machine/2023/09/01/about-2-1.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding: 6rem 0;
    color: #fff;
}
.about-page .about-4::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.about-page .about-4 ul li .item.text-center {
    text-align: center;
}
.about-page .about-4 ul li .item .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 50%;
    border: 7px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.about-page .about-4 ul li .item .icon span,
.about-page .about-4 ul li .item .icon i {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--color);
}
.about-page .about-4 ul li .item .icon .back {
    background: #fff;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    color: var(--color);
}
.about-page .about-4 ul li .item h3 {
    margin-bottom: 5px;
    font-size: 36px;
    line-height: 1.6;
    
}
.about-page .about-4 ul li .item h6 {
    font-size: 20px;
    line-height: 1.8;
    
}
.about-page .about-4 ul li .item h6 span {
    font-size: 14px;
    color: var(--color);
    margin-right: 10px;
}
.about-page .about-4 ul li .item:hover .icon .front {
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.about-page .about-4 ul li .item:hover .icon .back {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.about-page .p11-team {
    padding: 4.5rem 0;
}
.about-page .p11-team .mml-row {
    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;
    padding: 0;
}
.about-page .p11-team .titles {
    max-width: 568px;
    width: 32%;
    margin: 0 4.5rem 0 10px;
}
.about-page .p11-team .titles h3.title {
    font-size: 30px;
    
    line-height: 1.6;
}
.about-page .p11-team .titles .desc {
    margin-top: 20px;
}
.about-page .p11-team .titles .desc p {
    font-size: 18px;
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.about-page .p11-team .titles h3 {
    color: #292d31;
    margin-bottom: 20px;
}
.about-page .p11-team .item-wrap {
    width: 60%;
    margin: -10px;
}
.about-page .p11-team .item-wrap .item {
    padding: 10px 15px;
    margin: 10px 15px;
    /*border: var(--color) solid 3px;*/
}
.about-page .p11-team .item-wrap .item p {
    color: #051321;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.8;
}
.about-page #cta {
    position: relative;
}
.about-page #cta::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    content: '';
    display: block;
    background-color: #051026;
}
.about-page #cta .cta-content {
    width: 100%;
    /*max-width: 1760px;*/
    margin: 0 auto;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--color)), to(#f35d2e));
    background-image: -webkit-linear-gradient(left, var(--color) 0%, #f35d2e 100%);
    background-image: -moz-linear-gradient(left, var(--color) 0%, #f35d2e 100%);
    background-image: linear-gradient(90deg, var(--color) 0%, #f35d2e 100%);
}
.about-page #cta .cta-content .content-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 65px 0;
}
.about-page #cta .cta-content .content-wrap h2 {
    
    font-style: normal;
    font-size: 34px;
    line-height: 1.4;
    color: #fff;
    margin: 10px 0;
}
.about-page #cta .cta-content .content-wrap p {
    color: #fff;
    font-size: 20px;
    line-height: 1.8;
}
.about-page #cta .cta-content .content-wrap .mml-text {
    max-width: 750px;
}
.about-page #cta .cta-content .content-wrap .btn {
    margin: 10px 0;
}
.about-page #cta .cta-content .content-wrap .btn a {
    position: relative;
    display: inline-block;
    /* font-style: normal; */
    line-height: 1.6;
    font-size: 24px;
    text-align: center;
    padding: 16px 29px;
    border-radius: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    border: 2px solid transparent;
}
.about-page #cta .cta-content .content-wrap .btn a.white {
    background-color: #fff;
    color: var(--color);
}
.about-page #cta .cta-content .content-wrap .btn a.white:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
@media screen and (max-width: 1600px){
    .inner-banner.product{
        height: 650px;
    }
}
@media screen and (max-width: 1400px){
    .inner-banner.product{
        height: 510px;
    }
}
@media screen and (max-width: 1200px){
    .inner-banner.product{
        height: 110px;
    }
}
@media screen and (max-width: 1000px) {
    .inner-banner .box{
        top: 40%;
    }
    .about-page .about-1 .text {
        width: 100%;
        padding-right: 0;
    }
    .about-page .about-1 .img {
        width: 100%;
        padding-top: 2rem;
    }
    .about-page .about-2 .left {
        margin: 0 20% 0 auto;
    }
    #cta h2 {
        font-size: 36px;
    }
    .about-page .about-3 .info ul li {
        width: 50%;
    }
    .about-page .about-4 ul li {
        width: 25% !important;
    }
    .about-page .about-4 ul li .item h6 {
        font-size: 16px;
    }
    .about-page .p11-team .mml-row {
        display: block;
    }
    .about-page .p11-team .mml-row .titles,
    .about-page .p11-team .mml-row .title {
        width: 100%;
        max-width: 100%;
    }
    .about-page .p11-team .mml-row .item-wrap {
        width: 100%;
        margin-top: 2rem;
    }
    .about-page .about-3 .info .single-facility {
        padding: 40px 15px;
    }
}
@media screen and (max-width: 700px) {
    .inner-banner .box{
        top: 30%;
    }
    .inner-banner .box h2{
        font-size: 18px;
        line-height: 1.8;
    }
    .inner-banner .box .mbx {
        font-size: 14px;
        line-height: 2;
    }
    .inner-banner {
        height: auto;
        padding-top: 100px;
    }
    .about-page .about-1 .text h3 {
        font-size: 20px;
        line-height: 1.8;
    }
    .inner-banner.single .box h2{
        display: none!important;
    }
    .about-page .about-2 {
        display: none;
    }
    .about-page .about-3 .info ul {
        margin-right: 0;
    }
    .about-page .about-3 .info ul li {
        width: 100%;
        padding-right: 0;
    }
    .about-page .about-4 {
        display: none;
    }
    .about-page .p11-team .titles .desc p {
        font-size: 16px;
        line-height: 2;
    }
    .about-page .p11-team .titles{
        max-width: 100%;
        width: 100%;
    }
    #cta h2 {
        font-size: 30px;
        line-height: 1.5;
        max-width: unset;
    }
    #cta .content-wrap {
        padding: 50px 0;
    }
    .about-page #cta .cta-content .content-wrap p {
        font-size: 16px;
        line-height: 2;
    }
    .about-page #cta .cta-content .content-wrap .btn a {
        font-size: 16px;
        padding: 8px 15px;
    }
}
.gallery-page{padding: 100px 0px;}
.gallery-page .tab {
    border-bottom: 1px solid #e1e1e1;
    font-size: 0;
    margin-bottom: 4.5rem;
}
.gallery-page .tab li {
    text-align: center;
    padding: 24px 0;
    border-left: 1px solid #e1e1e1;
    position: relative;
}
.gallery-page .tab li a {
    overflow: hidden;
    display: block;
}
.gallery-page .tab li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #666;
    transition: transform ease .4s;
    -ms-transition: transform ease .4s;
    -o-transition: transform ease .4s;
    -webkit-transition: transform ease .4s;
    -moz-transition: transform ease .4s;
    position: relative;
}
.gallery-page .tab li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color);
    transition: width cubic-bezier(0.47, -0.01, 0.09, 1.08) 0.6s;
}
.gallery-page .content .box {
    text-align: center;
    padding-bottom: 4.5rem;
}
.gallery-page .content .box h2 {
    color: #182333;
    font-size: 1.75rem;
    margin-top: 10px;
    
    line-height: 1.3;
}
.gallery-page .content .box p {
    /*max-width: 690px;*/
    text-align: center;
    color: #565969;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    margin-top: 20px;
    /*margin-bottom: 50px;*/
}
.gallery-page .content .box div{
    color: #565969;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
}
.gallery-page .content .box ul {
    margin: 0 -15px 60px;
    text-align: left;
}
.gallery-page .content .box ul li {
    padding: 15px;
}
.gallery-page .content .box ul li .imgbox {
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(205, 205, 205, 0.3);
    padding: 10px;
    border-radius: 5px;
}
.gallery-page .content .box ul li .imgbox .text {
    text-align: center;
    margin-top: 1rem;
}
.gallery-page .content .box ul li .imgbox .text h5 {
    /*text-transform: uppercase;*/
    display: block;
    color: #111;
    font-size: 18px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.gallery-page .content .box ul li .imgbox .text .con {
    margin-top: 1rem;
    min-height: 90px;
    overflow: auto;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.7;
}
.gallery-page .content .box ul li .imgbox .text .con::-webkit-scrollbar-thumb {
    background: var(--color);
}
.gallery-page .content .box ul li .imgbox .textbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.gallery-page .content .box ul li .imgbox .textbox i {
    margin-bottom: 20px;
    font-size: 45px;
    color: var(--color);
}
.gallery-page .content .box ul li .imgbox .textbox i:hover {
    cursor: pointer;
}
.gallery-page .content .box ul li .imgbox .textbox h4 {
    font-size: 24px;
    
    line-height: 1.3em;
    color: var(--color);
    padding: 5px 20px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    min-width: 100px;
    text-align: center;
}
.gallery-page .content .box ul li .imgbox .textbox h4:hover {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    background: #000000;
}
.gallery-page .content .box ul li .imgbox:hover .text h5 {
    background: var(--color);
    color: #fff;
}
.gallery-page .content .box ul li:hover {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.gallery-page .content .box ul li:hover .imgbox .textbox {
    top: 0;
}
.gallery-page .content .box:nth-child(even) {
    background: #f8f8f8;
    padding: 4.5rem 0;
}
.m-page {
    text-align: center;
    padding-top: 20px;
}
.m-page a,
.m-page span {
    display: inline-block;
    margin: 2px 4px;
    min-width: 30px;
    line-height: 36px;
    height: 30px;
    color: #555;
    
    font-size: 18px;
    text-align: center;
}
.m-page a:hover {
    color: var(--color);
}
.m-page span {
    background-color: var(--color);
    color: #fff;
}
@media screen and (max-width: 700px) {
    .gallery-page .content .box p {
        font-size: 14px;
    }
}
.faq-page {
    padding: 6rem 0;
    background: #f5f5f5;
}
.faq-page .box ul {
    margin-right: -2rem;
}
.faq-page .box ul li {
    padding-right: 2rem;
    margin-bottom: 20px;
}
.faq-page .box ul li .title {
    padding: 30px 30px 30px 80px;
    cursor: pointer;
    position: relative;
    border: none;
    border: 1px solid #fff;
    margin-bottom: 0px;
    background-color: #fff;
}
.faq-page .box ul li .title::after {
    content: "\e804";
    font-family: iconfont;
    font-weight: normal;
    font-size: 16px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color);
    padding: 9px 14px;
    color: #fff;
}
.faq-page .box ul li .title h6 {
    font-size: 16px;
    margin-bottom: 0;
    color: #000;
}
.faq-page .box ul li .accordion-info {
    display: none;
    padding: 20px;
    margin-top: 0px;
    margin-left: 0px;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.faq-page .box ul li.active .title {
    color: #fff;
    background: var(--color);
    border: 1px solid var(--color);
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.faq-page .box ul li.active .title h6 {
    color: #fff;
}
.faq-page .box ul li.active .title::after {
    background: #fff;
    color: var(--color);
}
@media screen and (max-width: 1000px) {
    .faq-page .box ul {
        margin-right: 0;
    }
    .faq-page .box ul li {
        width: 100% !important;
        padding-right: 0;
    }
}
@media screen and (max-width: 700px) {
    .faq-page .box ul li .title::after {
        left: 10px;
    }
    .faq-page .box ul li .title {
        padding: 20px 10px 20px 66px;
    }
    .faq-page .box ul li .accordion-info {
        padding: 20px 10px;
    }
}
.cus-page {
    padding-top: 6rem;
}
/*.cus-page .cus1{
  padding-bottom: 6rem;
}*/
.cus-page .cus1 h5 {
    font-size: 24px;
    
    line-height: 1;
}
.cus-page .cus1 .con {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-top: 15px;
}
.cus-page .cus1 .con p {
    margin-bottom: 15px;
}
.cus-page .cus1 .con p:last-child {
    margin-bottom: 30px;
}
.cus-page .cus1 ol.number {
    list-style: none;
    counter-reset: item;
    margin-bottom: 20px;
    padding-left: 2rem;
}
.cus-page .cus1 ol.number li {
    counter-increment: item;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 2;
    color: #555;
    position: relative;
    padding-left: 40px;
}
.cus-page .cus1 ol.number li::before {
    margin-right: 10px;
    content: counter(item);
    background: var(--color);
    border-radius: 0px;
    color: #fff;
    width: 26px;
    height: 26px;
    text-align: center;
    font-size: 13px;
    line-height: 27px;
    position: absolute;
    left: 0;
    top: 0;
}
.cus-page .cus1 .info ul {
    margin-right: -24px;
}
.cus-page .cus1 .info li {
    position: relative;
    padding: 20px 24px 0 0;
}
.cus-page .cus1 .info li .gallery-box {
    overflow: hidden;
    position: relative;
}
.cus-page .cus1 .info li .gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.cus-page .cus1 .info li .gallery-box .gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}
.cus-page .cus1 .info li .gallery-box .gallery-img::after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.cus-page .cus1 .info li .gallery-box:hover .gallery-img::after {
    background: rgba(0, 0, 0, 0.4);
}
.cus-page .cus1 .info li .gallery-box:hover .gallery-img img {
    transform: scale(1.05);
}
.cus-page .cus2 {
    padding-top: 6rem;
}
.cus-page .cus2 .part1 .column {
    width: 70%;
    vertical-align: middle;
}
.cus-page .cus2 .part1 .column h2 {
    font-size: 1.5rem;
    
    /*font-style: italic;*/
    color: #1a1a1a;
}
.cus-page .cus2 .part1 .column p {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}
.cus-page .cus2 .part1 .column:nth-child(1) {
    padding-right: 5%;
}
.cus-page .cus2 .part1 .column:nth-child(2) {
    width: 30%;
}
.cus-page .cus2 .part1 .column:nth-child(2) a.more {
    display: block;
    width: 100%;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color);
}
.cus-page .cus2 .part2 .process-list li {
    width: 32.5%;
    max-width: 405px;
    margin-top: 50px;
    float: left;
    padding: 10px;
}
.cus-page .cus2 .part2 .process-list li .des {
    background-color: #ffffff;
    color: #000;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0);
    border-radius: 0px 0px 4px 4px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 106px;
}
.cus-page .cus2 .part2 .process-list li .des .num {
    width: 43px;
    height: 43px;
    background-color: var(--color);
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
    font-size: 17px;
    
    font-style: normal;
    position: absolute;
    top: -22.5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
}
.cus-page .cus2 .part2 .process-list li .des h4 {
    font-size: 18px;
    line-height: 1.5;
    
}
.cus-page .cus3 {
    background: #f5f5f5;
    padding: 4.5rem 0 3.5rem;
}
.cus-page .cus3 .top {
    text-align: center;
}
.cus-page .cus3 .top h2 {
    font-size: 2.5rem;
    line-height: 1;
    color: #000;
    
}
.cus-page .cus3 .top p {
    font-size: 20px;
    line-height: 1.8;
    color: #000;
    margin: 1.4rem auto 0;
}
.cus-page .cus3 .formBox {
    margin: 3rem 0 2rem;
}
.cus-page .cus3 .formBox form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cus-page .cus3 .formBox form input[type="text"] {
    border: none;
    background: #f0f0f0;
    padding: 0 1rem;
    width: 24%;
    height: 55px;
    font-size: 16px;
    line-height: 2;
    color: #000;
}
.cus-page .cus3 .formBox form .f-submit {
    width: 100%;
    text-align: center;
    margin-top: 2.35rem;
}
.cus-page .cus3 .formBox form .f-submit .more {
    border: none;
    display: inline-block;
    padding: 0.9rem 2.85rem;
    background: var(--color);
    font-size: 20px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.cus-page .cus3 .formBox form .f-submit .more:hover {
    background: #000;
}
.cus-page .ser-2 {
    margin: 80px auto;
}
.cus-page .ser-2 .title {
    position: relative;
}
.cus-page .ser-2 .title i {
    z-index: -1;
    position: absolute;
    bottom: 45%;
    left: 0;
    font-size: 100px;
    color: #f5f5f5;
    opacity: 0.9;
}
.cus-page .ser-2 .title h3 {
    font-size: 2.4rem;
    
    line-height: 2;
    color: #222c47;
}
.cus-page .ser-2 .top .grid-box .text {
    font-size: 16px;
    color: #262e42;
    max-width: 500px;
    padding-right: 10px;
    margin: 20px 0 20px auto;
    line-height: 2;
}
.cus-page .ser-2 .top .grid-box .left .text {
    margin-left: 0;
}
.cus-page .ser-2 .bot {
    margin-right: -13%;
}
.cus-page .ser-2 .bot ul {
    margin: 0 -10px;
}
.cus-page .ser-2 .bot ul li {
    position: relative;
    padding: 0 10px;
    margin: 40px 0 20px;
}
.cus-page .ser-2 .bot ul li .ig {
    position: relative;
    max-width: 214px;
}
.cus-page .ser-2 .bot ul li .ig::after {
    content: '1';
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 100px;
    
    line-height: 80px;
    color: #e9edf4;
    opacity: .5;
}
.cus-page .ser-2 .bot ul li .ig img {
    position: relative;
    z-index: 1;
    margin: 5px 0 20px;
}
.cus-page .ser-2 .bot ul li .ig h4 {
    font-size: 16px;
    
    line-height: 2;
    color: #222c47;
}
.cus-page .ser-2 .bot ul li:nth-child(2) .ig::after {
    content: '2';
}
.cus-page .ser-2 .bot ul li:nth-child(3) .ig::after {
    content: '3';
}
.cus-page .ser-2 .bot ul li:nth-child(4) .ig::after {
    content: '4';
}
@media screen and (max-width: 1450px) {
    .cus-page .ser-2 .bot {
        margin-right: -7%;
    }
}
@media screen and (max-width: 1000px) {
    .cus-page .cus3 .formBox form input[type="text"] {
        width: 48%;
        margin-bottom: 15px;
    }
    .cus-page .cus3 .formBox form .f-submit {
        margin-top: 3rem;
    }
    .cus-page .ser-2 .top .grid-box .column {
        width: 100%;
    }
    .cus-page .ser-2 .bot ul li {
        width: 100%;
    }
    .cus-page .ser-2 .bot ul li .ig {
        margin: auto;
    }
}
@media screen and (max-width: 767px) {
    .cus-page .init-1 .column h2 {
        font-size: 20px;
    }
    .cus-page .init-1 .column p {
        font-size: 14px;
        margin: 10px 0;
    }
    .cus-page .init-2 h2,
    .cus-page .init-3 .part1 .column h2,
    .cus-page .init-4 .init-content h2 {
        font-size: 20px;
    }
    .cus-page .init-3 .part1 .column p {
        font-size: 14px;
    }
    .cus-page .init-3 .part1 .column:nth-child(2) a.more {
        font-size: 16px;
    }
    .cus-page .init-4 .init-content {
        margin-left: 0;
    }
}
@media screen and (max-width: 700px) {
    .cus-page .cus1 ol.number {
        padding-left: 0;
    }
    .cus-page .cus2 .part1 .column:nth-child(1) {
        width: 100%;
        padding-right: 0;
    }
    .cus-page .cus2 .part1 .column h2 {
        font-size: 20px;
    }
    .cus-page .cus2 .part1 .column:nth-child(2) {
        width: 100%;
        padding-top: 2rem;
    }
    .cus-page .cus2 .part2 .process-list li {
        width: 100%;
        margin-top: 20px;
    }
    .cus-page .cus3 .top h2 {
        font-size: 2rem;
    }
    .cus-page .cus3 .top p {
        font-size: 16px;
        line-height: 2;
    }
    .cus-page .cus3 .formBox form input[type="text"] {
        width: 100%;
    }
    .cus-page .ser-2 .title h3{
        font-size: 20px;
        line-height: 2;
    }
    .cus-page .ser-2 .bot{
        margin-right: 0 !important;
    }
}
@media screen and (max-width: 580px) {
    .cus-page .init-1 .column {
        width: 100%;
    }
    .cus-page .init-1 .column h2 {
        font-size: 20px;
    }
}
@media screen and (max-width: 540px) {
    .cus-page .init-3 {
        padding: 20px;
    }
    .cus-page .init-3 .part2 .process-list li {
        width: 50%;
    }
    .cus-page .init-4 .init-content {
        padding: 30px;
    }
}
@media screen and (max-width: 500px) {
    .cus-page .cus3 .formBox form input[type="text"] {
        height: 40px;
        font-size: 14px;
        line-height: 2;
    }
}
.production-sec .pur-sec {
    padding: 3rem 0;
}
.production-sec .pur-sec .mml-row {
    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;
}
.production-sec .pur-sec .mml-row .text-wrap {
    width: 100%;
    max-width: 800px;
    padding-top: 90px;
}
.production-sec .pur-sec .mml-row .text-wrap h2 {
    
    font-style: normal;
    font-size: 2rem;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .pur-sec .mml-row .text-wrap p {
    font-size: 18px;
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .pur-sec .mml-row .img-wrap {
    width: 60%;
    max-width: 760px;
}
.production-sec .fig-sec {
    padding-bottom: 55px;
}
.production-sec .fig-sec .mml-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-content: center;
}
.production-sec .fig-sec .mml-row h2 {
    
    font-style: normal;
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color);
    margin-bottom: 6px;
    width: 40%;
}
.production-sec .fig-sec .mml-row ul {
    width: 60%;
    max-width: 760px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 45px 0px 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.production-sec .fig-sec .mml-row ul li {
    max-width: 193px;
    text-align: center;
}
.production-sec .fig-sec .mml-row ul li .nums {
    font-style: normal;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--color);
}
.production-sec .fig-sec .mml-row ul li p {
    font-size: 18px;
    line-height: 32px;
    color: #282828;
    margin-bottom: 0px;
    margin-top: 10px;
}
.production-sec .prints-sec {
    padding-bottom: 4rem;
}
.production-sec .prints-sec .mml-row {
    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;
}
.production-sec .prints-sec .mml-row .img-wrap {
    width: 40%;
    /*max-width: 500px;*/
}
.production-sec .prints-sec .mml-row .text-wrap {
    width: 70%;
    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;
    max-width: 760px;
}
.production-sec .prints-sec .mml-row .text-wrap .text h2 {
    margin-bottom: 25px;
    
    font-style: normal;
    font-size: 2rem;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .prints-sec .mml-row .text-wrap .text p {
    font-size: 18px;
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li {
    padding: 25px 0px;
    font-style: normal;
    font-size: 14px;
    color: #888;
    border-bottom: 1px solid #d2d2d2;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li h4 {
    font-style: normal;
    font-size: 24px;
    line-height: 44px;
    color: #303030;
    margin-bottom: 10px;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li p {
    margin-bottom: 0px;
}
.production-sec .proto-sec h2 {
    
    font-style: normal;
    color: #000;
    font-size: 2rem;
    line-height: 1.2;
    margin: 2rem;
    text-align: center;
}
.production-sec .proto-sec ul {
    font-size: 0;
    margin: -15px;
}
.production-sec .proto-sec ul li {
    display: inline-block;
    width: 25%;
    padding: 15px;
}
.production-sec .proto-sec ul li img {
    display: block;
    max-width: 100%;
}
.production-sec .proto-sec h4 {
    
    font-style: normal;
    font-size: 40px;
    color: #242424;
    text-align: center;
}
.production-sec .proto-sec p {
    font-style: normal;
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 0px;
}
.production-sec .p11-milestone {
    padding: 3.25rem 0;
    background-color: whitesmoke;
}
.production-sec .p11-milestone .text h2 {
    
    font-style: normal;
    font-size: 2rem;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .p11-milestone .title {
    margin-bottom: 2rem;
}
.production-sec .p11-milestone .list ul {
    margin: -15px;
}
.production-sec .p11-milestone .list ul li {
    padding: 15px;
}
.production-sec .p11-milestone .galaxy {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.production-sec .p11-milestone .track {
    position: absolute;
    left: 0;
    top: 50%;
    margin-right: 200px;
    height: 5px;
    width: 1600px;
    -webkit-transform: translate3d(0, -2.5px, 0);
    -moz-transform: translate3d(0, -2.5px, 0);
    transform: translate3d(0, -2.5px, 0);
    will-change: transform;
}
.production-sec .p11-milestone .comet,
.production-sec .p11-milestone .historys {
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.production-sec .p11-milestone .comet {
    position: relative;
    width: 0;
    border-radius: 3px;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--color)), to(#000));
    background-image: -webkit-linear-gradient(left, var(--color) 0%, #000 100%);
    background-image: -moz-linear-gradient(left, var(--color) 0%, #000 100%);
    background-image: linear-gradient(90deg, var(--color) 0%, #000 100%);
}
.production-sec .p11-milestone .comet::after {
    content: '\20';
    position: absolute;
    z-index: 3;
    right: -6px;
    top: -3px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    height: 12px;
    width: 12px;
    border-radius: 6px;
    background: #fff;
    -webkit-box-shadow: 0 0 80px #fff;
    box-shadow: 0 0 80px #fff;
}
.production-sec .p11-milestone .historys {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 260px;
}
.production-sec .p11-milestone .historys time,
.production-sec .p11-milestone .historys text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.production-sec .p11-milestone .historys time {
    font-style: normal;
    color: #242424;
    font-size: 24px;
    line-height: 24px;
}
.production-sec .p11-milestone .historys .text p {
    font-style: normal;
    color: #242424;
    font-size: 16px;
    line-height: 24px;
}
.production-sec .p11-milestone .historys .text .pic {
    max-width: 400px;
    max-height: 250px;
    margin: 0 auto 15px;
    overflow: hidden;
}
.production-sec .p11-milestone .historys > li {
    position: relative;
    width: 400px;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.production-sec .p11-milestone .historys > li:nth-child(even) time {
    bottom: 450%;
}
.production-sec .p11-milestone .historys > li:nth-child(even) time::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 10px;
    content: '';
    display: block;
    background-color: #fff;
    margin-left: -1px;
}
.production-sec .p11-milestone .historys > li:nth-child(even) .text {
    top: 1000%;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) time {
    top: 450%;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) time::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 10px;
    content: '';
    display: block;
    background-color: #fff;
    margin-left: -1px;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) .text {
    bottom: 1000%;
}
.production-sec .p11-milestone .historys > li.mml-show {
    opacity: 1;
}
.production-sec .p11-milestone .historys > li.mml-show:nth-child(even) .text {
    -webkit-transform: translate(0, 12px);
    -moz-transform: translate(0, 12px);
    -ms-transform: translate(0, 12px);
    transform: translate(0, 12px);
}
.production-sec .p11-milestone .historys > li.mml-show:nth-child(odd) .text {
    -webkit-transform: translate(0, -12px);
    -moz-transform: translate(0, -12px);
    -ms-transform: translate(0, -12px);
    transform: translate(0, -12px);
}
.production-sec .p11-milestone .historys > li::before {
    content: '\20';
    position: absolute;
    left: 50%;
    top: 0;
    margin: -3px 0 0 -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color);
}
.production-sec .team-img {
    text-align: center;
}
.production-sec .team-img .text h2 {
    
    font-style: normal;
    font-size: 2rem;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
@media screen and (max-width: 1500px) {
    .prints-sec .img-wrap {
        width: 35%;
    }
    .prints-sec .text-wrap {
        width: 60%;
    }
}
@media screen and (max-width: 1200px) {
    .text.mod-1 h2 {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 20px !important;
        padding-top: 10px !important;
    }
    .production-sec .fig-sec h2 {
        font-size: 30px;
    }
    .production-sec .prints-sec .mml-row .img-wrap {
        width: 45%;
    }
    .production-sec .prints-sec .mml-row .text-wrap {
        width: 50%;
    }
    .production-sec .prints-sec .mml-row .text-wrap .text ul li h4 {
        font-size: 22px;
    }
}
@media screen and (max-width: 1000px) {
    .production-sec .pur-sec .mml-row {
        display: block;
    }
    .production-sec .fig-sec .mml-row ul {
        width: 100%;
    }
    .production-sec .prints-sec .mml-row .text-wrap {
        width: 100%;
    }
    .production-sec .pur-sec .container .text-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .production-sec .pur-sec .container .img-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }
    .production-sec .fig-sec .mml-row {
        display: block;
    }
    .production-sec .fig-sec h2 {
        width: 100%;
        margin-bottom: 30px;
    }
    .production-sec .fig-sec ul {
        width: 100%;
        max-width: 100%;
    }
    .prints-sec .img-wrap {
        display: none;
    }
    .prints-sec .text-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .production-sec .pur-sec {
        padding: 20px 0 !important;
    }
    .production-sec .fig-sec ul {
        display: block;
    }
    .production-sec .fig-sec ul li {
        max-width: 100%;
        padding: 20px 0;
    }
    .production-sec .fig-sec {
        display: none;
    }
    .production-sec .pur-sec .mml-row .text-wrap p {
        font-size: 14px;
        line-height: 2;
    }
    .production-sec .prints-sec .mml-row .text-wrap .text p {
        font-size: 14px;
        line-height: 2;
    }
}
.quality-sec {
    padding-top: 6rem;
}
.our-markets ul li {
    display: flex;
    align-items: center;
}
.our-markets ul li:not(:last-child) {
    margin-bottom: 60px;
}
.our-markets ul li:nth-child(even) {
    flex-direction: row-reverse;
}
.our-markets ul li:nth-child(even) .img {
    text-align: right;
}
.our-markets ul li .img {
    width: 50%;
}
.our-markets ul li .mml-text {
    width: 50%;
    padding: 0 15px;
}
.our-markets ul li .mml-text h3 {
    
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--color);
    margin-top: 10px;
    margin-bottom: 10px;
}
.our-markets ul li .mml-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #242424;
}
.qua-details {
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-image: linear-gradient(180deg, var(--color) 0%, #000 100%);
}
@media (max-width: 540px) {
    .qua-details {
        padding: 0px;
    }
}
.qua-details .container {
    padding: 60px 10px;
}
.qua-details .container h2 {
    text-align: center;
    
    font-style: normal;
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0px;
}
.qua-details .container ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.qua-details .container ul li {
    width: 24%;
    max-width: 280px;
    margin-top: 40px;
}
.qua-details .container ul li img {
    max-width: 100%;
}
.qua-details .container ul li h4 {
    
    font-style: normal;
    font-size: 22px;
    line-height: 40px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}
.qua-details .container ul li p {
    font-style: normal;
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
    /* width: 95%; */
    /* max-width: 260px; */
    line-height: 32px;
}
.proto-sec h2 {
    
    font-style: normal;
    color: #000;
    font-size: 2rem;
    line-height: 1.2;
    margin: 2rem;
    text-align: center;
}
.proto-sec ul {
    font-size: 0;
    margin: -15px;
}
.proto-sec ul li {
    font-size: 0;
    padding: 15px;
}
.p11-team {
    padding: 4.5rem 0;
}
.quality-sec .p11-team h4 {
    
    font-style: normal;
    color: #000;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
}
.p11-team .item-wrap {
    width: 60%;
    margin: -10px;
}
.p11-team .item {
    padding: 10px 15px;
    margin: 10px 15px;
    /*border: var(--color) solid 3px;*/
}
.p11-team .item p {
    color: #051321;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.7;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
@media screen and (max-width: 1000px) {
    .our-markets ul li {
        display: block;
    }
    .our-markets ul li .mml-text p {
        font-size: 14px;
    }
    .our-markets ul li .img {
        width: 100%;
        text-align: center !important;
    }
    .qua-details .container ul li h4 {
        font-size: 18px;
    }
    .qua-details .container ul li p {
        font-size: 14px;
    }
    .our-markets ul li .mml-text {
        width: 100%;
        padding: 30px 0;
    }
    .qua-details .container ul {
        flex-wrap: wrap;
    }
    .qua-details .container ul li {
        width: 100% !important;
        text-align: center !important;
        max-width: 330px !important;
    }
    .pd-110 {
        padding: 20px 0 !important;
    }
    .p11-team {
        padding: 30px 0;
    }
    .font-18 {
        font-size: 14px;
    }
}
.inner-page h3.title{
    font-size: 40px;
    line-height: 1.2;
    
}
.inner-page h3.title em{
    color: var(--color);
}
.inner-page .sidebox {
    padding: 2rem 0;
}
.inner-page .sidebox .sideleft {
    width: 22%;
    position: sticky;
    top: 40px;
}
.inner-page .sidebox .sideleft .widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.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: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    
    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: 14px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}
.inner-page .sidebox .sideleft .widget ul li a {
    padding-left: 10px;
    line-height: 28px;
}
.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 a.title {
    display: block;
    margin-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-top: 2rem;
}
.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: 0;
    margin-bottom: 15px;
    height: 40px;
    font-size: 16px;
}
.inner-page .sidebox .sideleft .widget .form1 textarea {
    height: 70px;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
    background: var(--color);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    height: 40px;
    padding: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
    background: #000;
}
.inner-page .sidebox .sideright {
    width: 100%;
    padding: 0 0 50px 0;
}
.ap-page {
    background: #f5f5f5;
}
.ap-page .sideright .ap-top {
    position: relative;
    transition: transform 0.85s cubic-bezier(0.15, 0.95, 0.4, 1), box-shadow 0.3s;
    transform-style: preserve-3d;
    perspective: 80000px;
}
.ap-page .sideright .ap-top .img {
    transition: transform 0.85s cubic-bezier(0.15, 0.95, 0.4, 1), box-shadow 0.3s;
    position: relative;
    transform-style: preserve-3d;
    transition: all .5s;
}
.ap-page .sideright .ap-top .img img {
    width: 100%;
}
.ap-page .sideright .ap-top .img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.ap-page .sideright .ap-top h6 {
    padding: 0 1.6rem 0.7rem;
    position: absolute;
    background: 0 0;
    font-size: 14px;
    line-height: 2;
    color: #fff;
    top: 1.6rem;
    left: 0;
    width: 100%;
    z-index: 10;
    text-transform: uppercase;
}
.ap-page .sideright .ap-top h6::after {
    content: "";
    display: inline-block;
    width: 19px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 2rem;
    background-color: #fff;
}
.ap-page .sideright .ap-top .desc {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 15px 1.6rem;
    bottom: 0;
    color: #fff;
    background: var(--color);
    z-index: 10;
}
.ap-page .sideright .ap-top .desc h2 {
    font-size: 24px;
    
    line-height: 1.6;
}
.ap-page .sideright .ap-top .desc p {
    font-size: 16px;
    line-height: 2;
}
.ap-page .sideright .ap-top:hover .img {
    transform: translateY(-3px);
    box-shadow: 0 15px 80px rgba(0, 0, 0, 0.35);
}
.ap-page .sideright .ap-bottom {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 2;
}
.ap-page .sideright .ap-bottom h6 {
    font-size: 25px;
    line-height: 1.6;
    color: var(--color);
    text-transform: capitalize;
    
}
.ap-page .sideright .ap-bottom .con {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color);
    margin-top: 1.5rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}
.ap-page .sideright .ap-bottom .con p {
    margin-bottom: 15px;
}
.ap-page .sideright .ap-bottom .bottom2 {
    margin-top: 1.5rem;
    border-bottom: 1px solid #ccc;
}
.ap-page .sideright .ap-bottom .bottom2 dl {
    margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom2 dl dd {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color);
    margin-bottom: 1rem;
}
.ap-page .sideright .ap-bottom .bottom3 {
    margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul {
    margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul li {
    margin-bottom: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul li h4 {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--color);
    
    line-height: 2;
    padding: 0.8rem 1.2rem;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}
.ap-page .sideright .ap-bottom .bottom3 ul li h4::after {
    content: "\f107";
    position: absolute;
    top: 0.8em;
    right: 1.5em;
    font-size: 20px;
    font-family: fontAwesome;
}
.ap-page .sideright .ap-bottom .bottom3 ul li .desc {
    padding: 1.6rem 2rem 0.8rem;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.1px;
    color: var(--color);
    display: none;
}
.ap-page .sideright .ap-bottom .bottom3 ul li.active h4 {
    background: var(--color);
    color: #fff;
}
.ap-page .sideright .ap-bottom .bottom3 ul li.active h4::after {
    content: "\f106";
}
.ap-page .sideright .ap-bottom .bottom3 ul li:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1366px) {
    .inner-page .sidebox .sideleft {
        width: 28%;
    }
    .inner-page .sidebox .sideleft .widget .recent li a.title {
        margin-left: 98px;
    }
}
@media screen and (max-width: 1000px) {
    .inner-page .sidebox .sideleft {
        display: none;
    }
    .inner-page .sidebox .sideright {
        width: 100%;
        padding-left: 0;
    }
    .inner-page .sidebox .sideright {
        padding: 0 0 50px 0;
    }
}
@media screen and (max-width: 700px) {
    .ap-page .sideright .ap-top .img img{
        min-height: 250px;
        object-fit: cover;
    }
    .ap-page .sideright .ap-top .desc p {
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .ap-page .sideright .ap-bottom h6 {
        font-size: 22px;
        line-height: 1.8;
    }
    .ap-page .sideright .ap-bottom .bottom3 ul li h4::after {
        right: 0.5em;
    }
}
.product-page {
    background: #fcfcfc;
}
.product-page .sideright .top {
    width: 100%;
    /*width: 45%;*/
}
.product-page .sideright .top h3,
.product-page .sideright .top h1 {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: .5em;
    
}
.product-page .sideright .top h3 em {
    color: var(--color);
    
}
.product-page .sideright .top .desc {
    font-size: 14px;
    line-height: 2;
    padding: 1em 0;
}
.product-page .sideright .top .box {
    display: flex;
    flex-wrap: wrap;
}
.product-page .sideright .top .img {
    width: 43%;
}
.product-page .sideright .top .img .img-box {
    min-height: 400px;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.product-page .sideright .top .content {
    width: 57%;
    padding-left: 2%;
}
.product-page .sideright .list {
    margin-top: 2.5rem;
}
.product-page .sideright .list ul {
    margin: 0 -3rem -2.4rem 0;
}
.product-page .sideright .list ul li {
    padding: 0 3rem 2.4rem 0;
}
.product-page .sideright .list ul li .box {
    -webkit-transition: all .3s;
    -o-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;
    -ms-transition: .5s;
    -o-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%;
    padding: 10% 3%;
}
.product-page .sideright .list ul li .box .text {
    padding: 1.45rem 1.3rem 1.3rem;
}
.product-page .sideright .list ul li .box .text span{ color: #0047af; }
.product-page .sideright .list ul li .box .text h4 {
    font-size: 18px;
    line-height: 1.8;
    
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-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: 1600px) {
    .product-page .sideright .top .content {
        width: 100%;
        padding-left: 0;
    }
    .product-page .sideright .top .img {
        width: 100%;
    }
    .product-page .sideright .top .img .img-box {
        background-position: center bottom;
    }
}
@media screen and (max-width: 1366px) {
    .product-page .sideright .list ul li {
        width: 50%;
    }
    .product-page .sideright .top .content {
        width: 100%;
        padding-left: 0;
    }
    .product-page .sideright .top .img {
        width: 100%;
    }
    .product-page .sideright .top .img .img-box {
        min-height: 280px;
    }
}
@media screen and (max-width: 1250px) {
    .mbx {
        margin-top: 40px;
    }
}
@media screen and (max-width: 700px) {
    .product-page .sideright .top {
        width: 100%;
        /*display: none!important;*/
    }
    .product-page .sideright .top h1.Auxil-h1 {
        font-size: 16px;
    }
    .product-page .sideright .top .desc {
        font-size: 14px;
        line-height: 2;
    }
    .product-page .sideright .list ul li {
        width: 100%;
    }
    .product-page .sideright .top .img .img-box {
        min-height: 220px;
    }
}
.prodet-page {
    background: #fff;
}
.prodet-1 .left {
    width: 50%;
}
.prodet-1 .left .swiper {
    overflow: hidden;
    padding: 5px;
}
.prodet-1 .left .swiper-slide {
    padding: 10px 20px;
}
.prodet-1 .left .swiper-slide img {
    width: 100%;
}
.prodet-1 .left a {
    display: block;
    padding: 60px;
}
.prodet-1 .left a img {
    width: 100%;
}
.prodet-1 .left ul {
    margin: -5px;
    padding: 0;
}
.prodet-1 .left ul li {
    padding: 5px;
}
.prodet-1 .left ul li i,
.prodet-1 .left ul li span {
    display: none !important;
}
.prodet-1 .left ul li img {
    display: block;
    margin: 0 auto;
}
.prodet-1 .left ul .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -9999em;
    width: 40px;
    height: 40px;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    background-size: 8px;
    background-position: center center;
    background-repeat: no-repeat;
}
.prodet-1 .left ul .slick-arrow.slick-prev {
    background-image: url("../images/banner-btn-l.png");
    left: 10px;
}
.prodet-1 .left ul .slick-arrow.slick-next {
    background-image: url("../images/banner-btn-r.png");
    right: 10px;
}
.prodet-1 .right {
    padding-left: 15px;
    width: 50%;
    padding-top: 100px;
}
.prodet-1 .right .title {
    font-size: 28px;
    line-height: 1.6;
    
}
.prodet-1 .right h3.title {
    font-size: 24px;
}
.prodet-1 .right .text {
    margin: 1.5rem 0;
    font-size: 18px;
    line-height: 1.7;
    max-height: 25em;
    overflow: auto;
}
.prodet-1 .right .share {
    padding: 10px 0;
}
.prodet-1 .right .share h4 {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 2;
}
.prodet-1 .right .share ul {
    display: inline-block;
    vertical-align: middle;
}
.prodet-1 .right .share ul li {
    width: auto;
    color: #666;
    margin: 5px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-size: 14px;
}
.prodet-1 .right .share ul li:hover {
    color: var(--color);
}
.prodet-1 .right a.tel {
    font-size: 18px;
    color: var(--color);
    display: block;
}
.prodet-1 .right a.contact {
    display: inline-block;
    vertical-align: middle;
    line-height: 50px;
    height: 50px;
    background: var(--color);
    color: white;
    padding: 0 35px;
    font-size: 20px;
    margin-top: 10px;
}
.prodet-page .product-box .prodet-2 {
    padding: 30px 0;
    line-height: 2;
}
.prodet-page .product-box .prodet-2 .options ul {
    background: #fff;
}
.prodet-page .product-box .prodet-2 .options ul li {
    width: auto;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    color: #3d474a;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
}
.prodet-page .product-box .prodet-2 .options ul li:hover,
.prodet-page .product-box .prodet-2 .options ul li.active {
    color: white;
    background: var(--color);
}
.prodet-page .product-box .prodet-2 .ret {
    padding: 80px;
    background: #eee;
}
.prodet-page .product-box .prodet-2 .ret strong {
    
    font-size: 1.2em;
}
.prodet-page .product-box .prodet-2 .ret ul li{
    display: none;
}
.prodet-page .product-box .prodet-2 .ret p {
    padding: 5px 0;
    font-size: 18px;
    background: transparent !important;
    line-height: 30px !important;
}
.prodet-page .product-box .prodet-2 .ret ul li .content{
    overflow-x: auto;
    width: 100%;
}
.prodet-page .product-box .prodet-2 .ret table {
    margin: 5px 0;
}
.prodet-page .product-box .prodet-2 .ret table td {
    border: 1px solid #eee;
    font-size: 14px;
    line-height: 2;
}
.prodet-page .product-box .prodet-2 .ret table td p {
    padding: 0;
}
.prodet-page .product-box .prodet-2 .ret table tr:nth-child(1) {
    background: #0047af !important;
    color: #fff;
}
.prodet-page .product-box .prodet-2 .ret table tr:nth-child(1) td {
    color: #fff;
    font-size: 20px;
    text-align: left;
}
.prodet-page .product-box .prodet-2 .ret table tr:nth-child(even) {
    background: #f9f9f9;
}
.prodet-page .product-box .prodet-2 .ret form {
    margin-top: 50px;
    padding: 10px;
    background: #fff;
    box-shadow: #ccc 0 0 10px 0;
}
.prodet-page .product-box .prodet-2 .ret form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.prodet-page .product-box .prodet-2 .ret form ul li {
    margin-top: 10px;
    width: 48%;
    display: inline-block;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) {
    width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) textarea {
    width: 100%;
    border: #ccc solid 1px;
    padding: 5px;
    font-size: 16px;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) {
    width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input {
    background: var(--color);
    color: #fff;
    transition: all .5s;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input:hover {
    background: #000;
}
.prodet-page .product-box .prodet-2 .ret form ul li input {
    padding: 5px;
    border: #ccc solid 1px;
    width: 100%;
    font-size: 16px;
}
.prodet-page .product-box .prodet-3 h3.title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    
}
.prodet-page .product-box .prodet-3 ul {
    margin: -10px;
}
.prodet-page .product-box .prodet-3 ul .slick-track {
    margin: 0;
}
.prodet-page .product-box .prodet-3 ul li {
    padding: 10px;
}
.prodet-page .product-box .prodet-3 ul li .box {
    display: block;
    background: white;
    -moz-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
    -o-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
    box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}
.prodet-page .product-box .prodet-3 ul li .box a.img-box {
    display: block;
    padding: 30px;
}
.prodet-page .product-box .prodet-3 ul li .box .content {
    display: block;
    padding: 20px 10px;
    text-align: center;
    margin-top: 20px;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3 {
    font-size: 16px;
    line-height: 30px;
    color: #111;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3:hover {
    color: var(--color);
}
.prodet-page .product-box .prodet-3 ul li .box .content h5 {
    display: block;
    font-size: 14px;
    line-height: 2;
    text-transform: uppercase;
    
}
.prodet-page .product-box .prodet-3 ul li .box .content p {
    display: block;
    font-size: 14px;
    color: #888;
    line-height: 2;
    margin: 5px 0 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more {
    margin: 20px auto 0;
}
@media screen and (max-width: 1400px) {
    .prodet-page .product-box .prodet-1 .right .text {
        max-height: 12em;
    }
}
@media screen and (max-width: 1000px) {
    .prodet-1 .left{
        width: 100% !important;
        margin-top: 30px;
    }
    .prodet-1 .left a{
        padding: 0;
    }
    .prodet-1 .right{
        width: 100% !important;
        padding: 0;
        margin-top: 60px;
    }
}
@media screen and (max-width: 700px) {
    .prodet-page .product-box .prodet-1 .left {
        width: 100%;
    }
    .prodet-page .product-box .prodet-1 .right {
        width: 100%;
        padding: 1.5rem 0 0 0;
    }
    .prodet-page .product-box .prodet-1 .right .title {
        font-size: 24px;
        line-height: 1.8;
    }
    .prodet-page .product-box .prodet-2 .ret {
        padding: 40px 30px;
    }
    .prodet-page .product-box .prodet-2 .ret form ul li {
        width: 100%;
    }
}
.news-page {
    background: #fff;
}
.news-page .sideright {
    padding: 0 50px 50px 0 !important;
}
.news-page .sideright .list ul {
    margin-right: -1rem;
}
.news-page .sideright .list ul li {
    padding-right: 1rem;
    margin-bottom: 3rem;
}
.news-page .sideright .list ul li .img {
    position: relative;
}
.news-page .sideright .list ul li .img img {
    width: 100%;
}
.news-page .sideright .list ul li .img .date {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--color);
    color: #fff;
    padding: 6px 12px;
    text-align: center;
    line-height: 1.5em;
    border-radius: 2px;
}
.news-page .sideright .list ul li .img .date span {
    display: block;
    font-size: 14px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}
.news-page .sideright .list ul li .img .date i {
    display: block;
    font-size: 24px;
    line-height: 1.8;
    font-style: normal;
    color: #fff;
    
}
.news-page .sideright .list ul li .con {
    padding: 30px;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
    transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
}
.news-page .sideright .list ul li .con h5,
.news-page .sideright .list ul li .con h5 a {
    color: #000;
    font-size: 24px;
    
    line-height: 1.8;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    margin-bottom: 15px;
}
.news-page .sideright .list ul li .con h5:hover,
.news-page .sideright .list ul li .con h5 a:hover {
    color: var(--color);
}
.news-page .sideright .list ul li .con p {
    color: #555;
    font-size: 16px;
    line-height: 2;
}
.news-page .sideright .list ul li .con i {
    color: var(--color);
    font-size: 18px;
}
.news-page .sideright .list ul li .con .divider {
    width: 100%;
    min-height: 1px;
    background-color: rgba(0, 0, 0, 0.04);
    margin-top: 20px;
    margin-bottom: 20px;
}
.news-page .sideright .list ul li .con .news-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #101010;
    font-size: 16px;
    line-height: 1.25em;
    font-weight: 400;
}
.news-page .sideright .list ul li .con .news-info .news-info-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 30px;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.news-page .sideright .list ul li .con .news-info .news-info-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0px;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.news-page .sideright .list ul li .con .news-info .news-icon-wrapper {
    margin-right: 7px;
}
.news-page .sideright .list ul li .con .news-info .card-news-service-text,
.news-page .sideright .list ul li .con .news-info .card-news-date-text {
    font-size: 16px;
    line-height: 2;
    color: #555;
}
.news-page .sideright .list ul li .con a.link-btn {
    display: inline-block;
    position: relative;
    padding-bottom: 1px;
    margin-bottom: -1px;
    border-bottom: 1px solid #ccc;
}
.news-page .sideright .list ul li .con a.link-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background-color: var(--color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.news-page .sideright .list ul li .con a.link-btn:hover::before {
    width: 100%;
}
@media screen and (max-width: 1000px) {
    .news-page .sideright {
        padding: 0 0 50px 0 !important;
    }
}
@media screen and (max-width: 700px) {
    .news-page .sideright .list ul {
        margin-right: 0;
    }
    .news-page .sideright .list ul li {
        width: 100%;
        padding-right: 0;
    }
    .news-page .sideright .list ul li .con {
        padding: 20px 10px;
    }
    .news-page .sideright .list ul li .con h5,
    .news-page .sideright .list ul li .con h5 a {
        font-size: 20px;
    }
    .news-page .sideright .list ul li .con p {
        font-size: 14px;
    }
    .news-page .sideright .list ul li .con .news-info .card-news-service-text,
    .news-page .sideright .list ul li .con .news-info .card-news-date-text {
        font-size: 14px;
    }
    .news-page .sideright .list ul li .con .news-info .news-info-right {
        font-size: 14px;
    }
}
.newdet-page .section-title2 {
    font-size: 27px;
    
    line-height: 1.6;
    color: #000;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}
.newdet-page blockquote {
    border-left: 7px solid var(--color);
    padding: 45px;
    display: block;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    margin: 35px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
}
.newdet-page blockquote p {
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 3;
    margin-bottom: 0;
}
.newdet-page blockquote::before {
    content: '\f10e';
    font-family: 'FontAwesome';
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.07;
    line-height: 1;
    color: #000;
}
.newdet-page blockquote a {
    color: inherit;
}
.newdet-page blockquote cite {
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding-left: 3rem;
    border-color: inherit;
    line-height: 1;
    margin-top: 22px;
    font-style: normal;
    color: var(--color);
    
}
.newdet-page blockquote cite::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 45px;
    height: 1px;
    border-top: 1px solid;
    border-color: inherit;
    color: var(--color);
}
.newdet-page .n-content h3 {
    font-size: 28px;
    line-height: 2;
    font-weight: 900;
    color: #a5cf6b;
    margin-bottom: 5px;
}
.newdet-page .n-content h4 {
    font-size: 24px;
    line-height: 1.9;
    font-weight: 700;
}
.newdet-page .n-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}
.newdet-page .n-content table td{
    word-break: keep-all;
}
.newdet-page .grid-box {
    margin-right: -12px;
}
.newdet-page .column {
    padding: 20px 12px 0;
}
.newdet-page .column:nth-child(1) {
    padding: 20px 12px 0 0;
}
.newdet-page .news-post-comment-wrap {
    display: flex;
    margin-bottom: 60px;
}
.newdet-page .news-post-comment-wrap .news-post-user-comment {
    margin-right: 30px;
    flex: 0 0 auto;
}
.newdet-page .news-post-comment-wrap .news-post-user-comment img {
    border-radius: 100%;
    width: 100px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content {
    margin-right: 26px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content h3 {
    font-size: 18px;
    color: #000;
    
}
.newdet-page .news-post-comment-wrap .news-post-user-content h3 span {
    font-size: 12px;
    color: #555;
    font-weight: 400;
    margin-left: 15px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content .news-post-repay {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-weight: 400;
    transition: .5s;
    -webkit-transition: .5s;
}
.newdet-page .news-post-comment-wrap .news-post-user-content .news-post-repay:hover {
    color: var(--color);
}
.newdet-page .s_link {
    margin-bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.newdet-page .s_link .list {
    width: 50%;
    padding: 50px 0;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}
.newdet-page .s_link .list .img {
    width: 80px;
    height: 80px;
    min-width: 80px;
}
.newdet-page .s_link .list .img img {
    -o-object-fit: cover;
    object-fit: cover;
}
.newdet-page .s_link .list .cont {
    margin-left: 20px;
}
.newdet-page .s_link .list .cont a {
    display: block;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.newdet-page .s_link .list .cont a:hover {
    color: var(--color);
}
.newdet-page .s_link .list .cont .tip {
    font-size: 16px;
    line-height: 2;
    color: #444;
}
.newdet-page .s_link .list .cont .des {
    color: #000;
    font-size: 16px;
    line-height: 2;
    margin-top: 10px;
}
.newdet-page .s_link .list.next {
    padding-right: 0;
    padding-left: 15px;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    border-left: 1px solid #d9d9d9;
}
.newdet-page .s_link .list.next .img {
    margin-left: 20px;
}
.newdet-page .s_link .list.next .cont {
    margin-left: 0;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    text-align: right;
}
.newdet-page .news-comment-section {
    padding-top: 3rem;
}
.newdet-page .news-comment-section h3 {
    font-size: 18px;
    color: #000;
    
}
.newdet-page .news-comment-section form {
    margin-top: 15px;
}
.newdet-page .news-comment-section form .column {
    padding: 0;
}
.newdet-page .news-comment-section form li input[type="text"],
.newdet-page .news-comment-section form li textarea {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 15px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 2;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    background-image: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.newdet-page .news-comment-section form li input[type="text"]:focus,
.newdet-page .news-comment-section form li textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--color);
}
.newdet-page .news-comment-section form li button {
    
    display: inline-block;
    height: auto;
    padding: 14px 30px;
    border: 1px solid transparent;
    border-radius: 80px;
    background-color: var(--color);
    -webkit-transition: border-color 400ms ease, background-color 400ms ease;
    transition: border-color 400ms ease, background-color 400ms ease;
    color: #fff;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}
.newdet-page .news-comment-section form li button:hover {
    background: #000;
}
.newdet-page .news-comment-section form li.wid-100 {
    width: 100%;
}
@media screen and (max-width: 700px) {
    .newdet-page blockquote {
        padding: 20px 10px;
    }
    .newdet-page .grid-box {
        margin-right: 0;
    }
    .newdet-page .column {
        padding: 10px 0;
        width: 100%;
    }
    .newdet-page .column:nth-child(1) {
        padding: 10px 0;
    }
    .newdet-page .news-post-comment-wrap {
        display: block;
    }
    .newdet-page .news-post-comment-wrap .news-post-user-comment {
        text-align: center;
    }
    .newdet-page .news-post-comment-wrap .news-post-user-content {
        margin: 2rem 0 0 0;
    }
    .newdet-page .news-comment-section form .column {
        width: 100%;
    }
    .newdet-page .s_link .list {
        width: 100%;
    }
    .newdet-page .s_link .list.next {
        border: none;
        border-top: 1px solid #d9d9d9;
    }
}
@media screen and (max-width: 500px) {
    .newdet-page .s_link {
        margin-top: 20px;
    }
    .newdet-page .s_link .list {
        padding: 20px 0;
    }
}
.contact-page .contact-1 {
    padding: 6rem 0;
}
.contact-page .contact-1 .left {
    padding-right: 8%;
}
.contact-page .contact-1 .left h5 {
    color: #000;
    font-size: 24px;
    
    line-height: 1.6;
    margin-bottom: 15px;
}
.contact-page .contact-1 .left p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
}
.contact-page .contact-1 .left ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #555;
    text-decoration: none;
}
.contact-page .contact-1 .left ul li .contact-link-icon {
    margin-right: 20px;
    margin-bottom: 20px;
    width: 60px;
    max-height: 60px;
    min-height: 60px;
    min-width: 60px;
    background-color: var(--color);
    color: #fff;
    font-size: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-page .contact-1 .left ul li .contact-link-icon i,
.contact-page .contact-1 .left ul li .contact-link-icon span {
    background: var(--color);
    color: #fff;
    width: 100%;
    text-align: center;
}
.contact-page .contact-1 .left ul li .contact-link-title {
    margin-bottom: 0px;
    color: #000;
    font-size: 16px;
    line-height: 2;
    
    margin-top: 7px;
}
.contact-page .contact-1 .left ul li .contact-link-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
}
.contact-page .contact-1 .right {
    text-align: right;
    padding-left: 15%;
}
.contact-page .contact-1 .right .form-wrap {
    position: relative;
    border-radius:0px 0px 40px 0px;
}
.contact-page .contact-1 .right .form-wrap .form-box {
    padding: 40px;
    background: #fbfbfb;
    z-index: 3;
    margin-bottom: 30px;
    margin-right: 30px;
    text-align: left;
    border-radius: 0px 0px 40px;
}
.contact-page .contact-1 .right .form-wrap .form-box::before {
    content: '';
    position: absolute;
    top: 90px;
    right: 10px;
    left: 120px;
    bottom: -20px;
    background: var(--color);
    z-index: -1;
    border-radius: 0px 0px 40px;
}
.contact-page .contact-1 .right .form-wrap .form-box::after {
    content: '';
    width: 50%;
    position: absolute;
    top: -5%;
    bottom: 55%;
    left: -5%;
    background-image: url(../images/dots.png);
    background-repeat: repeat;
    z-index: -1;
}
.contact-page .contact-1 .right .form-wrap .form-box h5 {
    color: #000;
    font-size: 24px;
    line-height: 1.6;
    
    margin-bottom: 15px;
}
.contact-page .contact-1 .right .form-wrap .form-box li.wid-100 {
    width: 100%;
}
.contact-page .contact-1 .right .form-wrap .form-box li input,
.contact-page .contact-1 .right .form-wrap .form-box li textarea {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 15px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 2;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    background-image: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.contact-page .contact-1 .right .form-wrap .form-box li input:focus,
.contact-page .contact-1 .right .form-wrap .form-box li textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--color);
}
.contact-page .contact-1 .right .form-wrap .form-box li textarea {
    height: 127px;
}
.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary {
    
    display: inline-block;
    height: auto;
    padding: 14px 30px;
    border: 1px solid transparent;
    font-size: 16px;
    border-radius: 80px;
    background-color: var(--color);
    -webkit-transition: border-color 400ms ease, background-color 400ms ease;
    transition: border-color 400ms ease, background-color 400ms ease;
    color: #fff;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
}
.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary:hover {
    background: #000;
}
.contact-page .contact-1 .map {
    margin-top: 4.5rem;
}
.contact-page .contact-2 {
    padding: 6rem 0;
}
.contact-page .contact-2 .contact-link-icon{font-size: 48px; color: var(--color);;}
.contact-page .contact-2 .list ul {
    margin: -10px;
}
.contact-page .contact-2 .list ul li {
    padding: 10px;
    text-align: center;
}
.contact-page .contact-2 .list ul li .box {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 30px;
}
.contact-page .contact-2 .list ul li .box span.h6 {
    font-size: 18px;
    
}
.contact-page .contact-2 .list ul li .box .text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 1.5em;
}
.contact-page .contact-2 .header p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}
.contact-page .contact-2 .header .section-title {
    font-size: 36px;
    line-height: 1.6;
    color: #000;
    position: relative;
    margin-bottom: 20px;
}
.contact-page .contact-2 .header .section-title span {
    color: var(--color);
}
.contact-page .contact-2 .content ul {
    margin-right: -2rem;
}
.contact-page .contact-2 .content ul li {
    padding-right: 2rem;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2;
}
.contact-page .contact-2 .content ul li .title {
    padding: 30px 30px 30px 80px;
    cursor: pointer;
    position: relative;
    border: none;
    border: 1px solid #fff;
    margin-bottom: 0px;
    background-color: #fff;
}
.contact-page .contact-2 .content ul li .title::after {
    /*content: "\f27b";*/
    font-weight: normal;
    font-size: 16px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color);
    padding: 9px 14px;
    color: #fff;
}
.contact-page .contact-2 .content ul li .title h6 {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 0;
    color: #000;
}
.contact-page .contact-2 .content ul li .accordion-info {
    display: none;
    padding: 20px;
    margin-top: 0px;
    margin-left: 0px;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.contact-page .contact-2 .content ul li.active .title {
    color: #fff;
    background: var(--color);
    border: 1px solid var(--color);
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.contact-page .contact-2 .content ul li.active .title h6 {
    color: #fff;
}
.contact-page .contact-2 .content ul li.active .title::after {
    background: #fff;
    color: var(--color);
}
@media screen and (max-width: 1366px) {
    .contact-page .contact-1 .right {
        padding-left: 10%;
    }
}
@media screen and (max-width: 1200px) {
    .contact-page .contact-1 .right {
        padding-left: 4%;
    }
    .contact-page .contact-2 .content ul li {
        width: 50%;
    }
}
@media screen and (max-width: 1000px) {
    .contact-page .contact-1 .left {
        width: 100%;
        padding-right: 0;
    }
    .contact-page .contact-1 .right {
        width: 100%;
        padding: 2rem 0 0 0;
    }
}
@media screen and (max-width: 700px) {
    .contact-page .contact-2 .content ul li {
        width: 100%;
    }
}
.news-page.product #index-body .product .content ul li .box .text h4{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-page.product #index-body .product .content ul li .box .text p{
    overflow: unset;
    text-overflow: unset;
    display: inline-block;
}
.news-page.product #index-body .product{
    background-color: #fff;
    padding: 1.55rem 0 5rem;
}
.about-page.single,
.news-page.product.single #index-body .product{
    background-color: #f5f5f5;
}
.content{
    font-size: 16px;
    line-height: 2;
}
a.foot-link{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 400px;
    display: inline-block;
    vertical-align: middle;
}
.desc h1{
    display: inline;
}
.grid-box.three>.column.f-ab,
.grid-box.three>.column.f-news{
    width: 30%;
}
.grid-box.three>.column.f-nav{
    width: 20%;
}
.knowledge{
    font-size: 16px;
    line-height: 2;
    margin-top: 15px;
}
.layer-form .wrap-contact100 {
    width: 357px;
    border-radius: 10px;
}
.layer-form .wrap-contact100 .btn-hide-contact100 {
    color: #000000;
}
.layer-form .wrap-contact100 form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 25px 15px 25px;
}
.layer-form .wrap-contact100 form h2 {
    width: 100%;
    font-size: 25px;
    
    text-align: center;
    margin-bottom: 30px;
}
.layer-form .wrap-contact100 form p {
    font-size: 12px;
    color: #adadad;
    padding: 10px 0;
}
.layer-form .wrap-contact100 form input {
    height: 36px;
    display: block;
    width: 100%;
    background: transparent;
    font-size: 14px;
    color: #333333;
    line-height: 1.2;
    padding: 0 20px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
.layer-form .wrap-contact100 form input:focus {
    border: 1px solid var(--color);
}
.layer-form .wrap-contact100 form textarea {
    height: 114px;
    padding-top: 22px;
    padding-bottom: 15px;
    display: block;
    width: 100%;
    background: transparent;
    font-size: 14px;
    color: #333333;
    line-height: 1.2;
    padding: 15px 20px;
    border: none;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
.layer-form .wrap-contact100 form textarea:focus {
    border: 1px solid var(--color);
}
.layer-form .wrap-contact100 form .layer-submit {
    width: 100%;
    position: relative;
    border-radius: 2px;
}
.layer-form .wrap-contact100 form .layer-submit input[type="submit"] {
    /*border: 1px solid #e6e6e6;*/
    background: var(--color);
    height: 42px;
    display: block;
    width: 100%;
    font-size: 15px;
    color: #333333;
    line-height: 1.2;
    padding: 0 20px;
    margin: 0;
    border-radius: 42px;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    position: relative;
    z-index: 10;
    color: #ffffff;
}
.layer-form .wrap-contact100 form .layer-submit input[type="submit"]:hover {
    background: #000;
    color: #ffffff;
}
.mbx{
    padding: 12px 0;
    background: #f2f2f2;
    font-size: 16px;
    line-height: 28px;
}
/*.inner-page{
    overflow: hidden;
}*/
.inner-page span.h2 {
    font-size: 30px;
    color: #1e1e1e;
    line-height: 1.2;
    display: block;
}
.about2-page .about-1 {
    padding: 80px 0 8%;
    background: url(../images/about-1.jpg) bottom right no-repeat;
    background-size: 45% auto;
}
.about2-page .about-1 .text {
    width: 75%;
}
.about2-page .about-1 .text span.h3{    font-size: 36px;}
.about2-page .about-1 .text span.h3 em{color: var(--color);}
.about2-page .about-1 .text span.h2 {
    font-size: 48px;
    
    max-width: 24em;
}
.about2-page .about-1 .text .con {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 3em;
}
.about2-page .about-1 .list {
    margin-top: 45px;
    max-width: 70%;
    margin-right: auto;
    display: block;
}
.about2-page .about-1 .list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about2-page .about-1 .list ul li {
    width: auto;
    text-align: center;
}
.about2-page .about-1 .list ul li span {
    font-size: 50px;
    
    color: var(--color);
    line-height: 1;
    display: block;
}
.about2-page .about-1 .list ul li span i {
    color: #c0c3c0;
    margin-left: .1em;
}
.about2-page .about-1 .list ul li p {
    font-size: 16px;
    opacity: .8;
    display: block;
}
.about2-page .about-2 {
    text-align: center;
    padding: 260px 0;
}
.about2-page .about-2 .play {
    display: inline-block;
    cursor: pointer;
    cursor: hand;
}
.about2-page .about-3 {
    padding: 90px 0;
}
.about2-page .about-3 .left {
    width: 42%;
    vertical-align: middle;
}
.about2-page .about-3 .right {
    width: 58%;
    vertical-align: middle;
    padding: 0 8%;
}
.about2-page .about-3 .right span.h2 {
    display: flex;
    align-items: center;
    margin-bottom: 4em;
}
.about2-page .about-3 .right span.h2:before {
    content: '';
    width: 1.5em;
    height: 2px;
    background-color: #181818;
    margin-right: .5em;
}
.about2-page .about-3 .right .text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}
.about2-page .about-4 {
    padding: 80px 0 100px;
    background-color: var(--color);
    color: white;
}
.about2-page .about-4 .left {
    width: 60%;
    vertical-align: bottom;
}
.about2-page .about-4 .left span.h2 {
    color: inherit;
    text-transform: uppercase;
}
.about2-page .about-4 .right {
    width: 40%;
    text-align: right;
    vertical-align: bottom;
}
.about2-page .about-4 .right a.more {
    font-size: 16px;
    
    color: white;
    line-height: 3em;
    height: 3em;
    padding: 0 3em;
    border-radius: 1.5em;
    border: 1px solid white;
    transition: .5s;
    display: inline-block;
}
.about2-page .about-4 .right a.more:hover {
    background-color: black;
}
.about2-page .about-5 {
    padding: 80px 0 120px;
}
.about2-page .about-5 .left {
    width: 40%;
    padding-right: 3%;
    vertical-align: middle;
}
.about2-page .about-5 .right {
    width: 60%;
    vertical-align: middle;
}
.about2-page .about-5 .left span.h2 {
    text-transform: uppercase;
}
.about2-page .about-5 .left .text {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 2em;
}
.about2-page .about-5 .right ul {
    margin: -25px;
}
.about2-page .about-5 .right ul li {
    padding: 25px;
}
.about2-page .about-5 .right ul li img {
    width: 100%;
}
.about2-page .about-5 .right ul li p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: .5em;
}
.about2-page .about-6 {
    padding: 90px 0 70px;
    background-color: #efefef;
}
.about2-page .about-6 span.h2 {
    margin-bottom: 1em;
}
.about2-page .about-6 .box .left {
    width: 76.5%;
    padding-right: 20px;
}
.about2-page .about-6 .box .right {
    width: 23.5%;
}
.about2-page .about-6 .box img {
    width: 100%;
}
.about2-page .about-6 .box .right ul {
    margin: -10px;
}
.about2-page .about-6 .box .right ul li {
    padding: 10px;
    cursor: pointer;
    cursor: hand;
}
.app-page {
    background-color: #fcfcfc;
}
.app-page span.h2 {
    padding: 1em 0 .5em;
    /*    border-top: 1px solid #d0cece;*/
    display: block;
    text-align: center;
    font-size: 48px;
    
    line-height: 1.2;
}
.app-page .list ul {
    margin: -2px;
}
.app-page .list ul li {
    padding: 2px;
}
.app-page .list ul li .box {
    background: #f8f8f8;
    text-align: center;
    font-size: 15px;
    display: inline-block;
    width: 100%;
    transition: .5s;
}
.app-page .list ul li .box i {
    margin: 1.5em 0 .7em;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
.app-page .list ul li .box p {
    margin-bottom: 1.2em;
    padding: 0 .5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.app-page .list ul li .box>img {
    width: 100%;
}
.app-page .list ul li .box:hover {
    color: white;
    background-color: var(--color);
}
.app-page .list ul li .box:hover i {
    filter: brightness(0) invert(1);
}
.about2-page.productAbout .about-1 span.h2 {
    
    line-height: 1.6;
}
.news-page.newsBox {
    padding: 70px 0 130px;
    /*    background: #efeeee;*/
}
.news-page.newsBox span.h2 {
    font-size: 48px;
}
.news-page.newsBox .list {
    margin-top: 30px;
}
.news-page.newsBox .list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    flex-wrap: wrap;
}
.news-page.newsBox .list ul li {
    padding: 45px;
    background: #f6f6f6;
    border-radius:20px;
    width: 100%;
}
.news-page.newsBox .list ul li time {
    display: block;
    font-size: 16px;
    color: var(--color);
    line-height: 1.2;
    margin-top: 10px;
}
.news-page.newsBox .list ul li .h6 {
    font-size: 20px;
    
    color: #191919;
    margin: .6em 0 1em;
    line-height: 2;
    transition: .5s;
}
.news-page.newsBox .list ul li .h6:hover {
    color: var(--color);
}
.news-page.newsBox .list ul li p {
    font-size: 16px;
    color: #828181;
    line-height: 1.8;
}
.technology-page span.h2 {
    font-size: 36px;
    
    display: block;
    line-height: 1.2;
    color: black;
}
.technology-page .technology-1 {
    padding: 70px 0;
}
.technology-page .technology-1 .left {
    padding-right: 4%;
    vertical-align: middle;
}
.technology-page .technology-1 .right {
    vertical-align: middle;
}
.technology-page .technology-1 .left .text {
    color: #191919;
    margin-top: 1em;
}
.technology-page .technology-1 .left .text h6 {
    font-size: 1.1em;
    margin: 1.1em 0;
    
}
.technology-page .technology-2 {
    padding: 90px 0;
    text-align: center;
}
.technology-page .technology-2 .text {
    max-width: 850px;
    display: block;
    margin: 2em auto 4em;
}
.technology-page .technology-3 {
    text-align: center;
}
.technology-page .technology-3 .list {
    margin-top: 60px;
}
.technology-page .technology-3 .list ul {
    margin: -17px;
}
.technology-page .technology-3 .list ul li {
    padding: 17px;
}
.technology-page .technology-3 .list ul li span {
    display: block;
    font-size: 18px;
    
    margin: .5em 0 1.5em;
    line-height: 1.4;
    height: 2.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.technology-page .technology-3 .list ul li p {
    font-size: 16px;
    color: #191919;
    line-height: 1.4;
    opacity: .77;
}
.technology-page .technology-4 {
    padding: 90px 0;
}
.technology-page .technology-4 .left {
    padding-right: 5%;
    vertical-align: middle;
}
.technology-page .technology-4 .right {
    vertical-align: middle;
    padding-right: 10%;
}
.technology-page .technology-4 .right span.h2 {
    margin-bottom: 2em;
    text-transform: uppercase;
}
.news-page .news-1 {
    padding: 80px 0;
    background-color: white;
}
.news-page .news-1 .left {
    width: 53%;
    vertical-align: middle;
}
.news-page .news-1 .left img{border-radius: 20px;}
.news-page .news-1 .right {
    padding-left: 4%;
    width: 47%;
    vertical-align: middle;
}
.news-page .news-1 .right time {
    font-size: 16px;
    color: var(--color);
    display: block;
    
    line-height: 1.2;
}
.news-page .news-1 .right span.h6 {
    font-size: 30px;
    
    color: #191919;
    line-height: 1.6;
    margin: .3em 0 1em;
    display: block;
}
.news-page .news-1 .right .text{font-size: 16px; margin-bottom: 30px;}
.application-page .application-1{
    padding: 70px 0 40px;
}
.application-page .application-1 .list ul {
    display: flex;
    justify-content: space-between;
}
.application-page .application-1 .list ul li {
    width: 100%;
    max-width: 16.666%;
}
.application-page .application-1 .list ul li a {
    display: block;
    height: 100%;
    font-size: 15px;
    padding: 2em 1em 1em;
    text-align: center;
    transition: .5s;
    border-right: 1px solid #ececeb;
}
.application-page .application-1 .list ul li a i {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 75px;
    margin-bottom: .5em;
    transition: .5s;
    filter: brightness(0);
}
.application-page .application-1 .list ul li a.active {
    background-color: var(--color);
    color: white;
}
.application-page .application-1 .list ul li a.active i {
    filter: brightness(0) invert(1);
}
.application-page .application-1 .list ul li:last-child a {
    border-right: none;
}
.application-page .application-2 {
    background-color: var(--color);
    color: white;
    position: relative;
    z-index: 1;
}
.application-page .application-2 .box {
    padding: 70px 0;
    max-width: 1140px;
    display: block;
    margin: 0 auto;
}
.application-page .application-2 .box span.h2 {
    color: inherit;
    font-size: 48px;
    text-align: center;
}
.application-page .application-2 .box .text {
    line-height: 2;
}
.application-page .application-2 .box .text p {
    margin-top: .5em;
    display: block;
}
.application-page+.product-page {
    position: relative;
    background-color: var(--color);
    z-index: 1;
    padding-top: 0 !important;
}
.application-page+.product-page:after {
    content: '';
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fcfcfc;
    z-index: -1;
}
.application-page+.product-page ul .slick-track {
    margin-left: 0;
}
.product-page.application {
    padding: 90px 0;
}
.product-page.application .sidebox {
    padding: 0;
}
.product-page.application .sidebox .sideright {
    padding: 0;
    width: 100%;
}
.product-page.application .sidebox .sideright .list {
    margin-top: 0;
}
.product-page.application .sidebox .sideright .list ul {
    margin: -6px;
}
.product-page.application .sidebox .sideright .list ul li {
    width: 25%;
    padding: 6px;
}
.product-page.application .slick-arrow {
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    cursor: hand;
    z-index: 1;
    background-image: url('../images/icon-arrows.png');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    cursor: hand;
}
.product-page.application .slick-arrow.slick-prev {
    right: 101%;
}
.product-page.application .slick-arrow.slick-next {
    left: 101%;
    transform: translateY(-50%) rotateY(180deg);
}
#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;
    
    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: var(--color);
}
#resources_nav li:nth-child(4) a {
    background-color: #b5b5b5;
}
.resources_sidebar {padding-top: 50px;
    margin: 0 -30px;
}
.resources_sidebar .resources_left {
    width: 70%;
    padding: 0 30px;
}
.resources_sidebar .resources_right {
    width: 30%;
    padding: 0 30px;
}
.resources_sidebar .resources_right .video_list ul {
    margin: -10px 0;
}
.resources_sidebar .resources_right .video_list ul li {
    margin: 0;
    padding: 10px 0;
}
.resources_sidebar .resources_right .video_list .slick-arrow {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}
h2.resources {
    
}
h2.resources::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: var(--color);
    margin-top: 10px;
}
.resources_more {
    font-size: 15px;
    line-height: 26px;
    
}
.video_content h3 {
    
}
.resources-page .resources_1{padding-top: 100px; padding-bottom: 100px;}
.resources-page .resources_1 h4{font-size: 28px;
    text-align: center;
    
    padding-top: 10px;}
.resources-page .resources_1 p{text-align: center;font-size: 16px;}
.resources-page .resources_1 li{margin-bottom: 50px; text-align: center;}
.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 {
    
}
.product_catalogue .mml-text .date .download {
    font-size: 15px;
    
    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 {
    
}
.pdf_box .mml-text .date .download {
    font-size: 15px;
    
    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;
    
}
#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 {
    
}
#Latest_News a.view_more {
    font-size: 15px;
    line-height: 26px;
    
}
.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: var(--color);
    color: white;
    border-radius: 8px;
}
.lg-page .lg_box ul{
    margin: -25px -10px;
}
.lg-page .lg_box ul li{
    padding: 25px 10px;
}
@media screen and (max-width: 1200px) {
    #resources_nav li a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}
@media screen and (max-width: 1000px) {
    span.h2{
        font-size: 30px;
    }
    #resources_nav {
        display: none;
    }
    .about-page .about-1 .text a.link{
        font-size: 14px;
    }
    .resources_sidebar {
        margin: 0;
    }
    .resources_sidebar .resources_left {
        width: 100%;
        padding: 0;
    }
    .resources_sidebar .resources_right {
        display: none;
    }
    .resources_more {
        display: none;
    }
    .about2-page .about-1 .text,.about2-page .about-3 .right,
    .about2-page .about-4 .right,.about2-page .about-4 .left,
    .about2-page .about-5 .left,.about2-page .about-5 .right,
    .about2-page .about-6 .box .left,.technology-page .technology-1 .left,
    .technology-page .technology-1 .right {
        width: 100%;
        padding: 0;
    }
    .about2-page .about-1 .img,.about2-page .about-3 .left,.about2-page .about-6 .box .right {
        display: none;
    }
    .about2-page .about-1 .text span.h2,.inner-page span.h2,.application-page .application-2 .box span.h2 {
        font-size: 24px;
    }
    .about2-page .about-1 .text .con,.about2-page .about-1 .list ul li p,.about2-page .about-5 .left .text {
        font-size: 14px;
    }
    .about2-page .about-1 .list ul li span {
        font-size: 32px;
    }
    .about2-page .about-2 {
        padding: 120px 0;
    }
    .about2-page .about-2 .play {
        max-width: 70px;
    }
    .about2-page .about-3 .right span.h2 {
        margin-bottom: 2em;
    }
    .about2-page .about-4 .left {
        margin-bottom: 20px;
    }
    .about2-page .about-4,.about2-page .about-3,.about2-page .about-1,.about2-page .about-5,.about2-page .about-6,
    .technology-page .technology-2,.product-page.application,.application-page .application-2 .box {
        padding: 50px 0;
    }
    .about2-page .about-1 {
        background-image: unset;
    }
    .about2-page .about-1 .list {
        max-width: none;
    }
    .technology-page .technology-1 .right {
        margin-top: 20px;
    }
    .application-page .application-1,.application-page .application-2:after {
        display: none;
    }
    .product-page .sideright .list ul li .box .text h4 {
        font-size: 16px;
    }
    .product-page .sideright .list ul li .box .text p {
        font-size: 14px;
    }
    .news-page.newsBox .list ul li {
        width: 50%;
    }
    .news-page.newsBox .list ul li .h6 {
        font-size: 18px;
    }
}
@media screen and (max-width: 700px) {
    .video_content h3 {
        font-size: 20px;
    }
    .news-page.newsBox .list ul li {
        width: 100%;
    }
    .news-page .news-1 .right {
        padding-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    .news-page .news-1 .left {
        width: 100%
    }
    .news-page .news-1 .right span.h6 {
        font-size: 24px;
    }
    .news-page.newsBox span.h2 {
        font-size: 24px;
    }
}
@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;
    }
    .about2-page .about-1 .list ul li {
        width: 50%;
        padding: 5px;
    }
    .about2-page .about-1 .text span.h2, .inner-page span.h2 {
        font-size: 20px;
    }
}
@media screen and (max-width: 1000px){
    .app-page .list ul li {
        width: 33.333% !important;
    }
}
@media screen and (max-width: 700px){
    .app-page .list ul li {
        width: 50% !important;
    }
}
.privacy-content {
    font-size: 16px;
    line-height: 2;
    padding: 50px 0;
}
.privacy-content h3 {
    font-size: 20px;
    
    margin-top: 10px;
}
.rn_banner .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.rn_banner .box div {
    width: 100%;
    text-align: center;
}
.rn_banner .box h5 {
    font-size: 3.25rem;
    color: #fff;
    width: 100%;
}
.rn_banner .box p {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 1.375rem;
}
.rn_two_nav {
    background: #f8f8f8;
}
.rn_two_nav .box .banner .swiper-slide {
    width: 6.875rem;
    text-align: center;
}
.rn_two_nav .box .banner .swiper-slide a {
    display: inline-block;
    text-align: center;
    font-size: 1.125rem;
    
    color: #000;
    line-height: 4.75rem;
}
.rn_two_nav .box .banner .active a {
    color: var(--color);
    border-bottom: 2px solid var(--color);
}
.rn_case .box .list .item {
    width: 24%;
    margin-right: 1.3%;
    margin-bottom: 30px;
}
.rn_case .box .list .item:nth-child(4n) {
    margin-right: 0;
}
.rn_case .box .list .item a {
    display: block;
    position: relative;
}
.rn_case .box .list .item a .img {
    position: relative;
    overflow: hidden;
}
.rn_case .box .list .item a .img img {
    width: 100%;
    transition: 0.4s;
}
.rn_case .box .list .item a .img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.rn_case .box .list .item a .text {
    position: absolute;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    padding: 0 3rem;
    transition: 0.4s;
}
.rn_case .box .list .item a .text h5 {
    font-size: 1.5rem;
    color: #fff;
}
.rn_case .box .list .item a .text h6 {
    font-size: 1rem;
    color: #fff;
    margin-top: 1.125rem;
}
.rn_case .box .list .item a .text p {
    margin-top: 1.875rem;
    font-size: 1rem;
    
    color: #fff;
    line-height: 1.25rem;
    opacity: 0;
    transition: 0.4s;
}
.rn_case .box .list .item:hover a .img img {
    transform: scale(1.1);
}
.rn_case .box .list .item:hover a .text {
    bottom: 2.8125rem;
}
.rn_case .box .list .item:hover a .text p {
    opacity: 1;
}
.rn_case .index_page {
    margin-top: 5rem;
}
.rn_title {
    background: #f8f8f8;
}
.rn_title .box .boxleft {
    line-height: 5rem;
}
.rn_title .box .boxleft ul li {
    margin-right: 5.75rem;
}
.rn_title .box .boxleft ul li a {
    font-size: 1.125rem;
    color: #000;
    display: block;
    
}
.rn_title .box .boxleft ul .active a {
    color: var(--color);
    border-bottom: 2px solid var(--color);
}
.rn_title .box .boxRight {
    font-size: 1rem;
    color: #666;
    line-height: 4.875rem;
}
.rn_title .box .boxRight a {
    color: #666;
}
.rn_title .box .boxRight i{
    font-size: 1rem;
}
.rn_title .box .boxRight a img {
    position: relative;
    margin-right: 0.625rem;
    top: -3px;
}
.rn_title .box .boxRight span {
    color: var(--color);
}
.rn_case_info > .box .boxLeft {
    width: 50%;
}
.rn_case_info > .box .boxLeft .content1 span {
    display: inline-block;
    width: 3rem;
    height: 2px;
    background: var(--color);
    margin-top: 1.5rem;
}
.rn_case_info > .box .boxLeft .content2 {
    margin-top: 2rem;
    font-size:16px;
    color: #666;
    line-height:1.5rem;
}
.rn_case_info > .box .boxLeft .content3 {
    margin-top: 3rem;
}
.rn_case_info > .box .boxLeft .content3 .item {
    padding: 0 5rem;
    border-right: 1px solid #ddd;
}
.rn_case_info > .box .boxLeft .content3 .item:last-child {
    border: 0;
}
.rn_case_info > .box .boxLeft .content3 .item:first-child {
    padding-left: 0;
}
.rn_case_info > .box .boxLeft .content3 .item div {
    font-size: 1.125rem;
    margin-bottom: 10px;
    
}
.rn_case_info > .box .boxLeft .content3 .item div:last-child {
    margin-bottom: 0;
}
.rn_case_info > .box .boxLeft .content4 {
    margin-top: 4.875rem;
}
.rn_case_info > .box .boxLeft .content4 .item {
    margin-right: 1.625rem;
}
.rn_case_info > .box .boxLeft .content4 .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color);
    
    width: 14.375rem;
    text-align: center;
    line-height: 3.25rem;
    border: 1px solid var(--color);
    transition: 0.3s;
}
.rn_case_info > .box .boxLeft .content4 .item a img {
    margin-right: 0.3125rem;
}
.rn_case_info > .box .boxLeft .content4 .item a .img2 {
    display: none;
}
.rn_case_info > .box .boxLeft .content4 .item a:hover {
    background: var(--color);
    color: #fff;
}
.rn_case_info > .box .boxLeft .content4 .item a:hover .img1 {
    display: none;
}
.rn_case_info > .box .boxLeft .content4 .item a:hover .img2 {
    display: inline-block;
}
.rn_case_info > .box .boxRight {
    width: 43%;
}
.rn_case_info > .box .boxRight p {
    overflow: hidden;
}
.rn_case_info > .box .boxRight p img {
    width: 100%;
    transition: 0.4s;
}
.rn_case_info > .box .boxRight p:hover img {
    transform: scale(1.1);
}
.case_three {
    background: #f8f8f8;
}
.case_three .box ul {
    display: flex;
    margin-right: -1rem;
    flex-wrap: wrap;
}
.case_three .box ul li {
    background: #fff;
    width: 32%;
    box-sizing: border-box;
    padding: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}
.case_three .box ul.two li {
    width: calc(50% - 1rem);
}
.case_three .box ul.three li {
    width: calc(33.333% - 1rem);
}
.case_three .box ul.four li {
    width: calc(25% - 1rem);
}
.case_three .box ul.five li {
    width: calc(20% - 1rem);
}
.case_three .box ul li img {
    height: 4.375rem;
}
.case_three .box ul li strong,
.case_three .box ul li h4 {
    font-size: 1.4rem;
    color: #000;
    margin: 1.5rem 0;
    display: block;
}
.case_fangAn .box .boxleft {
    width: 50%;
}
.case_fangAn .box .boxleft img {
    width: 100%;
}
.case_fangAn .box .boxRight {
    width: 50%;
    padding-top: 2rem;
}
.case_fangAn .box .boxRight table {
    width: 100%;
}
.case_fangAn .box .boxRight table th {
    background: var(--color);
    color: #fff;
    height: 4.875rem;
    box-sizing: border-box;
    width: 20%;
    padding: 0 1rem;
    font-size: 1.125rem;
    border: 1px solid #eee;
}
.case_fangAn .box .boxRight table th:nth-child(2) {
    width: 30%;
}
.case_fangAn .box .boxRight table th:nth-child(3) {
    width: 8%;
}
.case_fangAn .box .boxRight table th:nth-child(4) {
    width: 22%;
}
.case_fangAn .box .boxRight table td {
    width: 12%;
    padding: 0 1.375rem;
    font-size: 1.125rem;
    height: 4.875rem;
    border: 1px solid #eee;
}
.case_fangAn .box .boxRight table td:nth-child(4) {
    font-size: 1rem;
}
.case_fangAn .box .boxRight table td a {
    font-size: 1rem;
    color: var(--color);
}
.case_fangAn .box .boxRight table td a span{
    font-size: 1rem;
}
.rn_case1 {
    background: #f8f8f8;
}
html {
    font-size: 16px;
}
.pd1 .Cit h2 {
    max-width: 960px;
}
.pd1 {
    padding: 62px 0 30px;
}
.pd1 .ev {
    display: block;
    padding: 83px 0 0px;
    position: relative;
    margin-bottom: 123px;
}
.pd1 .ev:nth-of-type(even) .wrap {
    flex-direction: row-reverse;
}
.pd1 .ev:nth-of-type(even) .intr {
    padding-left: 5%;
    padding-right: 0;
}
.pd1 .ev:nth-of-type(even)::after {
    left: auto;
    right: 0;
}
.pd1-wrap {
    padding: 40px 0 0;
}
.pd1 .ev::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 74%;
    height: 100%;
    background: #F8F8F8;
    z-index: -1;
    transition: all ease .8s;
    border-radius:40px;
}
.pd1 .ev:hover::after {
    width: 88%;
    background: #eaeaea;
}
.pd1 .ev:nth-of-type(even)::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.pd1 .ev:nth-of-type(odd)::after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.pd1 .ev .intr {
    width: 37%;
    padding-right: 5%;
}
.pd1 .ev .pic {
    width: 50%;
}
.pd1 .ev .pic img {
    width: 100%;
}
.pd1 .ev h2 {
    font-size: 30px;
    color: var(--color);
}
.pd1 .ev h2::after {
    content: '';
    display: block;
    width: 37px;
    height: 6px;
    background: #D5D5D5;
    margin: 15px 0 20px;
}
.pd1 .ev p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    text-align: justify;
}
.pd2 {
    /*  padding: 40px 0 ;*/
    /*  background: #F5F7FA;*/
    overflow-x: hidden;
    overflow-y: auto;
}
.pd2 .content {
    margin-top: 40px;
}
.pd2 .ev {
    width: 24%;
    margin-bottom: 46px;
    transition: all ease .8s;
}
.zhanwei {
    width: 24%;
}
.pd2 .ev .pic {
    width: 100%;
    text-align: center;
    border-radius: 20px;
    padding: 10px;
}
.pd2 .ev .pic img {
    transition: all ease .8s;
    border-radius: 20px;
}
.pd2 .ev:hover .pic img {
    transform: scale(1.1);
}
.pd2 .ev .intr {
    padding: 30px 15px;
    position: relative;
}
.pd2 .ev:hover .intr::after {
    height: 100%;
}
.pd2 .ev .intr h2 {
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    transition: all ease .3s;
    position: relative;
    z-index: 2;
}
.pd2 .ev .intr b {
    display: block;
    width: 32px;
    height: 2px;
    margin: 10px 0;
    transition: all ease .3s;
    background: #9C9999;
    position: relative;
    z-index: 2;
}
.pd2 .ev .intr p {
    font-size: 16px;
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #9C9999;
    transition: all ease .3s;
    position: relative;
    z-index: 2;
}
.pd2 .ev:hover .intr h2::after {
    background: #FFFFFF;
}
.pd2 .ev:hover .intr p {
    color: #fff;
}
@media screen and (max-width: 700px){
    .pd2 .ev{
        width: 50%;
    }
}
.function {
    margin-top: 56px;
}
.filter {
    width: 100%;
}
.filter .flex {
    display: flex;
    margin-bottom: 20px;
}
.filter .flex .name {
    width: 20%;
    margin-right: 5%;
    font-size: 14px;
    
}
.filter .select {
    display: block;
    width: 420px;
    margin-right: 30px;
    position: relative;
    float: left;
}
.filter .select dt {
    border: 1px solid #C9CED6;
    border-radius: 3px 3px 0 0;
    padding-right: 43px !important;
    cursor: pointer;
    position: relative;
}
.filter .select dt span {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.filter .select dt::after {
    content: '';
    display: block;
    width: 43px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url('../images/pr-d.svg') no-repeat center/5px;
    border-left: 1px solid #C9CED6;
}
.filter .select:hover dt::after {
    border-left: none;
    transform: rotate(90deg);
}
.filter .select .down {
    border: 1px solid #C9CED6;
    border-top: none;
    position: absolute;
    left: 1000vw;
    top: 100%;
    width: 100%;
    z-index: 50;
    opacity: 0;
    transition: opacity ease .3s;
}
.filter .select:hover .down {
    opacity: 1;
    left: 0;
}
.filter .select dt,
.filter .select dd {
    padding: 10px 15px;
    font-size: 16px;
    color: #3C444D;
    background: #FFFFFF;
    cursor: pointer;
    transition: all ease .3s;
}
.filter .select dd a {
    display: block;
}
.filter .select dd.on,
.filter .select dd:hover {
    color: #fff;
    background: var(--color);
}
.function form {
    display: block;
    width: 234px;
    height: 43px;
    position: relative;
    float: right;
}
.function form input {
    width: 100%;
    height: 100%;
    border: none;
    color: #CFCFCF;
    padding: 10px 40px 10px 15px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.07);
}
.function form input::placeholder {
    color: #CFCFCF;
}
.function form button {
    position: absolute;
    width: 43px;
    height: 100%;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
}
.inner-page .flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-xc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.flex-xb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-xend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.flex-yc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.flex-xc-yc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.flex-column {
    flex-direction: column;
}
.Cmore {
    font-size: 16px;
    color: #FFFFFF;
    background: var(--color);
    padding: 0 30px;
    width: max-content;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 56px;
    cursor: pointer;
    transition: all ease .3s;
    margin-top: 30px;
}
.Cmore span {
    white-space: nowrap
}
.Cmore:hover {
    opacity: 0.8;
}
.Cmore img {
    margin-right: 5px;
}
.rn_about2 {
    background: #F8F8F8;
}
.rn_about2 > .box .boxLeft {
    width: 34rem;
}
.rn_about2 > .box .boxLeft .content1 {
    font-size: 1.25rem;
    color: #666;
    margin-top: 1.375rem;
}
.rn_about2 > .box .boxLeft .content2 {
    font-size: 6.75rem;
    color: #999;
    margin-top: 10rem;
}
.rn_about2 > .box .boxRight {
    position: relative;
    width: calc(100% - 34rem);
    box-sizing: border-box;
    padding-right: 18rem;
}
.rn_about2 > .box .boxRight .banner .swiper-container {
    height: 35.5rem;
}
.rn_about2 > .box .boxRight .banner .swiper-slide .item {
    height: 35.5rem;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 10px;
}
.rn_about2 > .box .boxRight .banner .swiper-slide .item::-webkit-scrollbar {
    width: 1px;
    height: 2px;
}
.rn_about2 > .box .boxRight .banner .swiper-slide .item::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.5);
}
.rn_about2 > .box .boxRight .banner .swiper-slide .item::-webkit-scrollbar-track {
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
}
.rn_about2 > .box .boxRight .banner .swiper-slide div h5 {
    font-size: 1.25rem;
    color: #000;
    
    margin: 1rem 0;
}
.rn_about2 > .box .boxRight .banner .swiper-slide div p {
    margin: 1.6rem 0;
    position: relative;
    font-size: 1rem;
    color: #666;
    line-height: 1.875rem;
    padding-left: 1.375rem;
}
.rn_about2 > .box .boxRight .banner .swiper-slide div p span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666;
    position: absolute;
    left: 0;
    top: 0.75rem;
}
.rn_about2 > .box .boxRight .banner1 {
    position: absolute;
    right: 0;
    height: 33.125rem;
    transform: translateY(-50%);
    top: 50%;
}
.rn_about2 > .box .boxRight .banner1 .swiper-container {
    height: 100%;
    padding-right: 5px;
    z-index: 2;
}
.rn_about2 > .box .boxRight .banner1 .swiper-container .swiper-slide {
    display: flex;
    align-items: center;
}
.rn_about2 > .box .boxRight .banner1 .swiper-container .item {
    font-size: 1rem;
    color: #999;
    
    cursor: pointer;
}
.rn_about2 > .box .boxRight .banner1 .swiper-container .item span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color);
    position: relative;
    top: -3px;
    margin-left: 0.8125rem;
    opacity: 0;
    transition: 0.4s;
}
.rn_about2 > .box .boxRight .banner1 .swiper-container .item font {
    display: inline-block;
    width: 80px;
    text-align: right;
    transition: 0.4s;
}
.rn_about2 > .box .boxRight .banner1 .swiper-container .swiper-slide-thumb-active .item font {
    font-size: 1.125rem;
    
    color: var(--color);
}
.rn_about2 > .box .boxRight .banner1 .swiper-container .swiper-slide-thumb-active .item span {
    opacity: 1;
}
.rn_about2 > .box .boxRight .banner1 .xian {
    position: absolute;
    right: 7px;
    top: 0;
    height: 100%;
    overflow: hidden;
}
.rn_about2 > .box .boxRight .banner1 .button p {
    right: 0;
    position: absolute;
}
.rn_about2 > .box .boxRight .banner1 .button p span {
    font-size: 1.125rem;
    transition: 0.4s;
    cursor: pointer;
}
.rn_about2 > .box .boxRight .banner1 .button p span:hover {
    color: var(--color);
}
.rn_about2 > .box .boxRight .banner1 .button .prev {
    top: -1rem;
}
.rn_about2 > .box .boxRight .banner1 .button .next {
    bottom: -1rem;
}
.index_title .box .left {
    font-size: 3rem;
}
.index_title .box .biaoti {
    font-size: 1.25rem;
    color: #666;
    margin-top: 0.75rem;
}
.index_link a {
    font-size: 1rem;
    display: block;
    width: 10rem;
    line-height: 3.4375rem;
    color: #fff;
    background: var(--color);
    text-align: center;
    position: relative;
}
.index_link a img {
    margin-left: 0.625rem;
    position: relative;
    transition: 0.4s;
    right: 0;
}
.index_link a:hover img {
    right: -1rem;
}
.index_link p {
    font-size: 1rem;
    display: block;
    width: 10rem;
    line-height: 3.4375rem;
    color: #fff;
    background: var(--color);
    text-align: center;
    position: relative;
}
.index_link p img {
    margin-left: 0.625rem;
    position: relative;
    transition: 0.4s;
    right: 0;
}
.index_link p:hover img {
    right: -1rem;
}
.w1720 {
    max-width: 1750px;
    padding: 0 15px;
    display: block;
    margin: 0 auto;
}
.p98 {
    padding-top: 6.125rem;
}
.p98_ {
    padding-bottom: 6.125rem;
}
.m60 {
    margin-top: 3.75rem;
}
.p98 {
    padding-top: 98px;
}
.case_three .box ul li .content3 {
    font-size: 1.4rem;
}
.flexBetween {
    display: flex;
    justify-content: space-between;
}
.flexCenter {
    display: flex;
    justify-content: center;
}
.flexStart {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.download_box {
    position: relative;
}
.download_box .box .boxLeft {
    width: 23rem;
}
.download_box .box .boxLeft article {
    position: -webkit-sticky;
    position: sticky;
    top: 84px;
    max-height: 84vh;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}
.download_box .box .boxLeft .item {
    border-bottom: 1px solid #eee;
}
.download_box .box .boxLeft .item .title {
    cursor: pointer;
}
.download_box .box .boxLeft .item .title .left {
    font-size: 1.375rem;
    line-height: 4.375rem;
    color: #000;
}
.download_box .box .boxLeft .item .title .right {
    display: flex;
    align-items: center;
}
.download_box .box .boxLeft .item .title .right span {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #aaaaaa;
    position: relative;
    transition: 0.4s;
}
.download_box .box .boxLeft .item .title .right span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaaaaa;
    transform: rotate(90deg);
    transition: 0.4s;
}
.download_box .box .boxLeft .item .title .right.on span::after {
    transform: rotate(0deg);
}
.download_box .box .boxLeft .item .item_select {
    display: none;
}
.download_box .box .boxLeft .item .item_select .title_select {
    background: #f8f8f8;
    box-sizing: border-box;
    padding: 0 1.25rem;
    cursor: pointer;
}
.download_box .box .boxLeft .item .item_select_box.active .title_select .left{
    color: var(--color);
}
.download_box .box .boxLeft .item .item_select_box.active .title_select .right span{
    background: var(--color);
}
.download_box .box .boxLeft .item .item_select_box.active .title_select .right span::after{
    background: var(--color);
}
.download_box .box .boxLeft .item .item_select .title_select .left {
    font-size: 1.125rem;
    line-height: 4.375rem;
}
.download_box .box .boxLeft .item .item_select .title_select .right {
    display: flex;
    align-items: center;
}
.download_box .box .boxLeft .item .item_select .title_select .right span {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #aaaaaa;
    position: relative;
    transition: 0.4s;
}
.download_box .box .boxLeft .item .item_select .title_select .right span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaaaaa;
    transform: rotate(90deg);
    transition: 0.4s;
}
.download_box .box .boxLeft .item .item_select .title_select .right.on span::after {
    transform: rotate(0deg);
}
.download_box .box .boxLeft .item .item_select ul {
    display: none;
    box-sizing: border-box;
    padding: 1.25rem 1.25rem;
}
.download_box .box .boxLeft .item .item_select ul li {
    line-height: 3.125rem;
}
.download_box .box .boxLeft .item .item_select ul li a {
    display: block;
    font-size: 1.125rem;
    color: #666;
    display: inline-block;
    transition: 0.4s;
}
.download_box .box .boxLeft .item .item_select ul li a span {
    transition: 0.4s;
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 1.25rem;
    vertical-align: middle;
}
.download_box .box .boxLeft .item .item_select ul li a:hover {
    color: var(--color);
}
.download_box .box .boxLeft .item .item_select ul li a:hover span {
    background: var(--color);
}
.download_box .box .boxLeft .item .item_select ul li.active a {
    color: var(--color);
}
.download_box .box .boxLeft .item .item_select ul li.active a span {
    background: var(--color);
}
.download_box .box .boxLeft .item .item_select .item_select_box {
    border-bottom: 1px solid #eee;
}
.download_box .box .boxLeft .item .item_select .item_select_box:last-child {
    border: 0;
}
.download_box .box .boxLeft .item .item_select .item_select_box.active ul {
    display: block;
}
.download_box .box .boxLeft .item.active .title .left {
    color: var(--color);
}
.download_box .box .boxLeft .item.active .title .right span {
    background: var(--color);
}
.download_box .box .boxLeft .item.active .title .right span::after {
    background: var(--color);
}
.download_box .box .boxLeft .item.active .item_select {
    display: block;
}
.download_box .box .boxRight {
    width: calc(100% - 27rem);
}
.download_box .box .boxRight .boxTop {
    border: 1px solid #eee;
    border-top: 0;
    padding: 3.75rem 3.125rem 2.5rem;
}
.download_box .box .boxRight .boxTop .left {
    font-size: 1.875rem;
}
.download_box .box .boxRight .boxTop .right form .search {
    position: relative;
}
.download_box .box .boxRight .boxTop .right form .search > input {
    width: 20.625rem;
    display: block;
    font-size: 1rem;
    color: #666;
    height: 3.125rem;
    border: 0;
    padding: 0 1.875rem;
    background: #f8f8f8;
    box-sizing: border-box;
}
.download_box .box .boxRight .boxTop .right form .search p {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}
.download_box .box .boxRight .boxTop .right form .search p input {
    display: none;
}
.download_box .box .boxRight .boxBottom .item {
    border: 1px solid #eee;
    border-top: 0;
}
.download_box .box .boxRight .boxBottom .item a {
    padding: 1.875rem 3.125rem;
}
.download_box .box .boxRight .boxBottom .item a .left div {
    font-size: 1.5rem;
    color: #000;
}
.download_box .box .boxRight .boxBottom .item a .left p {
    font-size: 1rem;
    color: #999;
    margin-top: 0.625rem;
}
.download_box .box .boxRight .boxBottom .item a .right p {
    font-size: 1rem;
    color: var(--color);
    
    width: 10.375rem;
    text-align: center;
    line-height: 3.25rem;
    border: 1px solid var(--color);
}
.download_box .box .boxRight .boxBottom .item a .right p img {
    margin-right: 0.3125rem;
}
.download_box .box .boxRight .boxBottom .item a .right p .img2 {
    display: none;
}
.download_box .box .boxRight .boxBottom .item a:hover .right p {
    background: var(--color);
    color: #fff;
}
.download_box .box .boxRight .boxBottom .item a:hover .right p .img1 {
    display: none;
}
.download_box .box .boxRight .boxBottom .item a:hover .right p .img2 {
    display: inline-block;
}
.download_box .box .boxRight .index_page {
    margin-top: 4rem;
}
#header .navChild .slide li img{width: auto;}
.prodet-page .product-box .prodet-2 .ret table.nohtml td{ border: 0px; background: #fff;}
@media screen and (max-width: 700px){
    #index-body .init-3 .left {
        position: static;
    }
    .about2-page .about-1 .text span.h3{
        font-size: 28px;
    }
    .rn_about2 {
        display: none;
    }
    .flex-yc {
        flex-wrap: wrap;
    }
    .pd1 .ev .intr {
        width: 100%;
        padding-right: 0;
    }
    .pd1 .ev .pic {
        width: 100%;
        margin-top: 20px;
    }
    .pd1 .ev h2 {
        font-size: 24px;
    }
    .Cmore {
        font-size: 14px;
        height: 40px;
        padding: 0 20px;
    }
    .pd2 .ev {
        width: 100%;
    }
    .filter .select {
        max-width: 100%;
    }
    .download_box .box .boxRight .boxTop .right {
        display: none;
    }
    table {
        white-space: nowrap;
    }
    table img {
        min-width: 30vw;
    }
}
.patent-top {
    padding: 44.8px 0 33.6px;
    align-items: self-start;
}
.patent-top .list1-left {
    flex: 0 0 auto;
}
.patent-top .title-cn {
    font-size: 60px;
    line-height: 1;
    color: #333;
}
.patent-top .title-en {
    text-transform: uppercase;
}
.patent-top .title-en {
    font-size: 30px;
    line-height: 1;
    color: #c5c5c5;
    margin-top: 8px;
}
.patent-top .list1-right {
    flex: 0 0 920px;
    margin-top: 20px;
}
.patent-top .nums-wrap {
    justify-content: left;
}
.patent-top .right-title {
    color: #333;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.patent-top .nums-wrap {
    padding: 40px 0;
}
.patent-top .num-item {
    text-align: center;
    flex: 0 0 auto;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #dbdbdb;
}
.patent-top .num0 {
    display: block;
    font-size: 40px;
    line-height: 1;
    color: #333;
    margin-bottom: 15px;
    
}
.patent-top .num-txt {
    color: #888;
    font-size: 14px;
    line-height: 1;
    display: block;
}
.patent-top .num-item:last-child {
    border-right: none;
    margin-right: 0;
}
.patent-top .right-detail {
    color: #888;
    font-size: 14px;
    line-height: 2;
}
@keyframes bounce-up-data-v-7e3caf58
{
    10% {
        transform: rotate(20deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(5deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}
.hu_h3 {font-size: 44px;color: #333333;}
.hu_p {font-size: 18px;color: #666666;line-height: 30px;}
@media screen and (max-width: 1600px){
    .hu_h3 {
        font-size: 36px;
    }
}
@media only screen and (max-width: 768px){
    .hu_h3 {
        font-size: 26px;
    }
}
/* aft */
.aft01 {padding: 120px 0 100px; background: url(../images/aft01_bg.jpg);background-size: cover;position: relative;overflow: hidden;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01  h4 {    font-size: 30px; color: #333333; margin: 16px 0 28px; }
.aft01 .box {display: flex;    margin-bottom: 60px;}
.aft01 .box .min {width: 350px;height: 350px;border-radius: 50%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01 .box .min:nth-of-type(1) {transition: 0.5s; background-color: rgb(71 110 236);position: relative;z-index: 1;left: 0px;}
.aft01 .box .min:nth-of-type(2) {transition: 0.5s; background-color: rgb(36 36 36 / 90%); margin-left: -42px;position: relative;right: 0px;}
.aft01 .box:hover .min:nth-of-type(1){left: 308px;}
.aft01 .box:hover .min:nth-of-type(2){right: 308px;}
.aft01 .box .min  h5 {font-size: 20px;margin-bottom: 30px;color: #fff;}
.aft01 .box .min  h6 {font-size: 24px;color: #fff;margin-bottom: 50px;text-align: center;}
.aft01 .box .min  img {width: 42px;}
.aft01 p {font-size: 20px;color: #333333;}
.aft02 {padding: 160px 0 120px;position: relative;overflow: hidden;}
.aft02 .bg_fix {position: absolute;top: 0px;left: 0px;width: 100%;height: 690px;}
.aft02 .bg_fix::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); position: absolute; left: 0; top: 0; }
.aft02 .bg_fix img {height: 100%;width: 100%;object-fit: cover;}
.aft02 .top {display: flex;justify-content: center;align-items: center;flex-direction: column;margin-bottom: 47px;    z-index: 1; position: relative;}
.aft02 .top .hu_h3 {color: #fff;}
.aft02 .top  p {font-size: 18px;line-height: 34px;text-align: center;color: #fff;margin-top: 10px;}
.aft02 .top .line {height: 75px;width: 1px;background-color: rgba(255,255,255,0.4);margin: 28px 0 ;position: relative;}
.aft02 .top .line::after {content: "";  width: 7px; height: 7px; background-color: #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 0px; animation: 2s linear 0.5s infinite hua2;}
@keyframes hua2 { from { top: 0%; } to { top: 95%; } }
.aft02 .top h4 {font-size: 30px;color: #fff;}
.aft02 .botF {padding: 0 90px;position: relative;}
.aft02 .botF .fa {    background-image: none; width: auto; height: auto; margin: 0; padding: 0; font-size: 74px; color: #cbcbcb; outline: none;}
.aft02 .botF .fa:hover {color: var(--color);;}
.aft02 .bot {position: relative;overflow: hidden;margin: auto;}
.aft02 .bot .box {    background-color: #fff; padding: 50px 0; border-radius: 12px; box-shadow: 0px 5px 15px rgb(102 102 102 / 30%); display: flex; justify-content: center; align-items: center; flex-direction: column;}
.aft02 .bot .box  .icon {border-radius: 50%; position: relative; height: 111px; display: flex;justify-content: center;align-items: center; width: 111px;}
.aft02 .bot .box:hover  .icon::before {   animation: img01anime 10s 0s linear infinite; }
.aft02 .bot .box:hover  .icon::after{  animation: img02anime 10s 0s linear infinite;}
.aft02 .bot .box  .icon::before {   content: ""; position: absolute; width: 120%; height: 120%; border-radius: 50%;  border: 1.6px dashed #a5cf6b;}
.aft02 .bot .box  .icon::after{ content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%;  border: 1.6px dashed #a5cf6b;}
@keyframes img01anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
@keyframes img02anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(-360deg);}
}
.aft02 .bot .box  .icon img {width: 56px;transition: 0s;}
.aft02 .bot .box h4 {font-size: 30px;color: #333333;margin-bottom: 5px;    margin-top: 54px;}
.aft02 .bot .box h5 {        width: 239px; font-size: 18px; position: relative; color: #666666; text-align: center; line-height: 26px; height: 76px;}
.aft02 .bot .box h5::after {content: "";position: absolute;width: 20px;height: 4px;background-color: var(--color);left: 50%;transform: translateX(-50%);bottom: 8px;}
.aft02 .bot .box p{padding:0px 40px; font-size: 17px;min-height: 200px}
.aft02 .bot .box:hover h5::after {background-color: #fff;}
.aft02 .bot .box:hover h4,.aft02 .bot .box:hover h5,.aft02 .bot .box:hover p{color: #fff;}
.aft02 .bot .box:hover  .icon img {filter: grayscale(10) brightness(10);}
.aft02 .bot .box:hover  .icon,.aft02 .bot .box:hover  .icon::before,.aft02 .bot .box:hover  .icon::after {border-color: #fff;}
.aft02 .bot .box:hover {background-color: var(--color);}
.aft02 .bot .aft02Swiper {width: 1200px;margin: auto;}
.aft02 .bot  {width: 1242px;margin: auto;    padding: 22px 0;}
.aft03 {padding-bottom: 160px;position: relative;overflow: hidden;}
.aft03 .icenter2 {display: flex;justify-content: space-between;align-items:center;}
.aft03 .icenter2 .le {overflow: hidden;position: relative;width: 40%;    height: 695px;}
.aft03 .icenter2 .le::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.5); content: ''; -webkit-transition: -webkit-transform .6s; transition: transform .6s; -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); z-index: 1; }
.aft03 .icenter2 .le:hover::before { -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); }
.aft03 .icenter2 .le img{height: 100%;}
.aft03 .icenter2 .le:hover img {transform: scale(1.1);}
.aft03 .icenter2 .ri {width: 50%;}
.aft03 .icenter2 .ri ul {margin: 20px 0 0px;}
.aft03 .icenter2 .ri ul li {position: relative;padding-left: 15px;font-size: 18px;color: #666666;line-height: 30px;}
.aft03 .icenter2 .ri ul li::before {    width: 5px; height: 5px; border-radius: 50%; background-color: #666666; position: absolute; left: 0px; top: 13px; content: "";}
.aft03 dl dd{ padding-top: 60px;  display: flex;align-items: center;padding-bottom: 20px;border-bottom: 1px solid #d5d5d5;}
.aft03 dl dd .icon {width: 86px;margin-right: 58px;}
.aft03 dl dd .text {}
.aft03 dl dd .text h4 {    position: relative; padding-bottom: 0px; font-size: 24px; color: #333333; width: fit-content; margin-bottom: 10px;}
.aft03 dl dd .text h4 strong {font-size: 70px;}
.aft03 dl dd .text  p {font-size: 18px;color: #666666;}
.aft04 {background: url(../images/aft04_bg.jpg);background-size: cover;position: relative;overflow: hidden;background-attachment: fixed;padding: 130px 0 180px;}
.aft04  .icenter2 {position: relative; z-index: 1;}
.aft04::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(239, 241, 247, 0.65); position: absolute; left: 0; top: 0; }
.aft04 .hu_h3 {padding-left: 42px;}
.aft04 dl {margin-top: 50px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2;}
.aft04 dl dd {width: 48%;padding-left: 42px;padding-bottom: 42px;box-sizing: border-box;display: flex;align-items: center;position: relative;    justify-content: space-between;}
.aft04 dl dd .bg {position: absolute; width: 127px;left: 0px;bottom: 0px;transition: 0.5s;}
.aft04 dl dd:hover .bg {left: 30px;bottom: 30px;}
.aft04 dl dd .le {width: 38.5%;}
.aft04 dl dd .ri {width: 51%;}
.aft04 dl dd .ri .name {font-size: 20px;color: #333333;width: 156px;height: 43px;border: 1px solid #d3d3d4;display: flex;justify-content: center;align-items: center;    background-color: #fff;}
.aft04 dl dd:hover .ri .name {background-color: #cd161d;color: #fff;}
.aft04 dl dd .ri .number{margin-top: 78px;}
.aft04 dl dd .ri .number .t {display: flex;align-items: center; margin-bottom: 17px; }
.aft04 dl dd .ri .number .t .icon {width: 65px;    margin-right: 12px;animation: bounce-up-data-v-7e3caf58 1.5s linear infinite;}
.aft04 dl dd .ri .number .t a {font-size: 40px;color: #cd161d;position: relative;}
.aft04 dl dd .ri .number .t a::after {    content: ""; position: absolute; left: 5px; bottom: -7px; width: 50px; height: 3px; background-color: #cd161d;}
.aft04 dl dd .ri .number span {font-size: 18px;color: #999999;}
@media screen and (max-width:1600px) {
    .aft01 {padding: 100px 0 90px;}
    .aft01 h4 { font-size: 25px; margin: 10px 0 22px; }
    .aft01 .box .min { width: 320px; height: 320px;}
    .aft01 .box:hover .min:nth-of-type(1) { left: 278px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 278px; }
    .aft01 .box .min h5 { font-size: 17px; margin-bottom: 26px; }
    .aft01 .box .min h6 { font-size: 22px; margin-bottom: 44px; }
    .aft01 .box .min img { width: 32px; }
    .aft01 .box { margin-bottom: 38px; }
    .aft02 .top p { font-size: 15px; line-height: 28px; margin-top: 8px; }
    .aft02 .top { margin-bottom: 30px;}
    .aft02 .top h4 { font-size: 24px; }
    .aft02 .top .line { height: 55px; margin: 20px 0; }
    .aft02 .bot .aft02Swiper { width: 1000px; }
    .aft02 .bot { width: 1032px; padding: 22px 0; }
    .aft02 .botF { padding: 0 13px;}
    .aft02 .botF .fa { font-size: 65px; }
    .aft02 .bot .box { padding: 43px 0 105px; box-shadow: 0 0 11px #d8d8d8;}
    .aft02 .bot .box .icon { height: 95px; width: 95px;}
    .aft02 .bot .box .icon img { width: 48px; }
    .aft02 .bot .box h4 { font-size: 26px; margin-bottom: 5px; margin-top: 44px; }
    .aft02 .bot .box h5 { width: 220px; font-size: 15px; line-height: 24px; height: 48px; }
    .aft02 .bot .box h5::after { width: 17px; height: 3px; bottom: -125px; }
    .aft02 .botF .fa-angle-left {left: -18px;}
    .aft02 .botF .fa-angle-right {right: -18px;}
    .aft02 { padding: 115px 0 90px; }
    .aft02 .bg_fix { height: 555px; }
    .aft03 .icenter2 .ri ul li { padding-left: 15px; font-size: 14px; line-height: 24px; }
    .aft03 .icenter2 .ri ul { margin: 16px 0 0px; }
    .aft03 dl dd { padding-top: 34px; padding-bottom: 12px; }
    .aft03 dl dd .icon { width: 74px; margin-right: 50px; }
    .aft03 dl dd .text h4 { font-size: 16px; margin-bottom: 8px; }
    .aft03 dl dd .text h4 strong { font-size: 58px; }
    .aft03 dl dd .text h4::after { height: 4px;}
    .aft03 dl dd .text p { font-size: 15px; }
    .aft03 .icenter2 .le { height: 529px; }
    .aft04 { padding: 100px 0 155px; }
    .aft04 dl dd { padding-left: 36px; padding-bottom: 36px;}
    .aft04 .hu_h3 { padding-left: 36px; }
    .aft04 dl { margin-top: 38px;}
    .aft04 dl dd .ri .number .t .icon { width: 48px; margin-right: 10px;}
    .aft04 dl dd .ri .number .t a { font-size: 30px; }
    .aft04 dl dd .ri .number .t a::after { width: 41px;}
    .aft04 dl dd .ri .number span { font-size: 16px; }
    .aft04 dl dd .ri .name { font-size: 16px; width: 133px; height: 38px;}
    .aft04 dl dd .bg { width: 115px; }
    .aft04 dl dd .ri .number { margin-top: 70px; }
}
@media only screen and (max-width:768px){
    .aft01 { padding: 50px 0; }
    .aft01 h4 { font-size: 22px; margin: 10px 0 22px; }
    .aft01 .box .min {        width: 192px; height: 192px; }
    .aft01 .box .min h5 { font-size: 14px; margin-bottom: 20px; }
    .aft01 .box .min h6 {      font-size: 16px; margin-bottom: 34px; height: 40px; display: flex; align-items: center;}
    .aft01 p { font-size: 16px; }
    .aft01 .box .min:nth-of-type(2) { margin-left: -25px; }
    .aft02 .top p { font-size: 15px; line-height: 26px; margin-top: 8px; }
    .aft02 .top .line { height: 42px; margin: 14px 0;position: relative; }
    .aft02 .top h4 { font-size: 22px; }
    .aft02 .bot { width: 110%; }
    .aft02 .top { margin-bottom: 20px; }
    .aft02 .botF { padding: 0 0px; }
    @keyframes hua2 { from { top: 0%; } to { top: 95%; } }
    .aft02 .bot .aft02Swiper { width: 100%; }
    .aft02 .bot { width: 100%;padding: 20px; }
    .aft02 .botF .fa-angle-left { left: -8px; }
    .aft02 .botF .fa-angle-right{ right: -8px; }
    .aft02 { padding: 80px 0 40px; }
    .aft02 .bg_fix { height: 483px; }
    .aft03 .icenter2 {flex-flow: wrap;}
    .aft03 .icenter2 .le {width: 100%;height: auto;margin-bottom: 20px;}
    .aft03 .icenter2 .ri {width: 100%;}
    .aft03 dl dd .icon { width: 60px; margin-right: 31px; }
    .aft03 { padding-bottom: 50px; }
    .aft04 {    padding: 50px 0 20px; background-attachment: unset;}
    .aft04 .hu_h3 { padding-left: 0px; }
    .aft04 dl { margin-top: 26px; flex-flow: wrap;}
    .aft04 dl dd {     padding-left: 22px; padding-bottom: 22px; width: fit-content; margin-bottom: 30px; }
    .aft04 dl dd .bg {     width: 72px; bottom: 0px; }
    .aft04 dl dd .le .imgbox {    height: 153px; width: 123px;}
    .aft04 dl dd .ri .name { font-size: 14px; width: 114px; height: 33px; }
    .aft04 dl dd .ri .number { margin-top: 38px; }
    .aft04 dl dd .ri .number .t a { font-size: 24px; }
    .aft04 dl dd .ri .number .t .icon { width: 32px; margin-right: 6px; }
    .aft04 dl dd .ri .number span { font-size: 14px; }
    .aft04 dl dd .ri { width: 60%; margin-left: 8%; }
    .aft01 .box:hover .min:nth-of-type(1) { left: 168px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 168px; }
}
.colorf {
    color: #fff;
}
.bgImg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important; }
.poa50 {
    position: absolute;
    left: 50%;
    top: 50%; }
.flexBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
.factory-list ul{
    margin: -15px;
}
.factory-list ul li{
    padding: 15px;
}
.template-1688457679 {
    padding: 100px 0;
}
.template-1688457679 .slide {
    margin-bottom: 75px;
}
.template-1688457679 .slide .left {
    vertical-align: middle;
    position: relative;
}
.template-1688457679 h2.title {
    font-size: 48px;
    color: #242424;
    
    line-height: 1.2;
}
.template-1688457679 h2.title em {
    color: var(--color);
}
.template-1688457679 .text {
    font-size: 18px;
    color: #1b1b1b;
    line-height: 1.8;
    margin-top: .5em;
}
.template-1688457679 .slide .left .img {
    height: 460px;
    background-size: cover;
    background-position: center center;
    display: block;
    border-radius: 20px;
}
.template-1688457679 .slide .right {
    vertical-align: middle;
    padding-left: 5%;
    position: relative;
}
.template-1688457679 .slide .right h3 {
    font-size: 36px;
    
    line-height: 1.2;
}
.template-1688457679 .slide .right .text {
    margin-top: 1.5em;
}
.template-1688457679 .slide:nth-child(even) .left {
    left: 50%;
}
.template-1688457679 .slide:nth-child(even) .right {
    left: -50%;
    padding-left: 0;
    padding-right: 5%;
}
.template-1688457679 .slide:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1700px) {
    .template-1688457679 .slide .right h3 {
        font-size: 32px;
    }
    .template-1688457679 .slide .left .img {
        height: 400px;
    }
    .template-1688457679 .text {
        font-size: 16px;
    }
    .template-1688457679 h2.title {
        font-size: 40px;
    }
}
@media screen and (max-width: 1450px) {
    .template-1688457679 .slide .right h3 {
        font-size: 28px;
    }
    .template-1688457679 h2.title {
        font-size: 34px;
    }
}
@media screen and (max-width: 1250px) {
    .template-1688457679 .slide .right h3 {
        font-size: 24px;
    }
    .template-1688457679 h2.title {
        font-size: 28px;
    }
}
@media screen and (max-width: 1000px) {
    .template-1688457679 .slide .right {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
        left: 0 !important;
    }
    .template-1688457679 .slide .left {
        width: 100%;
        left: 0 !important;
    }
    .template-1688457679 .slide .left .img {
        height: 240px;
    }
    .template-1688457679 .slide {
        margin-bottom: 40px;
    }
    .template-1688457679 h2.title {
        font-size: 24px;
    }
}
@media screen and (max-width: 700px) {
    .template-1688457679 .slide .right h3 {
        font-size: 20px;
    }
    .template-1688457679 .text {
        font-size: 14px;
    }
}
.resources-page .resources_2 {
    background-color: #fafafa;
}
#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;
    border-radius: 25px 0;
    background-color: #123485;
    color: #fff
}
#resources_nav li:nth-child(2) a {
    background-color: #40b5b1
}
#resources_nav li:nth-child(3) a {
    background-color: var(--color)
}
#resources_nav li:nth-child(4) a {
    background-color: #b5b5b5
}
.resources_sidebar {
    padding-top: 50px;
    margin: 0 -30px
}
.resources_sidebar .resources_left {
    width: 70%;
    padding: 0 30px
}
.resources_sidebar .resources_right {
    width: 30%;
    padding: 0 30px
}
.resources_sidebar .resources_right .video_list ul {
    margin: -10px 0
}
.resources_sidebar .resources_right .video_list ul li {
    margin: 0;
    padding: 10px 0
}
.resources_sidebar .resources_right .video_list .slick-arrow {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    text-align: center
}
h2.resources {
    font-weight: 600
}
h2.resources:after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: var(--color);
    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;
    
    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;
    
    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 #eee;
    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: var(--color);
    color: #fff;
    border-radius: 8px
}
.lg-page .lg_box ul {
    margin: -25px -10px
}
.lg-page .lg_box ul li {
    padding: 25px 10px
}
@media screen and (max-width: 1200px) {
    #resources_nav li a {
        width:150px;
        height: 40px;
        line-height: 40px;
        font-size: 16px
    }
    .patent-top .list1-right {
        flex: 0 0 100%;
    }
    .patent-top .title-cn {
        font-size: 40px;
    }
    .developlcB .oplcb .anznee ul li {
        width: auto !important;
        padding: 0 1.5em !important;
    }
    .resources-page .resources_1 h4 {
        font-size: 24px;
    }
    .resources-page .resources_1 li,.pdf_box ul li {
        width: 50% !important;
    }
    .font-30 {
        font-size: 24px;
    }
    .product_catalogue .mml-text .line {
        margin: 10px 0;
    }
}
@media screen and (max-width: 1000px) {
    .productlist-page .content ul li .left{
        width: 100%;
    }
    .productlist-page .content ul li .right{
        width: 100%;
        padding-left: 0;
    }
    .productlist-page .content ul li .left .ev{
        display: block;
        width: 100%;
    }
    .productlist-page .content ul li .left .ev img{
        height: auto;
        padding: 0;
    }
    #resources_nav {
        display:none
    }
    .resources-page .resources_1 li,.pdf_box ul li {
        width: 100% !important;
    }
    .font-30 {
        font-size: 20px;
    }
    .resources-page .resources_1 h4 {
        font-size: 20px;
    }
    table {
        white-space: nowrap;
    }
    .news-page.newsBox .list ul {
        grid-template-columns:1fr 1fr;
    }
    .news-page.newsBox .list ul li {
        width: 100%;
    }
    .patent-top .title-cn {
        font-size: 32px;
    }
    p.huanb {
        width: 100%;
        white-space: normal;
        line-height: 1.8;
    }
    a.lvquanh {
        display: none!important;
    }
    h1.Auxil-h1.font-40.font-bold {
        font-size: 23px;
        line-height: 1.8;
        
    }
    .text.font-16.Auxil-catdes {
        max-height: 400px!important;
        overflow: auto!important;
    }
}
@media screen and (max-width: 700px) {
    .news-page.newsBox .list ul {
        grid-template-columns:1fr;
    }
    .developlcB .oplcb .anznee ul {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
    }
    .developlcB .oplcb .anznee ul li {
        width: 100% !important;
        margin: 0 !important;
    }
    .patent-top .title-cn {
        font-size: 24px;
    }
}
.yfll_img img {
    border-radius: 20px;
}
.lvqu h1 {
    display: inline;
}
p.huanb {
    width: 1265px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hangyezhishi p {
    font-size: 16px;
    line-height: 1.8;
}
.Stick {
    position: fixed;
    right: 20px;
    bottom: 135px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color);
    cursor: pointer;
    z-index: 11111 !important;
}
.Stick i {
    font-size: 24px;
    color: #fff;
}
.probox{background: #fff; margin-bottom: 50px; padding: 50px;}
.probox img{padding: 0px 30px;}
.probox .right {
    padding-left: 50px;
    vertical-align: middle;
    padding-top: 20px;
}
.newproduct-page ul li .right h4 {
    font-size: 30px;
    
}
.newproduct-page ul li .right .content {
    font-size: 18px;
}
.solution-page .ui .right .text{padding: 30px 0px 0px 30px;}
.solution-page .ui .right .text p{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.service01{ padding: 100px 0px;}
.service01 .ui .left{padding-left: 50px; padding-top: 30px;}
.service01 .ui .left .text{ font-size: 16px; line-height: 30px; padding-top: 15px;}
.service01 .ui .right img{    border-radius: 20px;}
.factory .list .img-box img{border-radius: 20px;}
.productlist-page{background: #ededed;}
@media screen and (max-width: 1400px) {
    .solution-page .ui .right .text{
        padding: 0 0 0 30px;
    }
    .service01 .ui .left .text{
        max-height: 260px;
        overflow-y: auto;
        margin-top: 15px;
    }
}
@media screen and (max-width: 1200px) {
    .service01 .ui .right img{
        width: 100%;
        object-fit: cover;
    }
    .service01 .ui .left{
        width: 100%;
        padding-left: 0;
        padding-top: 0;
        margin-top: 60px;
    }
    .service01 .ui .right{
        width: 100%;
    }
    .service01 .ui .left .text{
        max-height: unset;
        overflow-y: unset;
    }
    .solution-page .ui.container .box .left{
        width: 100%;
    }
    .solution-page .ui.container .box .right{
        width: 100%;
        margin-top: 60px;
    }
    .solution-page .ui .right .text{
        padding: 0;
    }
}
@media screen and (max-width: 700px) {
    .newproduct-page ul li .right h4 {
        font-size: 24px;
        line-height: 1.4;
    }
}

.inner-page .sidebar-box:after {
    content: "";
    clear: both;
    width: 100%
}
.inner-page .sidebar-box .sidebar-left {
    width: 29%;
    position: sticky;
    top: 120px
}
.inner-page .sidebar-box .sidebar-left form {
    position: relative
}
.inner-page .sidebar-box .sidebar-left form input[type=text] {
    width: 100%;
    height: 57px;
    border-radius: 72px;
    border: 1px solid #eee;
    padding: 0 28px;
    font-size: 18px;
    color: #000;
    line-height: 1
}
.inner-page .sidebar-box .sidebar-left form input[type=submit] {
    width: 51px;
    height: 60px;
    background: url(../images/icon-search-black.png) no-repeat center center;
    background-size: 20px auto;
    border: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav {
    padding: 38px 20px;
    border: 1px solid #eee;
    margin-top: 30px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    font-family: 'sy';
    font-weight: 700
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav {
    margin-top: 25px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li {
    margin-bottom: 10px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li:last-child {
    margin-bottom: 0
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav>li>a {
    font-weight: 500
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a {
    display: block;
    padding: 18px 45px 18px 20px;
    background: #f1f1f1;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 32px;
    color: #7a7777;
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    border-radius: 10px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li.active>a,.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a:hover {
    color: #fff;
    background-image: linear-gradient(to right, #a5cf6b 30%, #bbdb8e 80%)
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li.active a .fa,.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a:hover .fa {
    color: #fff
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a .fa {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact {
    margin-top: 40px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li {
    padding: 20px 20px 20px 60px;
    margin-bottom: 18px;
    -webkit-box-shadow: 0 0 20px 0 rgba(61,40,40,.05);
    box-shadow: 0 0 6px 0 rgba(61,40,40,11%);
    border-radius: 10px
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:last-child {
    margin-bottom: 0
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:nth-child(1) {
    background: url(../images/p-phone.png) no-repeat 10px center
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:nth-child(2) {
    background: url(../images/p-mail.png) no-repeat 10px center
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:nth-child(3) {
    background: url(../images/p-add.png) no-repeat 10px 20px
}
.inner-page .sidebar-box .sidebar-right {
    width: 71%
}
.product20-page {
    padding: 80px 0
}
.product20-page .product-box {
    padding-left: 34px
}
.product20-page .product-box h1 {
    font-size: 32px;
    padding-bottom: 20px;
    font-weight: 700;
    font-family: 'sy'
}
.product20-page .product-box .product-list {
    margin: 0 -10px;
    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
}
.product20-page .product-box .product-list li {
    padding: 0 10px;
    width: 50%;
    margin-bottom: 40px
}
.product20-page .product-box .product-list li a {
    display: block;
    padding-bottom: 0;
    position: relative
}
.product20-page .product-box .product-list li a:hover .content {
    background: #a5cf6b;
    border: 1px solid transparent
}
.product20-page .product-box .product-list li a:hover .content h2,.product20-page .product-box .product-list li a:hover .content h4 {
    color: #fff
}
.product20-page .product-box .product-list li a:hover .content h4:after {
    width: 100%
}
.product20-page .product-box .product-list li a:hover .content p {
    color: #fff
}
.product20-page .product-box .product-list li a:hover .content p:after {
    background: #fff
}
.product20-page .product-box .product-list li a .pro-img {
    overflow: hidden;
    border: 1px solid #eee
}
.product20-page .product-box .product-list li a .pro-img img {
    width: 100%
}
.product20-page .product-box .product-list li a .content {
    position: relative;
    border: 1px solid #fff;
    background: #fff;
    left: 50%;
    width: 100%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    padding: 30px
}
.product20-page .product-box .product-list li a .content h2 {
    font-size: 24px;
    line-height: 44px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    min-height: 4em
}
.product20-page .product-box .product-list li a .content h2:after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: -5px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s
}
.product20-page .product-box .product-list li a .content p {
    font-size: 16px;
    line-height: 30px;
    color: #22221d;
    position: relative;
    padding: 10px 0
}
.product20-page .product-box .product-list li a .content p:after {
    position: absolute;
    content: "";
    width: 21px;
    height: 1px;
    background: #000;
    left: 0;
    bottom: -3px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s
}
.prodet20-page {
    padding: 20px 0
}
.prodet20-page .det-1 {
    padding: 50px 0 0
}
.prodet20-page .det-1 .grid-box {
    position: relative;
    display: flex;
    flex-wrap: wrap
}
.prodet20-page .det-1 .grid-box .left .ig .big-img {
    width: 100%;
    text-align: center;
    border: 2px solid #e1e1e1
}
.prodet20-page .det-1 .grid-box .left .ig .big-img img {
    width: 100%
}
.prodet20-page .det-1 .grid-box .left .gallery {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-top: 20px
}
.prodet20-page .det-1 .grid-box .left .gallery .slick-track {
    margin-left: 0
}
.prodet20-page .det-1 .grid-box .left .gallery ul {
    margin: -5px
}
.prodet20-page .det-1 .grid-box .left .gallery ul li {
    padding: 5px
}
.prodet20-page .det-1 .grid-box .left .gallery ul li .img {
    text-align: center;
    border: 2px solid #e1e1e1
}
.prodet20-page .det-1 .grid-box .right {
    padding-left: 3%
}
.prodet20-page .det-1 .grid-box .right .text .cat_name {
    color: #a5cf6b
}
.prodet20-page .det-1 .grid-box .right .text h1 {
    font-size: 26px;
    line-height: 1.4;
    color: #1c1c1c;
    margin-bottom: 40px;
    margin-top: 10px;
    font-weight: 700
}
.prodet20-page .det-1 .grid-box .right .text h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700
}
.prodet20-page .det-1 .grid-box .right .text .con {
    font-size: 18px;
    line-height: 32px;
    color: #616161;
    max-height: 386px;
    padding: 5px 20px 5px 0;
    overflow: auto
}
.prodet20-page .det-1 .grid-box .right .text .share {
    display: flex;
    align-items: center;
    margin-top: 30px
}
.prodet20-page .det-1 .grid-box .right .text .share h5 {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px
}
.prodet20-page .det-1 .grid-box .right .text .share ul li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    width: auto;
    color: #666;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 16px
}
.prodet20-page .det-1 .grid-box .right .text .m-link a {
    transition: all .5s
}
.prodet20-page .det-1 .grid-box .right .text .m-link a:hover {
    color: #0060ab
}
/*.prodet20-page .det-1 .grid-box .right .text .more {
    padding: 14px 40px;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    background-image: linear-gradient(to right,#0162af 30%,#5ab6fb 80%);
    margin-top: 40px;
    font-weight: 700;
    font-family: 'sy';
    border-radius: 36px
}
.prodet20-page .det-1 .grid-box .right .text .more:hover {
    background: #000
}
.prodet20-page .det-1 .grid-box .right .text .more .fl {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px
}
.prodet20-page .det-1 .grid-box .right .text .more .fl:before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #0060ab;
    vertical-align: middle
}*/
.prodet20-page .det-2 {
    margin-top: 60px
}
.prodet20-page .det-2 .tabs ul {
    border-bottom: 2px solid #e1e1e1
}
.prodet20-page .det-2 .tabs ul li {
    display: inline-block;
    margin-right: 15px
}
.prodet20-page .det-2 .tabs ul li a {
    position: relative;
    display: inline-block;
    font-size: 36px;
    text-transform: uppercase;
    color: #1c1c1c;
    padding: 8px 24px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-family: 'sy';
    font-weight: 700
}
.prodet20-page .det-2 .tabs ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 2px;
    width: 0;
    background-color: #a5cf6b;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}
.prodet20-page .det-2 .tabs ul li a:hover {
    color: #a5cf6b
}
.prodet20-page .det-2 .tabs ul li.active a:after {
    width: 100%
}
.prodet20-page .det-2 .related {
    margin-top: 20px
}
.prodet20-page .det-2 .related ul li.active {
    display: block
}
.prodet20-page .det-2 .related ul li table {
    width: 100% !important
}
.prodet20-page .det-2 .related ul li table tr td {
    min-width: 120px;
    font-size: 14px
}
.prodet20-page .det-2 .related ul li .con {
    font-size: 16px;
    line-height: 30px;
    color: #616161
}
.prodet20-page .det-3 {
    margin-top: 60px
}
.prodet20-page .det-3 .title h3 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    border-bottom: 2px solid #e1e1e1
}
.prodet20-page .det-3 .title h3 span {
    display: inline-block;
    position: relative;
    padding: 10px 0
}
.prodet20-page .det-3 .title h3 span:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 2px;
    width: 100%;
    background-color: #a5cf6b;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}
.prodet20-page .det-3 .det-3-box ul {
    margin: 0 -15px
}
.prodet20-page .det-3 .det-3-box ul li {
    padding: 0 15px;
    margin-bottom: 30px
}
.prodet20-page .det-3 .det-3-box ul li .ig {
    display: block
}
.prodet20-page .det-3 .det-3-box ul li .ig .img {
    position: relative;
    border: 2px solid #d6d6d6;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}
.prodet20-page .det-3 .det-3-box ul li .ig .img span {
    position: absolute;
    padding: 4px 20px;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 160px;
    height: 42px;
    font-size: 16px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(to right, #a5cf6b 30%, #bbdb8e 80%);
    -webkit-transition: .45s;
    -moz-transition: .45s;
    -ms-transition: .45s;
    -o-transition: .45s;
    transition: .45s;
    opacity: 0;
    border-radius: 30px
}
.prodet20-page .det-3 .det-3-box ul li .ig .img span:hover {
    background-color: #1c1c1c
}
.prodet20-page .det-3 .det-3-box ul li .ig .text {
    text-align: center;
    margin-top: 12px
}
.prodet20-page .det-3 .det-3-box ul li .ig .text h4 {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    color: #1c1c1c;
    padding: 0 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}
.prodet20-page .det-3 .det-3-box ul li .ig:hover .img {
    border-color: #a5cf6b
}
.prodet20-page .det-3 .det-3-box ul li .ig:hover .img span {
    opacity: 1
}
.prodet20-page .det-3 .det-3-box ul li .ig:hover .text h4 {
    color: #a5cf6b
}
.support-page .support-1 .text {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.support-page .support-1 .list li {
  padding: 4% 7%;
  border: 1px solid #e7e7e7;
  background-color: #e8efdd;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  top: 0;
}
.support-page .support-1 .list li i {
  width: 1em;
  height: 1em;
  background-color: #f6f8fa;
}
.support-page .support-1 .list li:hover {
  top: -10px;
}
.application .application-1 {
    padding: 140px 0 110px;
}
.application .application-1 .container .left {
    width: 33%;
}
.application .application-1 .container .left ul li.active {
    background-color: #0c2031;
}
.application .application-1 .container .left ul li.active a h4 {
    color: white;
}
.application .application-1 .container .left ul li {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.application .application-1 .container .left ul li:last-child {
    margin-bottom: 0;
}
.application .application-1 .container .left ul li a {
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
}
.application .application-1 .container .left ul li a .img_box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color);
    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;
}
.application .application-1 .container .left ul li a h4 {
    width: 75%;
    margin-left: 20px;
    line-height: 1.4;
}
.application .application-1 .container .left ul li a i {
    font-size: 24px;
    margin-left: auto;
}
.application .application-1 .container .left .box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.application .application-1 .container .left .box .box-b {
    position: absolute;
    left: 50%;
    bottom: 35px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width:100%;
}
.application .application-1 .container .left .box .box-b h4 {
    color: white;
    text-align: center;
}
.application .application-1 .container .left .box .box-b .text {
    background-color: white;
    padding: 15px 50px;
    border-radius: 20px;
    width: calc(100% - 100px);
    margin: 0 auto;
    text-align: center;
}
.application .application-1 .container .left .box img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.application .application-1 .container .right {
    width: 67%;
    padding-left: 50px;
    margin-top: -10px;
}

.application .application-1 .container .right .imgs ul li {
    width: 48%;
    margin-bottom: 20px;
}
.application .application-1 .container .right .imgs ul li img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.application .application-1 .container .right .faq-content ul li.active .title {
    margin-bottom: 0;
    background-color: var(--color);
    color: white;
}
.application .application-1 .container .right .faq-content ul li.active .title span {
    background-color: #c4dda5;
}
.application .application-1 .container .right .faq-content ul li.active .title span::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}
.application .application-1 .container .right .faq-content ul li.active p {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 30px;
}
.application .application-1 .container .right .faq-content ul li {
    width: 100%;
}
.application .application-1 .container .right .faq-content ul li .title {
    background-color: #f7f7f7;
    border-radius: 5px;
    border: 1px solid var(--color);
    padding: 15px 20px 10px 25px;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.application .application-1 .container .right .faq-content ul li .title h4 {
    width: 90%;
}
.application .application-1 .container .right .faq-content ul li .title:last-child {
    margin-bottom: 0;
}
.application .application-1 .container .right .faq-content ul li .title span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color);
    -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;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}
.application .application-1 .container .right .faq-content ul li .title span::before {
    content: "";
    display: block;
    width: 10px;
    height: 3px;
    background-color: white;
}
.application .application-1 .container .right .faq-content ul li .title span::after {
    content: "";
    display: block;
    width: 10px;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.application .application-1 .container .right .faq-content ul li p {
    padding: 0 135px 0 25px;
    max-height: 0;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .application .application-1 .container .left ul li a {
        height: auto;
        padding: 20px 15px;
    }
    .application .application-1 .container .left ul li a h4 {
        font-size: 16px;
        line-height: 30px;
    }
}
@media (max-width: 1000px) {
    .application .application-1 .container .left {
        width: 100%;
        margin-bottom: 60px;
    }
    .application .application-1 .container .right {
        width: 100%;
        padding-left: 0;
    }
    .application .application-1 {
        padding: 70px 0;
    }
}
@media (max-width: 500px) {
    .application .application-1 .container .right .imgs ul li {
        width: 100%;
        margin: 15px 0;
    }
}
.about-200 {
    position: relative;
    overflow: hidden;
}
.about-200 .swiper{
    padding: 60px 0;
    margin: 0 150px;
}
.about-200 .mk-tt{
    color: #fff;
}
.about-200 .swiper .h6{
    line-height: 2;
    color: #fff;
}

.about-200 .swiper .text{
    line-height: 2;
    padding-right: 20px;
    color: #fff;
}
.about-200 .swiper .swiper-wrapper{
    align-items: flex-end;
}
.about-200 .swiper .swiper-slide .box{
    position: relative;
}
.about-200 .swiper .swiper-slide .box .line{
    display: block;
    height: 1px;
    background: #dcdcdc;
    position: relative;
    width: 100%;
    margin: 20px 0 10px;
}
.about-200 .swiper .swiper-slide .box .line:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color);
    -webkit-transition: 6.5s linear;
    -moz-transition: 6.5s linear;
    transition: 6.5s linear;
}
.about-200 .swiper .swiper-slide .box .line i{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #787878;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-200 .swiper .swiper-slide .box .line i:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}
.about-200 .swiper .swiper-slide.swiper-slide-active .box .line:before {
    width: 100%
}

.about-200 .swiper .swiper-slide.swiper-slide-active .box .line i {
    left: 3px;
    background-color: var(--color)
}

.about-200 .swiper .swiper-slide.swiper-slide-active .box .line i:after {
    opacity: .5
}


.about-200 .zdy-switch>div{
    position: absolute;
    margin-top: -25px;
    background-color: #fff;
}
.about-200 .zdy-switch>div:hover{
    background-color: var(--color);
}
@media (max-width: 1250px) {
    .about-200 .swiper .swiper-slide::after{
        height: 150px;
    }
}

@media (max-width: 1000px) {
    .about-200 .swiper {
        padding: 30px 0;margin: 0 66px;
    }
    .about-200 .swiper .swiper-slide .box {
        padding: 0 10px;
    }
}

@media (max-width: 700px) {
    .about-200 .swiper {
        padding: 20px 0;
    }

}
.zdy-switch {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zdy-switch>div {
    position: static;
    width: 50px;
    height: 50px;
    background-color: rgba(237, 237, 237, 0.1);
    border-radius: 50%;
    margin-top: 0;
    margin-left: 12px;
    margin-right: 12px;
    transition: all 0.5s;
}

.zdy-switch>div::after {
    font-size: 16px;
    color: #b2b2b2;
    transition: all 0.5s;
}

.zdy-switch>div:hover {
    background-color: var(--color);
}

.zdy-switch>div:hover::after {
    color: #fff;
}

.zdy-switch.grey>div {
    background-color: #ededed;
}

.zdy-switch.grey>div:hover {
    background-color: var(--color);
}

/*=========== oem-page start===========*/
.oem-page .oem-1 .mk-tt {
    line-height: 1.5;
}

.oem-page .oem-1 .mk-desc {
    max-width: 77%;
    margin-left: auto;
    margin-right: auto;
}

.oem-page .oem-1 .zs-list {
    position: relative;
}

.oem-page .oem-1 .zs-list .imgbox {
    border-radius: 20px;
    overflow: hidden;
}

.oem-page .oem-1 .zs-list .imgbox img {
    min-height: 300px;
    object-fit: cover;
}

.oem-page .oem-1 .zs-list ul {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 35px 0;
    width: 100%;
    background-color: rgba(0, 3, 24, 0.7);
    border-radius: 0 0 20px 20px;
}

.oem-page .oem-1 .zs-list ul li {
    padding: 0 75px;
}

.oem-page .oem-2 .strength-list ul li {
    margin-top: 70px;
}

.oem-page .oem-2 .strength-list ul li .box .img-box {
    width: 50%;
    border-radius: 30px;
    overflow: hidden;
}

.oem-page .oem-2 .strength-list ul li .box .img-box img {
    border-radius: 30px;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox {
    background-color: #f4f5f9;
    border-radius: 30px;
    width: calc(50% + 40px);
    margin-left: -40px;
    padding: 90px 6%;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox .tag .line {
    width: 65px;
    height: 1px;
    background-color: #333333;
    display: block;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox .tt {
    line-height: 1.2;
    color: #333333;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox .desc {
    line-height: 1.8;
    max-height: 80px;
    overflow-y: auto;
    font-size: 16px;
}

.oem-page .oem-2 .strength-list ul li:nth-child(odd) .box {
    flex-direction: row-reverse;
}

.oem-page .oem-2 .strength-list ul li:nth-child(odd) .box .txtbox {
    margin-right: -40px;
    margin-left: 0;
}

.oem-page .oem-3 .laboratory-list ul li .box .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.oem-page .oem-4 .mk-desc {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.oem-page .oem-4 .partner-list ul {
    margin: 0 8%;
    position: relative;
    height: 455px;
}

.oem-page .oem-4 .partner-list ul li {
    position: absolute;
    left: 0;
    top: 0;
    animation: fd1 4s linear infinite;
}

.oem-page .oem-4 .partner-list ul li .box {
    border-radius: 50%;
    width: 245px;
    height: 245px;
    background-color: rgba(58, 58, 58, 0.68);
    border: solid 1px rgba(255, 255, 255, 0.932);
}

.oem-page .oem-4 .partner-list ul li.num0 {
    zoom: 0.98;
    left: 0;
    top: 8%;
}

.oem-page .oem-4 .partner-list ul li.num1 {
    zoom: 0.48;
    left: 22%;
    top: 5%;
}

.oem-page .oem-4 .partner-list ul li.num2 {
    zoom: 0.48;
    animation: fd2 4s linear infinite;
    left: 18%;
    top: 52%;
}

.oem-page .oem-4 .partner-list ul li.num3 {
    left: 31%;
    top: 20%;
}

.oem-page .oem-4 .partner-list ul li.num4 {
    zoom: 0.48;
    left: 49%;
    top: 0%;
}

.oem-page .oem-4 .partner-list ul li.num5 {
    left: 56%;
    animation: fd2 4s linear infinite;
    top: 21%;
}

.oem-page .oem-4 .partner-list ul li.num6 {
    zoom: 0.48;
    animation: fd2 4s linear infinite;
    left: 77%;
    top: 52%;
}

.oem-page .oem-4 .partner-list ul li.num7 {
    left: auto;
    right: 0;
    top: 0%;
}

.oem-page .oem-5 .list ul li .box {
    background-color: #f4f5f9;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    transition: all 0.5s;
}

.oem-page .oem-5 .list ul li .box .tt {
    transition: all 0.5s;line-height: 1.2;
    min-height: 48px;
}

.oem-page .oem-5 .list ul li .box img {
    transition: all 0.5s;
}

.oem-page .oem-5 .list ul li .box:hover {
    background-color: var(--color);
}

.oem-page .oem-5 .list ul li .box:hover .tt {
    color: #fff;
}

.oem-page .oem-5 .list ul li .box:hover img {
    filter: brightness(0) invert(1);
}

.oem-page .oem-6 .con {
    border-radius: 30px;
    height: 400px;
    padding: 0 20px;
    text-align: center;
}

.btn-go02 {
    justify-content: center;
    min-width: 176px;
}

.btn-go02::before {
    display: none;
}

.btn-go02:hover {
    background-color: #fff;
}

@keyframes fd1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fd2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1700px) {
    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        padding: 50px 6%;
    }
}

@media (max-width: 1450px) {
    .oem-page .oem-1 .zs-list ul li {
        padding: 0 50px;
    }

    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        padding: 20px 6%;
    }

    .oem-page .oem-2 .strength-list ul li {
        margin-top: 50px;
    }

    .oem-page .oem-4 .partner-list ul {
        zoom: 0.8;
    }
}

@media (max-width: 1250px) {
    .oem-page .oem-1 .zs-list ul li {
        padding: 10px 20px;
    }

    .oem-page .oem-1 .zs-list ul {
        padding: 10px 0px;
    }

    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        padding: 20px 2% 20px 7%;
    }

    .oem-page .oem-2 .strength-list ul li:nth-child(odd) .box .txtbox {
        padding: 20px 7% 20px 2%;
    }

    .oem-page .oem-2 .strength-list ul li {
        margin-top: 40px;
    }

    .oem-page .oem-4 .partner-list ul {
        zoom: 0.6;
    }
}

@media (max-width: 1000px) {
    .oem-page .oem-2 .strength-list ul li {
        margin-top: 30px;
    }

    .oem-page .oem-2 .strength-list ul li .box .img-box {
        width: 100%;
    }

    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .oem-page .oem-2 .strength-list ul li:nth-child(odd) .box .txtbox {
        margin-right: 0;
    }

    .oem-page .oem-4 .partner-list ul {
        margin: 0 0%;
    }

    .oem-page .oem-4 .partner-list ul {
        zoom: 0.45;
    }
}

@media (max-width: 700px) {
    .oem-page .oem-4 .partner-list {
        overflow-x: auto;
    }

    .oem-page .oem-4 .partner-list ul {
        width: 1600px;
    }

    .oem-page .oem-4 .partner-list::-webkit-scrollbar {
        height: 3px;
    }
}

/*=========== oem-page end===========*/
/*=========== odm-page start===========*/
.odm-page .odm-1 .left {
    width: 43%;
}

.odm-page .odm-1 .right {
    width: 50%;
}

.odm-page .odm-1 .img-box {
    border-radius: 20px;
}

.odm-page .odm-2 .con {
    position: relative;
}

.odm-page .odm-2 .con .anniu {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.odm-page .odm-2 .con .anniu .play {
    width: 152px;
    height: 152px;
    background-color: #000000;
    border: solid 1px #ffffff;
    border-radius: 50%;
}

.odm-page .odm-2 .con .anniu p {
    max-width: 722px;
    padding: 0 20px;
}

.odm-page .odm-3 {
    background-color: #f4f5f9;
}

.odm-page .odm-3 .list ul li .box {
    position: relative;
}

.odm-page .odm-3 .list ul li .box .imgbox {
    position: relative;
}

.odm-page .odm-3 .list ul li .box .imgbox img {
    transition: all 0.5s;
}

.odm-page .odm-3 .list ul li .box .imgbox img.cur {
    opacity: 1;
}

.odm-page .odm-3 .list ul li .box .imgbox img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.odm-page .odm-3 .list ul li .box .txtbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.odm-page .odm-3 .list ul li .box .txtbox i {
    width: 92px;
    height: 92px;
    background-color: #83b444;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.odm-page .odm-3 .list ul li .box .txtbox .tt {
    transition: all 0.5s;
}

.odm-page .odm-3 .list ul li .box:hover .imgbox img.cur {
    opacity: 0;
}

.odm-page .odm-3 .list ul li .box:hover .imgbox img.hover {
    opacity: 1;
}

.odm-page .odm-3 .list ul li .box:hover .txtbox i {
    background-color: #000318;
}

.odm-page .odm-3 .list ul li .box:hover .txtbox .tt {
    color: #fff;
}

.odm-page .odm-4 .con {
    border-radius: 30px;
    height: 400px;
    padding: 0 20px;
    text-align: center;
}

@media (max-width: 1000px) {
    .odm-page .odm-1 .left {
        width: 100%;
    }

    .odm-page .odm-1 .right {
        width: 100%;
        margin-top: 5%;
    }

    .odm-page .odm-2 .con .anniu .play {
        zoom: 0.8;
    }
}

@media (max-width: 700px) {
    .odm-page .odm-2 .con>img {
        min-height: 290px;
        object-fit: cover;
    }

    .odm-page .odm-3 .list ul li .box .imgbox img {
        min-height: 202px;
        object-fit: cover;
    }
}

/*=========== odm-page end===========*/
.white {
    color: white;
}

.solution200-page .init-1 {
    padding-top: 210px;
    position: relative;
    z-index: 2;
}
.solution200-page .init-1 .subText {
    font-size: 200px;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: bold;
    z-index: -1;
    color: #f3f3f3;
}
.solution200-page .init-1 .container .tipsTitle {
    position: relative;
    text-align: center;
}
.solution200-page .init-1 .container .tipsDes {
    position: relative;
    margin: auto;
    max-width: 1000px;
    text-align: center;
}
.solution200-page .init-1 .container .imgSub {
    display: block;
    margin: -60px auto 0;
    position: relative;
    z-index: -1;
}
.solution200-page .init-1 .container .desC {
    overflow: hidden;
    -o-background-size: cover;
    background-size: cover;
    text-align: left;
    min-height: 700px;
    color: #fff;
    padding: 10px 90px;
}
.solution200-page .init-1 .container .desC .title {
    font-weight: bold;
}
.solution200-page .init-1 .container .desC .des {
    max-width: 820px;
    margin-top: 24px;
}
.solution200-page .init-2 .container .left {
    width: 58%;
}
.solution200-page .init-2 .container .left img {
    width: 100%;
}
.solution200-page .init-2 .container .right {
    width: 36%;
    margin-left: auto;
}
.solution200-page .init-2 .container .right .des {
    color: #666666;
    margin-top: 24px;
    /*text-indent: 36px;*/
}
.solution200-page .init-3 {
    -o-background-size: cover;
    background-size: cover;
}
.solution200-page .init-3 .container .left {
    width: 36%;
}
.solution200-page .init-3 .container .left .des {
    color: #666666;
    margin-top: 20px;
    /*text-indent: 36px;*/
}
.solution200-page .init-3 .container .right {
    width: 60%;
    margin-left: auto;
}
.solution200-page .init-3 .container .right .rightL {
    width: 49%;
    overflow: hidden;
}
.solution200-page .init-3 .container .right .rightL img {
    display: block;
    max-width: unset;
}
.solution200-page .init-3 .container .right .rightR {
    width: 45%;
    margin-left: auto;
}
.solution200-page .init-3 .container .right .rightR .img1 {
    overflow: hidden;
    height: 290px;
    border-bottom-left-radius: 0;
}
.solution200-page .init-3 .container .right .rightR .img1 img {
    height: 100%;
    max-width: unset;
    display: block;
}
.solution200-page .init-3 .container .right .rightR .img2 {
    margin-top: 50px;
    height: 290px;
    overflow: hidden;
    border-top-left-radius: 0;
}
.solution200-page .init-3 .container .right .rightR .img2 img {
    height: 100%;
    display: block;
    max-width: unset;
}
.solution200-page .init-4 .container .tipsTitle {
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight:bold;
}
.solution200-page .init-4 .container .content {
    margin-top: 90px;
}
.solution200-page .init-4 .container .content ul {
    margin: 0 -45px;
}
.solution200-page .init-4 .container .content ul li {
    width: 25%;
    padding: 0 25px;
}
.solution200-page .init-4 .container .content ul li .box {
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600px;
}
.solution200-page .init-4 .container .content ul li .box .img {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 270px;
    margin: auto;
    display: block;
    margin-top: -110px;
}
.solution200-page .init-4 .container .content ul li .box .img2 {
    display: block;
    width: 52px;
    margin: auto;
    position: relative;
    z-index: 2;
    -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, 0));
}
.solution200-page .init-4 .container .content ul li .box .title {
    margin-top: -40px;
    text-align: center;
    position: relative;
    z-index: 2;
    line-height: 1.8;
    font-weight:bold;
}
.solution200-page .init-4 .container .content ul li .box .des {
    margin-top: 20px;
    color: #666666;
    text-align: center;
}
.solution200-page .init-4 .container .content ul li .box:hover .img2 {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-reflect: below 4px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}
.solution200-page .init-4 .container .content ul li .box:hover .img {
    -webkit-transform: rotateX(36deg);
    -moz-transform: rotateX(36deg);
    transform: rotateX(36deg);
}
.solution200-page .init-5 .container .cont {
    /*border-radius: 20px;*/
    background-color: #f5f5f5;
    padding: 70px 80px;
}
.solution200-page .init-5 .container .cont .tips {
    text-align: center;
    font-weight:bold;
}
.solution200-page .init-5 .container .cont .content {
    margin-top: 20px;
}
.solution200-page .init-5 .container .cont .content form {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.solution200-page .init-5 .container .cont .content form .list {
    margin-top: 12px;
    font-size: 16px;
    line-height: 30px;
}
.solution200-page .init-5 .container .cont .content form .list input,
.solution200-page .init-5 .container .cont .content form .list textarea {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 16px 24px;
}
.solution200-page .init-5 .container .cont .content form .list button {
    border: none;
    min-width: 200px;
}
.solution200-page .init-5 .container .cont .content form .w-66 {
    width: 66.66%;
}
.solution200-page .init-5 .container .cont .content form .w-100 {
    width: 100%;
}
.solution200-page .init-5 .container .cont .content form .btn {
    max-width: 100%;
    margin: 20px auto 0;
    width: 310px;
    background-color: var(--color);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    cursor: pointer;
}
.solution200-page .init-5 .container .cont .content form .btn:hover {
    background-color: #000;
}
@media (max-width: 1800px) {
    .solution200-page .init-1 {
        padding-top: 140px;
    }
    .solution200-page .init-1 .subText {
        font-size: 200px;
    }
}
@media (max-width: 1250px) {
    .solution200-page .init-1 .subText {
        font-size: 100px;
    }
    .solution200-page .init-4 .container .content ul li {
        width: 50%;
        margin-top: 60px;
    }
    .inner-page .sidebar-box .sidebar-right {
        width: 100%;
    }
    .inner-page .sidebar-box .sidebar-left {
        display: none;
    }
    .product20-page .product-box {
        padding-left: 0;
    }
}
@media (max-width: 1000px) {
    .solution200-page .init-1 {
        padding-top: 40px;
    }
    .solution200-page .init-1 .subText {
        display: none;
    }
    .solution200-page .init-1 .container .tipsDes {
        padding-top: 40px;
    }
    .solution200-page .init-1 .container .desC {
        padding: 10px 20px;
    }
    .solution200-page .init-2 .container .left {
        width: 100%;
    }
    .solution200-page .init-2 .container .right {
        width: 100%;
        margin-top: 20px;
    }
    .solution200-page .init-3 .container .left {
        width: 100%;
    }
    .solution200-page .init-3 .container .right {
        width: 100%;
        margin-top: 20px;
    }
    .solution200-page .init-4 .container .content ul {
        margin: 0 -16px;
    }
    .solution200-page .init-4 .container .content ul li {
        padding: 0 16px;
    }
    .solution200-page .init-5 .container .cont {
        padding: 60px 16px;
    }
    #index-body .init-3 .box .slide .left {
        opacity: 1;
    }
    #index-body .init-3 .box .slide .right {
        display: none;
    }
    #index-body .init-3 {
        background-image: unset !important;
        background-color: #222;
    }
    .solution200-page .init-1 .container .desC {
        min-height: auto;
    }
    #banner ul.slick li .content .left {
        max-width: none;
    }
    #banner ul.slick li .content .left span.h2 {
        text-shadow: 0 3px 2px rgba(0, 0, 0, 0.6);
    }
    .contact-page .contact-1 .right .form-wrap .form-box::after {
        display: none;
    }
    .product20-page .product-box .product-list li a .content h2 {
        font-size: 20px;
    }
    .product20-page .product-box .product-list li a .content p {
        font-size: 14px;
    }
    .prodet20-page .det-2 .tabs {
        display: none;
    }
    .prodet20-page .det-2 .related ul li {
        display: block !important;
        margin-top: 20px;
    }
}
@media (max-width: 700px) {
    .solution200-page .init-4 .container .content ul li {
        width: 100%;
    }
    .solution200-page .init-5 .container .cont .content form .list {
        width: 100%;
    }
    .product20-page .product-box .product-list li {
        width: 100%;
    }
    .prodet20-page .det-2 .tabs ul li a,.prodet20-page .det-3 .title h3 {
        font-size: 24px;
    }
    .prodet20-page .det-1 .grid-box .right .text h1 {
        font-size: 20px;
    }
    .prodet20-page .det-3 .det-3-box ul li .ig .text h4 {
        font-size: 16px;
    }
    .aft02 .bot .box .icon {
        zoom: .6;
    }
    .aft02 .bot .box {
        padding: 40px 15px;
    }
    .aft02 .bot .box h4 {
        margin-top: 15px;
    }
    .pc {
        display: none !important;
    }
    #innerMobileBanner~#banner {
        display: none !important;
    }

}
#innerMobileBanner .banner2 .mbx {
    background-color: transparent !important;
}
@media (max-width: 500px) {
    .solution200-page .init-1 .container .tipsDes {
        padding-top: 20px;
    }
    .solution200-page .init-3 .container .right .rightL {
        width: 100%;
    }
    .solution200-page .init-3 .container .right .rightR {
        width: 100%;
        margin-top: 10px;
    }
    .solution200-page .init-3 .container .right .rightR .img2 {
        margin-top: 10px;
        height: auto;
    }
    .solution200-page .init-3 .container .right .rightL img {
        max-width: 100%;
    }
    .solution200-page .init-3 .container .right .rightR .img1 {
        height: auto;
    }
    .solution200-page .init-3 .container .right .rightR .img1 img {
        max-width: 100%;
    }
    .solution200-page .init-3 .container .right .rightR .img2 img {
        width: 100%;
    }
    .solution200-page .init-4 .container .content {
        margin-top: 20px;
    }
    .solution200-page .init-5 .container .cont {
        padding: 40px 16px;
    }
    .solution200-page .init-5 .container .cont .content form .list input,
    .solution200-page .init-5 .container .cont .content form .list textarea {
        padding: 8px 10px;
    }
    .solution200-page .init-5 .container .cont .content form .btn {
        padding: 4px 10px;
    }
}