1234567891011121314151617181920212223 |
- /* components/nomore/nomore.wxss */
- .empty {
- height: 85rpx;
- font-size: 26rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #999999;
- }
- .empty::after {
- content: '';
- width: 74rpx;
- margin-left: 14rpx;
- background: #D8D8D8;
- height: 2rpx;
- }
- .empty::before {
- content: '';
- width: 74rpx;
- margin-right: 14rpx;
- background: #D8D8D8;
- height: 2rpx;
- }
|