<style>
h3 {
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 20px 0 10px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

h3 a {
  color: #222;
  text-decoration: none;
  background-image: linear-gradient(transparent 70%, #ffd54f 70%);
  transition: color 0.3s ease, background-size 0.3s ease;
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

h3 a:hover {
  color: #e91e63;
  background-size: 100% 100%;
  text-decoration: none;
}
</style>

.custom-hr {
  border: none;
  border-top: 1px solid #007bff;
  width: 1000px;
  margin: 15px auto;
  border-radius: 5px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

.page-btn, .page-number {
  padding: 4px 8px;
  min-width: 22px;
  height: 20px;
  line-height: 22px;
  border-radius: 8px;
  border: 2px solid #007bff;
  background-color: white;
  color: #007bff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
  user-select: none;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-btn:hover, .page-number:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.6);
  border-color: #0056b3;
  text-decoration: none;
}

.page-number.active {
  background-color: #0056b3;
  color: white;
  border-color: #003d80;
  cursor: default;
  box-shadow: 0 6px 14px rgba(0, 61, 128, 0.7);
}

.page-btn:disabled {
  background-color: #e0e0e0;
  border-color: #b0b0b0;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
}

/* 响应式，移动端适配 */
@media (max-width: 600px) {
  .pagination {
    gap: 6px;
  }
  .page-btn, .page-number {
    padding: 6px 10px;
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .custom-hr {
    width: 90%;
  }
}
