@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/MicrogrammaD-BoldExte.eot');
  src: url('../fonts/MicrogrammaD-BoldExte.eot?#iefix') format('embedded-opentype'), url('../fonts/MicrogrammaD-BoldExte.woff2') format('woff2'), url('../fonts/MicrogrammaD-BoldExte.woff') format('woff'), url('../fonts/MicrogrammaD-BoldExte.ttf') format('truetype');
  font-weight: bold;
  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-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: 400;
  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;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #2d5194;
  font-weight: 500;
  margin: 0 auto;
}
.container {
  width: 1650px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .nav {
  max-width: 1920px;
  margin: auto;
}
#header .nav .ui.menu {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 21px;
  padding-bottom: 15px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
  position: relative;
}
#header .nav .ui.menu .logo img{
      -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

#header .nav .ui.menu .logo .img2{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
#header.inner .nav .ui.menu .logo .img1,
#header.active .nav .ui.menu .logo .img1{
    opacity: 0;
}
#header.inner .nav .ui.menu .logo .img2,
#header.active .nav .ui.menu .logo .img2{
    opacity: 1;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#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 {
  font-size: 18px;
  margin: 0 25px;
  font-weight: 400;
  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;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header.active .nav .ui.menu .menu-box ul.menu > li > a::after{
    background: black;
}
#header .nav .ui.menu .menu-box ul.menu > li.active > a::after,
#header .nav .ui.menu .menu-box ul.menu > li:hover > a::after {
  width: 100%;
}
#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: 0px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  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 .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .yuy span {
  color: white;
  font-size: 12px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid white;
  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 .yuy ul {
  right: 0;
  left: auto;
}
#header .nav .ui.menu .inquiry {
  cursor: pointer;
}
#header .nav .ui.menu::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
#header.inner .nav .ui.menu::after,
#header.active .nav .ui.menu::after{
    opacity: 0;
}
#header.inner,
#header.active {
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#header.inner .nav .ui.menu .menu-box ul.menu > li,
#header.active .nav .ui.menu .menu-box ul.menu > li {
  color: black;
}
#header.inner .nav .ui.menu .yuy span,
#header.active .nav .ui.menu .yuy span {
  color: black;
  border-color: black;
}
#header.inner .nav .ui.menu .h-search img,
#header.inner .nav .ui.menu .inquiry img,
#header.active .nav .ui.menu .h-search img,
#header.active .nav .ui.menu .inquiry img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
#banner li {
  position: relative;
}
#banner li video{
    display: block;
    width: 100%;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 63%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner li .content .left {
  width: 70%;
  margin: auto;
  color: white;
  padding: 0 30px;
}
#banner li .content .left .center-img {
  width: 100%;
}
#banner li .content .left .center-img img {
  margin: auto;
}
#banner li .content .left h2 {
  line-height: 1.1;
}
.i-title {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.i-title em {
  color: var(--color);
}
.i-title i {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #454442;
}
.i-title i:nth-child(1) {
  left: 0;
  top: 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-top-left-radius: 7px;
}
.i-title i:nth-child(2) {
  right: 0;
  top: 0;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-right-radius: 7px;
}
.i-title i:nth-child(3) {
  left: 0;
  bottom: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-left-radius: 7px;
}
.i-title i:nth-child(4) {
  right: 0;
  bottom: 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-right-radius: 7px;
}
.more {
  font-size: 18px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  background-color: var(--color);
  color: white;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  padding: 0 30px;
}
.more:hover {
  background-color: black;
}
#index-body .i-about {
  background: url(../images/about-bg.png) no-repeat #f8f8f8;
}
#index-body .i-about .content {
  line-height: 1.6;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
#index-body .i-about .content h1 {
  display: inline;
}
#index-body .i-about ul {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
#index-body .i-about ul li {
  text-align: center;
}
#index-body .i-about ul li .num {
  color: var(--color);
}
#index-body .i-about .play {
  cursor: pointer;
}
#index-body .i-application .ui.container {
  width: 100%;
  padding-right: 0;
  padding-left: 7%;
}
#index-body .i-application .top .i-title {
  width: 24%;
}
#index-body .i-application .top .list {
  width: 76%;
}
#index-body .i-application .top .list .slick-list {
  padding-right: 48%;
}
#index-body .i-application .bottom {
  direction: rtl;
}
#index-body .i-application .bottom .slick-list {
  padding-right: 25%;
}
#index-body .i-application .bottom ul li .content {
  direction: ltr;
}
#index-body .i-application ul li .box {
  position: relative;
  border-radius: 20px;
}
#index-body .i-application ul li .box .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .i-application ul li .box .content .img{
    max-width: 164px;
    height: 147px;
}
#index-body .i-application ul li .box .content .img img{
    width: 100%;
}
#index-body .i-application ul li .box .content .title{
    line-height: 1.2;
}
#index-body .i-category {
  background-color: #dddddd;
}
#index-body .i-category .top ul li {
  margin-right: 23px;
}
#index-body .i-category .top ul li a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: white;
  padding: 0 25px;
}
#index-body .i-category .top ul li.active a,
#index-body .i-category .top ul li:hover a {
  background-color: var(--color);
  color: white;
}
#index-body .i-category .top .right .scrollbar {
  height: 10px;
  border-radius: 5px;
  background-color: #4a4a4a;
  width: 190px;
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}
#index-body .i-category .top .right .scrollbar span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#1f3b60), to(#fff));
  background: -webkit-linear-gradient(left, #1f3b60, #fff);
  background: -moz-linear-gradient(left, #1f3b60, #fff);
  background: linear-gradient(to right, #1f3b60, #fff);
  border-radius: inherit;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
#index-body .i-category .box {
  background-color: #f4f6f8;
  border-radius: 20px;
}
#index-body .i-category .box ul li .tag span {
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  background-color: var(--color);
  color: white;
  display: inline-block;
  border-radius: 50%;
}
#index-body .i-category .box ul li .title {
  line-height: 1;
}
#index-body .i-category .box ul li .des {
  line-height: 28px;
  color: rgba(0, 0, 0, 0.7);
}
#index-body .i-category .box ul li .img-box img {
  width: auto;
  margin: auto;
}
#index-body .i-category .box ul li .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  background-color: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-category .box ul li .arrow i {
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-category .box ul li .arrow:hover {
  background-color: black;
}
#index-body .i-category .box ul li .arrow:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .i-init4 .top .left {
  width: 53%;
}
#index-body .i-init4 .top .right {
  width: 47%;
}
#index-body .i-init4 .top .right ul li {
  height: 58px;
  border-radius: 29px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 25px;
  color: white;
  background-color: #000000;
  max-width: 290px;
  padding: 0 20px;
  line-height: 58px;
  cursor: pointer;
}
#index-body .i-init4 .top .right ul li.active,
#index-body .i-init4 .top .right ul li:hover {
  background-color: var(--color);
}
#index-body .i-init4 .list {
  padding: 0 80px;
}
#index-body .i-init4 .list .slick-list {
  padding: 10px 0;
}
#index-body .i-init4 .list ul li a {
  display: block;
  -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
}
#index-body .i-init4 .list ul li a img {
  width: 100%;
}
#index-body .i-news {
  background: url(../images/news-bg.jpg) no-repeat center center / cover;
}
#index-body .i-news ul {
  margin: 0 -90px;
  padding: 0 100px;
}
#index-body .i-news ul li {
  padding: 0 90px;
  text-align: center;
}
#index-body .i-news ul li .h4 {
  font-weight: 600;
  line-height: 1.25;
}
#index-body .i-news ul li .des {
  line-height: 24px;
  color: #3d3d3d;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}
