xcx.vue 907 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <section class="XcxPage-container">
  3. <div class="banner-img">
  4. <img src="http://res.training.luojigou.vip/Fqx9b6jma5oLcmANKrFUAlhyiV9e?imageView2/0/q/50|imageslim" alt="">
  5. <section class="label">
  6. 小程序课堂
  7. </section>
  8. </div>
  9. <slot></slot>
  10. </section>
  11. </template>
  12. <script>
  13. export default {
  14. name: 'XcxPage'
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. .XcxPage-container {
  19. .banner-img {
  20. position: relative;
  21. img {
  22. height: 881px;
  23. }
  24. .label {
  25. font-family:PingFangSC-Semibold,PingFang SC;
  26. font-weight:600;
  27. color: #ffffff;
  28. font-size: 80px;
  29. position: absolute;
  30. top: 50%;
  31. left: 50%;
  32. transform: translate(-50%, -50%);
  33. }
  34. }
  35. }
  36. </style>