立即返回首页
// 倒计时显示
let time = 5;
setInterval(() => {
time--;
document.querySelector('.countdown').textContent = time + '秒后自动返回首页...';
if(time <= 0) window.location.href = '/';
}, 1000);