user.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/user/user.wxss */
  2. .body{
  3. background-color: #f1f1f1;
  4. }
  5. .topBar{
  6. width: 100%;
  7. height: 270rpx;
  8. background-color: #fff;
  9. }
  10. .userImg{
  11. width: 95%;
  12. height: 200rpx;
  13. margin: 0rpx auto;
  14. display: flex;
  15. justify-content: space-around;
  16. align-items: center;
  17. }
  18. .avatar_nickname{
  19. width: 70%;
  20. height: 100%;
  21. display: flex;
  22. justify-content: start;
  23. align-items: center;
  24. }
  25. .avatar{
  26. width: 120rpx;
  27. height: 120rpx;
  28. border-radius: 50%;
  29. }
  30. .avatarImg{
  31. width: 120rpx;
  32. height: 120rpx;
  33. border-radius: 50%;
  34. }
  35. .nickname{
  36. margin-left: 20rpx;
  37. }
  38. .qiandao{
  39. width: 90%;
  40. height: 70rpx;
  41. padding: 0rpx 30rpx;
  42. font-size: 32rpx;
  43. }
  44. .qianText{
  45. float: left;
  46. }
  47. .icon_{
  48. float: right;
  49. }
  50. .kefu{
  51. width: 160rpx;
  52. height: 50rpx;
  53. font-size: 25rpx;
  54. border-radius: 25rpx;
  55. outline: none;
  56. text-align: center;
  57. line-height: 50rpx;
  58. background-color: #f1f1f1;
  59. }
  60. /* 选项卡 */
  61. .chioce{
  62. width: 100%;
  63. height: auto;
  64. background-color: #fff;
  65. margin-top:10rpx;
  66. font-size: 32rpx;
  67. }
  68. .choiceItem{
  69. display: flex;
  70. width: 90%;
  71. height: 60rpx;
  72. padding: 20rpx 30rpx;
  73. justify-content: space-between;
  74. align-items: center;
  75. }