@charset "utf-8";
.n-banner{
  width:100%;
  position: relative;
  overflow: hidden;
}
.n-banner .bg{
  width:100%;
  overflow:hidden;
}
.n-banner .bg img{
  width:100%;
  display:block;
}
.n-banner .word{
  width: 100%;
  height: 100%;
  position: absolute;
  left:0;
  top:0;
  display: flex;
  align-items: center;
}
.n-banner .word a{
  display: block;
}
.n-banner .word .title{
  font-size: 48px;
  line-height: 48px;
  font-weight:bold;
  color:#ea5506;
}
.about-body .n-banner .word .title{
  color:#fff;
}
.n-banner .word .path{
  margin-top: 10px;
  display: flex;
  align-items: center;
  color:#666;
}
.about-body .n-banner .word .path{
  color:#fff;
}
.n-banner .word .path a{
  color:#666;
}
.about-body .n-banner .word .path a{
  color:#fff;
}
@media (max-width: 1600px) {
  .n-banner .word .title{
    font-size:42px;
    line-height:42px;
  }
}
@media (max-width: 1280px) {
  .n-banner .bg{
    height:36vh;
  }
  .n-banner .bg img{
    height:100%;
    object-fit:cover;
    object-position:bottom right;
  }
  .n-banner .word .wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
  .n-banner .word .title{
    font-size:36px;
    line-height:36px;
  }
  .n-banner .word .path{
    margin-top:5px;
  }
}
@media (max-width: 992px) {
  .n-banner .word .title{
    font-size:32px;
    line-height:32px;
  }
}
@media (max-width: 750px) {
  .n-banner .word .title{
    font-size:28px;
    line-height:28px;
  }
  .n-banner .word .path{
      display:none;
  }
}

