Compare commits
1 Commits
tmp1
...
ecb368bbb2
| Author | SHA1 | Date | |
|---|---|---|---|
| ecb368bbb2 |
@@ -1136,11 +1136,43 @@ onUnmounted(() => {
|
|||||||
transform: translateY(0px) rotate(0deg);
|
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 {
|
.avatar-image-champion {
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
border-radius: 50%;
|
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 {
|
.champion-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -1778,6 +1810,8 @@ onUnmounted(() => {
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-top: 0.8rem;
|
margin-top: 0.8rem;
|
||||||
|
max-height: 480px;
|
||||||
|
min-height: 480px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-header {
|
.table-header {
|
||||||
@@ -1945,6 +1979,7 @@ onUnmounted(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.total-score-total-value {
|
.total-score-total-value {
|
||||||
|
|
||||||
margin-top: -40px;
|
margin-top: -40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1968,7 +2003,7 @@ onUnmounted(() => {
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 100px;
|
||||||
gap: 30px;
|
gap: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2450,4 +2485,23 @@ onUnmounted(() => {
|
|||||||
transition: transform 0.2s ease;
|
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>
|
</style>
|
||||||
Reference in New Issue
Block a user