king
2024-05-27 31aa3ba8a4b028d04c43b5960e23820abffd1ad1
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
.map-wrap {
  min-height: 84px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
 
  >.anticon-tool {
    position: absolute;
    z-index: 3;
    font-size: 16px;
    right: 1px;
    top: 1px;
    cursor: pointer;
    padding: 5px;
    background: rgba(255, 255, 255, 0.55);
  }
  .map-image {
    background: #ffffff;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
  }
}
 
.map-wrap::after {
  display: block;
  content: ' ';
  clear: both;
}
.map-wrap:hover {
  z-index: 1;
  box-shadow: 0px 0px 4px #1890ff;
}