mine.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* pages/user/mine/mine.wxss */
  2. .mine-container{
  3. width: 750rpx;
  4. height: 1280rpx;
  5. background: #F0F1F5;
  6. position: relative;
  7. }
  8. .mine-border-radius{
  9. width: 750rpx;
  10. height: 190rpx;
  11. background: #61CA54;
  12. }
  13. .caret-left{
  14. position: absolute;
  15. left: 0;
  16. top: 190rpx;
  17. width: 0;
  18. height: 0;
  19. border: 17rpx solid transparent;
  20. border-top-color: #61CA54;
  21. }
  22. .caret-right{
  23. position: absolute;
  24. right: 0;
  25. top: 190rpx;
  26. width: 0;
  27. height: 0;
  28. border: 17rpx solid transparent;
  29. border-top-color: #61CA54;
  30. }
  31. .mine-top{
  32. position: absolute;
  33. top: 88rpx;
  34. left: 17rpx;
  35. width: 716rpx;
  36. height: 344rpx;
  37. border-radius: 20rpx;
  38. background: #FFFFFF;
  39. }
  40. .mine-circle{
  41. width: 152rpx;
  42. height: 76rpx;
  43. background-color: #61CA54;
  44. border-radius:0 0 76rpx 76rpx; /* 左上、右上、右下、左下 */
  45. margin: 0 auto;
  46. }
  47. .avatar-box{
  48. position: absolute;
  49. left: 290rpx;
  50. bottom: 274rpx;
  51. width: 138rpx;
  52. height: 138rpx;
  53. border-radius: 50%;
  54. }
  55. .avatar-image{
  56. width: 100%;
  57. height: 100%;
  58. border-radius: 50%;
  59. }
  60. .edit-detail{
  61. position: absolute;
  62. top: 10rpx;
  63. left: 430rpx;
  64. width: 230rpx;
  65. height: 50rpx;
  66. display: flex;
  67. align-items: flex-end;
  68. }
  69. .edit-box{
  70. margin-left: 10rpx;
  71. width: 46rpx;
  72. height: 50rpx;
  73. }
  74. .edit-image{
  75. width: 100%;
  76. height: 100%;
  77. }
  78. .edit-text{
  79. font-size: 24rpx;
  80. color: #5E5E5E;
  81. margin-left: 8rpx;
  82. }
  83. .nick-name{
  84. width: 716rpx;
  85. text-align: center;
  86. line-height: 60rpx;
  87. }
  88. .nick-name>.text{
  89. color: #000000;
  90. font-size: 32rpx;
  91. font-weight: bold;
  92. }
  93. .nick-address{
  94. width: 716rpx;
  95. line-height: 40rpx;
  96. text-align: center;
  97. font-size: 28rpx;
  98. color: #4C4C4C;
  99. }