index.scss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. position: relative;
  16. width: 80rpx;
  17. height: 80rpx;
  18. font-size: 0;
  19. flex-shrink: 0;
  20. margin-right: 30rpx;
  21. .iconfont {
  22. position: absolute;
  23. color: #F5D400;
  24. bottom: 0;
  25. right: 0;
  26. font-size: 26rpx;
  27. }
  28. image,
  29. .alt {
  30. width: 100%;
  31. height: 100%;
  32. border-radius: 50%;
  33. }
  34. .alt {
  35. line-height: 80rpx;
  36. text-align: center;
  37. font-size: 28rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #FFFFFF;
  40. background: #3874F6;
  41. }
  42. }
  43. .content {
  44. flex: 1;
  45. width: 0;
  46. .title {
  47. width: 100%;
  48. height: 42rpx;
  49. line-height: 42rpx;
  50. font-size: 30rpx;
  51. font-family: PingFang SC-Regular, PingFang SC;
  52. color: #333333;
  53. }
  54. .role {
  55. width: 100%;
  56. height: 34rpx;
  57. line-height: 34rpx;
  58. font-size: 24rpx;
  59. font-family: PingFang SC-Regular, PingFang SC;
  60. color: #999999;
  61. margin-top: 8rpx;
  62. }
  63. }
  64. .delete-box {
  65. flex-shrink: 0;
  66. color: #999999;
  67. font-size: 32rpx;
  68. padding: 0 30rpx;
  69. }
  70. }
  71. }