#index-body .i-news ul li .time {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
#index-body .i-news ul li .line {
  width: -webkit-calc(100% - 130px);
  width: -moz-calc(100% - 130px);
  width: calc(100% - 130px);
  margin: auto;
  height: 1px;
  background-color: var(--color);
}
.i-form .box {
  background-color: var(--color);
  color: white;
  position: relative;
  border-radius: 20px;
  padding-left: 31%;
}
.i-form .box .img {
  position: absolute;
  left: 0;
  top: -130px;
  width: 31%;
  padding-left: 40px;
}
.i-form .box form li {
  width: 27%;
}
.i-form .box form li:last-child {
  width: 19%;
}
.i-form .box form input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c2c2c2;
  width: 100%;
  font-size: 18px;
  height: 42px;
}
.i-form .box form input[type="submit"] {
  border: none;
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 21px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.i-form .box form input[type="submit"]:hover {
  background-color: black;
  color: white;
}
.i-form .box form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.i-form .box form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.i-form .box form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.i-form .box form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#footer {
  background: url(../images/footer-bg.png) no-repeat right bottom #1b1b1b;
}
#footer .ui.container {
  padding-left: 75px;
  padding-right: 75px;
}
#footer #ewm {
  width: 125px;
  height: 125px;
  border: 5px solid white;
}
#footer .two ul li {
  font-size: 18px;
  color: #999999;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 15px;
}
#footer .two ul li a {
  position: relative;
}
#footer .two ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#footer .two ul li:hover {
  color: white;
}
#footer .two ul li:hover a::after {
  width: 100%;
}
#footer .three {
  width: 45%;
  position: relative;
}
#footer .three ul li {
  margin-bottom: 50px;
  max-width: 474px;
}
#footer .three ul li span {
  color: white;
}
#footer .three ul li p {
  color: #999999;
}
#footer .share {
  position: absolute;
  right: 0;
  top: 0;
}
#footer .share a {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #375092;
  color: #fff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  margin-left: 20px;
}
#footer .share a:hover {
  background-color: var(--color);
  color: white;
}
#footer .f-copy {
  color: white;
  opacity: 0.5;
  padding: 15px 0;
  margin-top: 125px;
}
#footer .f-copy svg {
  width: auto;
  height: 27px;
  fill: white;
}
@media screen and (max-width: 1700px) {
  #banner li .content .left {
    width: 62%;
  }
  .font-40 {
    font-size: 29px;
  }
  #banner li .content .left .center-img img {
    max-height: 250px;
  }
  #index-body .i-application ul li .box .content .img img {
    max-width: 110px;
  }
  #index-body .i-init4 .top .left {
    width: 40%;
  }
  #index-body .i-init4 .top .right {
    width: 50%;
  }
  .i-form .box .img img {
    width: 87%;
  }
}
@media screen and (max-width: 1450px) {
  .font-40 {
    font-size: 25px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    margin: 0 20px;
  }
  #header .nav .ui.menu .logo img {
    max-width: 250px;
  }
  #index-body .i-application .ui.container {
    padding-left: 4%;
  }
  #index-body .i-init4 .top .right ul li {
    max-width: 250px;
  }
  #index-body .i-init4 .top .right {
    width: 55%;
  }
  #index-body .i-init4 .list {
    padding: 0 40px;
  }
  .i-form .box .img {
    top: -85px;
  }
}
@media screen and (max-width: 1250px) {
  #banner li .content .left h2 {
    width: 100%;
  }
  #banner li .content .left p {
    width: 100%;
    padding: 0;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #banner li .content .left .center-img img {
    max-height: 140px;
  }
  #index-body .i-application .top .list .slick-list {
    padding-right: 30%;
  }
  #index-body .i-application .bottom .slick-list {
    padding-right: 3%;
  }
  #index-body .i-category .top .right {
    margin-top: 20px;
  }
  #index-body .i-init4 .top .left {
    width: 100%;
  }
  #index-body .i-init4 .top .right {
    width: 100%;
  }
  #index-body .i-init4 .top .right ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #index-body .i-news ul li {
    padding: 0 30px;
  }
  #index-body .i-news ul {
    margin: 0 -30px;
  }
  #index-body .i-news ul {
    padding: 0;
  }
  .i-form .box form li {
    width: 50%;
    margin-bottom: 20px;
  }
  .i-form .box form li:last-child {
    width: 34%;
  }
  .i-form .box .img {
    top: 30px;
  }
  #footer .ui.container {
    padding: 0 15px;
  }
  #footer .one {
    width: 20%;
  }
  #footer .f-copy {
    margin-top: 50px;
  }
  /*#index-body .i-application .bottom {
    direction: ltr;
  }*/
}
@media screen and (max-width: 1000px) {
  #banner li .content {
    top: 52%;
  }
  #index-body .i-application .top .i-title {
    width: 100%;
  }
  #index-body .i-application .top .list {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  #index-body .i-application .bottom .slick-list {
    padding-right: 30%;
  }
  #index-body .i-application .bottom {
    padding: 0;
  }
  #footer .share {
    position: relative;
  }
  #index-body .i-category .box ul li .left {
    padding-right: 35px;
  }
}
@media screen and (max-width: 700px) {
  #banner li .content .left p {
    display: none;
  }
  #banner li .content .left .center-img {
    display: none;
  }
  #banner li .content .left h2 {
    font-size: 19px;
  }
  #index-body .i-category .top ul {
    display: none;
  }
  .more {
    font-size: 14px;
    height: 35px;
    line-height: 35px;
  }
  #index-body .i-init4 .top .right ul li {
    width: 45%;
  }
  .i-form .box .img {
    display: none;
  }
  .i-form .box {
    padding-left: 15px;
  }
  #footer .one,
  #footer .two {
    display: none;
  }
  #footer .three {
    width: 100%;
  }
  #footer .three ul li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  #banner li .content .left {
    width: 100%;
  }
  #index-body .i-about ul li {
    width: 50%;
    text-align: left;
  }
  #index-body .i-about ul li:last-child {
    width: 100%;
  }
  #index-body .i-application .top .i-title {
    text-align: center;
  }
  #index-body .i-application .ui.container {
    padding: 0 15px;
  }
  #index-body .i-application .top .list .slick-list {
    padding-right: 0;
  }
  #index-body .i-application .bottom .slick-list {
    padding-right: 0;
  }
  #index-body .i-category .top .right .scrollbar {
    width: 120px;
  }
  #index-body .i-category .box ul li .left {
    width: 100%;
    padding: 0;
  }
  #index-body .i-category .box ul li .right {
    width: 100%;
  }
  #index-body .i-category .box ul li > .flex {
    padding: 15px;
  }
  #index-body .i-category .box ul li .des {
    margin: 20px 0;
  }
  #index-body .i-category .box ul li .title {
    margin-top: 20px;
  }
  #index-body .i-init4 .top .right ul li {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  #index-body .i-news ul li .h4 {
    font-size: 19px;
  }
  .i-form .box form li {
    width: 100%;
  }
  .i-form .box form li:last-child {
    width: 100%;
  }
  #footer .f-copy {
    margin-top: 10px;
  }
}




.bo-ra-20 {
    border-radius: 20px;
}
.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);
}

