:root {
    --white: #fff;
    --black: #000;
    --primary: #d9281e;
  }
  table {
   margin-bottom: 20px;
    /* word-break: break-word; */
    width: 100% !important;
    /* height: auto !important; */
    display: block;
    overflow: auto;
    /* width: 100%; */
    table-layout: auto !important;
  }
  table tbody {
    display: table;
    width: 100% !important;
    min-width: 700px;
  }
  table td,
  table th {
    padding: 5px 10px;
    border: 1px solid #666;
    width: auto !important;
    height: auto !important;
  }
  table tr {
    width: auto !important;
    height: auto !important;
  }
  table tr:nth-child(even) {
    background: #eee;
  }
  @keyframes ks {
    0% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: .3;
    }
    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }
  @-webkit-keyframes ks {
    0% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: .3;
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }
  @-moz-keyframes ks {
    0% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: .3;
    }
    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }
  @-webkit-keyframes ani_scale {
    0% {
      -webkit-transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @-moz-keyframes ani_scale {
    0% {
      -webkit-transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes ani_scale {
    0% {
      -webkit-transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  .more {
    padding: 9px 17px 8px;
    display: inline-block;
    font-size: 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    overflow: hidden;
  }
  .more::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -moz-transition: transform .5s ease, -moz-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;
    background: var(--black);
  }
  .more:hover {
    color: var(--white);
  }
  .more:hover::before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  #Pop_UpsBtn {
    display: none !important;
  }
  body #fp-nav.fp-right {
    left: 64px;
    bottom: 20%;
  }
  body #fp-nav ul li,
  body .fp-slidesNav ul li {
    width: 8px;
    height: 8px;
    margin-bottom: 26px;
  }
  body #fp-nav ul li a,
  body .fp-slidesNav ul li a {
    position: relative;
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--white);
    margin: 23px 0 0 -4px;
    display: none;
  }
  body #fp-nav ul li a span,
  body .fp-slidesNav ul li a span {
    display: none;
  }
  body #fp-nav ul li a::before,
  body .fp-slidesNav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
  }
  body #fp-nav ul li a::after,
  body .fp-slidesNav ul li a::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: -217px;
    width: 2px;
    height: 200px;
    background: var(--white);
  }
  body #fp-nav ul li a.active,
  body .fp-slidesNav ul li a.active {
    display: block;
  }
  body #fp-nav ul li:nth-child(2) a,
  body .fp-slidesNav ul li:nth-child(2) a,
  body #fp-nav ul li:nth-child(5) a,
  body .fp-slidesNav ul li:nth-child(5) a,
  body #fp-nav ul li:nth-child(6) a,
  body .fp-slidesNav ul li:nth-child(6) a {
    border-color: var(--black);
  }
  body #fp-nav ul li:nth-child(2) a::before,
  body .fp-slidesNav ul li:nth-child(2) a::before,
  body #fp-nav ul li:nth-child(5) a::before,
  body .fp-slidesNav ul li:nth-child(5) a::before,
  body #fp-nav ul li:nth-child(6) a::before,
  body .fp-slidesNav ul li:nth-child(6) a::before,
  body #fp-nav ul li:nth-child(2) a::after,
  body .fp-slidesNav ul li:nth-child(2) a::after,
  body #fp-nav ul li:nth-child(5) a::after,
  body .fp-slidesNav ul li:nth-child(5) a::after,
  body #fp-nav ul li:nth-child(6) a::after,
  body .fp-slidesNav ul li:nth-child(6) a::after {
    background: var(--black);
  }
  body #fp-nav ul li:last-child,
  body .fp-slidesNav ul li:last-child {
    display: none;
  }
  .num {
    position: fixed;
    left: 45px;
    bottom: 48%;
    color: var(--white);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .num .s1 {
    font-size: 14px;
    line-height: 1;
  }
  .num i {
    margin: 0 5px;
  }
  .num .s2 {
    font-size: 16px;
    font-weight: bold;
    margin-left: 5px;
  }
  @media screen and (max-width: 1740px) {
    .num {
      left: 12px;
    }
    body #fp-nav.fp-right {
      left: 30px;
    }
  }
  @media screen and (max-width: 1680px) {
    #index-body .map::after {
      font-size: 160px;
    }
    #index-body .map .left {
      width: 35%;
      padding-left: 5%;
    }
    #index-body .map .right {
      width: 65%;
    }
  }
  @media screen and (max-width: 1440px) {
    #index-body .map::after {
      font-size: 140px;
    }
  }
  @media screen and (max-width: 1280px) {
    .section {
      height: auto !important;
    }
    .fp-tableCell {
      padding: 0;
      height: auto !important;
    }
    body #fp-nav.fp-right,
    .num {
      display: none !important;
    }
    #index-body .map {
      padding: 100px 0;
    }
    #index-body .map .left {
      padding-left: 0;
    }
    #index-body .map .left h2 {
      font-size: 32px;
    }
    #index-body .map::after {
      font-size: 125px;
    }
  }
  @media screen and (max-width: 1100px) {
    #index-body .map::after {
        font-size: 114px;
      }
  }
  @media screen and (max-width: 1000px) {
    .hongjugongju{
        display: none;
    }
    #index-body .map{
      padding: 60px 0;
    }
  }
  @media screen and (max-width: 700px) {
    #index-body .map {
        display: none;
    }
  }
  @media screen and (max-width: 500px) {
    #index-body .map{
      padding: 30px 0;
    }
  }
  .inner-banner {
    display: block;
    height: 481px;
    padding-top: 170px;
    color: #fff;
    position: relative;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
}
.inner-banner .box {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
}
.inner-page .m-page {
  margin-top: 50px;
  text-align: center;
  display: block;
}
.inner-page .m-page a,
.inner-page .m-page span {
  line-height: 43px;
    height: 40px;
    width: 40px;
    padding: 0 12px;
    font-size: 20px;
    color: #7f7f7f;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border: 1px solid #eee;
    margin: 5px;
}
.inner-page .m-page a:hover,
.inner-page .m-page span {
  background: var(--primary);
  color: white;
}
.about-page i.tag {
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: 300;
  margin-bottom: 5px;
  line-height: 30px;
}
.about-page h2 {
  display: block;
  font-size:28px;
  text-transform: capitalize;
  line-height: 1.5;
  font-weight: bold;
}
.about-page .about-1 {
  padding: 140px 0 110px;
  position: relative;
}
.about-page .about-1:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("/zjsinoraymetal/2022/05/30/ab-bg.jpg") right top no-repeat;
}
.about-page .about-1:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/about-1-text.png") center left no-repeat;
  top: 0;
  left: 0;
}
.about-page .about-1 .content {
  display: block;
  padding: 25px 0 80px;
  font-size: 16px;
  color: #959595;
  line-height: 2;
}
.about-page .about-1 .list ul {
  margin: 0 -15px;
  text-align: center;
}
.about-page .about-1 .list ul li {
  position: relative;
  padding: 0 15px;
}
.about-page .about-1 .list ul li:after {
  content: '';
  width: 1px;
  height: 70px;
  background: #bfbfbf;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}
.about-page .about-1 .list ul li:last-child:after {
  display: none;
}
.about-page .about-1 .list ul li h5 {
    display: block;
    font-size: 64px;
    line-height: 1;
}
.about-page .about-1 .list ul li h5 sub {
  font-size: 20px;
  vertical-align: bottom;
  margin-bottom: 8px;
  display: inline-block;
}
.about-page .about-1 .list ul li p {
  display: block;
  font-size: 20px;
  color: #564f3c;
  line-height: 1.6;
  margin-top: 10px;
}
.about-page .about-2 {
  padding: 100px 0 80px;
  color: white;
  text-align: center;
  background: url("../images/about-2-bg.jpg") center center no-repeat black;
}
.about-page .about-2 .list {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.about-page .about-2 .list:after {
  content: '';
  width: 1px;
  height: 90%;
  position: absolute;
  top: 54px;
  left: 50%;
  background: var(--primary);
  z-index: -1;
}
.about-page .about-2 .list ul li {
  margin-bottom: 40px;
  position: relative;
}
.about-page .about-2 .list ul li:last-child {
  margin-bottom: 0;
}
.about-page .about-2 .list ul li .left {
  padding-right: 40px;
  font-size: 16px;
  line-height: 30px;
  text-align: right;
  vertical-align: middle;
  position: relative;
}
.about-page .about-2 .list ul li .left strong {
  display: block;
  line-height: 1.6;
  
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}
.about-page .about-2 .list ul li .right {
  padding-left: 40px;
  vertical-align: middle;
  position: relative;
}

.about-page .about-2 .list ul li i.circle {
  position: absolute;
  top: -8px;
  right: -62.3px;
}
.about-page .about-2 .list ul li i.circle svg {
  border-radius: 100%;
  background: #252525;
}
.about-page .about-2 .list ul li i.circle svg circle {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.about-page .about-2 .list ul li i.circle.active svg circle {
  -webkit-animation: Db 2s ease-in forwards;
  -moz-animation: Db 2s ease-in forwards;
  animation: Db 2s ease-in forwards;
}
.about-page .about-2 .list ul li:nth-child(1) i.circle svg,
.about-page .about-2 .list ul li:nth-child(2) i.circle svg,
.about-page .about-2 .list ul li:last-child i.circle svg {
  background: black;
}
.about-page .about-2 .list ul li:nth-child(even) .left {
  padding-right: 0;
  padding-left: 40px;
  left: 50%;
  text-align: left;
}
.about-page .about-2 .list ul li:nth-child(even) .left i.circle {
  left: -62.3px;
  right: auto;
}
.about-page .about-2 .list ul li:nth-child(even) .right {
  padding-right: 40px;
  padding-left: 0;
  left: -50%;
}
.about-page .about-3 {
  padding: 90px 0 100px;
}
.prodet-page .about-page .about-3{
  padding-bottom: 0px;
}
.about-page .about-3 .content {
    display: block;
    padding: 20px 0 70px;
    font-size: 16px;
    color: #959595;
    line-height: 2;
    font-weight: 500;
}
.about-page .about-3 .list ul {
display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.about-page .about-3 .list ul li {
  padding: 50px 25px 65px;
  border: 1px solid #eee;
  text-align: center;
  margin: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.about-page .about-3 .list ul li i {
  display: block;
  height: 109px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .list ul li i.ie1 {
  background-image: url("/zjsinoraymetal/2022/06/16/zongzhi.png");
}
.about-page .about-3 .list ul li i.ie2 {
  background-image: url("/zjsinoraymetal/2022/06/16/gongzuo.png");
}
.about-page .about-3 .list ul li i.ie3 {
  background-image: url("/zjsinoraymetal/2022/06/16/tuandui.png");
}
.about-page .about-3 .list ul li i.ie4 {
  background-image: url("../images/icon-3-4-1.png");
}
.about-page .about-3 .list ul li i.ie5 {
  background-image: url("../images/icon-3-5-1.png");
}
.about-page .about-3 .list ul li i.ie6 {
  background-image: url("../images/icon-3-6-1.png");
}
.about-page .about-3 .list ul li:hover i.ie1 {
  background-image: url("/zjsinoraymetal/2022/05/30/zongzhi01.png");
}
.about-page .about-3 .list ul li:hover i.ie2 {
  background-image: url("/zjsinoraymetal/2022/05/30/gongzuo01.png");
}
.about-page .about-3 .list ul li:hover i.ie3 {
  background-image: url("/zjsinoraymetal/2022/05/30/tuandui01.png");
}
.about-page .about-3 .list ul li:hover i.ie4 {
  background-image: url("../images/icon-3-4-2.png");
}
.about-page .about-3 .list ul li:hover i.ie5 {
  background-image: url("../images/icon-3-5-2.png");
}
.about-page .about-3 .list ul li:hover i.ie6 {
  background-image: url("../images/icon-3-6-2.png");
}
.about-page .about-3 .list ul li h5 {
  display: block;
  font-size: 20px;
      color: var(--primary);
  line-height: 1.8;
  margin: 10px 0 20px;
  text-transform: uppercase;
  font-weight: bold;
}

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

.about-page .about-3 .list ul li p {
  display: block;
  font-size: 16px;
  color: #959595;
  line-height: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  /*height: 6.4em;*/
}
.about-page .about-3 .list ul li:hover {
  background: var(--primary);
  color: white;
}
.about-page .about-3 .list ul li:hover p {
  color: white;
}
.about-page .about-3 .list ul li:nth-child(2),
.about-page .about-3 .list ul li:nth-child(5) {
  top: -30px;
}
.about-page .about-4 {
  padding: 80px 0 50px;
  text-align: center;
  background: #f8f8f8;
  background-size: cover;
}
.about-page .about-4 .text {
  display: block;
  font-size: 18px;
  line-height: 2;
  color: #585858;
  margin: 10px 0 20x;
}
.about-page .about-5 {
padding: 80px 0 60px;
    background: url(/zjsinoraymetal/2022/06/16/bg.jpg);

}
.about-page .about-5 .left {
  width: 25%;
}
.about-page .about-5 .left .text {
  display: block;
  font-size: 16px;
  color: #717171;
  line-height: 2;
  margin: 10px 0 25px;
}
.about-page .about-5 .right {
  width: 75%;
  padding-left: 3%;
}
.about-page .about-5 .right ul {
  margin: -80px -8px;
}
.about-page .about-5 .right ul li {
  padding: 80px 8px;
}
.about-page .about-5 .right ul li img {
  display: block;
  width: 100%;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  top: 0;
}
.about-page .about-5 .right ul .slick-active li img {
  top: -30px;
}
.about-page .about-5 .right ul .slick-current li img {
  top: 20px;
}
.about-page .about-5 .right ul .slick-current + div li img {
  top: -40px;
}
.custom-page i.tag {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary);
  line-height: 30px;
}
.custom-page h2 {
  display: block;
  font-size: 36px;
  
  font-weight: bold;
  line-height: 1.8;
}
.custom-page .custom-1 {
  padding: 200px 0 130px;
}
.custom-page .custom-1 .box {
  background: url("../images/custom-1.jpg") center center no-repeat;
  background-size: cover;
  display: block;
}
.custom-page .custom-1 .box .img {
  margin-left: 50%;
  display: inline-block;
  top: -70px;
  margin-bottom: -150px;
  position: relative;
}
.custom-page .custom-1 .box .img .play {
  position: absolute;
  left: 45%;
  bottom: 10%;
  white-space: nowrap;
}
.custom-page .custom-1 .box .img .play p {
  max-width: 300px;
  font-size: 16px;
  line-height: 30px;
  margin-top: 15px;
  display: block;
  white-space: normal;
  margin-left: 50px;
}
.custom-page .custom-1 .box .img .play span {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: rgba(230, 0, 18, 0.5);
  position: relative;
  z-index: 1;
}
.custom-page .custom-1 .box .img .play span i {
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.custom-page .custom-1 .box .img .play span:after,
.custom-page .custom-1 .box .img .play span:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.custom-page .custom-1 .box .img .play span:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.custom-page .custom-1 .box .img .play h6 {
  font-size: 16px;
  
  line-height: 30px;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 20px;
}
.custom-page .custom-2 {
  padding-bottom: 90px;
}
.custom-page .custom-2 h2 {
  width: 55%;
}
.custom-page .custom-2 .text {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #959595;
  line-height: 30px;
  margin-top: 25px;
}
.custom-page .custom-2 .iconList {
  float: right;
  margin-top: -20px;
}
.custom-page .custom-2 .iconList ul li {
  width: auto;
  margin-left: 25px;
}
.custom-page .custom-2 .iconList ul li i {
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 100%;
  border: 1px solid #eee;
  line-height: 82px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-2 .iconList ul li i img {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-2 .iconList ul li h6 {
  display: block;
  font-size: 16px;
  color: #3b3b3b;
  margin-top: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-align: center;
  line-height: 30px;
}
.custom-page .custom-2 .iconList ul li:hover i {
  background: var(--primary);
}
.custom-page .custom-2 .iconList ul li:hover i img {
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
}
.custom-page .custom-2 .iconList ul li:hover h6 {
  color: var(--primary);
}
.custom-page .custom-2 .list {
  margin-top: 60px;
  text-align: center;
}
.custom-page .custom-2 .list ul {
  margin: 0 -20px;
}
.custom-page .custom-2 .list ul li {
  padding: 0 20px;
}
.custom-page .custom-3 {
  padding: 80px 0 100px;
  text-align: center;
  background: #f5f5f5;
}
.custom-page .custom-3 .text {
  display: block;
  font-size: 16px;
  color: #7a7a7a;
  margin: 20px 0 30px;
  line-height: 30px;
}
.custom-page .custom-3 .list>ul {
  border-bottom: 1px solid #eee;
  text-align: left;
}
.custom-page .custom-3 .list>ul>li {
  padding: 30px 0 30px 65px;
  border-top: 1px solid #eee;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.custom-page .custom-3 .list ul li i {
  position: absolute;
  top: 18px;
  left: 0;
  width: 60px;
}
.custom-page .custom-3 .list ul li i img {
  display: block;
  max-width: 100%;
}
.custom-page .custom-3 .list ul li h5 {
  padding-right: 60px;
  position: relative;
  font-size: 30px;
  
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.8;
}
.custom-page .custom-3 .list ul li h5 span {
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}
.custom-page .custom-3 .list ul li h5 span:after,
.custom-page .custom-3 .list ul li h5 span:before {
  content: '';
  width: 100%;
  height: 1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 0;
}
.custom-page .custom-3 .list ul li h5 span:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-3 .list ul li .content {
  margin-top: 30px;
  font-size: 18px;
  color: #7a7a7a;
  line-height: 1.8;
}
.custom-page .custom-3 .list ul li .content table {
  border: none;
}
.custom-page .custom-3 .list ul li .content table tbody {
  table-layout: fixed;
}
.custom-page .custom-3 .list ul li .content table tbody td {
  border: none;
}
.custom-page .custom-3 .list ul li .content table tbody td:first-child {
  padding-right: 10%;
  border-right: 1px solid #e5e5e5;
}
.custom-page .custom-3 .list ul li .content table tbody td:last-child {
  padding-left: 10%;
}
.custom-page .custom-3 .list ul li.active {
  border-top: 2px solid black;
}
.custom-page .custom-3 .list ul li.active h5 span:after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.custom-page .custom-4 {
  padding: 70px 0 60px;
  text-align: center;
}
.custom-page .custom-4 .form {
  margin-top: 50px;
}
.custom-page .custom-4 .form ul {
  margin: -10px;
}
.custom-page .custom-4 .form ul li {
  padding: 10px;
}
.custom-page .custom-4 .form ul li input,
.custom-page .custom-4 .form ul li textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: white;
  line-height: 30px;
}
.custom-page .custom-4 .form ul li input:focus,
.custom-page .custom-4 .form ul li textarea:focus {
  border-color: var(--primary);
}
.custom-page .custom-4 .form ul li textarea {
  height: 120px;
}
.custom-page .custom-4 .form ul li input[type="submit"] {
  padding: 15px 50px;
  width: auto;
  border-color: black;
  color: black;
  font-weight: bold;
  max-width: none;
}
.custom-page .custom-4 .form ul li input[type="submit"]:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.custom-page .custom-4 .form ul li.wid-100 {
  width: 100%;
}
.technology-page {
  padding: 140px 0 120px;
}
.technology-page i.tag {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary);
  line-height: 30px;
}
.technology-page h2 {
  display: block;
  font-size: 36px;
  
  font-weight: bold;
  line-height: 1.6;
}
.technology-page .technology-1 .list {
  margin-top: 25px;
}
.technology-page .technology-1 .list ul li {
  font-size: 16px;
  color: #959595;
  line-height: 30px;
}
.technology-page .technology-1 .list ul li i {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid var(--primary);
  line-height: 30px;
  position: relative;
  text-align: center;
  font-size: 16px;
  color: var(--primary);
  margin-right: 7px;
  margin-top: -3px;
}
.technology-page .technology-1 .list ul li i:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  border: inherit;
  opacity: .4;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.technology-page .technology-2 {
  margin-top: 75px;
}
.technology-page .technology-2 ul {
  margin: -15px -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.technology-page .technology-2 ul li {
  padding: 15px 20px;
}
.technology-page .technology-2 ul li .box {
  background: white;
  -o-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
  -webkit-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
  box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
  text-align: center;
  padding: 60px 50px 25px;
  height: 100%;
}
.technology-page .technology-2 ul li .box h5 {
  font-size: 26px;
  color: var(--primary);
  
  line-height: 1.6;
}
.technology-page .technology-2 ul li .box .text {
  display: block;
  margin: 40px 0 30px;
  font-size: 16px;
  color: #6b6a6a;
  line-height: 30px;
}
.technology-page .technology-2 ul li .box .box2 .left {
  width: 40%;
  vertical-align: middle;
}
.technology-page .technology-2 ul li .box .box2 .right {
  width: 60%;
  vertical-align: middle;
  padding-left: 10px;
  text-align: left;
}
.technology-page .technology-2 ul li:nth-child(2) .box .text {
  margin-bottom: 0;
}
.case-page {
  padding: 140px 0;
  background: url("../images/about-1-bg.jpg") top right no-repeat;
}
.case-page i.tag {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary);
  line-height: 30px;
}
.case-page h2 {
  display: block;
  font-size: 30px;
  
  font-weight: bold;
  line-height: 1.6;
}
.case-page .list {
  margin-top: 40px;
}
.case-page .list ul {
  margin: -15px -13px;
}
.case-page .list ul li {
  padding: 15px 13px;
}
.case-page .list ul li a.img {
  display: block;
  -o-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
  -webkit-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
  box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.case-page .list ul li a.img img {
  display: block;
  width: 100%;
}
.case-page .list ul li a.img h6 {
  display: block;
  font-size: 20px;
  
  font-weight: bold;
  padding: 20px 15px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: white;
  line-height: 1.6;
}
.case-page .list ul li a.img:hover {
  background: var(--primary);
}
/*.case-page .list ul li a.img:hover h6 {
  color: white;
}*/
.proyd-page {
  height: 100%;
}
.proyd-page .box {
  height: 100%;
}
.proyd-page .box .left {
  width: 22%;
  height: 100%;
  background: url("../images/proyd-1.jpg") center center;
  background-size: cover;
  position: relative;
}
.proyd-page .box .left .box2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 0 20px 0 60px;
}
.proyd-page .box .left .box2 i.tag {
  font-size: 14px;
  color: var(--primary);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.2;
}
.proyd-page .box .left .box2 i.tag img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.proyd-page .box .left .box2 i.tag span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
    line-height: 30px;
}
.proyd-page .box .left .box2 h6 {
  display: block;
  font-size: 24px;
  
  line-height: 1.8;
  text-transform: uppercase;
  margin: 10px 0 20px;
  font-weight: bold;
}
.proyd-page .box .left .box2 .text {
  display: block;
  font-size: 16px;
  color: #949494;
  line-height: 30px;
  margin: 20px 0 30px;
}
.proyd-page .box .left .box2 .play {
  white-space: nowrap;
  cursor: pointer;
}
.proyd-page .box .left .box2 .play span {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: rgba(230, 0, 18, 0.5);
  position: relative;
  z-index: 1;
}
.proyd-page .box .left .box2 .play span i {
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.proyd-page .box .left .box2 .play span:after,
.proyd-page .box .left .box2 .play span:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.proyd-page .box .left .box2 .play span:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.proyd-page .box .left .box2 .play h5 {
  font-size: 18px;
  
  line-height: 1.8;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 20px;
  color: var(--primary);
}
.proyd-page .box .right {
  width: 78%;
  height: 100%;
  overflow: hidden;
  background: url("../images/proyd-bg.jpg") center center no-repeat;
  position: relative;
  z-index: 1;
}
.proyd-page .box .right ul {
  height: 100%;
}
.proyd-page .box .right ul li {
  height: 100%;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.proyd-page .box .right ul li .img {
  width: 300%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.proyd-page .box .right ul li .box2 {
  bottom: 10%;
  left: 0;
  width: 100%;
  padding: 0 40px;
  position: absolute;
}
.proyd-page .box .right ul li .box2 .list {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  left: -20px;
}
.proyd-page .box .right ul li .box2 .list dl dd {
  font-size: 16px;
  
  margin-bottom: 15px;
  line-height: 1;
  display: none;
}
.proyd-page .box .right ul li .box2 .list dl dd:last-child {
  margin-bottom: 0;
}
.proyd-page .box .right ul li .box2 .list dl dd:hover {
  text-decoration: underline;
}
.proyd-page .box .right ul li .box2 h5 {
  
  font-size: 36px;
  line-height: 1.6;
  margin: 90px 0 20px;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.proyd-page .box .right ul li:after,
.proyd-page .box .right ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #cf2929;
  -webkit-transition: .5s all,width 0s .5s;
  -moz-transition: .5s all,width 0s .5s;
  transition: .5s all,width 0s .5s;
  opacity: 0;
  z-index: -1;
}
.proyd-page .box .right ul li:nth-child(2) .img {
  left: -100%;
}
.proyd-page .box .right ul li:nth-child(3) .img {
  left: -200%;
}
.proyd-page .box .right ul li:hover {
  background: rgba(207, 41, 41, 0.9);
}
.proyd-page .box .right ul li:hover .img {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .6s .2s;
  -moz-transition: .6s .2s;
  transition: .6s .2s;
}
.proyd-page .box .right ul li:hover .list {
  left: 0;
}
.proyd-page .box .right ul li:hover .list dl dd {
  display: block;
  color: white;
}
.proyd-page .box .right ul li:hover h5 {
  color: white;
}
.proyd-page .box .right ul li:hover a.more {
  color: white;
}
.proyd-page .box .right ul li:hover a.more:before {
  background: white;
}
.proyd-page .box .right ul li:hover a.more:after {
  border-color: white;
}
.proyd-page .box .right ul li:hover:after,
.proyd-page .box .right ul li:hover:before {
  opacity: 1;
  width: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.proyd-page .box .right ul li:hover:after {
  -webkit-transition: .8s .2s;
  -moz-transition: .8s .2s;
  transition: .8s .2s;
}
.proyd-page .box .right ul:hover li .box2 h5,
.proyd-page .box .right ul:hover li .box2 a.more {
  color: white;
  opacity: .2;
}
.proyd-page .box .right ul:hover li .box2 h5:before,
.proyd-page .box .right ul:hover li .box2 a.more:before {
  background: white;
}
.proyd-page .box .right ul:hover li .box2 h5:after,
.proyd-page .box .right ul:hover li .box2 a.more:after {
  border-color: white;
}
.proyd-page .box .right ul:hover li:hover .box2 h5,
.proyd-page .box .right ul:hover li:hover .box2 a.more {
  opacity: 1;
}
.product-page {
  padding: 100px 0 80px;
}
.product-page2 .list ul li .content h4{
    padding: 20px 0;
    text-align: center;
    font-size: 17px;
    text-transform: capitalize;
}
.product-page2 .list ul li:hover{
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.product-page .sideBox .slideLeft {
  width: 25%;
}
.product-page .sideBox .slideLeft .box {
  padding: 30px 20px;
  background: #f7f7f7;
  margin-bottom: 20px;
  line-height: 2;
}
.product-page .sideBox .slideLeft .box:last-child {
  margin-bottom: 0;
}
.product-page .sideBox .slideLeft .box h4 {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.8;
  color: black;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  font-size: 20px;
  margin-bottom: 20px;
}
.product-page .sideBox .slideLeft .box h4:after {
  content: '';
  width: 24%;
  background: var(--primary);
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 5px;
}
.product-page .sideBox .slideLeft .box .list ul li {
  margin-bottom: 10px;
}
.product-page .sideBox .slideLeft .box .list ul li a {
  display: block;
  padding: 15px 35px 15px 12px;
  font-size: 16px;
  color: #262626;
  background: white;
  -o-box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
  -webkit-box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
  box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  line-height: 1.8;
}
.product-page .sideBox .slideLeft .box .list ul li a .fa{
  position: absolute;
  right:20px;
  top:20px;
}
.product-page .sideBox .slideLeft .box .list ul li a span {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 14px;
  top: 24px;
  display: block;
}
.product-page .sideBox .slideLeft .box .list ul li a span:after,
.product-page .sideBox .slideLeft .box .list ul li a span:before {
  content: '';
  width: 100%;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
}
.product-page .sideBox .slideLeft .box .list ul li a span:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product-page .sideBox .slideLeft .box .list.nav ul li a:hover {
  background: var(--primary);
  color: white;
  text-align: left;
}
.product-page .sideBox .slideLeft .box .list.info ul li {
  overflow: hidden;
  margin-bottom: 18px;
}
.product-page .sideBox .slideLeft .box .list.info ul li a {
  padding-left: 60px;
  text-align: left;
  padding-right: 15px;
}
.product-page .sideBox .slideLeft .box .list.info ul li a i {
  width: 38px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-page .sideBox .slideLeft .box .list.info ul li:last-child {
  margin-bottom: 0;
}
.product-page .sideBox .slideLeft .box .list.info ul li:last-child a {
  font-size: 16px;
  line-height: 30px;
}
.product-page .sideBox .slideLeft .box .list ul li ul{
  display: none;
}
.product-page .sideBox .slideLeft .box.playBg {
  height: 370px;
  padding: 0;
  position: relative;
  background: url("/zjsinoraymetal/2022/05/31/pr-bg.jpg") center center;
  background-size: cover;
}
.product-page .sideBox .slideLeft .box.playBg:after {
  content: '';
  width: 100%;
  height: 40%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, transparent), color-stop(100%, var(--primary)));
  /* 兼容Safari4-5, chrome1-9 */
  background: -moz-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
  /* firefox */
  background: -webkit-linear-gradient(top, transparent 0%, var(--primary) 100%);
  /* chrome */
  /* opera */
  /* ie */
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--primary)));
  background: -webkit-linear-gradient(top, transparent, var(--primary));
  background: -moz-linear-gradient(top, transparent, var(--primary));
  background: linear-gradient(to bottom, transparent, var(--primary));
  /* firefox */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='var(--primary)',GradientType=0)";
  /* 兼容IE8~IE9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='var(--primary)', GradientType=0);
  /* 兼容IE5~IE9 */
}
.product-page .sideBox .slideLeft .box.playBg .play {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding: 0 30px;
  white-space: nowrap;
  z-index: 1;
  cursor: pointer;
  cursor: hand;
}
.product-page .sideBox .slideLeft .box.playBg .play span {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: white;
  position: relative;
  z-index: 1;
  text-align: center;
}
/*.product-page .sideBox .slideLeft .box.playBg .play span i {
  border-left: 8px solid var(--primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}*/
.product-page .sideBox .slideLeft .box.playBg .play span:after,
.product-page .sideBox .slideLeft .box.playBg .play span:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.product-page .sideBox .slideLeft .box.playBg .play span:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.product-page .sideBox .slideLeft .box.playBg .play h6 {
  font-size: 21px;
  
  line-height: 1.8;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 20px;
  color: white;
  letter-spacing: 1px;
  max-width: 80%;
  word-break: break-word;
    white-space: normal;
}
.product-page .sideBox .slideRight {
  width: 75%;
  padding-left: 60px;
}
.inner-page .sideBox .sidebar-right .hmvillaelevator1 h1{
  font-weight: 700;
  line-height: 1;
  color: #000;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.inner-banner.active .box .mbx {
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
    z-index: 10;
}
.inner-page .sideBox .sidebar-right .hmvillaelevator1 {
  font-size: 16px;
  line-height: 2;
  padding-bottom: 20px;
}
.product-page .sideBox .slideRight .list ul {
  margin: -20px -10px;
}
.product-page .sideBox .slideRight .list ul li {
  padding: 10px 10px;
   transition: all .5s ease;
}
.product-page .sideBox .slideRight .list ul li .box {
  overflow: hidden;
}
.product-page .sideBox .slideRight .list ul li .box .left {
padding: 25px 0 25px 25px;
    background: #f3f3f3;
    width: 55%;
    vertical-align: bottom;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    height: 250px;
}
.product-page .sideBox .slideRight .list ul li .box .left:after {
  content: '';
  width: 100%;
  height: 100%;
  left: 99%;
  top: 0;
  position: absolute;
  z-index: -1;
  background: inherit;
}
.product-page .sideBox .slideRight .list ul li .box .left>* {
  position: relative;
  z-index: 1;
}
.product-page .sideBox .slideRight .list ul li .box .left h4 {
    display: block;
    font-size: 15px;
    text-transform: capitalize;
    line-height: 2;
    font-weight: 700;
    width: 65%;
    padding-bottom: 20px;
}
.product-page .sideBox .slideRight .list ul li .box .left p {
  display: block;
  font-size: 14px;
  color: #8b8b8b;
  line-height: 1.2;
  margin: 12px 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sideBox .slideRight .list ul li .box .left a.more {
    line-height: 2.5;
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
}
.product-page .sideBox .slideRight .list ul li .box .right {
  padding: 0 20px 10px;
  vertical-align: bottom;
  width: 40%;
}
.product-page .sideBox .slideRight .list ul li .box .right a {
  display: block;
  position: relative;
  width: 200%;
  max-width: none;
  left: 30%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
}
.product-page .sideBox .slideRight .list ul li .box .right img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sideBox .slideRight .list ul li .box .right img.img2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-page .sideBox .slideRight .list ul li .box:hover .right img {
  opacity: 0;
}
.product-page .sideBox .slideRight .list ul li .box:hover .right img.img2 {
  opacity: 1;
}
.product-page .sideBox .slideRight .list ul li .box:hover {
  color: white;
}
.product-page .sideBox .slideRight .list ul li .box:hover .left {
  background: var(--primary);
}
.product-page .sideBox .slideRight .list ul li .box:hover .left p {
  color: white;
}
.product-page .sideBox .slideRight .list ul li .box:hover .left a.more {
  color: white;
}
.product-page .sideBox .slideRight .list ul li .box:hover .left a.more:before {
  background: white;
}
.product-page .sideBox .slideRight .list ul li .box:hover .left a.more:after {
  border-color: white;
}
.prodet-page {
  padding: 40px 0;
}
.prodet-page i.tag {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary);
  line-height: 30px;
}
.prodet-page h2,
.prodet-page h1 {
  display: block;
  font-size: 30px;
  
  font-weight: bold;
  line-height: 1.8;
}
.prodet-page .prodet-1 .left {
 
  background-size: cover;
  padding: 20px;
  text-align: center;
  vertical-align: middle;

  position: relative;
      width: 40%;

}
.prodet-page .prodet-1 .left img {
  display: block;
  margin: 0 auto;
}
.prodet-page .prodet-1 .left i.block {
  width: 25%;
  height: 30%;
  position: absolute;
  background: #eee;
  z-index: -1;
  left: -12%;
  top: 20%;
}
.prodet-page .prodet-1 .right {
  padding-left: 5%;
  vertical-align: middle;
  width: 60%;
}
.prodet-page .prodet-1 .right h1 {
    font-size: 24px;
    text-transform: capitalize;
}
.prodet-page .prodet-1 .right .grid-box{
  width: 100%;
}
.prodet-page .prodet-1 .right .content {
    display: block;
    padding: 10px 0 10px;
    font-size: 16px;
    color: #959595;
    line-height: 2;
    /*max-height: 240px;
    overflow: overlay;*/
}
.prodet-page .prodet-1 .right .content h6 {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: bold;
}
.prodet-page .prodet-1 .right .btn {
  padding: 20px 0;
}
.prodet-page .prodet-1 .right .btn a {
  display: inline-block;
  vertical-align: middle;
  line-height: 40px;
  height: 40px;
  padding: 0 24px;
  border-radius: 20px;
  background: black;
  color: white;
  font-size: 16px;
  
  font-weight: bold;
  margin-right: 25px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;

}
.prodet-page .prodet-1 .right .btn a:hover {
  background: var(--primary);
}
.prodet-page .prodet-1 .right .share {
  margin-top: 20px;
  display: flex;
}
.prodet-page .prodet-1 .right .share h6 {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
 text-transform: capitalize;


}
.prodet-page .prodet-1 .right .share ul {
  display: inline-block;
  vertical-align: middle;
      padding: 3px 0px;
}
.prodet-page .prodet-1 .right .share ul li {
  width: auto;
  margin-left: 15px;
  color: #666;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .right .share ul li:hover {
  color: var(--primary);
}
.prodet-page .prodet-1 .right .proview-img .slick-arrow{
			position: absolute;
			cursor: pointer;
			width: 19px;
			height: 35px;
			background:rgba(0,0,0,.5) url(../images/banner-btn-l.png) no-repeat center;
      background-size: 80%;
			left:20px;
			top:45%;
			z-index: 8;
			color: rgba(255,255,255,0);
			border: none;
}
.prodet-page .prodet-1 .right .proview-img .slick-next{
			background:rgba(0,0,0,.5) url(../images/banner-btn-r.png) no-repeat center;
      background-size: 80%;
			left:auto;
			right:20px;
}
.prodet-page .custom-page .custom-3 {
      padding: 0;
    background: linear-gradient(to right, #fff 50%,rgba(0,0,0,0) 50%);
}
.prodet-page .custom-page .custom-3 .ui.container{
  display: flex;
}
.prodet-page .custom-page .custom-3 .list>ul>li {
  padding-left: 0;
}
.prodet-page .custom-page .custom-3 .list>ul>li i {
  display: none;
}
.prodet-page .prodet-2 h2 {
  display: inline-block;
  font-size: 24px;
}
.prodet-page .prodet-2 .btn {
  float: right;
}
.prodet-page .prodet-2 .btn div {
  width: 36px;
  height: 36px;
  display: inline-block;
  margin-left: 10px;
  border: 1px solid #e73032;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
  color: var(--primary);
}
.prodet-page .prodet-2 .btn div:hover {
  color: white;
  background: var(--primary);
}
.prodet-page .prodet-2 .list {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
}
.prodet-page .prodet-2 .list ul {
  margin: -12px;
}
.prodet-page .prodet-2 .list ul li {
  padding: 12px;
  text-align: center;
}
.prodet-page .prodet-2 .list ul li .box {
  padding: 15px;
  background: white;
  background: url("../images/init-2-2.jpg") center center;
  background-size: cover;
  text-align: center;
  position: relative;
  -o-box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
}
.prodet-page .prodet-2 .list ul li .box img{
  display: inline-block;
}
.prodet-page .prodet-2 .list ul li .box span {
  font-size: 14px;
  color: #404040;
  text-transform: uppercase;
  
  position: absolute;
  top: 40px;
  right: 20px;
  display: block;
}
.prodet-page .prodet-2 .list ul li .box span i {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: block;
  margin: 0 auto 5px;
}
.prodet-page .prodet-2 .list ul li .box h5 {
font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    padding-top: 20px;
    height: 80px;
    font-weight: bold;
    line-height: 2;
}
.prodet-page .prodet-2 .list ul li .box:hover h5 {
  color: var(--primary);
}
.honor-page {
  padding: 130px 0 160px;
  text-align: center;
  overflow: hidden;
}
.honor-page .text {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  display: block;
  margin: 15px auto 20px;
  line-height: 30px;
}
.honor-page .list {
  margin-top: 10px;
  position: relative;
}
.honor-page .list ul li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.honor-page .list ul li img {
  width: 100%;
}
.honor-page .list ul .slick-slide li {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  left: 90%;
}
.honor-page .list ul .slick-slide + div.slick-active li {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  left: 45%;
}
.honor-page .list ul .slick-slide + div.slick-active + div.slick-current li {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  left: 0;
  z-index: 2;
}
.honor-page .list ul .slick-slide + div.slick-active + div.slick-current + div.slick-active li {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  left: -45%;
  z-index: 1;
}
.honor-page .list ul .slick-slide + div.slick-active + div.slick-current + div.slick-active + div.slick-slide li {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  left: -90%;
}
.honor-page .list ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  background-size: 12px;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.honor-page .list ul .slick-arrow.slick-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 0;
}
.honor-page .list ul .slick-arrow.slick-next {
  background-image: url("../images/banner-btn-r.png");
  right: 0;
}
.honor-page .list ul .slick-arrow:hover {
  background-color: var(--primary);
}
.contact-page .contact-1 {
  padding-top: 80px;
}
.contact-page .contact-2 {
  padding: 100px 0 80px;
}
.contact-page .contact-1 .list ul {
  margin: -8px;
}
.contact-page .contact-1 .list ul li {
  padding: 8px;
}
.contact-page .contact-1 .list ul li .box {
  -o-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  -webkit-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  text-align: center;
  padding-bottom: 30px;
}
.contact-page .contact-1 .list ul li .box span {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: var(--primary);
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.contact-page .contact-1 .list ul li .box span i {
  color: white;
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
}
.contact-page .contact-1 .list ul li .box span:after {
  content: '';
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: inherit;
}
.contact-page .contact-1 .list ul li .box span:before {
  content: '';
  border-right: 13px solid transparent;
  border-bottom: 12px solid var(--primary);
  position: absolute;
  left: 100%;
  bottom: 100%;
}
.contact-page .contact-1 .list ul li .box h5 {
  font-size: 21px;
  line-height: 1.6;
  padding: 25px 0 15px;
  font-weight: bold;
}
.contact-page .contact-1 .list ul li .box p {
  font-size: 15px;
  line-height: 30px;
  font-weight: normal;
  min-height: 100px;
}
.contact-page .contact-2 .left {
    width: 50%;
    vertical-align: middle;
}
.contact-page .contact-2 .left .img {
  position: relative;
}
.contact-page .contact-2 .left .img .text {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 10%;
  padding: 0 30px;
  color: white;
  text-align: left;
}
.contact-page .contact-2 .left .img .text h5 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  text-transform: capitalize;
}
.contact-page .contact-2 .left .img .text p {
  font-size: 16px;
  line-height: 30px;
  margin: 15px 0;
}
.contact-page .contact-2 .left .img .text a.more {
  display: inline-block;
  line-height: 36px;
  height: 38px;
  padding: 0 30px;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .right {
       width: 50%;
    padding-right: 65px;
    vertical-align: middle;
}
.contact-page .contact-2 .left .list ul li {
    width: 100%;
}
.contact-page .contact-2 .right h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
      text-transform: capitalize;
}
.contact-page .contact-2 .right .form {
  margin-top: 30px;
}
.contact-page .contact-2 .right .form li label {
    font-size: 18px;
    text-transform: capitalize;
}

.service-page {
  margin-bottom: 170px;
}
.service-page .list {
  padding: 60px 0 100px;
}
.service-page .list ul {
  margin: 0 -50px;
}
.service-page .list ul li {
  padding: 0 50px;
  text-align: center;
  position: relative;
}
.service-page .list ul li:after {
  content: '==>';
  font-size: 28px;
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  top: 65px;
  left: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 5px;
  line-height: 1;
}
.service-page .list ul li:last-child:after {
  display: none;
}
.service-page .list ul li h6 {
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
  text-transform: uppercase;
  margin-top: 15px;
  font-weight: bold;
  word-break: initial;
}
.service-page .qr-list ul {
  margin: -10px;
}
.service-page .qr-list ul li {
  padding: 10px;
}
.service-page .qr-list ul li .box {
  padding: 45px 25px;
  -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);
}
.service-page .qr-list ul li .box .img {
  width: 40%;
  vertical-align: middle;
}
.service-page .qr-list ul li .box .text {
  width: 60%;
  padding-left: 20px;
  vertical-align: middle;
}
.service-page .qr-list ul li .box .text h3 {
  font-size: 26px;
  color: #131313;
  margin-bottom: 10px;
  line-height: 1;
}
.service-page .qr-list ul li .box .text p {
  font-size: 16px;
  color: #131313;
  line-height: 1.6;
}
.service-page .qr-list ul li .box .text p em {
  font-weight: bold;
}
.form ul {
  margin: -10px;
}
.form ul li {
  padding: 10px;
}
.form ul li input,
.form ul li textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  line-height: 30px;
}
.form ul li input:focus,
.contact-page .form ul li textarea:focus {
  border-color: var(--primary);
}
.form ul li textarea {
  height: 120px;
}
.form ul li input[type="submit"] {
  padding: 12px;
  max-width: 180px;
  border-color: black;
  background-color: transparent;
  font-weight: bold;
}
.form ul li input[type="submit"]:hover {
  color: white;
  background-color: var(--primary);
  border-color: var(--primary);
}
.form ul li.wid-100 {
  width: 100%;
}
.faq-page {
  padding: 120px 0;
}
.faq-page ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.faq-page ul li h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.8;
}
.faq-page ul li .content {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 16px;
  line-height: 30px;
}
.faq-page ul li:last-child {
  margin-bottom: 0;
}
.news-page {
padding: 70px 0;
}
.news-page .list ul {
  margin: -10px;
}
.news-page .list ul li {
  padding: 10px;
}
.news-page .list ul li .img-box {
  display: block;
}
.news-page .list ul li .img-box img {
  width: 100%;
}
.news-page .list ul li .content {
  padding: 15px;
  border: 1px solid #eee;
  line-height: 2;
}
.news-page .list ul li .content h4 {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.8;
}
.news-page .list ul li .content p {
    font-size: 16px;
    line-height: 30px;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #666;
    font-weight: 500;
}
.news-page .list ul li .content a.more {
  display: inline-block;
  line-height: 34px;
  height: 34px;
  padding: 0 25px;
  border: 1px solid #eee;
  font-size: 16px;
  color: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .list ul li .content a.more:hover {
  color: white;
  background: var(--primary);
}
.newdet-page {
  padding: 20px 0;
}
.newdet-page h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
.newdet-page time {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 20px;
  text-align: center;
}
.newdet-page .content {
  display: block;
  font-size: 16px;
  line-height: 2;

}
.newdet-page .m-link {
  font-size: 16px;
  line-height: 30px;
}
.newdet-page .m-link a {
  display: block;
}
.newdet-page .m-link a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1500px) {
  #innerHeader .box .menu-box ul.menu > li {
    margin: 0 5px;
  }
  #innerHeader .box {
    padding-right: 15px;
  }
  #innerHeader .logo {
    padding-left: 30px;
    padding-right: 20px;
  }
  #innerHeader {
    line-height: 80px;
    height: 80px;
  }
  .inner-banner {
    height: 600px;
  }
  .service-page .qr-list ul li .box {
    padding: 30px 15px;
  }
  .contact-page .contact-2 .right h3 {
    font-size: 28px;
  }
  .contact-page .form ul li input,
  .contact-page .form ul li textarea,
  .contact-page .form ul li input[type="submit"] {
    padding: 10px;
  }
  .contact-page .contact-2 .left .img .text h5 {
    font-size: 18px;
  }
  .honor-page {
    padding: 80px 0;
  }
  .honor-page .list {
    margin-top: 50px;
  }
  .prodet-page {
    padding: 80px 0;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 40px;
  }
  .prodet-page .prodet-1 .right .content {
    padding: 30px 0 50px;
  }
  .custom-page .custom-3 .list ul li .content {
    font-size: 16px;
  }
  .product-page .sideBox .slideRight {
    padding-left: 30px;
  }
  .product-page .sideBox .slideLeft .box .list ul li a {
    font-size: 16px;
  }
  .product-page .sideBox .slideRight .list ul li .box .left h4 {
    font-size: 16px;
  }
  .product-page .sideBox .slideRight .list ul li .box .left {
    padding: 25px 0 25px 15px;
  }
  .product-page .sideBox .slideLeft .box.playBg .play h6 {
    font-size: 18px;
  }
  .proyd-page .box .right ul li .box2 h5 {
    font-size: 24px;
  }
  /*a.more {
    line-height: 40px;
    height: 40px;
    font-size: 16px;
    padding: 0 16px;
  }*/
  .proyd-page .box .left .box2 {
    padding-left: 30px;
  }
  .proyd-page .box .left .box2 h6 {
    font-size: 18px;
  }
  .proyd-page .box .left .box2 .text {
    font-size: 14px;
    margin: 15px 0 20px;
  }
  .proyd-page .box .left .box2 .play h5 {
    font-size: 14px;
  }
  .proyd-page .box .right {
    background-size: 100% auto;
  }
  .proyd-page .box .right ul li .box2 .list dl dd {
    font-size: 14px;
  }
  .case-page {
    padding: 80px 0;
  }
  .case-page .list ul li a.img h6 {
    font-size: 22px;
    padding: 15px;
  }
  .case-page h2,
  .technology-page h2,
  .custom-page h2,
  .about-page h2,
  .prodet-page .prodet-1 .right h1 {
    font-size: 32px;
  }
  .technology-page {
    padding: 80px 0;
  }
  .technology-page .technology-2 ul li .box h5 {
    font-size: 22px;
  }
  .technology-page .technology-2 ul li .box .text {
    margin: 20px 0;
    font-size: 16px;
  }
  .technology-page .technology-2 ul li .box {
    padding: 30px;
  }
  .custom-page .custom-1 {
    padding: 120px 0 80px;
  }
  .custom-page .custom-4 .form ul li input,
  .custom-page .custom-4 .form ul li textarea {
    padding: 10px;
  }
  .custom-page .custom-4 .form ul li input[type="submit"] {
    padding: 10px 40px;
  }
  .about-page .about-1 .list ul li h5 {
    font-size: 60px;
  }
  .about-page .about-2 .list ul li .left strong {
    font-size: 30px;
  }
  .contact-page .contact-1 .list ul li .box h5 {
    font-size: 18px;
    line-height: 1.8;
  }
  .custom-page .custom-3 .list ul li h5 {
    font-size: 26px;
  }
  .support-page .init-5 h2 {
    font-size: 36px;
  }
  .about-page .about-1 .list ul li h5 {
    font-size: 32px;
    }
}
@media screen and (max-width: 1250px) {
  #innerHeader .box .menu-box ul.menu > li {
    margin: 0 15px;
    font-size: 16px;
  }
  #innerHeader .logo img {
    max-height: 50px;
  }
  .product-page .sideBox .slideLeft .box .list ul li a {
    padding: 10px 30px 10px 10px;
  }
  .product-page .sideBox .slideLeft .box .list ul li a span {
    top: 16px;
    right: 10px;
  }
  .product-page .sideBox .slideLeft .box h4 {
    font-size: 16px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li:last-child a {
    font-size: 13px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li a {
    padding-left: 45px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li a i {
    width: 30px;
    top: 6px;
  }
  .product-page .sideBox .slideLeft .box.playBg .play h6 {
    font-size: 14px;
  }
  .product-page .sideBox .slideRight .list ul li .box .left h4 {
    font-size: 16px;
    line-height: 2;
  }
  .product-page .sideBox .slideRight .list ul li .box .left p {
    font-size: 13px;
  }
  .product-page {
    padding: 60px 0;
  }
  .inner-page .m-page {
    margin-top: 40px;
  }
  .proyd-page .box .left .box2 h6 {
    font-size: 15px;
  }
  .proyd-page .box .left .box2 i.tag {
    font-size: 12px;
  }
  .proyd-page .box .left .box2 i.tag img {
    width: 30px;
  }
  .proyd-page .box .left .box2 .text {
    font-size: 13px;
  }
  .proyd-page .box .left .box2 .play h5 {
    font-size: 12px;
  }
  .proyd-page .box .right ul li .box2 h5 {
    font-size: 18px;
    margin: 40px 0 20px;
  }
  .news-page .list ul li .content a.more {
    line-height: 30px;
    height: 32px;
    font-size: 16px;
    padding: 0 15px;
  }
  .proyd-page .box .right ul li .box2 .list dl dd {
    font-size: 13px;
  }
  .proyd-page .box .right ul li .box2 {
    padding: 0 15px;
  }
  .case-page h2,
  .technology-page h2,
  .custom-page h2,
  .about-page h2,
  .prodet-page .prodet-1 .right h1,
  .prodet-page h2 {
    font-size: 28px;
  }
  .prodet-page .custom-page .custom-3 {
    padding: 60px 0;
  }
  .custom-page .custom-3 .list ul li .content table tbody td:first-child {
    padding-right: 5%;
  }
  .custom-page .custom-3 .list ul li .content table tbody td:last-child {
    padding-left: 5%;
  }
  .custom-page .custom-3 .list ul li .content {
    font-size: 16px;
    line-height: 30px;
  }
  .news-page,
  .newdet-page {
    padding: 60px 0;
  }
  .inner-banner {
    height: 400px;
  }
  .inner-banner h2 {
    font-size: 48px;
  }
  .newdet-page .content,
  .technology-page .technology-1 .list ul li {
    font-size: 16px;
  }
  .about-page i.tag {
    font-size: 16px;
  }
  .technology-page .technology-2 ul li .box h5 {
    font-size: 18px;
    line-height: 1.8;
  }
  .faq-page {
    padding: 60px 0;
  }
  .faq-page ul li h4 {
    font-size: 16px;
    line-height: 30px;
  }
  .faq-page ul li .content {
    font-size: 16px;
  }
  .custom-page .custom-1 .box .img {
    width: 170px;
  }
  .custom-page .custom-1 .box .img .play h6 {
    font-size: 16px;
  }
  .custom-page .custom-3 .list ul li i {
    width: 40px;
    top: 21px;
  }
  .custom-page .custom-3 .list ul li h5 {
    font-size: 22px;
  }
  .custom-page .custom-4 .form ul li input,
  .custom-page .custom-4 .form ul li textarea,
  .contact-page .form ul li input,
  .contact-page .form ul li textarea {
    font-size: 16px;
  }
  .contact-page .contact-1 .list ul li .box p {
    font-size: 16px;
  }
  .service-page .qr-list ul li .box .text h3 {
    font-size: 20px;
  }
  .service-page .qr-list ul li .box .text p {
    font-size: 14px;
  }
  .contact-page .contact-2 .right h3 {
    font-size: 24px;
  }
  .contact-page .contact-2 .left .img .text {
    padding: 0 15px;
  }
  .contact-page .contact-2 .left .img .text h5 {
    font-size: 17px;
  }
  .contact-page .contact-2 .left .img .text p {
    font-size: 15px;
  }
  .case-page .list ul li a.img h6 {
    font-size: 18px;
  }
  .about-page .about-3 .list ul li i {
    height: 80px;
    background-size: auto 100%;
  }
  .about-page .about-3 .list ul li h5 {
    font-size: 18px;
  }
  .about-page .about-3 .list ul li p {
    font-size: 16px;
  }
  .about-page .about-3 .list ul li {
    padding: 30px 15px;
  }
  .about-page .about-2 .list ul li .left {
    font-size: 14px;
  }
  .about-page .about-2 {
    background-position: center bottom 45%;
  }
  .about-page .about-1 .list ul li h5 {
    font-size: 44px;
  }
  .about-page .about-1 .list ul li p {
    font-size: 18px;
  }
  .about-page .about-1 .list ul li h5 sub {
    font-size: 20px;
  }
  .about-page .about-3 {
    padding: 60px 0;
    line-height: 2;
  }
  .prodet-page .about-page .about-3{
    padding: 0 0 30px;
  }
  .about-page .about-5 .right ul li img {
    top: 0 !important;
  }
  .about-page .about-5 .right ul li {
    padding: 5px;
  }
  .about-page .about-5 .right ul {
    margin: -5px;
  }
  .about-page .about-5 {
    padding: 60px 0;
  }
  .support-page .init-5 h2 {
    font-size: 28px;
  }
  .proyd-page {
    margin-top: 40px;
  }
  .support-page .init-5 {
    padding: 50px 0;
  }
  .support-page .init-5 i.tag {
    font-size: 20px;
  }
  #innerHeader {
    display: none !important;
  }
  .proyd-page .box .right ul li {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
  }
  .proyd-page .box .right ul li .img {
    opacity: 1;
    overflow: hidden;
    width: 100%;
    left: 0 !important;
    background-size: cover;
  }
  .proyd-page .box .right ul li .box2 {
    color: white;
    bottom: 10px;
  }
  .proyd-page .box .right ul li .box2 h5 {
    margin: 20px 0 10px;
  }
}
@media screen and (max-width: 1000px) {
  .support-page .init-5 h2 {
    font-size: 24px;
  }
  .inner-banner {
    height: 300px;
  }
  .about-page .about-1 {
    padding: 80px 0;
  }
  .about-page .about-1 .content {
    font-size: 16px;
    line-height: 2;
    padding: 20px 0 50px;
    color: black;
  }
  .about-page .about-1 .list ul li h5 {
    font-size: 32px;
  }
  .about-page .about-1 .list ul li p {
    font-size: 16px;
  }
  .about-page .about-1 .list ul li {
    width: 25%;
  }
  .about-page .about-1 .list ul li h5 sub {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .about-page .about-2 {
    padding: 50px 0;
  }
  .about-page .about-2 .list ul li .left strong {
    font-size: 24px;
  }
  .about-page .about-2 .list:after {
    top: 30px;
  }
  .case-page h2,
  .technology-page h2,
  .custom-page h2,
  .about-page h2,
  .prodet-page .prodet-1 .right h1,
  .prodet-page h2 {
    font-size: 24px;
  }
  .about-page .about-2 .list ul li .left {
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-2 .list ul li i.circle {
    top: -13px;
  }
  .about-page .about-3 .content {
    font-size: 16px;
  }
  .about-page .about-3 .list ul li i {
    height: 60px;
  }
  .about-page .about-3 .list ul li {
    width: 50%;
  }
  .about-page .about-3 .list ul li:nth-child(2),
  .about-page .about-3 .list ul li:nth-child(5) {
    top: 0;
  }
  .about-page .about-4 .text {
    font-size: 16px;
    margin: 10px 0 40px;
    line-height: 2;
  }
  .about-page .about-5 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .about-page .about-5 .left {
    width: 100%;
  }
  .case-page .list ul li a.img h6 {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-page .contact-1 .list ul li {
    width: 50%;
  }
  .contact-page .contact-2 .right {
    width: 100%;
    padding-left: 0;
  }
  .contact-page .contact-2 .left {
    width: 100%;
  }
  #mapContainer {
    height: 300px !important;
  }
  .custom-page .custom-2 h2,
  .custom-page .custom-2 .text {
    width: 100%;
  }
  .custom-page .custom-2 .text {
    font-size: 16px;
  }
  .custom-page .custom-2 .iconList {
    display: none;
  }
  .custom-page .custom-2 .list {
    margin-top: 30px;
  }
  .custom-page .custom-2 {
    padding: 50px 0;
  }
  .custom-page .custom-2 .list ul li {
    padding: 0 10px;
  }
  .custom-page .custom-2 .list ul {
    margin: 0 -10px;
  }
  .custom-page .custom-3 {
    padding: 60px 0;
  }
  .technology-page .technology-2 ul li {
    width: 100% !important;
  }
  .technology-page .technology-2 ul li .box .box2 {
    margin-top: 20px;
  }
  .honor-page .text {
    font-size: 14px;
  }
  .newdet-page h2 {
    font-size: 24px;
  }
  .prodet-page .prodet-1 .right .btn a {
    line-height: 32px;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
  }
  .prodet-page .prodet-1 .right {
    width: 60%;
    padding-left: 3%;
  }
  .prodet-page .prodet-1 .left {
    width: 40%;
  }
  .prodet-page .prodet-1 .right .content h6 {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right .content {
    font-size: 16px;
    line-height: 2;
  }
  .prodet-page .prodet-1 .right .content {
    padding: 15px 0;
  }
  .prodet-page .prodet-1 .right .btn {
    padding: 20px 0;
  }
  .prodet-page .prodet-1 .right .share {
    margin-top: 10px;
  }
  .prodet-page {
    padding: 60px 0 30px;
  }
  .product-page .sideBox .slideRight {
    width: 100%;
    padding-left: 0;
  }
  .product-page .sideBox .slideRight .hmvillaelevator1{
    display: none!important;
  }
  .product-page .sideBox .slideLeft {
    display: none;
  }
  .proyd-page .box .right {
    width: 100%;
  }
  .proyd-page .box .left {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .support-page .init-5 h2 {
    font-size: 20px;
    line-height: 34px;
  }
  .product-page .sideBox .slideRight .list ul li {
    width: 100%;
  }
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
  }
  .custom-page .custom-3 .list ul li .content table tbody td {
    display: block !important;
    width: 100%;
    padding: 0 !important;
    border-right: none;
  }
  .custom-page .custom-3 .list ul li .content table tbody td:first-child {
    border-right: none;
  }
  .inner-banner h2 {
    font-size: 36px;
    margin-bottom: -7px;
  }
  .inner-banner {
    height: 240px;
  }
  .zjsinoraypro1{
    display: none;
  }
  .zjsinoraypro{
    display: none;
  }
  .MsoNormal{
    display: none;
  }
  .custom-page .custom-1 .box .img {
    width: 120px;
    margin-left: 5%;
  }
  .custom-page .custom-1 .box .img .play p {
    margin-left: 0;
    display: none;
  }
  .custom-page .custom-1 .box .img .play h6 {
    max-width: 200px;
    white-space: normal;
  }
  .custom-page i.tag {
    font-size: 16px;
  }
  .service-page .qr-list ul li {
    width: 100% !important;
  }
  .service-page .qr-list ul li .box {
    padding: 10px;
  }
  .contact-page .contact-1 {
    padding: 40px 0;
  }
  .about-page .about-3 .list ul li {
    width: 100%;
  }
  .about-page .about-1 .list ul li {
    width: 50%;
    margin-bottom: 10px;
  }
  .about-page .about-1 .list ul li:nth-child(2):after {
    display: none;
  }
  .about-page .about-1 {
    padding: 50px 0;
  }
  .about-page .about-2 .list ul li .left {
    width: 100% !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    left: 0 !important;
    text-align: left;
  }
  .about-page .about-2 .list ul li .right {
    width: 100% !important;
    display: block;
    padding-left: 60px !important;
    padding-right: 0 !important;
    left: 0 !important;
    padding-top: 10px;
  }
  .about-page .about-2 .list ul li i.circle {
    left: -62px !important;
    right: auto !important;
  }
  .about-page .about-2 .list:after {
    left: 20px !important;
  }
  .about-page .about-2 {
    background-image: none;
  }
  .about-page .about-2 .list ul li i.circle svg {
    background: black !important;
  }
  .about-page .about-3 .list ul li p {
    height: auto !important;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner h2 {
    font-size: 14px;
  }
  .inner-banner {
    height: 260px;
  }
  .inner-banner .box .mbx {
    font-size: 16px;
    line-height: 1.5;
  }
  .case-page {
    padding: 50px 0;
  }
  .case-page h2,
  .technology-page h2,
  .custom-page h2,
  .about-page h2,
  .prodet-page .prodet-1 .right h1,
  .prodet-page h2 {
    font-size: 20px;
    line-height: 1.8;
  }
  .service-page .qr-list ul li .box .text h3 {
    font-size: 16px;
  }
  .service-page .qr-list ul li .box .text {
    padding-left: 10px;
    width: 70%;
  }
  .service-page .qr-list ul li .box .img {
    width: 30%;
  }
  .service-page .qr-list ul li .box .text p {
    font-size: 12px;
  }
  .contact-page .contact-1 .list ul li {
    width: 100%;
  }
  .contact-page .contact-1 .list ul li .box p {
    height: auto;
    min-height: auto;
  }
  .contact-page .contact-1 .list ul li .box span {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .contact-page .contact-1 .list ul li .box span i {
    font-size: 20px;
  }
  .contact-page .contact-2 .right h3 {
    font-size: 20px;
    line-height: 1.8;
  }
  .custom-page .custom-3 .list ul li h5 {
    font-size: 16px;
    line-height: 30px;
  }
  .custom-page .custom-3 .list ul li h5 span {
    top: 3px;
  }
  .custom-page .custom-3 .list ul li {
    padding: 10px;
    width: 100%;
  }
  .custom-page .custom-3 .list ul li i {
    width: 30px;
    top: 14px;
  }
  .technology-page .technology-2 ul li .box .box2 .right {
    width: 100%;
    padding-left: 0;
  }
  .technology-page .technology-2 ul li .box .box2 .left {
    width: 100%;
  }
  .technology-page .technology-2 ul li .box img {
    max-height: 120px;
  }
  .honor-page .list ul li {
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    left: 0 !important;
  }
  .honor-page {
    padding: 40px 0;
  }
  .prodet-page .prodet-1 .right .btn a {
    margin-right: 15px;
    font-size: 16px;
  }
  .prodet-page .prodet-2 .btn div {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
  .proyd-page .box .right {
    padding: 15px;
  }
  .proyd-page .box .right ul li .box2 h5 {
    font-size: 16px;
    line-height: 30px;
  }
  .proyd-page .box .right ul li:last-child {
    margin-bottom: 0;
  }
}
.inner-page a.more {
  display: inline-block;
  line-height: 50px;
  height: 50px;
  padding: 0 24px;
  font-size: 18px;
  
  text-transform: uppercase;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 1;
  overflow: hidden;
}
.inner-page a.more:after {
  content: '';
  width: 1%;
  top: 0;
  border: 1px solid var(--primary);
  left: -30%;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: absolute;
  display: block;
  height: 100%;
}
.inner-page a.more:before {
  content: '';
  width: 100%;
  right: 0;
  top: 0;
  background: var(--primary);
  position: absolute;
  height: 100%;
  -webkit-transition: .9s .3s;
  -moz-transition: .9s .3s;
  transition: .9s .3s;
}
.inner-page a.more.active:after {
  left: 0;
}
.inner-page a.more.active:before {
  width: 0;
}
.inner-page a.more:hover {
  color: white;
}
.inner-page a.more:hover:after {
  width: 100%;
  background: var(--primary);
}



#banner .banner-list .slick-dots li{
  display: none;
}

#index-body .i-product .tit p {
    font-size: 16px;
    font-weight: bold;
    word-break: break-all;
    line-height: 2;
}


#index-body .i-equipment .tit p {
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
}


#index-body .i-news .news-list ul li p {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
}

#index-body .i-help .form form ul li:last-child input{
  letter-spacing: 5px;
}

.inner-banner.active .box {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.inner-banner .box .content {
    max-width: 1230px;
    margin: 0 auto;
    text-align: left;
}

.inner-banner .box .content .mbx {
    display: block;
    font-size: 18px;
    line-height: 30px;
    position: relative;
    z-index: 2;
}
.inner-banner h2 {
    font-size: 40px;
    line-height: 2;
    color: #fff;
    position: relative;
    margin: 20px 0;
    text-transform: capitalize;
    z-index: 1;
}
.inner-banner h1 {
    font-size: 40px;
    line-height: 2;
    color: #fff;
    position: relative;
    margin: 20px 0;
    text-transform: capitalize;
    z-index: 1;
}
.inner-banner.active .box h2:after {
    left: 0;
    opacity: 1;
    -webkit-transition: 1.8s .5s;
    -moz-transition: 1.8s .5s;
    -ms-transition: 1.8s .5s;
    -o-transition: 1.8s .5s;
    transition: 1.8s .5s;
}
.inner-banner h2:after {
    content: attr(data-text);
    font-size: 120px;
    color: transparent;
    /*font-family: 'Oswald',sans-serif;*/
    text-stroke: 1px rgb(233 233 233/20%);
    -webkit-text-stroke: 1px rgb(233 233 233/20%);
    line-height: 1;
    position: absolute;
    bottom: 0;
    left: -20%;
    z-index: -2;
    opacity: 0;
}

.inner-banner .btn {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}
.inner-banner .btn a.more {
    line-height: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    padding: 0 35px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.inner-banner .btn a.more.contact {
    padding-left: 20px;
    background: #fff;
    color: #000;
    margin-left: 10px;
    padding-right: 0;
}
.inner-banner .btn a.more.contact i {
    text-align: center;
    color: #fff;
    background: var(--primary);
    width: 50px;
    margin-left: 20px;
    display: inline-block;
    height: 100%;
    vertical-align: top;
    padding-top: 15px;
}
/*.inner-banner.active:after {
    opacity: .3;
    -webkit-transition: 1.2s 1s;
    -moz-transition: 1.2s 1s;
    -ms-transition: 1.2s 1s;
    -o-transition: 1.2s 1s;
    transition: 1.2s 1s;
}
.inner-banner:after {
    content: '';
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 1;
}*/


.inner-banner .box .content {
    max-width: 1230px;
    margin: 0 auto;
    text-align: left;
}


.about-page .about-1 .content p {
    line-height: 2;
    padding: 5px 0;
    font-weight: 500;
    color: #000;
}

/*关于我们视频*/
.inner-page.about-page .i-video {
    position: relative;
    padding: 15% 0;
    background: url(/zjsinoraymetal/2022/05/30/ab-bg02.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.inner-page.about-page .i-video a.play {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.54);
    cursor: pointer;
}
.inner-page.about-page .i-video .play:after, .inner-page.about-page .i-video .play:before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    background: rgba(255,255,255,.35);
    -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;
    z-index: -1;
}
.inner-page.about-page .i-video .play:after {
    -webkit-animation-delay: .5s;
    -o-animation-delay: .5s;
    -ms-animation-delay: .5s;
    -moz-animation-delay: .5s;
    animation-delay: .5s;
}
.inner-page.about-page .i-video a.play img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

/*关于我们视频-end*/



#index-body .i-recommend-product .init-bottom .grid-box .column:nth-child(2) li .img {
       padding: 0 5%;
       text-align: center;
}
#index-body .i-recommend-product .init-bottom .grid-box .column:nth-child(2) li .img img {
    margin: 0 auto;
    width: 80%;
}

#index-body .i-recommend-product .init-bottom .grid-box .column:nth-child(2) li .text {
 padding: 2% 8%;
}

#index-body .i-recommend-product .init-top ul li:first-child {
    padding-left: 0px;
}

