<template>
|
<div class="honors">
|
<div class="honors-title">
|
<p>王永炎院士荣誉奖项</p>
|
</div>
|
<div class="page-main-father">
|
<div class="honors-main">
|
<div class="honors-main-box">
|
<div class="honors-main-title">荣<br />誉<br />奖<br />项</div>
|
<div class="honors-text">
|
<ul>
|
<li v-for="(item, index) in honorList" :key="index">
|
<img
|
class="main-img"
|
:src="item.imgSrc ? item.imgSrc : defaultImg"
|
alt=""
|
/>
|
<div>
|
<p class="main-time">{{ item.time }}</p>
|
<p class="main-text" :title="item.txt">{{ item.txt }}</p>
|
</div>
|
</li>
|
</ul>
|
<img
|
class="honor-Bg"
|
src="../../assets/images/honors/honor-Bg.png"
|
alt=""
|
/>
|
<!-- 分页 -->
|
<div class="pagination">
|
<el-pagination
|
class="msg-pagination-container"
|
:background="isBackground"
|
layout="prev, pager, next"
|
:total="200"
|
>
|
</el-pagination>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {
|
defaultImg: require("@/assets/images/honors/honorImg.png"),
|
isBackground: true,
|
honorList: [
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
{
|
imgSrc: "",
|
time: "1986年11月",
|
txt: "1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖,1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖,1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖,1991年11月'清开灵注射液治疗中风病痰热证的临床与实验研究'获1991年度国家科技进步奖三等奖",
|
},
|
],
|
};
|
},
|
};
|
</script>
|
|
<style lang="less" scoped>
|
.honors {
|
width: 100%;
|
height: 100%;
|
box-sizing: border-box;
|
background-color: #e9e1d4;
|
position: relative;
|
}
|
|
.honors-title {
|
height: 9.4%;
|
width: 100%;
|
text-align: left;
|
border-bottom: 2px solid #937950;
|
background-color: #e9e1d4;
|
position: sticky;
|
top: 0;
|
z-index: 100;
|
p {
|
padding: 2% 0 1.9% 0;
|
font-family: Alimama DongFangDaKai;
|
font-size: 30px;
|
text-indent: 1em;
|
border-bottom: 1px solid #937950;
|
}
|
}
|
|
.page-main-father {
|
height: calc(100% - 9.4%);
|
width: 100%;
|
overflow: auto;
|
}
|
|
.honors-main {
|
width: 77.3%;
|
height: auto;
|
margin: 0 auto;
|
margin-top: 2%;
|
}
|
|
.honors-main-box {
|
display: flex;
|
justify-content: center;
|
padding: 3.2% 6% 14% 4%;
|
border: 1px solid #e4dace;
|
background: rgba(255, 253, 248, 0.9);
|
}
|
|
.honors-main-title {
|
padding: 0 30px 0 0;
|
font-family: Alimama DongFangDaKai;
|
font-size: 36px;
|
border-right: 1px solid #b9a587;
|
}
|
|
.honors-text {
|
width: 100%;
|
position: relative;
|
padding: 0 0 0 5.8%;
|
|
ul {
|
display: flex;
|
flex-wrap: wrap;
|
justify-content: space-between;
|
}
|
|
li {
|
height: 25%;
|
width: 45%;
|
display: flex;
|
margin-right: 0.9%;
|
margin-bottom: 25px;
|
|
img {
|
margin: 9px 30px 9px 0;
|
width: 24%;
|
height: 100%;
|
}
|
|
.main-time {
|
margin-top: 7px;
|
font-size: 18px;
|
color: #937950;
|
margin-bottom: 5px;
|
overflow: hidden;
|
}
|
|
.main-text {
|
font-family: Alibaba PuHuiTi 3;
|
font-size: 14px;
|
line-height: 20px;
|
overflow: hidden;
|
cursor: pointer;
|
display: -webkit-box;
|
-webkit-box-orient: vertical;
|
-webkit-line-clamp: 3;
|
}
|
}
|
|
.honor-Bg {
|
position: absolute;
|
width: 70.5%;
|
height: auto;
|
bottom: -36%;
|
left: -295px;
|
}
|
|
.pagination {
|
padding-right: 47px;
|
padding-top: 30px;
|
text-align: end;
|
}
|
}
|
|
@media screen and (min-width: 2560px) {
|
.honors-main {
|
width: 77.3%;
|
min-width: 1600px;
|
transform: scale(1);
|
}
|
|
.honors-title p {
|
font-size: 44px;
|
}
|
|
.honors-main-title {
|
font-size: 54px;
|
}
|
|
.honors-text {
|
li {
|
.main-time {
|
font-size: 24px;
|
}
|
|
.main-text {
|
font-size: 20px;
|
line-height: 28px;
|
}
|
}
|
}
|
|
.honor-Bg {
|
position: absolute;
|
width: 70.5%;
|
height: auto;
|
bottom: -39%;
|
left: -295px;
|
}
|
|
}
|
|
@font-face {
|
font-family: "Alimama DongFangDaKai";
|
src: url("../../assets/font/阿里妈妈东方大楷.ttf");
|
}
|
|
:deep .msg-pagination-container.is-background .el-pager li {
|
/*对页数的样式进行修改*/
|
background-color: transparent;
|
color: #333333;
|
border-radius: 5px;
|
border: 1px solid #cccccc;
|
}
|
|
:deep.msg-pagination-container.is-background .btn-next {
|
/*对下一页的按钮样式进行修改*/
|
background-color: transparent;
|
color: #333333;
|
border-radius: 5px;
|
border: 1px solid #cccccc;
|
}
|
|
:deep.msg-pagination-container.is-background .btn-prev {
|
/*对上一页的按钮样式进行修改*/
|
background-color: transparent;
|
color: #333333;
|
border-radius: 5px;
|
border: 1px solid #cccccc;
|
}
|
|
:deep.msg-pagination-container.is-background
|
.el-pager
|
li:not(.disabled).active {
|
/*当前选中页数的样式进行修改*/
|
background-color: #937950;
|
color: #fff;
|
border-radius: 5px;
|
border: 1px solid #cccccc;
|
}
|
</style>
|