teacher-list.module.less 431 B

123456789101112131415161718192021222324252627282930
  1. .cellTeacher {
  2. .img {
  3. width: 48px;
  4. height: 48px;
  5. overflow: hidden;
  6. border-radius: 50%;
  7. margin-right: 12px;
  8. flex-shrink: 0;
  9. }
  10. .name {
  11. font-size: 16px;
  12. font-weight: 500;
  13. color: #333333;
  14. line-height: 22px;
  15. }
  16. .class {
  17. padding-top: 3px;
  18. font-size: 12px;
  19. color: #777777;
  20. line-height: 17px;
  21. }
  22. :global {
  23. .van-tag + .van-tag {
  24. margin-left: 8px;
  25. }
  26. }
  27. }