| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* pages/fuli/index.wxss */
- page {
- background-color: #f5f5f5;
- }
- .fuli {
- margin-top: 107rpx;
- }
- .loading_no {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 60rpx;
- font-size: 22rpx;
- color: #696969;
- background: transparent;
- }
- /* 空白页 */
- .no_data {
- width: 100%;
- padding-top: 35%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .white {
- width: 208rpx;
- height: 320rpx;
- }
- .no_text {
- color: #666;
- font-size: 34rpx;
- margin-top: 58rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .no_text .text {
- color: #999;
- font-size: 28rpx;
- margin-top: 16rpx;
- }
|