2023-02-12 19:42:12 +08:00
|
|
|
/* components/loading/pageloading.wxss */
|
|
|
|
.page-loading-box {
|
2023-02-18 21:02:06 +08:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
/* background: rgba(255, 255, 255, 1); */
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
z-index: 99;
|
2023-02-12 19:42:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-loading-box image {
|
2023-02-18 21:02:06 +08:00
|
|
|
width: 128rpx;
|
|
|
|
height: 128rpx;
|
2023-02-12 19:42:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-loading-box .text {
|
2023-02-18 21:02:06 +08:00
|
|
|
margin-top: 20rpx;
|
|
|
|
font-size: 28rpx;
|
2023-02-12 19:42:12 +08:00
|
|
|
}
|