index.module.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .searchBand {
  2. display: inline-block;
  3. font-size: 14px;
  4. font-weight: 600;
  5. color: #333333;
  6. }
  7. .gridContainer {
  8. margin: 0 13px 12px;
  9. // background: #ffffff;
  10. .title {
  11. font-size: 26px;
  12. font-weight: bold;
  13. color: #333;
  14. i {
  15. font-style: normal;
  16. font-size: 12px;
  17. color: #333333;
  18. }
  19. }
  20. .red {
  21. color: #f67146;
  22. }
  23. .name {
  24. padding-top: 8px;
  25. font-size: 12px;
  26. color: #777777;
  27. }
  28. }
  29. .gridClass {
  30. .img {
  31. width: 40px;
  32. height: 40px;
  33. margin-right: 12px;
  34. border-radius: 50%;
  35. overflow: hidden;
  36. }
  37. .teacherName {
  38. display: flex;
  39. align-items: center;
  40. font-size: 16px;
  41. font-weight: 600;
  42. color: #333333;
  43. line-height: 22px;
  44. .name {
  45. padding: 0;
  46. max-width: 120px;
  47. }
  48. :global {
  49. .van-tag {
  50. margin-left: 6px;
  51. }
  52. }
  53. }
  54. .classCheckbox {
  55. display: flex;
  56. justify-content: flex-end;
  57. }
  58. .orchestraName {
  59. padding-top: 3px;
  60. font-size: 12px;
  61. color: #777777;
  62. line-height: 17px;
  63. max-width: 220px;
  64. }
  65. .title {
  66. font-size: 24px;
  67. }
  68. .className {
  69. padding: 17px 15px 0;
  70. font-size: 16px;
  71. font-weight: 500;
  72. color: #333333;
  73. line-height: 22px;
  74. .line {
  75. display: inline-block;
  76. width: 4px;
  77. height: 12px;
  78. background: #ff8057;
  79. border-radius: 3px;
  80. margin-right: 6px;
  81. }
  82. }
  83. :global {
  84. .van-grid-item {
  85. &:after {
  86. content: ' ';
  87. position: absolute;
  88. top: 50%;
  89. right: 0;
  90. margin-top: -10px;
  91. width: 1px;
  92. height: 20px;
  93. background: #eaeaea;
  94. border-radius: 1px;
  95. }
  96. &:last-child {
  97. &::after {
  98. display: none;
  99. }
  100. }
  101. }
  102. }
  103. }
  104. .classCellGroup {
  105. margin-bottom: 12px;
  106. border-radius: 10px;
  107. overflow: hidden;
  108. }