index.wxss 1.9 KB

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