.zdy-point {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zdy-point .swiper-pagination-bullet {
    width: auto;
    height: auto;
    opacity: 1;
    border: 1px solid transparent;
    background-color: transparent;
}

.zdy-point .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #dbdad7;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 2px;
}

.zdy-point .swiper-pagination-bullet-active {
    border-color: var(--color);
}

.zdy-point .swiper-pagination-bullet-active::after {
    background-color: var(--color);
}

.inner-banner {
    margin-top: 105px;
    overflow: hidden;
}

 

.inner-banner img.ban {
    position: absolute;
    left: 0;
    top: 10px;
}

.inner-banner .mbx {
    color: #666565;
}

.inner-banner .mbx span {
    color: var(--color);
}

.inner-banner .con .line {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #b1b2b2;
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 1250px) {
    .inner-banner {
        margin-top: 60px;
    }
}

/*=========== about page start===========*/
.about-page .about-1 .about-img img {
    border-radius: 20px;
}

.about-page .about-1 .about-txt {
    background-color: #f4f5f9;
    border-radius: 10px;
    width: 85%;
    margin: -5% auto 0;
    position: relative;
    z-index: 1;
}

.about-page .about-1 .about-txt .desc {
    color: #666666;
    line-height: 1.7;
}

.about-page .about-2 {
  position: relative;
  overflow: hidden;
}
.about-page .about-2 .swiper{
    padding: 60px 0;
    margin: 0 150px;
}
.about-page .about-2 .mk-tt{ 
    color: #fff;
}
.about-page .about-2 .swiper .h6{
    line-height: 1.1;
    color: #fff;
    min-height: 83px;
}

.about-page .about-2 .swiper .text{
    line-height: 2;
    padding-right: 20px;
    color: #fff;
    min-height: 130px;
}  
.about-page .about-2 .swiper .swiper-wrapper{
    align-items: flex-end;
}
.about-page .about-2 .swiper .swiper-slide .box{
    position: relative;
}
.about-page .about-2 .swiper .swiper-slide .box .line{
    display: block;
    height: 1px;
    background: #dcdcdc;
    position: relative;
    width: 100%;
    margin: 20px 0 10px;
}
.about-page .about-2 .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-page .about-2 .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-page .about-2 .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-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line:before {
    width: 100%
}

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

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


.about-page .about-2 .zdy-switch>div{
    position: absolute;
    margin-top: -25px;
    background-color: #fff;
}
.about-page .about-2 .zdy-switch>div:hover{
    background-color: var(--color);
}
.about-page .about-3 .brands-list ul li .box {
    background-color: #f4f5f9;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.5s;
}
.about-page .about-3 .brands-list ul li .box .zdy-tt{
    display: block;
    min-height: 67px;
}
.about-page .about-3 .brands-list ul li .box .txtbox .desc {
    height: 100px;
    overflow-y: auto;
    line-height: 1.7;
    transition: all 0.5s;
}

.about-page .about-3 .brands-list ul li .box:hover {
    background-color: var(--color);
}

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

.about-page .about-3 .brands-list ul li .box:hover .desc {
    color: #fff;
}

.about-page .about-3 .brands-list ul li .box:hover .desc::-webkit-scrollbar-thumb {
    background-color: #000;
}

.about-page .about-4 {
    background-color: #f4f5f9;
}

.about-page .about-4 .list {
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0 20% 2.5%;
}

.about-page .about-4 .list ul li {
    padding-top: 130px;
    transition: all 0.5s;
}

.about-page .about-4 .list ul li .box {
    transform-origin: bottom;
    transition: all 0.5s;
}

.about-page .about-4 .list ul li.swiper-slide {
    opacity: 0;
}

.about-page .about-4 .list ul li.swiper-slide-prev .box {
    transform: scale(1.2) translateX(-20px);
}

.about-page .about-4 .list ul li.swiper-slide-next {
    z-index: 9;
}

.about-page .about-4 .list ul li.swiper-slide-next .box {
    transform: scale(1.2) translateX(20px);
}

.about-page .about-4 .list ul li.swiper-slide-active {
    z-index: 10;
}

.about-page .about-4 .list ul li.swiper-slide-active .box {
    transform: scale(1.4);
}

.about-page .about-4 .list .zdy-switch>div {
    position: absolute;
    background-color: #ededed;
}

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

.about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
    left: 13%;
}

.about-page .about-4 .list .zdy-switch>div.swiper-button-next {
    right: 13%;
}

