68 lines
1.4 KiB
CSS
68 lines
1.4 KiB
CSS
/* ===== 顶部信息 ===== */
|
|
.info-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: white;
|
|
padding: 16px 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.time {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--jx3-text-secondary);
|
|
}
|
|
|
|
.boss-final {
|
|
font-size: 22px;
|
|
font-weight: 800;
|
|
color: #d63031;
|
|
}
|
|
|
|
/* ===== 网格 ===== */
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(10, 1fr);
|
|
gap: 10px;
|
|
}
|
|
|
|
.cell {
|
|
background: white;
|
|
border-radius: 10px;
|
|
padding: 12px;
|
|
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
|
|
min-height: 110px;
|
|
|
|
/* 核心:全部居中 */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.index {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
color: var(--jx3-text);
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.boss {
|
|
color: #d63031;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.buff {
|
|
color: var(--jx3-blue);
|
|
font-size: 14px;
|
|
line-height: 1.5em;
|
|
word-break: break-word;
|
|
}
|