/*大屏幕 小屏幕*/
@media screen and (min-width: 820.9px){


  .wrapper,.pagination {
    display: flex;
    justify-content: center;
  }

  .wrapper .uppage,.pagination li {
    line-height: .625rem;
    border: .0125rem solid rgba(112, 112, 112, 1);
    text-align: center;
    float: left;
    /* 设置鼠标的样式 */
    cursor: pointer;
    font-size: .25rem;
    font-weight: 400;
    color: #333333;
    border-radius: .05rem .05rem .05rem .05rem;
    margin-left: .125rem;
  }

  .wrapper .uppageS,.pagination .disabled {
    padding: 0 0;
    line-height: .625rem;
    text-align: center;
    float: left;
    /* 设置鼠标的样式 */
    cursor: pointer;
    font-size: .25rem;
    font-weight: 400;
    color: #333333;
    margin-left: .125rem;
    border: 0;
  }

  .wrapper .select,.pagination .active {
    border: .0125rem solid rgba(23, 68, 154, 1);
    text-align: center;
    float: left;
    /* 设置鼠标的样式 */
    cursor: pointer;
    color: #fff;
    background: rgba(23, 68, 154, 1);
  }

  .wrapper .select a,.pagination .active a {
    color: #fff;
  }

  .wrapper .prev,.pagination li:nth-child(1) {
    line-height: .625rem;
    text-align: center;
    float: left;
    cursor: pointer;
    font-size: .25rem;
    font-weight: 400;
    color: #B3B5B9;
    border: 0;
  }

  .wrapper .next,.pagination li:nth-last-child(1) {
    line-height: .625rem;
    text-align: center;
    float: left;
    cursor: pointer;
    font-size: .25rem;
    font-weight: 400;
    color: #B3B5B9;
    border: 0;
  }

  .wrapper .uppage a,
  .wrapper .prev a,
  .wrapper .next a,.pagination li a,.pagination li span {
    padding: 0 .25rem;
    display: block;
  }

}
/*移动端*/
@media (max-width: 820px){
  .wrapper,.pagination {
    display: none;
    /* display: flex;
    justify-content: center;
    flex-wrap: wrap; */
  }

  .wrapper .uppage,.pagination li {
    line-height: 1.25rem;
    border: 1px solid rgba(112, 112, 112, 1);
    text-align: center;
    float: left;
    /* 设置鼠标的样式 */
    cursor: pointer;
    font-size: .75rem;
    font-weight: 400;
    color: #333333;
    border-radius: .25rem;
    margin-left: .625rem;
  }

  .wrapper .uppageS,.pagination .disabled {
    padding: 0 0;
    line-height: 1.25rem;
    text-align: center;
    float: left;
    /* 设置鼠标的样式 */
    cursor: pointer;
    font-size: .75rem;
    font-weight: 400;
    color: #333333;
    margin-left: .625rem;
    border: 0;
  }

  .wrapper .select,.pagination .active {
    border: 1px solid rgba(23, 68, 154, 1);
    text-align: center;
    float: left;
    /* 设置鼠标的样式 */
    cursor: pointer;
    color: #fff;
    background: rgba(23, 68, 154, 1);
  }

  .wrapper .select a,.pagination .active a {
    color: #fff;
  }

  .wrapper .prev,.pagination li:nth-child(1) {
    line-height: 1.25rem;
    text-align: center;
    float: left;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 400;
    color: #B3B5B9;
    border: 0;
  }

  .wrapper .next,.pagination li:nth-last-child(1) {
    line-height: 1.25rem;
    text-align: center;
    float: left;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 400;
    color: #B3B5B9;
    border: 0;
  }

  .wrapper .uppage a,
  .wrapper .prev a,
  .wrapper .next a,.pagination li a,.pagination li span {
    padding: 0 .375rem;
    display: block;
  }
}