index.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .group-item {
  2. height: 124rpx;
  3. width: 100vw;
  4. background-color: #ffffff;
  5. padding-left: 30rpx;
  6. box-sizing: border-box;
  7. .main {
  8. display: flex;
  9. width: 100%;
  10. height: 100%;
  11. border-bottom: 1px solid #ddd;
  12. padding: 20rpx 0rpx;
  13. box-sizing: border-box;
  14. .portrait {
  15. width: 80rpx;
  16. height: 80rpx;
  17. border-radius: 50%;
  18. overflow: hidden;
  19. font-size: 0;
  20. flex-shrink: 0;
  21. margin-right: 30rpx;
  22. image,
  23. .alt {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. .alt {
  28. line-height: 80rpx;
  29. text-align: center;
  30. font-size: 28rpx;
  31. font-family: PingFang SC-Regular, PingFang SC;
  32. color: #FFFFFF;
  33. background: #3874F6;
  34. }
  35. }
  36. .content {
  37. flex: 1;
  38. width: 0;
  39. .title {
  40. width: 100%;
  41. height: 42rpx;
  42. line-height: 42rpx;
  43. font-size: 30rpx;
  44. font-family: PingFang SC-Regular, PingFang SC;
  45. color: #333333;
  46. }
  47. .role {
  48. width: 100%;
  49. height: 34rpx;
  50. line-height: 34rpx;
  51. font-size: 24rpx;
  52. font-family: PingFang SC-Regular, PingFang SC;
  53. color: #999999;
  54. margin-top: 8rpx;
  55. }
  56. }
  57. .delete-box {
  58. flex-shrink: 0;
  59. color: #999999;
  60. font-size: 32rpx;
  61. padding: 0 30rpx;
  62. }
  63. }
  64. }