@charset "utf-8";
.n-products{
  padding:100px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}
.n-products .left{
  width: calc(94% - 292px);
}
.n-products .left .list ul{
  display: flex;
  flex-wrap: wrap;
}
.n-products .left .list li{
  width: 32%;
  margin-bottom: 2%;
  margin-right: 2%;
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}
.n-products .left .list li:nth-child(3n){
  margin-right: 0;
}
.n-products .left .list .image{
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.n-products .left .list .image .box{
  width: 100%;
  height: 100%;
  padding:0 3%;
  position: absolute;
  left: 0;
  top:0;
}
.n-products .left .list .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-products .left .list a:hover .image img{
  transform: scale(1.1);
}
.n-products .left .list .word{
  padding: 20px;
}
.n-products .left .list .word .name{
  font-size: 18px;
  font-weight: 600;
  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-products .left .list .word .button{
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.n-products .left .list .word .button a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 10px);
  padding: 8px 0;
  border-radius: 50px;
  background: #00984a;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
}
.n-products .left .list .word .button a i{
  display: block;
  font-size: 14px;
  margin-left: 5px;
}
.n-products .left .list .word .button a:nth-child(2){
  background:#e6e6e6;
  color: #000;
}
.n-products .left .list .word .button a:nth-child(1):hover{
  background:#000;
}
.n-products .left .list .word .button a:nth-child(2):hover{
  background: #00984a;
  color: #fff;
}
.n-products .right{
  width: 292px;
}
.n-products .right .search{
  background: #f5f5f5;
  height: 45px;
  border-radius: 8px;
  padding:0 15px;
}
.n-products .right .search form{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.n-products .right .search input,
.n-products .right .search button{
  border:none;
}
.n-products .right .search input{
  background: none;
}
.n-products .right .search button{
  cursor: pointer;
}
.n-products .right .list{
  margin-top: 40px;
}
.n-products .right .list .title{
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px #eee solid;
  padding-bottom: 15px;
}
.n-products .right .list .type > ul > li{
  border-bottom: 1px #eee solid;
  padding: 15px 0;
}
.n-products .right .list .type > ul > li > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.n-products .right .list .type > ul > li > a > span:nth-child(1){
  font-size: 18px;
  font-weight: 600;
}
.n-products .right .list .type > ul > li > a > span:nth-child(2){
  color: #888;
}
.n-products .right .list .type > ul > li > ul{
  margin-top: 10px;
}
.n-products .right .list .type > ul > li > ul > li{
  padding:3px 0;
}
@media (max-width: 1600px) {
  .n-products .left .typename .title{
    font-size: 32px;
  }
}
@media (max-width: 1360px) {
  .n-products .left .typename .title{
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .n-products{
    padding:10% 0;
    flex-direction: column;
  }
  .n-products .left,
  .n-products .right{
    width: 100%;
  }
  .n-products .right{
    margin-top: 6%;
  }
  .n-products .left .typename .title{
    font-size: 24px;
  }
  .n-products .left .typename .summary{
    margin-top: 2%;
  }
  .n-products .left .list li{
    width: 49%;
  }
  .n-products .left .list li:nth-child(3n){
    margin-right: 2%;
  }
  .n-products .left .list li:nth-child(2n){
    margin-right: 0;
  }
  .n-products .left .list .word{
    padding:4%;
  }
  .n-products .left .list .word .name{
    font-size: 16px;
  }
  .n-products .left .list .word .button{
    margin-top: 3%;
  }
  .n-products .right .list .title{
    font-size: 18px;
  }
  .n-products .right .list .type > ul > li > a > span:nth-child(1){
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .n-products .left .typename .title{
    font-size: 20px;
  }
  .n-products .left .list li{
    width: 100%;
    margin-right: 0;
  }
  .n-products .left .list li:nth-child(3n){
    margin-right: 0;
  }
}

.n-detail{
  width: 100%;
  overflow:hidden;
}
.n-detail .title{
  font-size: 36px;
  font-weight: bold;
}
.n-detail .box1{
  width: 100%;
  padding-bottom: 100px;
  background: #f7f7f7;
  overflow:hidden;
}
.n-detail .box1 .detail{
  display: flex;
  justify-content: space-between;
}
.n-detail .box1 .detail .left{
  width: 45%;
}
.n-detail .box1 .detail .left .bigImg{
  width: 100%;
  padding-bottom: 100%;
  border-radius: 20px;
  border:1px #ddd solid;
  position: relative;
  overflow: hidden;
}
.n-detail .box1 .detail .left .bigImg .box{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top:0;
}
.n-detail .box1 .detail .left .bigImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none; /* 让大图不阻挡下方按钮的点击 */
}
.n-detail .box1 .detail .left .bigImg .swiper-button-prev:after,
.n-detail .box1 .detail .left .bigImg .swiper-button-next:after{
  color: #000;
}
.n-detail .box1 .detail .left .bigImg .swiper-button-prev,
.n-detail .box1 .detail .left .bigImg .swiper-button-next{
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
}
.n-detail .box1 .detail .left .bigImg .swiper-button-prev{
  left: 4%;
}
.n-detail .box1 .detail .left .bigImg .swiper-button-next{
  right: 4%;
}
.n-detail .box1 .detail .left .smallImg{
  margin-top: 4px;
}
.n-detail .box1 .detail .left .smallImg .swiper-slide{
  cursor: pointer;
}
.n-detail .box1 .detail .left .smallImg .swiper-slide .image{
  width: 100%;
  padding-bottom: 100%;
  border-radius: 10px;
  overflow: hidden;
  border:2px #f7f7f7 solid;
  position: relative;
}
.n-detail .box1 .detail .left .smallImg .swiper-slide .box{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top:0;
}
.n-detail .box1 .detail .left .smallImg .swiper-slide .box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.n-detail .box1 .detail .left .smallImg .swiper-slide-active .image{
  border:2px #00984a solid;
}
.n-detail .box1 .detail .right{
  width: 50%;
}
.n-detail .box1 .detail .right .right-title{
  font-size: 24px;
  font-weight: bold;
}
.n-detail .box1 .detail .right .right-typename a{
  color: #00984a;
}
.n-detail .box1 .detail .right .right-content{
  margin:40px 0;
}
.n-detail .box1 .detail .right .right-content .right-content-title{
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.n-detail .box1 .detail .right .right-content .right-content-title span{
  display: block;
  padding-right: 20px;
}
.n-detail .box1 .detail .right .right-content .right-content-title:after{
  content: "";
  flex:1;
  height: 1px;
  background: #eee;
}
.n-detail .box1 .detail .right .right-content .right-content-content{
  margin-top: 10px;
}
.n-detail .box1 .detail .right .right-content .right-content-content img{
  max-width: 100% !important;
}
.n-detail .box1 .detail .right .right-button{
  display: flex;
}
.n-detail .box1 .detail .right .right-button a{
  display: block;
  text-align: center;
  padding:0 30px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  color: #fff;
}
.n-detail .box1 .detail .right .right-button a:nth-child(1){
  background: #00984a;
}
.n-detail .box1 .detail .right .right-button a:nth-child(2){
  background: #000;
  margin-left: 20px;
}
.n-detail .box1 .detail .right .right-button a:nth-child(1):hover{
  background: #000;
}
.n-detail .box1 .detail .right .right-button a:nth-child(2):hover{
  background: #00984a;
}
.n-detail .box2{
  padding:100px 0;
  overflow:hidden;
}
.n-detail .box2 .title{
    font-size: 20px;
    text-align: center;
}
.n-detail .box2 img{
  max-width: 100%;
}
.n-detail .box2 table{
  max-width: 100% !important;
  padding:0 !important;
  margin:0 !important;
}
.n-detail .box2 td,
.n-detail .box2 td{
  width: auto !important;
  padding:0 10px !important;
}
.n-detail .box3{
  width: 100%;
  padding:100px 0;
  background: #f7f7f7;
  overflow:hidden;
}
.n-detail .box3 .content ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.n-detail .box3 .content li{
  width: 31.2%;
  margin-top: 30px;
}
.n-detail .box3 .content .image{
  border-radius: 20px;
  overflow: hidden;
}
.n-detail .box3 .content .image img{
  width: 100%;
  display: block;
}
.n-detail .box3 .content .word{
  margin-top: 20px;
}
.n-detail .box3 .content .word h1{
  font-size: 20px;
  font-weight: bold;
}
.n-detail .box3 .content .word h2{
  margin-top: 10px;
}
.n-detail .box4{
  padding:100px 0;
  overflow:hidden;
}
.n-detail .box4 ul{
  display: flex;
  flex-wrap: wrap;
}
.n-detail .box4 li{
  width: 32%;
  margin-top: 30px;
  margin-right: 2%;
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}
.n-detail .box4 li:nth-child(3n){
  margin-right: 0;
}
.n-detail .box4 .image{
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.n-detail .box4 .image .box{
  width: 100%;
  height: 100%;
  padding:0 3%;
  position: absolute;
  left: 0;
  top:0;
}
.n-detail .box4 .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-detail .box4 a:hover .image img{
  transform: scale(1.1);
}
.n-detail .box4 .word{
  padding: 20px;
}
.n-detail .box4 .word .name{
  font-size: 18px;
  font-weight: 600;
  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-detail .box4 .word .summary{
  font-size: 14px;
  color: #555;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.n-detail .box4 .word .button{
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.n-detail .box4 .word .button a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 10px);
  padding: 8px 0;
  border-radius: 50px;
  background: #00984a;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
}
.n-detail .box4 .word .button a i{
  display: block;
  font-size: 14px;
  margin-left: 5px;
}
.n-detail .box4 .word .button a:nth-child(2){
  background:#e6e6e6;
  color: #000;
}
.n-detail .box4 .word .button a:nth-child(1):hover{
  background:#000;
}
.n-detail .box4 .word .button a:nth-child(2):hover{
  background: #00984a;
  color: #fff;
}
@media (max-width: 1600px) {
  .n-detail .title{
    font-size: 32px;
  }
}
@media (max-width: 1360px) {
  .n-detail .title{
    font-size: 28px;
  }
  .n-detail .box1 .detail .left .bigImg .swiper-button-prev:after,
  .n-detail .box1 .detail .left .bigImg .swiper-button-next:after{
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  .n-detail .title{
    font-size: 24px;
  }
  .n-detail .box2,
  .n-detail .box3,
  .n-detail .box4{
    padding: 10% 0;
  }
  .n-detail .box1{
    padding-bottom: 10%;
  }
  .n-detail .box1 .detail{
    flex-direction: column;
  }
  .n-detail .box1 .detail .left,
  .n-detail .box1 .detail .right{
    width: 100%;
  }
  .n-detail .box1 .detail .left .bigImg .swiper-button-prev:after,
  .n-detail .box1 .detail .left .bigImg .swiper-button-next:after{
    font-size: 32px;
  }
  .n-detail .box1 .detail .right{
    margin-top: 6%;
  }
  .n-detail .box1 .detail .right .right-title{
    font-size: 20px;
  }
  .n-detail .box1 .detail .right .right-content{
    margin:4% 0;
  }
  .n-detail .box1 .detail .right .right-content .right-content-title{
    font-size: 16px;
  }
  .n-detail .box1 .detail .right .right-content .right-content-title span{
    padding-right: 10px
  }
  .n-detail .box1 .detail .right .right-button a{
    padding:0 4%;
  }
  .n-detail .box1 .detail .right .right-button a:nth-child(2){
    margin-left: 10px;
  }
  .n-detail .box3 .content ul{
    flex-direction: column;
  }
  .n-detail .box3 .content li{
    width: 100%;
    margin-top: 4%;
  }
  .n-detail .box3 .content .word,
  .n-detail .box3 .content .word h2{
    margin-top: 2%;
  }
  .n-detail .box3 .content .word h1{
    font-size: 16px;
  }
  .n-detail .box4 li{
    margin-top: 2%;
    width: 49%;
  }
  .n-detail .box4 li:nth-child(3n){
    margin-right: 2%;
  }
  .n-detail .box4 li:nth-child(2n){
    margin-right: 0;
  }
  .n-detail .box4 .word{
    padding:4%;
  }
  .n-detail .box4 .word .name{
    font-size: 16px;
  }
  .n-detail .box4 .word .button{
    margin-top: 3%;
  }
}
@media (max-width: 750px) {
  .n-detail .title{
    font-size: 20px;
  }
  .n-detail .box1 .detail .left .bigImg{
    border-radius: 10px;
  }
  .n-detail .box1 .detail .left .bigImg .swiper-button-prev:after,
  .n-detail .box1 .detail .left .bigImg .swiper-button-next:after{
    font-size: 20px;
  }
  .n-detail .box1 .detail .right .right-button a{
    width: calc(50% - 10px);
    height: 40px;
    line-height: 40px;
  }
  .n-detail .box2 .title{
    font-size: 18px;
  }
  .n-detail .box4 li{
    width: 100%;
    margin-right: 0;
  }
  .n-detail .box4 li:nth-child(3n){
    margin-right: 0;
  }
}