diff --git a/src/views/Activities/heroesDay/index.vue b/src/views/Activities/heroesDay/index.vue index ad6f2bd..1fff913 100644 --- a/src/views/Activities/heroesDay/index.vue +++ b/src/views/Activities/heroesDay/index.vue @@ -273,7 +273,7 @@ display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; - padding: 23vw 5vw 11vw; + padding: 23vw 8vw 11vw; " >
{ // 获取2025年11月18日上午10点的时间戳(北京时间) const getTargetTime = () => { - const targetDate = new Date(2025, 10, 18, 10, 0, 0) // 月份从0开始,10代表11月 + const targetDate = new Date(2025, 10, 17, 10, 0, 0) // 月份从0开始,10代表11月 return targetDate.getTime() }