zhongshujie
22 小时以前 e33672cf85da88d515d5fe6ccc0a139c3cfaa5db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<template>
  <!--12 参考文献 210-->
  <div class="chapter" num="13">
    <div class="page-box" page="208">
      <div v-if="showPageList.indexOf(208) > -1">
        <div class="bodystyle">
          <h2 class="secondTitle mb-70 pt-70">参考文献</h2>
          <p class="content">[1]陈扬熙.口腔正畸学——基础、技术与临床[M].北京:人民卫生出版社,2012.</p>
          <p class="content">[2]傅民魁,林久祥.口腔正畸学[M].2版.北京:北京大学医学出版社.北京:2019.</p>
          <p class="content">[3]李巍然.口腔正畸学[M].3版.北京:北京大学医学出版社,2021.</p>
          <p class="content">[4]廖建宏.口腔正畸学[M].2版.南京:江苏凤凰科学技术出版社,2018.</p>
          <p class="content">[5]林久祥.口腔正畸学[M].2版.北京:人民卫生出版社,2022.</p>
          <p class="content">[6]施洁珺.口腔正畸学.[M].3版.北京:科学出版社,2022.</p>
          <p class="content">[7]叶玲,赖文莉.口腔正畸学实验教程[M].北京:人民卫生出版社,2023.</p>
          <p class="content">[8]张锡忠,张林坤,李泽.口腔正畸学[M].2版.北京:北京科学技术出版社,2020.</p>
          <p class="content">[9]赵志河.口腔正畸学[M].7版.北京:人民卫生出版社,2020.</p>
          <p class="content">[10]左艳萍,杜礼安.口腔正畸学[M].4版.北京:人民卫生出版社,2021.</p>
        </div>
        <div class="page-bottom-right">201</div>
      </div>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "page-header",
  props: {
    showPageList: {
      type: Array,
      // default: [],
    },
    data() {
      return {};
    },
  },
};
</script>
 
<style lang="less" scoped>
.cover img {
  width: 100%;
  object-fit: contain;
}
 
.box {
  max-width: 400px;
  margin: 0 auto;
}
 
.line {
  background-color: #000;
  height: 2px;
}
 
.tixing {
  position: relative;
  margin-bottom: 110px;
}
 
.tixing-left {
  position: absolute;
  top: 0px;
  width: 200px;
  border-top: 50px solid #1eb9ee;
  border-right: 20px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 0px solid transparent;
}
 
.tixing-right {
  max-width: 200px;
  border-top: 40px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 40px solid #8dd7f7;
  border-left: 40px solid transparent;
}
 
.tixing-box {
  width: 100%;
  height: 50px;
  background-color: #8dd7f7;
}
 
.tixing-text {
  position: absolute;
  top: -36px;
  left: 44px;
}
 
.preface-text {
  font-size: 24px;
  color: #fff;
}
 
.publishTitle {
  width: 100%;
  height: 100px;
  color: #2cc4f3;
  border-left: 20px solid #2cc4f3;
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
 
  .indentation {
    text-indent: 1em;
  }
 
}
 
.information {
  color: #2cc4f3;
  text-align: right;
  font-weight: bold;
  margin-top: 30px;
}
</style>