@media (max-width: 1450px) {
    .about-page .about-4 .list {
        padding: 0 10% 2.5%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
        left: 2%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-next {
        right: 2%;
    }
}

@media (max-width: 1250px) {
    .about-page .about-2 .swiper .swiper-slide::after{
        height: 150px;
    }
    .about-page .about-3 .brands-list ul li .box {
        padding: 20px 15px;
    }

    .about-page .about-4 .list {
        padding: 0 0 2.5%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
        left: -9%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-next {
        right: -9%;
    }

    .about-page .about-4 .list ul li.swiper-slide-prev .box {
        transform: none;
    }

    .about-page .about-4 .list ul li.swiper-slide-next .box {
        transform: none;
    }

    .about-page .about-4 .list ul li.swiper-slide-active .box {
        transform: scale(1.2);
    }

    .about-page .about-4 .list ul li {
        padding-top: 70px;
    }
}

@media (max-width: 1000px) {
    .about-page .about-1 .about-txt {
        width: 100%;
        margin-top: 5%;
    }
    .about-page .about-2 .swiper {
        padding: 30px 0;margin: 0 66px;
    }
    .about-page .about-2 .swiper .swiper-slide .box {
        padding: 0 10px;
    }
}

@media (max-width: 700px) {
    .about-page .about-1 .about-img img {
        height: 360px;
        object-fit: cover;
    }
    .about-page .about-2 .swiper {
        padding: 20px 0;
    }

    .about-page .about-4 .list {
        background-image: none !important;
    }

    .about-page .about-4 .list .zdy-switch {
        display: none;
    }

    .about-page .about-4 .list ul li.swiper-slide-active .box {
        transform: none;
    }

    .about-page .about-4 .list ul li {
        padding-top: 0;
    }
}

/*=========== about page end===========*/
/*=========== sustanibility-page start===========*/
.sustanibility-page .sustanibility-1 .img-box {
    border-radius: 20px;
    overflow: hidden;
}

.sustanibility-page .sustanibility-1 .img-box img {
    min-height: 300px;
    object-fit: cover;
}

.sustanibility-page .sustanibility-2 .what {
    background-color: #f4f5f9;
    border-radius: 20px;
}

.sustanibility-page .sustanibility-2 .what .mk-tt {
    color: #333333;
}

.sustanibility-page .sustanibility-2 .what .left {
    width: 40%;
    padding-left: 5%;
}

.sustanibility-page .sustanibility-2 .what .right {
    width: 60%;
    padding-left: 5%;
    padding-right: 5%;
}

.sustanibility-page .sustanibility-2 .what .right ul li {
    padding: 5px 0;
}

.sustanibility-page .sustanibility-2 .what .right ul li .box .top {
    padding: 25px 35px 20px;
    border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}

.sustanibility-page .sustanibility-2 .what .right ul li .box p {
    width: 100%;
    padding: 0 20px;
}

.sustanibility-page .sustanibility-2 .what .right ul li .box .content {
    padding: 25px 35px 40px;
    line-height: 1.7;
    display: none;
}

.sustanibility-page .sustanibility-2 .what .right ul li.active .box {
    background-color: var(--color);
    border-radius: 10px;
}

.sustanibility-page .sustanibility-2 .what .right ul li.active .box .top {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.sustanibility-page .sustanibility-2 .what .right ul li.active .box .tt {
    color: #fff;
}

.sustanibility-page .sustanibility-2 .what .right ul li.active .box .content {
    color: #fff;
}

.sustanibility-page .sustanibility-2 .what .right ul li.active .box span.ico img {
    filter: brightness(0) invert(1);
}

.sustanibility-page .sustanibility-2 .what .right ul li.active .box i {
    color: #fff;
    transform: rotate(90deg);
}

.sustanibility-page .sustanibility-3 .zs-list ul {
    margin: 0 -20px;
}

.sustanibility-page .sustanibility-3 .zs-list ul li {
    width: 50%;
    padding: 0 20px;
}

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

.sustanibility-page .sustanibility-3 .zs-list ul li .box .img-box {
    width: 100%;
    object-fit: cover;
}

.sustanibility-page .sustanibility-3 .zs-list ul li .box .txtbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sustanibility-page .sustanibility-3 .zs-list ul li .box .desc {
    opacity: 0.8;
}

.sustanibility-page .sustanibility-3 .zs-list ul li .box .txtbox01 {
    opacity: 1;
    transition: all 0.5s;
}

.sustanibility-page .sustanibility-3 .zs-list ul li .box .txtbox02 {
    opacity: 0;
    transition: all 0.5s;
}

.sustanibility-page .sustanibility-3 .zs-list ul li .box:hover .txtbox01 {
    opacity: 0;
}

.sustanibility-page .sustanibility-3 .zs-list ul li .box:hover .txtbox02 {
    opacity: 1;
}

@media (max-width: 1250px) {
    .sustanibility-page .sustanibility-2 .what .right ul li .box .top {
        padding: 20px 15px;
    }

    .sustanibility-page .sustanibility-2 .what .right ul li .box .content {
        padding: 20px 15px;
    }
}

@media (max-width: 1000px) {
    .sustanibility-page .sustanibility-2 .what .left {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .sustanibility-page .sustanibility-2 .what .right {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 5%;
    }

    .sustanibility-page .sustanibility-3 .zs-list ul li {
        width: 100%;
        padding: 10px 20px;
    }
}

@media (max-width: 700px) {
    .sustanibility-page .sustanibility-2 .what .right ul li .box .top {
        padding: 10px;
    }

    .sustanibility-page .sustanibility-2 .what .right ul li .box .content {
        padding: 10px;
    }
}

@media (max-width: 500px) {
    .sustanibility-page .sustanibility-3 .zs-list ul li .box:hover .txtbox01 img {
        zoom: 0.85;
    }
}

/*=========== sustanibility-page end===========*/
/*=========== oem-page start===========*/
.mk-tt.white {
    color: #fff;
}
.oem-page .oem-1 .mk-tt {
    line-height: 1.5;
    font-weight: 600;
}

.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;
    font-weight: 600;
}

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

.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);
    overflow: hidden;
}

.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 .slick-current li .box,
.oem-page .oem-5 .list ul li .box:hover {
    background-color: var(--color);
}
.oem-page .oem-5 .list ul .slick-current li .box .tt,
.oem-page .oem-5 .list ul li .box:hover .tt {
    color: #fff;
}
.oem-page .oem-5 .list ul .slick-current li .box img,
.oem-page .oem-5 .list ul li .box:hover img {
    filter: brightness(0) invert(1);
}
.oem-page .oem-5 .bottom{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.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===========*/
/*=========== markets-page start===========*/
.markets-page .markets-1 .mar-navli {
    background-color: #f4f5f9;
    border-radius: 20px;
    overflow: hidden;
}

.markets-page .markets-1 .mar-navli ul li .box {
    padding: 0 20px;
    height: 210px;
    transition: all 0.5s;
}

.markets-page .markets-1 .mar-navli ul li .box img {
    transition: all 0.5s;
}

.markets-page .markets-1 .mar-navli ul li .box .tt {
    transition: all 0.5s;
    text-align: center;
}

.markets-page .markets-1 .mar-navli ul li .box:hover,.markets-page .markets-1 .mar-navli ul li.active .box {
    background-color: var(--color);
}

.markets-page .markets-1 .mar-navli ul li .box:hover .tt,.markets-page .markets-1 .mar-navli ul li.active .box .tt {
    color: #fff;
}

.markets-page .markets-1 .mar-navli ul li .box:hover img ,.markets-page .markets-1 .mar-navli ul li.active .box img{
    filter: brightness(0) invert(1);
}

.markets-page .markets-2 .mar-artli ul li .box {
    background-color: #f4f5f9;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
}

.markets-page .markets-2 .mar-artli ul li .box .img-box {
    border-radius: 10px;
}

.markets-page .markets-2 .mar-artli ul li .box .txtbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
}

.markets-page .markets-2 .mar-artli ul li .box .txtbox .tt {
    padding: 0 10px;
    transition: all 0.5s;
}

.markets-page .markets-2 .mar-artli ul li .box:hover {
    background-color: var(--color);
}

.markets-page .markets-2 .mar-artli ul li .box:hover .tt {
    color: #fff;
}

/*=========== markets-page end===========*/
/*=========== factory-page start===========*/
.factory-page .factory-1 .con {
    position: relative;
}

.factory-page .factory-1 .con .anniu {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 20px;
}

.factory-page .factory-1 .con .anniu .mktt-box {
    margin-top: -80px;
}

.factory-page .factory-1 .con .anniu .mk-desc {
    max-width: 1430px;
    color: rgba(255, 255, 255, 0.7);
}

.factory-page .factory-2 {
    background-color: #f4f5f9;
}

.factory-page .factory-2 .left {
    width: 50%;
    padding-right: 5%;
}

.factory-page .factory-2 .left .datashow ul li {
    width: 50%;
    padding: 10px 0;
}

.factory-page .factory-2 .left .datashow ul li h4 {
    transition: all 0.5s;
}

.factory-page .factory-2 .left .datashow ul li:hover h4 {
    color: var(--color);
}

.factory-page .factory-2 .right {
    width: 50%;
    padding-left: 5%;
}

.factory-page .factory-2 .right .img-box {
    border-radius: 20px;
}

.factory-page .factory-3 .left {
    width: 50%;
    padding-right: 3%;
}

.factory-page .factory-3 .right {
    width: 50%;
    padding-left: 5%;
}

.factory-page .factory-3 .right .btn-go02 {
    border: 1px solid transparent;
}

.factory-page .factory-3 .right .btn-go02:hover {
    border-color: var(--color);
}

.factory-page .factory-4 .brands-list ul li .box {
    background-color: #f4f5f9;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.5s;
}

.factory-page .factory-4 .brands-list ul li .box .txtbox .desc {
    height: 158px;
    overflow-y: auto;
    line-height: 1.7;
    transition: all 0.5s;
}

.factory-page .factory-4 .brands-list ul li .box:hover {
    background-color: var(--color);
}

.factory-page .factory-4 .brands-list ul li .box:hover .tt {
    color: #fff;
}

.factory-page .factory-4 .brands-list ul li .box:hover .desc {
    color: #fff;
}

.factory-page .factory-4 .brands-list ul li .box:hover .desc::-webkit-scrollbar-thumb {
    background-color: #000;
}

.zdy-dots02 ul li {
    width: 93px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: 0;
}

.zdy-dots02 ul li.slick-active {
    background-color: var(--color);
}

@media (max-width: 1250px) {
    .factory-page .factory-4 .brands-list ul li .box {
        padding: 20px 15px;
    }

    .factory-page .factory-1 .con .anniu .mktt-box {
        margin-top: 0;
    }

    .factory-page .factory-1 .con>img {
        min-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 1000px) {
    .factory-page .factory-2 .left {
        width: 100%;
        padding-right: 0;
    }

    .factory-page .factory-2 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 5%;
    }

    .factory-page .factory-3 .left {
        width: 100%;
        padding-right: 0;
    }

    .factory-page .factory-3 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 5%;
    }
}

