index.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .memberManage {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. padding: 32rpx;
  6. padding-bottom: 50rpx;
  7. box-sizing: border-box;
  8. .membere-title{
  9. margin-bottom: 16rpx;
  10. font-size: 32rpx;
  11. color: rgba(0, 0, 0, 0.9);
  12. font-weight: 600;
  13. }
  14. .membere-list{
  15. width: 100%;
  16. @include flex(center,column,32rpx);
  17. .member-item{
  18. width: 100%;
  19. height: 152rpx;
  20. padding: 30rpx 32rpx 0rpx 32rpx;
  21. box-sizing: border-box;
  22. border-radius: 16rpx;
  23. @include flex(space-between,column,null);
  24. background-color: #FFFFFF;
  25. .item-top{
  26. width: 100%;
  27. @include flex(flex-start,null,32rpx);
  28. .img-box{
  29. width: 88rpx;
  30. height: 88rpx;
  31. image{
  32. width: 100%;
  33. height: 100%;
  34. display: block;
  35. border-radius: 50%
  36. }
  37. }
  38. .text-box{
  39. @include flex(space-between,column,8rpx);
  40. align-items: flex-start;
  41. .name{
  42. @include flex(center,null,16rpx);
  43. view{
  44. &:nth-of-type(1){
  45. color: rgba(0, 0, 0, 0.9);
  46. font-weight: 600;
  47. font-size: 28rpx;
  48. }
  49. &:nth-of-type(2){
  50. color: #7F7F7F;
  51. background: rgba(192, 192, 192, 0.3);
  52. border-radius: 4rpx;
  53. font-size: 24rpx;
  54. padding: 0 16rpx;
  55. }
  56. &.tuan{
  57. background: rgba(255, 194, 119, 0.3);
  58. color: #D78100;
  59. }
  60. &.hehuo{
  61. background: rgba(166, 215, 255, 0.3);
  62. color: #1E7AEA;
  63. }
  64. }
  65. }
  66. .phone{
  67. color: rgba(0, 0, 0, 0.4);
  68. font-size: 24rpx;
  69. }
  70. }
  71. }
  72. .item-bottom{
  73. width: 100%;
  74. height: 96rpx;
  75. border-top: 2rpx solid #E7E7E7;
  76. @include flex(center,null,172rpx);
  77. display: none;
  78. .bottom-contact{
  79. @include flex(center,null,16rpx);
  80. image{
  81. width: 48rpx;
  82. height: 48rpx;
  83. display: block;
  84. border-radius: 50%;
  85. }
  86. text{
  87. font-size: 24rpx;
  88. color: #3D3D3D;
  89. font-size: 24rpx;
  90. }
  91. }
  92. }
  93. }
  94. }
  95. .empty {
  96. margin-top: 96rpx;
  97. width: 100%;
  98. @include flex(flex-start, column, 32rpx);
  99. image {
  100. width: 320rpx;
  101. height: 320rpx;
  102. display: block;
  103. }
  104. text {
  105. font-weight: 600;
  106. font-size: 28rpx;
  107. color: rgba(0, 0, 0, 0.4);
  108. }
  109. }
  110. }