index.css 593 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .banner {
  2. width: 100%;
  3. }
  4. .banner img {
  5. width: 100%;
  6. }
  7. .app-list {
  8. display: flex;
  9. padding: 25px 20px 0 20px;
  10. }
  11. .app-list a {
  12. width: 68px;
  13. }
  14. .app-list h3 {
  15. width: 68px;
  16. height: 68px;
  17. }
  18. .app-list h3.course {
  19. background: url("../images/icon-course.png") center no-repeat;
  20. background-size: 68px 68px;
  21. }
  22. .app-list h3.art {
  23. background: url("../images/icon-art.png") center no-repeat;
  24. background-size: 68px 68px;
  25. }
  26. .footer {
  27. position: fixed;
  28. left: 0;
  29. bottom: 0;
  30. width: 100%;
  31. background: #f7f7f7;
  32. padding: 20px 0;
  33. color: #AFAFB0;
  34. }
  35. .footer a {
  36. color: #2A60FF;
  37. }