Compare commits
16 Commits
0fdf92e924
...
w2
| Author | SHA1 | Date | |
|---|---|---|---|
| bc62fa197b | |||
| 5ed3d67537 | |||
| b28275bd14 | |||
|
|
d9b066e880 | ||
| f9400a76ca | |||
| 9ed6935707 | |||
| 7fb210599f | |||
| 2eea1fb213 | |||
| 6cbcce505a | |||
| e33f227aa0 | |||
| d9e88f757f | |||
| b6f20fd76d | |||
| 7e90289fdd | |||
| d5a74e3ec9 | |||
| 0dc7d32710 | |||
| 156ce493f0 |
@@ -25,7 +25,7 @@
|
|||||||
<!-- 页脚 -->
|
<!-- 页脚 -->
|
||||||
<footer class="game-footer">
|
<footer class="game-footer">
|
||||||
<div class="footer-content">
|
<div class="footer-content">
|
||||||
<p>© 2025-2026 聚上集团 | 云上企. 所有权利保留.</p>
|
<p>© 2025-2026 聚上集团 | 云上企 版权所有.</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
<div class="game-subtitle total-score-total-title">
|
<div class="game-subtitle total-score-total-title">
|
||||||
<img src="/completed_performance.png"
|
<img src="/completed_performance.png"
|
||||||
alt="总战绩"
|
alt="总战绩"
|
||||||
style="width: 600px; display: block; margin: 0 auto; height: auto;"
|
style="width: 880px; display: block; margin: 0 auto; height: auto;"
|
||||||
class="total-score-total-image">
|
class="total-score-total-image">
|
||||||
</div>
|
</div>
|
||||||
<div class="total-score-content">
|
<div class="total-score-content">
|
||||||
@@ -1409,7 +1409,7 @@ onUnmounted(() => {
|
|||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
|
|
||||||
.total-score-total-image {
|
.total-score-total-image {
|
||||||
width: 280px !important; /* 调整总战绩图片大小,覆盖内联样式 */
|
width: 340px !important; /* 调整总战绩图片大小,覆盖内联样式 */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 移动端总战绩金额字体调小 */
|
/* 移动端总战绩金额字体调小 */
|
||||||
@@ -1923,6 +1923,28 @@ onUnmounted(() => {
|
|||||||
position: relative;
|
position: relative;
|
||||||
margin-top: 0.8rem;
|
margin-top: 0.8rem;
|
||||||
max-height: 420px;
|
max-height: 420px;
|
||||||
|
// 只对左侧战区的.rank-table生效(通过父容器限定)
|
||||||
|
.team-rankings-container & {
|
||||||
|
-ms-overflow-style: none; /* IE/Edge 隐藏 */
|
||||||
|
scrollbar-width: none; /* Firefox 隐藏 */
|
||||||
|
}
|
||||||
|
// Chrome/Safari 隐藏左侧滚动条(伪元素必须单独写)
|
||||||
|
.team-rankings-container &::-webkit-scrollbar {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========== 新增:右侧英雄排名滚动条保留原样 ==========
|
||||||
|
.individual-rankings-container & {
|
||||||
|
-ms-overflow-style: auto; /* 恢复IE/Edge默认 */
|
||||||
|
scrollbar-width: auto; /* 恢复Firefox默认 */
|
||||||
|
}
|
||||||
|
// Chrome/Safari 恢复右侧滚动条
|
||||||
|
.individual-rankings-container &::-webkit-scrollbar {
|
||||||
|
display: block !important;
|
||||||
|
width: 6px !important; // 恢复默认滚动条宽度
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-header {
|
.table-header {
|
||||||
@@ -2067,6 +2089,7 @@ onUnmounted(() => {
|
|||||||
gap: 15px;
|
gap: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 移除空的total-score-content规则集以避免SCSS警告 */
|
||||||
|
|
||||||
|
|
||||||
.total-score-item {
|
.total-score-item {
|
||||||
@@ -2078,7 +2101,7 @@ onUnmounted(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.score-value {
|
.score-value {
|
||||||
font-size: calc(var(--individual-champion-font-size, 5rem) * 2);
|
font-size: calc(var(--individual-champion-font-size, 6rem) * 2);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #fff2c4;
|
color: #fff2c4;
|
||||||
text-shadow: 0 0 10px rgba(0, 0, 0, .8), 0 0 20px rgb(16 16 16 / 30%), 1px 1px 2px rgba(0, 0, 0, .8);
|
text-shadow: 0 0 10px rgba(0, 0, 0, .8), 0 0 20px rgb(16 16 16 / 30%), 1px 1px 2px rgba(0, 0, 0, .8);
|
||||||
@@ -2606,4 +2629,12 @@ onUnmounted(() => {
|
|||||||
transition: transform 0.2s ease;
|
transition: transform 0.2s ease;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.team-rankings-container .rank-table {
|
||||||
|
-ms-overflow-style: none !important;
|
||||||
|
scrollbar-width: none !important;
|
||||||
|
}
|
||||||
|
.team-rankings-container .rank-table::-webkit-scrollbar {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user