Example.css 809 B

123456789101112131415161718192021222324252627282930313233343536
  1. .Example {
  2. width: 100%;
  3. margin-top: 100px;
  4. /* padding: 0 100px; */
  5. background-image: url('../img/初级back.png');
  6. h1 {
  7. position: relative;
  8. top: 0;
  9. display: inline-block;
  10. font-size: 64px;
  11. font-weight: 500;
  12. line-height: 92.67px;
  13. padding-left: 100px;
  14. /* background: linear-gradient(to right,#3681FC,#fff); */
  15. z-index: 10;
  16. }
  17. h1::after {
  18. content: '';
  19. width: 100%;
  20. padding: 12px 0;
  21. background: linear-gradient(to right, rgba(54, 129, 252, 1), rgba(54, 129, 252, 0));
  22. position: absolute;
  23. top: 72px;
  24. left: 0;
  25. z-index: -1;
  26. }
  27. .Example_content{
  28. .contentStyle{
  29. img{
  30. width: 100%;
  31. }
  32. }
  33. }
  34. }