|
- /* cmponent/loading/loading.wxss */
-
- .masked-box {
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
-
- .masked-loading {
- width: 220rpx;
- height: 220rpx;
- position: absolute;
- left: 0;
- right: 0;
- top: 0%;
- bottom: 0;
- margin: auto auto;
- background:rgba(0, 0, 0, 0.2);
- border-radius: 10rpx;
- text-align: center;
- color: rgb(238, 238, 238);
- font-size: 28rpx;
- }
-
- .masked-loading image {
- width: 80rpx;
- height: 80rpx;
- margin:40rpx auto 10rpx;
- display: block;
- }
|