home.scss 553 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .home-banner{
  2. width: 100%;
  3. }
  4. a{
  5. text-decoration: none;
  6. color: white;
  7. &:hover{
  8. color: $focus-color;
  9. }
  10. }
  11. .hot-courses{
  12. text-align: center;
  13. width: 100%;
  14. &__title{
  15. margin-top: 20px;
  16. }
  17. &__list{
  18. color: $sub-color;
  19. margin: 20px 0 40px 0;
  20. }
  21. }
  22. .title{
  23. width: 100%;
  24. text-align: center;
  25. //color: #409eff;
  26. margin-top: 40px;
  27. font-weight: 500;
  28. }
  29. .course-list{
  30. display: flex;
  31. flex-wrap: nowrap;
  32. align-items: flex-end;
  33. justify-content: space-between;
  34. padding: 30px 0;
  35. width: 1200px;
  36. margin: 0 auto;
  37. }