.n-news{
  width: 100%;
  padding:120px 0;
  overflow: hidden;
  background:url(../images/mainBg.png) no-repeat center top;
  background-size: 100% auto;
  margin-top: -4.6vw;
  padding-top: calc(4.6vw + 120px);
  position: relative;
  z-index: 1;
}
.n-news .news-ul{
  display: flex;
  flex-wrap: wrap;
}
.n-news .news-ul li{
  width: 30.333333%;
  margin-right: 4%;
  margin-top: 60px;
}
.n-news .news-ul li:nth-child(3n){
  margin-right: 0;
}
.n-news .news-ul a{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.n-news .news-ul .news-pic{
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.n-news .news-ul .news-pic img{
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-news .news-ul a:hover .news-pic img{
  transform: scale(1.05);
}
.n-news .news-ul .news-info{
  width: 100%;
  padding:20px 0;
  overflow: hidden;
}
.n-news .news-ul .news-info .news-time{
  color: #0348b2;
  font-weight: 400;
}
.n-news .news-ul .news-info .news-title{
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  position: relative;
}
.n-news .news-ul .news-info .news-title:after{
  content: "";
  width: 0;
  height: 1px;
  background: #0348b2;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-news .news-ul a:hover .news-info .news-title:after{
  width: 100%;
}
.n-news .news-ul .news-info .news-summary{
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: #666;
  margin-top: 10px;
}
.n-news .news-ul .news-more{
  height: 40px;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-news .news-ul a:hover .news-more{
  background:#0348b2;
  color: #fff;
  padding:0 20px;
}
@media (max-width: 992px) {
  .n-news{
    padding:10% 0;
    padding-top: calc(4.6vw + 10%);
  }
  .n-news .news-ul li{
    width: 49%;
    margin-top: 6%;
    margin-right: 2%;
  }
  .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 .news-info{
    padding: 4% 0;
  }
  .n-news .news-ul .news-info .news-summary{
    margin-top: 2%;
  }
  .n-news .news-ul .news-info .news-title{
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  .n-news .news-ul li{
    width: 100%;
    margin-right: 0;
  }
  .n-news .news-ul li:nth-child(3n){
    margin-right: 0;
  }
  .n-news .news-ul .news-pic{
    border-radius: 10px;
  }
  .n-news .news-ul .news-info .news-title{
    font-size: 18px;
  }
  .n-news .news-ul .news-more{
    height: 32px;
  }
  .n-news .news-ul a:hover .news-more{
    padding:0 15px;
  }
}

.n-newsdetail{
  width: 100%;
  overflow: hidden;
}
.n-newsdetail .newsdetail-position{
  width: 100%;
  background:#f9f9f9;
  padding:40px 0;
  overflow: hidden;
}
.n-newsdetail .newsdetail-position .position-1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #eee solid;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.n-newsdetail .newsdetail-position .position-1 .left{
  display: flex;
  align-items: center;
  color: #888;
}
.n-newsdetail .newsdetail-position .position-1 .left a{
  color: #888;
}
.n-newsdetail .newsdetail-position .position-1 .left .icon-arrow-right-s-line{
  margin:0 5px;
}
.n-newsdetail .newsdetail-position .position-1 .right a{
  display: flex;
  align-items: center;
  line-height: 1;
}
.n-newsdetail .newsdetail-position .position-1 .right i{
  display: block;
  margin-right: 5px;
}
.n-newsdetail .newsdetail-position .position-2 .title{
  font-size: 28px;
  font-weight: 600;
}
.n-newsdetail .newsdetail-position .position-2 .date{
  margin-top: 5px;
  color: #666;
}
.n-newsdetail .newsdetail-position .position-2 .date span{
  color: #0348b2;
  font-weight: 400;
}
.n-newsdetail .newsdetail-detail{
  padding:80px 0 120px 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.n-newsdetail .newsdetail-detail .left{
  width: 68%;
}
.n-newsdetail .newsdetail-detail .left .content{
  width: 100%;
  overflow: hidden;
}
.n-newsdetail .newsdetail-detail .left .content img,
.n-newsdetail .newsdetail-detail .left .content video{
  max-width: 100% !important;
}
.n-newsdetail .newsdetail-detail .left .page{
  display: flex;
  justify-content: space-between;
  border-top: 1px #eee solid;
  margin-top: 40px;
  padding-top: 40px;
}
.n-newsdetail .newsdetail-detail .left .page .t{
  color: #888;
}
.n-newsdetail .newsdetail-detail .left .page .c{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  position: relative;
}
.n-newsdetail .newsdetail-detail .right{
  width: 28%;
}
.n-newsdetail .newsdetail-detail .right .right-title{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
}
.n-newsdetail .newsdetail-detail .right .right-title:before{
  content: "";
  width: 4px;
  height: 20px;
  background:#0348b2;
  margin-right: 10px;
}
.n-newsdetail .newsdetail-detail .right .right-list li{
  margin-top: 20px;
}
.n-newsdetail .newsdetail-detail .right .right-list a{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.n-newsdetail .newsdetail-detail .right .right-list .image{
  width: 36%;
  overflow: hidden;
}
.n-newsdetail .newsdetail-detail .right .right-list .image img{
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.n-newsdetail .newsdetail-detail .right .right-list a:hover .image img{
  transform: scale(1.03);
}
.n-newsdetail .newsdetail-detail .right .right-list .word{
  width: 60%;
}
.n-newsdetail .newsdetail-detail .right .right-list .word .name{
  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-newsdetail .newsdetail-detail .right .right-list .word .date{
  color: #888;
  margin-top: 10px;
}
@media (max-width: 1600px) {

}
@media (max-width: 1360px) {
  .n-newsdetail .newsdetail-position .position-1{
    padding-bottom: 4%;
    margin-bottom: 4%;
  }
  .n-newsdetail .newsdetail-position .position-2 .title{
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .n-newsdetail{
    margin-top: 60px;
  }
  .n-newsdetail .newsdetail-position{
    padding:4% 0;
  }
  .n-newsdetail .newsdetail-position .position-1 .left{
    display: none;
  }
  .n-newsdetail .newsdetail-position .position-2 .title{
    font-size: 20px;
  }
  .n-newsdetail .newsdetail-detail{
    padding:8% 0 10% 0;
  }
  .n-newsdetail .newsdetail-detail .left{
    width: 100%;
  }
  .n-newsdetail .newsdetail-detail .right{
    display: none;
  }
  .n-newsdetail .newsdetail-detail .left .page{
    margin-top: 4%;
    padding-top: 4%;
    flex-direction: column;
  }
  .n-newsdetail .newsdetail-detail .left .page .page-right{
    margin-top: 2%;
  }
}
@media (max-width: 750px) {
  .n-newsdetail .newsdetail-position .position-2 .title{
    font-size: 18px;
  }
}
