Files
smart_storage_app/uni_modules/luyj-tree/components/luyj-tree-item/luyj-tree-item.scss

83 lines
1.3 KiB
SCSS
Raw Normal View History

2025-06-30 10:21:25 +08:00
.container-list-item {
2025-07-01 16:59:10 +08:00
background-color: #fff;
border-bottom: 1rpx solid #f4f4f4;
border-radius: 20rpx;
margin: 0 30rpx 20rpx 30rpx;
.content {
display: flex;
align-items: center;
// min-height: 60rpx;
width: 100%;
padding: 30rpx 15rpx;
position: relative;
font-size: 32rpx;
// 默认文本显示内容默认的slot
.slot {
// position:absolute;
right: 64rpx;
font-size: 32rpx;
color: #5b5757;
.word {
width: 100%;
word-break: break-all;
}
}
// 默认箭头显示样式
.right {
position: absolute;
text-align: center;
width: 80rpx;
right: 30rpx;
color: #babdc3;
font-size: 32rpx;
}
}
2025-06-30 10:21:25 +08:00
}
2025-07-01 16:59:10 +08:00
2025-06-30 10:21:25 +08:00
// 复选框
2025-07-01 16:59:10 +08:00
.checkbox {
position: relative;
height: 36rpx;
margin-left: 10rpx;
margin-right: 0px;
width: 36rpx;
.txt {
font-size: 35rpx;
line-height: 36rpx;
width: 100%;
height: 100%;
display: flex;
}
}
2025-06-30 10:21:25 +08:00
.checkBorder {
2025-07-01 16:59:10 +08:00
border: 1px solid #ecdee4;
2025-06-30 10:21:25 +08:00
}
2025-07-01 16:59:10 +08:00
.text-cut {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
2025-06-30 10:21:25 +08:00
}
2025-07-01 16:59:10 +08:00
.value_box {
display: flex;
height: 100%;
.index {
color: #009458;
width: 70rpx;
text-align: center;
border-right: 1rpx solid #eeeeee;
}
.value {
padding-left: 20rpx;
}
2025-06-30 10:21:25 +08:00
}