index.wxss 1.8 KB

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