index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .container {
  2. padding: 30rpx;
  3. }
  4. .container .top-tab {
  5. position: fixed;
  6. top: 0;
  7. left: 0rpx;
  8. width: 100%;
  9. height: 80rpx;
  10. background: #ededed;
  11. box-sizing: border-box;
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. z-index: 999;
  16. padding: 0 48rpx;
  17. }
  18. .container .top-tab .tabbar {
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. width: 100rpx;
  23. height: 58rpx;
  24. line-height: 60rpx;
  25. font-size: 40rpx;
  26. opacity: 0.7;
  27. font-weight: 800;
  28. border-bottom: none;
  29. color: #333;
  30. }
  31. .container .top-tab .select {
  32. color: #333;
  33. font-size: 40rpx;
  34. border-bottom: 6rpx solid #14c962;
  35. opacity: 1;
  36. }
  37. .container .userBox {
  38. margin-top: 85rpx;
  39. display: flex;
  40. align-items: center;
  41. justify-content: space-between;
  42. background-color: white;
  43. padding: 30rpx 12rpx;
  44. border-radius: 20rpx;
  45. }
  46. .container .userBox .avatar {
  47. width: 152rpx;
  48. height: 152rpx;
  49. border-radius: 50%;
  50. position: relative;
  51. }
  52. .container .userBox .userRight {
  53. flex: 1;
  54. margin-left: 40rpx;
  55. }
  56. .container .userBox .userRight .uRtop {
  57. display: flex;
  58. justify-content: space-between;
  59. }
  60. .container .userBox .userRight .uRtop .uRtopleft .nickName {
  61. color: #333;
  62. font-size: 30rpx;
  63. }
  64. .container .userBox .userRight .uRtop .uRtopleft .gradeText {
  65. margin: 14rpx 0rpx 8rpx;
  66. font-size: 23rpx;
  67. color: #989A9C;
  68. }
  69. .container .userBox .userRight .uRtop .uRtopRight {
  70. display: flex;
  71. align-items: center;
  72. }
  73. .container .userBox .userRight .uRtop .uRtopRight .edit {
  74. width: 25rpx;
  75. height: 25rpx;
  76. }
  77. .container .userBox .userRight .uRtop .uRtopRight text {
  78. margin: 0px 10rpx;
  79. font-size: 24rpx;
  80. color: #666;
  81. }