2025-12-22 16:41:24 +08:00
|
|
|
|
.bim-description {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
width: 100%;
|
2026-01-22 11:29:51 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: var(--bim-text-primary);
|
2025-12-22 16:41:24 +08:00
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bim-description-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
/* 严格移除 item 的 padding,完全由 label/value padding 控制 */
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 边框模式 */
|
|
|
|
|
|
.bim-description.is-bordered {
|
|
|
|
|
|
border-bottom: none; /* 最后一项会补齐 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bim-description.is-bordered .bim-description-item {
|
2026-01-22 11:29:51 +08:00
|
|
|
|
border-bottom: 1px solid var(--bim-border-subtle);
|
2025-12-22 16:41:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bim-description-label {
|
2026-01-22 11:29:51 +08:00
|
|
|
|
color: var(--bim-text-secondary);
|
2025-12-22 16:41:24 +08:00
|
|
|
|
flex-shrink: 0;
|
2026-01-22 11:29:51 +08:00
|
|
|
|
padding: 4px;
|
2025-12-22 16:41:24 +08:00
|
|
|
|
display: flex;
|
2026-01-22 11:29:51 +08:00
|
|
|
|
align-items: center;
|
2025-12-22 16:41:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bim-description.is-bordered .bim-description-label {
|
2026-01-22 11:29:51 +08:00
|
|
|
|
border-right: 1px solid var(--bim-border-subtle);
|
2025-12-22 16:41:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bim-description-value {
|
2026-01-22 11:29:51 +08:00
|
|
|
|
color: var(--bim-text-primary);
|
2025-12-22 16:41:24 +08:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
word-break: break-all;
|
2026-01-22 11:29:51 +08:00
|
|
|
|
padding: 4px;
|
2025-12-22 16:41:24 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|