index.module.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .popupTitle {
  2. padding: 16px 0 20px;
  3. text-align: center;
  4. font-weight: 500;
  5. font-size: 18px;
  6. color: #131415;
  7. line-height: 25px;
  8. }
  9. .selectStudent {
  10. padding: 0 20px 0;
  11. max-height: 400px;
  12. overflow-x: hidden;
  13. overflow-y: auto;
  14. .cell {
  15. display: flex;
  16. align-items: center;
  17. padding: 12px 10px;
  18. border-radius: 10px;
  19. margin-bottom: 16px;
  20. }
  21. .cellSelected {
  22. background: #EDF6FD;
  23. }
  24. .iconImage {
  25. width: 18px;
  26. height: 18px;
  27. flex-shrink: 0;
  28. }
  29. .userInfo {
  30. display: flex;
  31. align-items: center;
  32. flex: 1;
  33. .userImg {
  34. width: 48px;
  35. height: 48px;
  36. border-radius: 50%;
  37. overflow: hidden;
  38. margin: 0 10px;
  39. flex-shrink: 0;
  40. }
  41. }
  42. .usernames {
  43. .name {
  44. font-weight: 600;
  45. font-size: 16px;
  46. color: #131415;
  47. line-height: 22px;
  48. }
  49. .schoolname {
  50. padding-top: 4px;
  51. font-weight: 400;
  52. font-size: 13px;
  53. color: #777777;
  54. line-height: 18px;
  55. max-width: 230px;
  56. white-space: nowrap;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. }
  60. }
  61. }
  62. .addStudentBtn {
  63. margin: 0 20px 22px;
  64. .iconAdd {
  65. display: inline-block;
  66. width: 20px;
  67. height: 20px;
  68. background: url('../../images/new/icon-n-3.png') no-repeat center;
  69. background-size: contain;
  70. margin-right: 6px;
  71. flex-shrink: 0;
  72. }
  73. :global {
  74. .van-button {
  75. border-radius: 8px;
  76. font-weight: 600;
  77. font-size: 16px;
  78. color: #1189FF;
  79. }
  80. .van-button__text {
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. }
  85. }
  86. }