.description { margin-bottom: 24px; color: #7a7f8c; font-size: 15px; } .legend { display: flex; justify-content: center; align-items: center; gap: 24px; margin-bottom: 20px; font-size: 14px; color: var(--jx3-text-secondary); } .legend-item { display: flex; align-items: center; gap: 7px; } .legend-color { width: 15px; height: 15px; border-radius: 4px; } .legend-color.finished { background: #60788f; } .legend-color.unfinished { background: var(--jx3-green); }table { table-layout: fixed; margin-top: 10px; text-align: left; }th, td { vertical-align: middle; } th:first-child, td:first-child { width: 250px; } .map-info { text-align: center; } .map-name { color: var(--jx3-text); font-size: 18px; font-weight: 700; line-height: 1.5; } .map-progress { margin-top: 7px; color: var(--jx3-text-muted); font-size: 13px; font-weight: 500; } .boss-list { display: flex; flex-wrap: wrap; gap: 10px; } .boss-item { position: relative; min-width: 145px; flex: 1 1 145px; max-width: 210px; min-height: 64px; padding: 11px 13px; border-radius: 9px; transition: transform 0.2s ease, box-shadow 0.2s ease; } .boss-item:hover { transform: translateY(-2px); } /* * finished 为 true: * 奖励已经获取,显示灰色 */ .boss-item.finished { color: #d5e0e9; background: #24384b; border: 1px solid #60788f; } .boss-item.finished:hover { box-shadow: 0 4px 12px rgba(75, 85, 99, 0.15); } /* * finished 为 false: * 奖励尚未获取,显示绿色 */ .boss-item.unfinished { color: #c8f3dc; background: #183f34; border: 1px solid #438d68; } .boss-item.unfinished:hover { box-shadow: 0 4px 12px rgba(45, 189, 120, 0.25); } .boss-index { position: absolute; top: 6px; right: 8px; font-size: 11px; font-weight: 700; opacity: 0.65; } .boss-name { padding-right: 18px; overflow: hidden; font-size: 15px; font-weight: 700; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; } .boss-status { display: flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 12px; font-weight: 500; } .status-icon { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; font-size: 11px; font-weight: 800; } .boss-item.finished .status-icon { color: #e7eef4; background: rgba(192, 211, 226, 0.16); } .boss-item.unfinished .status-icon { color: #d7f8e6; background: rgba(98, 188, 146, 0.18); } .empty-data { padding: 50px 20px; color: var(--jx3-text-muted); text-align: center; background: rgba(13, 41, 66, 0.82); border: 1px solid var(--jx3-border-faint); border-radius: 12px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }