.news-container .more-button{
    display: block;
    margin:0 auto;
    margin-bottom:280px;
}
.news-container h2{
    text-align: center;
    padding:60px 0 100px 0;
    color: #484242;
    font-size:26px;
}
.news-list {
    display: flex;
    justify-content: space-around;
    padding-bottom: 80px;
    flex-wrap: wrap;
  }
  .news-item {
    display: flex;
    justify-content: space-between;
    margin-bottom:100px;
  }
  .news-item .n-i-left {
  margin-right:30px;
  }
  .news-item .n-i-left .time {
    margin-bottom: 30px;
  }
  .news-item .n-i-left .time h3 {
    font-weight: bold;
    font-size: 26px;
  }
  .news-item .n-i-left .time time {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #bdbdbd;
  }
  .news-item .n-i-left {
 
    transition: 0.8s;
  }
  .news-item:hover .n-i-left {
    transform: translateX(20px);
  }
  .news-item .n-i-right {
    cursor: pointer;
  }
  .news-item .n-i-right div {
    overflow: hidden;
  }
  .news-item .n-i-right img {
    width: 300px;
    height: 190px;
    transition: 0.5s;
  }
  .news-item .n-i-right:hover img {
    transform: scale(1.2);
  }
  .news-item .n-i-right h3 {
    width: 300px;
    font-weight: bold;
    font-size: 16px;
    color: #2d2d2d;
    line-height: 26px;
    margin-top:15px;
    transition: 0.5s;
  }
  .news-item .n-i-right:hover h3 {
    color: #00add3;
  }
  .news-detail{
      padding:30px 0;
     
  }
  .news-detail h2{
      font-size:28px;
      text-align: center;
  }
  .news-detail .news-times{
      display: flex;
      justify-content: center;
  }

  .news-detail .news-times span{
      margin-right:20px;
      color:#b1afaf;
      display: block;
      margin-top:10px;
  }
  .news-desc{
        width:70%;
        margin:20px auto;
  }
  .n-i-right p{
      display: none;
  }
  @media (max-width: 1408px) {
    /* 宽屏电脑 */

}

@media (max-width: 1216px) {

    /* 桌面电脑 */
    
}

@media (max-width: 1024px) {
    /* 平板电脑 */

}

@media (max-width: 768px) {
    .news-detail h2{
        font-size:22px;
    }
    .n-i-right P{
        display: block;
        font-size:12px;
    }
   .n-i-left{
       display: none;
   }
  .news-desc{
        width:86%;
        margin:20px auto;
  }
    /* 移动端 */
    
    .news-container h2{
        font-size:18px;
        padding:20px 0 30px 0; 
    }
    .container{
        display: block;
        box-sizing: border-box;
 
    }
    .news-list{
         display: block;
        padding-bottom:20px;
    }
    .news-item .n-i-right img{
        width:100%;
        height: auto;
    }
    
    .news-item {
 margin: 0 auto;
 width: 90%;
    justify-content: center;
        margin-bottom:30px;
    }
 
     .news-item .n-i-left{
         margin-right:25px;
     }
     .news-item .n-i-left .time h3{
         font-size:20px;
     }
     .news-item .n-i-left .time time{
         font-size:12px;
     }
     .n-i-left img{
         width:20px;
         height: 20px;
     }
     .news-item .n-i-right h3{
         font-size:14px;
         margin-top:10px;
     }
     .news-container .more-button{
         margin-bottom:30px;
     }
}