76 lines
1.1 KiB
Plaintext
76 lines
1.1 KiB
Plaintext
|
.tree_container {
|
||
|
width: auto;
|
||
|
box-sizing: border-box;
|
||
|
overflow: scroll;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.tree-item {
|
||
|
width: auto;
|
||
|
box-sizing: border-box;
|
||
|
overflow-x: scroll;
|
||
|
padding: 18rpx 0;
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
align-items: center;
|
||
|
border-bottom: 1rpx solid #27304f;
|
||
|
}
|
||
|
|
||
|
.block_ {
|
||
|
width: 100% !important;
|
||
|
display: contents;
|
||
|
}
|
||
|
|
||
|
.tree-item-name {
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
align-items: center;
|
||
|
flex: 8;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.tree-item-title {
|
||
|
margin-left: 12rpx;
|
||
|
color: #cdcdcd;
|
||
|
font-size: 32rpx;
|
||
|
word-break: break-all;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
width: 80%;
|
||
|
}
|
||
|
|
||
|
.tree-item-suffix{
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
.tree-item-onOff {
|
||
|
width: 40rpx;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
color: coral !important;
|
||
|
margin-right: 10rpx;
|
||
|
}
|
||
|
|
||
|
.collapse {
|
||
|
width: 36rpx;
|
||
|
height: 20rpx;
|
||
|
transform: rotate(-90deg);
|
||
|
}
|
||
|
|
||
|
.expand {
|
||
|
width: 36rpx;
|
||
|
height: 20rpx;
|
||
|
}
|
||
|
|
||
|
.check-box {
|
||
|
/* position: absolute;
|
||
|
right: 15%; */
|
||
|
height: 32rpx !important;
|
||
|
width: 32rpx !important;
|
||
|
}
|
||
|
|
||
|
.tree-item-name-select {
|
||
|
color: #0079FE;
|
||
|
}
|