.box2 {
    display: flex;
    justify-content: space-between;
    margin: 30px 0px;
  }
  
  .box2 .line {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 0;
    border-top: 1px solid #e4eaec;
  }
  
  .box2 p {
    text-indent: 2ch;
  }
  
  .box2 .left {
    flex: 3;
  }
  
  .box2 .left .left_box {
    padding: 10px 10px;
    border-bottom: 1px solid #e4eaec;
  }
  
  .box2 .left .title {
    padding: 5px 0;
    color: #999;
    cursor: pointer;
  }
  
  .box2 .left .content {
    margin: 5px 0;
    color: #76838f;
  }
  
  .box2 .left .author {
    color: #a3afb7;
  }
  
  .box2 .left .title:hover {
    color: #0170e2;
    text-decoration: underline;
  }
  
  .box2 .right {
    margin-left: 30px;
    flex: 1;
  }
  
  .box2 .right .right_title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 150px;
    font-size: 14px;
    color: #999;
    cursor: pointer;
  }
  
  .box2 .right .right_title:hover {
    text-decoration: underline;
  }
  
  .box2 .right .list2 {
    display: flex;
    padding: 10px;
    align-items: center;
  }
  
  .index {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .circular {
    color: #fff;
    background-color: #f89e01;
  }
 
  .pagination {
    display: flex;
    justify-content: center;
  }
  .pagination .pagination-box {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #eee;
    margin-right: 10px;
    cursor: pointer;
  }
  .active {
    background-color: #f89e01 !important;
    color: #fff;


  }
  @media screen and (max-width: 700px) {
    .box2 {
      margin: 15px;
      flex-flow: column;
      justify-content: normal;
      /* align-items: center; */
    }
  
    .box2 .left_box {
      padding: 10px !important;
    }
  
    .box2 .right {
      margin-left: 10px !important;
    }
  
    .box2 .right .right_title {
      width: 200px !important;
    }
  }