index.wxss 1.8 KB

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