index.module.less 1.9 KB

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