ApplyContent.vue 657 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div>
  3. <div class="banner">
  4. <img src="../../static/images/apply/banner.png" alt="">
  5. </div>
  6. <Steps></Steps>
  7. <ApplyForm></ApplyForm>
  8. </div>
  9. </template>
  10. <script>
  11. import Steps from '../components/Steps'
  12. import ApplyForm from '../components/ApplyForm'
  13. export default {
  14. name: 'ApplyContent',
  15. components: {Steps,ApplyForm}
  16. }
  17. </script>
  18. <style scoped>
  19. .banner {
  20. height: 400px;
  21. width: 100%;
  22. position: relative;
  23. overflow: hidden;
  24. margin-bottom: 10px;
  25. margin-top: 75px;
  26. img {
  27. height: 100%;
  28. position: relative;
  29. left: 50%;
  30. transform: translateX(-50%);
  31. }
  32. }
  33. </style>