Css 边界和边界半径为一点的三角形

Css Triangle with border and boder radius one point

我必须在css中制作这个形状:

但是我无法在css中的三角形的点上进行舍入。 这是我的代码:

.contour {
  padding: 60px 40px 40px 40px;
  margin: 10px;
  width: auto;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  border: solid 3px #FD8906;
  position: relative;
  background-color: #FFF;
}
.contour:after,
.contour:before {
  top: -3px;
  left: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.contour:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 33px;
  margin-left: -33px;
}
.contour:before {
  border-color: rgba(253, 137, 6, 0);
  border-top-color: #FD8906;
  border-width: 38px;
  margin-left: -38px;
}
<html>
<div class="contour">
</div>

</html>

https://jsfiddle.net/dxjv2jus/

你能帮帮我吗

你可以画一个圆角方框,然后旋转它。

html{  background-color:#FFF;}
.contour {
  position: relative;
  overflow: hidden;
  margin:10px;
}
.contour-holder {
  padding:60px 40px 40px 40px;
  width:auto;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  border:solid 3px #FD8906;
  position: relative;
  background-color:#FFF;
} 

.contour:before {
  transform: rotate(-45deg);
  border-radius: 0 0 0 10px;
  left: 10%;
  border:solid 3px #FD8906;
  background: white;
  content: " ";
  height: 40px;
  width: 40px;
  position: absolute;
  pointer-events: none;
  top: -23px;
  z-index: 10;
}
<div class="contour">
  <div class="contour-holder">
  
  </div>
</div>