Files
2026-09-05 18:29:50 +08:00

103 lines
1.4 KiB
CSS

.panel {
padding: 22px;
}
/* ===== 头部 ===== */
.header {
display: flex;
justify-content: space-between;
}
.role-name {
font-size: 44px;
font-weight: bold;
}
.sub-info {
margin-top: 6px;
font-size: 25px;
}
/* ===== 头像 + 核心数据 ===== */
.stats-wrap {
display: flex;
gap: 24px;
margin: 26px 0;
align-items: stretch;
}
/* 头像区域 */
.avatar-box {
width: 280px;
height: 360px;
background: #e9ebf1;
border-radius: 16px;
overflow: hidden;
flex-shrink: 0;
}
.avatar-box img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 右侧数据 */
.stats {
flex: 1;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 14px;
}
/* 单个数据块 */
.stat-box {
padding: 20px;
text-align: center;
}
.stat-title {
font-size: 30px;
color: var(--jx3-text-muted);
}
.stat-value {
font-size: 40px;
margin-top: 8px;
font-weight: bold;
}
.mmr {
color: #f5a623;
}
.win,
.mmr-up {
color: #2fbf71;
font-weight: bold;
}
.lose,
.mmr-down {
color: #e65050;
font-weight: bold;
}
.data-table tr.match-win > td {
color: var(--jx3-green);
}
.data-table tr.match-lose > td {
color: var(--jx3-red);
}
.mvp {
color: #f5a623;
font-weight: bold;
}
.time-col {
font-size: 18px;
font-variant-numeric: tabular-nums;
}