美甲小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
529 B

  1. /* cmponent/loading/loading.wxss */
  2. .masked-box {
  3. width: 100vw;
  4. height: 100vh;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. bottom: 0;
  9. right: 0;
  10. }
  11. .masked-loading {
  12. width: 220rpx;
  13. height: 220rpx;
  14. position: absolute;
  15. left: 0;
  16. right: 0;
  17. top: 0%;
  18. bottom: 0;
  19. margin: auto auto;
  20. background:rgba(0, 0, 0, 0.2);
  21. border-radius: 10rpx;
  22. text-align: center;
  23. color: rgb(238, 238, 238);
  24. font-size: 28rpx;
  25. }
  26. .masked-loading image {
  27. width: 80rpx;
  28. height: 80rpx;
  29. margin:40rpx auto 10rpx;
  30. display: block;
  31. }