83 lines
1.3 KiB
SCSS
83 lines
1.3 KiB
SCSS
.container-list-item {
|
||
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;
|
||
}
|
||
|
||
}
|
||
}
|
||
|
||
// 复选框
|
||
.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;
|
||
}
|
||
}
|
||
|
||
.checkBorder {
|
||
border: 1px solid #ecdee4;
|
||
}
|
||
|
||
.text-cut {
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.value_box {
|
||
display: flex;
|
||
height: 100%;
|
||
|
||
.index {
|
||
color: #009458;
|
||
width: 70rpx;
|
||
text-align: center;
|
||
border-right: 1rpx solid #eeeeee;
|
||
}
|
||
|
||
.value {
|
||
padding-left: 20rpx;
|
||
}
|
||
} |