| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* pages/reward/index.wxss */
- page {
- background-color: #f5f5f5;
- }
- .reward {
- margin-top: 107rpx;
- }
- /* 空白页 */
- .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;
- }
|