hjyd
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
552 B

2 years ago
  1. <template>
  2. <div class="slide_one">
  3. <div class="main_content"></div>
  4. <div class="bottom_statement"></div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {}
  9. </script>
  10. <style lang="scss" scoped>
  11. .slide_one {
  12. width: 100%;
  13. height: 100%;
  14. background: url(../../../../../assets/img/1.jpg);
  15. background-position: 40%;
  16. background-size: auto 100%;
  17. position: relative;
  18. .main_content {
  19. position: absolute;
  20. left: 280px;
  21. top: 359px;
  22. }
  23. .bottom_statement {
  24. position: absolute;
  25. left: 87px;
  26. bottom: 77px;
  27. }
  28. }
  29. </style>