<View className="bound"></View>
.bound{
margin: 80px 0;
background-color: #fff;
width: 700px;
height: 1000px;
display: flex;
flex-direction: column;
align-items: center;
position: relative;//设置定位
}
.bound::before{
content: "";
width: 80px;
height: 80px;
border-radius: 50%;
display: block;
background: #3EAAF2;
position: absolute;
top:30%;
left: -40px;
transform:translateY(-50%);
}
.bound::after{
content: "";
width: 80px;
height: 80px;
border-radius: 50%;
display: block;
background: #3EAAF2;
position: absolute;
top:30%;
right: -40px;
transform:translateY(-50%);
}