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
| .home {
| position: relative;
| margin: 0;
| padding: 0;
| height: 100%;
| width: 100%;
| overflow: hidden;
| }
| .tools {
| position: absolute;
| top: 96px;
| right: 400px;
| }
|
| .messageTool {
| position: absolute;
| top: 50%;
| left: 50%;
| z-index: 101;
| }
|
| .announcementTool {
| position: absolute;
| top: 120px;
| left: calc(50% - 300px);
| }
|
| .locationTool {
| position: absolute;
| top: 100px;
| left: 30px;
| }
| .functionTool {
| position: absolute;
| top: 180px;
| left: 400px;
| }
| .tableTool {
| position: absolute;
| top: 200px;
| right: 400px;
| z-index: 100;
| }
|
| .divPoint-custom {
| text-align: center;
| padding: 5px 10px;
| margin: 0;
| color: #fff;
| background: linear-gradient(rgba(27, 206, 212, 0.75), rgb(16 238 220));
| border-radius: 5px;
| max-height: 130px;
| user-select: none;
| }
|
| .divPoint-custom:after {
| content: "";
| position: absolute;
| bottom: -60px;
| left: calc(50% - 3px);
| display: block;
| width: 3px;
| height: 60px;
| border-right: 3px solid #2bcdbb;
| }
|
| .district-count {
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| width: 80px;
| height: 80px;
| background-color: #01ae65;
| border-radius: 50%;
| text-align: center;
| color: #fff;
| font-size: 14px;
| .name {
| font-size: 16px;
| margin-bottom: 5px;
| }
| }
| .district-count:hover {
| background-color: #ff5733; /* 悬停时的背景颜色 */
| }
|
|