.product-page .sideBox .slideLeft .box .list ul li:hover a {
    padding-left: 40px;
}
.product-page .sideBox .slideLeft .box .list ul li a {
    padding-left: 30px;
}

.product-page .sideBox .slideLeft .box .list.info ul li:hover a {
    padding-left: 60px;
}

.product-page .sideBox .slideLeft .box .list.info ul li img {
    filter: drop-shadow(0 -300px var(--primary));
    position: relative;
    top: 300px;
}


.product-page .sideBox .slideRight .hmvillaelevator1 p {
    font-weight: 500;
    font-size: 16px;
}







/*分类栏*/

.inner-page.news-page .sidebar-nav {
  width: 23%;
}
.inner-page.news-page .sidebar-nav form {
  position: relative;
}
.inner-page.news-page .sidebar-nav form input[type="text"] {
  width: 100%;
  height: 70px;
  border-radius: 5px;
  background: #f2f1ec;
  padding: 0 2.5rem;
  font-size: 1.8rem;
  color: #000;
  border: none;
}
.inner-page.news-page .sidebar-nav form input[type="submit"] {
  width: 30px;
  height: 30px;
  background: url(../images/pro-search.png) no-repeat center center;
  right: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
}
.inner-page.news-page .sidebar-nav h2 {
font-size: 24px;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: 50px 0 25px;
    font-weight: 700;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li .top{
  padding-left:30px;
  position: relative; 
    border-bottom: 2px solid #eeede7;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li .top .cat4 {
  position: absolute;
  font-size: 2rem;
  color: #bdc2c6;
  line-height: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  cursor: pointer;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li .top.opennav .cat4{
    /*transform: rotateZ(90deg)*/
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li .top:after:hover{
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li .top a{
    border: none;

}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li .top a:after{
content: none;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a:hover::after {
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a {
    text-transform: capitalize;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 18px 0 18px 25px;
    font-size: 18px;
    line-height: 1;
    color: #000;
    border-bottom: 2px solid #eeede7;
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a:hover {
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a:hover span {
  background: var(--primary);
  color: #fff;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a:hover::after {
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a::after {
  position: absolute;
  content: "\f0da";
  font-family: "FontAwesome";
  font-size: 2rem;
  color: #bdc2c6;
  line-height: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li a span {
  display: inline-block;
  padding: 5px 1.2rem;
  border-radius: 5px;
  background: #eeede7;
  font-size: 20px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li.active > a {
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li.active > a::after {
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .sidebar-nav-list li.active > a span {
  background: var(--primary);
  color: #fff;
}
.inner-page.news-page .sidebar-nav .related {
  margin: 40px 0;
}
.inner-page.news-page .sidebar-nav .related-list {
  margin-bottom: 6rem;
}
.inner-page.news-page .sidebar-nav .related-list li {
  margin-bottom: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page.news-page .sidebar-nav .related-list li .related-img {
  display: block;
  max-width: 102px;
  border-radius: 5px;
  overflow: hidden;
}
.inner-page.news-page .sidebar-nav .related-list li .related-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.inner-page.news-page .sidebar-nav .related-list li .related-img img {
  width: 100%;
      transition: all .5s ease;
}
.inner-page.news-page .sidebar-nav .related-list li .content {
  padding-left: 1.5rem;
}
.inner-page.news-page .sidebar-nav .related-list li .content h4 {
  max-width: 230px;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.inner-page.news-page .sidebar-nav .related-list li .content h4:hover {
  color: var(--primary);
}
.inner-page.news-page .sidebar-nav .related-list li .content p {
  font-size: 14px;
  line-height: 1;
  color: #9a9a9a;
  margin-top: 5px;
}
.inner-page.news-page .sidebar-nav .related-list li:last-child {
  margin-bottom: 0;
}
.inner-page.news-page .sidebar-nav .sidebar-info {
margin-bottom: 45px;
    padding: 60px 30px 60px;
    border-radius: 5px;
    background: url(/zjsinoraymetal/2022/06/01/news-bg.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
}
.inner-page.news-page .sidebar-nav .sidebar-info h5 {
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.inner-page.news-page .sidebar-nav .sidebar-info p {
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.inner-page.news-page .sidebar-nav .sidebar-info .info-tel {
  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;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  margin: 2.5rem 0 2.8rem;
}
.inner-page.news-page .sidebar-nav .sidebar-info .info-tel img {
  margin-right: 2rem;
}
.inner-page.news-page .sidebar-nav .sidebar-info .icon a {
  margin: 0 1.4rem;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}

.inner-page.news-page .ui.container {
    /*display: flex;*/
    max-width: 1470px;
}

.inner-page.news-page .ui.container .list li.column {
    width: 33.33%;
}

.inner-page.news-page .ui.container .list {
    width: 77%;
    padding-right: 20px;
}

.inner-page.news-page .sidebar-nav .sidebar-info .icon a {
    margin: 0 14px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

.inner-page.news-page .sidebar-nav form input[type=text]{
  width: 100%;
    height: 70px;
    border-radius: 5px;
    background: #f2f1ec;
    padding: 0 25px;
    font-size: 18px;
    color: #000;
    border: none;
}

.inner-page.newdet-page h2 {
    font-size: 28px;
}
.inner-page.newdet-page .content p {
    line-height: 2;
    padding: 5px 0;
}
.inner-page.newdet-page .content p img {
    width: 50%;
    padding: 30px;
  
}

.huanse {
    background: #fff url(/template/en/images/footer-bg.png) no-repeat top center !important;
}

.product-page .sideBox .slideLeft .box .list ul li ul li a {
    background: #e1e1e1;
    margin-left: 20px;
        text-transform: capitalize;
}
.product-page .sideBox .slideLeft .box .list ul li:hover ul li a {
    padding-left: 30px;
}


.product-page .sideBox .slideRight .list ul li:hover a.more:after {
    width: 100%;
    background: var(--primary);
}

.inner-page.support {
    overflow: hidden;
}

/*support-page*/
.support-page h2 {
    color: #000;
    font-size: 3.8rem;
    line-height: 1.6;
}
.support-page .init-1 {
  padding: 8rem 0;
}
.support-page .init-1 .box {
  margin-top: 6rem;
}
.support-page .init-1 .box .left {
  padding-right: 2.5rem;
}
.support-page .init-1 .box .left h4 {
  display: block;
  font-size: 20px;
  line-height: 36px;
  text-transform: capitalize;
  font-weight: bold;
}
.support-page .init-1 .box .left .content {
  display: block;
  font-size: 16px;
  line-height: 30px;
  margin: 1rem 0 2.5rem;
}
.support-page .init-1 .box .left .content p {
  position: relative;
  font-weight: 500;
}
.support-page .init-1 .box .left .img {
  display: inline-block;
  position: relative;
}
.support-page .init-1 .box .left .img .play {
  line-height: 4rem;
  height: 4rem;
  border: 1px solid #06409a;
  border-radius: .5rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  cursor: hand;
}
.support-page .init-1 .box .left .img .play span {
  border-radius: .5rem;
  display: inline-block;
  vertical-align: top;
  background: rgba(10, 77, 182, 0.6);
  width: 7rem;
  height: 100%;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.support-page .init-1 .box .left .img .play span i {
  border-left: 2rem solid rgba(255, 255, 255, 0.8);
  border-bottom: 1.2rem solid transparent;
  border-top: 1.2rem solid transparent;
  display: block;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.support-page .init-1 .box .left .img .play h6 {
  display: inline-block;
  vertical-align: top;
  padding: 0 3.5rem;
  font-size: 1.4rem;
  color: white;
  text-transform: uppercase;
}
.support-page .init-1 .box .left .img .play:hover span {
  background: #254985;
}
.support-page .init-1 .box .left .img .play:hover span i {
  border-left-color: white;
}
.support-page .init-1 .box .right {
  padding-left: 2.5rem;
}
.support-page .init-1 .box .right h4 {
    font-size: 26px;
    line-height: 1.6;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-weight: bold;
}
.support-page .init-1 .box .right .content {
  display: block;
  font-size: 16px;
  line-height: 30px;
}
.support-page .init-1 .box .right .content .yskbearing h1{
  display: inline;
}
.support-page .init-1 .box .right .content p {
  padding-top: 3rem;
}
.support-page .init-1 .box .right .content p:first-child {
  padding-top: 0;
}
.support-page .init-1 .box .right a.more {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  padding: 0 1.5rem;
  border-radius: .5rem;
  background: black;
  color: white;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 2.8rem;
}
.support-page .init-1 .box .right a.more:hover {
  background: #254985;
}
.support-page .init-5 {
  background: url("../images/init-5-bg.jpg") left bottom no-repeat #254985;
  color: white;
}
.support-page .init-5 .box {
  padding: 15rem 0 8rem;
  overflow: hidden;
}
.support-page .init-5 .box .left {
width: 30%;
    padding-left: 9.5%;
    padding-right: 2%;
}
.support-page .init-5 .box .left h3 {
  display: block;
  font-size: 40px;
  line-height: 1.6;
      font-weight: bold;
    text-transform: uppercase;

}
.support-page .init-5 .box .left .text {
display: block;
    font-size: 17px;
    margin-top: 2.5rem;
    text-transform: capitalize;
    padding-right: 45px;
    line-height: 2;
}
.support-page .init-5 .box .right {
  width: 70%;
  padding: 15rem 0 8rem;
  margin: -15rem 0 -8rem;
  overflow: hidden;
}
.support-page .init-5 .box .right .slick-list {
  overflow: unset;
}
.support-page .init-5 .box .right ul li {
  padding: 0 11%;
  position: relative;
}
.support-page .init-5 .box .right ul li:after {
  content: '';
  width: 1px;
  height: 200%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
}
.support-page .init-5 .box .right ul li span {
  display: block;
  font-size: 1.8rem;
}
.support-page .init-5 .box .right ul li h4 {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  margin: 4.5rem 0 2rem;
  font-style: italic;
      font-weight: bold;
    text-transform: capitalize;
}
.support-page .init-5 .box .right ul li p {
    display: block;
    font-size: 18px;
    line-height: 1.8;
    min-height: 110px;
    text-transform: capitalize;
    font-weight: 500;
}
.support-page .init-5 .box .right ul li a.more {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid white;
  line-height: 3.6rem;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 8rem;
  border-radius: 100%;
  padding: 0;
}
.support-page .init-5 .btn {
  padding: 7rem 5rem;
  display: block;
  text-align: right;
}
.support-page .init-5 .btn div {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.8rem;
  text-transform: uppercase;
  opacity: .7;
  cursor: pointer;
  cursor: hand;
}
.support-page .init-5 .btn div.next {
  margin-left: 3rem;
}
.support-page .init-5 .btn div:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 1px;
  background: white;
  margin-left: 0;
  margin-top: -0.4rem;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.support-page .init-5 .btn div:hover {
  opacity: 1;
}
.support-page .init-5 .btn div:hover:after {
  width: 3.6rem;
  margin-left: 2rem;
}
.support-page .init-7 {
  padding: 8rem 0;
}
.support-page .init-7 .tit-top ul li{
font-size: 18px;
    color: var(--primary);
    font-weight: bold;
    line-height: 1.6;
    float: left;
    margin-right: 40px;
    text-transform: uppercase;
}

.support-page .init-7 .list ul {
  padding: 6rem 0;
  overflow: hidden;
}
.support-page .init-7 .list ul .slick-list {
  overflow: unset;
}
.support-page .init-7 .list ul li {
  position: relative;
  top: 0;
  -webkit-transition: .5s 1s;
  -moz-transition: .5s 1s;
  transition: .5s 1s;
}
.support-page .init-7 .list ul li a {
  display: block;
  background: white;
  height: 24rem;
  line-height: 22rem;
  text-align: center;
  border: 1px solid #f1f1f1;
  padding: 1rem;
}
.support-page .init-7 .list ul li a img {
  display: inline-block;
  vertical-align: middle;
}
.support-page .init-7 .list ul .slick-current li,
.support-page .init-7 .list ul .slick-current + div + div li,
.support-page .init-7 .list ul .slick-current + div + div + div + div li {
  top: -6rem;
}
.support-page .init-7 .list ul .slick-current + div li,
.support-page .init-7 .list ul .slick-current + div + div + div li {
  top: 6rem;
}



.inner-page.lg-page {
    overflow: hidden;
    padding: 100px;
}



.inner-page.support-page a.more:after {
    border: 0px solid var(--primary);
}

.zplc .cont li {
    width: 12.5%;
    text-align: center;
    position: relative;
    float: left;
    padding: 30px 0;
}
.zplc .cont li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 15px solid #196a59;
    border-bottom: 8px solid transparent;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
}
.zplc ul.cont {
    padding: 0;
    overflow: hidden;
}

.prodet-5 .out-door .grid-box .column:nth-child(2) {
    overflow-y: scroll;
    max-height: 380px;
        text-transform: capitalize;
        line-height: 2;
}

.prodet-5 .out-door .grid-box .column:nth-child(2) div {
    line-height: 1.8;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
}

.prodet-5 .out-door .grid-box .column{
      margin-top: 60px;
       padding-top: 0 !important;
}


.prodet-page .prodet-1 .right .content div {
    text-transform: capitalize;
    font-weight: 500;
    color: #000;
}


.prodet-5 .out-door .slant{
      border-bottom: 3000px solid rgba(195,13,34) !important;
}





.form ul li input[type=submit]{
      width: 100%;
      max-width: none;
          color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.inner-page.prodet-page .inner-page.about-page .about-3 {
    padding-top: 0;
}

.support-page .init-7 .list ul li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
  border-left: 15px solid var(--primary);
    border-bottom: 8px solid transparent;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
}

.support-page .init-7 .list ul li img {
    display: inherit;
}

.support-page .init-7 .list ul li{
  text-align: center;
  text-transform: capitalize;
}

.support-page .init-7 .list ul li img {
    filter: drop-shadow(0 -400px var(--primary));
    position: relative;
    top: 400px;
}

.inner-page.product-page.product-page2 .sideBox .slideRight .list ul li img {
        background: #f9f9f9;
}


.product-page .sideBox .slideRight .list ul li .img-box:hover img{
  transform: scale(1,1);
}

.huanse02 {
        background: #f1fcff url(/template/en/images/footer-bg.png) no-repeat top center !important;
}

/*add*/
#banner{
		    width: 100%;
    max-height: 935px;
    position: relative;
    overflow: hidden;
		}
	#banner	.swiper-container{
			width: 100%;
			height: 100%;
		}
#banner .swiper-wrapper{
			width: 100%;
			height: 100%;
		}
		#banner .swiper-slide{
			width: 100%;
			height: 100%;
			position: relative;
			z-index: 998;
			opacity: 0;
			transition: .5s all;
			background: #ededed;
		}
		#banner .swiper-slide:nth-child(2){
			background:#ededed;
		}
		#banner .swiper-slide:nth-child(3){
			background: #ededed;
		}
		#banner .imgs{
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			width: 100%;
			height: 100%;
			pointer-events: none;
			margin: 0 auto;
			z-index: 5;
		}
		#banner .imgs div{
			position: absolute;
			top: 0;
			right: 0;
			width: 100%;
			height: 100%;
		}
		#banner .enter-y{
			transform: translateY(58px) scale(1.3);
			opacity: 0;
			transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);
		}
		#banner .delay-1{
			transition-delay: .15s !important;
		}
		#banner .delay-2{
			transition-delay: .3s !important;
		}
		#banner .delay-3{
			transition-delay: .45s !important;
		}
		#banner .delay-4{
			transition-delay: .6s !important;
		}
		#banner .delay-5{
			transition-delay: .75s !important;
		}
		#banner .delay-6{
			transition-delay: .9s !important;
		}
		#banner .delay-7{
			transition-delay: 1.05s !important;
		}
		#banner .delay-8{
			transition-delay: 1.2s !important;
		}
		#banner .delay-9{
			transition-delay: 1.35s !important;
		}
		#banner .swiper-slide.swiper-slide-active{
			z-index: 999;
			opacity: 1;
		}
		#banner .swiper-slide.swiper-slide-active .imgs .enter-y{
			opacity: 1;
    		transform: translate(0) scale(1);
		}
		#banner .bg-word{
			position: absolute;
			left: 0;
			width: 100%;
			top: 50%;
			transform: translateY(-50%);
		}
		#banner .bg-word p{
			font-size: 391px;
			line-height: 1;
			color: #e7e7e7;
			pointer-events: none;
			font-weight: normal;
			line-height: initial;
			overflow: hidden;
			position: relative;
			letter-spacing: -20px;
			white-space: nowrap;
			/*font-family: 'Montserrat-Regular';*/
		}
		#banner .bg-word p span{
			display: inline-block;
			transform: scale(1);
    		opacity: 1;
			transition: all .8s cubic-bezier(.165,.84,.44,1);
			letter-spacing: -20px;
		}
		#banner .swiper-slide.swiper-slide-active .enter-y{
			opacity: 1;
    		transform: translate(0) scale(1);
		}
		/*#banner .text{
			position: absolute;
			left: 190px;
			bottom: 210px;
		}
    #banner .text h2{
      color: #666;
      font-size: 40px;
      font-weight: 700;
    }
    #banner .text p{
      color: #666;
      font-size: 16px;
      padding-bottom: 20px;
    }
		#banner .text img{
			width: auto;
			display: block;
		}*/
