You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
61 lines
1.3 KiB
<template>
|
|
<div class="body">
|
|
<div class="title">荣誉墙</div>
|
|
<div class="achievements">
|
|
<div class="achievements_item" v-for="(item,index) in 7" :key="index">
|
|
<img src="../../../assets/img/header_logo.png" alt="" class="achievements_item_img">
|
|
<p class="achievements_item_p">《人才产权管理》第一章</p>
|
|
<p>考试成绩:100 分</p>
|
|
<p>成果日期:2021-07-13</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return{
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.body{
|
|
margin-top: 40px;
|
|
}
|
|
.title{
|
|
text-align: center;
|
|
font-size: 34px;
|
|
color: #C94C4C;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
}
|
|
.achievements{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.achievements_item{
|
|
width: 200px;
|
|
height: 240px;
|
|
margin-bottom: 20px;
|
|
background: url('../../../assets/img/achievements_bg.png') no-repeat ;
|
|
background-size: 100% 100%;
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
color: #EAB1B1;
|
|
font-size: 12px;
|
|
margin-right: 40px;
|
|
}
|
|
.achievements_item >p{
|
|
margin-bottom: 5px;
|
|
}
|
|
.achievements_item_img{
|
|
width: 132px;
|
|
height: 132px;
|
|
}
|
|
.achievements_item_p{
|
|
font-size: 14px;
|
|
margin: 15px 0 !important;
|
|
}
|
|
</style>
|
|
|