index.module.less 1.7 KB

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