index.less 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. position: relative;
  13. >image {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .avatar-wrapperTxt{
  18. color: #444b51;
  19. pointer-events: none;
  20. position: absolute;
  21. top: 50%;
  22. transform: translateY(-50%);
  23. width: 100%;
  24. text-align: center;
  25. font-size: 12px;
  26. }
  27. }
  28. >input {
  29. background: #ffffff;
  30. margin-top: 20rpx;
  31. padding: 6rpx 20rpx;
  32. border-radius: 8rpx;
  33. }
  34. .btn-area {
  35. display: flex;
  36. width: 100%;
  37. justify-content: space-around;
  38. text-align: center;
  39. margin-top: 20rpx;
  40. >image {
  41. width: 46%;
  42. }
  43. }
  44. }
  45. }