1 vue
<div class="bottom" @click="openLook(123)">查看详情 </div>
2 css
.bottom {
background-color: #fff;
position: absolute;
left: 46%;
font-size: 0.8125rem;
color: #808080;
transform: translate(-50%, 50%);
}
.bottom::after{
content: '';
position: absolute;
border: 2px solid #808080;
width: 14px;
height: 14px;
top: 10px;
border-top-color: transparent;
border-left-color: transparent;
transform: rotate(-45deg);
}