html部分
<div class="bounced" v-show="ycshow">
<div class="bouncedone" >
<p class="yc_p"><span style="color: #fff;position: absolute;left:20px;font-size: 13px">例如代办任务</span><i style="color: #fff;position: absolute;right:20px;top: 9px;font-size: 13px" class="el-icon-close"></i></p>
</div>
</div>
css部分
.bounced{
position:fixed;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(22,22,22,0.5);
}
.bouncedone{
width:700px;
height:450px;
background-color: #f9f9f9;
position: relative;
left:calc(50% - 350px);
top:calc(50% - 225px);
border-radius: 3px;
}
.yc_p{
background-color:#173F70;
height: 30px;
width: 100%;
margin: 0;
position: relative;
line-height: 30px;
}
