自动化立体仓库 - WCS系统
whycq
2023-09-06 5d6ea49e6f45e855a4368b15384c44bd9e0ae5ef
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
    margin: 0;
    padding: 0;
}
html,body {
    height: 100%;
    overflow: hidden;
}
@font-face{
    font-family:electronicFont;
    src:url(../font/DS-DIGIT.TTF)}
.container {
    height: 100%;
    width: 100%;
    background-image: url("../img/bg.jpg");
    background-size: 100% 100%;
}
.head {
    height: 10%;
    width: 100%;
    background-image: url("../img/head_bg.png");
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    line-height: 2;
}
.head-title {
    color: #f1f1f1;
    font-size: 2rem;
}
.body {
    width: 100%;
    height: 90%;
    display: flex;
}
.area {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.box {
    width: 98%;
    height: 45%;
    border: 1px solid rgba(25,186,139,.17);
    box-shadow: inset 0 0 15px rgba(25,186,139,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box-title {
    width: 100%;
    height: 15%;
    color: #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
}
.box-body {
    width: 95%;
    height: 85%;
}
.box-body2{
    width: 80%;
    height: 85%;
}
.box-body3{
    width: 20%;
    height: 85%;
}
.swiper {
    width: 100%;
    height: 90%;
}
.table-head {
    height: 40px;
    background-color: rgba(0, 54, 167, 0.4);
    color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size:18px;
    font-weight: 700;
}
.table-item {
    color: #FFF;
    text-align: center;
}
.table-td {
    display: flex;
    align-items: center;
    font-size: 16px;
}
.table-td2 {
    display: flex;
    align-items: center;
    font-size: 16px;
}
.table-td:nth-child(even) {
    background-color: rgba(90, 163, 172, 0.3);
}
.percentage {
    text-align: center;
    line-height: 100px;
    margin-top: 30px;
    margin-left: 20px;
    height: 100px;
    width: 100px;
    background-color: rgba(85, 255, 227, 0.56);
    border-radius: 50%;
    font-size: 32px;
    color: #ffffff;
    font-family: electronicFont;
}
.time-tools {
    position: absolute;
    margin-left: 80%;
    margin-top: 0.8%;
    width: 20%;
    height: 10%;
    text-align: center;
    color: #FFF;
 
}
.swiper-none {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}