style.scss 668B

123456789101112131415161718192021222324252627282930313233343536
  1. .components.Adv {
  2. width: 100%;
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. bottom: 0;
  7. z-index: 1000;
  8. background: rgba(0, 0, 0, 0.6);
  9. >view {
  10. width: 100%;
  11. >view {
  12. padding: 0 134px;
  13. position: relative;
  14. overflow: hidden;
  15. text-align: center;
  16. >.Img {
  17. width: 100%;
  18. position: relative;
  19. overflow: hidden;
  20. padding-bottom: 150%;
  21. background: #eee;
  22. border-radius: 24px;
  23. >image {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. }
  28. >text {
  29. display: inline-block;
  30. font-size: 60px;
  31. color: #fff;
  32. margin-top: 30px;
  33. }
  34. }
  35. }
  36. }