liuyg
2021-07-02 25ce610f6ecca7325e7a743dc032c4a76559c63d
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.jimu-widget-SplitScreen {
  position: fixed !important;
  top: 72px !important;
  right: 60px !important;
  width: auto !important;
  height: auto !important;
  background-color: rgb(207, 207, 207);
  font-size: 14px;
  /* border: 1px solid rgb(69, 154, 251); */
  /* opacity      : .8; */
  color: rgb(0, 0, 0);
  font-size: 16px;
  z-index: 101;
  border-radius: 10px 0 10px 10px;
  display: none;
  box-shadow: 0 0 8px #fff;
}
 
.jimu-widget-SplitScreen .split-select {
  position: relative;
  margin: 6px;
  width: auto;
  height: auto;
}
 
.jimu-widget-SplitScreen .split-select .close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  background: #3E9FFC;
  border-radius: 50%;
  border: 1px solid #3E9FFC;
  cursor: pointer;
}
 
.jimu-widget-SplitScreen .split-select button {
  width: 160px;
  height: 30px;
  background: #fff;
  border-radius: 5px;
  font-size: 14px;
  padding: 0 6px;
  text-align: left;
  border: none;
  cursor: pointer;
}
 
.jimu-widget-SplitScreen .split-select button i {
  float: right;
}
 
.jimu-widget-SplitScreen .split-select button:focus {
  outline: none;
}
 
.jimu-widget-SplitScreen .split-select .split-select-option {
  display: none;
  margin-top: 6px;
  border-radius: 10px;
  color: #333;
  font-size: 14px;
  background: #fff;
}
 
.jimu-widget-SplitScreen .split-select .split-select-option ul {
  padding: 10px 0;
}
 
.jimu-widget-SplitScreen .split-select .split-select-option li {
  padding: 2px 8px;
  height: 26px;
  cursor: pointer;
 
}
 
.jimu-widget-SplitScreen .split-select .split-select-option li:hover {
  color: #fff;
  background-color: #3E9FFC;
}
 
#split_up {
  position: fixed;
  background-color: white;
  left: 50%;
  bottom: 50%;
  width: 2px;
  height: 50%;
  -webkit-transform: translate(-50%, 0);
}
 
#split_bottom {
  position: fixed;
  background-color: white;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 50%;
  -webkit-transform: translate(-50%, 0);
}
 
#split_left {
  position: fixed;
  background-color: white;
  right: 50%;
  bottom: 50%;
  height: 2px;
  width: 50%;
  -webkit-transform: translate(0, -50%);
}
 
#split_right {
  position: fixed;
  background-color: white;
  left: 50%;
  bottom: 50%;
  height: 2px;
  width: 50%;
  -webkit-transform: translate(0, -50%);
}
 
#split_vertical_trisection_left {
  position: fixed;
  background-color: white;
  left: 33.33%;
  top: 0;
  height: 100%;
  width: 2px;
}
 
#split_vertical_trisection_right {
  position: fixed;
  background-color: white;
  right: 33.33%;
  top: 0;
  height: 100%;
  width: 2px;
}