css中的button里面的文字上下边距不一样怎么调整成一样

问题遇到的现象和发生背景
问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

img

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .home{
            margin: 100px auto;
            width: 500px;
            height: 650px;
            /* background-color: rgb(250, 59, 59); */
        }
        .main_top{
            width: 100%;
            height: 380px;
            background-color: rgb(58, 58, 58);
            border-radius: 20px 20px 0px 0px;
            overflow: hidden;
        }
        .main_top .item{
            width: 100%;
            height: 35px;
            margin-bottom: 20px;
            /* background-color: blue; */
        }
        .main_top .item button{
            float: left;
            width: 45px;
            height: 31px;
            margin-right: 13px;
            border-radius: 4px;
            border-style: solid 1px rgb(237, 237, 237);
        }
        .main_top  .one{
            margin-top: 80px;
            /* margin-left: 40px; */
        }
        .main_top .item :nth-child(1){
            margin-left: 55px;
        }
        .main_top .item :nth-child(3){
            margin-right: 30px;
        }
        .main_top .item div{
            float: left;
            width: 200px;
            height: 31px;
            background-color:rgb(23, 23, 23) ;
            border-radius: 3px;
            /* padding-left: 12px; */
        }

        .main_top .item div span{
            line-height: 31px;
            font-size: 10px;
            color: rgb(192, 192, 192);
        }
        .main_buttom{
            box-sizing: border-box;
            width: 100%;
            height: 150px;
            padding-top: 25px;
            padding-left: 55px;
            background-color: rgb(23, 23, 23);
            border-radius: 0px 0px 20px 20px;
            color: rgb(200, 200, 200);
            font-size: 14px;
        }
        .main_buttom div button{
            display: inline-block;
            box-sizing: border-box;
            padding: 0px;
            width: 22px;
            height: 16px;
        }
    </style>
</head>
<body>
    <div class="main">
        <div class="home">
            <div class="main_top">
                <div class="item one">
                    <button>-</button>
                    <button>0</button>
                    <button>+</button>
                    <div>
                        <span class="price">单价:12.5元</span>
                        <span class="total">小计:0元</span>
                    </div>
                </div>
                <div class="item two">
                    <button>-</button>
                    <button>0</button>
                    <button>+</button>
                    <div>
                        <span class="price">单价:12.5元</span>
                        <span class="total">小计:0元</span>
                    </div>
                </div>
                <div class="item three">
                    <button>-</button>
                    <button>0</button>
                    <button>+</button>
                    <div>
                        <span class="price">单价:12.5元</span>
                        <span class="total">小计:0元</span>
                    </div>
                </div>
                <div class="item four">
                    <button>-</button>
                    <button>0</button>
                    <button>+</button>
                    <div>
                        <span class="price">单价:12.5元</span>
                        <span class="total">小计:0元</span>
                    </div>
                </div>
                <div class="item five">
                    <button>-</button>
                    <button>0</button>
                    <button>+</button>
                    <div>
                        <span class="price">单价:12.5元</span>
                        <span class="total">小计:0元</span>
                    </div>
                </div>
            </div>
            <div class="main_buttom">
                <div class="top">
                    <span>商品合计:</span>
                    <button>0</button>
                    <span></span>
                    <span>共花费了:</span>
                    <button>0</button>
                    <span></span>
                </div>
                <div class="buttom">
                    <span>其中最贵的商品单价是:</span>
                    <button>0</button>
                    <span></span>
                </div>
            </div>
        </div>
    </div>
</body>
</html>

.main_buttom div button{border:none} 加一个

.main_buttom div button 添加 line-height: 12px;

.main_buttom div button {
  display: inline-block;
  box-sizing: border-box;
  padding: 0px;
  width: 22px;
  height: 16px;
  line-height: 12px;
}