<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
padding: 0;
margin: 0;
}
.box{
display: flex;
align-items: center;
position: relative;
width: 115px;
height: 40px;
margin: 100px auto;
line-height: 40px;
background: #fa610e;
color: #fff;
border-radius: 0 20px 20px 0;
}
.box span{
width: 9px;
height: 9px;
margin: 0 10px 0 20px;
background-color: #fff;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="box">
<span></span>
分析
</div>
</body>
</html>
相关分类