index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* 用户头部 */
  2. .user_header {
  3. width: 100%;
  4. padding: 0 16rpx;
  5. box-sizing: border-box;
  6. }
  7. .user_header_msg {
  8. display: flex;
  9. width: 100%;
  10. height: 130rpx;
  11. padding: 0 24rpx;
  12. margin-bottom: 40rpx;
  13. box-sizing: border-box;
  14. }
  15. /* 头像 */
  16. .user_headPortrait {
  17. width: 130rpx;
  18. height: 100%;
  19. border-radius: 50%;
  20. margin-right: 30rpx;
  21. }
  22. .user_headPortrait>image {
  23. width: 100%;
  24. height: 100%;
  25. border-radius: 50%;
  26. }
  27. /* 文本信息 */
  28. .user_message {
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: space-around;
  32. flex: 1;
  33. height: 100%;
  34. }
  35. .user_name {
  36. font-size: 36rpx;
  37. font-weight: 500;
  38. color: #000000;
  39. }
  40. .user_name>text {
  41. display: inline-block;
  42. height: 42rpx;
  43. line-height: 42rpx;
  44. font-size: 28rpx;
  45. color: #FFFFFF;
  46. border-radius: 15rpx;
  47. background-color: #4BBECF;
  48. margin-left: 20rpx;
  49. padding: 0 26rpx;
  50. }
  51. .user_nubmer {
  52. font-size: 32rpx;
  53. color: #000000;
  54. }
  55. /* 箭头 */
  56. .user_arrows {
  57. display: flex;
  58. align-items: center;
  59. }
  60. /* 宫格样式 */
  61. .grid_box {
  62. width: 100%;
  63. padding: 0 30rpx;
  64. box-sizing: border-box;
  65. margin-top: 5rpx;
  66. }
  67. .grid_text-class {
  68. font-family: PingFangSC-Regular, PingFang SC !important;
  69. font-size: 28rpx !important;
  70. color: #000000 !important;
  71. }
  72. /* 退出登录 */
  73. .logout {
  74. width: 240rpx;
  75. height: 88rpx;
  76. border-radius: 44rpx;
  77. box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  78. border: 2rpx solid #4BBECF;
  79. margin: 60rpx auto 0;
  80. box-sizing: border-box;
  81. }
  82. .custom-class {
  83. width: 100% !important;
  84. font-size: 32rpx !important;
  85. color: #4BBECF !important;
  86. font-family: PingFangSC-Medium, PingFang SC !important;
  87. font-weight: 500 !important;
  88. }