.n-type{
  width: 100%;
  border-bottom: 1px #eee solid;
}
.n-type > ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.n-type > ul > li{
  padding:0 20px;
  position: relative;
}
.n-type > ul > li > a{
  display: block;
  line-height: 60px;
  position: relative;
}
.n-type > ul > li:hover > a,
.n-type > ul > li.active > a{
  color: #e2521f;
}
.n-type > ul > li > a:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #e2521f;
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.n-type > ul > li:hover > a:after,
.n-type > ul > li.active > a:after {
  transform-origin: center;
  transform: scale(1);
}
.n-type > ul > li > ul{
    display:none;
}
.n-second-type > ul{
    display:flex;
    flex-wrap:wrap;
}
.n-second-type > ul > li{
    width:32%;
    margin-top:2%;
    margin-right:2%;
}
.n-second-type > ul > li:nth-child(3n){
    margin-right:0;
}
.n-second-type > ul > li > a{
    display:block;
    border:1px #333 solid;
    text-align:center;
    line-height:24px;
    padding:5px;
}
.n-second-type > ul > li.active > a{
    background:#ea5506;
    border-color:#ea5506;
    color:#fff;
}
.n-page{
  margin-top: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-page a,
.n-page span{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 50px;
}
.n-page .first,
.n-page .last,
.n-page .prev,
.n-page .next{
  display: none;
}
.n-page a:hover,
.n-page span:hover,
.n-page a.active,
.n-page span.active{
  background: #ea5506;
  color: #fff;
}
@media (max-width: 1600px) {
  
}
@media (max-width: 1280px) {
  .n-type{
    border:none;
  }
  .n-type > ul{
    flex-wrap:wrap;
  }
  .n-type  > ul > li{
    width:23.5%;
    padding:0;
    margin-top:2%;
    margin-right:2%;
  }
  .n-type  > ul > li:nth-child(4n){
      margin-right:0;
  }
  .n-type > ul > li > a{
    height:45px;
    line-height:1;
    text-align:center;
    background:#f9f9f9;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .n-type > ul > li > a:after{
    display:none;
  }
  .n-type > ul > li:hover > a,
  .n-type > ul > li.active > a{
    background: #ea5506;
    color:#fff;
  }
  .n-second-type > ul > li{
      width:49%;
  }
  .n-second-type > ul > li:nth-child(3n){
      margin-right:2%;
  }
  .n-second-type > ul > li:nth-child(2n){
      margin-right:0;
  }
}
@media (max-width: 992px) {
  .n-type > ul > li{
      width:32%;
  }
  .n-type > ul > li:nth-child(4n){
      margin-right:2%;
  }
  .n-type > ul > li:nth-child(3n){
      margin-right:0;
  }
}
@media (max-width: 750px) {
  .n-page a,
  .n-page span{
    width:30px;
    height: 30px;
  }
  .n-type > ul > li{
    width:49%;
  }
  .n-type > ul > li:nth-child(3n){
      margin-right:2%;
  }
  .n-type > ul > li:nth-child(2n){
      margin-right:0;
  }
}

.n-about{
  padding:100px 0;
  overflow:hidden;
}
.n-about .about-box1{
  overflow:hidden;
}
.n-about .about-box1 .title{
  text-align:center;
  font-weight:bold;
  font-size:48px;
  line-height:48px;
}
.n-about .about-box1 .content{
  margin-top:20px;
}
.n-about .about-box2{
  width:100%;
  padding:100px 0;
  margin-top:100px;
  background:url(../images/about-1.jpg) no-repeat center;
  background-size:cover;
  overflow:hidden;
  color:#fff;
}
.n-about .about-box2 .title{
  display:flex;
  flex-direction:column;
}
.n-about .about-box2 .title h1{
  font-weight:bold;
  font-size:36px;
  line-height:36px;
}
.n-about .about-box2 .summary{
  margin-top:30px;
}
.n-about .about-box2 .content ul{
  display:flex;
  justify-content:space-between;
}
.n-about .about-box2 .content li{
  margin-top:60px;
}
.n-about .about-box2 .content .text1{
  font-size:14px;
}
.n-about .about-box2 .content .text2 span{
  font-size:24px;
  line-height:24px;
}
.n-about .about-box2 .content .text2 .counter{
  font-size:64px;
  line-height:64px;
  font-weight:bold;
}
.n-about .about-box3{
  padding:100px 0 0 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.n-about .about-box3 .title{
  font-size:32px;
  line-height:32px;
}
.n-about .about-box3 .content{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.n-about .about-box3 .content a{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 5px;
  background:#333;
  color:#fff;
  padding:5px 20px;
}
.n-about .about-box3 .content i{
  display:block;
  margin-right:10px;
}
.n-about .about-box3 .content a:hover{
  background:#ea5506;
}
@media (max-width: 1600px) {
  .n-about .about-box1 .title{
    font-size:42px;
    line-height:42px;
  }
  .n-about .about-box2 .title h1{
    font-size:32px;
    line-height:32px;
  }
  .n-about .about-box3 .title{
    font-size:28px;
    line-height:28px;
  }
  .n-about .about-box2 .content .text2 span{
    font-size:20px;
  }
  .n-about .about-box2 .content .text2 .counter{
    font-size:54px;
    line-height:54px;
  }
}
@media (max-width: 1280px) {
  .n-about{
    padding:10% 0;
  }
  .n-about .about-box1 .title{
    font-size:36px;
    line-height:36px;
  }
  .n-about .about-box1 .content{
    margin-top:3%;
  }
  .n-about .about-box2{
    padding:10% 0;
    margin-top:10%;
  }
  .n-about .about-box2 .summary{
    margin-top:3%;
  }
  .n-about .about-box2 .title h1{
    font-size:28px;
    line-height:28px;
  }
  .n-about .about-box3{
    padding:10% 0 0 0;
  }
  .n-about .about-box3 .title{
    font-size:24px;
    line-height:24px;
  }
  .n-about .about-box3 .content{
    margin-top:4%;
  }
  .n-about .about-box2 .content ul{
    flex-direction:column;
  }
  .n-about .about-box2 .content li{
    margin-top:6%;
  }
  .n-about .about-box2 .content .text2 span{
    font-size:18px;
  }
  .n-about .about-box2 .content .text2 .counter{
    font-size:48px;
    line-height:48px;
  }
}
@media (max-width: 992px) {
  .n-about .about-box1 .title{
    font-size:32px;
    line-height:32px;
  }
  .n-about .about-box2 .title h1{
    font-size:24px;
    line-height:24px;
  }
  .n-about .about-box2 .content .text2 .counter{
    font-size:42px;
    line-height:42px;
  }
}
@media (max-width: 750px) {
  .n-about .about-box1 .title{
    font-size:24px;
    line-height:24px;
  }
  .n-about .about-box3 .title{
    font-size:20px;
  }
  .n-about .about-box2 .title h1{
    font-size:20px;
  }
  .n-about .about-box2 .content .text2{
    display:flex;
    flex-direction:column;
  }
  .n-about .about-box2 .content .text2 span{
    font-size:16px;
  }
  .n-about .about-box2 .content .text2 .counter{
    font-size:36px;
    line-height:36px;
  }
}

.n-products{
  padding-top:100px;
  overflow:hidden;
}
.n-products .products-ul{
  display:flex;
  flex-wrap:wrap;
}
.n-products .products-ul li{
  width:32%;
  margin-right:2%;
  margin-bottom:2%;
}
.n-products .products-ul li:nth-child(3n){
  margin-right:0;
}
.n-products .products-ul a{
  background:#fff;
  display:block;
  padding:10px;
  border:1px #eee solid;
}
.n-products .products-ul a:hover{
  box-shadow:0 0 10px rgba(0, 0, 0, .15);
}
.n-products .products-ul .images{
  overflow:hidden;
}
.n-products .products-ul .images img{
  width:100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display:block;
}
.n-products .products-ul li:hover .images img{
  transform:scale(1.08);
}
.n-products .products-ul .word{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  padding:20px 0;
  border-top:1px #eee solid;
  text-align:center;
}
.n-products .products-ul .word .word-1{
  font-weight:700;
  font-size:20px;
  line-height:24px;
}
.n-products .products-ul .word .word-2{
  margin-top:10px;
  font-size:16px;
  height:48px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.n-products .products-ul .word .word-3{
  border:1px #eee solid;
  padding:0 20px;
  font-size:14px;
  margin-top:20px;
  border-radius:30px;
}
.n-products .products-ul li:hover .word .word-3{
  background:#e2521f;
  border-color:#e2521f;
  color:#fff;
}
@media (max-width: 1600px) {
  .n-products .products-ul .word .word-1{
    font-size:16px;
  }
  .n-products .products-ul .word .word-2{
    font-size:14px;
  }
  .n-products .products-ul .word{
    padding-top:10px;
    padding-bottom:0;
  }
  .n-products .products-ul .word .word-1{
    font-size:18px;
  }
}
@media (max-width: 1280px) {
  .n-products{
    padding-top:10%;
  }
  .n-products .products-ul li{
    width:49%;
  }
  .n-products .products-ul li:nth-child(3n){
    margin-right:2%;
  }
  .n-products .products-ul li:nth-child(2n){
    margin-right:0;
  }
  .n-products .products-ul .word{
    margin:4% 0;
  }
  .n-products .products-ul .word .word-3{
      margin-top:2%;
  }
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  .n-products .products-ul li{
    width:100%;
    margin-right:0;
  }
  .n-products .products-ul li:nth-child(3n){
    margin-right:0;
  }
}

.n-products1{
    padding-top:100px;
    display:flex;
    justify-content:space-between;
    overflow:hidden;
}
.n-products1 .products-left{
    width:300px;
}
.n-products1 .products-left .title{
    background:#ea5506;
    color:#fff;
    padding:20px;
    font-weight:700;
    font-size:20px;
}
.n-products1 .products-left .list{
    border:1px #eee solid;
    border-top:none;
}
.n-products1 .products-left .list li{
    border-bottom:1px #eee solid;
}
.n-products1 .products-left .list li:last-child{
    border-bottom:none;
}
.n-products1 .products-left .list a{
    display:block;
    padding:10px;
}
.n-products1 .products-left .list li.active a{
    color:#ea5506;
    font-weight:700;
}
.n-products1 .products-right{
    width:calc(100% - 330px);
}
.n-products1 .products-right .products-ul{
  display:flex;
  flex-wrap:wrap;
}
.n-products1 .products-right .products-ul li{
  width:32%;
  margin-right:2%;
  margin-bottom:2%;
}
.n-products1 .products-right .products-ul li:nth-child(3n){
  margin-right:0;
}
.n-products1 .products-right .products-ul a{
  background:#fff;
  display:block;
  padding:10px;
  border:1px #eee solid;
}
.n-products1 .products-right .products-ul a:hover{
  box-shadow:0 0 10px rgba(0, 0, 0, .15);
}
.n-products1 .products-right .products-ul .images{
    width:100%;
    height:0;
    padding-bottom:100%;
    position:relative;
  overflow:hidden;
}
.n-products1 .products-right .products-ul .images .box{
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
.n-products1 .products-right .products-ul .images .box img{
  width:100%;
  height:100%;
  object-fit:contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display:block;
}
.n-products1 .products-right .products-ul li:hover .images img{
  transform:scale(1.08);
}
.n-products1 .products-right .products-ul .word{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  padding:20px 0;
  border-top:1px #eee solid;
  text-align:center;
}
.n-products1 .products-right .products-ul .word .word-1{
  font-weight:700;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.n-products1 .products-right .products-ul .word .word-2{
  margin-top:10px;
  font-size:16px;
  height:48px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.n-products1 .products-right .products-ul .word .word-3{
  border:1px #eee solid;
  padding:0 20px;
  font-size:14px;
  margin-top:20px;
  border-radius:30px;
}
.n-products1 .products-right .products-ul li:hover .word .word-3{
  background:#e2521f;
  border-color:#e2521f;
  color:#fff;
}
@media (max-width: 1600px) {
    .n-products1 .products-left .title{
    font-size:18px;
}
  .n-products1 .products-right .products-ul .word .word-1{
    font-size:16px;
  }
  .n-products1 .products-right .products-ul .word .word-2{
    font-size:14px;
  }
  .n-products1 .products-right .products-ul .word{
    padding-top:10px;
    padding-bottom:0;
  }
  .n-products1 .products-right .products-ul .word .word-1{
    font-size:18px;
  }
}
@media (max-width: 1280px) {
    .n-products1{
        padding-top:10%;
        flex-direction:column-reverse;
    }
    .n-products1 .products-left,
    .n-products1 .products-right{
        width:100%;
    }
    .n-products1 .products-left{
        margin-top:6%;
    }
    .n-products1 .products-left .title{
    font-size:16px;
    padding:10px;
}
  .n-products1 .products-right .products-ul li{
    width:49%;
  }
  .n-products1 .products-right .products-ul li:nth-child(3n){
    margin-right:2%;
  }
  .n-products1 .products-right .products-ul li:nth-child(2n){
    margin-right:0;
  }
  .n-products1 .products-right .products-ul .word{
    margin:4% 0;
  }
  .n-products1 .products-right .products-ul .word .word-3{
      margin-top:2%;
  }
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  .n-products1 .products-right .products-ul li{
    width:100%;
    margin-right:0;
  }
  .n-products1 .products-right .products-ul li:nth-child(3n){
    margin-right:0;
  }
}

.n-products-footer .footer-box1{
  width:100%;
  padding:100px 0;
  margin-top:100px;
  background:url(../images/about-1.jpg) no-repeat center;
  background-size:cover;
  overflow:hidden;
  color:#fff;
}
.n-products-footer .footer-box1 .title{
  display:flex;
  flex-direction:column;
}
.n-products-footer .footer-box1 .title h1{
  font-weight:bold;
  font-size:36px;
  line-height:36px;
}
.n-products-footer .footer-box1 .summary{
  margin-top:30px;
}
.n-products-footer .footer-box1 .content ul{
  display:flex;
  justify-content:space-between;
}
.n-products-footer .footer-box1 .content li{
  margin-top:60px;
}
.n-products-footer .footer-box1 .content .text1{
  font-size:14px;
}
.n-products-footer .footer-box1 .content .text2 span{
  font-size:24px;
  line-height:24px;
}
.n-products-footer .footer-box1 .content .text2 .counter{
  font-size:64px;
  line-height:64px;
  font-weight:bold;
}
.n-products-footer .footer-box2{
  padding:100px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.n-products-footer .footer-box2 .title{
  font-size:32px;
  line-height:32px;
}
.n-products-footer .footer-box2 .content{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.n-products-footer .footer-box2 .content a{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 5px;
  background:#333;
  color:#fff;
  padding:5px 20px;
}
.n-products-footer .footer-box2 .content i{
  display:block;
  margin-right:10px;
}
.n-products-footer .footer-box2 .content a:hover{
  background:#ea5506;
}
@media (max-width: 1600px) {
  .n-products-footer .about-box1 .title{
    font-size:42px;
    line-height:42px;
  }
  .n-products-footer .footer-box1 .title h1{
    font-size:32px;
    line-height:32px;
  }
  .n-products-footer .footer-box2 .title{
    font-size:28px;
    line-height:28px;
  }
  .n-products-footer .footer-box1 .content .text2 span{
    font-size:20px;
  }
  .n-products-footer .footer-box1 .content .text2 .counter{
    font-size:54px;
    line-height:54px;
  }
}
@media (max-width: 1280px) {
  .n-products-footer .footer-box1{
    padding:10% 0;
    margin-top:10%;
  }
  .n-products-footer .footer-box1 .summary{
    margin-top:3%;
  }
  .n-products-footer .footer-box1 .title h1{
    font-size:28px;
    line-height:28px;
  }
  .n-products-footer .footer-box2{
    padding:10% 0;
  }
  .n-products-footer .footer-box2 .title{
    font-size:24px;
    line-height:24px;
  }
  .n-products-footer .footer-box2 .content{
    margin-top:4%;
  }
  .n-products-footer .footer-box1 .content ul{
    flex-direction:column;
  }
  .n-products-footer .footer-box1 .content li{
    margin-top:6%;
  }
  .n-products-footer .footer-box1 .content .text2 span{
    font-size:18px;
  }
  .n-products-footer .footer-box1 .content .text2 .counter{
    font-size:48px;
    line-height:48px;
  }
}
@media (max-width: 992px) {
  .n-products-footer .footer-box1 .title h1{
    font-size:24px;
    line-height:24px;
  }
  .n-products-footer .footer-box1 .content .text2 .counter{
    font-size:42px;
    line-height:42px;
  }
}
@media (max-width: 750px) {
  .n-products-footer .footer-box2 .title{
    font-size:20px;
  }
  .n-products-footer .footer-box1 .title h1{
    font-size:20px;
  }
  .n-products-footer .footer-box1 .content .text2{
    display:flex;
    flex-direction:column;
  }
  .n-products-footer .footer-box1 .content .text2 span{
    font-size:16px;
  }
  .n-products-footer .footer-box1 .content .text2 .counter{
    font-size:36px;
    line-height:36px;
  }
}

.n-productsdetail{
  width:100%;
  overflow:hidden;
}
.n-productsdetail .detail-title{
  font-size:36px;
  line-height:36px;
  text-align:center;
}
.n-productsdetail .detail-box1{
  width:100%;
  position:relative;
  overflow:hidden;
}
.n-productsdetail .detail-box1 .bg{
  width:100%;
  height: calc(100% - 40px);
  position:absolute;
  left:0;
  top:0;
  z-index:-1;
}
.n-productsdetail .detail-box1 .bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.n-productsdetail .detail-box1 .path{
  width:100%;
  border-bottom:1px rgba(0, 0, 0, .2) solid;
  height:50px;
  display:flex;
  align-items:center;
}
.n-productsdetail .detail-box1 .content .wrap{
  padding:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  overflow:hidden;
}
.n-productsdetail .detail-box1 .content .left,
.n-productsdetail .detail-box1 .content .right{
  width:45%;
}
.n-productsdetail .detail-box1 .content .left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.n-productsdetail .detail-box1 .content .left .title{
  max-width:100%;
  min-width:200px;
  background:#333;
  padding:10px 30px;
  color:#fff;
  font-size:32px;
  line-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:0 30px 0 0;
}
.n-productsdetail .detail-box1 .content .left .content{
  width:100%;
  padding:20px;
  background:rgba(255, 255, 255, .9);
}
.n-productsdetail .detail-box1 .content .left .content .text{

}
.n-productsdetail .detail-box1 .content .left .content .text .text-2{
  border-top:1px #eee solid;
  border-bottom:1px #eee solid;
  padding:20px 0;
  margin-top:20px;
}
.n-productsdetail .detail-box1 .content .left .content .text .text-2 li:before{
  content:">";
  color:#e2521f;
  margin-right:5px;
}
.n-productsdetail .detail-box1 .content .left .content .download{
  margin-top:20px;
}
.n-productsdetail .detail-box1 .content .left .content .download a{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e2521f;
  color:#fff;
  line-height:40px;
}
.n-productsdetail .detail-box1 .content .left .content .download i{
  margin-right:10px;
}
.n-productsdetail .detail-box1 .content .left .detail{
  width:100%;
}
.n-productsdetail .detail-box1 .content .left .detail a{
  background:#dfdfdf;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:50px;
  color:#000;
}
.n-productsdetail .detail-box1 .content .left .detail i{
  display:block;
  margin-right:10px;
  color:#e2521f;
}
.n-productsdetail .detail-box1 .content .right .hd img{
  max-width:100%;
  display:block;
}
.n-productsdetail .detail-box1 .content .right .bd{
  display:flex;
  justify-content:flex-end;
}
.n-productsdetail .detail-box1 .content .right .bd ul{
  display:flex;
  align-items:center;
  background:#fff;
  padding:10px;
}
.n-productsdetail .detail-box1 .content .right .bd li{
  width:80px;
  height:80px;
  border:1px #eee solid;
  margin-right:10px;
  cursor:pointer;
}
.n-productsdetail .detail-box1 .content .right .bd li:last-child{
  margin-right:0;
}
.n-productsdetail .detail-box1 .content .right .bd li.active{
  border-color:#e2521f;
}
.n-productsdetail .detail-box1 .content .right .bd img{
  width:100%;
  display:block;
}
.n-productsdetail .detail-box2{
  width:100%;
  border-top:1px #dddddd solid;
  border-bottom:1px #dddddd solid;
  margin-top:80px;
  overflow:hidden;
}
.n-productsdetail .detail-box2.sticky-top{
  position:fixed;
  top:40px;
  left:0;
  background:rgba(0, 0, 0, .5);
  z-index:99;
}
.n-productsdetail .detail-box2 ul{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.n-productsdetail .detail-box2 li.line{
  width:1px;
  height:14px;
  background:#eee;
}
.n-productsdetail .detail-box2 a{
  display:block;
  line-height:50px;
  text-align:center;
  padding:0 10px;
}
.n-productsdetail .detail-box2.sticky-top a{
  color:#fff;
}
/*.n-productsdetail .detail-box2 li.active a{
  background:#000;
  color:#fff;
}
.n-productsdetail .detail-box2.sticky-top li.active a{
  background:#ea5404;
}*/
.n-productsdetail .detail-box3 .box1{
  margin-top: 40px;
}
.n-productsdetail .detail-box3 .box1 .detail-title{
  text-align: left;
}
.n-productsdetail .detail-box3 .box1 .content{
  margin-top: 20px;
  position: relative;
}
.n-productsdetail .detail-box3 .box1 .content .bg img{
  width: 100%;
  display: block;
}
.n-productsdetail .detail-box3 .box1 .content .word{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top:0;
}
.n-productsdetail .detail-box3 .box1 .content .word .wrap{
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
}
.n-productsdetail .detail-box3 .box1 .content .word .left,
.n-productsdetail .detail-box3 .box1 .content .word .right{
  width: 48%;
}
.n-productsdetail .detail-box3 .box1 .content .word .left{
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-productsdetail .detail-box3 .box1 .content .word .left a{
  display: block;
  color: #fff;
  width: 80px;
  height: 80px;
  background: #000;
  border-radius: 50%;
}
.n-productsdetail .detail-box3 .box1 .content .word .left i{
  font-size: 80px;
  display: block;
  line-height: 80px;
}
.n-productsdetail .detail-box3 .box1 .content .word .right{
  background: rgba(255, 255, 255, .8);
  padding:40px;
}
.n-productsdetail .detail-box3 .box1 .content .word .right .text{
  margin: 20px 0;
}
.n-productsdetail .detail-box3 .box1 .content .word .right .video a{
  display: block;
  border:1px #333 solid;
  width: 200px;
  text-align: center;
  line-height: 40px;
}
.n-productsdetail .detail-box3 .box1 .content .word .right .video a:hover{
  background: #ea5506;
  border-color: #ea5506;
  color:#fff;
}
.n-productsdetail .detail-box3 .box2{
  
}
.n-productsdetail .detail-box3 .box2 img{
  max-width: 100%;
  display: block;
  margin:0 auto;
  margin-top:90px;
}
.n-productsdetail .detail-box3 .box2 table{
    height:auto !important;
    width:1280px !important;
    border:none !important;
    margin:0 auto !important;
    margin-top:90px !important;
}
.n-productsdetail .detail-box3 .box2 table col,
.n-productsdetail .detail-box3 .box2 table tr,
.n-productsdetail .detail-box3 .box2 table th,
.n-productsdetail .detail-box3 .box2 table td{
    width:auto !important;
    height:auto !important;
    padding:0 !important;
    margin:0 !important;
    border:none !important;
}
.n-productsdetail .detail-box4{
  padding-top:90px;
}
.n-productsdetail .detail-box4 .box1{
  border-top:1px #eee solid;
  padding-top:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}
.n-productsdetail .detail-box4 .box1 .content{
  text-align:center;
  margin:30px 0 50px 0;
}
.n-productsdetail .detail-box4 .box1 .contact a{
  background:#ea5404;
  display:block;
  padding:5px 20px;
  color:#fff;
}
.n-productsdetail .detail-box4 .box2{
  margin-top:90px;
}
.n-productsdetail .detail-box4 .box2 .list{
  margin-top:20px;
}
.n-productsdetail .detail-box4 .box2 .list ul{
  display:flex;
  flex-wrap:wrap;
}
.n-productsdetail .detail-box4 .box2 .list li{
  width:32%;
  margin-right:2%;
  margin-top:2%;
}
.n-productsdetail .detail-box4 .box2 .list li:nth-child(3n){
  margin-right:0;
}
.n-productsdetail .detail-box4 .box2 .list img{
  width:100%;
  display:block;
}
.n-productsdetail .detail-box5{
  padding:90px 0;
  margin-top:90px;
  background:#f9f9f9;
}
.n-productsdetail .detail-box5 .list .hd{
  margin-top:20px;
}
.n-productsdetail .detail-box5 .list .hd ul{
  display:flex;
  justify-content:center;
}
.n-productsdetail .detail-box5 .list .hd li{
  padding:0 20px;
  border:1px #333 solid;
  margin-right:10px;
  line-height:35px;
  cursor:pointer;
}
.n-productsdetail .detail-box5 .list .hd li.active{
  background:#333;
  color:#fff;
}
.n-productsdetail .detail-box5 .list .hd li:last-child{
  margin-right:0;
}
.n-productsdetail .detail-box5 .list .bd{
  margin-top:40px;
}
.n-productsdetail .detail-box5 .list .bd .item{
  display:none;
}
.n-productsdetail .detail-box5 .list .bd .item.active{
  display:block;
}
.n-productsdetail .detail-box5 .list .bd .item1 ul{
  display:flex;
  flex-wrap:wrap;
}
.n-productsdetail .detail-box5 .list .bd .item1 li{
  width:49%;
  margin-right:2%;
  border-bottom:1px #eee solid;
  padding-top:10px;
  padding-bottom:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.n-productsdetail .detail-box5 .list .bd .item1 li:nth-child(2n){
  margin-right:0;
}
.n-productsdetail .detail-box5 .list .bd .item1 .right{
  display:flex;
  text-align:right;
  align-items:center;
}
.n-productsdetail .detail-box5 .list .bd .item1 .right em{
  margin-left:5px;
}
.n-productsdetail .detail-box5 .list .bd .item1 .download-box{
  margin-top:40px;
}
.n-productsdetail .detail-box5 .list .bd .item1 .download-box .download{
  margin-top:20px;
  display:flex;
}
.n-productsdetail .detail-box5 .list .bd .item1 .download-box .download a{
  border:1px #333 solid;
  padding:5px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.n-productsdetail .detail-box5 .list .bd .item1 .download-box .download i{
  margin-right:10px;
}
.n-productsdetail .detail-box5 .list .bd .item1 .download-box .download a:hover{
  background:#ea5404;
  border-color:#ea5404;
  color:#fff;
}
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box{
    overflow:hidden;
}
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box table{
    width:100% !important;
    height:auto !important;
    border:1px #333 solid !important;
    margin:0 !important;
    padding:0 !important;
}
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box table col,
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box table tr,
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box table th,
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box table td{
    width:auto !important;
    height:auto !important;
    border:1px #333 solid !important;
    margin:0 !important;
    padding:5px 10px !important;
    text-align:center !important;
}
.n-productsdetail .detail-box5 .list .bd .item1 .canshu-box img{
    width:100%;
    display:block;
    margin:0 auto;
} 
.n-productsdetail .detail-box5 .list .bd .item2 li{
  padding-bottom:20px;
  margin-bottom:20px;
  border-bottom:1px #eee solid;
}
.n-productsdetail .detail-box5 .list .bd .item2 .content{
  margin-top:10px;
}
.n-productsdetail .detail-box5 .list .bd .item2 .content img{
  max-width:100%;
  display:block;
}
.n-productsdetail .detail-box5 .list .bd .item3 img{
  max-width:100%;
  display:block;
}
.n-productsdetail .detail-box6{
  padding-top:90px;
}
.n-productsdetail .detail-box6 .title{
  text-align:center;
}
.n-productsdetail .detail-box6 .summary{
  margin-top:20px;
}
.n-productsdetail .detail-box6 .list{
  margin-top: 60px;
}
.n-productsdetail .detail-box6 .list .a6list .slick-slide{
  padding-bottom: 30px;
  margin-right: 30px;
}
/* 最后一个slide不需要右侧间距 */
.n-productsdetail .detail-box6 .list .a6list .slick-slide:last-child {
  margin-right: 0;
}
/* 调整轮播容器宽度，避免最后一个slide被压缩 */
.n-productsdetail .detail-box6 .list .a6list .slick-list {
  margin-right: -30px; /* 抵消右侧间距，保持内容居中 */
}
.n-productsdetail .detail-box6 .list .a6list .slick-list .image img{
  width: 100%;
  display: block;
}
.n-productsdetail .detail-box6 .list .a6list .slick-list .word{
  border-top: 1px #eee solid;
  border-bottom: 1px #eee solid;
  padding:30px 0;
}
.n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-1{
  font-size: 24px;
  height: 48px;
  line-height: 24px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-2{
  margin-top: 20px;
  height: 160px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}
.n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-3{
  width:120px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px #333 solid;
  margin-top: 40px;
}
.n-productsdetail .detail-box6 .list .a6list .slick-list a:hover .word .word-3{
  background: #ea5506;
  border-color: #ea5506;
  color: #fff;
}
.n-productsdetail .detail-box6 .list .slick-dots{
  display:flex !important;
  align-items:center;
  justify-content:center;
  margin-top:40px;
}
.n-productsdetail .detail-box6 .list .slick-dots li{
  margin:0 5px;
  width:10px;
  height:10px;
  background:rgba(0, 0, 0, .6);
  border-radius:50%;
}
.n-productsdetail .detail-box6 .list .slick-dots li.slick-active{
  background:#ea5404;
}
.n-productsdetail .detail-box6 .list .slick-dots li button{
  display:none;
}
.n-productsdetail .detail-box7{
  padding-top:90px;
}
.n-productsdetail .detail-box7 .list{
  border:3px #eee solid;
  border-radius:30px;
  margin-top:40px;
  position:relative;
  overflow:hidden;
}
.n-productsdetail .detail-box7 .list .u7list .slick-list li{
  display:flex;
  align-items:center;
  justify-content:center;
}
.n-productsdetail .detail-box7 .list .slick-dots{
  display:flex !important;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.n-productsdetail .detail-box7 .list .slick-dots li{
  margin:0 5px;
  width:10px;
  height:10px;
  background:rgba(0, 0, 0, .6);
  border-radius:50%;
}
.n-productsdetail .detail-box7 .list .slick-dots li.slick-active{
  background:#ea5404;
}
.n-productsdetail .detail-box7 .list .slick-dots li button{
  display:none;
}
.n-productsdetail .detail-box7 .list img{
  width:100%;
  display:block;
}
.n-productsdetail .detail-box8{
  margin-top:100px;
}
.n-productsdetail .detail-box8 .list{
  margin-top:50px;
}
.n-productsdetail .detail-box8 .list ul{
  column-count: 3; /* 设置列数 */
  column-gap: 1em; /* 设置列之间的间隙 */
}
.n-productsdetail .detail-box8 .list li{
  background:#f0f0f0;
  margin-bottom:1em;
  padding:4%;
  break-inside: avoid-column; /* 防止内容在列中拆分 */
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}
.n-productsdetail .detail-box8 .list li:nth-child(3n){
  margin-right:0;
}
.n-productsdetail .detail-box8 .list i{
  display:none;
}
.n-productsdetail .detail-box9 {
  padding-top:80px;
}
.n-productsdetail .detail-box9 .wrap{
  background:#f9f9f9;
  padding:80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.n-productsdetail .detail-box9 .left{
  width:50%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.n-productsdetail .detail-box9 .left .detail-title{
  text-align:left;
}
.n-productsdetail .detail-box9 .left .content{
  margin:30px 0;
}
.n-productsdetail .detail-box9 .left .download{
    display:flex;
}
.n-productsdetail .detail-box9 .left .download a{
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#333;
  color:#fff;
  line-height:40px;
}
.n-productsdetail .detail-box9 .left .download a{
    margin-right:10px;
}
.n-productsdetail .detail-box9 .left .download a:last-child{
    margin-right:0;
}
.n-productsdetail .detail-box9 .left .download a:hover{
  background:#ea5404;
}
.n-productsdetail .detail-box9 .left .download i{
  margin-right:10px;
}
.n-productsdetail .detail-box9 .right{
  width:36%;
}
.n-productsdetail .detail-box9 .right img{
  width:100%;
  display:block;
}
.n-productsdetail .detail-box10{
  margin-top:100px;
  border-top:1px #eee solid;
  padding-top:50px;
  padding-bottom:100px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}
.n-productsdetail .detail-box10 .content{
  margin:30px 0 60px 0;
}
.n-productsdetail .detail-box10 .more a{
  padding:5px 20px;
  background:#e2521f;
  display:flex;
  color:#fff;
}
@media (max-width: 1600px) {
  .n-productsdetail .detail-box1 .content .left .title{
    font-size:28px;
    line-height:28px;
  }
  .n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-1{
    font-size: 20px;
  }
  .n-productsdetail .detail-box10 .title{
    font-size:32px;
    line-height:32px;
  }
}
@media (max-width: 1280px) {
  .n-productsdetail .detail-title{
    font-size:24px;
    line-height:24px;
  }
  .n-productsdetail .detail-box1 .bg{
    height:55vh;
  }
  .n-productsdetail .detail-box1 .bg img{
    height:100%;
    object-fit:cover;
  }
  .n-productsdetail .detail-box1 .content .wrap{
    flex-direction:column-reverse;
  }
  .n-productsdetail .detail-box1 .content .left,
  .n-productsdetail .detail-box1 .content .right{
    width:100%;
  }
  .n-productsdetail .detail-box1 .content .left{
    margin-top:6%;
  }
  .n-productsdetail .detail-box1 .content .left .content{
    background:#f9f9f9;
    padding:4%;
  }
  .n-productsdetail .detail-box1 .content .left .title{
    font-size:24px;
    line-height:24px;
    padding:10px 3%;
    height:auto;
  }
  .n-productsdetail .detail-box1 .content .left .content .text .text-2{
    padding:3% 0;
    margin-top:3%;
  }
  .n-productsdetail .detail-box1 .content .right .bd{
    justify-content:center;
  }
  .n-productsdetail .detail-box2{
    margin-top:8%;
    border:none;
    background:rgba(0, 0, 0, .5);
    padding:10px 0;
  }
  .n-productsdetail .detail-box2.sticky-top{
    top:-13px;
  }
  .n-productsdetail .detail-box2 .wrap{
    border:1px #fff solid;
    height:38px;
  }
  .n-productsdetail .detail-box2.opened .wrap{
    height:auto;
  }
  .n-productsdetail .detail-box2 ul{
    flex-direction:column;
  }
  .n-productsdetail .detail-box2 li{
    width:100%;
    display:none;
  }
  .n-productsdetail .detail-box2.opened li,
  .n-productsdetail .detail-box2 li.active,
  .n-productsdetail .detail-box2.sticky-top li.active{
    display:block;
  }
  .n-productsdetail .detail-box2 li.line{
    display:none;
  }
  .n-productsdetail .detail-box2 a{
    color:#fff;
    line-height:36px;
  }
  .n-productsdetail .detail-box2 li.active a,
  .n-productsdetail .detail-box2.sticky-top li.active a{
    background:none;
  }
  .n-productsdetail .detail-box3 .box1{
    margin-top: 4%;
  }
  .n-productsdetail .detail-box3 .box1 .content{
    padding:10% 0;
  }
  .n-productsdetail .detail-box3 .box1 .content .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .n-productsdetail .detail-box3 .box1 .content .bg img{
    height: 100%;
    object-fit: cover;
  }
  .n-productsdetail .detail-box3 .box1 .content .word{
    position: relative;
  }
  .n-productsdetail .detail-box3 .box1 .word .wrap{
    flex-direction: column;
  }
  .n-productsdetail .detail-box3 .box1 .word .wrap .left,
  .n-productsdetail .detail-box3 .box1 .word .wrap .right{
    width: 100%;
  }
  .n-productsdetail .detail-box3 .box1 .content .word .left a{
    width: 60px;
    height: 60px;
  }
  .n-productsdetail .detail-box3 .box1 .content .word .left i{
    font-size: 60px;
    line-height: 60px;
  }
  .n-productsdetail .detail-box3 .box1 .word .wrap .right{
    margin-top: 10%;
    padding:6%;
  }
  .n-productsdetail .detail-box3 .box1 .content .word .right .text{
    margin:6% 0;
  }
  .n-productsdetail .detail-box3 .box2 img{
    margin-top: 9%;
  }
  .n-productsdetail .detail-box3 .box2 table{
    height:auto !important;
    width:94% !important;
    margin-top:9% !important;
}
  .n-productsdetail .detail-box4{
    padding-top:9%;
  }
  .n-productsdetail .detail-box4 .box1{
    padding-top:6%;
  }
  .n-productsdetail .detail-box4 .box1 .content{
    margin:3% 0 5% 0;
  }
  .n-productsdetail .detail-box4 .box2{
    margin-top:9%;
  }
  .n-productsdetail .detail-box4 .box2 .list{
    margin-top:2%;
  }
  .n-productsdetail .detail-box5{
    padding:9% 0;
    margin-top:9%;
  }
  .n-productsdetail .detail-box5 .list .hd{
    margin-top:3%;
  }
  .n-productsdetail .detail-box5 .list .hd li{
    line-height:30px;
  }
  .n-productsdetail .detail-box5 .list .bd{
    margin-top:4%;
  }
  .n-productsdetail .detail-box5 .list .bd .item1 .canshu-box{
    overflow:hidden;
    overflow-x:auto;
  }
  .n-productsdetail .detail-box5 .list .bd .item1 .download-box{
    margin-top:4%;
  }
  .n-productsdetail .detail-box5 .list .bd .item1 .download-box .download{
    margin-top:3%;
  }
  .n-productsdetail .detail-box5 .list .bd .item2 li{
    padding-bottom:3%;
    margin-bottom:3%;
  }
  .n-productsdetail .detail-box6{
    padding-top: 9%;
  }
  .n-productsdetail .detail-box6 .summary{
    margin-top: 3%;
  }
  .n-productsdetail .detail-box6 .list{
    margin-top: 6%;
  }
  .n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-2{
    height: 120px;
  }
  .n-productsdetail .detail-box6 .list .slick-dots{
    margin-top: 4px;
  }
  .n-productsdetail .detail-box7{
    padding-top:9%;
  }
  .n-productsdetail .detail-box7 .list{
    margin-top:4%;
  }
  .n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-1{
    font-size: 18px;
  }
  .n-productsdetail .detail-box8{
    margin-top:10%;
  }
  .n-productsdetail .detail-box8 .list{
    margin-top:5%;
  }
  .n-productsdetail .detail-box8 .list li{
    line-height:1.5;
    height:60px;
    overflow:hidden;
    padding:4%;
  }
  .n-productsdetail .detail-box8 .list span{
    height:100%;
    overflow:hidden;
  }
  .n-productsdetail .detail-box8 .list li.active{
    height:auto;
  }
  .n-productsdetail .detail-box8 .list i{
    display:block;
    font-size:14px;
  }
  .n-productsdetail .detail-box9{
    padding-top:8%;
  }
  .n-productsdetail .detail-box9 .wrap{
    padding:4%;
  }
  .n-productsdetail .detail-box9 .left .content{
    margin:4% 0;
  }
  .n-productsdetail .detail-box10{
    padding-top:5%;
    padding-bottom:10%;
    margin-top:10%;
  }
  .n-productsdetail .detail-box10 .content{
    margin:4% 0 8% 0;
  }
}
@media (max-width: 992px) {
  .n-productsdetail .detail-box1 .content .left .title{
    font-size:20px;
  }
  .n-productsdetail .detail-box2.sticky-top{
    top:0px;
  }
}
@media (max-width: 750px) {
  .n-productsdetail .detail-box1 .path{
        display:none;
  }
  .n-productsdetail .detail-title{
    font-size:20px;
  }
  .n-productsdetail .detail-box1 .bg{
    height:30vh;
  }
  .n-productsdetail .detail-box1 .content .left .title{
    font-size:16px;
  }
  .n-productsdetail .detail-box1 .content .right .bd li{
    width:40px;
    height:40px;
  }
  .n-productsdetail .detail-box1 .content .left .detail a{
    height:45px;
  }
  .n-productsdetail .detail-box2.sticky-top{
    top:19px;
  }
  .n-productsdetail .detail-box4 .box2 .list li{
    width:49%;
  }
  .n-productsdetail .detail-box4 .box2 .list li:nth-child(3n){
    margin-right:2%;
  }
  .n-productsdetail .detail-box4 .box2 .list li:nth-child(2n){
    margin-right:0;
  }
  .n-productsdetail .detail-box5 .list .hd li{
    padding:0 10px;
  }
  .n-productsdetail .detail-box5 .list .bd .item1 li{
    width:100%;
    margin-right:0;
    padding:5px 0;
  }
  .n-productsdetail .detail-box6 .list .a6list .slick-list .word .word-1{
    font-size: 16px;
  }
  .n-productsdetail .detail-box8 .list ul{
    column-count: 1; /* 设置列数 */
    column-gap: 0; /* 设置列之间的间隙 */
  }
  .n-productsdetail .detail-box8 .list li{
    height:50px;
    margin-bottom:.5em;
  }
  .n-productsdetail .detail-box9 .wrap{
    flex-direction:column;
  }
  .n-productsdetail .detail-box9 .left,
  .n-productsdetail .detail-box9 .right{
    width:100%;
  }
  .n-productsdetail .detail-box9 .right{
    margin-top:6%;
  }
}

.n-productsdetail1{
  padding:100px 0 0 0;
  overflow:hidden;
}
.n-productsdetail1 .detail-box1{
	display: flex;
	justify-content: space-between;
}
.n-productsdetail1 .detail-box1 .left,
.n-productsdetail1 .detail-box1 .right{
	width: 48%;
}
.n-productsdetail1 .detail-box1 .left .zoom-pic{
	border:1px #eee solid;
	width:100%;
	height:0;
	padding-bottom:100%;
	position:relative;
}
.n-productsdetail1 .detail-box1 .left .zoom-pic .box{
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
.n-productsdetail1 .detail-box1 .left .zoom-pic .box img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}
.n-productsdetail1 .detail-box1 .left .zoom-list {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.n-productsdetail1 .detail-box1 .left .zoom-list .center-list{
   width: calc(100% - 50px);
}
.n-productsdetail1 .detail-box1 .left .zoom-list  .center-list .swiper-slide{
	border:1px #eee solid;
}
.n-productsdetail1 .detail-box1 .left .zoom-list  .center-list .swiper-slide-active{
	border-color: #ea5404;
}
.n-productsdetail1 .detail-box1 .left .zoom-list  .center-list .swiper-slide .box{
    width:100%;
    height:0;
    padding-bottom:100%;
    position:relative;
}
.n-productsdetail1 .detail-box1 .left .zoom-list  .center-list .swiper-slide .box .image{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
}
.n-productsdetail1 .detail-box1 .left .zoom-list  .center-list .swiper-slide .box .image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}
.n-productsdetail1 .detail-box1 .left .zoom-list .swiper-button-prev,
.n-productsdetail1 .detail-box1 .left .zoom-list .swiper-button-next{
	width: 20px;
	position: static;
	margin:0;
}
.n-productsdetail1 .detail-box1 .left .zoom-list .swiper-button-prev:after,
.n-productsdetail1 .detail-box1 .left .zoom-list .swiper-button-next:after{
	color: #000;
	font-size: 20px;
}
.n-productsdetail1 .detail-box1 .left img{
	width: 100%;
	display: block;
}
.n-productsdetail1 .detail-box1 .right .title{
	font-size: 24px;
	font-weight: 600;
}
.n-productsdetail1 .detail-box1 .right .content{
	margin-top:20px;
	background: #f9f9f9;
	padding:20px;
}
.n-productsdetail1 .detail-box1 .right .content img{
	max-width: 100%;
}
.n-productsdetail1 .detail-box1 .right .button{
   margin-top: 10px;
}
.n-productsdetail1 .detail-box1 .right .button ul{
	display: flex;
	flex-wrap:wrap;
}
.n-productsdetail1 .detail-box1 .right .button li{
	margin-right: 10px;
	margin-top:10px;
}
.n-productsdetail1 .detail-box1 .right .button li:last-child{
	margin-right: 0;
}
.n-productsdetail1 .detail-box1 .right .button a{
	display: flex;
	align-items: center;
	background: #000;
	color: #fff;
	border-radius: 4px;
	padding:5px 20px;
}
.n-productsdetail1 .detail-box1 .right .button i{
	font-size: 16px;
	margin-right: 5px;
}
.n-productsdetail1 .detail-box1 .right .button a:hover{
	background: #ea5404;
}
.n-productsdetail1 .detail-box2{
    margin-top: 40px;
}
.n-productsdetail1 .detail-box2 ul{
	display: flex;
	justify-content: space-between;
}
.n-productsdetail1 .detail-box2 li{
	width: 49%;
	display: flex;
}
.n-productsdetail1 .detail-box2 li:last-child{
	flex-direction: row-reverse;
}
.n-productsdetail1 .detail-box2 a{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 20px;
	border:1px #eee solid;
	border-radius: 4px;
}
.n-productsdetail1 .detail-box2 a:hover{
	border-color: #ea5404;
    background: #ea5404;
    color: #fff;
}
.n-productsdetail1 .detail-box3{
	margin-top: 80px;
}
.n-productsdetail1 .detail-box3 .title{
	border-bottom: 1px #eee solid;
	display: flex;
}
.n-productsdetail1 .detail-box3 .title span{
	display: block;
	padding:10px 20px;
	background: #fff;
	border:1px #eee solid;
	border-bottom: none;
	margin-bottom: -1px;
}
.n-productsdetail1 .detail-box3 .content{
	padding:30px;
	border:1px #eee solid;
	border-top: none;
}
.n-productsdetail1 .detail-box3 .content img{
	max-width: 100%;
}
.n-productsdetail1 .detail-box3 .content table{
	width: 100% !important;
	margin:0 !important;
	padding:0 !important;
	border:1px #eee solid !important;
}
.n-productsdetail1 .detail-box3 .content table th,
.n-productsdetail1 .detail-box3 .content table td{
	padding:5px 10px !important;
	border:1px #eee solid !important;
}
.n-productsdetail1 .detail-box4{
	margin-top: 80px;
}
.n-productsdetail1 .detail-box4 .title{
	border-bottom: 1px #eee solid;
	display: flex;
}
.n-productsdetail1 .detail-box4 .title span{
	display: block;
	padding:10px 20px;
	background: #fff;
	border:1px #eee solid;
	border-bottom: none;
	margin-bottom: -1px;
}
.n-productsdetail1 .detail-box4 .content{
	padding:30px;
	border:1px #eee solid;
	border-top: none;
}
.n-productsdetail1 .detail-box5{
	margin-top: 80px;
	background: #f9f9f9;
	padding:80px 0;
}
.n-productsdetail1 .detail-box5 .title{
	display: flex;
}
.n-productsdetail1 .detail-box5 .title span{
	background: #fff;
	display: block;
	padding:10px 20px;
}
.n-productsdetail1 .detail-box5 .content{
	background: #fff;
	padding:30px;
}
.n-productsdetail1 .detail-box5 .content a{
  background:#fff;
  display:block;
  padding:10px;
  border:1px #eee solid;
}
.n-productsdetail1 .detail-box5 .content a:hover{
	box-shadow:0 0 10px rgba(0, 0, 0, .15);
}
.n-productsdetail1 .detail-box5 .content .images{
  overflow:hidden;
}
.n-productsdetail1 .detail-box5 .content .images img{
  width:100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display:block;
}
.n-productsdetail1 .detail-box5 .content li:hover .images img{
  transform:scale(1.08);
}
.n-productsdetail1 .detail-box5 .content .word{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:20px 0;
}
.n-productsdetail1 .detail-box5 .content .word span{
  background:#f0f2f5;
  padding:5px 20px;
}
.n-productsdetail1 .detail-box5 .content .swiper-pagination{
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.n-productsdetail1 .detail-box5 .content .swiper-pagination .swiper-pagination-bullet-active{
    background: #ea5404;
}
@media (max-width: 1280px) {
  .n-productsdetail1{
  	padding:10% 0 0 0;
  }
  .n-productsdetail1 .detail-box1 .left .zoom-list .swiper-button-prev:after,
	.n-productsdetail1 .detail-box1 .left .zoom-list .swiper-button-next:after{
		font-size: 16px;
	}
	.n-productsdetail1 .detail-box1 .right .content{
		padding:4%;
		margin-top: 4%;
	}
	.n-productsdetail1 .detail-box1 .right .buttton{
		margin-top: 4%;
	}
	.n-productsdetail1 .detail-box2,
	.n-productsdetail1 .detail-box3,
	.n-productsdetail1 .detail-box4,
	.n-productsdetail1 .detail-box5{
		margin-top: 8%;
	}
		.n-productsdetail1 .detail-box5{
           padding:8% 0;
		}
		.n-productsdetail1 .detail-box3 .content,
	.n-productsdetail1 .detail-box4 .content,
	.n-productsdetail1 .detail-box5 .content{
		padding:4%;
	}
	.n-productsdetail1 .detail-box5 .content .swiper-pagination{
		margin-top: 4%;
	}
}
@media (max-width: 992px) {

}
@media (max-width: 750px) {
  .n-productsdetail1 .detail-box1 {
	  	flex-direction: column;
	}
	.n-productsdetail1 .detail-box1 .left,
	.n-productsdetail1 .detail-box1 .right{
	 	width: 100%;
	}
	 .n-productsdetail1 .detail-box1 .right{
	 	margin-top: 6%;
	}
    .n-productsdetail1 .detail-box1 .right .title{
		font-size: 18px;
	}
	.n-productsdetail1 .detail-box2 ul{
		flex-direction: column;
	}
	.n-productsdetail1 .detail-box2 li{
		width: 100%;
	}
	.n-productsdetail1 .detail-box2 li:last-child{
		margin-top: 10px;
	}
	.n-productsdetail1 .detail-box2 a{
		padding:10px;
	}
}

.n-news{
  padding:100px 0;
  overflow:hidden;
}
.n-news .news-ul{
  display:flex;
  flex-wrap:wrap;
}
.n-news .news-ul li{
  width:30%;
  margin-right:5%;
  padding-bottom:2%;
  border-bottom:1px #eee solid;
  margin-bottom:5%;
}
.n-news .news-ul li:nth-child(3n){
  margin-right:0;
}
.n-news .news-ul a{
  display:flex;
  flex-direction:column;
}
.n-news .news-ul .image{
  border:1px #eee solid;
}
.n-news .news-ul .image img{
  width:100%;
  display:block;
}
.n-news .news-ul .word .title{
  font-size:24px;
  line-height:1;
  padding:20px 0;
  border-bottom:1px #eee solid;
}
.n-news .news-ul .word .content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.n-news .news-ul .word .content .summary{
  margin:20px 0;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.n-news .news-ul .word .content .more{
  border:1px #eee solid;
  margin-top:20px;
  padding:0 10px;
  line-height:32px;
  color:#666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-news .news-ul a:hover .word .content .more{
  border-color:#ea5506;
  background:#ea5506;
  color:#fff;
}
.n-news .n-page{
  margin-top:0;
}
@media (max-width: 1600px) {
  .n-news .news-ul .word .title{
    font-size:20px;
  }
}
@media (max-width: 1280px) {
  .n-news{
    padding:10% 0;
  }
  .n-news .news-ul li{
    width:49%;
    margin-right:2%;
    padding-bottom:5%;
  }
  .n-news .news-ul li:nth-child(3n){
    margin-right:2%;
  }
  .n-news .news-ul li:nth-child(2n){
    margin-right:0;
  }
  .n-news .news-ul .word .title{
    font-size:18px;
    padding:3% 0;
  }
  .n-news .news-ul .word .content .summary{
    margin:3% 0;
  }
  .n-news .news-ul .word .content .more{
    margin-top:3%;
  }
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  .n-news .news-ul li,
  .n-news .news-ul li:nth-child(3n){
    width:100%;
    margin-right:0;
  }
  .n-news .news-ul .word .title{
    font-size:16px;
  }
}

.n-newsdetail{
  padding:100px 0;
  overflow: hidden;
}
.n-newsdetail .news-title{
  text-align: center;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
}
.n-newsdetail .news-date{
  text-align: center;
  color: #999;
  margin-top: 10px;
}
.n-newsdetail .news-content{
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  padding:30px 0;
  margin:30px 0;
}
.n-newsdetail .news-content img{
  max-width: 100%;
}
.n-newsdetail .news-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.n-newsdetail .news-nav .right ul{
  display: flex;
}
.n-newsdetail .news-nav .right li{
  margin-left: 10px;
}
.n-newsdetail .news-nav .right li:first-child{
  margin-left: 0;
}
.n-newsdetail .news-nav .right a{
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-newsdetail .news-nav .right a:hover{
  background: #ea5506;
}
@media (max-width: 1600px) {
    .n-newsdetail .news-title{
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 1280px) {
  .n-newsdetail{
    padding:10% 0;
  }
  .n-newsdetail .news-title{
    font-size: 28px;
    line-height: 28px;
  }
  .n-newsdetail .news-content{
    margin:4% 0;
    padding:4% 0;
  }
}
@media (max-width: 992px) {
.n-newsdetail .news-title{
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 750px) {
  .n-newsdetail .news-title{
    font-size: 20px;
  }
  .n-newsdetail .news-nav{
    flex-direction: column-reverse;
  }
  .n-newsdetail .news-nav .left,
  .n-newsdetail .news-nav .right{
    width: 100%;
  }
  .n-newsdetail .news-nav .left{
    margin-top: 10px;
  }
}

.n-download{
  padding:100px 0;
  overflow:hidden;
}
.n-download .download-ul{
  display:flex;
  flex-wrap:wrap;
}
.n-download .download-ul li{
  width:49%;
  margin-right:2%;
  margin-bottom:2%;
  background:#f9f9f9;
  padding:20px;
  display:flex;
  justify-content:space-between;
}
.n-download .download-ul li:nth-child(2n){
  margin-right:0;
}
.n-download .download-ul .image{
  width:34%;
  background:#082e9d;
  display:flex;
  align-items:center;
  justify-content:center;
}
.n-download .download-ul .image img{
  width:100%;
  display:block;
}
.n-download .download-ul .word{
  width:62%;
}
.n-download .download-ul .word .word-1{
  font-size:24px;
  font-weight:700;
}
.n-download .download-ul .word .word-2{
  margin-top:10px;
}
.n-download .download-ul .word .word-3{
  margin-top:40px;
  display:flex;
}
.n-download .download-ul .word .word-3 a{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  width:160px;
  height:40px;
  margin-right:10px;
  background:#000;
  font-size:16px;
}
.n-download .download-ul .word .word-3 i{
  font-size:20px;
  display:block;
  margin-right:5px;
}
.n-download .download-ul .word .word-3 a:hover{
  background:#ea5506;
}
@media (max-width: 1600px) {
  .n-download .download-ul .word .word-1{
    font-size:20px;
  }
}
@media (max-width: 1280px) {
  .n-download{
    padding:10% 0;
  }
  .n-download .download-ul li{
    justify-content:flex-start;
    flex-direction:column;
    padding:2%;
  }
  .n-download .download-ul .image,
  .n-download .download-ul .word{
    width:100%;
  }
  .n-download .download-ul .word .word-1{
    margin-top:2%;
    font-size:18px;
  }
  .n-download .download-ul .word .word-2{
    margin-top:2%;
  }
  .n-download .download-ul .word .word-3{
    margin-top:4%;
    font-size:14px;
  }
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  .n-download .download-ul li{
    width:100%;
    margin-right:0;
    padding:4%;
  }
  .n-download .download-ul .word .word-1{
    font-size:16px;
  }
  .n-download .download-ul .word .word-3{
    font-size:12px;
  }
  .n-download .download-ul .word .word-3 a{
    height:30px;
  }
  .n-download .download-ul .word .word-3 i{
    font-size:16px;
  }
}

.n-search{
  width:100%;
  padding:50px 0 100px 0;
  border-top:1px #eee solid;
  overflow:hidden;
}
.n-search .search-box1{
  overflow:hidden;
}
.n-search .search-box1 .title{
  font-size:32px;
  line-height:32px;
}
.n-search .search-box1 .content{
  margin-top:10px;
}
.n-search .search-box1 .search{
  background:#f9f9f9;
  padding:20px;
  margin-top:40px;
}
.n-search .search-box1 .search .search-content{
  margin-top:10px;
}
.n-search .search-box1 .search .search-content form{
  display:flex;
  justify-content:space-between;
}
.n-search .search-box1 .search .search-content input{
  width:calc(100% - 90px);
  background:#fff;
  height:40px;
  border:1px #ddd solid;
  padding:0 15px;
}
.n-search .search-box1 .search .search-content button{
  width:80px;
  border:1px #000 solid;
  background:#fff;
  cursor:pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-search .search-box1 .search .search-content button:hover{
  background:#ea5506;
  border-color:#ea5506;
  color:#fff;
}
.n-search .search-box2{
  margin-top:60px;
}
.n-search .search-box2 .list .list-group li{
  border-bottom:1px #eee solid;
  padding:20px 0;
}
.n-search .search-box2 .list .list-group a{
  display:block;
}
.n-search .search-box2 .list .list-group .title{
  font-size:24px;
  line-height:24px;
}
.n-search .search-box2 .list .list-group .summary{
  color:#666;
  font-size:16px;
  margin-top:10px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 1600px) {
  .n-search .search-box1 .title{
    font-size:28px;
    line-height:28px;
  }
}
@media (max-width: 1280px) {
  .n-search{
    padding:5% 0 10% 0;
  }
  .n-search .search-box1 .title{
    font-size:24px;
    line-height:24px;
  }
  .n-search .search-box2{
    margin-top:6%;
  }
  .n-search .search-box1 .search{
    margin-top:4%;
  }
  .n-search .search-box1 .search{
    padding:3%;
  }
  .n-search .search-box2 .list .list-group li{
    padding:4% 0;
  }
  .n-search .search-box2 .list .list-group .title{
    font-size:20px;
  }
  .n-search .search-box2 .list .list-group .summary{
    font-size:14px;
  }
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  .n-search .search-box1 .title{
    font-size:20px;
  }
  .n-search .search-box1 .content{
    margin-top:5px;
  }
  .n-search .search-box2 .list .list-group .title{
    font-size:16px;
  }
  .n-search .search-box2 .list .list-group .summary{
    margin-top:5px;
  }
}

.n-contact{
  padding:100px 0;
  display:flex;
  justify-content:space-between;
  overflow:hidden;
}
.n-contact .contact,
.n-contact .feedback{
  width:48%;
}
.n-contact .contact{
  border:1px #eee solid;
  padding:50px;
}
.n-contact .contact .title{
  font-weight:bold;
  font-size:24px;
  line-height:24px;
}
.n-contact .contact .summary{
  color:#333;
  margin-top:10px;
}
.n-contact .contact .content{
  margin-top:30px;
  border-top:1px #eee solid;
  border-bottom:1px #eee solid;
  padding:20px 0;
}
.n-contact .contact .content li{
  display:flex;
  padding:10px 0;
}
.n-contact .contact .content em{
  display:block;
  margin-right:10px;
  color:#ea5506;
}
.n-contact .contact .share{
  margin-top:30px;
}
.n-contact .contact .share ul{
  display:flex;
}
.n-contact .contact .share li{
  margin-right:10px;
}
.n-contact .contact .share li:last-child{
  margin-right:0;
}
.n-contact .contact .share a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#b7b7b7;
}
.n-contact .contact .share a:hover{
  background:#ea5506;
  color:#fff;
}
.n-contact .feedback{
  background:#f9f9f9;
  padding:50px;
}
.n-contact .feedback .form-label{
  color:#666;
  font-size:14px;
  margin-top:10px;
}
.n-contact .feedback ul{
  display:flex;
  flex-direction:column;
}
.n-contact .feedback li:nth-child(1) .form-label{
  margin-top:0;
}
.n-contact .feedback textarea,
.n-contact .feedback input,
.n-contact .feedback button{
  border:none;
  outline:none;
  display:block;
}
.n-contact .feedback textarea,
.n-contact .feedback input{
  width:100%;
  border:1px #ccc solid;
}
.n-contact .feedback input{
  height:40px;
}
.n-contact .feedback textarea{
  resize:none;
  height:100px;
}
.n-contact .feedback .code input{
  width:100px;
}
.n-contact .feedback .button{
  display:flex;
  justify-content:flex-end;
}
.n-contact .feedback button{
  width:160px;
  height:40px;
  margin-top:10px;
  cursor:pointer;
  background:#333;
  color:#fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-contact .feedback button:hover{
  background:#ea5506;
}
.n-contact .feedback .code input,
.n-contact .feedback .code img{
  float:left;
}
.n-contact .feedback .code img{
  margin-top:4px;
  margin-left:10px;
}
.n-contact .feedback .help-block{
  color:#ff0000;
  font-size:12px;
}
@media (max-width: 1600px) {
}
@media (max-width: 1280px) {
  .n-contact{
    padding:10% 0;
    flex-direction:column;
  }
  .n-contact .contact,
  .n-contact .feedback{
    width:100%;
    padding:5%;
  }
  .n-contact .feedback{
    margin-top:6%;
  }
  .n-contact .contact .title{
    font-size:20px;
  }
  .n-contact .contact .summary{
    margin-top:0;
  }
  .n-contact .contact .content{
    margin-top:4%;
    padding:4% 0;
  }
  .n-contact .contact .share{
    margin-top:4%;
  }
  .n-contact .feedback .button{
    justify-content:flex-start;
  }
}
@media (max-width: 992px) {
  
}
@media (max-width: 750px) {
  .n-contact .contact .title{
    font-size:18px;
  }
}