.tupian {
    position: absolute;
z-index: 999;
}



.index-nav .nav .menu-box .menu>li>a {
    color: #fff !important;
}
.index-nav .nav .menu-box .menu>li:hover>a {
    color: var(--primary) !important;
}

.index-nav .nav .menu-box .menu>li>a:after{
      background: var(--primary) !important;
}

.index-nav.h-header {
    position: fixed;

    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -o-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

.index-nav .nav .h-search .fa {
    color: #fff !important;
    font-size: 20px;
}

.index-nav .nav .language-choose span {
    height: 95px;
    display: block;
    font-weight: 700;
    cursor: pointer;
    color: #fff !important;
    font-size: 18px;
}


.product-page .sideBox .slideLeft .box .list ul li a span:after, .product-page .sideBox .slideLeft .box .list ul li a span:before{
  background: #000;
}

.product-page .sideBox .slideRight .list ul li .box .left h4 p {
    color: var(--primary);
    /*font-family: none;*/
    font-size: 18px;
}



.inner-page.prodet-page .prodet-1 {
    padding-bottom: 60px;
}


.prodet-5 .out-door .grid-box .column::-webkit-scrollbar-button {
    display: none;
}
.prodet-5 .out-door .grid-box .column::-webkit-scrollbar-track {
    background-color: #fff;
}
.prodet-5 .out-door .grid-box .column::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}

