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">
       

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


        </div>

    </div>

    <div class="context">
        <div>
            <table>
                <thead>
                    <tr>
                        <th>问题答卷</th>
                        <th>问题</th>
                        <th>答案</th>
                        <th>次数</th>
                        
                    </tr>

                    <tr>
                        <th>问卷1</th>
                        <th>你对我们的质量满意吗?</th>
                        <th>很满意</th>
                        <th>0</th>
                      
                       
                    </tr>

                     <tr>
                        <th>问卷2</th>
                        <th>你对我们的质量满意吗?</th>
                        <th>满意</th>
                        <th>0</th>
                      
                       
                    </tr>

                        <tr>
                        <th>问卷3</th>
                        <th>你对我们的质量满意吗?</th>
                        <th>一般</th>
                        <th>0</th>
                      
                       
                    </tr>

                        <tr>
                        <th>问卷2</th>
                        <th>你对我们的质量满意吗?</th>
                        <th>不满意</th>
                        <th>0</th>
                      
                       
                    </tr>


                        <tr>
                        <th>问卷2</th>
                        <th>你对我们的质量满意吗?</th>
                        <th>很差</th>
                        <th>0</th>
                      
                       
                    </tr>



                    


                </thead>

            </table>

        </div>


    </div>

    <div class="send">
       

    </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;
}