index.module.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .attendClass {
  2. margin: 32px 0;
  3. }
  4. .attendClassSearch {
  5. width: 100%;
  6. display: flex;
  7. align-items: center;
  8. gap: 0 24px;
  9. margin-bottom: 28px;
  10. padding: 0 40px;
  11. :global {
  12. .n-base-selection,
  13. .n-input {
  14. // height: 52px;
  15. // min-height: 52px;
  16. // --n-height: 52px !important;
  17. // font-size: 18px;
  18. border-radius: 8px !important;
  19. }
  20. }
  21. .iconSearch {
  22. width: 16px;
  23. height: 17px;
  24. }
  25. }
  26. .classList {
  27. max-height: 60vh;
  28. min-height: 60vh;
  29. padding: 0 40px;
  30. .listSection {
  31. min-height: 60vh;
  32. }
  33. .emptySection {
  34. display: flex;
  35. align-items: center;
  36. }
  37. }
  38. .thingItem {
  39. background: #F5F6FA;
  40. border-radius: 12px;
  41. margin-bottom: 16px;
  42. padding: 24px;
  43. cursor: pointer;
  44. transition: background-color 0.2s linear;
  45. &:hover {
  46. background: #ecedf4;
  47. transition: background-color 0.2s linear;
  48. }
  49. :global {
  50. .n-thing-header {
  51. margin-bottom: 0 !important;
  52. }
  53. .n-thing-header__title {
  54. width: 100%;
  55. display: flex;
  56. align-items: center;
  57. // justify-content: space-between;
  58. }
  59. .n-thing-main__content {
  60. margin-top: 8Px !important;
  61. }
  62. }
  63. .title {
  64. display: flex;
  65. align-items: center;
  66. font-size: max(20px, 14Px) !important;
  67. font-weight: 600 !important;
  68. color: #131415 !important;
  69. line-height: 28px;
  70. &::before {
  71. content: ' ';
  72. display: inline-block;
  73. width: 10px;
  74. height: 10px;
  75. border-radius: 50%;
  76. background: #198CFE;
  77. margin-right: 12px;
  78. }
  79. }
  80. .subjects {
  81. margin-left: 14px;
  82. font-size: 16px !important;
  83. line-height: 22px;
  84. color: #0A81F7;
  85. background: #E8F4FF;
  86. border-radius: 5px;
  87. border: 1px solid #198CFE;
  88. padding: 0 8px;
  89. font-weight: bold;
  90. &.noSubjects {
  91. color: #F4130D !important;
  92. background: transparent;
  93. border: 1px solid #F4130D;
  94. }
  95. }
  96. .content {
  97. margin-top: 2px !important;
  98. font-size: max(16px, 12Px);
  99. color: #777777;
  100. }
  101. }