.goods-action {
box-sizing: border-box;
width: 100%;
height: 112px;
padding: 12px 32px;
background-color: white;
display: flex;
justify-content: space-between;
position: fixed;
bottom: 0;
& > div {
display: flex;
justify-content: space-between;
&:first-child > div {
text-align: center;
margin: auto 0;
margin-right: 44px;
font-size: 20px;
font-weight: 400;
color: #303133;
&:last-child {
margin-right: 0;
}
img {
width: 44px;
height: 44px;
margin-bottom: 4px;
}
}
}
& > div:last-child {
margin: auto 0;
div {
box-sizing: border-box;
width: 200px;
height: 80px;
text-align: center;
border: 1px solid #307ef9;
border-radius: 50px;
padding: 20px 42px;
font-size: 28px;
font-weight: 400;
color: #307ef9;
&:last-child {
background-color: #307ef9;
color: white;
margin-left: 16px;
}
}
}
}
<div class="goods-action">
<div>
<div @click="call">
<img src="/images/productDetails/call.png" alt="" />
<div>电话</div>
</div>
<div @click="like">
<img src="/images/productDetails/like.png" alt="" />
<div>收藏</div>
</div>
<div @click="share">
<img src="/images/productDetails/share.png" alt="" />
<div>分享</div>
</div>
</div>
<div>
<div @click="consult">立即咨询</div>
<div @click="buy">立即购买</div>
</div>
</div>