#
vincent
2020-05-29 544a87d197c1522be08170e86b3cfdd8b1431646
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <meta name="renderer" content="webkit">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <link rel="stylesheet" type="text/css" href="../static/css/normalize.css">
    <link rel="stylesheet" type="text/css" href="../static/css/common.css">
    <link rel="stylesheet" type="text/css" href="../static/css/console.css">
    <style>
        html {
            height: 100%;
        }
        body {
            height: 100%;
            /*background-color: #007DDB;*/
        }
 
        /* 头部 */
        header {
            height: 20%;
            border: 1px solid red;
        }
 
        /* 主体 */
        main {
            height: 80%;
        }
 
 
    </style>
</head>
<body>
<header>
    <span>描述信息</span>
</header>
<main>
    <!-- 左输送线 -->
    <div class="site">
 
    </div>
    <!-- 货架 + 堆垛机 -->
    <div class="main-part">
        <!-- 货架 -->
        <div class="stock-group">
            <button class="item">1</button>
            <button class="item">2</button>
            <button class="item">3</button>
            <button class="item">4</button>
            <button class="item">5</button>
            <button class="item">6</button>
            <button class="item">7</button>
            <button class="item">8</button>
            <button class="item">9</button>
            <button class="item">10</button>
            <button class="item">11</button>
            <button class="item">12</button>
            <button class="item">13</button>
            <button class="item">14</button>
            <button class="item">15</button>
            <button class="item">16</button>
            <button class="item">17</button>
            <button class="item">18</button>
            <button class="item">19</button>
            <button class="item">20</button>
            <button class="item">21</button>
            <button class="item">22</button>
            <button class="item">23</button>
            <button class="item">24</button>
        </div>
        <!-- 堆垛机 -->
        <div class="crn">
            <hr class="pathway">
            <button class="machine">堆垛机</button>
        </div>
    </div>
    <!-- 右输送线 -->
    <div class="site">
 
    </div>
</main>
</body>
</html>