-                
10:00-12:00
-                14:00-16:00
-                16:00-18:00
-                20:00-22:00
+            
+                
+                
 
             
@@ -1473,12 +1519,64 @@
             });
         });
 
-        // 预定按钮
-        document.querySelectorAll('.reservation-btn').forEach(btn => {
-            btn.addEventListener('click', function() {
-                alert('跳转到预定确认页');
-            });
-        });
+        // 秒杀刷新功能
+        function refreshSeckill() {
+            const refreshBtn = document.querySelector('.refresh-btn');
+            const refreshIcon = refreshBtn.querySelector('span:first-child');
+            
+            // 添加旋转动画
+            refreshIcon.style.transition = 'transform 1s ease-in-out';
+            refreshIcon.style.transform = 'rotate(360deg)';
+            
+            // 模拟刷新数据
+            refreshBtn.disabled = true;
+            refreshBtn.style.opacity = '0.7';
+            
+            setTimeout(() => {
+                // 重置按钮状态
+                refreshBtn.disabled = false;
+                refreshBtn.style.opacity = '1';
+                refreshIcon.style.transform = 'rotate(0deg)';
+                
+                // 显示刷新完成提示
+                showRefreshSuccess();
+            }, 1000);
+        }
+
+        function showRefreshSuccess() {
+            // 创建临时提示元素
+            const toast = document.createElement('div');
+            toast.style.cssText = `
+                position: fixed;
+                top: 50%;
+                left: 50%;
+                transform: translate(-50%, -50%);
+                background: rgba(0, 0, 0, 0.8);
+                color: white;
+                padding: 12px 24px;
+                border-radius: 25px;
+                font-size: 14px;
+                z-index: 2000;
+                opacity: 0;
+                transition: opacity 0.3s ease;
+            `;
+            toast.textContent = '秒杀数据已刷新';
+            
+            document.body.appendChild(toast);
+            
+            // 显示提示
+            setTimeout(() => {
+                toast.style.opacity = '1';
+            }, 100);
+            
+            // 2秒后移除提示
+            setTimeout(() => {
+                toast.style.opacity = '0';
+                setTimeout(() => {
+                    document.body.removeChild(toast);
+                }, 300);
+            }, 2000);
+        }
     
 
+                    
             10:00-12:00
+                    14:00-16:00
+                    16:00-18:00
+                    20:00-22:00
+