fix(游戏活动页): 修复底框盖住用户列表的问题

This commit is contained in:
hzj 2025-11-28 19:42:29 +08:00
parent f03133a3b4
commit 9b0fc8a4f8

View File

@ -93,7 +93,7 @@
<!-- 背景图 --> <!-- 背景图 -->
<!-- <div class="ranking-bg"></div> --> <!-- <div class="ranking-bg"></div> -->
<div style="position: relative; z-index: 1"> <div style="position: relative; z-index: 2">
<!-- 前三名 --> <!-- 前三名 -->
<itemCenter <itemCenter
:imgUrl="images.RankingMain" :imgUrl="images.RankingMain"
@ -138,7 +138,10 @@
</itemCenter> </itemCenter>
<!-- 第四名开始 --> <!-- 第四名开始 -->
<div v-if="showRanking.length > 0" style="margin-bottom: 6vw"> <div
v-if="showRanking.length > 0"
style="margin-bottom: 6vw; position: relative; z-index: 2"
>
<itemCenter <itemCenter
v-for="listItem in showRanking" v-for="listItem in showRanking"
:imgUrl="images.RankingItem" :imgUrl="images.RankingItem"
@ -228,7 +231,7 @@
:src="images.RankingBottomBorder" :src="images.RankingBottomBorder"
alt="" alt=""
width="100%" width="100%"
style="display: block; margin-top: -40vw; position: relative; z-index: 9" style="display: block; margin-top: -40vw; position: relative; z-index: 1"
/> />
</div> </div>
</div> </div>