<!--
 * @Author: 代码侠
 * @Date: 2021-10-31 15:33:57
 * @LastEditors: achao@achao.cc
 * @LastEditTime: 2021-10-31 15:35:10
 * @Description: 18000599588
-->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .order {
            height: 60px;
            line-height: 60px;
            text-align: center;
        }
        .order .line {
            display: inline-block;
            width: 500px;
            border-top: 1px solid #ccc ;
        }
        .order .txt {
            color: #686868;
            vertical-align: -4px;
        }
    </style>
</head>
<body>
    <div class="order">
        <span class="line"></span>
        <span class="txt">产品清单</span>
        <span class="line"></span>
    </div>
</body>
</html>