1. 方式一:通过设置li的font-size的值来实现改变disc点的大小
<li style="font-size:20px;"><a style="font-size:10px;"></a></li>
2. 方式二:通过使用before伪类来自定义disc点的大小
<style>
li {
list-style: none;
}
li:before {
content: "";
display: inline-block;
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
margin-right:5px;
}
</style>
<li>芜湖网站建设套餐2280元</li>