index.less 627 B

123456789101112131415161718192021222324252627282930313233343536373839
  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: 80rpx;
  10. height: 80rpx;
  11. padding: 0;
  12. >image {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. }
  17. >input {
  18. background: #ffffff;
  19. margin-top: 20rpx;
  20. padding: 6rpx 20rpx;
  21. border-radius: 8rpx;
  22. }
  23. .btn-area {
  24. display: flex;
  25. width: 100%;
  26. justify-content: space-around;
  27. text-align: center;
  28. margin-top: 20rpx;
  29. >image {
  30. width: 46%;
  31. }
  32. }
  33. }
  34. }