style: 页面样式

This commit is contained in:
2026-02-09 13:41:55 +08:00
parent 7665bf59da
commit 73b8503ac7
5 changed files with 6 additions and 1 deletions

View File

@@ -173,6 +173,7 @@
background-size: 100% 100%; background-size: 100% 100%;
.title { .title {
font-size: 4rem; font-size: 4rem;
font-weight: 600;
color: #232323; color: #232323;
margin-bottom: 2.4rem; margin-bottom: 2.4rem;
} }

View File

@@ -185,6 +185,7 @@ onBeforeUnmount(() => {
font-family: 'PoppinsBold'; font-family: 'PoppinsBold';
font-weight: 600; font-weight: 600;
font-size: 4rem; font-size: 4rem;
margin-bottom: 2.4rem;
} }
.logo { .logo {
margin: 2.4rem 0 2.2rem; margin: 2.4rem 0 2.2rem;

View File

@@ -131,6 +131,7 @@ onBeforeUnmount(() => {
font-family: 'PoppinsBold'; font-family: 'PoppinsBold';
font-weight: 600; font-weight: 600;
font-size: 4rem; font-size: 4rem;
margin-bottom: 2.4rem;
} }
.logo { .logo {
margin: 2.3rem 0 2.3rem; margin: 2.3rem 0 2.3rem;

View File

@@ -227,6 +227,7 @@
font-size: 4rem; font-size: 4rem;
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
margin-bottom: 2.4rem;
} }
.logo { .logo {
margin: 2.4rem 0 2.2rem 0; margin: 2.4rem 0 2.2rem 0;

View File

@@ -147,11 +147,12 @@
} }
) )
const handleBtnClick = () => { const handleBtnClick = () => {
const lang = route.params.lang ? `/${route.params.lang}` : '' const lang = route.params.lang ? `/${route.params.lang}` : ''
if (btnType.value === 'index') { if (btnType.value === 'index') {
router.push(`${lang}/contestants`) router.push(`${lang}/contestants`)
} else { } else {
router.push(`${lang}`) router.push(`${lang}/`)
} }
} }
</script> </script>