智慧农业大数据平台
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
@import "./element-ui.scss";
@import "./publicBox/arc-nav-bar.scss";
@import "./publicBox/market-nav-bar.scss";
@import "./publicBox/trace-table.scss";
@import "./publicBox/farm-oper-table.scss";
@import "./publicBox/equirment-station-details.scss";
@import "./publicBox/equirment-vid-details.scss";
 
@import "./publicNapeBox/nape-plot-details.scss";
 
html,
body {
    font-size: 16px;
 
 
    div,
    ul {
        scrollbar-width: thin;
    }
 
}
 
p {
    margin: 0;
    padding: 0;
}
 
 
ul {
    margin: 0;
    padding: 0;
 
    li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
}
 
 
.deblurring {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
 
 
 
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 4px;
    /*height: 4px;*/
}
 
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}
 
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}
 
 
.div-icon {
    background: transparent !important;
}
 
.farm-map-icon {
    font-weight: bold;
    color: rgb(252, 166, 7);
    text-align: center;
 
    img {
        width: 24px;
    }
}
 
.land-map-icon {
    font-weight: bold;
    color: rgb(252, 166, 7);
    text-align: center;
 
    img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }
}