<div class="container"></div>
<style lang="scss">
.container {
position: relative;
width: 236px;
height: 73px;
&::before {
position: absolute;
content: '';
top: 0;
left: 0;
width: 60px;
height: 100%;
transform: translateX(12px) skewX(-18deg);
background-color: red;
border-top-left-radius: 10px;
}
&::after {
position: absolute;
content: '';
top: 0;
right: 0;
width: 180px;
height: 100%;
background-color: red;
border-bottom-right-radius: 10px;
border-top-right-radius: 10px;
}
}
</style>