From e2cae4f32c6928b98eb6f91e13df4411599ddd5f Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 12 Feb 2026 17:27:14 +0800 Subject: [PATCH] =?UTF-8?q?style(=E6=96=8B=E6=9C=88=E6=B4=BB=E5=8A=A8):=20?= =?UTF-8?q?=E6=8A=BD=E5=A5=96=E7=BB=93=E6=9E=9C=E6=A0=B7=E5=BC=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Activities/LuckyDollars/Season3/index.vue | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/src/views/Activities/LuckyDollars/Season3/index.vue b/src/views/Activities/LuckyDollars/Season3/index.vue index ad29448..329cf0f 100644 --- a/src/views/Activities/LuckyDollars/Season3/index.vue +++ b/src/views/Activities/LuckyDollars/Season3/index.vue @@ -1731,6 +1731,7 @@ @click="resultShowIndex--" /> + +
{{ t('you_get') }} {{ result[resultShowIndex]?.prize?.prizeName }} @@ -3229,6 +3232,31 @@ onUnmounted(() => { transform: scale(0.98); } +.resultNum { + position: absolute; + z-index: 9999; + inset: 0; + top: -8vw; + + padding-right: 8%; + display: flex; + justify-content: flex-end; + align-items: center; + + font-size: 1em; + font-weight: 590; + + background: linear-gradient(0deg, #f3b700 0%, #ffeec6 100%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +[dir='rtl'] .resultNum { + direction: ltr; + justify-content: flex-start; +} + .rotated { transform: rotate(90deg); }