|
- .tki-tree-mask {
- position: fixed;
- top: 0rpx;
- right: 0rpx;
- bottom: 0rpx;
- left: 0rpx;
- z-index: 9998;
- background-color: rgba(0, 0, 0, 0.6);
- opacity: 0;
- transition: all 0.3s ease;
- visibility: hidden;
- }
- .tki-tree-mask.show {
- visibility: visible;
- opacity: 1;
- }
- .tki-tree-cnt {
- position: fixed;
- top: 0rpx;
- right: 0rpx;
- bottom: 0rpx;
- left: 0rpx;
- z-index: 9999;
- top: 160rpx;
- transition: all 0.3s ease;
- transform: translateY(100%);
- }
- .tki-tree-cnt.show {
- transform: translateY(0);
- }
- .tki-tree-bar {
- background-color: #fff;
- height: 120rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- border-bottom-width: 1rpx !important;
- border-bottom-style: solid;
- border-bottom-color: #f5f5f5;
- font-size: 32rpx;
- color: #757575;
- line-height: 1;
- }
- .tki-tree-bar-confirm {
- color: #2388FF;
- }
- .tki-tree-view {
- position: absolute;
- top: 0rpx;
- right: 0rpx;
- bottom: 0rpx;
- left: 0rpx;
- top: 120rpx;
- background-color: #fff;
- padding-top: 20rpx;
- padding-right: 20rpx;
- padding-bottom: 20rpx;
- padding-left: 20rpx;
- }
- .tki-tree-view-sc {
- height: 100%;
- overflow: hidden;
- }
- .tki-tree-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 26rpx;
- color: #757575;
- line-height: 1;
- height: 0;
- opacity: 0;
- transition: 0.2s;
- position: relative;
- overflow: hidden;
- }
- .tki-tree-item.show {
- height: 80rpx;
- opacity: 1;
- }
- .tki-tree-item.showchild:before {
- transform: rotate(90deg);
- }
- .tki-tree-item.last:before {
- opacity: 0;
- }
- .tki-tree-icon {
- width: 26rpx;
- height: 26rpx;
- margin-right: 8rpx;
- }
- .tki-tree-label {
- flex: 1;
- display: flex;
- align-items: center;
- height: 100%;
- line-height: 1.2;
- }
- .tki-tree-check {
- width: 40px;
- height: 40px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tki-tree-check-yes,
- .tki-tree-check-no {
- width: 18px;
- height: 18px;
- border-top-left-radius: 20%;
- border-top-right-radius: 20%;
- border-bottom-right-radius: 20%;
- border-bottom-left-radius: 20%;
- border-top-width: 1px;
- border-left-width: 1px;
- border-bottom-width: 1px;
- border-right-width: 1px;
- border-style: solid;
- border-color: #2388FF;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- }
- .tki-tree-check-yes-b {
- width: 18px;
- height: 18px;
- border-top-left-radius: 20%;
- border-top-right-radius: 20%;
- border-bottom-right-radius: 20%;
- border-bottom-left-radius: 20%;
- background-color: #2388FF;
- }
- .tki-tree-check .radio {
- border-top-left-radius: 50%;
- border-top-right-radius: 50%;
- border-bottom-right-radius: 50%;
- border-bottom-left-radius: 50%;
- }
- .tki-tree-check .radio .tki-tree-check-yes-b {
- border-top-left-radius: 50%;
- border-top-right-radius: 50%;
- border-bottom-right-radius: 50%;
- border-bottom-left-radius: 50%;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .hover-c {
- opacity: 0.6;
- }
|