常见问题

疑难解惑一目了然

常见问题

限时特惠

限时新户礼遇・注册就送惊喜大礼包

15
08
32
45

客户端下载

客户端下载

随时随地观看精彩赛事,享受专业的移动直播体验。支持离线下载、多画面观看、弹幕互动等丰富功能。

下一轮"; return; } const days = Math.floor(distance / (1000 * 60 * 60 * 24)); const hours = Math.floor( (distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60), ); const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((distance % (1000 * 60)) / 1000); daysEl.textContent = days.toString().padStart(2, "0"); hoursEl.textContent = hours.toString().padStart(2, "0"); minutesEl.textContent = minutes.toString().padStart(2, "0"); secondsEl.textContent = seconds.toString().padStart(2, "0"); } updateCountdown(); setInterval(updateCountdown, 1000); });