feature:角色面板新增词条统计

This commit is contained in:
UCPr 2025-03-29 02:00:05 +08:00
parent 6081513de5
commit b51cf93758
8 changed files with 267 additions and 78 deletions

View file

@ -478,34 +478,112 @@
}
}
.equip-score {
.equip-stats {
display: flex;
justify-content: center;
font-size: 1.2em;
align-items: center;
gap: 0.2em;
.comment-box {
font-size: 1.2em;
width: 2em;
padding: 0 1.8em;
height: 6em;
.equip-score {
border: #707070 solid;
border-width: 0.2em 0 0.2em 0.2em;
border-radius: 0.6em 0 0 0.6em;
display: flex;
justify-content: center;
font-size: 1em;
align-items: center;
aspect-ratio: 1;
border-radius: 50%;
background-color: rgba(32, 32, 32, 0.4);
box-shadow: 0 0 1em rgba(0, 0, 0, 0.4);
border: 0.2em solid rgb(216, 216, 216);
position: relative;
z-index: 1;
width: 30%;
.comment-box {
font-size: 1.2em;
width: 2em;
display: flex;
justify-content: center;
align-items: center;
aspect-ratio: 1;
border-radius: 50%;
background-color: rgba(32, 32, 32, 0.4);
box-shadow: 0 0 1em rgba(0, 0, 0, 0.4);
border: 0.2em solid rgb(216, 216, 216);
position: relative;
z-index: 1;
}
.value {
border: 0.1em solid rgba(155, 155, 155);
border-left: none;
padding: 0.1em 1em 0.1em 1em;
margin-left: -0.6em;
border-radius: 0 1em 1em 0;
.subt {
font-size: 0.8em;
}
}
}
.value {
border: 0.1em solid rgba(155, 155, 155);
border-left: none;
padding: 0.1em 1em 0.1em 1em;
margin-left: -0.6em;
border-radius: 0 1em 1em 0;
.subt {
font-size: 0.8em;
.property-stats {
width: 70%;
height: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
font-size: 0.8em;
align-items: center;
border: #707070 solid;
border-width: 0.2em;
border-radius: 0 0.6em 0.6em 0;
overflow: hidden;
.stat-item {
width: 33.33%;
height: 33.33%;
padding: 0 0.2em;
position: relative;
display: flex;
align-items: center;
white-space: nowrap;
color: #eee;
border: #707070 0.1em solid;
&:nth-child(7) {
border-radius: 0 0.4em 0 0;
}
&:nth-child(9) {
border-radius: 0 0 0.4em 0;
}
&.great {
color: rgb(249, 189, 64);
}
&.good {
color: rgb(238, 207, 139);
}
&.useless {
color: #999999;
}
span.title {
padding-left: 0.1em;
text-align: left;
width: 48%;
span.count {
display: inline-block;
text-align: center;
background-color: black;
width: 1.6em;
height: 1.6em;
border: #696969 0.15em solid;
border-radius: 0.4em;
}
}
span.value {
padding-right: 0.2em;
width: 52%;
overflow: hidden;
text-align: right;
}
}
}
}