section24.vue 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="section unit">
  3. <div class="box">
  4. <div class="unit-num">第一单元</div>
  5. <div class="unit-title">琼华</div>
  6. <div class="unit-intro">
  7. <p>
  8. 南渡衣冠珍视着文化血脉,北漠胡风吹来异域风尚。多元一统始终是中华大地的主旋律,玉文明的层理更加丰富多彩。
  9. </p>
  10. <p>
  11. 奔放的纹样、多彩的宝玉石,沿着丝绸之路接踵而至,衬映出玉的温润多姿。宋代玉器在世俗化中推崇复古,频出新意;多民族交融中,涤荡出了中华美玉的崭新韵味。
  12. </p>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup></script>
  18. <style lang="scss" scoped>
  19. @import "/src/assets/style/index.css";
  20. .section {
  21. position: relative;
  22. position: relative;
  23. -webkit-box-sizing: border-box;
  24. -moz-box-sizing: border-box;
  25. box-sizing: border-box;
  26. background: no-repeat center/cover;
  27. justify-content: flex-start;
  28. }
  29. </style>