.news {
   margin: 50px 0;
}
.news .news-container{
   width: 100%;
   min-height: 600px;
   margin-top: 50px;
   display: flex;
}
.news .news-container .news-nav{
  width: 200px;
}
.news .news-container .tab-content{
   flex: 1;
  padding:0 20px;
}
.news .news-container .tab-content{
 
}
.news .news-container .tab-content .news-item {
   width: 100%;
   height: 120px;
   display: flex;
}
.news .news-container .tab-content .news-item :hover{
   cursor: pointer;
}
.news .news-container .tab-content  .line{
   width: 100%;
   height: 1px;
   margin: 20px 0;
   border-bottom: 1px solid #ddd;
}
.news .news-container .tab-content .news-item .news-item-img{
   width: 160px;
   height: 120px;
   margin-right: 10px;
}
.news .news-container .tab-content .news-item .news-item-img img{
   width: 100%;
   height: 120px;
}
.news .news-container .tab-content .news-item .news-item-content{
  flex:1;
   height: 100%;
}
.news .news-container .tab-content .news-item .news-item-content .news-item-title{
   font-size: 16px;
   height: 16px;
}
.news .news-container .tab-content .news-item .news-item-content .news-item-text{
   height: calc(100% - 30px);
   padding: 5px 0;
   color: rgb(157, 157, 157);
  
     word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news .news-container .tab-content .news-item .news-item-content .news-item-date{
   font-size: 12px;
   color: #ddd;
   height: 12px;
}

.news-details-panel {
   
}
.news-details-panel .new-datails-header{
   text-align: center;
}
.news-details-panel .new-datails-header .news-title{
   font-size: 24px;
   color: #000;
}
.news-details-panel .new-datails-content {
     word-break: break-all;
   border-top: 1px solid #ddd;
   border-bottom: 1px solid #ddd;
   overflow: hidden;
   
}
.news-details-panel .new-datails-content p{
   line-height: 30px;
  
}

.news-nav-mobile {
   display: none;
}

@media (max-width: 970px) { 
   .news-nav-pc {
      display: none;
   }

   .news-nav-mobile {
      display: block;
   }
   

   .news-nav-mobile {
      margin-bottom: 10px;
   }

   .news .news-container{
      width: 100%;
      min-height: 600px;
      margin-top: 50px;
      display: block;
   }
   .news .news-container .news-nav{
     width: 100%;
   }
   .news .news-container .tab-content{
     flex: none;
     padding:0 ;
   }
   .news .news-container .tab-content .news-item {
     padding:0 5px;
      height: 70px;
   }

   .news .news-container .tab-content .news-item .news-item-img {
      width: 100px;
      height: 70px;
      margin-right: 10px
   }
   .news .news-container .tab-content .news-item .news-item-img img {
      width: 100%;
      height: 70px;
   }
}

@media (max-width: 768px) { 

}