index.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* nova-werun/pages/my/my-profile/index.wxss */
  2. .all{
  3. width: 100vw;
  4. .avatarbox{
  5. width: 100%;
  6. height: 270rpx;
  7. background-color: #87ceeb;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. .avatar-box{
  12. width: 150rpx;
  13. height: 150rpx;
  14. position: relative;
  15. .avatar{
  16. width: 150rpx;
  17. height: 150rpx;
  18. border-radius: 50%;
  19. }
  20. .photo{
  21. width: 60rpx;
  22. height: 60rpx;
  23. position: absolute;
  24. right: -15rpx;
  25. bottom: -18rpx;
  26. }
  27. }
  28. }
  29. .submitbox{
  30. width: 100%;
  31. height: 80rpx;
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. margin-top: 40rpx;
  36. .submit{
  37. width: 200rpx;
  38. height: 80rpx;
  39. font-size: 30rpx;
  40. color: white;
  41. background-color: #87ceeb;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. border-radius: 40rpx;
  46. }
  47. }
  48. }