.spage-total {
  display: none;
  margin-left: .2rem;
  line-height: .5rem;
  color: #666;
  font-size: .215rem;
}

.spage-number {
  display: flex;
  color: #666;
  /* font-size: .175rem; */
  column-gap: 8px;
  font-size: 14px;
  width: 100%;
  justify-content: flex-end;
}

.spage-number button {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid transparent;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  outline: none;
  background: none;
  user-select: none;
  color: #fff;
}

.spage-number button.active {
  /* background: #1280D6; */
  color: #fff;
  border-color: #fff;
  z-index: 3;
}

.spage-number button.active:hover {
  /* background: #1280D6; */
  color: #fff;
  border-color: #fff;
  z-index: 3;
}

.spage-number button.page_link:hover {
  /* border: 1px solid #1280D6;
  color: #1280D6; */
  color: #fff;
  border-color: #fff;
  z-index: 3;
}

.spage-number button.button-disabled {
  cursor: not-allowed;
  color:rgba(255,255,255,0.5);
}

.spage-number .spage-after,
.spage-before {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
}

.spage-skip {
  display: inline-block;
  margin-left: .25rem;
  line-height: .4375rem;
  color: #666;
  font-size: .175rem;
}

.spage-skip input {
  box-sizing: border-box;
  display: inline-block;
  width: .5625rem;
  height: .4375rem;
  text-align: center;
  vertical-align: top;
  border: 1px solid #ddd;
  background: none;
  outline: none;
  transition: all 0.2s;
}

.spage-skip input:focus {
  border-color: #1280D6;
}

.spage-skip button {
  display: inline-block;
  padding: 0px .175rem;
  line-height: .4125rem;
  vertical-align: top;
  color: #666;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  background: none;
  user-select: none;
}

.spage-skip button:hover {
  background: #1280D6;
  color: #fff;
  border: 1px solid #1280D6;
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .spage-total {
    /* font-size: .26rem; */
  }
  .spage-number {
    /* font-size: 0.22rem; */
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spage-total {
    /* font-size: .315rem;
    line-height: 0.6rem; */
  }
  .spage-number {
    /* font-size: 0.265rem; */
  }
  .spage-number button {
    /* height: .6rem;
    width: .6rem; */
  }
}
@media screen and (max-width: 768px) {
  .spage-total {
    /* font-size: 0.35rem;
    line-height: 0.675rem; */
  }
  .spage-number {
    /* font-size: 0.3rem; */
    justify-content: center
  }
  .spage-number button {
    /* width: 0.675rem;
    height: 0.675rem; */
    font-size: 10px;
    width: 24px !important;
    height: 24px !important;
  }
}