.p_news {
    width: 100%;
    margin: 0 auto;
  }
  
  .newPicBox {
    width: 165px;
    height: 110px;
    border: solid 1px #ddd;
  }
  
  .newPicLink {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .newPic img{
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all .5s ease;
  }
  
  .newList {
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #DDD;
    background: #fff;
    margin-bottom: 20px;
  }
  
  .leftTime {
    width: 100px;
    position: relative;
  }
  
  .newTime {
    display: block;
    color: #999;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0px 0 30px;
    transition: all .5s ease;
  }
  
  .newIcon {
    padding: 6px 11px;
    border: 1px solid transparent;
    transition: all .5s ease;
    color: #ccc;
  }
  
  .newList:hover .newTitleLink {
    color: #db322c;
  }
  
  .rightC {
    position: relative;
    width: calc(100% - 100px);
    transition: all .5s ease;
  }
  
  .newTitle {
    margin-bottom: 10px;
  }
  
  .newTitleLink {
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .newMs {
    line-height: 24px;
    height: 48px;
    font-size: 0.875rem;
    overflow: hidden;
    color: #999;
    transition: 600ms;
  }
  
  @media only screen and (min-width: 769px) {
  
    .content {
      display: flex;
      width: calc(100% - 165px);
    }
  
    .newPicBox:hover .newPic img{
      transform: scale(1.1);
    }
  
    .rightC {
      padding: 0 30px 0 60px;
    }
  
    .rightC::before {
      content: '';
      position: absolute;
      left: 0px;
      top: 1rem;
      display: block;
      width: 40px;
      height: 1px;
      background: #aaa;
      transition: all .5s ease;
    }
  
    .newTitleLink {
      transition: all .5s ease;
    }
  
    .newList {
      display: flex;
      padding: 30px;
      border-bottom: 1px solid #DDD;
      background: #fff;
      margin-bottom: 20px;
    }
  
    .newList:hover .rightC::before {
      width: 60px;
    }
  
    .newList:hover .rightC {
      padding-left: 80px;
    }
  
    .newList:hover .newTime {
      color: #333;
    }
  
    .newList:hover .newIcon {
      border-color: #db322c;
      margin-top: 10px;
      background: #db322c;
    }
  }
  
  @media only screen and (max-width: 768px) {
  
    .content {
      display: flex;
      padding-top: 20px;
      width: 100%;
    }
  
    .newList {
      flex-wrap: wrap;
      flex-direction: column-reverse;
      padding: 10px;
      border-bottom: none;
    }
  
    .newPicBox {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 70%;
    }
  
    .newPicLink {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  
    .newTitle {
      margin: 10px 0;
    }
  }