123456789101112131415161718 |
- /* pages/components/auth/auth.wxss */
- .auth_container {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 9999;
- padding-top: 40rpx;
- box-sizing: border-box;
- background: #fff;
- }
- .auth_bg {
- display: block;
- width: 523rpx;
- height: 300rpx;
- margin: auto;
- }
|