效果:
实现:
.big-arrow {
position: relative;
&:before {
content: ' ';
position: absolute;
width: 0;
height: 0;
border-top: 120rpx solid transparent;
border-right: 100rpx solid transparent;
border-left: 100rpx solid transparent;
border-bottom: 120rpx solid #ED4040;
top: -180rpx;
left: 50%;
transform: translateX(-50%);
border-radius: 10rpx;
}
&:after {
content:' ';
position: absolute;
height: 190rpx;
width: 60rpx;
background: #ED4040;
top: 0rpx;
left: 50%;
transform: translateX(-50%);
border-radius: 10rpx;
}
}
大小位置按照要求调整就好