You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

52 lines
936 B

.mix-tree-list{
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
padding-left: 30rpx;
}
.mix-tree-item{
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
font-size: 30rpx;
color: #333;
height: 0;
opacity: 0;
-webkit-transition: .2s;
transition: .2s;
position: relative;
}
.mix-tree-item.border{
border-bottom: 2rpx solid #eee;
}
.mix-tree-item.show{
height: 80rpx;
opacity: 1;
}
.mix-tree-icon{
width: 26rpx;
height: 26rpx;
margin-right: 8rpx;
opacity: .9;
}
.mix-tree-item.showchild:before{
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.mix-tree-item.last:before{
opacity: 0;
}
.img-round{
width: 25rpx;
height: 25rpx;
margin-right: 100rpx;
}