.mfo_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: nowrap;
  max-width: 600px;
}


.mfo_pagination .page_btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 500;
  display: grid;
  place-items: center;
  margin: 0 5px;
  flex: 0 0 auto;
}

.mfo_pagination .page_btn.disabled {
  pointer-events: none;
}

.mfo_pagination .page_btn.active {
  background: #FF8F08;
  pointer-events: none;
  color: white;
}

.mfo_pagination .arrow {
  /*width: 11px;
  height: 11px;
  border: solid #1B1B1B;
  border-width: 0 2.7px 2.7px 0;*/
  width: 40px; 
  height: 40px;
  position: relative;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}

.mfo_pagination .arrow::after {
  /*content: ' ';
  position: absolute;
  width: 16px;
  height: 2.7px;
  background-color: #1B1B1B;
  transform: rotate(45deg);
  left: -3.3px;
  bottom: 2.4px;*/
}

.mfo_pagination .pre {
  /*transform: rotate(135deg);*/
}

.mfo_pagination .next {
  /*transform: rotate(-45deg);*/
}

.mfo_pagination .page_btn.disabled .arrow {
  /*border: solid #A2A2A2;
  border-width: 0 2.7px 2.7px 0;*/ 
  
}
.mfo_pagination .page_btn.disabled .arrow::after {
  /*background-color: #A2A2A2;*/
}
.mfo_pagination .page_btn.disabled .arrow.pre{
  background-image: url(../assets/icons/pagination_arrow_left_gray.svg);/**改用svg**/
}
.mfo_pagination .page_btn.disabled .arrow.next{
  background-image: url(../assets/icons/pagination_arrow_right_gray.svg);/**改用svg**/
}
.mfo_pagination .page_btn .arrow.pre{
  background-image: url(../assets/icons/pagination_arrow_left_black.svg);
}
.mfo_pagination .page_btn .arrow.next{
  background-image: url(../assets/icons/pagination_arrow_right_black.svg);
}

@media (max-width: 767px) {
  .mfo_pagination .page_btn {
    width: 37px;
    height: 37px;
    font-weight: 500;
    font-size: 14px;
    margin: 0 2px;
  }
  .mfo_pagination .arrow {
    background-size: 14px auto;
  }
}
