my-users.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* pages/my-users/my-users.wxss */
  2. .user-bg {
  3. background: #e43130;
  4. padding: 1em 0 1.5em;
  5. }
  6. .user-bg-my {
  7. display: block;
  8. text-align: center;
  9. color: #f1e9e9;
  10. font-size: 24rpx;
  11. padding: 10rpx 0 20rpx;
  12. }
  13. .user-bg .text {
  14. display: block;
  15. text-align: center;
  16. font-size: 28rpx;
  17. color: #ffffff;
  18. }
  19. .user-bg .text .number {
  20. display: inline-block;
  21. font-size: 36rpx;
  22. margin: 0 20rpx;
  23. vertical-align: middle;
  24. }
  25. .title {
  26. width: 100%;
  27. }
  28. .title .subtitle {
  29. display: inline-block;
  30. width: 33.33%;
  31. text-align: center;
  32. font-size: 28rpx;
  33. line-height: 80rpx;
  34. }
  35. .lists{
  36. margin-bottom: 10rpx;
  37. }
  38. .list-item {
  39. display: flex;
  40. justify-content: space-between;
  41. align-items:center;
  42. height:100rpx;
  43. }
  44. .list-item:nth-child(2n-1) {
  45. background: #f4f4f4;
  46. }
  47. .items {
  48. display: inline-block;
  49. width: 33.33%;
  50. font-size: 28rpx;
  51. text-align: center;
  52. }
  53. .img {
  54. width: 60rpx;
  55. height: 60rpx;
  56. font-size: 0;
  57. margin: auto;
  58. }
  59. .img image {
  60. width: 100%;
  61. height: 100%;
  62. border-radius: 50rpx;
  63. }
  64. .loading, .empty {
  65. text-align: center;
  66. font-size: 26rpx;
  67. width: 100%;
  68. height: 120rpx;
  69. line-height: 120rpx;
  70. color: #999999;
  71. }