2026-07-17 11:54:43 +08:00

89 lines
1.6 KiB
CSS

.host-profile .fami-profile__copy {
gap: 4px;
width: min(100%, 210px);
}
.host-balance-card {
top: 285px;
}
.host-date-strip {
top: 397px;
}
.host-details {
position: absolute;
top: 433px;
right: 12px;
left: 12px;
height: 272px;
padding: 12px;
}
.host-details h2 {
height: 20px;
margin: 0;
color: var(--fami-text);
font-size: 14px;
font-weight: 600;
line-height: 20px;
text-align: center;
}
.host-metric-grid {
position: absolute;
top: 44px;
left: 12px;
display: grid;
grid-template-columns: repeat(3, 101px);
grid-auto-rows: 64px;
gap: 12px;
}
.host-metric {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 6px;
width: 101px;
height: 64px;
border-radius: 8px;
background: #f5f5f5;
text-align: center;
}
.host-metric:nth-child(7),
.host-metric:nth-child(8) {
transform: translateX(56.5px);
}
.host-metric strong {
overflow: hidden;
max-width: 90px;
background: linear-gradient(160.758deg, #21ecd8 1.97%, #15b2ab 100%);
color: transparent;
font-size: 14px;
font-weight: 600;
line-height: 20px;
text-overflow: ellipsis;
white-space: nowrap;
-webkit-background-clip: text;
background-clip: text;
}
.host-metric span {
max-width: 98px;
color: #7e7e7e;
font-size: 10px;
font-weight: 500;
line-height: 14px;
letter-spacing: -0.35px;
white-space: nowrap;
}
[dir='rtl'] .host-metric:nth-child(7),
[dir='rtl'] .host-metric:nth-child(8) {
transform: translateX(-56.5px);
}