/* 跳转功能容器 */
.page-jump-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px;
  background: rgba(128, 128, 128, 0.08);
  padding: 0 12px;
  border-radius: 8px;
  white-space: nowrap;
  height: 35px;
}

/* 重置pagination-wrapper内部的margin确保对齐 */
.pagination-wrapper .pagination {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 跳转至文字 */
.page-jump-label {
  font-size: 14px;
  color: var(--font-color);
  opacity: 0.6;
  white-space: nowrap;
  line-height: 35px;
  height: 35px;
}

/* 页码输入框 */
.page-jump-input {
  width: 70px;
  height: 35px;
  padding: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  background: var(--card-bg);
  color: var(--font-color);
  line-height: 35px;
  box-sizing: border-box;
}

.page-jump-input:focus {
  outline: none;
  border-color: var(--theme-color);
}

.page-jump-input::placeholder {
  color: var(--font-color);
  opacity: 0.3;
}

/* GO按钮 */
.page-jump-btn {
  height: 35px;
  padding: 0 12px;
  background: transparent;
  color: var(--font-color);
  opacity: 0.6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 35px;
  transition: all 0.3s;
  white-space: nowrap;
}

.page-jump-btn:hover {
  background: var(--text-bg-hover);
  opacity: 1;
}

/* 总页数 */
.page-jump-total {
  font-size: 14px;
  color: var(--font-color);
  opacity: 0.6;
  white-space: nowrap;
  line-height: 35px;
  height: 35px;
}