feat(幸运冠军活动): 调整倒计时排序

This commit is contained in:
hzj 2025-12-10 16:55:10 +08:00
parent 18b53e627a
commit 32b6dcae37

View File

@ -21,7 +21,7 @@
</div>
<!-- 倒计时 -->
<div style="display: flex; justify-content: center; margin-top: 10vw">
<div class="timeBox">
<div style="width: 20%">
<itemCenter :imgUrl="imageUrl('timeBg')">
<div class="timeText" style="">{{ Days }}D</div>
@ -745,6 +745,12 @@ onUnmounted(() => {
font-size: 0.8em;
}
.timeBox {
display: flex;
justify-content: center;
margin-top: 10vw;
}
@media screen and (max-width: 360px) {
* {
font-size: 10px;
@ -768,4 +774,8 @@ onUnmounted(() => {
font-size: 32px;
}
}
[dir='rtl'] .timeBox {
flex-direction: row-reverse;
}
</style>