.my_position {
display: inline-block;
vertical-align: top;
margin: 12rpx 0 0;
text-align: center;
font-size: 26rpx;
color: #fff;
position: relative;
left: 50%;
transform: translateX(-50%);
padding: 0 14rpx;
}
.my_position::before {
content: '';
width: 52rpx;
height: 2rpx;
background-color: #5596f0;
position: absolute;
top: 50%;
transform: translate(calc(-100% - 20rpx), -50%);
}
.my_position::after {
content: '';
width: 52rpx;
height: 2rpx;
background-color: #5596f0;
position: absolute;
top: 50%;
transform: translate(20rpx, -50%);
}
rpx是小程序的单位