17 Commits

Author SHA1 Message Date
4a829b7dfc Merge pull request 'w2改动了滚动条' (#7) from w2 into server
Reviewed-on: #7
2025-11-29 03:47:46 +00:00
bc62fa197b chore:改动了滚动条 2025-11-29 11:46:08 +08:00
5ed3d67537 Merge branch 'server' of http://git.aigc-quickapp.com/WeWork/vs100 into server 2025-11-29 10:34:00 +08:00
b28275bd14 Merge pull request 'tmp-upload' (#5) from tmp-upload into server
Reviewed-on: #5
2025-11-29 02:33:52 +00:00
Zhukj
d9b066e880 Merge branch '111' into tmp-upload 2025-11-29 10:28:31 +08:00
f9400a76ca Merge branch 'server' of http://git.aigc-quickapp.com/WeWork/vs100 into server 2025-11-29 09:06:49 +08:00
9ed6935707 Merge pull request 'chore:在Desktop(touch)上鼠标可以拖动奖金' (#2) from tmp1 into server
Reviewed-on: #2
Reviewed-by: ZF Sun <admin@noreply.localhost>
2025-11-29 01:05:55 +00:00
7fb210599f chore:在Desktop(touch)上鼠标可以拖动奖金 2025-11-29 08:59:42 +08:00
2eea1fb213 chore:在Desktop(touch)上鼠标可以拖动奖金 2025-11-29 08:36:57 +08:00
6cbcce505a chore:在Desktop(touch)中鼠标可以拖动奖金 2025-11-28 13:56:30 +08:00
e33f227aa0 Merge branch 'server' of http://git.aigc-quickapp.com/WeWork/vs100 into server 2025-11-28 11:49:15 +08:00
d9e88f757f chore:在Desktop(touch)上鼠标可以拖动奖品 2025-11-28 09:45:04 +08:00
b6f20fd76d Merge branch 'server' of http://git.aigc-quickapp.com/WeWork/vs100 into server 2025-11-28 09:15:57 +08:00
7e90289fdd chore(footer): 修改footer文字 2025-11-25 14:43:54 +08:00
d5a74e3ec9 Merge branch 'server' of http://192.168.2.64:3208/WeWork/vs100 into server 2025-11-25 11:42:09 +08:00
0dc7d32710 Merge branch 'server' of http://192.168.2.64:3208/WeWork/vs100 into server 2025-11-24 15:18:26 +08:00
156ce493f0 改变了移动端王冠大小 2025-11-24 14:34:49 +08:00
2 changed files with 36 additions and 6 deletions

View File

@@ -25,7 +25,7 @@
<!-- 页脚 -->
<footer class="game-footer">
<div class="footer-content">
<p>&copy; 2025-2026 聚上集团 | 云上企. 所有权利保留.</p>
<p>&copy; 2025-2026 聚上集团 | 云上企 版权所有.</p>
</div>
</footer>
</div>

View File

@@ -49,7 +49,7 @@
<div class="game-subtitle total-score-total-title">
<img src="/completed_performance.png"
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">
</div>
<div class="total-score-content">
@@ -1409,7 +1409,7 @@ onUnmounted(() => {
@media (max-width: 768px) {
.total-score-total-image {
width: 280px !important; /* 调整总战绩图片大小,覆盖内联样式 */
width: 340px !important; /* 调整总战绩图片大小,覆盖内联样式 */
}
/* 移动端总战绩金额字体调小 */
@@ -1922,7 +1922,29 @@ onUnmounted(() => {
overflow-y: auto;
position: relative;
margin-top: 0.8rem;
max-height: 427px;
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 {
@@ -2079,7 +2101,7 @@ onUnmounted(() => {
}
.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;
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);
@@ -2101,7 +2123,7 @@ onUnmounted(() => {
/* 照片容器样式 */
.team-logo.photo-container {
overflow: hidden;
margin-top: -96px;
margin-top: -97px;
}
.individual-champion {
@@ -2607,4 +2629,12 @@ onUnmounted(() => {
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>