Tier List
-
- T0缔造环境
- T1一线成员
- T1.5比肩T1的优秀战力
- T2用来不错的中坚力量
- T3可以一用
- T4缺卡时姑且能拿来替补
- T5快逃
- T♾️独一档「神」
{{css:ul {
list-style: none;
padding: 0;
}
li {
position: relative;
display: flex;
}
.ranking-title {
width: 75px;
min-height: 75px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px 0 0 5px;
/* position: relative; */
}
.ranking-title span:nth-child(2) {
display: none;
position: absolute;
top: calc(50% + (75px));
background-color: rgba(0, 0, 0, 0.5);
border-radius: 5px;
left: 0;
}
.ranking-title:hover span:nth-child(2) {
display: flex;
}
li + li {
margin-top: 20px;
}
.tier {
background-color: rgba(243, 223, 167, 1);
flex: 1;
border-radius: 0 5px 5px 0;
gap: 20px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
padding: 20px;
}
.link {
width: 42px;
height: 42px;
border: 2px solid rgba(30, 23, 33, 1);
overflow: hidden;
border-radius: 5px;
}}}