/*分页new_page*/
.ht-page {
  padding: 31px;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.ht-page span {
  vertical-align: middle;
  cursor: pointer;
}

.ht-page a {
  text-decoration: none;
  color: #9a9a9a;
  outline: none;
}

.ht-page .pagebtn {
  width: 52px;
  height: 30px;
  background: #1875f0;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.ht-page .pagebtn:hover {
  background: #1875f0;
}

.ht-page .previous {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #DBDBDB;
  margin: 0 5.5px;
  border-radius: 4px;
  cursor: pointer;
  background: url("../img/page_left_img.png") no-repeat center;
  background-size: cover;
}

.ht-page .previous.disable {
  display: inline-block;
  /* padding: 0 15px; */
  background: url("../img/page_left_disabled.png") no-repeat center;
  background-size: cover;
  cursor: default;
  border-color: #ddd;
}

/* 
.ht-page .previous.disable:hover {
  opacity: 0.6;
  background: url("img/page_left_disabled.png") no-repeat center;
  background-size: cover;

} */

/* .ht-page .previous:hover {
  background: url("../img/page_left_hover_img.png") no-repeat center;
} */

.ht-page .previous a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  /* padding: 0 15px; */
}

.ht-page .next {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #DBDBDB;
  /* border-left: 0; */
  cursor: pointer;
  margin: 0 5.5px;
  border-radius: 6px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: url("../img/page_right_img.png") no-repeat center;
  background-size: cover;
}

/* .ht-page .next:hover {
  background: url("../img/page_right_hover_img.png") no-repeat center;
} */

.ht-page .next.disable {
  display: inline-block;
  /* padding: 0 15px; */
  cursor: default;
  background: url("../img/page_right_disabled.png") no-repeat center;
  background-size: cover;
  border-color: #ddd;
}

/* .ht-page .next.disable:hover {
  background: url("../img/page_right_disabled.png") no-repeat center;
  background-size: cover;
  opacity: 0.6;
} */

.ht-page .next a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  /* padding: 0 15px; */
}

.ht-page .num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 32px;
  border: 1px solid #DBDBDB;
  /* border-left: 0; */
  margin: 0 5.5px;
  border-radius: 6px;
}

.ht-page .num.current {
  /* padding: 0 15px; */
  color: #fff;
  background: #f75500;
  border: none;
  line-height: 36px;
}

.ht-page .num a {
  display: inline-block;
  width: 34px;
  height: 36px;
  line-height: 32px;
  border-radius: 6px;
  /* padding: 0 15px; */
}

.ht-page .num:hover {
  border: none;
  background: #f75500;
  color: #fff;
  line-height: 36px;
}

.ht-page .num a:hover {
  color: #fff;
  background: #f75500;
  line-height: 36px;
}

.ht-page .dots {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 28px;
  border: 1px solid #e9e9e9;
  /* border-left: 0; */
  margin: 0 5.5px;
  border-radius: 6px;
  /* padding: 0 15px; */
}

.ht-page .total {
  margin-left: 20px;
  margin-right: 10px;
}

.ht-page .total.total_page {
  margin-left: 5px;
  margin-right: 5px;
}

.ht-page .page_jump {
  margin: 0 10px;
}

.ht-page .pageInput {
  width: 50px;
  height: 30px;
  border: 1px solid #e9e9e9;
  outline: none;
  border-radius: 4px;
  text-align: center;
}

.ht-page .pageInput:focus {
  border: 1px solid #1875f0;
}

@media screen and (max-width: 768px) {
  .ht-page {
    padding: 10px 0;
  }

  .ht-page .previous {
    border: none;
  }

  .ht-page .next {
    border: none;
  }

  .ht-page .num,
  .ht-page .dots,
  .ht-page .total {
    display: none;
  }

  .ht-page .num.current {
    display: inline-block;
    padding: 0 10px;
    background: transparent;
    border: none;
    color: #222;
  }

  .ht-page .total.total_page {
    display: inline-block;
  }

  .ht-page .pageInput,
  .ht-page .pagebtn {
    width: 40px;
  }

  .ht-page .pagebtn {
    display: none;
  }

  .ht-page .page_jump {
    margin: 0 5px;
  }
}