| 123456789101112131415161718192021222324252627282930 |
- /* component/empty/empty.wxss */
- .empty {
- height: 70%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .empty image {
- height: 260rpx;
- width: 260rpx;
- }
- .empty-text {
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(0, 0, 0, 0.45);
- margin-top: 100rpx;
- }
- .empty-message {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.25);
- margin-top: 10rpx;
- }
|