@charset "utf-8";
.n-news{
  padding:100px 0;
}
.n-news .news-hot{
  width: 100%;
  position: relative;
}
.n-news .news-hot .swiper-container{
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.n-news .news-hot .swiper-slide a{
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.n-news .news-hot .swiper-slide .image{
  width: 54%;
  height: 480px;
  overflow: hidden;
}
.n-news .news-hot .swiper-slide .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-news .news-hot .swiper-slide a:hover .image img{
  transform: scale(1.05);
}
.n-news .news-hot .swiper-slide .word{
  width: 42%;
  padding:60px 60px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.n-news .news-hot .swiper-slide .word .word-1 .date{
  color: #999;
}
.n-news .news-hot .swiper-slide .word .word-1 .title{
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
  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-news .news-hot .swiper-slide .word .word-2{
  background: #00984a;
  color: #fff;
  padding:10px 30px;
  border-radius: 50px;
  margin-top: 50px;
}
.n-news .news-hot .swiper-pagination{
  width: 42%;
  height: 2px;
  left: auto;
  right: 0;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:10px;
}
.n-news .news-hot .swiper-pagination .swiper-pagination-bullet{
  width: 35px;
  height: 2px;
  background: #ddd;
  opacity: 1;
}
.n-news .news-hot .swiper-pagination .swiper-pagination-bullet-active{
  background: #00984a;
}
.n-news .news-list{
   margin-top: 100px;
}
.n-news .news-list .type-list{
  width: 600px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.n-news .news-list .type-list .title{
  border:1px #ddd solid;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:15px 30px;
  cursor: pointer;
}
.n-news .news-list .type-list .title i{
  font-size: 18px;
  display: block;
  transition: transform 0.3s ease;
}
.n-news .news-list .type-list .title i.rotate {
  transform: rotate(180deg);
}
.n-news .news-list .type-list .list{
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding:20px 30px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1);
}
.n-news .news-list .type-list .list li{
  margin: 5px 0;
}
.n-news .news-list .type-list .list a{
  display: flex;
  align-items: center;
}
.n-news .news-list .type-list .list .icon{
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  border: 1px #eee solid;
  margin-right: 10px;
}
.n-news .news-list .type-list .list li.active .icon{
  background: #00984a;
}
.n-news .news-list .list-box{
  margin-top: 50px;
}
.n-news .news-list .list-box ul{
  display: flex;
  flex-wrap: wrap;
}
.n-news .news-list .list-box li{
  width: 32%;
  margin-right: 2%;
  margin-bottom: 4%;
}
.n-news .news-list .list-box li:nth-child(3n){
  margin-right: 0;
}
.n-news .news-list .list-box a{
  display: block;
}
.n-news .news-list .list-box .image{
  width: 100%;
  border-radius: 8px;
  border:1px #eee solid;
  height: 320px;
  overflow: hidden;
}
.n-news .news-list .list-box .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-news .news-list .list-box a:hover .image img{
  transform: scale(1.05);
}
.n-news .news-list .list-box .word .date{
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}
.n-news .news-list .list-box .word .title{
  font-weight: 600;
  font-size: 20px;
}
.n-news .n-page{
  margin-top: 0;
}
@media (max-width: 1600px) {
  
}
@media (max-width: 1360px) {
  
}
@media (max-width: 1024px) {
  .n-news{
    padding:10% 0;
  }
  .n-news .news-hot .swiper-slide a{
    flex-direction: column;
  }
  .n-news .news-hot .swiper-slide .image,
  .n-news .news-hot .swiper-slide .word{
    width: 100%;
  }
  .n-news .news-hot .swiper-slide .image{
    height: 420px;
  }
  .n-news .news-hot .swiper-slide .word{
    padding:4%;
  }
  .n-news .news-hot .swiper-slide .word .word-1 .title{
    font-size: 20px;
    margin-top: 2%;
  }
  .n-news .news-hot .swiper-slide .word .word-2{
    margin-top: 5%;
  }
  .n-news .news-hot .swiper-pagination{
    position: static;
    width: 100%;
    margin-top: 4%;
    justify-content: center;
  }
  .n-news .news-list{
    margin-top: 10%;
  }
  .n-news .news-list .type-list .title{
    padding:10px 25px;
  }
  .n-news .news-list .type-list .list{
    padding:10px 25px;
  }
  .n-news .news-list .list-box{
    margin-top: 5%;
  }
  .n-news .news-list .list-box li{
    width: 49%;
  }
  .n-news .news-list .list-box li:nth-child(3n){
    margin-right: 2%;
  }
  .n-news .news-list .list-box li:nth-child(2n){
    margin-right: 0;
  }
  .n-news .news-list .list-box .image{
    height: 240px;
  }
  .n-news .news-list .list-box .word .date{
    margin-top:2%;
    margin-bottom: 2%;
  }
  .n-news .news-list .list-box .word .title{
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  .n-news .news-hot .swiper-container{
    border-radius: 10px;
  }
  .n-news .news-hot .swiper-slide .image{
    height: 240px;
  }
  .n-news .news-hot .swiper-slide .word .word-1 .title{
    font-size: 16px;
  }
  .n-news .news-hot .swiper-slide .word .word-2{
    padding: 5px 15px;
  }
  .n-news .news-hot .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
  }
  .n-news .news-list .list-box li{
    width: 100%;
    margin-right: 0;
  }
  .n-news .news-list .list-box li:nth-child(3n){
    margin-right: 0;
  }
  .n-news .news-list .list-box .word .date{
    margin:5px 0;
  }
  .n-news .news-list .list-box .word .title{
    font-size: 16px;
  }
}

.n-newsdetail{
  overflow: hidden;
}
.n-newsdetail .detail-box{
  padding:60px 0 100px 0;
  display: flex;
  justify-content: space-between;
}
.n-newsdetail .detail-box .detail-left{
  width: 60%;
}
.n-newsdetail .detail-box .detail-left .news-title{
  border-bottom: 1px #eee solid;
  font-size: 36px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}
.n-newsdetail .detail-box .detail-left .news-date{
  color: #999;
  font-size: 14px;
}
.n-newsdetail .detail-box .detail-left .news-date i{
  color: #00984a;
  font-size: 14px;
}
.n-newsdetail .detail-box .detail-left .news-content{
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}
.n-newsdetail .detail-box .detail-left .news-page{
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap:20px;
}
.n-newsdetail .detail-box .detail-left .news-page .page-item{
  background: #f5f5f5;
  border-radius: 20px;
  padding:30px;
  display: flex;
  flex-direction: column;
}
.n-newsdetail .detail-box .detail-left .news-page .page-item.next{
  align-items: flex-end;
}
.n-newsdetail .detail-box .detail-left .news-page .page-item .t,
.n-newsdetail .detail-box .detail-left .news-page .page-item .d{
  font-size: 14px;
  color: #999;
}
.n-newsdetail .detail-box .detail-left .news-page .page-item .c{
  font-weight: bold;
  font-size: 18px;
  margin:10px 0;
}
.n-newsdetail .detail-box .detail-left .news-content img,
.n-newsdetail .detail-box .detail-left .news-content video,
.n-newsdetail .detail-box .detail-left .news-content table{
  max-width: 100% !important;
}
.n-newsdetail .detail-box .detail-left .news-back{
  margin-top: 2%;
}
.n-newsdetail .detail-box .detail-right{
  width: 35%;
}
.n-newsdetail .detail-box .detail-right .title{
  font-size: 24px;
  font-weight: bold;
}
.n-newsdetail .detail-box .detail-right .list li{
  border-bottom: 1px #eee solid;
  padding:20px 0;
}
.n-newsdetail .detail-box .detail-right .list a{
  display: flex;
  justify-content: space-between;
}
.n-newsdetail .detail-box .detail-right .list .image{
  width: 40%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}
.n-newsdetail .detail-box .detail-right .list .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-newsdetail .detail-box .detail-right .list a:hover .image img{
  transform: scale(1.05);
}
.n-newsdetail .detail-box .detail-right .list .word{
  width: 57%;
}
.n-newsdetail .detail-box .detail-right .list .word .date{
  font-size: 14px;
  color: #999;
}
.n-newsdetail .detail-box .detail-right .list .word .text{
  font-weight: bold;
}
@media (max-width: 1600px) {
  .n-newsdetail .detail-box .detail-left .news-title{
    font-size: 32px;
  }
}
@media (max-width: 1360px) {
  .n-newsdetail .detail-box .detail-left .news-title{
    font-size: 28px;
  }
  .n-newsdetail .detail-box .detail-right .title{
    font-size: 20px;
  }
  .n-newsdetail .detail-box .detail-left .news-page .page-item .c{
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .n-newsdetail .detail-box{
    padding:6% 0 10% 0;
    flex-direction: column;
  }
  .n-newsdetail .detail-box .detail-left,
  .n-newsdetail .detail-box .detail-right{
    width: 100%;
  }
  .n-newsdetail .detail-box .detail-left .news-title{
    font-size: 24px;
    padding-bottom: 3%;
    margin-bottom: 3%;
  }
  .n-newsdetail .detail-box .detail-left .news-content,
  .n-newsdetail .detail-box .detail-left .news-page{
    margin-top: 5%;
  }
  .n-newsdetail .detail-box .detail-left .news-page .page-item{
    padding:4%;
  }
  .n-newsdetail .detail-box .detail-right{
    margin-top: 6%;
  }
  .n-newsdetail .detail-box .detail-right .title{
    font-size: 18px;
  }
  .n-newsdetail .detail-box .detail-right .list li{
    padding:3% 0;
  }
}
@media (max-width: 750px) {
  .n-newsdetail .detail-box .detail-left .news-title{
    font-size: 18px;
  }
  .n-newsdetail .detail-box .detail-left .news-page .page-item .c{
    font-size: 15px;
  }
  .n-newsdetail .detail-box .detail-right .title{
    font-size: 16px;
  }
  .n-newsdetail .detail-box .detail-right .list .image{
    height: 90px;
  }
}