12345678910111213141516171819202122232425262728 |
- .loadingP{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
-
- // background:#eee;
- background: white;
- height: 100vh;
- width: 100vw;
-
- position: absolute;
- z-index: 999999999999999999;
-
- .loadingPic{
- width: 150rpx;
- height: 150rpx;
-
- // transform: translateY(-50%);
- margin-top: -400rpx;
- }
- .loadingTxt{
- color: #999;
- font-size: 34rpx;
- margin-top: 20rpx;
- }
- }
-
|