userinfo.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/userinfo/userinfo.wxss */
  2. page {
  3. background: #F0F1F2;
  4. }
  5. .header {
  6. width: 750rpx;
  7. height: 144rpx;
  8. font-size: 34rpx;
  9. font-family: PingFangSC-Regular, PingFang SC;
  10. font-weight: 400;
  11. color: rgba(0, 0, 0, 0.5);
  12. background: #FFFFFF;
  13. padding: 24rpx 40rpx;
  14. box-sizing: border-box;
  15. display: flex;
  16. align-items: center;
  17. justify-content: space-between;
  18. margin-bottom: 1rpx;
  19. }
  20. .avatar {
  21. width: 96rpx;
  22. height: 96rpx;
  23. border-radius: 8rpx;
  24. }
  25. .header-text {
  26. display: flex;
  27. align-items: center;
  28. }
  29. .arrow {
  30. width: 14rpx;
  31. height: 26rpx;
  32. margin-left: 21rpx;
  33. }
  34. .cell {
  35. width: 750rpx;
  36. height: 112rpx;
  37. background: #FFFFFF;
  38. font-size: 34rpx;
  39. font-family: PingFangSC-Regular, PingFang SC;
  40. font-weight: 400;
  41. padding: 32rpx 40rpx;
  42. box-sizing: border-box;
  43. display: flex;
  44. align-items: center;
  45. justify-content: space-between;
  46. margin-bottom: 1rpx;
  47. }
  48. .left {
  49. color: rgba(0, 0, 0, 0.85);
  50. }
  51. .right {
  52. color: rgba(0, 0, 0, 0.65);
  53. display: flex;
  54. align-items: center;
  55. justify-content: flex-end;
  56. }
  57. /* .hint {
  58. padding: 15rpx 30rpx;
  59. font-size: 30rpx;
  60. color: #cdcfd3;
  61. margin-bottom: 15rpx;
  62. } */