/* ===== 顶部信息 ===== */ .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: #333; } .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: #333; margin-bottom: 4px; } .boss { color: #d63031; font-weight: 700; font-size: 16px; margin-bottom: 6px; } .buff { color: #0984e3; font-size: 14px; line-height: 1.5em; word-break: break-word; }