智慧农业大数据平台
xiebin
2022-11-16 3dc278f10a4c3e3db7ce3a445bed710bdc88916e
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
.public-trace-table {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1208px;
    background-color: transparent;
    z-index: 99;
    font-size: 16px;
    box-shadow: inset 0px 0px 30px 1px rgba(33, 186, 196, 0.1600);
    border: 1px solid #69E2ED;
    background: rgba(20, 66, 104, 0.8);
 
    .header {
        position: relative;
        border-radius: 8px 8px 0 0;
        width: 100%;
        height: 58px;
        line-height: 58px;
        background: linear-gradient(96deg, #142B4B 0%, #0F1525 100%);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 
        .logo {
            position: aboslute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: #69E2ED;
        }
 
        .title {
            position: absolute;
            top: 0;
            left: 25px;
            font-size: 18px;
            font-weight: bold;
            color: #66DDE9;
        }
 
        .close {
            position: absolute;
            right: 20px;
            top: 0;
            left: auto;
            bottom: 0;
            margin: auto;
            width: 28px;
            height: 28px;
            cursor: pointer;
            opacity: 0.6;
        }
    }
 
    .content {
        display: flex;
        flex-direction: column;
        clear: both;
        width: 100%;
        height: 600px;
        margin-top: 0px;
        text-align: center;
        overflow: hidden;
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        border-radius: 0 0 8px 8px;
 
        .action-bar {
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 74px;
 
            &>.search {
 
                .search-input {
 
                    input {
                        color: #fff;
                        background: rgba(33, 186, 196, 0.2);
                        border-color: #21BAC4;
                    }
                }
            }
 
            .btn-grounp {
 
                .search {
                    color: #fff;
                    background: #21BAC4;
                    border-color: #21BAC4;
                }
 
                .reset {
                    color: #fff;
                    background: rgba(255, 255, 255, .2);
                    border-color: rgba(255, 255, 255, .2);
                }
            }
 
        }
 
        .table-list {
            flex: 1;
            display: flex;
            flex-direction: column;
 
            .t-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                height: 56px;
                font-size: 18px;
                font-weight: bold;
                color: #fff;
                background: linear-gradient(90deg, rgba(49, 137, 153, .5) 0%, rgba(49, 161, 168, .5) 44%, rgba(49, 137, 153, .5) 100%);
 
                .sym-style {
                    text-align: left;
                }
            }
 
            .t-body {
                flex: 1;
                overflow-y: auto;
            }
 
            .table-list {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                height: 94px;
                border-bottom: 1px solid #E8ECEF;
                color: #fff;
 
                .sym-style {
                    display: flex;
                    justify-content: space-between;
 
                    .l {
                        display: flex;
                        align-items: center;
 
                        img {
                            width: 94px;
                            height: 56px;
                        }
 
                    }
 
                    .r {
                        margin-left: 20px;
                        flex: 1;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: space-around;
 
                        .title {
                            font-size: 18px;
                            font-weight: bold;
                        }
 
                        .unit {
                            font-size: 14px;
                        }
                    }
                }
            }
 
            .table-list:last-child {
                border: none;
            }
 
            .t-header>div:first-child,
            .table-list>div:first-child {
                margin-left: 30px;
                flex: 1;
            }
 
            .t-header>div:nth-child(2),
            .table-list>div:nth-child(2) {
                width: 200px;
            }
 
            .t-header>div:nth-child(3),
            .table-list>div:nth-child(3) {
                width: 240px;
            }
 
            .t-header>div:nth-child(4),
            .table-list>div:nth-child(4) {
                width: 260px;
            }
 
            .t-header>div:nth-child(5),
            .table-list>div:nth-child(5) {
                width: 200px;
 
                .look {
                    color: #00F0FF;
                    background: rgba(0, 240, 255, 0.2);
                    border-color: #00F0FF;
                }
            }
 
        }
    }
}