<view class="wd">
<view class="wd-bj"></view>
<view class="wd-xx"></view>
</view>
.wd{
.wd-bj {
overflow: hidden;
/* overflow: hidden;不加此属性会导致移动端出现横向滚动条 */
position: relative;
height: 457rpx;
}
.wd-bj::after {
content: '';
width: 120%;
height: 100%;
position: absolute;
left: -10%;
top: 0;
z-index: -1;
border-radius: 0 0 50% 50%;
background: linear-gradient(28deg, #2077F4, #20B6F4);
}
.wd-xx{
}
}