diff --git a/src/components/PlayTable/TableBullbull.vue b/src/components/PlayTable/TableBullbull.vue index f77b98ed..b3c86dab 100644 --- a/src/components/PlayTable/TableBullbull.vue +++ b/src/components/PlayTable/TableBullbull.vue @@ -224,6 +224,7 @@ $text-red: #f56c6c; flex: 1; display: flex; flex-direction: column; + overflow: visible; /* 允许金额显示溢出 */ } } @@ -231,6 +232,7 @@ $text-red: #f56c6c; flex: 1; display: flex; border-bottom: 1px solid $border-light; + overflow: visible; /* 允许金额显示溢出 */ &:last-child { border-bottom: none; @@ -240,7 +242,8 @@ $text-red: #f56c6c; flex: 1; position: relative; border-right: 1px solid $border-light; - + overflow: visible; /* 允许金额显示溢出 */ + &:last-child { border-right: none; } @@ -256,6 +259,7 @@ $text-red: #f56c6c; cursor: pointer; padding: 4px; box-sizing: border-box; + overflow: visible; /* 允许金额显示溢出 */ &:active { background: rgba(255, 255, 255, 0.1); @@ -290,23 +294,26 @@ $text-red: #f56c6c; .money { position: absolute; - bottom: 4px; + bottom: 1px; left: 50%; - transform: translateX(-50%); - background: rgba(0,0,0,0.6); - padding: 2px 8px; - border-radius: 10px; + transform: translateX(-50%) scale(0.5); + transform-origin: center bottom; + background: rgba(0,0,0,0.85); + padding: 2px 4px; + border-radius: 4px; color: #ffd700; - font-size: 12px; + font-size: 9px; white-space: nowrap; display: flex; align-items: center; - gap: 2px; - z-index: 5; + gap: 1px; + z-index: 100; + pointer-events: none; .coin-icon { - width: 10px; - height: 10px; + width: 6px; + height: 6px; + flex-shrink: 0; border-radius: 50%; background: #ffd700; border: 1px solid #b8860b; diff --git a/src/components/PlayWay.vue b/src/components/PlayWay.vue index 9fc886d9..a114f343 100644 --- a/src/components/PlayWay.vue +++ b/src/components/PlayWay.vue @@ -31,15 +31,23 @@ {{ tableData.number_tab_number || '0-0' }} - +