/* ----- 通用PB分页条 ----- */
.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    padding: 6px 8px;
    margin: 0 2px;
    border-radius: 3px;
  }

  .pagination a:hover {
    color: #4fc08d;
    border: 1px solid #4fc08d;
  }

  .pagination a.page-num-current {
    color: #fff;
    background: #4fc08d;
    border: 1px solid #4fc08d;
  }

  .main-content {
    padding: 0;
  }

  .side-nav {
    width: 170px;
  }

  .menu>ul>li {
    margin: 0 20px;
  }

  .version-list-wrap{
    margin-top: 50px;
  }

  .version-list {
    width: 800px;
    margin: 20px auto;
  }

  .article-box {
    display: flex;
    flex-direction: row;
    margin-top: 0;
  }

  .text-box-wrap {
    border-left: 2px solid #c1cdd6;
    padding: 0 50px 30px;
    position: relative;
  }

  .article-box .time-wrap{
    margin: -35px 30px 0;
  }
  .article-box .time{
    flex: 1;
    width: 70px;
    /* height: 50px; */
    background-color: #3075FF;
    text-align: center;
    color: #FFF;
    border-radius: 5px;
    line-height: 20px;
    padding: 5px 0;
  }
  .article-box .time .date{
    font-size: 16px;
    height: 20px;
  }
  .article-box .time .year{
    font-size: 14px;
    height: 20px;
  }
  .article-box .version{
    font-size: 16px;
    height: 25px;
    text-align: center;
    margin-top: 10px;
    color: #545454;
    font-weight: bold;
  }

  .article-box .timeline {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #c1cdd6;
    position: absolute;
    left: -6px;
    top: 32px;
  }

  .article-box .text-box {
    width: 750px;
    height: auto;
    position: relative;
    border: 1px solid #e8e8e8;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
  }

  .article-box .text-box:after {
    content: "";
    position: absolute;
    left: -11px;
    top: 26px;
    width: 20px;
    height: 20px;
    background: #f8f8f8;
    border-left: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    transform: rotate(-45deg);
  }