This commit is contained in:
aaron 2025-05-23 15:13:54 +08:00
parent 280f6ec6e3
commit 1e051ee363

View File

@ -208,6 +208,7 @@ onMounted(() => {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
padding-bottom: env(safe-area-inset-bottom, 0);
} }
.hero-section { .hero-section {
@ -500,7 +501,7 @@ onMounted(() => {
} }
.page-footer { .page-footer {
padding: 0.8rem 0; padding: 0.8rem 0 2rem;
} }
.partnership-content { .partnership-content {
@ -563,7 +564,7 @@ onMounted(() => {
} }
.page-footer { .page-footer {
padding: 0.8rem 0; padding: 0.8rem 0 2.5rem;
} }
.partnership-content { .partnership-content {
@ -605,7 +606,7 @@ onMounted(() => {
.page-footer { .page-footer {
width: 100%; width: 100%;
margin-top: auto; margin-top: auto;
padding: 1rem 0; padding: 1rem 0 1.5rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
@ -681,4 +682,11 @@ onMounted(() => {
width: 20px; width: 20px;
height: 20px; height: 20px;
} }
/* 处理移动端浏览器的底部导航栏 */
@supports (padding: max(0px)) {
.home-view {
padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0.5rem));
}
}
</style> </style>