/* 非活动页码 - 白色背景 */
		.page-num {
		  display: inline-flex;
		  align-items: center;
		  justify-content: center;
		  min-width: 36px;
		  height: 36px;
		  padding: 0 12px;
		  border-radius: 8px;
		  font-size: 14px;
		  font-weight: 500;
		  color: #4b5563;
		  background: #ffffff;
		  text-decoration: none;
		  transition: all 0.2s ease;
		  border: 1px solid #e5e7eb;
		  margin-left: 0.5rem;
		}
		
		.page-num:hover {
		  background: #fff7ed;
		  color: #ea580c;
		  border-color: #fdba74;
		}
		
		/* 活动页码 - 橙色 */
		.page-num-current,
		.page-num-current:hover {
		  background: #f97316;
		  color: #fff;
		  border-color: #f97316;
		  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
		  pointer-events: none;
		}