index.module.less 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .teacherChange {
  2. width: 311px;
  3. border-radius: 15px;
  4. overflow: hidden;
  5. }
  6. .changeInfo {
  7. display: flex;
  8. flex-direction: column;
  9. justify-content: space-evenly;
  10. height: 146px;
  11. background: linear-gradient(to right, #ffefe7, #eafffd);
  12. padding: 10px 34px 0;
  13. font-size: 16px;
  14. color: #333333;
  15. line-height: 20px;
  16. img {
  17. width: 38px;
  18. height: 38px;
  19. border-radius: 50%;
  20. overflow: hidden;
  21. }
  22. .txt,
  23. .name {
  24. display: flex;
  25. align-items: center;
  26. }
  27. .txt {
  28. font-weight: 500;
  29. }
  30. span {
  31. padding-left: 12px;
  32. }
  33. }
  34. .changeTips {
  35. display: flex;
  36. align-items: center;
  37. padding: 16px 30px 35px;
  38. font-size: 14px;
  39. color: #666666;
  40. line-height: 20px;
  41. img {
  42. width: 24px;
  43. height: 24px;
  44. margin-right: 10px;
  45. }
  46. }