approval-item.module.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .itemWrap {
  2. padding: 12px 15px 15px;
  3. border-radius: 10px;
  4. background-color: #fff;
  5. margin: 0 13px 12px;
  6. .itemWrapTop {
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. justify-content: space-between;
  11. padding-bottom: 12px;
  12. border-bottom: 1px solid #f2f2f2;
  13. .itemWrapTopLeft {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. .clockWrap {
  18. width: 18px;
  19. height: 18px;
  20. margin-right: 6px;
  21. img {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. }
  26. .leftTimer {
  27. font-size: 14px;
  28. font-weight: 500;
  29. color: #333333;
  30. line-height: 20px;
  31. }
  32. }
  33. .itemWrapTopRight {
  34. display: flex;
  35. flex-direction: row;
  36. align-items: center;
  37. .passLabel {
  38. font-size: 14px;
  39. font-weight: 500;
  40. color: #4ab78e;
  41. line-height: 20px;
  42. }
  43. .unpassLabel {
  44. font-size: 14px;
  45. font-weight: 500;
  46. color: #f44541;
  47. line-height: 20px;
  48. }
  49. .invalidLabel {
  50. font-size: 14px;
  51. font-weight: 500;
  52. color: #ccc;
  53. line-height: 20px;
  54. }
  55. .passIcon {
  56. font-size: 16px;
  57. margin-right: 4px;
  58. }
  59. .msgIcon {
  60. font-size: 24px;
  61. }
  62. }
  63. }
  64. .itemWrapBottom {
  65. padding-top: 15px;
  66. .courseInfo {
  67. display: flex;
  68. flex-direction: row;
  69. align-items: center;
  70. justify-content: space-between;
  71. // padding-bottom: 15px;
  72. .courseInfoLeft {
  73. display: flex;
  74. flex-direction: row;
  75. align-items: center;
  76. .headImgs {
  77. width: 48px;
  78. height: 48px;
  79. border-radius: 50%;
  80. overflow: hidden;
  81. margin-right: 10px;
  82. }
  83. .infoMsg {
  84. .infoMsgMain {
  85. font-size: 16px;
  86. font-weight: 600;
  87. color: #333333;
  88. line-height: 22px;
  89. }
  90. .infoMsgSub {
  91. font-size: 12px;
  92. font-weight: 500;
  93. color: #ffffff;
  94. line-height: 19px;
  95. padding: 1px 8px;
  96. border-radius: 4px;
  97. margin-top: 3px;
  98. text-align: center;
  99. display: inline-block;
  100. }
  101. .student {
  102. background-color: #ff8057;
  103. }
  104. .teacher {
  105. background-color: #64a9ff;
  106. }
  107. }
  108. }
  109. .courseInfoRight {
  110. display: flex;
  111. flex-direction: row;
  112. align-items: center;
  113. .approvalType {
  114. font-size: 16px;
  115. font-weight: 500;
  116. color: #333333;
  117. // line-height: 22px;
  118. margin-right: 16px;
  119. }
  120. .icons {
  121. font-size: 12px;
  122. color: #d8d8d8;
  123. }
  124. }
  125. }
  126. }
  127. }