style(login): 调整登录页面隐私政策提示位置

-将隐私政策提示文本从底部移动到顶部
- 使用绝对定位和 top 属性替代 bottom 属性- 调整 left 和 transform 属性以保持居中
This commit is contained in:
xingyy 2025-02-25 14:53:43 +08:00
parent 13beb44c85
commit 4317531d34

View File

@ -202,7 +202,7 @@ const goLogin =async () => {
</van-swipe-item> </van-swipe-item>
</van-swipe> </van-swipe>
<van-number-keyboard v-model="code" :show="showKeyboard" @blur="showKeyboard = false" /> <van-number-keyboard v-model="code" :show="showKeyboard" @blur="showKeyboard = false" />
<div class="text-center text-14px absolute left-1/2 transform translate-x--1/2 bottom-50px"> <div class="text-center text-14px absolute left-1/2 transform translate-x--1/2 top-630px">
登录即同意<span class="text-#3454AF " @click="$router.push('/privacyPolicy')">隐私政策</span> 登录即同意<span class="text-#3454AF " @click="$router.push('/privacyPolicy')">隐私政策</span>
</div> </div>
</div> </div>