.product-page .sideBox .slideRight .list ul li .content {
    position: relative;
}
.product-page .sideBox .slideRight .list ul li .bianhao {
    position: absolute;
    z-index: 1;
    top: -60%;
    left: 5%;
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    /*font-family: none;*/
}





/*设备样式备份


.inner-page.lg-page .page-right-bar.fr .piclist li:nth-child(even) {
    flex-direction: row-reverse;
}

.inner-page.lg-page .page-right-bar.fr .piclist li {
  transition: all .3s ease;
    display: flex;
}

.inner-page.lg-page .page-right-bar.fr .piclist li .eq-img {
    width: 50%;
}
.inner-page.lg-page .page-right-bar.fr .piclist li .eq-text {
    width: 50%;
    padding: 3%;
        margin: auto;
        transition: all .3s ease;

}

.inner-page.lg-page .page-right-bar.fr .piclist li .eq-text h3 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: bold;
    padding-bottom: 15px
}

.inner-page.lg-page .page-right-bar.fr .piclist li .eq-text p {
    line-height: 1.8;
    padding: 5px;
    font-size: 15px;
}

.inner-page.lg-page .page-right-bar.fr .piclist li:hover {
    background: var(--primary);
    color: #fff;
    transition: all .3s ease;
}


*/

.inner-page.lg-page .page-right-bar.fr .piclist ul {
    overflow: hidden;
}

