/* pageBox 分頁：最多 9 項（第一頁 + 7 數字 + 最後一頁），避免橫向溢出 */
.pageBox {
  overflow-x: hidden;
  width: 100%;
}

.pageBox .pageList {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 10px;
  width: 100%;
  margin-top: 30px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}

@media (max-width: 1180px) {
  .pageBox .pageList {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.pageBox .pageList li.current a {
  color: #b2953f;
  font-size: 25px;
  padding: 0 25px;
  position: relative;
}

.pageBox .pageList li.current a:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 60%;
  border-left: 2px solid #336077;
  border-right: 2px solid #336077;
  left: 50%;
  top: 0;
  transform: translateX(-50%) skewX(-20deg);
}

.pageBox .pageList a {
  color: #61705f;
  font-size: 16px;
  font-weight: 700;
  margin: 0 5px;
  letter-spacing: 2.88px;
  text-decoration: none;
}
