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); }