index.scss 443 B

12345678910111213141516171819202122232425262728
  1. .loadingP{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. // background:#eee;
  7. background: white;
  8. height: 100vh;
  9. width: 100vw;
  10. position: absolute;
  11. z-index: 999999999999999999;
  12. .loadingPic{
  13. width: 150rpx;
  14. height: 150rpx;
  15. // transform: translateY(-50%);
  16. margin-top: -400rpx;
  17. }
  18. .loadingTxt{
  19. color: #999;
  20. font-size: 34rpx;
  21. margin-top: 20rpx;
  22. }
  23. }