<div class="quarter-circle"></div>
.quarter-circle {
width:50px;
height: 50px;
background-color: transparent;
border: 1px solid transparent; /* 设置边框大小为20px,颜色为透明 */
border-top-color: blue; /* 设置上边框颜色为蓝色,其他三个方向将保持透明 */
border-left-color: blue; /* 设置左边框颜色为蓝色 */
border-radius: 100% 0 0 0; /* 设置圆弧角度 */
}