小程序view布局:
view垂直和水平居中
<view class="assistant_ly">
<image class="img" src="../../images/assistant_phone.png" ></image>
<text>电话客服</text>
</view>
.assistant_ly{
display:flex;
flex-direction:column;
width: 523rpx;
height: 446rpx;
border-radius: 50rpx;
background-color: white;
align-items: center;//垂直居中
justify-content: center;//水平居中
}