.pagination-wrapper{
    font-size: 12px;
    color: #999;
    margin: 20px 0;
  }
  
  .pagination {
    display: inline-flex;
  }
  
  .pagination > div{
    min-width: 24px; 
    height: 24px;
    line-height: 24px;
    text-align: center;
    border: 1px solid #c8c8c8;
    border-radius: 0px;
    background: #fff;
    cursor: pointer;
  }
  
  .pagination .page-num.current-page{
    background: #0092FF;
    color: #fff;
    border: none;
  }
  
  .pagination > div:not(:last-child) {
    margin-right: 10px;
  }
  
  .pagination .next,
  .pagination .prev{
    font-size: 16px;
    color: #c2c2c2;
  }
  
  .goto{ 
    position: relative;
    width: 5em;
  }
  
  .goto input{
    position: absolute;
    left: 2px;
    width: 3em;
    background: #eeeded;
    border: none;
  }
  
  .goto button{
    position: absolute;
    right: 0;
    top: -1px;
    background: #0092ff;
  }
  
  .pagination .all{
    color: #656565;
    font-size: 14px;
    padding: 0 6px;
  }