.inner-page.lg-page .page-right-bar.fr .piclist li {
    transition: all .3s ease;
    width: 33.33%;
    float: left;
padding: 20px;
}


.inner-page.lg-page .page-right-bar.fr .piclist li .eq-text {
      transition: all .3s ease;
    max-height: 200px;
    overflow-y: overlay;
    padding: 20px;
    margin-top: 15px;
}


.inner-page.lg-page .page-right-bar.fr .piclist li .eq-text h3 {
font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    padding-bottom: 5px;
}
.inner-page.lg-page .page-right-bar.fr .piclist li .eq-text p {
    line-height: 1.8;
    padding: 5px;
    font-size: 15px;
}

.inner-page.lg-page .page-right-bar.fr .piclist li .eq {
    background: #f7f7f7;
}



/*banner2 备份*/


#banner2 {
  position: relative;
}
/*#banner:after{ 
  content: '';position: absolute;
     background: url(/zjsinoraymetal/2022/06/22/dian.png) repeat;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
  z-index: 2;
  opacity: 0.15;
}*/
div#banner .layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}
#banner2 .text {
  position: absolute;
    text-align: center;
    color: #fff;
    width: 50%;
    left: 25%;
    top: 35%;
    z-index: 8;
    opacity: .9;
}
#banner2 .text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}
#banner2 .text p {
    font-size: 18px;
    padding-bottom: 45px;
}
#banner2 .text a.chanp {
    padding: 15px 25px;
    background: var(--primary);
}

/*banner2 备份*/

.prodet-page .prodet-1 .right ul {
    margin: 0 -15px;
}

.prodet-page .prodet-1 .right .proview-img li img {
    background: #fafafa;
}

.prodet-page .prodet-1 .right .proview-img li {
    padding: 15px;
}

.support-page .init-7 .tit-top h3 {
    font-size: 18px;
    padding-top: 20px;
}


.inner-page.about-page.shouye .about-1 {
    padding: 0px 0 100px;
    position: relative;
}


.support-page .init-7 .tit-top ul li {
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    text-transform: capitalize;
    border-radius: 15px;
        border: 1px solid var(--primary);
}

.support-page .init-7 .tit-top ul li:hover {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.about-page .about-3 .content p {
 color: #666;
    line-height: 1.8;
    padding: 5px 0;
}



div#slick-slide00 li:nth-child(1) .text a.more.active {
    margin: 3% 11%;
    color: rgba(54,88,134);
    text-align: center;
    background: rgba(255,255,255,.5);
}

div#slick-slide00 li:nth-child(1) .text {
    text-align: left;
    left: 8%;
}

div#slick-slide00 li:nth-child(1) .text p {
width: 78%;
    margin: 0 auto;
    text-transform: uppercase;
    /*font-family: 'Montserrat-ExtraLight';*/
    letter-spacing: 2px;
    font-weight: bold;
}

div#slick-slide00 li:nth-child(1) .text{
  display: none;
}

div#slick-slide00 li:nth-child(1) .layer {
    display: none;
}

div#slick-slide01 li .text{
  display: none;
}

div#slick-slide01 li .layer {
    display: none;
}

.slick-track {
    margin-left: 0;
}

.about-page h2.heiti {
    color: #000;
    padding: 30px 0 10px;
}
div#slick-slide02 li .layer {
    display: none;
}

div#slick-slide02 li .text{
  display: none;
}

.prodet-5{
			padding:80px 0;	
		}
		.prodet-5 .out-door{
			overflow:hidden;
			position:relative;
		}
		.prodet-5 .container img{	
			opacity: 0;
			filter: alpha(opacity=100);
		}
		.prodet-5 .fg-bg-layer{
			position: absolute;
			height: 100%;
			width: 100%;
			top: 0;
			right: 0;
			background:url(/template/en/images/footer-bg.png) no-repeat top center;
			background-attachment: fixed;
			background-size: cover;
		}
		.prodet-5 .out-door{
			position:relative;
		}
		.prodet-5 .out-door .slant{
			opacity: 1;
			border-bottom: 3000px solid rgb(77, 77, 77);
			border-left: 665px solid transparent;
			inset: auto auto 0px 0px;
			display: block;
			position: absolute;
			height: 100%;
			width: 100%;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			overflow: hidden;
			border-radius: inherit;
			z-index:2;
		}
		.prodet-5 .out-door .grid-box{
			position: absolute;
			width: 100%;
			left:0;
			top:0;
			z-index:3;
		}
		.prodet-5 .out-door .grid-box .column{
			color:#fff;
			padding-top:60px;
		}

@media screen and (max-width: 1000px) {
  .product-page .sideBox .slideRight .list ul li .box .left h4{
    width: 74%;
  }
  .inner-banner h2{
    font-size: 20px;
    line-height: 36px;
  }
  .inner-banner h2:after{
    font-size: 60px;
  }
  .inner-page.lg-page{
    padding: 30px 15px;
  }
  .inner-page.news-page .sidebar-nav{
    display: none;
  }
  .inner-page.news-page .ui.container .list{
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 700px) {
  .inner-banner h2:after{
    left: 0;
    font-size: 40px;
  }
  .inner-banner{
    padding-top: 80px;
  }
  .case-page h2, .technology-page h2, .custom-page h2, .about-page h2, .prodet-page .prodet-1 .right h1, .prodet-page h2 {
    font-size: 20px;
  }
  .prodet-5{
    display: none;
  }
  .inner-page.lg-page .page-right-bar.fr .piclist li{
    width: 100%;
    padding:20px 0;
  }
  .inner-page.news-page .ui.container{
    padding: 0 15px;
  }
  .inner-page.news-page .ui.container .list li.column{
    width: 100%;
  }
  .inner-page.newdet-page h2 {
    font-size: 20px;
    line-height: 2;
  }
  .inner-banner .btn{
    display: none;
  }
  .support-page .init-1{
    padding: 30px 0;
  }
  .support-page .init-1 .box .left .img .play h6{
    padding: 0 1.5rem;
    font-size: 1rem;
  }
  .support-page .init-5 .box .left h3,
  .support-page .init-5 .box .right ul li h4{
    font-size: 20px;
  }
  .support-page .init-5 .box .right ul li p{
    font-size: 14px;
  }
  .support-page .init-5 .box .left .text{
    font-size: 14px;
    padding-right:10px;
  }
  .support-page .init-5 .box{
    padding: 0;
  }
  .support-page .init-7 .tit-top ul li{
    font-size: 16px;
  }
}


@media screen and (max-width: 500px) {
  .support-page .init-1 .box .left,
  .support-page .init-1 .box .right{
    width: 100%;
    padding: 0;
  }
  .support-page .init-1 .box .right h4{
    font-size: 20px;
  }
  .support-page .init-5 .box .left,
  .support-page .init-5 .box .right{
    width: 100%;
  }
  .support-page .init-5 .btn{
    padding: 30px 5rem;
  }
  .support-page .init-7 .tit-top ul li{
    margin-bottom: 10px;
  }
  .support-page .init-1 .box{
    margin-top: 10px;
  }
  .support-page .init-5 .box .right ul li h4{
    margin: 10px 0;
  }
}




div#slick-slide03 li .layer {
    display: none;
}

div#slick-slide03 li .text{
  display: none;
}
div#slick-slide04 li .layer {
    display: none;
}

div#slick-slide04 li .text{
  display: none;
}

#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -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;
}
#pups_from 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;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: #3f86c1;
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: #3f86c1;
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: #3f86c1;
  color: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}

#index-body .i-help .form form ul li:after {
    top: 40px;
}


.root-panel[data-v-c861b862]{
  display:none;
}



