teacherAtt-item.module.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. font-size: 12px;
  35. color: #777;
  36. }
  37. }
  38. .itemWrapBottom {
  39. padding-top: 15px;
  40. .courseInfo {
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. padding-bottom: 15px;
  45. .headImgs {
  46. width: 42px;
  47. height: 42px;
  48. border-radius: 50%;
  49. overflow: hidden;
  50. margin-right: 12px;
  51. }
  52. .infoMsg {
  53. .infoMsgMain {
  54. font-size: 16px;
  55. font-weight: 600;
  56. color: #333333;
  57. line-height: 22px;
  58. }
  59. .infoMsgSub {
  60. font-size: 12px;
  61. font-weight: 400;
  62. color: #777777;
  63. line-height: 17px;
  64. }
  65. }
  66. }
  67. .attInfo {
  68. display: flex;
  69. flex-direction: row;
  70. align-items: center;
  71. justify-content: space-between;
  72. .attInfoDot {
  73. text-align: left;
  74. padding: 12px;
  75. .attInfoDotTitle {
  76. width: 100%;
  77. display: flex;
  78. flex-direction: row;
  79. margin-bottom: 7px;
  80. align-items: center;
  81. img {
  82. width: 18px;
  83. height: 18px;
  84. margin-left: 60px;
  85. }
  86. }
  87. .signTime {
  88. height: 31px;
  89. line-height: 31px;
  90. font-size: 20px;
  91. font-weight: 600;
  92. color: #333333;
  93. line-height: 28px;
  94. }
  95. }
  96. }
  97. .passWrap,
  98. .goWrap {
  99. display: flex;
  100. flex-direction: row;
  101. align-items: center;
  102. border-radius: 10px;
  103. justify-content: space-between;
  104. text-align: center;
  105. .itemBottomMain {
  106. font-size: 30px;
  107. font-weight: bold;
  108. color: #333333;
  109. line-height: 35px;
  110. margin-bottom: 2px;
  111. }
  112. .itemBottomSub {
  113. font-size: 14px;
  114. font-weight: 400;
  115. color: #333333;
  116. line-height: 20px;
  117. }
  118. }
  119. .passWrap {
  120. background-color: #ddecff;
  121. }
  122. .goWrap {
  123. background-color: #ffe1e1;
  124. }
  125. }
  126. }