| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="section section2">
- <ul>
- <li class="fadeInUp">
- <h3>
- “玉,石之美有五德:润泽以温,仁之方也;䚡理自外,可以知中,义之方也;其声舒扬,专以远闻,智之方也;不挠而折,勇之方也;锐廉而不忮,洁之方也。”
- </h3>
- <p>——汉 许慎《说文解字》</p>
- </li>
- <li class="fadeInUp">
- <h3>
- “在全世界文化体系里,唯有华夏文明有尊玉爱玉的传统,且8000多年未曾中断。其中不仅有深厚的华夏文化背景,更隐喻着中国文化发展的客观规律,研究和推广玉文化,是关系到中华民族生死存亡的大事。”
- </h3>
- <p>——费孝通</p>
- </li>
- </ul>
- </div>
- </template>
- <script setup></script>
- <style lang="scss" scoped>
- @import "/src/assets/style/section2.css";
- .section {
- position: relative;
- }
- .section2 {
- display: flex;
- flex-flow: column;
- align-items: center;
- line-height: 2;
- color: #997946;
- justify-content: center;
- background: url(/img/section2/bg.webp) no-repeat center/cover;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- ul {
- li {
- list-style-type: none;
- position: relative;
- &:first-child:after {
- content: "";
- position: absolute;
- width: 100%;
- height: 2px;
- bottom: 0;
- left: 0;
- background: url(/img/section2/line.webp) no-repeat center/contain;
- }
- h3 {
- font-size: 1.5rem;
- padding: 0 var(--wall-margin-left3);
- padding-top: 5.875rem;
- }
- p {
- text-align: right;
- font-size: 1.5rem;
- padding: 0 var(--wall-margin-left3);
- padding-bottom: 5.875rem;
- }
- }
- }
- }
- </style>
|