index.wxss 850 B

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