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