index.less 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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: #4F9AF7;
  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: 40rpx;
  22. height: 40rpx;
  23. position: absolute;
  24. right: -20rpx;
  25. }
  26. }
  27. }
  28. .selectbox{
  29. width: 100%;
  30. height: 88rpx;
  31. display: flex;
  32. align-items: center;
  33. padding-left: 16rpx;
  34. padding-right: 32rpx;
  35. padding-top: 20rpx;
  36. padding-bottom: 20rpx;
  37. .fuhao{
  38. color:#E22525ed;
  39. margin-right: 2rpx;
  40. }
  41. .selecttext{
  42. width: 174rpx;
  43. height: 48rpx;
  44. font-size: 28rpx;
  45. color: #646566;
  46. }
  47. .selectname{
  48. font-size: 28rpx;
  49. margin-left: 22rpx;
  50. }
  51. }
  52. .submitbox{
  53. width: 100%;
  54. height: 80rpx;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. margin-top: 40rpx;
  59. .submit{
  60. width: 200rpx;
  61. height: 80rpx;
  62. font-size: 30rpx;
  63. color: white;
  64. background-color: #4F9AF7;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. border-radius: 40rpx;
  69. }
  70. }
  71. }