my.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. page {
  2. background: #F3F5F9;
  3. }
  4. .user-info {
  5. width: 100%;
  6. height: 220rpx;
  7. background: white;
  8. position: relative;
  9. box-sizing: border-box;
  10. padding: 50rpx 0 50rpx 180rpx;
  11. margin-bottom: 40rpx;
  12. }
  13. .user-info-avatar {
  14. position: absolute;
  15. top: 50rpx;
  16. left: 30rpx;
  17. overflow: hidden;
  18. width: 120rpx;
  19. height: 120rpx;
  20. border-radius: 10rpx;
  21. }
  22. .user-info-devicename {
  23. height: 80rpx;
  24. font-size: 30rpx;
  25. color: var(--black);
  26. font-weight: bold;
  27. }
  28. .user-info-nickname {
  29. height: 40rpx;
  30. font-size: 24rpx;
  31. }
  32. .user-info-arrows {
  33. position: absolute;
  34. right: 30rpx;
  35. top: 130rpx;
  36. width: 16rpx;
  37. height: 30rpx;
  38. }
  39. .menu {
  40. width: 100%;
  41. height: 80rpx;
  42. padding: 10rpx 0 10rpx 100rpx;
  43. position: relative;
  44. background: white;
  45. box-sizing: border-box;
  46. border-bottom: 2rpx solid #F3F5F9;
  47. line-height: 60rpx;
  48. font-size: 26rpx;
  49. color: var(--darkGray);
  50. }
  51. .menu-icon {
  52. position: absolute;
  53. top: 20rpx;
  54. left: 30rpx;
  55. width: 40rpx;
  56. height: 40rpx;
  57. }
  58. .menu-arrows {
  59. position: absolute;
  60. right: 30rpx;
  61. top: 30rpx;
  62. width: 16rpx;
  63. height: 30rpx;
  64. }