<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>
|