@media (max-width: 500px) {
    .factory-page .factory-2 .left .datashow ul li {
        width: 100%;
    }
}

/*=========== factory-page end===========*/
/*=========== cnas-page start===========*/
.cnas-page .cnas-1 .left {
    width: 50%;
}

.cnas-page .cnas-1 .right {
    width: 50%;
    padding-left: 9%;
}

.cnas-page .cnas-2 {
    background-color: #f4f5f9;
}

.cnas-page .cnas-2 .mk-desc {
    max-width: 93%;
    margin-left: auto;
    margin-right: auto;
}

.cnas-page .cnas-2 .brands-list ul li .box {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.5s;
}
.cnas-page .cnas-2 .brands-list ul li .box .zdy-tt{
    display: block;
    min-height: 67px;
}
.cnas-page .cnas-2 .brands-list ul li .box .txt{
    max-height: 110px;
    overflow: auto;
}
.cnas-page .cnas-2 .brands-list ul li .box:hover {
    background-color: var(--color);
}
.cnas-page .cnas-2 .brands-list ul li .box:hover .txt,
.cnas-page .cnas-2 .brands-list ul li .box:hover .tt {
    color: #fff;
}

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

    .cnas-page .cnas-1 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 5%;
    }
}

/*=========== cnas-page end===========*/
/*=========== chain-page start===========*/
.chain-page .chain-1 .img-box {
    border-radius: 20px;
    overflow: hidden;
}

.chain-page .chain-1 .img-box img {
    min-height: 300px;
    object-fit: cover;
}

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

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

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

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

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

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

.chain-page .chain-2 .strength-list ul li .box .txtbox .desc {
    line-height: 1.8;
}

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

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

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

.chain-page .chain-3 .process-li {
    padding: 0 10%;
}

.chain-page .chain-3 .process-li .swiper {
    padding: 25px 0;
    margin: 0 -1px;
}

