student-cell.module.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .itemWrap {
  2. background-color: #ffffff;
  3. padding: 18px 0px 0 13px;
  4. display: flex;
  5. flex-direction: row;
  6. align-items: center;
  7. justify-content: space-between;
  8. &:nth-last-child(1) {
  9. .itemRight {
  10. border-bottom: none !important;
  11. }
  12. }
  13. .itemLeft {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. padding-bottom: 18px;
  18. .headerWrap {
  19. width: 48px;
  20. height: 48px;
  21. border-radius: 50%;
  22. margin-right: 10px;
  23. overflow: hidden;
  24. img {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. }
  29. }
  30. .itemRight {
  31. height: 48px;
  32. display: flex;
  33. flex-direction: row;
  34. align-items: center;
  35. justify-content: space-between;
  36. border-bottom: 1px solid #f2f2f2;
  37. padding-bottom: 18px;
  38. padding-right: 13px;
  39. width: 302px;
  40. .infoWrap {
  41. p {
  42. font-size: 16px;
  43. font-weight: 500;
  44. color: #333333;
  45. line-height: 22px;
  46. }
  47. .statusTag {
  48. width: 48px;
  49. height: 20px;
  50. border-radius: 4px;
  51. font-size: 14px;
  52. font-weight: 500;
  53. line-height: 20px;
  54. color: #ffffff;
  55. text-align: center;
  56. }
  57. .LATE {
  58. background-color: #8f80ff;
  59. }
  60. .LEAVE {
  61. background-color: #64a9ff;
  62. }
  63. .TRUANCY {
  64. background-color: #ff5c5f;
  65. }
  66. }
  67. .msgIcon {
  68. width: 24px;
  69. height: 24px;
  70. }
  71. }
  72. }