12345678910111213141516171819202122 |
- /* components/w-empty/index.wxss */
- .w-empty {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- box-sizing: border-box;
- text-align: center;
- .w-empty__img {
- width: 440rpx;
- height: 440rpx;
- }
- .w-empty__text {
- font-size: 32rpx;
- color: #999999;
- line-height: 44rpx;
- text-align: center;
- padding-top: 20rpx;
- }
- }
|