surprise
2023-12-29 18377dc5d61caf3a6a0835e17015ac2601f8709d
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
html,body{
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
.treePanel {
  width: 100%;
  height: 100%;
}
 
#newAndUpdateInput {
  z-index: 999;
  position: fixed;
  width: 260px;
  display: none;
  border: 1px solid #212e3e;
  background-color: rgba(45, 72, 68, .8);
  padding: 1px;
  left: 50%;
  height: 60px;
  top: 80px;
  transform: translate(-50%, 0);
  /* 50%为自身尺寸的一半 */
  line-height: 60px;
  padding: 5px;
}
 
#newAndUpdateInput input {
  clear: both;
  width: 140px !important;
  height: 33px !important;
  font-size: 12px !important;
  float: left;
  position: inherit;
  top: 15px !important;
}
 
#newAndUpdateInput .addgroupbtn {
  right: 65px;
  top: 16px !important;
  position: inherit;
}
#newAndUpdateInput .cancelgroupbtn {
  right: 10px;
  top: 16px !important;
  position: inherit;
}
 
#rMenu {
  z-index: 999;
  position: absolute;
  /*width: 100px;*/
  display: none;
  border: 1px solid #fff;
  /*background-color: rgba(25, 110, 169, .9);*/
  /*background-color: #196ea9;*/
  padding: 1px;
}
 
#rMenu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
 
#rMenu ul li {
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  color: white;
  /*background-color: #DFDFDF;*/
  /*border-bottom: 1px solid #fff;*/
  padding-left: 10px;
  padding-right: 10px;
}
 
#rMenu ul li:hover {
  background: rgba(45, 52, 68, .8);
}