  .pagebox {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 30px;
  }

  @media screen and (max-width: 768px) {
      .pagebox {
          margin-bottom: 30px;
      }
  }

  .pagebox a {
      padding: 10px 20px;
      display: block;
      background: rgb(240 240 240);
      border: 1px solid #ececec;
      margin: 0 2px;
      margin-bottom: 4px;
      border-radius: 1px;
      transition: all .1s;
  }

  .pagebox a:hover {
      background: #f08518;
      color: #fff;
  }

  .pagebox .pageaactive {
      background: #f08518;
      color: #fff;
  }