index.wxss 616 B

1234567891011121314151617181920212223242526272829303132
  1. /* components/authorize/index.wxss */
  2. .authcon {
  3. position: absolute;
  4. top: 50%;
  5. left: 50%;
  6. transform: translate(-50%, -50%);
  7. }
  8. .authcon .authbody .avatar-wrapper {
  9. width: 80rpx;
  10. height: 80rpx;
  11. padding: 0;
  12. }
  13. .authcon .authbody .avatar-wrapper > image {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .authcon .authbody > input {
  18. background: #ffffff;
  19. margin-top: 20rpx;
  20. padding: 6rpx 20rpx;
  21. border-radius: 8rpx;
  22. }
  23. .authcon .authbody .btn-area {
  24. display: flex;
  25. width: 100%;
  26. justify-content: space-between;
  27. text-align: center;
  28. margin-top: 20rpx;
  29. }
  30. .authcon .authbody .btn-area > image {
  31. width: 48%;
  32. }