html {
|
height: 100%;
|
}
|
body {
|
height: 100%;
|
}
|
|
/* 库位组 */
|
.stock-group .item {
|
float: left;
|
border-top: 1px solid #333;
|
border-bottom: 1px solid #333;
|
border-left: 1px solid #333;
|
}
|
.stock-group .item:last-child {
|
border-right: 1px solid #333;
|
}
|
.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;
|
}
|