.chain-page .chain-3 .process-li ul li .in {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.chain-page .chain-3 .process-li ul li .box {
    height: 405px;
    padding: 15px;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    padding: 0 20px;
}

.chain-page .chain-3 .process-li ul li .box .num {
    width: 50px;
    height: 50px;
    background-color: #f4f5f9;
    border: solid 1px #cccccc;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all 0.5s;
}

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

.chain-page .chain-3 .process-li ul li .box i img {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}

.chain-page .chain-3 .process-li ul li .box:hover .num {
    background-color: #000318;
    color: var(--color);
}

.chain-page .chain-3 .process-li ul li .box:hover i {
    background-color: #000;
}

.chain-page .chain-3 .process-li ul li .box:hover i img {
    filter: none;
}

.chain-page .chain-3 .process-li ul li .in-yj {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
}

.chain-page .chain-3 .process-li ul li .in-yj.zs {
    left: 0;
    top: 0;
}

.chain-page .chain-3 .process-li ul li .in-yj.ys {
    right: 0;
    top: 0;
    transform: rotate(90deg);
}

.chain-page .chain-3 .process-li ul li .in-yj.yx {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.chain-page .chain-3 .process-li ul li .in-yj.zx {
    left: 0;
    bottom: 0;
    transform: rotate(-90deg);
}

.chain-page .chain-3 .process-li ul li.odd .box {
    border-top: 1px solid #cccccc;
    border-bottom: 0;
}

.chain-page .chain-3 .process-li ul li.odd .in-yj.zs {
    opacity: 1;
}

.chain-page .chain-3 .process-li ul li.odd .in-yj.ys {
    opacity: 1;
}

.chain-page .chain-3 .process-li ul li.even .box {
    border-top: 0;
    border-bottom: 1px solid #cccccc;
}

.chain-page .chain-3 .process-li ul li.even .num {
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.chain-page .chain-3 .process-li ul li.even .in-yj.yx {
    opacity: 1;
}

.chain-page .chain-3 .process-li ul li.even .in-yj.zx {
    opacity: 1;
}

.chain-page .chain-3 .process-li .zdy-switch>div {
    background-color: #fff;
    position: absolute;
    transform: translateY(-50%);
}

.chain-page .chain-3 .process-li .zdy-switch>div:hover {
    background-color: var(--color);
}

.chain-page .oem-6 .con {
    border-radius: 30px;
    height: 400px;
}

@media (max-width: 1000px) {
    .chain-page .chain-2 .strength-list ul li .box .img-box {
        width: 100%;
    }

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

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

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

/*=========== chain-page end===========*/
/*=========== product-yd-pagee start===========*/
.product-yd-page .procate-list.pro-even {
    background-color: #f3f3f3;
}

.product-yd-page .procate-list.pro-odd {
    background-color: #ededed;
}

.product-yd-page .procate-list .box ul {
    margin: 0 -12px;
}

.product-yd-page .procate-list .box ul li {
    width: 25%;
    padding: 12px;
}

.product-yd-page .procate-list .box ul li .ig {
    padding: 8px;
    width: 100%;
}

.product-yd-page .procate-list .box ul li .ig {
    background-color: #85b449;
    position: relative;
}
.product-yd-page .procate-list .box ul li .ig .play1{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background-color: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 10px;
}
.product-yd-page .procate-list .box ul li .ig .play1 img{
    width: 13px;
}
.product-yd-page .procate-list .box ul li .ig .play1::before{
    content: "";
    width: 60%;
    height: 60%;
    position: absolute;
    left: 20%;
    top: 20%;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    z-index: -1;
    pointer-events: none;
}
.product-yd-page .procate-list .box ul li .ig .play1::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    z-index: -1;
    pointer-events: none;
}


.product-yd-page .procate-list .box ul li .ig img {
    margin: auto;
}

.product-yd-page .procate-list .box ul li h4 {
    text-align: center;
    color: #fff;
    padding-top: 0px;
    padding: 20px 10px;
    background: var(--color);
}

.product-yd-page .procate-list .box ul li h4 a {
    display: block;
}
.product-yd-page .procate-list .box ul li h4 .btn-more{
    display: inline-flex;
    background-color:#000423;
    width: 40px;
    height: 40px;
}
.product-yd-page .procate-list .box ul li h4 .btn-more:hover{
    background-color: #fff;
}

.product-yd-page .procate-list .box ul li h4 img {
    margin: 5px auto;
    max-width: 50px;
    filter: invert(1) brightness(40);
}

@media screen and (max-width: 1250px) {
    .product-yd-page .procate-list .box ul li {
        width: 33.3333%;
    }
    .pt-250{
        padding-top: 100px;
    }
}

@media screen and (max-width: 1000px) {
    .product-yd-page .procate-list .box ul li {
        width: 50%;
    }
}

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

    .product-yd-page .procate-list .box ul li {
        width: 100%;
        text-align: center;
    }
}

/*=========== .product-yd-page end===========*/
/*=========== .product-link-page start===========*/
.product-link-page .sidebar-box {
    border-bottom: 1px solid #eee;
}

.inner-page .sidebar-left {
    width: 25%;
}

.inner-page .sidebar-left .box {
    margin-bottom: 30px;
}
.inner-page .sidebar-left .box.contact ul li{
    font-size: 18px;font-weight: 300;

}
.inner-page .sidebar-left .box.contact ul li a{
    color: #666;word-break: break-all;
}
.inner-page .sidebar-left .box:last-child {
    margin-bottom: 0;
}

.inner-page .sidebar-left .box h3 {
    font-size: 26px;
    line-height: 1.8;
    color: var(--color);
    margin-bottom: 10px;
    FONT-WEIGHT: 700;
}

.inner-page .sidebar-left .box ul li {
    font-size: 18px;
    line-height: 2;
    color: #666;
    border-bottom: solid 1px #e5e5e5;
    padding: 3px;
    margin-bottom: 5px;
    width: 80%;
    position: relative;
    font-weight: 400;
}

.inner-page .sidebar-left .box ul li>a {
    padding-right: 20px;
}

.inner-page .sidebar-left .box ul li i {
    position: absolute;
    top: 12px;
    right: 0;
}

.inner-page .sidebar-left .box ul li li {
    width: 100%;
    font-size: 18px;font-weight: 300;
}
.inner-page .sidebar-left .box ul li li li{
    font-size: 16px;font-weight: 300;
}
.inner-page .sidebar-left .box ul li ul li:last-child {
    border-bottom: none;
}

.inner-page .sidebar-left .box ul li a.child:after {
    content: "\f105";
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    right: 0;
    font-size: 16px;
}

.inner-page .sidebar-left .box ul li:hover>a,
.inner-page .sidebar-left .box ul li.active>a {
    color: var(--color);
}

.inner-page .sidebar-left .box ul li ul {
    padding-left: 10px;
    display: none;
}

.inner-page .sidebar-left .box ul li.active a.child {
    color: var(--color);
}

.inner-page .sidebar-left .box ul li.active a.child:after {
    content: "\f107";
}

.inner-page .sidebar-left .box .share ul li a {
    display: block;
    padding: 5px 0;
    position: relative;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.inner-page .sidebar-right {
    width: 75%;
}

.product-page .sidebar-right ul {
    text-align: left;
    margin: -10px;
}

.product-page .sidebar-right ul.sharelist {
    display: flex;
    justify-content: flex-start;
}

.product-page .sidebar-right ul li {
    padding: 10px;
}

.product-page .sidebar-right ul li .box {
    border: solid 1px #97c5a9;
    padding: 10px;
}



.product-page .sidebar-right ul li a.img-box {
    width: 100%;
    display: block;
}

.product-page .sidebar-right ul li a.img-box img {
    width: 100%;
}

.product-page .sidebar-right ul li .content {
    display: block;
    margin-top: 10px;
}

.inner-page.product-link-page .pro-1 {
    background-color: #ffffff;
}

.inner-page.product-link-page .pro-1 .box ul {
    margin: 0 -12px;
}

.inner-page.product-link-page .pro-1 .box ul li {
    width: 25%;
    padding: 12px;
}

.inner-page.product-link-page .pro-1 .box ul li .ig {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 20px;
}

.inner-page.product-link-page .pro-1 .box ul li .ig img {
    margin: auto;
}

.inner-page.product-link-page .pro-1 .box ul li h4 {
    text-align: center;
    color: #383737;
    padding-top: 10px;
    line-height: 1.6;
}

.inner-page.product-link-page .pro-1 .m-page a {
    color: #000;
}

.inner-page.product-link-page .pro-1 .m-page a:hover {
    color: #fff;
    background: var(--color);
}

@media screen and (max-width: 1450px) {
    .inner-page.product-link-page .pro-1 .box ul li {
        width: 33.3333%;
    }
}

@media screen and (max-width: 1000px) {
    .inner-page .sidebar-left {
        display: none;
    }

    .inner-page.product-link-page .pro-1 .box ul li {
        width: 50%;
    }

    .inner-page .sidebar-right {
        width: 100%;
    }
}



@media screen and (max-width: 500px) {
    .inner-page.product-link-page .pro-1 .box ul li {
        width: 100%;
        text-align: center;
    }
}

/*=========== .product-link-page end===========*/
.m-page {
    text-align: center;
    float: none;
    margin: 30px -5px 0;
    background: transparent;
}

.m-page a,
.m-page span {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    font-size: 15px;
    line-height: 36px;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -o-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin: 5px;
}

.m-page span,
.m-page a:hover {
    background: var(--color) none repeat scroll 0 0;
    color: #fff;
}

@media screen and (max-width: 700px) {
    .m-page {
        margin: 15px -5px 0;
    }
}

/*=========== prodet-page start===========*/
.inner-page.prodet-page .pro-1 .grid1 {
    font-size: 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0 20px 0 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left .prev,
.inner-page.prodet-page .pro-1 .grid1 .left .next {
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #525252;
    background-color: #262626;
    cursor: pointer;
    padding: 10px 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left ul li {
    padding: 5px 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left ul li a {
    display: inline-block;
    background-color: #ebeaea;
    padding: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right {
    display: inline-block;
    vertical-align: top;

}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 {
    color: #282828;
    background-color: #fafafa;
    padding: 40px 30px;
    margin-bottom: 15px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
    width: 62%;
    padding: 0;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left span {
    font-size: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left .contact {
    font-size: 16px;
    padding: 60px 0;
    color: #666;
}

/*.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left a {
    display: inline-block;
    font-size: 18px;
    border-radius: 5px;
    color: #fff;
    background-color: var(--color);
    padding: 5px 10px;
}*/

/*.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left a i {
    margin-left: 80px;
}*/

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
    width: 38%;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-2 {
    font-size: 16px;
    background-color: #fff;
    color: #666;
    padding-top: 50px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options{
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options span{
    padding-right: 20px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options span.active{
    color: var(--color);
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret{
    margin-top: 15px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>span{
    display: none;
    border-bottom: 1px solid #ccc;padding-bottom: 8px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-3 {
    font-size: 16px;
    background-color: #fff;
    color: #666;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 {
    background-color: #1c1c1c;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title {
    color: #fff;
    padding: 26px 40px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title h4 {
    font-size: 38px; 
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title span {
    font-size: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form {
    background-color: #2d2d2d;
    padding: 54px 80px 30px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li {
    font-size: 14px;
    padding-bottom: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li h6 {
    text-transform: uppercase;
    color: #bcbcbc;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li p {
    font-size: 16px;
    color: #bcbcbc;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li p span {
    color: var(--color);
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li input {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 10px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li input[type="submit"] {
    display: inherit;
    width: auto;
    font-size: 15px; 
    border: none;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color);
    padding: 20px 36px;
    margin: auto;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li textarea {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 10px;
}

@media screen and (max-width: 1000px) {
    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
        width: 100%;
        margin-top: 5%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left .contact {
        padding: 30px 0;
    }
}

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

    .inner-page.prodet-page .pro-1 .grid1>.left {
        display: none;
    }

    .inner-page.prodet-page .pro-1 .grid1>.right {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options{
        display: none;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>span {
        display: block;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide{
        display: block!important;
        margin: 10px 0;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>div{
        margin-top: 10px;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret {
        margin-top: 0;
    }

}

@media screen and (max-width: 500px) {
    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
        width: 100%;
    }

    .inner-page .sol-form .form,
    .inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form {
        padding: 30px 20px 10px;
    }
}

.con-5 {
    padding: 40px;
    background: #c2c2c2
}

.con-5 ul li {
    padding: 20px;
    text-align: center
}

.con-5 ul li h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0
}

.con-5 ul li {
    font-size: 16px !important;
    line-height: 1.5
}

.con-6 {
    background: #c2c2c2
}

.con-7 table td,
.con-7 table th {
    border: none;
    text-align: center;
    color: #000;
    font-size: 16px
}

.con-7 h2,
.con-7 h1 {
    color: var(--base-color);
    font-weight: 700
}

.con-7 h3 {
    margin: 10px 0
}

/*=========== prodet-page end===========*/
/*=========== news-page start===========*/
.news-page .news-1 .box {
    padding: 3% 5%;
    background-color: var(--color);
    color: white;
}

.news-page .news-1 .box form {
    height: 3.75em;
    border: 1px solid white;
}

.news-page .news-1 .box form input {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 1.8em;
}

.news-page .news-1 .box form input::-webkit-input-placeholder {
    color: white;
}

.news-page .news-1 .box form input:-moz-placeholder {
    color: white;
}

.news-page .news-1 .box form input::-moz-placeholder {
    color: white;
}

.news-page .news-1 .box form input:-ms-input-placeholder {
    color: white;
}

.news-page .news-1 .box form input::placeholder {
    color: white;
}

.news-page .news-1 .box form button {
    width: 5.625em;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: none;
    background-color: transparent;
}

.news-page .news-1 .box form button i {
    font-size: 2em;
}

.news-page .news-2 ul {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

.news-page .news-2 ul li {
    padding: 6% 10%;
    border: 1px solid #ccc;
    background-color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}

.news-page .news-2 ul li:hover {
    -webkit-transform: translate(10px, -10px);
    -moz-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    z-index: 1;
}
/*.news-page .news-2 ul li .h6{
    text-overflow: -o-ellipsis-lastline;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 1;
 -webkit-box-orient: vertical;
}*/


@media screen and (max-width: 1000px) {
      .news-page .news-1 .box i img {
        max-height: 40px;
    }
        .news-page .news-2 ul li {
        padding: 5%;
    }
}
/*=========== news-page end===========*/

.newdet-page h1 {
  line-height: 1.4;
}

.newdet-page .text {
  color: #666;
  line-height: 2;
}
.newdet-page .text h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #83b444;
  font-weight: 600;
}
.newdet-page .text h3 {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  font-weight: 600;
}
.newdet-page .text ol li,.newdet-page .text ul li {
    padding: 0 0 0 10px;
    list-style: square;
    list-style-position: inside;
}
.newdet-page .text strong {
  color: black;
}

/*.newdet-page .text p {
  margin-top: 1.5em;
}*/

.newdet-page .text p:first-child {
  margin-top: 0;
}

.newdet-page .m-link a {
  height: 2em;
  padding: 0 2.5em;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 5px;
}

.newdet-page .m-link a:hover {
  background-color: black;
}

.newdet-page .form input,
.newdet-page .form textarea {
  display: block;
  width: 100%;
  border: 1px solid #bebebe;
  padding: .9em 1.3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.newdet-page .form input::-webkit-input-placeholder,
.newdet-page .form textarea::-webkit-input-placeholder {
  color: black;
}

.newdet-page .form input:-moz-placeholder,
.newdet-page .form textarea:-moz-placeholder {
  color: black;
}

.newdet-page .form input::-moz-placeholder,
.newdet-page .form textarea::-moz-placeholder {
  color: black;
}

.newdet-page .form input:-ms-input-placeholder,
.newdet-page .form textarea:-ms-input-placeholder {
  color: black;
}

.newdet-page .form input::placeholder,
.newdet-page .form textarea::placeholder {
  color: black;
}

.newdet-page .form input:focus,
.newdet-page .form textarea:focus {
  border-color: var(--color);
}

.newdet-page .form textarea {
  height: 230px;
}

.newdet-page .form input[type="submit"] {
  padding: .45em 2em;
  width: auto;
  height: auto;
  border: none;
  margin-left: auto;
  background-color: var(--color);
  color: #fff;
  transition: all 0.5s;
}
.newdet-page .form input[type="submit"]:hover{
    background-color: #000;
}

.inner-page .sidebarLeft {
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
}

.inner-page .sidebarLeft .slide span.h6 {
  padding: 2% 4%;
  border: 1px solid #b1b1b1;
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inner-page .sidebarLeft .slide span.h6.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.inner-page .sidebarLeft .slide ul {
  padding: 6% 4%;
  border: 1px solid #b1b1b1;
  color: #9e9e9e;
  margin: -1px 0;
}

.inner-page .sidebarLeft .slide ul li {
  margin-bottom: 1.2em;
}

.inner-page .sidebarLeft .slide ul li i {
  width: 1.42857143em;
  height: 1.42857143em;
  border-radius: 3px;
  border: 1px solid #9e9e9e;
  margin-right: .5em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.inner-page .sidebarLeft .slide ul li i:before {
  font-size: 1.4em;
  opacity: 0;
}

.inner-page .sidebarLeft .slide ul li.active i:before {
  opacity: 1;
}

.inner-page .sidebarLeft .info {
  background-color: #010731;
  padding: 15% 10%;
  border-radius: 10px;
}
.inner-page .sidebarLeft .info .text{
    color: #fff;
}
.inner-page .sidebarLeft .info .share a i{
    color: #fff;
}
.inner-page .sidebarLeft .nav {
  border: 1px solid #bebebe;
  border-radius: 10px;
}

.inner-page .sidebarLeft .nav span.h6 {
  background-color: var(--color);
  color: white;
  padding: 10px 20px;
  line-height: 1.2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.inner-page .sidebarLeft .nav>ul>li{

}
.inner-page .sidebarLeft .nav ul li {
  border-top: 1px solid #bebebe;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.inner-page .sidebarLeft .nav ul li:first-child {
  border-top: none;
}

.inner-page .sidebarLeft .nav ul li a {
  padding: .8em 20px;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .sidebarLeft .nav ul li a:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .sidebarLeft .nav ul li i {
    position: absolute;
    top: 21px;
    right: 14px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.inner-page .sidebarLeft .nav ul li ul{
    padding-left: 10px;
}
.inner-page .sidebarLeft .nav ul li li{
    font-size: 18px;
    font-weight: 300;
    color: #666;
}
.inner-page .sidebarLeft .nav ul li li li{
    font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .newdet-page h1 {
    width: 100%;
    font-size: 22px;
    line-height: 1.4;
  }
    .inner-page .sidebarLeft {
    display: none;
  }
}


.contact-page .contact-1 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.contact-page .contact-1 .left .text {
  color: rgba(0, 0, 0, 0.8);
}

.contact-page .contact-1 .left .text span {
  color: black;
}

.contact-page .contact-1 .left .text i {
  width: 2.625em;
  height: 2.625em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
}

.contact-page .contact-1 .left .text i:before {
  font-size: 1.2em;
}

.contact-page .contact-1 .right p,
.contact-page .contact-1 .right span {
  display: block;
  margin-bottom: .2em;
  opacity: .8;
}

.contact-page .contact-1 .right p i,
.contact-page .contact-1 .right span i {
  color: var(--color);
}

.contact-page .contact-1 .right input,
.contact-page .contact-1 .right textarea,
.contact-page .contact-1 .right select {
  width: 100%;
  padding: .9em;
  border: none;
  background-color: #f0f1f2;
  font-size: inherit;
  line-height: 1.4;
}
.contact-page .contact-1 .right input[type="submit"]{
    width: 196px;
    background-color: var(--color);
    color: white;
    border-radius: 60px;
}
.contact-page .contact-1 .right input[type="submit"]:hover{
    background-color: #000;color: #fff;
}
.contact-page .contact-1 .right textarea {
  height: 110px;
}

.contact-page .contact-1 .right select {
  padding: 1em;
}

.contact-page .contact-1 .right button {
  width: auto;
  border: none;
}

.contact-page iframe {
  border: none;
  display: block;
}
@media screen and (max-width: 1250px) {

  .contact-page iframe {
    height: 400px;
  }
}
@media screen and (max-width: 1000px){
    .contact-page .contact-1 .left {
    position: static;
  }
}


.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1.33333333em 2.3em;
}

.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  cursor: hand;
  font-size: 1.2em;
  line-height: 1;
}

.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}

.faq-page .faq-1 .list ul li.active {
  background-color: var(--color);
  color: white;
}

.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-page .faq-2 .form form {
  height: 4.375em;
  border-radius: 2.1875em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 3em;
  padding: .8em 2em .8em 3em;
  border: 1px solid #dcdcdc;
  background-color: transparent;
}

.faq-page .faq-2 .form form .logo2 {
  max-width: 60px;
}

.faq-page .faq-2 .form form .logo2 a {
  height: 100%;
}

.faq-page .faq-2 .form form .logo2 a img {
  height: inherit;
}

.faq-page .faq-2 .form form .logo2,
.faq-page .faq-2 .form form button {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq-page .faq-2 .form form button {
  width: 4.375em;
  height: 4.375em;
  border: none;
  color: var(--color);
  background-color: transparent;
}

.faq-page .faq-2 .form form button i {
  font-size: 2em;
}

.faq-page .faq-2 .form form ul {
  width: 100%;
  padding: 0 .5%;
}

.faq-page .faq-2 .form form ul li {
  width: 100%;
}

.faq-page .faq-2 .form form ul li input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .4em 1.2em;
  border-left: 1px solid #d2d2d2;
}

.faq-page .faq-2 .form form ul li:first-child input {
  border-left: none;
}

.faq-page .faq-2 .text a {
  color: var(--color);
  text-decoration: underline;
}
@media screen and (max-width: 700px) {

  .faq-page .faq-2 .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

  .faq-page .faq-2 .form form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .faq-page .faq-2 .form form ul li {
    width: 100%;
    margin: .5em 0;
  }

  .faq-page .faq-2 .form form ul li:first-child input {
    border-left: 1px solid #d2d2d2;
  }

  .faq-page .faq-2 .form form button {
    height: 3em;
    width: 3em;
  }

  .faq-page .faq-2 .form form {
    padding: 1em;
    border-radius: .5em;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .faq-1 .list ul li {
    padding: 5%;
  }
}


.gallery-page .wrap {
  margin: -18px;
}
.gallery-page .wrap li {
  padding: 18px;
}

.gallery-page .wrap li .img-box{
    border-radius: 10px;overflow: hidden;
}

.seoPublic .Auxil-related .list ul li{
    padding: 20px 10px;
}

.gallery-page.partner .wrap li{
    width: 20%;
}
@media screen and (max-width: 1450px) {
    .gallery-page.partner .wrap li{
        width: 25%;
    }
}
@media screen and (max-width: 1000px) {
    .gallery-page.partner .wrap li{
        width: 33.3%;
    }
}
@media screen and (max-width: 700px) {
    .gallery-page.partner .wrap li{
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .gallery-page.partner .wrap li{
        width: 100%;
    }
}

.seoPublic .mk-tt{
    font-weight: bold;
} 
.mk-tt{
    font-weight: 600;
}
.mk-desc {
    color: #666666;
    line-height: 1.8;
    font-size: 16px;
}
.seoPublic .Auxil-related .list ul li .box .content a.more{
    color: white;
}


.custom-form{
  position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 80%;
    /*width: 1250px;*/
    max-width: 1250px;
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 22;
    background: white;
    /*padding: 30px;*/
    overflow: auto;
    padding-bottom: 30px;
    padding-left: 30px;
}
.custom-form .left{
    width: 60%;
    padding-top: 30px;
}
.custom-form .left li.item .img{
    width: 280px;
    flex: none;
    position: sticky;
    top: 0;
}
.custom-form .left li.item .img .gallery ul li a,
.custom-form .left li.item .img .big{
    background: #f5f5f5;
    display: block;
}
.custom-form .left li.item .content{
    width: calc(100% - 280px);
}
.custom-form .right{
    width: 40%;
    min-width: 400px;
    position: sticky;
    top: 0;
}
.custom-form h4 {
    font-size: 18px;
    color: #222;
    text-transform: capitalize;
    line-height: 1;
    font-weight: bold;
    /*position: absolute;
    left: 0;
    width: 100%;
    top: 0;*/
    padding: 15px 20px;
    background: #f5f5f5;
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}
.custom-form i.close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #eee;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.custom-form i.close:after, .custom-form i.close:before {
    content: '';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    width: 70%;
    height: 2px;
    margin-top: -1px;
    background: black;
    position: absolute;
    top: 50%;
    left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.custom-form i.close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.custom-form i.close:hover {
    background: var(--color);
}
.custom-form i.close:hover:after, .custom-form i.close:hover:before {
    background: white;
}
.custom-form form {
    margin-top: 40px;
    width: 100%;
    padding-right: 30px;
}
.custom-form form ul li {
    margin-bottom: 10px;
    position: relative;
}
.custom-form form ul li label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.custom-form form ul li label em {
    color: red;
    margin-right: 2px;
}
.custom-form form ul li input, 
.custom-form form ul li textarea {
    width: 100%;
    line-height: 24px;
    padding: 6px 15px;
    border: 1px solid #eee;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 16px;
}
.custom-form form ul li textarea {
    height: 80px;
}
.custom-form form ul li:last-child {
    margin-bottom: 0;
}
.custom-form form ul li input[type="submit"] {
    width: auto;
    padding: 6px 40px;
    display: inline-block;
    background: var(--color);
    color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.custom-form form ul li input[type="submit"]:hover {
    opacity: .7;
}
@media screen and (max-width:1250px){
    .custom-form .left li.item > .flex{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .custom-form .left li.item .img{
        width: 100%;
        position: relative;
        top: 0;
    }
    .custom-form .left li.item .content{
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .custom-form{
        max-width: 970px;
    }
}
@media screen and (max-width:1000px){
    .custom-form{
        max-width: 700px;
        padding-right: 30px;
    }
    .custom-form > .flex{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .custom-form .left{
        width: 100%;
        order: 2;
    }
    .custom-form .right{
        width: 100%;
        position: relative;
        top: 0;
        margin-top: 20px;
        order: 1;
    }
}
@media screen and (max-width:700px){
    .custom-form{
        max-width: 520px;
        width: 95%;
    }
    .custom-form .right{
        max-width: 100%;
        min-width: 100%;
    }
    .custom-form form{
        padding-right: 0;
    }
}