SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>云配送-回访管理-问题设置</title>
</head>
<body>
    <div class="header">
        <div>问题设置</div>
        <div class="nav">
          <span>
        出题时间
        </span>
           
          <input type="date">
        <span></span>   
        <input type="date">


        <button class="button" type="button">
        问题内容
        </button>

        <input type="text">

         <button class="button" type="button">
        查询
        </button>

         <button class="button" type="button">
        添加
        </button>

         <button class="button" type="button">
        修改
        </button>

         <button class="button" type="button">
        删除
        </button>


        </div>

    </div>

    <div class="context">
        <div>
            <table>
                <thead>
                    <tr>
                        <th></th>
                        <th>序号</th>
                        <th>问题内容</th>
                        <th>添加时间</th>
                        <th>添加人员</th>
                        <th>备注</th>
                        
                    </tr>

                    <tr>
                        <th><input type="checkbox"></th>
                        <th>1</th>
                        <th>你对我们的液化气质量怎么看?</th>
                        <th>2020/12/22</th>
                        <th>张昭</th>
                        <th>晦气</th>
                      
                       
                    </tr>

                </thead>

            </table>

        </div>


    </div>

    <div class="send">
        <span>
            问题答案:

        </span>
        

    </div>



   <div class="footer">
       <ul class="page">
            <li><a href="#">上一页</a></li>
            <li><a href="#">1</a></li>
            <li><a class="active" href="#">2</a></li>
            <li><a href="#">3</a></li>
            <li><a href="#">4</a></li>
            <li><a href="#">5</a></li>
            <li><a href="#">6</a></li>
            <li><a href="#">7</a></li>
            <li><a href="#">下一页</a></li>

       </ul>
    </div>


</body>
</html>
/* 分页样式 */

ul.page {
    display: inline-block;
    padding: 0;
    margin: 0;
}

ul.page li {
    display: inline;
    }

ul.page li a {
    color: black;
    float: left;
    padding: 8px 15px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

ul.page li a.active {
    background-color: darkcyan;
    color: white;
    border: 1px solid darkcyan;
}

ul.page li a:hover:not(.active) {
    background-color: #ddd;
}