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
| .tool-ranging,
| .tool-area {
| position: absolute;
| top: 40px;
| right: 440px;
| width: 180px;
| height: 106px;
| background: #fff;
| border-radius: 8px;
|
| .header {
| position: relative;
| border-radius: 8px 8px 0 0;
| width: 100%;
| height: 36px;
| line-height: 36px;
| text-align: left;
| background-color: #2196f3;
|
| .title {
| padding-left: 10px;
|
| img {
| width: 20px;
| height: 20px;
| vertical-align: middle;
| }
|
| span {
| margin-left: 6px;
| display: inline-block;
| vertical-align: middle;
| color: #fff;
| }
| }
|
| .close {
| position: absolute;
| right: 6px;
| top: 0;
| left: auto;
| bottom: 0;
| margin: auto;
| width: 16px;
| height: 16px;
| cursor: pointer;
| color: #fff;
| }
| }
|
| .content {
| line-height: 70px;
| text-align: center;
| }
| }
|
|