| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /* pages/login-success/login-success.wxss */
- page {
- height: 100%;
- }
- .container {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- /* padding: 0 47rpx; */
- box-sizing: border-box;
- }
- .hint-pic {
- width: 100%;
- /* background: #eee; */
- }
- .message {
- color: #31364c;
- font-size: 28rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-top: 55rpx;
- }
- .action {
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 25rpx;
- }
- .action image {
- height: 28rpx;
- width: 28rpx;
- margin-right: 15rpx;
- }
- .version {
- color: #888a8e;
- font-size: 28rpx;
- position: absolute;
- bottom: 65rpx;
- }
|