1234567891011121314151617181920212223242526272829303132333435 |
- .lable-select-box {
- width: 100%;
- height: 80rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid $border-color;
- padding: 0 $pages-padding;
-
- color: #000;
- font-weight: bold;
- .lable-select {
- display: flex;
- align-items: stretch;
- }
- .lable-title-btn {
- color: $Theme-Color;
- }
- .lable-title-icon {
- font-size: 34rpx;
- color: #000;
- font-weight: normal;
- }
- }
- .empty-content {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|