auth.wxss 331 B

1234567891011121314151617181920
  1. /* pages/components/auth/auth.wxss */
  2. .auth_container {
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. bottom: 0;
  8. z-index: 999;
  9. padding-top: 100rpx;
  10. box-sizing: border-box;
  11. background: #fff;
  12. }
  13. .auth_text {
  14. width: 82%;
  15. margin: auto;
  16. font-size: 28rpx;
  17. color: #333;
  18. line-height: 42rpx;
  19. text-align: center;
  20. }