chore:战区排名和英雄榜排名对齐,改变虎狼之师英雄榜总战绩金额大小

This commit is contained in:
2025-11-25 17:09:55 +08:00
parent d5a74e3ec9
commit ecb368bbb2

View File

@@ -1136,11 +1136,43 @@ onUnmounted(() => {
transform: translateY(0px) rotate(0deg);
}
}
.team-rankings-propagation-image {
width: 360px;
height: auto;
max-width: 100%;
}
.individual-rankings-propagation-image {
width: 360px;
height: auto;
max-width: 100%;
}
.avatar-image-champion {
object-fit: cover;
border-radius: 50%;
}
.avatar-image-champion {
object-fit: cover;
border-radius: 50%;
}
/* 新增:电脑端「已完成业绩」图片居中 */
.total-score-total-title {
display: flex;
justify-content: center; /* 水平居中 */
}
.total-score-total-image {
width: 780px; /* 电脑端图片宽度可按需调小比如160px/200px */
height: auto; /* 保持宽高比不变形 */
}
.score-value {
font-size: 10rem; /* 电脑端所有业绩数字大小 */
}
.total-score-total-value {
font-size: 10rem;
margin-top: -40px;
}
/* 冠军模块样式 */
.champion-section {
display: flex;
@@ -1778,6 +1810,8 @@ onUnmounted(() => {
overflow-y: auto;
position: relative;
margin-top: 0.8rem;
max-height: 480px;
min-height: 480px;
}
.table-header {
@@ -1945,6 +1979,7 @@ onUnmounted(() => {
}
.total-score-total-value {
margin-top: -40px;
}
@@ -1968,7 +2003,7 @@ onUnmounted(() => {
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 20px;
margin-bottom: 100px;
gap: 30px;
}
@@ -2450,4 +2485,23 @@ onUnmounted(() => {
transition: transform 0.2s ease;
}
}
/* ========== 新增的电脑端总业绩样式(放在最底部) ========== */
/* 电脑端769px以上总业绩字体样式 - 不影响移动端 */
@media (min-width: 769px) {
/* 总战绩大数字(核心修改项) */
.total-score-total-value {
font-size: 10rem !important; /* 电脑端字体大小默认10rem可按需调整 */
font-weight: 900 !important; /* 字体粗细(加粗) */
color: #ffd700 !important; /* 字体颜色(金色) */
text-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important; /* 发光效果 */
}
/* 兜底:确保所有电脑端业绩数值样式统一 */
.score-value {
font-size: 10rem !important; /* 与总战绩数值保持一致 */
font-weight: 900 !important;
color:#fff2c4 !important;
text-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
}
}
</style>