From 73b8503ac72e7944838f08b22c1d27c154fec115 Mon Sep 17 00:00:00 2001 From: zhangyahui Date: Mon, 9 Feb 2026 13:41:55 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E9=A1=B5=E9=9D=A2=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AwardPage/components/Bloom.vue | 1 + src/views/AwardPage/components/JudgesSection.vue | 1 + src/views/AwardPage/components/SelectionSection.vue | 1 + src/views/AwardPage/components/TimeLine.vue | 1 + src/views/AwardPage/container.vue | 3 ++- 5 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/AwardPage/components/Bloom.vue b/src/views/AwardPage/components/Bloom.vue index f7b516a..fea4ae9 100644 --- a/src/views/AwardPage/components/Bloom.vue +++ b/src/views/AwardPage/components/Bloom.vue @@ -173,6 +173,7 @@ background-size: 100% 100%; .title { font-size: 4rem; + font-weight: 600; color: #232323; margin-bottom: 2.4rem; } diff --git a/src/views/AwardPage/components/JudgesSection.vue b/src/views/AwardPage/components/JudgesSection.vue index a53efdf..55c814b 100644 --- a/src/views/AwardPage/components/JudgesSection.vue +++ b/src/views/AwardPage/components/JudgesSection.vue @@ -185,6 +185,7 @@ onBeforeUnmount(() => { font-family: 'PoppinsBold'; font-weight: 600; font-size: 4rem; + margin-bottom: 2.4rem; } .logo { margin: 2.4rem 0 2.2rem; diff --git a/src/views/AwardPage/components/SelectionSection.vue b/src/views/AwardPage/components/SelectionSection.vue index a003b70..5a1231b 100644 --- a/src/views/AwardPage/components/SelectionSection.vue +++ b/src/views/AwardPage/components/SelectionSection.vue @@ -131,6 +131,7 @@ onBeforeUnmount(() => { font-family: 'PoppinsBold'; font-weight: 600; font-size: 4rem; + margin-bottom: 2.4rem; } .logo { margin: 2.3rem 0 2.3rem; diff --git a/src/views/AwardPage/components/TimeLine.vue b/src/views/AwardPage/components/TimeLine.vue index 0918ba8..68ce67a 100644 --- a/src/views/AwardPage/components/TimeLine.vue +++ b/src/views/AwardPage/components/TimeLine.vue @@ -227,6 +227,7 @@ font-size: 4rem; text-align: center; vertical-align: middle; + margin-bottom: 2.4rem; } .logo { margin: 2.4rem 0 2.2rem 0; diff --git a/src/views/AwardPage/container.vue b/src/views/AwardPage/container.vue index 8b46a2a..4ae784f 100644 --- a/src/views/AwardPage/container.vue +++ b/src/views/AwardPage/container.vue @@ -147,11 +147,12 @@ } ) const handleBtnClick = () => { + const lang = route.params.lang ? `/${route.params.lang}` : '' if (btnType.value === 'index') { router.push(`${lang}/contestants`) } else { - router.push(`${lang}`) + router.push(`${lang}/`) } }