/*sy-pro*/
.product-categroy li.column {
  border: 1px solid #fff;
}
.product-categroy .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
      background-repeat: no-repeat;
}
.product-categroy .mml-text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 15%;
  opacity: 0;
  -webkit-transition: 1.5s ease;
  -moz-transition: 1.5s ease;
  transition: 1.5s ease;
}
.product-categroy .mml-text .num {
  color: #FFFFFF;
  font-style: italic;
}
.product-categroy .mml-text .num em {
  font-size: 28px;
}
.product-categroy .mml-text h2 {
  font-size: 42px;
  color: #FFFFFF;
  margin-top: 70px;
}
.product-categroy .mml-text p {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
}
.product-categroy .mml-text .btn1 {
  margin-top: 50px;
  display: inline-block;
  color: #FFFFFF;
  line-height: 50px;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  padding: 0 40px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.product-categroy .mml-text .btn1:hover {
  color: #000000;
  background-color: #FFFFFF;
}
.product-categroy a.next {
  position: absolute;
  right: 30%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 66px;
  height: 66px;
  background-color: #FFFFFF;
  border-radius: 50%;
  line-height: 66px;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}
.product-categroy .bottom {
  position: absolute;
  width: 70%;
  left: 0;
  bottom: 10%;
}
.product-categroy .bottom .box {
  padding: 0 15%;
}
.product-categroy .slick-active .mml-text {
  opacity: 1;
}
.product-categroy .slick-list {
  padding-right: 30%;
}
.product-categroy .social-links a {
  color: #FFFFFF;
}
.product-categroy .dots {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 70px;
}
.product-categroy .dots::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 3px;
  width: 70px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 3px;
  display: none;
}
.product-categroy .dots ul li {
  margin: 0 10px;
  width: 9px;
  height: 9px;
  background-color: #FFFFFF;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}
.product-categroy .dots ul li::before {
  content: "";
  position: absolute;
  top: -7px;
  bottom: -7px;
  left: -7px;
  right: -7px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.product-categroy .dots ul li.slick-active::before {
  opacity: 1;
}
.product-categroy .dots ul li button {
  display: none;
}
.product-categroy {
    position: relative;
}
/*end*/






.product-categroy .bg:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  background: rgba(0,0,0,0.3);
}




/*新增*/
.inner-page .sideBox .sidebar-left {
  width: 25%;
  position: sticky;
    top: 120px;
}

.inner-page .sideBox .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sideBox .sidebar-left .inner .inner-search {
  margin-bottom: 2rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page .sideBox .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 5rem;
  font-size: 14px;
  color: #555555;
  font-weight: 200;
}
.inner-page .sideBox .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search.png) no-repeat center center #d60018;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat {
  margin-bottom: 2rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li {
  padding: 8px 0;
  font-size: 16px;
  position: relative;
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li>a.active{
  color: var(--primary);
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li .second-category li a.active{
  color: var(--primary);
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul{
  margin-top: 16px;
  /*display: none;*/
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li i{
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 5px;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li a {
  padding-right: 20px;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li a span {
  color: #aaa;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li:hover {
  color: var(--primary);
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li.active{
  color: #000;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li:first-child {
  padding-top: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li:last-child {
  padding-bottom: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent {
  margin-bottom: 2rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li {
  padding: 0.75rem 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 1rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 17px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .4rem;

  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--primary);
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-text span {
     color: var(--primary);
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact {
  background: url(../images/pro-011.jpg) no-repeat center center;
  padding: 10.75rem 2rem 2.75rem;
  color: #fff;
  background-size: cover;
  position: relative;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact h5 {
font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: bold;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact h6 {
font-size: 16px;
    line-height: 1.8;
    margin-top: 1.1rem;
    text-transform: capitalize;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  text-transform: capitalize;
  background: #fff;
  padding: 8px 12px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
  margin-top: 1.3rem;
 
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a:hover {
  color: #fff;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}



.inner-page .sideBox {
  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-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;

}



.inner-banner.active.pro {
    height: 780px;
    padding-top: 310px;
    width: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
}





.inner-page .sideBox .sidebar-left .inner .inner-contact:after {
    content: '';
    z-index: 9;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,.5));
}

.inner-page .sideBox .sidebar-left .inner .inner-contact .c-box {
    z-index: 99;
    position: relative;
}
.inner-page .sideBox .sidebar-right {
    width: 75%;
    padding-left: 5%;
}


/*pro-list*/
product2-page {
    padding: 5rem 0 5rem;
}

.product2-page .product-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
.product2-page .product-list ul li {
  padding: 0 0.75rem;
  margin-bottom: 1.5rem;
}

.product2-page .product-list ul li .img img{
height: 450px;
    object-fit: cover;
    width: 100%;
}

.product2-page .product-list ul li.wid-100{
  width: 100%;
}

.product2-page .product-list ul li .pro-box {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.product2-page .product-list ul li .pro-box .imgbox{
position: relative;

    background: #fbfbfb;
}
.product2-page .product-list ul li .pro-box .imgbox .img-box:nth-child(1){
  opacity: 1;
   -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.product2-page .product-list ul li .pro-box .imgbox .img-box:nth-child(2){
  opacity: 0;
   -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  position: absolute;
  top: 50%;
  left: 50%;
    -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.product2-page .product-list ul li .pro-box:hover::after {
  bottom: 0;
  background: #46696b;
}
.product2-page .product-list ul li .pro-box::after {
  content: none;
  width: 100%;
  bottom: -5px;
  right: -20px;
  height: 8px;
  display: block;
  position: absolute;
  border-top-left-radius: 4px;
  background: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product2-page .product-list ul li .pro-box h5 {
font-size: 20px;
    font-weight: bold;
    color: #000;
    padding: 1rem 0 0;
    line-height: 2;
 
}
.product2-page .product-list ul li .pro-box .btm a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    background: #000;
    padding: 8px 12px;
    position: relative;
    z-index: 2;
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    margin-left: 5px;
    margin-bottom: 1.3rem;
}
.product2-page .product-list ul li .pro-box .btm a::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background: var(--primary);
    left: 0;
    top: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    z-index: -1;
}
.product2-page .product-list ul li .pro-box .btm a:hover::after{
  width: 100%;
}
.product2-page .product-list ul li .pro-box .btm span.block {
    padding: 5px 0;
}
.product2-page .product-list ul li .pro-box .text .neirong {
    padding: 10px 0 0;
    font-weight: 300;
    overflow: overlay;
    max-height: 145px;
    line-height: 2;

}
.prodet-page .product-2 .content img {
    padding-bottom: 10px;
}

.product2-page .product-list ul li .pro-box:hover{

   -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.product2-page .product-list ul li .pro-box:hover .imgbox .img-box:nth-child(1){

   -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.product2-page .product-list ul li .pro-box:hover .imgbox .img-box:nth-child(2){
  opacity: 1;
   -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.product2-page .product-list ul li .pro-box h5:hover {
  color: var(--primary);
}
.product2-page .product-list ul li .pro-box h5 a {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 2);
}
.product2-page .product-list ul li .pro-box .pro-img {
  display: block;
  margin-bottom: 2.5rem;
}
.product2-page .product-list ul li .pro-box .text {
padding: 0 30px 0 30px;
    font-size: 15px;
    color: #757575;
    padding-bottom: 1rem;

}
.product2-page .product-list ul li .pro-box .text p {
position: relative;
    font-size: 14px;
    color: #555;
    line-height: 24px;
}
.product2-page .product-list ul li .pro-box .text p strong {
    color: #000;
}
.product2-page .product-list ul li .pro-box .btm {
  padding: 30px 0px 0px 0px;
}


.product2-page .product-list ul li .pro-box .btm .tupianji{
  margin: -5px;
}
.product2-page .product-list ul li .pro-box .btm .tupianji .item{
  padding: 5px;
  width: 20%;
}

.product2-page .product-list ul li .pro-box .more {
  display: inline-block;
  padding: 12px 22px 12px 15px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  margin-bottom: 25px;
  background: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;

}
.product2-page .product-list ul li .pro-box .more:hover {
  background: #46696b;
}
.product2-page .product-list ul li .pro-box .more i {
  margin-left: 1.2rem;
  font-size: 12px;
}


.inner-page.product2-page p {
     color: #000;
    line-height: 2;
    padding: 5px 0;
}

.product2-page .product-list ul li .pro-box .btm ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -10px;
}

.product2-page .product-list ul li .pro-box .btm ul li {
     display: inline-block;
    width: auto !important;
    margin-bottom: 0;
   padding: 0 6px;
}

.product2-page .product-list ul li .pro-box .btm ul li .coloritem {
width: 25px;
    height: 25px;
    display: block;
}

.product2-page .product-list ul li .pro-box .btm ul li:nth-child(1) .coloritem {
    background: #ebd5d3;
}

.product2-page .product-list ul li .pro-box .btm ul li:nth-child(2) .coloritem {
    background: #7d96a2;
}
.product2-page .product-list ul li .pro-box .btm ul li:nth-child(3) .coloritem {
    background: #7f9c90;
}
.product2-page .product-list ul li .pro-box .btm ul li:nth-child(4) .coloritem {
    background: #8a2a2b;
}
.product2-page .product-list ul li .pro-box .btm ul li:nth-child(5) .coloritem {
    background: #19315b;
}
.product2-page .product-list ul li .pro-box .btm ul li:nth-child(6) .coloritem {
    background: #000;
}
.product2-page .product-list ul li .pro-box .btm ul li:nth-child(7) .coloritem {
    background: #d7d2cb;
}
.product2-page .product-list .ny-banner {

}
.product2-page .product-list ul li .pro-box h5 a{
  text-transform: capitalize;

}
.product2-page .product-list ul li .pro-box .imgs-slick{
  /*margin-left: -10px;
  margin-right: -10px;*/
  margin-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.product2-page .product-list ul li .pro-box .imgs-slick li{
  padding-left: 10px;
  padding-right: 10px;
}

.product2-page .product-list ul li .pro-box .imgs-slick li a img{
      border: 1px solid #5e5e5e;
    padding: 3px;
}
/*-end*/




.news-page {
  padding: 5rem 0;
}
.news-page .sidebar-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
      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-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.news-page .sidebar-box .sidebar-left {
  border-left: 1px solid #e7e7e7;
  width: 30%;
}
.news-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0rem;
}
.news-page .sidebar-box .sidebar-right .news-list {
  padding-right: 2rem;
}
.news-page .sidebar-box .sidebar-right .news-list ul {
  margin-right: -1.1rem;
}
.news-page .sidebar-box .sidebar-right .news-list ul li {
padding-right: 1.1rem;
    margin-bottom: 2.4rem;
    position: relative;
    width: 50%;
  
}
.news-page .sidebar-box .sidebar-right .news-list ul li .img {
  position: relative;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .img img {
  width: 100%;
      object-fit: cover;
 
}
.news-page .sidebar-box .sidebar-right .news-list ul li .img time {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 16px;
  left: 13px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text {
      color: #2b2b2b;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 96%;
    padding: 10px 30px 30px 30px;
        z-index: 99;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text time {
    color: #fff;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text h3 {
    font-size: 20px;
    line-height: 1.3;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    color: #fff;
    margin-top: 8px;
   
    text-transform: capitalize;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text h3:hover {
  color: var(--primary);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .text p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0.5rem;
    color: #fff;
}
.news-page .sidebar-box .sidebar-right .news-list ul li:last-child {
  margin-bottom: 0;
}


.news-page .sidebar-box .sidebar-left {
  border-left: 1px solid #e7e7e7;
}
.news-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0rem;
}







.inner-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 2rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 5rem;
  font-size: 14px;
  color: #555555;
  font-weight: 200;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search.png) no-repeat center center #d60018;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 2rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li {
  padding: 8px 0;
  font-size: 16px;
  position: relative;
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li ul{
  margin-top: 16px;
  /*display: none;*/
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li i{
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 5px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li a {
  padding-right: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li a span {
  color: #aaa;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:hover {
  color: var(--primary);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li.active{
  color: #000;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 2rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 0.75rem 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 1rem;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 17px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .4rem;

  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--primary);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
     color: var(--primary);
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(../images/pro-011.jpg) no-repeat center center;
  padding: 10.75rem 2rem 2.75rem;
  color: #fff;
  background-size: cover;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
font-size: 16px;
    line-height: 1.8;
    margin-top: 1.1rem;
    text-transform: capitalize;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  text-transform: capitalize;
  background: #fff;
  padding: 8px 12px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
  margin-top: 1.3rem;
 
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a:hover {
  color: #fff;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}


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





.newdet-page .sidebar-box .sidebar-right .newdet-content {
  padding-right: 4.25rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a {
  padding: 0 5px;
  margin-left: 4px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a:hover {
  background-color: var(--primary);
  color: #fff;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category a span {
  display: inline-block;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time {
  font-size: 14px;
  margin-left: 12px;
  color: #aaa;
  text-transform: uppercase;
  position: relative;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time span {
  color: #000;
  margin-left: 0.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-title {
  font-size: 1.75rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  text-transform: capitalize;
  border-bottom: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content {
  font-size: 15px;
  line-height: 2;
  color: #2b2b2b;

}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon {
  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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 14px;
  color: #555;
  margin-top: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a {
  font-size: 14px;
  color: #000;
  margin-left: 0.9rem;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a:hover {
  color: var(--primary);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link {
  border-bottom: 1px solid #e7e7e7;
  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;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a {
  width: 50%;
  padding: 1.75rem 0;
  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;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-img {
  margin-right: 1rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-img img {
  display: block;
  width: 110px;
  min-width: 110px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p {
  color: #000;
  font-size: 16px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .4rem;
  max-width: 255px;
  text-transform: capitalize;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p:hover {
  color: var(--primary);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
  padding-right: 1.5rem;
  border-right: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
  padding-left: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form {
  margin-top: 3rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text h3 {
  font-size: 1.5rem;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text p {
  font-size: 14px;
  line-height: 1;
  color: #555;
  margin-bottom: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form .text span {
  color: var(--primary);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form .span {
  font-size: 14px;
  display: inline-block;
  color: #555;
  margin-bottom: 1.25rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form textarea,
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form input[type="text"] {
  width: 30%;
  height: 54px;
  border: 1px solid #e7e7e7;
  padding: 0 1rem;
  color: #555555;
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form textarea {
  width: 100%;
  height: 200px;
  padding: 1rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form .n-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form p {
  font-size: 14px;
  line-height: 1;
  color: #555;
  margin-bottom: 2.25rem;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 15px 1.75rem;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
  border: none;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .n-form form button:hover::after {
  width: 100%;
}


.newdet-page .sidebar-box .sidebar-right .newdet-content .content h3 {
    font-size: 20px;
    color: #000;
    margin-top: 20px;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content p {
      line-height: 1.8;
    padding: 10px 0;
    color: #333;
    font-size: 16px;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content .top-news {
    margin-bottom: 40px;
}


.newdet-page .sidebar-box .sidebar-right .newdet-content .content p img {
    padding: 10px;
    width: 100%;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content .top-news img {
    object-fit: cover;
    width: 100%;
    height: 500px;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .content h2 {
    color: #000;
    font-size: 24px;
    text-align: left;
}



.inner-page .sidebar-box .sidebar-left .inner .inner-contact:after {
    content: '';
    z-index: 9;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.5));
      
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact{
    position: relative;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact .c-box {
    z-index: 99;
    position: relative;
}

.product2-page .product-list ul li .pro-box .btm .tupianji .item img {
    background: #f0f0f0;
}

.prodet-page .prodet-1 .right .content p strong {
    color: #000;
    font-weight: bold;
}

.prodet-page .custom-page .custom-3 .list.left {
width: 40%;
    padding: 60px 0;
    background: #fff;

}

.prodet-page .custom-page .custom-3 .list.left ul.grid-box.two li {
      width: 50%;
    padding: 5px 10px;
}


.prodet-page .custom-page .custom-3 .list.left .form ul li input, .form ul li textarea {
    padding: 5px 5px;
}
.prodet-page .custom-page .custom-3 .list.left .form ul {

}
.prodet-page .custom-page .custom-3 .list.left .form {
}


.prodet-page .custom-page .custom-3 .list.left .top h2 {
    text-transform: capitalize;
    margin-bottom: 10px;
}
.prodet-page .custom-page .custom-3 .list.left .top p {
    font-size: 15px;
    color: #959595;
    line-height: 2;
}
.prodet-page .custom-page .custom-3 .list.left .top {
    text-align: left;
    padding-bottom: 30px;
   
}



.inner-page.prodet-page .inner-page.custom-page {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    margin: 80px 0;
}

.prodet-page .custom-page .custom-3 .list.left input[type="submit"] {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.prodet-page .custom-page .custom-3 .list.left ul.grid-box.two li.column.wid-100 {
    width: 100%;
}

.prodet-page .custom-page .custom-3 img {
    max-height: 600px;
    padding-left: 30px;
}



.inner-page.prodet-page .prodet-11 .box{
      display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}


.inner-page.prodet-page .prodet-11  .box .left {
    background: #fff;
}
.inner-page.prodet-page .prodet-11  .box .left ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.inner-page.prodet-page .prodet-11  .box .left ul li:first-child {
    padding: 0 3rem 0 0;
}
.inner-page.prodet-page .prodet-11  .box .left ul li {
    font-size: 16px;
    line-height: 1;
    color: #616161;
    padding: 0 3rem;
    border-right: 1px solid #616161;
}
.inner-page.prodet-page .prodet-11  .box .right {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  
}
.inner-page.prodet-page .prodet-11  .box:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    border-bottom: 1px solid #d9d9d9;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}
.inner-page.prodet-page .prodet-11  .box .right p:first-child {
    margin-left: 0;
}
.inner-page.prodet-page .prodet-11  .box .right p img {
    margin-right: 1.5rem;
}

.inner-page.prodet-page .prodet-11  .box .right p {
    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;
    font-size: 14px;
    line-height: 1;
    color: #000;
   
    margin-left: 3.5rem;
}

.inner-page.prodet-page .prodet-11 .left ul li:last-child {
    border-right: 0 solid #616161;
}

.inner-page.prodet-page .prodet-11 .box .right p i {
    font-size: 18px;
    padding: 0 10px;
    line-height: 2;
}


.inner-page.prodet-page .prodet-10 {
  padding: 60px 0;
}
.inner-page.prodet-page .prodet-10 .ui {
    display: flex;
    align-items: center;
}
.inner-page.prodet-page .prodet-10 .left {
    width: 50%;
}

.inner-page.prodet-page .prodet-10 .right {
    width: 50%;
}
.inner-page.prodet-page .prodet-10 .right ul {
}
.inner-page.prodet-page .prodet-10 .right ul li {
    width: 49%;
    display: inline-block;
    text-align: center;
    padding: 10px 0;
}
.inner-page.prodet-page .prodet-10 .right ul li h2 {
    font-weight: 300;
    font-size: 18px;
    text-align: center;
    margin-top: 12px;
}

.inner-page.prodet-page .prodet-10 h2.aftr-l {
    padding: 0 15px;
    position: relative;
    max-width: 1572px;
    margin: auto;
    width: 100%;
    font-size: 24px;
}

.inner-page.prodet-page .prodet-10 h2.aftr-l:before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: inline-block;
    margin-right: 10px;
}


.inner-page.prodet-page .prodet-20 {
    margin-bottom: 80px;
}

.inner-page.prodet-page .prodet-20 .box-tu {
    position: relative;
}
.inner-page.prodet-page .prodet-20 .box-tu ul {
    margin: 0 -10px;
}
.inner-page.prodet-page .prodet-20 .box-tu ul li {
    display: inline-block;
    width: 12.5%;
    padding: 10px;
    text-align: center;
}
.inner-page.prodet-page .prodet-20 .box-tu ul li img {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
}
.inner-page.prodet-page .prodet-20 .box-tu ul li h2 {
    font-size: 16px;
    margin-top: 10px;
}

.inner-page.prodet-page .prodet-21 {
    padding: 10.5rem 0 10.5rem;
    background: url(../images/videe.jpg) no-repeat center center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.inner-page.prodet-page .prodet-21 .i-video {
 text-align: center;
    position: relative;
}



.inner-page.prodet-page .prodet-21 .i-video .play::before, .inner-page.prodet-page .prodet-21 .i-video .play::after {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.52);
    -webkit-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
}

.inner-page.prodet-page .prodet-21 .i-video .play::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.inner-page.prodet-page .prodet-21 .i-video .f-img.pr {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.inner-page.prodet-page .prodet-21 .i-video .f-img.pr a.play {
}
.inner-page.prodet-page .prodet-21 .i-video .play:before, .inner-page.prodet-page .prodet-21 .i-video .play:after {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    background: rgba(255,255,255,.52);
    -webkit-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
}
.inner-page.prodet-page .prodet-21 .i-video .play:after {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}


.inner-page.prodet-page .prodet-22 .right {
  width: 60%;
  padding: 15px;
}
.inner-page.prodet-page .prodet-22 .right .faq-box ul li {
  margin-bottom: 7px;
}
.inner-page.prodet-page .prodet-22 .right .faq-box ul li:last-child {
  margin-bottom: 0;
}
.inner-page.prodet-page .prodet-22 .right .faq-box h3 {
    background-color: #dcdcdc;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 55px 10px 30px;
    /*overflow: hidden;
    text-overflow: ellipsis;*/
    transition: all .5s ease;
    /*white-space: nowrap;*/
    cursor: pointer;
    font-weight: 400;
    text-transform: capitalize;
}




.inner-page.prodet-page .prodet-22 .right .faq-box h3:active {
      background: #00502c;
    color: #fff;
}


.inner-page.prodet-page .prodet-22 .right .faq-box h3:active {
       background: #00502c;
    color: #fff;
}


.inner-page.prodet-page .prodet-22 .right .faq-box h3:hover {
      background: var(--primary);
    color: #fff;
    transition: all .5s ease;
}
.inner-page.prodet-page .prodet-22 .right .faq-box h3:hover .i-box {
    border: 1px solid #fff;
}
.inner-page.prodet-page .prodet-22 .right .faq-box ul li.active h3 {
  font-weight: 400;
}
.inner-page.prodet-page .prodet-22 .right .faq-box .faq-q {
  background-color: #ebebeb;
  padding: 15px 30px;
  display: none;
  line-height: 28px;
}


.inner-page.prodet-page .prodet-22 .right .faq-box .i-box {
  width: 22px;
  height: 22px;
  line-height: 18px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  border: 1px solid #000;
}

.inner-page.prodet-page .prodet-22 .right .right h2 {
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 15px;
}

.inner-page.prodet-page .prodet-22 {
margin-top: 80px;
margin-bottom: 80px;
}

.inner-page.prodet-page .prodet-22 .left {
  width: 40%;
  padding-right: 20px;
}

.inner-page.prodet-page .prodet-22 .ui {
  display: flex;
  align-items: center;
}

.inner-page.prodet-page .inner-page.about-page .about-3 .content {
    padding: 20px 0 0px;
}


.inner-page.prodet-page .prodet-22 .right .faq-box h2:before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: inline-block;
    margin-right: 10px;
}

.inner-page.prodet-page .prodet-22 .right .faq-box h2 {
font-size: 24px;
}

.inner-page.prodet-page .prodet-22 .right .faq-box p {
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 5px;
    text-transform: capitalize;
    line-height: 2;
}

.prodet-page .prodet-2 h2:before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: inline-block;
    margin-right: 10px;
}


.inner-page.contact-page .contact-2 .ui .box .left .list ul li {
    margin-bottom: 20px;
}

.inner-page.contact-page .contact-2 .ui .box .left .list ul li .box h5 {
    font-size: 16px;
    line-height: 2;
    color: #555;
}
.inner-page.contact-page .contact-2 .ui .box .left .list ul li .box h5 i.fa {
    margin-right: 20px;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    text-align: center;
    background: var(--primary);
}
.inner-page.contact-page .contact-2 .ui .box .left .list ul li .box h5 span {
    font-weight: bold;
    color: #000;
}

.inner-page.contact-page .contact-2 .ui .box .left {
    background: #fff;
    padding: 20px;
}

.inner-page.contact-page .contact-2 .ui .box .left .list {
    padding: 35px 0 0 0;
}

.inner-page.contact-page {
    background: #f7f7f7;
}

.inner-page.contact-page .contact-2 .ui .box .left .list h3 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--primary);
}

.contact-page .contact-2 .right .form ul li.wid-100 {
    width: 100% !important;
}

.contact-page .contact-2 .right p {
    font-size: 15px;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 2;
}

/*@font-face {
    font-family: 'MPR';
    src: url('../fonts/MinionPro-Regular.eot') format('eot'),
        url('../fonts/MinionPro-Regular.woff2') format('woff2'),
        url('../fonts/MinionPro-Regular.woff') format('woff'),
        url('../fonts/MinionPro-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'MPB';
    src: url('../fonts/MinionPro-BoldIt.eot') format('eot'),
        url('../fonts/MinionPro-BoldIt.woff2') format('woff2'),
        url('../fonts/MinionPro-BoldIt.woff') format('woff'),
        url('../fonts/MinionPro-BoldIt.ttf') format('truetype');
    font-display: swap;
}*/

/*New About Style*/
.about-page h5{
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  /*font-family: 'MPR';*/
}
.about-page h5 em{
  color: var(--primary);
  display: block;
}
.about-page span.tag{
  font-size: 22px;
  line-height: 1;
  color: #616161;
  /*font-family: 'MPR';*/
  display: inline-block;
  margin-top: 12px;
}
.about-page .ab-1 .box{
  position: relative;
  z-index: 1
}
.about-page .ab-1 .box::after{
  content: 'About Us';
  position: absolute;
  bottom: -66px;
  right: -49%;
  z-index: -1;
  font-size: 380px;
  /*font-family: 'MPB';*/
	font-weight: bold;
	line-height: 1;
	color: #fcfcfc;
	text-shadow: 0px 0px 70px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.about-page .ab-1{
  padding: 79px 0 70px 0;
  background: url(../images/about-bg.jpg) no-repeat center center;

}
.about-page .ab-1 .left{
    padding-top: 100px;
    width: 60%;
}
.about-page .ab-1 .left h3{
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    /*font-family: 'ABM';*/
    line-height: 1.2;
}

.about-page .ab-1 .left .con{
  margin-top: 25px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}
.about-page .ab-1 .left .con p {
    padding-bottom: 10px;
}
.about-page .ab-1 .right{
  text-align: right;
  width: 40%;
}
.about-page .ab-1 .right .content{
  margin-top: 50px;
  padding: 0 51px 0 127px;
}
.about-page .ab-1 .right .content .text{
    display: inline-block;
    vertical-align: bottom;
    width: 34%;
    position: relative;
    padding-bottom: 80px;
    color: #6a6a6a;
    /*font-family: 'MPR';*/
    line-height: 1;
    font-size: 32px;
    padding-right: 46px;
    text-transform: uppercase;
}
.about-page .ab-1 .right .content .text span{
  writing-mode: vertical-lr;
  position: relative;
  z-index: 1;
}
.about-page .ab-1 .right .content .text span:last-child{
  font-size: 31px;
  margin-top: 201px;
  float: right;
  margin-left: 25px;
}
.about-page .ab-1 .right .content .text i{
  position: absolute;
  bottom: 35px;
  left: -13px;
  width: 193px;
	height: 370px;
  border: 3px solid #eef0ee;
}
.about-page .ab-1 .right .content .img{
  display: inline-block;
  width: 65%;
  height: 691px;
  background: url(../images/senlin.jpg) no-repeat right center;
}
.about-page .ab-1 .imgs{
  text-align: center;
  margin-top: 48px;
}

.about-page .ab-2{
 background: url(../images/advantage-bg.jpg) no-repeat center center;
    padding-bottom: 100px;
}
.about-page .ab-2 .header{
  text-align: center;
  width: 56%;
  margin: 0 auto;
}
.about-page .ab-2 .header span{
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    font-weight: 700;
    /*font-family: 'MPR';*/
}
.about-page .ab-2 .header h3{
  font-size: 36px;
  /*font-family: 'MB';*/
  line-height: 1.1;
  margin-top: 23px;
}
.about-page .ab-2 .header p{
  font-size: 18px;
  line-height: 1.6;
  color: #8c8d8d;
  margin-top: 24px;
}
.about-page .ab-2 .header .mores{
    padding: 5px 20px;
    margin: 15px;
    text-align: center;
    line-height: 44px;
    background: rgba(195,13,34);
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-top: 36px;
    transition: all .5s ease;
}
.about-page .ab-2 .header .mores:hover {
    background: rgba(195,13,34,0.7);
        transition: all .5s ease;
}
.about-page .ab-2 .header .play{
  margin-top: 79px;
}
.about-page .ab-2 .header .play i{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.about-page .ab-2 .header .play i::before,
.about-page .ab-2 .header .play i::after{
  position: absolute;
                z-index: -1;
                content: '';
                left: -12px;
                right: -12px;
                top: -12px;
                bottom: -12px;
                border-radius: 50%;
                background: rgba(0, 0, 0, 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 .ab-2 .header .play i::before{
  -webkit-animation-delay: .6s;
                -o-animation-delay: .6s;
                -ms-animation-delay: .6s;
                -moz-animation-delay: .6s;
                animation-delay: .6s;
}
.about-page .ab-2 .content{
  padding-top: 122px;
  color: #fff;
}
.about-page .ab-2 .content ul{
  margin-right: -20px;
}
.about-page .ab-2 .content ul .slick-slide {
  margin-right: 2rem;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(1) li::after {
  right: -2%;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(2) li::after {
  right: -4.5%;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(3) li::after {
  right: -5%;
}
.about-page .ab-2 .content ul .slick-slide:last-child li::after {
  display: none;
}
.about-page .ab-2 .content ul li {
  padding: 0 10px;
  position: relative;
}
.about-page .ab-2 .content ul li::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.3);
}
.about-page .ab-2 .content ul li span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.about-page .ab-2 .content ul li .img {
  height: 60px;
  margin-top: 2.75rem;
}
.about-page .ab-2 .content ul li h4 {
  display: block;
  font-size: 1.4rem;
 
  font-weight: bold;
  line-height: 1;
  margin: 2.25rem 0 1.3rem;
  font-style: italic;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

}
.about-page .ab-2 .content ul li p {
  display: block;
  font-size: 18px;
  line-height: 2;
  min-height: 5.6rem;
}



.about-page .ab-2 .content ul li a.mores {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid white;
  line-height: 1.75rem;
  text-align: center;
  font-size: 18px;
  margin-top: 4rem;
  border-radius: 100%;
  background: transparent;
  color: #fff;
}
.about-page .ab-2 .content ul li a.mores::before {
  border-bottom-color: #fa582a;
}
.about-page .ab-2 .btn {
  padding: 4.6rem 2.5rem 0;
  display: block;
  text-align: right;
  color: #fff;
}
.about-page .ab-2 .btn div {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  /*font-family: 'RT';*/
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .ab-2 .btn div.next {
  margin-left: 1.5rem;
}
.about-page .ab-2 .btn div::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 2px;
  background: white;
  margin-left: 0;
  margin-top: -0.4rem;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .ab-2 .btn div:hover {
  /*font-family: 'RB';*/
}
.about-page .ab-2 .btn div:hover::after {
  width: 1.8rem;
  margin-left: 1rem;
}
.about-page .ab-3{
  background: url(../images/history-bg.jpg) no-repeat center center;
  padding: 102px 0 105px;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.about-page .ab-3 .infos{
  position: absolute;
  top: 8%;
  right: 0;
  text-align: center;
  max-width: 146px;
  z-index: 1;
}
.about-page .ab-3 .infos .num{
  font-size: 28px;
}
.about-page .ab-3 .infos .num .s2{
  font-size: 16px;
  vertical-align: bottom;
}
.about-page .ab-3 .infos .arrow{
  margin-top: 52px;
}
.about-page .ab-3 .infos .arrow .al,
.about-page .ab-3 .infos .arrow .ar{
  width: 59px;
	height: 59px;
	background-color: #e7e7e7;
  text-align: center;
  line-height: 59px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
   -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.about-page .ab-3 .infos .arrow .al img,
.about-page .ab-3 .infos .arrow .ar img{
  display: inline-block;
  vertical-align: middle;
}
.about-page .ab-3 .infos .arrow .ar{
  margin-left: 24px;
}
.about-page .ab-3 .infos .arrow .al:hover,
.about-page .ab-3 .infos .arrow .ar:hover{
  background: var(--primary);
}
.about-page .ab-3 .list{
  position: absolute;
  left: 0;
  bottom: 31px;
}
.about-page .ab-3 .list span.tag{
  margin: 0 0 12px 0;
}
.about-page .ab-3 ul{
       max-height: 700px;
    overflow: overlay;
    padding-left: 20%;
}
.about-page .ab-3 ul li{
  padding-bottom: 42px;
}
.about-page .ab-3 ul li .box{
     display: flex;
    align-items: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.about-page .ab-3 ul .slick-list{
  overflow: hidden;
}
.about-page .ab-3 ul .slick-slide{
  overflow: hidden;
}
.about-page .ab-3 ul li .box:hover{
  color: var(--primary);
}
.about-page .ab-3 ul li .box .text{
    width: 50.7%;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 25px;
    border-bottom: solid 2px #e7e7e7;
    text-align: left;
    margin: auto;
}
.about-page .ab-3 ul li .box .img{
    padding-left: 30px;
    width: 30.5%;
    text-align: center;
}
.about-page .ab-3 ul li .box .title{
  width: 11.8%;
  font-size: 28px;
  line-height: 1.2;
  padding-left: 50px;
}
.about-page .ab-3 ul .slick-current div:nth-child(even) .box{
   margin: 0 0 0 auto;
  padding-left: 0;
  width: 64%;
}
.about-page .ab-3 ul .slick-current div:nth-child(even) li .box{
  margin: 0 0 0 auto;
  padding-left: 0;
  width: 64%;
}
.about-page .ab-3 ul .slick-current div:nth-child(even) li .box .text{
  text-align: left;
  order: 3;
  margin-left: 54px;
}
.about-page .ab-3 ul .slick-current div:nth-child(even) li .box .img{
  text-align: left;
  order: 2;
  padding: 0 0 0 0;
  width: 22.2%;
}
.about-page .ab-3 ul .slick-current div:nth-child(even) li .box .title{
  text-align: left;
  order: -1;
  padding: 0 50px 0 0;
}

.about-page .ab-3 ul .slick-current+div li .box{
  margin: 0 0 0 auto;
  padding-left: 0;
  width: 64%;
}
.about-page .ab-3 ul .slick-current+div li .box .text{
  text-align: left;
  order: 3;
  margin-left: 54px;
}
.about-page .ab-3 ul .slick-current+div li .box .img{
  text-align: left;
  order: 2;
  padding: 0 0 0 0;
  width: 22.2%;
}
.about-page .ab-3 ul .slick-current+div li .box .title{
  text-align: left;
  order: -1;
  padding: 0 50px 0 0;
}

.about-page .ab-4{

  padding: 60px 0;
}
.about-page .ab-4 .header span{
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    /*font-family: 'MPR';*/
}
.about-page .ab-4 .header h3{
  font-size: 24px;
  line-height: 1;
}
.about-page .ab-4 .header p{
  font-size: 18px;
  line-height: 1.5;
  color: #6e6e6e;
}
.about-page .ab-4 .content{
  margin-top: 15px;
}
.about-page .ab-4 .content .slick-arrow{
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 57px;
  height: 59px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: none;
}
.about-page .ab-4 .content .slick-arrow:hover {
  background-color: rgba(195,13,34,0.5);
}
.about-page .ab-4 .content .slick-prev {
  background: url("../images/inner-l.png") no-repeat center center rgba(0,0,0,0.2);
  left: 46%;
}
.about-page .ab-4 .content .slick-next {
  background: url("../images/inner-r.png") no-repeat center center rgba(0,0,0,0.2);
  right: 46%;
  left: auto;
}
.about-page .ab-4 .content ul{
  margin-right: -15px;
}
.about-page .ab-4 .content ul li{
  padding-right: 15px;
}
.about-page .ab-4 .content ul li a{
  display: block;
}
.inner-page.product-page.overall .product-0 {
    text-align: center;
}
.inner-page.product-page.overall .product-1 {
    overflow: hidden;
    background: #f5f5f5;
    padding: 75px 0;
}

.inner-page.product-page.overall .product-1 .overall-img li {
    width: 33.3333%;
    float: left;
    overflow: hidden;
    position: relative;
}
.inner-page.product-page.overall .product-1 .overall-img li img{
  width: 100%;
}
.inner-page img {
    width: auto;
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
}
.layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}


.inner-page.product-page.overall .product-1 .overall-img li:hover dvi.layer {
    background: rgba(0,0,0,.6);
}


.inner-page.product-page.overall .product-1 .overall-img li .text {
    position: absolute;
    opacity: 1;
    text-align: right;
    right: 30px;
    left: 30px;
    bottom: 30px;
        z-index: 8;
}

.inner-page.product-page.overall .product-1 .overall-img li .text h2 {
      font-size: 28px;
    color: #fff;
    width: 90%;
      float: left;
      text-transform: capitalize;
}
.inner-page.product-page.overall .product-1 .overall-img li .text a.portfolio-overlay-wrapper{

  pointer-events:none;
}

.inner-page.product-page.overall .product-1 .overall-img li .text span.portfolio-icon {
    font-size: 28px;
    color: #fff;
        line-height: 0;
}
div.layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}
.inner-page.product-page.overall .product-2.overall .info p {
    width: 65%;
    color: #fff;
    font-weight: bold;
    padding: 30px 0;
    line-height: 2;
    font-size: 16px;
}
.inner-page.product-page.overall .product-2.overall .info h3{
  font-size: 38px;
    line-height: 1;
    color: #fff;
    /*font-family: 'ABM';*/
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}
.inner-page.product-page.overall .product-2.overall .info {
    display: inherit;
    padding: 25px 0;
    margin: 0 auto;
    max-width: 1405px;
}
.inner-page.product-page.overall .product-2.overall {
    background: url(/hgcaps/2021/08/03/over_mainbg04.jpg);
    min-height: 425px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 65px 0;
}
.inner-page.product-page.overall .product-2.overall .info .c-link {
    display: inline-block;
    transition: all .5s ease;
    padding: 18px 20px 18px 60px;
    border-radius: 15px;
    background: url(https://www.hgcaps.com/template/en/images/c-1.png) no-repeat 20px center #fff;
    font-size: 16px;
    line-height: 1;
    color: var(--primary);
   
    text-transform: uppercase;
}
.inner-page.product-page.overall .product-2.overall .info .c-link:hover {
    margin-left: 10px;
    transition: all .5s ease;
}
.product-page .product-4 {
  padding: 50px 0;

}
.product-page .product-4 .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
      align-items: center;
}
.product-page .product-4 .container .left {

}
.product-page .product-4 .container .left h4 {
  font-size: 24px;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
  /*font-family: 'MB';*/
  margin-bottom: 35px;
}
.product-page .product-4 .container .left ul li {
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 30px 14px 20px;
  margin-bottom: 0px;
  cursor: pointer;
 
  color: var(--primary);
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.product-page .product-4 .container .left ul li:hover {
  background: var(--primary);
  color: #ffffff;
}
.product-page .product-4 .container .left ul li .fa {
  margin-right: 15px;
  font-size: 18px;
}
.product-page .product-4 .container .left ul li.active {
  background: var(--primary);
  color: #ffffff;
}
.product-page .product-4 .container .right {
 
}
.product-page .product-4 .container .right .item {
  display: none;
  position: relative;
}
.product-page .product-4 .container .right .item img {
  width: 100%;
}
.product-page .product-4 .container .right .item .info {
    padding: 35px 0 65px;
    max-width: 650px;
    height: 353px;
    background-color: rgba(255,255,255,.9);
    left: 0;
    bottom: 0;
    margin-top: 10px;
}
.product-page .product-4 .container .right .item .info p {
    font-size: 15px;
    line-height: 1.8;
    color: #646464;
    padding: 8px 0;

}
.product-page .product-4 .container .right .item .info a {
  font-size: 13px;
  line-height: 1.8;
  color: var(--primary);

  margin-top: 10px;
}
.product-page .product-4 .container .right .item.on {
  display: block;
  animation: 1s .3s zoomIn both;
}
.inner-page.product-page.overall .product-5 {
    background: url(/hgcaps/2021/08/03/over_mainbg03.jpg);
    min-height: 325px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.inner-page.product-page.overall .product-5 .over-ind {
    text-align: center;
    padding: 80px 0;
}
.inner-page.product-page.overall .product-5 .over-ind h3 {
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
}
.inner-page.product-page.overall .product-5 .over-ind p {
    color: #ffffff;
    font-size: 30px;
    padding: 10px 0 30px 0;
}
.inner-page.product-page.overall .product-5 .over-ind a.c-link {
     background-color: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 17px 50px;
    font-weight: 700;
    font-size: 24px;
    border: 0;
    margin: 0;
}
.inner-page.product-page.overall .product-6 {
    padding: 60px 0;
}
.inner-page.product-page.overall .product-6 .over-news h3 {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    padding: 20px;
    color: #535353;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list {
    overflow: hidden;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li {
    width: 33.33%;
    float: left;
    padding: 20px;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li img.newsImg {
    object-fit: cover;
    height: 240px;
    width: 100%;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li .content {
    padding: 20px 5px;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li .content h5 {
    font-size: 22px;
    font-weight: 700;
    color: #535353;
    min-height: 70px;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li .news-box .content .time {
    padding: 10px 0 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li .news-box .content p {
    font-size: 15px;
    padding: 20px 0;
    /*font-family: 'MEL';*/
    font-weight: 600;
}
.inner-page.product-page.overall .product-6 .over-news ul.news-list li .news-box .content .mores{
  font-size: 14px;
}
@media screen and (max-width: 1680px) {
  .about-page .ab-1 .right .content {
    margin-top: 131px;
    padding: 0 0px 0 127px;
   }
   .about-page .ab-1 .right .content .text{
     padding-right: 20px;
   }
}
@media screen and (max-width: 1440px) {
  #footer .footer-top li{
    margin-right: 39px;
  }
  .about-page .ab-1 .right .content {
    padding: 0 0px 0 30px;
  }
  .about-page .ab-1 .right .content .text{
    padding-right: 30px;
  }
}
@media screen and (max-width: 1250px) {
  #header .nav .ui.menu .menu-box ul.menu>li {
    margin: 0 20px 0 0;
}
#header .nav .ui.menu .h-language span{
  font-size: 14px;
  padding-left: 10px;
}
  .inner-banner {
    height: 440px;
}
  .inner-banner .btn{
    margin-top: 30px;
  }
  .about-page .ab-1 .right .content {
    margin-top: 131px;
    padding: 0 0px 0 30px;
  }
  .about-page .ab-2 .header{
    width: 70%;
  }
  #footer .footer-top li{
    margin-right: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .about-page h5{
    font-size: 60px;
  }
  .about-page .ab-1 .right .content .text{
    padding-right: 24px;
  }
  .about-page .ab-2 .header {
    width: 77%;
  }
  .about-page .ab-2{
    padding: 100px 0;
  }
  #footer .footer-top li {
    margin-right: 46px;
  }
  .inner-page.product-page.overall .product-1 .overall-img li .text h2{
    font-size: 24px;
    width: 88%;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner {
    height: 300px;
    padding-top: 140px;
   }
   .inner-banner .btn{
     display:none;
   }
  .about-page .ab-1 .left{
    width: 100%;
    padding-top: 0;
  }
  .about-page .ab-1 .right{
    display: none;
  }
  .about-page .ab-2{
    padding: 60px 0;
  }
  .about-page .ab-2 .header{
    width: 100%;
  }
  .about-page .ab-3 ul li .box{
    width: 100%;
    padding-left: 0;
  }
  .about-page .ab-3 .infos{
    position: initial;
    max-width: 100%;
    text-align: right;
    margin-bottom: 20px;
  }
  .about-page .ab-3 ul li .box .img{
    padding-left: 25px;
  }
  .about-page .ab-3 ul li .box .title{
    font-size: 20px;
    padding-left: 20px;
  }
  .about-page .ab-3 ul .slick-current+div li .box{
    width: 100%;
  }
  .about-page .ab-3 .list{
    position: initial;
  }
  .about-page .ab-3{
    padding: 60px 0;
  }
  .about-page .ab-3 .infos .arrow{
    margin-top: 30px;
  }
  #footer .footer-top li {
    margin-right: 43px;
  }
  .inner-page.product-page.overall .product-1 .overall-img li{
    width: 50%;
  }
  .inner-page.product-page.overall .product-2.overall .info p{
    width: 90%;
  }
  .product-page .product-4 .container{
    display: block;
  }
  .product-page .product-4 .container .left{
    width: 100%;
  }
  .product-page .product-4 .container .right{
    width: 100%;
    margin-top: 30px;
  }
  .product-page .product-4 .container .right .item .info{
    max-width: 100%;
    height: auto;
    padding: 49px 35px 48px;
  }
  .inner-page.product-page.overall .product-6 .over-news ul.news-list li{
    padding: 20px 10px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner {
    height: 260px;
    padding-top: 80px;
  }
  .inner-banner h2{
    line-height: 1.4;
  }
  .about-page .ab-1{
    padding: 30px 0;
  }
  .about-page .ab-1 .left .con{
    margin-top: 20px;
  }
  .about-page .ab-1 .imgs{
    display: none;
  }
  .about-page .ab-2 .header .play{
    display: none;
  }
  .about-page .ab-2 .content{
    padding-top: 60px;
  }
  .about-page .ab-3{
    display: none;
  }
  .about-page .ab-3 ul li .box{
    display: block;
  }
  .about-page .ab-3 ul li .box .text,
  .about-page .ab-3 ul li .box .img,
  .about-page .ab-3 ul li .box .title{
    width: 100%;
  }
  .inner-page.product-page.overall .product-1 .overall-img li .text h2 {
    font-size: 16px;
    width: 83%;
   }
   .inner-page.product-page.overall .product-1{
     padding: 30px 0;
   }
   .inner-page.product-page.overall .product-2.overall .info h3{
     font-size: 32px;
   }
   .inner-page.product-page.overall .product-2.overall .info p{
     width: 100%;
   }
   .inner-page.product-page.overall .product-2.overall{
     background-attachment: initial;
     background-size: cover;
     padding: 30px 0;
     min-height: initial;
   }
   .product-page .product-4 .container .left{
     padding-top: 0;
   }
   .product-page .product-4 .container .right .item .info{
     position: initial;
     padding: 20px;
   }
   .inner-page.product-page.overall .product-5{
     background-attachment: initial;
     background-size: cover;
     min-height: initial;
   }
   .inner-page.product-page.overall .product-5 .over-ind h3{
     font-size: 28px;
   }
   .inner-page.product-page.overall .product-5 .over-ind p{
     font-size: 20px;
   }
   .inner-page.product-page.overall .product-5 .over-ind a.c-link{
     padding: 10px 28px;
    font-size: 18px;
   }
   .inner-page.product-page.overall .product-6{
     padding: 30px 0;
   }
   .inner-page.product-page.overall .product-6 .over-news ul.news-list li .content h5{
     font-size: 16px;
   }
   .inner-page.product-page.overall .product-6 .over-news ul.news-list li .news-box .content p{
     font-size: 14px;
   }
   .inner-page.product-page.overall .product-5 .over-ind{
     padding: 30px 0;
   }
}
@media screen and (max-width: 500px) {
  .about-page .ab-1 .left h3{
    font-size: 25px;
  }
  .about-page .ab-1 .left .con{
    font-size: 14px;
  }
  .about-page .ab-2 .header h3{
    font-size: 28px;
  }
  .about-page .ab-2 .header p{
    font-size: 14px;
  }
  .inner-page.product-page.overall .product-0{
    display: none;
  }
  .inner-page.product-page.overall .product-1 .overall-img li{
    width: 100%;
  }
  .inner-page.product-page.overall .product-2.overall .info h3 {
    font-size: 25px;
  }
  .inner-page.product-page.overall .product-2.overall .info p{
    font-size: 14px;
    padding: 20px 0;
  }
  .inner-page.product-page.overall .product-2.overall .info .c-link{
    padding: 10px 15px 10px 47px;
    font-size: 14px;
  }
  .inner-page.product-page.overall .product-5 .over-ind h3 {
    font-size: 20px;
  }
  .inner-page.product-page.overall .product-5 .over-ind p {
    font-size: 16px;
  }
  .inner-page.product-page.overall .product-5 .over-ind a.c-link{
    font-size: 14px;
  }
  .inner-page.product-page.overall .product-6 .over-news h3{
    font-size: 26px;
  }
}






.youshi .box-top h3 {
    text-align: center;
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
}

.youshi {
    background: url(/template/en/images/join-bg.jpg) no-repeat center center;
    height: 820px;
    background-size: cover;
    padding-top: 100px;
}

.youshi .box-bottom {
    max-height: 330px;
    overflow: overlay;
}
.youshi .box-bottom ul li {
    padding-bottom: 15px;
        padding-right: 50px;
}
.youshi .box-bottom ul li h2 {
    font-size: 24px;
    font-weight: bold;
}

.youshi .box-bottom ul li p {
    font-size: 18px;
    line-height: 1.8;
}

.youshi .box-top {
    padding-bottom: 25px;
}


.zuobhian {
    width: 40%;
}

.youbian {
      width: 73%;
    text-align: right;
    margin-right: -13%;
    position: relative;
}

.youbian .play i:before {
    -webkit-animation-delay: .6s;
    -o-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
}

.youbian .play i:before, .youbian .play i:after {
    position: absolute;
    z-index: -1;
    content: '';
    left: -12px;
    right: -12px;
    top: -12px;
    bottom: -12px;
    border-radius: 50%;
    background: rgba(0,0,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;
}

.youbian .play {
position: absolute;
    top: 50%;
    left: 40%;
    -webkit-transform: translate(-40%,-50%);
    transform: translate(-40%,-50%);
    cursor: pointer;
}


.zuobhian .left .left-top .text p {
    font-size: 14px;
}

.zuobhian .left .left-top .text h5 {
    /*font-family: 'MPR';*/
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}
.zuobhian .left .left-top .text {
    padding-left: 25px;
}
.zuobhian .left .left-top {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}




.inner-page.product-page.overall .dianpu li {
    padding: 10px;
}

.inner-page.product-page.overall .dianpu ul {
    margin: -10px;
}
.inner-page.product-page.overall .dianpu img {
    border: 1px solid #f0f0f0;
}

.inner-page.product-page.overall .dianpu .header h2 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
   
}
.inner-page.product-page.overall .dianpu {
    margin-bottom: 80px;
}


.inner-page.product-page.overall .dianpu .header p {
    font-size: 18px;
}
.inner-page.product-page.overall .dianpu .header{
 margin-bottom: 20px;
}

@media screen and (max-width: 1440px) {
  .product-page .product-4 .container .right .item .info{
    overflow: auto;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .zuobhian .left .left-top{
    display: block;
  }
  .zuobhian{
    width: 100%;
  }
  .zuobhian .left .left-top .text{
    padding: 20px 0 0 0;
  }
  .youbian{
    display: none;
  }
  .zuobhian .left .left-top{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
 .youshi .box-bottom ul li{
   padding-right: 10px;
 }
 .youshi .box-bottom ul li p{
   font-size: 16px;
 }
}


#header .nav .ui.menu .menu-box ul.menu>li ul.sub-menu li:hover{
  background: #000;
}

#header .nav .ui.menu .menu-box ul.menu>li ul.sub-menu li:hover a {
    color: #fff;
}

#header .nav .ui.menu .menu-box ul.menu>li ul.sub-menu{
  width: 270px;
  }


#header.active{
  z-index: 999;
}



.inner-page.contact-page .contact-2 .ui .box .left .lianxi li {
    display: flex;
    align-items: center;
        margin-bottom: 25px;
}

.inner-page.contact-page .contact-2 .ui .box .left .lianxi .left {
    width: 25%;
    padding: 0;
    display: none;
}
.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right {
    padding: 0;
    width: 100%;
    padding-left: 5%;
}
.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right .main {
    margin-bottom: 20px;
}
.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right p {
    font-size: 16px;
    color: #555;
    line-height: 2;
}
.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right p em {
    font-weight: bold;
    color: #000;
}

.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right .main h2 {
    font-size: 26px;
    font-weight: bold;
}
.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right .main p {
    font-size: 16px;
}

.inner-page.contact-page .contact-2 .ui .box .left .lianxi .right p i.fa {
    margin-right: 20px;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 100%;
    text-align: center;
    background: var(--primary);
}

.inner-page.contact-page .contact-2 .ui .box .left .lianxi {
    margin-bottom: -25px;
}

.about-page .ab-1 .imgs p {
    font-size: 18px;
    color: #555;
}
.about-page .ab-1 .imgs h3 {
    font-size: 48px;
    text-transform: capitalize;
    color: #000;
    font-weight: 700;
    /*font-family: 'MPR';*/
}
.about-page .ab-3 ul li .box .img img {
    width: 100%;
}




.about-page .ab-4 .header h2 {
    padding: 6px 0;
}

.about-page .honor {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
}
.about-page .honor .left {
  width: 30%;
  padding-top: 20px;
}
.about-page .honor .left h2 {
  font-size: 48px;
    line-height: 1.8;
    font-weight: 700;
}
.about-page .honor .left p {
  margin-top: 1rem;
}
.about-page .honor .left .img {
  margin: 1.5rem 0;
}
.about-page .honor .left .tab {
  font-size: 0;
}
.about-page .honor .left .tab span {
  display: inline-block;
  background-color: var(--primary);
  line-height: 40px;
  padding: 0 15px;
  cursor: pointer;
}
.about-page .honor .left .tab span img {
  vertical-align: middle;
}
.about-page .honor .left .tab span.left-btn {
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
.about-page .honor .left .tab span.right-btn {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.about-page .honor .right {
  width: 70%;
  position: relative;
}
.about-page .honor .right ul {
  margin: -15px;
}
.about-page .honor .right ul li {
  padding: 15px;
}
.about-page .honor .right ul li img {
  width: 100%;
      box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}



.about-page .ab-1 .left .factory .content ul li {
    padding: 10px;
}


.about-page .ab-1 .left .factory .content ul {
   margin: -10px;
}

.inner-page.prodet-page .prodet-20 .box-tu ul.xin li {
    width: 16.666%;
}

@media screen and (max-width: 1000px) {
  .inner-banner.active.pro{
    height: 400px;
    padding-top: 200px;
  }
  .inner-page .sideBox{
    display: block;
  }
  .inner-page .sideBox .sidebar-left{
    display: none;
  }
  .inner-page .sideBox .sidebar-right{
    width: 100%;
    padding-left: 0;
  }
  .inner-page.prodet-page .prodet-20 .box-tu ul li{
    width: 16.6666%;
  }
  .news-page .sidebar-box{
    display: block;
  }
  .news-page .sidebar-box .sidebar-left{
    display: none;
  }
  .news-page .sidebar-box .sidebar-right{
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-2 .right{
    padding: 0 15px;
  }
}

@media screen and (max-width: 700px) {
  #cp-Nav {
        display: block;
        margin-top: 30px;
    }
    #cp-Nav .nav {
        padding: 0 15px;
    }
    #cp-Nav .nav h3.title {
        font-size: 18px;
        font-weight: bold;
        padding: 8px 10px;
        background: var(--primary);
        border-radius: 5px;
        color: #fff;
    }
    #cp-Nav .nav i.mask {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 23;
        background: rgba(0, 0, 0, 0.2);
    }
    #cp-Nav .nav>ul {
        display: none;
    }
    #cp-Nav .nav ul {
        position: fixed;
        top: 10%;
        max-height: 80%;
        left: 5%;
        width: 90%;
        padding: 20px;
        border-radius: 5px;
        background: white;
        z-index: 30;
        font-size: 16px;
        overflow: auto;
    }
    #cp-Nav .nav ul ul {
        padding: 0 10px;
        font-size: 14px;
        position: static;
        max-height: none;
        width: 100%;
        margin: 10px 0;
    }
    #cp-Nav .nav ul li a {
        display: block;
        padding: 5px 0;
    }
  .newdet-page .sidebar-box .sidebar-right .newdet-content{
    padding-right: 0;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .content h2{
    font-size: 20px;
    line-height: 1.4;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link{
    display: block;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a{
    width: 100%;
  }
  .newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right{
    padding-left: 0;
  }
  .news-page .sidebar-box .sidebar-right .news-list ul li{
    width: 100%;
    padding-right: 0;
  }
  .about-page .honor .left{
    width: 100%;
  }
  .about-page .honor .right{
    width: 100%;
    margin-top: 20px;
  }
  .inner-banner.active.pro{
    height: 280px;
    padding-top: 100px;
  }
  .product2-page .product-list ul li .pro-box{
    display: block;
  }
  .product2-page .product-list ul li .pro-box .imgbox{
    width: 100%;
  }
  .product2-page .product-list ul li .pro-box .text{
    width: 100%;
    padding: 0 10px 0 0px;
  }
  .inner-page.prodet-page .prodet-11 .box{
    display: block;
  }
  .inner-page.prodet-page .prodet-10 .ui{
    display: block;
  }
  .inner-page.prodet-page .prodet-11 .box .right{
    display: block;
  }
  .inner-page.prodet-page .prodet-10 .left{
    width: 100%;
  }
  .inner-page.prodet-page .prodet-10 .right{
    width: 100%;
  }
  .inner-page.prodet-page .prodet-20 .box-tu ul li{
    width: 33.3333%;
  }
  .inner-page.prodet-page .prodet-22 .ui{
    display: block;
  }
  .inner-page.prodet-page .prodet-22 .left{
    width: 100%;
  }
  .inner-page.prodet-page .prodet-22 .right{
    width: 100%;
  }
  .inner-page.prodet-page .inner-page.custom-page{
    margin: 0;
  }
  .prodet-page .custom-page .custom-3 .ui.container{
    display: block;
  }
  .prodet-page .custom-page .custom-3 .list.left{
    width: 100%;
  }
  .prodet-page .custom-page .custom-3 .right{
    display: none;
  }
  .inner-page.contact-page .contact-2 .ui .box .left .lianxi li{
    display: block;
  }
  .inner-page.contact-page .contact-2 .ui .box .left .lianxi .left{
    width: 100%;
  }
  .inner-page.contact-page .contact-2 .ui .box .left .lianxi .right{
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .inner-page.prodet-page .prodet-11 .box .left ul li{
    padding: 0 2rem;
  }
   .inner-page.prodet-page .prodet-11 .box .right p{
     margin-left: 0;
   }
   .inner-page.prodet-page .prodet-11 .box .right{
     margin-top: 20px;
   }
} 
@media screen and (max-width: 500px) {
  .inner-page.prodet-page .prodet-10 .right ul li{
    display: block;
    width: 100%;
  }
  .inner-page.prodet-page .prodet-20 .box-tu ul li{
    width: 50%;
  }
  .prodet-page .custom-page .custom-3 .list.left ul.grid-box.two li{
    width: 100%;
  }
}
#Pop_UpsBtn{
  display: none!important;
}
.fgdgdfgd{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 30px 0 86px;
}
.fgdgdfgd h1{
  display: inline;
}
.fdsgdrtgr{
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
  text-align: left;
}
.fdsgdrtgr span{
  font-weight: bold;
}
.fdgdfgdfgd{
  font-size: 16px;
  line-height: 2;
}

.about-page .ab-1 .factory {
    margin-top: 30px;
}


.news-page .sidebar-box .sidebar-right .news-list ul li .img:after {
    content: '';
    z-index: 9;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.3));
}




/*2023-5-16*/

.inner-page.product-page.product2-page.mulu .side_nav {
    text-align: center;
    margin-bottom: 25px;
}
.inner-page.product-page.product2-page.mulu .side_nav span {
    margin: 5px 35px;
    position: relative;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}
.inner-page.product-page.product2-page.mulu {
    padding: 70px 0 0px;
}
.pro-list-yd ul.fenlei li .yd-maintop {
    display: flex;
    align-items: center;
    align-content: center;
        /*background: #fff;*/
}
.pro-list-yd ul.fenlei li .yd-maintop .left {
width: 50%;
    padding-right: 70px;
    padding-left: 60px;
}
.pro-list-yd .hezi {
    padding: 10px;
    background: #f0f0f0;
    border-radius: 20px;
}
.pro-list-yd ul.fenlei li .yd-maintop .left a.more.more_cont {
    margin-top: 20px;
}
.pro-list-yd ul.fenlei li .yd-maintop .right {
    width: 50%;
}
.pro-list-yd ul.fenlei li .yd-maintop .left h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}
.pro-list-yd ul.fenlei li .yd-maintop .left p {
    font-size: 18px;
}
.pro-list-yd ul.fenlei li .yd-maintop .right img {
    width: 100%;
    object-fit: cover;
    height: 600px;
    border-radius: 20px;
}




.yd-mainbottom ul li {
    width: 25%;
    padding: 10px;
    text-align: center;
}
.yd-mainbottom ul li a{
  display: block;
}
.yd-mainbottom ul li a img{
  border-radius: 20px 20px 0px 0;
}

.yd-mainbottom ul li .cp-dd {
   border: 1px solid #f0f0f0;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    border-radius: 20px;
}
.yd-mainbottom ul li .cp-dd .text {
    background: #f0f0f0;
    padding: 20px;
    font-size: 20px;
    /*height: 65px;*/
        border-radius: 0px 0 20px 20px;
}
.yd-mainbottom ul li .cp-dd .text a{
  display: block;
  min-height: calc(1.5em * 3);
}


.pro-list-yd ul.fenlei li .yd-maintop .left-text {
    max-height: 300px;
    overflow: overlay;
}

.yd-mainbottom {
  margin-top: 50px;
}

.inner-page.prodet-page .prodet-22 .right .faq-box ul.animate-father {
    max-height: 350px;
    overflow: overlay;
}

.prodet-page .prodet-1 .left .big {
    background: #fdfdfd;
    border: 1px solid rgb(0 0 0/3%);
}

.prodet-page .prodet-1 .left .proview-img {
    margin-top: 10px;
}
.prodet-page .prodet-1 .left .proview-img img {
    background: #fdfdfd;
    border: 1px solid rgb(0 0 0/3%);
}

.inner-page.product-page.product2-page.mulu .pro-list-yd ul.fenlei li.dabeijing:nth-child(even) {
    background: url(/template/en/images/nbg.jpg) no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
li.dabeijing {
    padding: 50px;
}
.yd-mainbottom ul li .cp-dd .cp-img {
    background: #FFF;
    border-radius: 20px;
}




.inner-page.product-page.product2-page.mulu .side_nav a.list {
    display: inline-block;
    font-size: 14px;
    color: #FFF;
    text-transform: capitalize;
    background: #000;
    padding: 8px 12px;
    position: relative;
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    margin-left: 5px;
    margin-top: 1.3rem;
}
.inner-page.product-page.product2-page.mulu .side_nav a.list:after {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background: var(--primary);
    left: 0;
    top: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    z-index: 1;
}

.inner-page.product-page.product2-page.mulu .side_nav a.list:hover:after {
    width: 100%;
}

.product2-page .product-list ul li:hover img {
    transform: scale3d(1.05, 1.05, 1);
    transition: all .5s ease;
}




.yd-mainbottom .slick-prev {
  background: url("../images/inner-l.png") no-repeat center center rgba(255,255,255,0.0);
  left: -55px;
}

.yd-mainbottom .slick-next {
  background: url("../images/inner-r.png") no-repeat center center rgba(255,255,255,0.0);
 right: -55px;
}

.yd-mainbottom .slick-arrow {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 5px;
    color: transparent;
    border: none;
    z-index: 1;
    outline: none;
    transform: translateY(-50%);
    transition: .5s;
}

#index-body .product .left .top .productBox .swiper-slide div {
    font-size: 15px;
}

#index-body .product .left .top .productBox .swiper-slide {
    font-size: 15px;
}

@media screen and (max-width: 1680px) {
  .about-page .ab-4 .content .slick-arrow{
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 1440px) {
  .yd-mainbottom ul li .cp-dd .text{
    height: 90px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left{
    padding: 0 40px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left h2{
    font-size: 40px;
  }
  .about-page .ab-4 .content .slick-prev{
    left: 45%;
  }
  .about-page .ab-4 .content .slick-next{
    right: 45%;
  }
}

@media screen and (max-width: 1280px) {
  li.dabeijing{
    padding: 50px 20px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left{
    padding: 0 30px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left h2{
    font-size: 36px;
  }
  .yd-mainbottom .slick-prev{
    left: -20px;
  }
  .yd-mainbottom .slick-next{
    right: -20px;
  }
  .about-page .ab-4 .content .slick-prev{
    left: 44%;
  }
  .about-page .ab-4 .content .slick-next{
    right: 44%;
  }
}
@media screen and (max-width: 1100px) {
  li.dabeijing{
    padding: 50px 0;
  }
  #header .nav .ui.menu .logo {
    width: 12%;
  }
  #header .nav .ui.menu .h-contact a{
    padding: 10px 14px;
  }
  #footer .footer-top li {
    margin-right: 10px;
    font-size: 14px;
  }
  #header .nav .ui.menu .h-contact a em{
    -webkit-transform: skewX(24deg) skewY(0);
    -moz-transform: skewX(24deg) skewY(0);
    -ms-transform: skewX(24deg) skewY(0);
    transform: skewX(24deg) skewY(0);
  }
  .about-page .ab-4 .content .slick-prev{
    left: 43%;
  }
  .about-page .ab-4 .content .slick-next{
    right: 43%;
  }
}
@media screen and (max-width: 1000px) {
  #header .nav .ui.menu .logo{
    width: auto;
  }
  .inner-page.product-page.product2-page.mulu{
    padding: 60px 0 0 0;
  }
  .pro-list-yd ul.fenlei li .yd-maintop{
    display: block;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left{
    width: 100%;
    padding: 20px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .right{
    width: 100%;
    padding: 0 20px;
  }
  .about-page .honor .left h2{
    font-size: 30px;
  }
  .about-page .ab-4 .content .slick-prev{
    left: 40%;
  }
  .about-page .ab-4 .content .slick-next{
    right: 40%;
  }
  #footer .footer-top .column:nth-child(1){
    width: 15%;
  }
  #footer .footer-top .column:last-child{
    width: 85%;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page{
    padding: 30px 0;
  }
  .prodet-page .prodet-1 .left{
    padding: 0;
  }
  .prodet-page .custom-page .custom-3 .list.left{
    padding: 30px 10px;
  }
  .about-page .ab-4 .content .slick-prev{
    left: 36%;
  }
  .about-page .ab-4 .content .slick-next{
    right: 36%;
  }
}
@media screen and (max-width: 500px) {
  .pro-list-yd ul.fenlei li .yd-maintop .left h2{
    font-size: 26px;
    line-height: 1.2;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .right img{
    height: auto;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left{
    padding: 20px 15px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .right{
    padding: 0 15px;
  }
  .pro-list-yd ul.fenlei li .yd-maintop .left p{
    font-size: 14px;
    line-height: 1.5;
  }
  .inner-page a.more{
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }
  .about-page .ab-4 .content .slick-arrow{
    width: 40px;
    height: 40px;
  }
}

#index-body .about .grid-box .right .shouyeh {
  font-size: 16px;
  line-height: 2;
  width: 90%;
  margin-top: 33px;
}
.shouyeh h1 {
  display: inline;
}


