index.less 426 B

123456789101112131415161718192021222324
  1. /* components/authorize/index.wxss */
  2. .authcon{
  3. position: absolute;
  4. top: 50%;
  5. left: 50%;
  6. transform: translate(-50%,-50%);
  7. .authbody{
  8. .avatar-wrapper{
  9. width: 200rpx;
  10. height: 200rpx;
  11. padding: 0;
  12. >image{
  13. width: 100%;
  14. height: 100%;
  15. }
  16. }
  17. >input{
  18. background: #ffffff;
  19. margin-top: 40rpx;
  20. padding: 10rpx 20rpx;
  21. border-radius: 8rpx;
  22. }
  23. }
  24. }