index.module.less 701 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .liveClass {
  2. :global {
  3. // .el-tabs__nav-wrap {
  4. // @apply px-11;
  5. // }
  6. .el-tabs__item {
  7. font-size: 18px;
  8. font-weight: 600;
  9. color: #999;
  10. height: 56px;
  11. line-height: 56px;
  12. padding-right: 40px;
  13. padding-left: 0;
  14. &.is-active {
  15. font-size: 20px;
  16. color: #000;
  17. }
  18. }
  19. .el-tabs__nav-wrap::after {
  20. height: 1px;
  21. background: #eeeeee;
  22. }
  23. .el-tabs__active-bar {
  24. height: 4px;
  25. }
  26. }
  27. }
  28. .items:first-child {
  29. display: flex;
  30. justify-content: flex-start;
  31. & > div {
  32. margin: 0;
  33. }
  34. }
  35. .items:nth-child(3n + 3) {
  36. display: flex;
  37. justify-content: flex-end;
  38. & > div {
  39. margin: 0;
  40. }
  41. }