<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div{
background-color: bisque;
height: 50px;
width: 680px;
margin: 0 auto;
}
button{
width: 100px;
height: 30px;
margin-left: 4%;
border: 0;
background-color: darkgrey;
margin-top: 10px;
border-radius: 80px 80px 80px 80px;
color: white;
}
#a{
background-color: brown;
}
</style>
</head>
<body>
<div>
<button>电视影音</button>
<button>洗箱洗衣机</button>
<button id="a">空调</button>
<button>厨卫</button>
<button>小家电</button>
</div>
</body>
</html>