1234567891011121314151617181920 |
- /* pages/components/auth/auth.wxss */
- .auth_container {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 999;
- padding-top: 100rpx;
- box-sizing: border-box;
- background: #fff;
- }
- .auth_text {
- width: 100%;
- margin: auto;
- font-size: 28rpx;
- color: #333;
- line-height: 42rpx;
- text-align: center;
- }
|