自动化立体仓库 - WCS系统
#
vincent
2020-05-29 5988f8fc27f462c0252198ffbcb8a4980ff4d09e
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
html {
    height: 100%;
}
body {
    height: 100%;
}
/* 头部 */
header {
    height: 20%;
    border: 1px solid red;
}
/* 主体 */
main {
    height: 80%;
    position: relative;
}
/* 排号 */
.row-no {
    margin-left: 50px;
}
 
/* 库位组 */
.stock-group .item {
    float: left;
    border-top: 1px solid #333!important;
    border-bottom: 1px solid #333!important;
    border-left: 1px solid #333!important;
    border-right: none;
}
.stock-group .item:last-child {
    border-right: 1px solid #333!important;
}
.stock-group::after, .stock-group::before {
    content: "";
    display: table;
    clear: both;
}
button.item {
    font-size: 13px;
    padding: 1px 1px 1px 1px;
    width: 20px;
    height: 20px;
    outline: none;
    cursor: pointer;
    color: #333;
    background-color: transparent;
    transition: 0.4s;
}
button.item:hover {
    background-color: #333;
    color: #fff;
}
 
/* 堆垛机 */
.machine {
    background-color: #fff;
    height: 20px;
    width: 80px;
    background-image: url("../image/Crane_auto.png");
    background-repeat: no-repeat;
    background-size:100% 100%;
    background-position: top center;
    cursor: pointer;
}
 
/* 堆垛机轨道 */
.pathway {
    border: 1px solid #000;
    position: absolute;
    background-color:#eee!important;
    color: #000000 !important;
    width: 100%;
    margin-top: 10px;
    z-index: -1;
}