@labelbee/lb-components 1.5.0 → 1.6.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (242) hide show
  1. package/dist/assets/annotation/lineTool/icon_line.svg.js +1 -0
  2. package/dist/assets/annotation/pointCloudTool/changePointCloudValid.svg.js +1 -0
  3. package/dist/assets/annotation/pointCloudTool/copy.svg.js +1 -0
  4. package/dist/assets/annotation/pointCloudTool/nextBox.svg.js +1 -0
  5. package/dist/assets/annotation/pointCloudTool/patse.svg.js +1 -0
  6. package/dist/assets/annotation/pointCloudTool/prevBox.svg.js +1 -0
  7. package/dist/assets/annotation/pointCloudTool/rotate180_black.svg.js +1 -0
  8. package/dist/assets/annotation/pointCloudTool/selectAll.svg.js +1 -0
  9. package/dist/assets/annotation/pointCloudTool/selectMultiple.svg.js +1 -0
  10. package/dist/assets/annotation/pointTool/icon_point.svg.js +1 -0
  11. package/dist/assets/annotation/polygonTool/icon_polygon.svg.js +1 -0
  12. package/dist/assets/annotation/rectTool/icon_rect.svg.js +1 -0
  13. package/dist/assets/annotation/rectTool/{icon_rectPattern.svg.js → icon_rect_a.svg.js} +0 -0
  14. package/dist/assets/{cssIcon/annotation/icon_clearSmall.svg → icons/25541b4d.svg} +0 -0
  15. package/dist/assets/icons/25ef334b.svg +8 -0
  16. package/dist/assets/icons/7eadb9c4.svg +5 -0
  17. package/dist/assets/icons/9d70807.svg +5 -0
  18. package/dist/assets/icons/c5b4262e.png +0 -0
  19. package/dist/assets/{cssIcon/slide_btn.svg → icons/cc550fff.svg} +0 -0
  20. package/dist/assets/{cssIcon/annotation/icon_clearSmall_a.svg → icons/dc9b6bfc.svg} +0 -0
  21. package/dist/assets/icons/e4f0b7fe.png +0 -0
  22. package/dist/components/AnnotationView/index.js +1 -1
  23. package/dist/components/customResizeHook/index.js +1 -1
  24. package/dist/components/pointCloudView/PointCloud2DView.js +1 -0
  25. package/dist/components/pointCloudView/PointCloud3DView.js +1 -0
  26. package/dist/components/pointCloudView/PointCloudBackView.js +1 -0
  27. package/dist/components/pointCloudView/PointCloudContext.js +1 -0
  28. package/dist/components/pointCloudView/PointCloudInfos.js +1 -0
  29. package/dist/components/pointCloudView/PointCloudLayout.js +1 -0
  30. package/dist/components/pointCloudView/PointCloudListener.js +1 -0
  31. package/dist/components/pointCloudView/PointCloudSideView.js +1 -0
  32. package/dist/components/pointCloudView/PointCloudTopView.js +1 -0
  33. package/dist/components/pointCloudView/hooks/useBoxes.js +1 -0
  34. package/dist/components/pointCloudView/hooks/usePointCloudViews.js +1 -0
  35. package/dist/components/pointCloudView/hooks/usePolygon.js +1 -0
  36. package/dist/components/pointCloudView/hooks/useRotate.js +1 -0
  37. package/dist/components/pointCloudView/hooks/useSingleBox.js +1 -0
  38. package/dist/components/pointCloudView/hooks/useStatus.js +1 -0
  39. package/dist/components/pointCloudView/index.js +1 -0
  40. package/dist/components/videoPlayer/components/controller/index.js +1 -1
  41. package/dist/components/videoPlayer/index.js +1 -1
  42. package/dist/components/videoPlayer/utils.js +1 -1
  43. package/dist/data/enums/ToolType.js +1 -1
  44. package/dist/hooks/annotation.js +1 -0
  45. package/dist/index.css +273 -43
  46. package/dist/index.js +1 -1
  47. package/dist/store/annotation/actionCreators.js +1 -1
  48. package/dist/store/annotation/map.js +1 -0
  49. package/dist/store/annotation/reducer.js +1 -1
  50. package/dist/types/App.d.ts +4 -3
  51. package/dist/types/components/AnnotationView/index.d.ts +2 -2
  52. package/dist/types/components/pointCloudView/PointCloud2DView.d.ts +6 -0
  53. package/dist/types/components/pointCloudView/PointCloud3DView.d.ts +6 -0
  54. package/dist/types/components/pointCloudView/PointCloudBackView.d.ts +3 -0
  55. package/dist/types/components/pointCloudView/PointCloudContext.d.ts +31 -0
  56. package/dist/types/components/pointCloudView/PointCloudInfos.d.ts +19 -0
  57. package/dist/types/components/pointCloudView/PointCloudLayout.d.ts +6 -0
  58. package/dist/types/components/pointCloudView/PointCloudListener.d.ts +6 -0
  59. package/dist/types/components/pointCloudView/PointCloudSideView.d.ts +6 -0
  60. package/dist/types/components/pointCloudView/PointCloudTopView.d.ts +6 -0
  61. package/dist/types/components/pointCloudView/hooks/useBoxes.d.ts +10 -0
  62. package/dist/types/components/pointCloudView/hooks/usePointCloudViews.d.ts +59 -0
  63. package/dist/types/components/pointCloudView/hooks/usePolygon.d.ts +9 -0
  64. package/dist/types/components/pointCloudView/hooks/useRotate.d.ts +8 -0
  65. package/dist/types/components/pointCloudView/hooks/useSingleBox.d.ts +13 -0
  66. package/dist/types/components/pointCloudView/hooks/useStatus.d.ts +11 -0
  67. package/dist/types/components/pointCloudView/index.d.ts +15 -0
  68. package/dist/types/components/videoPlayer/TagToolInstanceAdaptor.d.ts +1 -1
  69. package/dist/types/components/videoPlayer/index.d.ts +1 -1
  70. package/dist/types/data/enums/ToolType.d.ts +3 -1
  71. package/dist/types/hooks/annotation.d.ts +24 -0
  72. package/dist/types/index.d.ts +1 -0
  73. package/dist/types/store/annotation/actionCreators.d.ts +4 -4
  74. package/dist/types/store/annotation/map.d.ts +13 -0
  75. package/dist/types/store/annotation/reducer.d.ts +1 -1
  76. package/dist/types/utils/PageOperator.d.ts +1 -1
  77. package/dist/types/utils/StepUtils.d.ts +7 -0
  78. package/dist/types/utils/ToolUtils.d.ts +10 -0
  79. package/dist/types/utils/data.d.ts +1 -1
  80. package/dist/types/utils/dom.d.ts +1 -1
  81. package/dist/types/utils/index.d.ts +1 -1
  82. package/dist/types/views/MainView/annotationOperation/index.d.ts +1 -1
  83. package/dist/types/views/MainView/sidebar/GeneralOperation/ActionsConfirm.d.ts +12 -0
  84. package/dist/types/views/MainView/sidebar/GeneralOperation/index.d.ts +5 -1
  85. package/dist/types/views/MainView/sidebar/GeneralOperation/useOperationList.d.ts +12 -0
  86. package/dist/types/views/MainView/sidebar/PointCloudToolSidebar/index.d.ts +11 -0
  87. package/dist/types/views/MainView/sidebar/ToolIcons.d.ts +11 -0
  88. package/dist/types/views/MainView/sidebar/ToolStyle/index.d.ts +1 -1
  89. package/dist/types/views/MainView/sidebar/index.d.ts +1 -0
  90. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.d.ts +3 -0
  91. package/dist/types/views/MainView/toolFooter/Pagination.d.ts +12 -2
  92. package/dist/types/views/MainView/toolFooter/ZoomController/index.d.ts +14 -4
  93. package/dist/types/views/MainView/toolFooter/index.d.ts +5 -8
  94. package/dist/types/views/MainView/toolHeader/ExportData/index.d.ts +1 -1
  95. package/dist/utils/StepUtils.js +1 -1
  96. package/dist/utils/ToolUtils.js +1 -0
  97. package/dist/utils/data.js +1 -1
  98. package/dist/utils/dom.js +1 -1
  99. package/dist/utils/index.js +1 -1
  100. package/dist/views/MainView/annotationOperation/index.js +1 -1
  101. package/dist/views/MainView/index.js +1 -1
  102. package/dist/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js +1 -0
  103. package/dist/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  104. package/dist/views/MainView/sidebar/GeneralOperation/useOperationList.js +1 -0
  105. package/dist/views/MainView/sidebar/PointCloudToolSidebar/index.js +1 -0
  106. package/dist/views/MainView/sidebar/SwitchAttributeList/index.js +1 -1
  107. package/dist/views/MainView/sidebar/ToolIcons.js +1 -0
  108. package/dist/views/MainView/sidebar/index.js +1 -1
  109. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  110. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js +1 -0
  111. package/dist/views/MainView/toolFooter/Pagination.js +1 -1
  112. package/dist/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js +1 -1
  113. package/dist/views/MainView/toolFooter/ZoomController/index.js +1 -1
  114. package/dist/views/MainView/toolFooter/index.js +1 -1
  115. package/es/App.js.map +1 -1
  116. package/es/assets/annotation/lineTool/icon_line.svg.js +1 -0
  117. package/es/assets/annotation/lineTool/icon_line.svg.js.map +1 -0
  118. package/es/assets/annotation/pointCloudTool/changePointCloudValid.svg.js +1 -0
  119. package/es/assets/annotation/pointCloudTool/changePointCloudValid.svg.js.map +1 -0
  120. package/es/assets/annotation/pointCloudTool/copy.svg.js +1 -0
  121. package/es/assets/annotation/pointCloudTool/copy.svg.js.map +1 -0
  122. package/es/assets/annotation/pointCloudTool/nextBox.svg.js +1 -0
  123. package/es/assets/annotation/pointCloudTool/nextBox.svg.js.map +1 -0
  124. package/es/assets/annotation/pointCloudTool/patse.svg.js +1 -0
  125. package/es/assets/annotation/pointCloudTool/patse.svg.js.map +1 -0
  126. package/es/assets/annotation/pointCloudTool/prevBox.svg.js +1 -0
  127. package/es/assets/annotation/pointCloudTool/prevBox.svg.js.map +1 -0
  128. package/es/assets/annotation/pointCloudTool/rotate180_black.svg.js +1 -0
  129. package/es/assets/annotation/pointCloudTool/rotate180_black.svg.js.map +1 -0
  130. package/es/assets/annotation/pointCloudTool/selectAll.svg.js +1 -0
  131. package/es/assets/annotation/pointCloudTool/selectAll.svg.js.map +1 -0
  132. package/es/assets/annotation/pointCloudTool/selectMultiple.svg.js +1 -0
  133. package/es/assets/annotation/pointCloudTool/selectMultiple.svg.js.map +1 -0
  134. package/es/assets/annotation/pointTool/icon_point.svg.js +1 -0
  135. package/es/assets/annotation/pointTool/icon_point.svg.js.map +1 -0
  136. package/es/assets/annotation/polygonTool/icon_polygon.svg.js +1 -0
  137. package/es/assets/annotation/polygonTool/icon_polygon.svg.js.map +1 -0
  138. package/es/assets/annotation/rectTool/icon_rect.svg.js +1 -0
  139. package/es/assets/annotation/rectTool/icon_rect.svg.js.map +1 -0
  140. package/es/assets/annotation/rectTool/icon_rectPattern.svg.js +4 -1
  141. package/es/assets/annotation/rectTool/icon_rect_a.svg.js +1 -0
  142. package/es/assets/annotation/rectTool/icon_rect_a.svg.js.map +1 -0
  143. package/es/components/AnnotationView/index.js +1 -1
  144. package/es/components/AnnotationView/index.js.map +1 -1
  145. package/es/components/customResizeHook/index.js +1 -1
  146. package/es/components/customResizeHook/index.js.map +1 -1
  147. package/es/components/pointCloudView/PointCloud2DView.js +1 -0
  148. package/es/components/pointCloudView/PointCloud2DView.js.map +1 -0
  149. package/es/components/pointCloudView/PointCloud3DView.js +1 -0
  150. package/es/components/pointCloudView/PointCloud3DView.js.map +1 -0
  151. package/es/components/pointCloudView/PointCloudBackView.js +1 -0
  152. package/es/components/pointCloudView/PointCloudBackView.js.map +1 -0
  153. package/es/components/pointCloudView/PointCloudContext.js +1 -0
  154. package/es/components/pointCloudView/PointCloudContext.js.map +1 -0
  155. package/es/components/pointCloudView/PointCloudInfos.js +1 -0
  156. package/es/components/pointCloudView/PointCloudInfos.js.map +1 -0
  157. package/es/components/pointCloudView/PointCloudLayout.js +1 -0
  158. package/es/components/pointCloudView/PointCloudLayout.js.map +1 -0
  159. package/es/components/pointCloudView/PointCloudListener.js +1 -0
  160. package/es/components/pointCloudView/PointCloudListener.js.map +1 -0
  161. package/es/components/pointCloudView/PointCloudSideView.js +1 -0
  162. package/es/components/pointCloudView/PointCloudSideView.js.map +1 -0
  163. package/es/components/pointCloudView/PointCloudTopView.js +1 -0
  164. package/es/components/pointCloudView/PointCloudTopView.js.map +1 -0
  165. package/es/components/pointCloudView/data.js +4 -0
  166. package/es/components/pointCloudView/data.js.map +1 -0
  167. package/es/components/pointCloudView/hooks/useBoxes.js +1 -0
  168. package/es/components/pointCloudView/hooks/useBoxes.js.map +1 -0
  169. package/es/components/pointCloudView/hooks/usePointCloudViews.js +1 -0
  170. package/es/components/pointCloudView/hooks/usePointCloudViews.js.map +1 -0
  171. package/es/components/pointCloudView/hooks/usePolygon.js +1 -0
  172. package/es/components/pointCloudView/hooks/usePolygon.js.map +1 -0
  173. package/es/components/pointCloudView/hooks/useRotate.js +1 -0
  174. package/es/components/pointCloudView/hooks/useRotate.js.map +1 -0
  175. package/es/components/pointCloudView/hooks/useSingleBox.js +1 -0
  176. package/es/components/pointCloudView/hooks/useSingleBox.js.map +1 -0
  177. package/es/components/pointCloudView/hooks/useStatus.js +1 -0
  178. package/es/components/pointCloudView/hooks/useStatus.js.map +1 -0
  179. package/es/components/pointCloudView/index.js +1 -0
  180. package/es/components/pointCloudView/index.js.map +1 -0
  181. package/es/components/videoPlayer/components/controller/index.js +1 -1
  182. package/es/components/videoPlayer/components/controller/index.js.map +1 -1
  183. package/es/components/videoPlayer/index.js +1 -1
  184. package/es/components/videoPlayer/index.js.map +1 -1
  185. package/es/components/videoPlayer/utils.js +1 -1
  186. package/es/components/videoPlayer/utils.js.map +1 -1
  187. package/es/data/enums/ToolType.js +1 -1
  188. package/es/data/enums/ToolType.js.map +1 -1
  189. package/es/hooks/annotation.js +1 -0
  190. package/es/hooks/annotation.js.map +1 -0
  191. package/es/hooks/useSize.js.map +1 -1
  192. package/es/index.css +1364 -0
  193. package/es/index.js +1 -1
  194. package/es/index.js.map +1 -1
  195. package/es/store/annotation/actionCreators.js +1 -1
  196. package/es/store/annotation/actionCreators.js.map +1 -1
  197. package/es/store/annotation/map.js +1 -0
  198. package/es/store/annotation/map.js.map +1 -0
  199. package/es/store/annotation/reducer.js +1 -1
  200. package/es/store/annotation/reducer.js.map +1 -1
  201. package/es/utils/StepUtils.js +1 -1
  202. package/es/utils/StepUtils.js.map +1 -1
  203. package/es/utils/ToolUtils.js +1 -0
  204. package/es/utils/ToolUtils.js.map +1 -0
  205. package/es/utils/data.js +1 -1
  206. package/es/utils/data.js.map +1 -1
  207. package/es/utils/dom.js +1 -1
  208. package/es/utils/dom.js.map +1 -1
  209. package/es/utils/index.js +1 -1
  210. package/es/utils/index.js.map +1 -1
  211. package/es/views/MainView/annotationOperation/index.js +1 -1
  212. package/es/views/MainView/annotationOperation/index.js.map +1 -1
  213. package/es/views/MainView/index.js +1 -1
  214. package/es/views/MainView/index.js.map +1 -1
  215. package/es/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js +1 -0
  216. package/es/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js.map +1 -0
  217. package/es/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  218. package/es/views/MainView/sidebar/GeneralOperation/index.js.map +1 -1
  219. package/es/views/MainView/sidebar/GeneralOperation/useOperationList.js +1 -0
  220. package/es/views/MainView/sidebar/GeneralOperation/useOperationList.js.map +1 -0
  221. package/es/views/MainView/sidebar/PointCloudToolSidebar/index.js +1 -0
  222. package/es/views/MainView/sidebar/PointCloudToolSidebar/index.js.map +1 -0
  223. package/es/views/MainView/sidebar/SwitchAttributeList/index.js +1 -1
  224. package/es/views/MainView/sidebar/SwitchAttributeList/index.js.map +1 -1
  225. package/es/views/MainView/sidebar/ToolIcons.js +1 -0
  226. package/es/views/MainView/sidebar/ToolIcons.js.map +1 -0
  227. package/es/views/MainView/sidebar/index.js +1 -1
  228. package/es/views/MainView/sidebar/index.js.map +1 -1
  229. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  230. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js.map +1 -1
  231. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js +1 -0
  232. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js.map +1 -0
  233. package/es/views/MainView/toolFooter/Pagination.js +1 -1
  234. package/es/views/MainView/toolFooter/Pagination.js.map +1 -1
  235. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js +1 -1
  236. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js.map +1 -1
  237. package/es/views/MainView/toolFooter/ZoomController/index.js +1 -1
  238. package/es/views/MainView/toolFooter/ZoomController/index.js.map +1 -1
  239. package/es/views/MainView/toolFooter/index.js +1 -1
  240. package/es/views/MainView/toolFooter/index.js.map +1 -1
  241. package/package.json +14 -13
  242. package/dist/index.css.map +0 -1
package/es/index.css ADDED
@@ -0,0 +1,1364 @@
1
+ @charset "UTF-8";
2
+ .bee-layout {
3
+ position: relative;
4
+ overflow: hidden;
5
+ height: 100vh;
6
+ }
7
+ .bee-layout__header, .bee-layout__footer {
8
+ flex-shrink: 0;
9
+ height: auto;
10
+ background: transparent;
11
+ padding: 0;
12
+ line-height: inherit;
13
+ max-height: 60px;
14
+ }
15
+ .bee-layout__container {
16
+ flex-direction: row;
17
+ }
18
+ .bee-layout__side {
19
+ background: transparent;
20
+ overflow: hidden;
21
+ position: relative;
22
+ z-index: 10;
23
+ border-top: 1px solid #e2e2e2;
24
+ }
25
+ .bee-layout__side .ant-collapse-borderless > .ant-collapse-item {
26
+ border-bottom: 1px solid #eee;
27
+ }
28
+ .bee-layout__content {
29
+ display: flex;
30
+ flex-direction: column;
31
+ flex: 1;
32
+ }
33
+
34
+ .bee-footer {
35
+ height: 40px;
36
+ flex-shrink: 0;
37
+ display: flex;
38
+ align-items: center;
39
+ position: relative;
40
+ user-select: none;
41
+ color: rgb(255, 255, 255);
42
+ background: rgb(68, 68, 68);
43
+ cursor: default;
44
+ font-size: 14px;
45
+ overflow: hidden;
46
+ }
47
+ .bee-footer__pagination {
48
+ display: flex;
49
+ align-items: center;
50
+ }
51
+ .bee-footer__pageAll {
52
+ margin: 0 5px;
53
+ }
54
+ .bee-footer__zoomController {
55
+ display: flex;
56
+ align-items: center;
57
+ margin-right: 8px;
58
+ }
59
+ .bee-footer__zoomText {
60
+ width: 72px;
61
+ display: inline-block;
62
+ text-align: center;
63
+ cursor: pointer;
64
+ }
65
+ .bee-footer__zoomText .adaptIcon {
66
+ display: none;
67
+ }
68
+ .bee-footer__zoomText:hover .zoomValue {
69
+ display: none;
70
+ }
71
+ .bee-footer__zoomText:hover .adaptIcon {
72
+ display: inline-block;
73
+ }
74
+ .bee-footer__highlight {
75
+ margin: 0 5px;
76
+ padding: 4px;
77
+ border: 1px solid #cccccc;
78
+ }
79
+
80
+ .bee-page-input {
81
+ margin: 0 5px;
82
+ width: 50px;
83
+ height: 24px;
84
+ border: none;
85
+ border-bottom: 1px solid #cccccc;
86
+ background: transparent;
87
+ text-align: center;
88
+ color: rgb(255, 255, 255);
89
+ height: 24px;
90
+ text-align: center;
91
+ padding: 0 6px;
92
+ }
93
+ .bee-page-input:focus {
94
+ box-shadow: none;
95
+ outline: none;
96
+ border-color: #cccccc;
97
+ }
98
+ .bee-page-input:hover {
99
+ border-color: #cccccc;
100
+ }
101
+
102
+ .bee-header__title {
103
+ color: rgb(153, 153, 153);
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: flex-start;
107
+ position: relative;
108
+ z-index: 2;
109
+ height: 61px;
110
+ width: 100%;
111
+ padding: 0 30px;
112
+ background: #ffffff;
113
+ border-bottom: 1px solid rgb(223, 223, 223);
114
+ box-shadow: 0px 2px 14px rgba(204, 204, 204, 0.5);
115
+ }
116
+ .bee-header__icon {
117
+ margin-right: 24px;
118
+ width: 9px;
119
+ height: 15px;
120
+ }
121
+ .bee-header__name {
122
+ font-size: 16px;
123
+ font-family: SourceHanSansCN-Medium;
124
+ font-weight: 500;
125
+ color: #333;
126
+ }
127
+ .bee-header__operationNode {
128
+ position: absolute;
129
+ }
130
+ .bee-header__titlePlacement {
131
+ flex: 1;
132
+ }
133
+ .bee-header__lang {
134
+ color: rgba(0, 0, 0, 0.85);
135
+ }
136
+ .bee-header__lang .bee-langCN,
137
+ .bee-header__lang .bee-langEN {
138
+ cursor: pointer;
139
+ }
140
+ .bee-header__lang .bee-langCN.active,
141
+ .bee-header__lang .bee-langEN.active {
142
+ font-weight: bold;
143
+ }
144
+ .bee-header__hotKey {
145
+ display: flex;
146
+ justify-content: space-between;
147
+ }
148
+ .bee-header__hotKey .item {
149
+ display: flex;
150
+ flex-direction: column;
151
+ justify-content: space-between;
152
+ align-items: center;
153
+ cursor: pointer;
154
+ user-select: none;
155
+ }
156
+ .bee-header__hotKey .item .singleTool {
157
+ color: rgba(255, 255, 255, 0.4);
158
+ margin: 0 21px;
159
+ cursor: pointer;
160
+ -moz-user-select: none;
161
+ -webkit-user-select: none;
162
+ -ms-user-select: none;
163
+ user-select: none;
164
+ }
165
+ .bee-header__hotKey .item:hover {
166
+ color: #666fff;
167
+ }
168
+
169
+ .content {
170
+ width: 240px;
171
+ display: flex;
172
+ flex-direction: column;
173
+ }
174
+ .content .item {
175
+ display: flex;
176
+ justify-content: space-between;
177
+ align-items: center;
178
+ }
179
+ .content .item .title {
180
+ min-width: 60px;
181
+ margin-right: 10px;
182
+ }
183
+ .content .item .slider {
184
+ flex: 1;
185
+ }
186
+
187
+ .bee-sidebar {
188
+ height: 100%;
189
+ width: 100%;
190
+ box-shadow: 0px 2px 14px 0px rgba(204, 204, 204, 0.5);
191
+ background: #ffffff;
192
+ overflow: hidden;
193
+ display: flex;
194
+ position: relative;
195
+ flex-direction: column;
196
+ -moz-user-select: none;
197
+ -webkit-user-select: none;
198
+ -ms-user-select: none;
199
+ user-select: none;
200
+ text-align: left;
201
+ }
202
+ .bee-sidebar__content {
203
+ flex: 1;
204
+ overflow: auto;
205
+ background-color: #fff;
206
+ }
207
+ .bee-sidebar__content .panel {
208
+ margin: 0 6px;
209
+ }
210
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool {
211
+ color: rgb(153, 153, 153);
212
+ cursor: pointer;
213
+ display: flex;
214
+ align-items: center;
215
+ }
216
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .toolName {
217
+ width: 100%;
218
+ margin-left: 10px;
219
+ font-size: 12px;
220
+ }
221
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .selectedToolName {
222
+ width: 100%;
223
+ margin-left: 10px;
224
+ font-size: 15px;
225
+ color: #666fff;
226
+ }
227
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle {
228
+ border-color: #666fff;
229
+ }
230
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle.ant-tooltip-open {
231
+ border-color: #666fff;
232
+ }
233
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle:focus {
234
+ border-color: #666fff;
235
+ }
236
+ .bee-sidebar__level {
237
+ padding: 28px;
238
+ border-bottom: 1px solid #eee;
239
+ display: flex;
240
+ justify-content: center;
241
+ }
242
+ .bee-sidebar__toolOption {
243
+ display: inline-flex;
244
+ flex-direction: column;
245
+ align-items: center;
246
+ color: #999;
247
+ cursor: pointer;
248
+ }
249
+ .bee-sidebar__toolOption__selected {
250
+ color: #666fff;
251
+ }
252
+ .bee-sidebar__toolOption + .bee-sidebar__toolOption {
253
+ margin-left: 16px;
254
+ }
255
+ .bee-sidebar__singleTool {
256
+ max-width: 20px;
257
+ max-height: 20px;
258
+ margin: 0 10px;
259
+ }
260
+ .bee-sidebar__horizontal {
261
+ width: 100%;
262
+ height: 1px;
263
+ background: #eee;
264
+ }
265
+ .bee-sidebar .dashHorizontal {
266
+ width: 100%;
267
+ border-bottom: 1px dashed #eee;
268
+ }
269
+ .bee-sidebar .sensebee-radio-group,
270
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group {
271
+ max-height: calc(100vh - 61px);
272
+ display: flex;
273
+ flex-direction: column;
274
+ max-height: 300px;
275
+ overflow-y: auto;
276
+ }
277
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper,
278
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper {
279
+ padding: 10px 5px 10px 12px;
280
+ margin: 0;
281
+ display: flex;
282
+ flex: 1;
283
+ flex-direction: row;
284
+ align-content: center;
285
+ }
286
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .ant-radio,
287
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .ant-radio {
288
+ align-self: center;
289
+ }
290
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper:hover,
291
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper:hover {
292
+ background: #f3f4ff;
293
+ }
294
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper > span:nth-child(2),
295
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper > span:nth-child(2) {
296
+ flex: 1;
297
+ justify-content: space-between;
298
+ display: flex;
299
+ align-self: center;
300
+ overflow: hidden;
301
+ }
302
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-num,
303
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-num {
304
+ width: 20px;
305
+ height: 20px;
306
+ border: 1px solid rgb(204, 204, 204);
307
+ opacity: 1;
308
+ border-radius: 2px;
309
+ text-align: center;
310
+ line-height: 18px;
311
+ }
312
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-label,
313
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-label {
314
+ flex: 1;
315
+ overflow: hidden;
316
+ text-overflow: ellipsis;
317
+ }
318
+ .bee-sidebar #pen-color .ant-slider .ant-slider-track,
319
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
320
+ .bee-sidebar #style-radius .ant-slider .ant-slider-track,
321
+ .bee-sidebar #style-width .ant-slider .ant-slider-track,
322
+ .bee-sidebar #style-color .ant-slider .ant-slider-track,
323
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
324
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
325
+ background: #f5f5f5;
326
+ }
327
+ .bee-sidebar #pen-color .ant-slider .ant-slider-dot,
328
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-dot,
329
+ .bee-sidebar #style-radius .ant-slider .ant-slider-dot,
330
+ .bee-sidebar #style-width .ant-slider .ant-slider-dot,
331
+ .bee-sidebar #style-color .ant-slider .ant-slider-dot,
332
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-dot,
333
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-dot {
334
+ width: 0;
335
+ height: 0;
336
+ border: none;
337
+ }
338
+ .bee-sidebar #pen-color .ant-slider .ant-slider-handle,
339
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle,
340
+ .bee-sidebar #style-radius .ant-slider .ant-slider-handle,
341
+ .bee-sidebar #style-width .ant-slider .ant-slider-handle,
342
+ .bee-sidebar #style-color .ant-slider .ant-slider-handle,
343
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle,
344
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle {
345
+ background-image: url("../dist/assets/icons/cc550fff.svg");
346
+ background-repeat: no-repeat;
347
+ background-size: 30px 30px;
348
+ width: 40px;
349
+ height: 40px;
350
+ background-color: transparent;
351
+ border-color: transparent;
352
+ background-position: 3px 2px;
353
+ margin-top: -15px;
354
+ }
355
+ .bee-sidebar #pen-color .ant-slider .ant-slider-handle:focus,
356
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle:focus,
357
+ .bee-sidebar #style-radius .ant-slider .ant-slider-handle:focus,
358
+ .bee-sidebar #style-width .ant-slider .ant-slider-handle:focus,
359
+ .bee-sidebar #style-color .ant-slider .ant-slider-handle:focus,
360
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle:focus,
361
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle:focus {
362
+ box-shadow: none;
363
+ }
364
+ .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
365
+ .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
366
+ .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
367
+ .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
368
+ .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
369
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
370
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
371
+ color: inherit;
372
+ font-style: normal;
373
+ line-height: 0;
374
+ text-align: center;
375
+ text-transform: none;
376
+ vertical-align: -0.125em;
377
+ text-rendering: optimizeLegibility;
378
+ -webkit-font-smoothing: antialiased;
379
+ -moz-osx-font-smoothing: grayscale;
380
+ position: absolute;
381
+ top: 50%;
382
+ right: 16px;
383
+ display: inline-block;
384
+ font-size: 12px;
385
+ transform: translateY(-50%);
386
+ }
387
+ .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
388
+ .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
389
+ .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
390
+ .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
391
+ .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
392
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
393
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header {
394
+ position: relative;
395
+ color: rgba(0, 0, 0, 0.85);
396
+ line-height: 1.5715;
397
+ cursor: pointer;
398
+ transition: all 0.3s;
399
+ z-index: 10;
400
+ }
401
+ .bee-sidebar #pen-color .ant-slider-rail,
402
+ .bee-sidebar #pen-color .ant-slider-track,
403
+ .bee-sidebar #pen-color .ant-slider-step,
404
+ .bee-sidebar #paintBucket-color .ant-slider-rail,
405
+ .bee-sidebar #paintBucket-color .ant-slider-track,
406
+ .bee-sidebar #paintBucket-color .ant-slider-step,
407
+ .bee-sidebar #style-radius .ant-slider-rail,
408
+ .bee-sidebar #style-radius .ant-slider-track,
409
+ .bee-sidebar #style-radius .ant-slider-step,
410
+ .bee-sidebar #style-width .ant-slider-rail,
411
+ .bee-sidebar #style-width .ant-slider-track,
412
+ .bee-sidebar #style-width .ant-slider-step,
413
+ .bee-sidebar #style-color .ant-slider-rail,
414
+ .bee-sidebar #style-color .ant-slider-track,
415
+ .bee-sidebar #style-color .ant-slider-step,
416
+ .bee-sidebar #style-fillOpacity .ant-slider-rail,
417
+ .bee-sidebar #style-fillOpacity .ant-slider-track,
418
+ .bee-sidebar #style-fillOpacity .ant-slider-step,
419
+ .bee-sidebar #style-borderOpacity .ant-slider-rail,
420
+ .bee-sidebar #style-borderOpacity .ant-slider-track,
421
+ .bee-sidebar #style-borderOpacity .ant-slider-step {
422
+ background-color: none;
423
+ height: 8px;
424
+ }
425
+ .bee-sidebar #pen-color .ant-slider .ant-slider-track,
426
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
427
+ .bee-sidebar #style-radius .ant-slider .ant-slider-track,
428
+ .bee-sidebar #style-width .ant-slider .ant-slider-track,
429
+ .bee-sidebar #style-color .ant-slider .ant-slider-track,
430
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
431
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
432
+ background: none;
433
+ }
434
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot,
435
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot {
436
+ height: 12px;
437
+ background: #666666;
438
+ border-radius: 0;
439
+ margin-left: -2px;
440
+ }
441
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(1),
442
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(1) {
443
+ width: 1px;
444
+ }
445
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(2),
446
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(2) {
447
+ width: 2px;
448
+ }
449
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(3),
450
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(3) {
451
+ width: 3px;
452
+ }
453
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(4),
454
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(4) {
455
+ width: 4px;
456
+ }
457
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(5),
458
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(5) {
459
+ width: 5px;
460
+ }
461
+ .bee-sidebar #style-radius .ant-slider:hover .ant-slider-rail,
462
+ .bee-sidebar #style-width .ant-slider:hover .ant-slider-rail {
463
+ background: #f5f5f5;
464
+ }
465
+ .bee-sidebar #style-color .ant-slider-rail {
466
+ background: linear-gradient(to right, rgb(0, 0, 255) 0%, rgb(0, 0, 255) 20%, rgb(0, 255, 255) 20%, rgb(0, 255, 255) 40%, rgb(0, 255, 0) 40%, rgb(0, 255, 0) 60%, rgb(255, 255, 0) 60%, rgb(255, 255, 0) 80%, rgb(255, 0, 255) 80%, rgb(255, 0, 255) 100%);
467
+ }
468
+ .bee-sidebar #style-fillOpacity .ant-slider-rail,
469
+ .bee-sidebar #style-borderOpacity .ant-slider-rail {
470
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.8) 80%, rgb(0, 0, 0) 80%, rgb(0, 0, 0) 100%);
471
+ }
472
+
473
+ .bee-tips {
474
+ display: flex;
475
+ justify-content: flex-end;
476
+ background-color: #333;
477
+ color: rgba(255, 255, 255, 0.4);
478
+ line-height: 40px;
479
+ opacity: 0.8;
480
+ height: 40px;
481
+ padding: 0 30px;
482
+ width: 100%;
483
+ text-overflow: ellipsis;
484
+ overflow: hidden;
485
+ white-space: nowrap;
486
+ cursor: text;
487
+ }
488
+
489
+ .annotationOperation {
490
+ position: relative;
491
+ flex: 1;
492
+ overflow: hidden;
493
+ }
494
+ .annotationOperation .canvas {
495
+ user-select: none;
496
+ display: block;
497
+ position: relative;
498
+ height: 100%;
499
+ width: 100%;
500
+ }
501
+
502
+ .textInputContainer {
503
+ padding: 20px;
504
+ }
505
+ .textInputContainer .textareaContainer {
506
+ position: relative;
507
+ }
508
+ .textInputContainer .textareaContainer > textarea {
509
+ padding-bottom: 30px;
510
+ }
511
+ .textInputContainer .textareaContainer .textAreaFooter {
512
+ position: absolute;
513
+ width: 100%;
514
+ bottom: 0;
515
+ font-weight: 400;
516
+ line-height: 20px;
517
+ opacity: 1;
518
+ font-size: 12px;
519
+ color: rgb(204, 204, 204);
520
+ display: flex;
521
+ padding: 0 10px 5px;
522
+ }
523
+ .textInputContainer .textareaContainer .textAreaFooter .warning {
524
+ color: #ff0000;
525
+ }
526
+ .textInputContainer .textareaContainer .textAreaFooter .hotkeyTip {
527
+ font-size: 14px;
528
+ opacity: 0;
529
+ transition: opacity 0.3s ease-in-out;
530
+ }
531
+ .textInputContainer .textareaContainer .textAreaFooter .wordCount {
532
+ flex: 1;
533
+ text-align: right;
534
+ }
535
+ .textInputContainer .textareaContainer.focus .textAreaFooter .hotkeyTip {
536
+ opacity: 1;
537
+ }
538
+ .textInputContainer .textareaContainer .textareaContainer {
539
+ position: relative;
540
+ }
541
+ .textInputContainer .textareaContainer .warning {
542
+ outline-color: #ff0000;
543
+ border-color: #ff0000;
544
+ }
545
+ .textInputContainer .textareaContainer .inputCount {
546
+ position: absolute;
547
+ bottom: 0;
548
+ right: 5px;
549
+ font-weight: 400;
550
+ line-height: 20px;
551
+ opacity: 1;
552
+ font-size: 12px;
553
+ color: rgb(204, 204, 204);
554
+ }
555
+ .textInputContainer .textareaContainer .inputCount .warning {
556
+ color: #ff0000;
557
+ }
558
+ .textInputContainer .textareaContainer .label,
559
+ .textInputContainer .textareaContainer .switchItem {
560
+ color: #333333;
561
+ font-size: 12px;
562
+ line-height: 40px;
563
+ }
564
+ .textInputContainer .textareaContainer .notify {
565
+ font-size: 12px;
566
+ color: rgb(204, 204, 204);
567
+ }
568
+ .textInputContainer .textareaContainer .toolTextAreaBox {
569
+ position: relative;
570
+ padding-bottom: 20px;
571
+ border: 1px solid #d9d9d9;
572
+ border-radius: 2px;
573
+ }
574
+ .textInputContainer .textareaContainer .toolTextAreaBox:hover {
575
+ border-color: #40a9ff;
576
+ }
577
+ .textInputContainer .textareaContainer .toolTextAreaBox .textAreaFooter {
578
+ bottom: 0;
579
+ height: 20px;
580
+ }
581
+ .textInputContainer .textareaContainer .toolTextAreaBox .ant-input {
582
+ border: none;
583
+ }
584
+ .textInputContainer .textareaContainer .toolTextAreaBoxFocus {
585
+ border-color: #40a9ff;
586
+ }
587
+ .textInputContainer .switchItem {
588
+ margin-top: 20px;
589
+ display: flex;
590
+ justify-content: space-between;
591
+ }
592
+ .textInputContainer .notify {
593
+ font-size: 12px;
594
+ color: rgb(204, 204, 204);
595
+ }
596
+
597
+ .ant-popover.tool-hotkeys-popover .ant-popover-inner-content {
598
+ max-height: 70vh;
599
+ overflow-y: scroll;
600
+ padding: 0;
601
+ }
602
+
603
+ .tipsBar {
604
+ display: flex;
605
+ height: 100%;
606
+ }
607
+ .tipsBar .hotKeyIconGray,
608
+ .tipsBar .helpIconGray {
609
+ width: 15px;
610
+ height: 15px;
611
+ cursor: pointer;
612
+ background-position: center;
613
+ background-repeat: no-repeat;
614
+ display: inline-block;
615
+ vertical-align: middle;
616
+ }
617
+ .tipsBar .svg {
618
+ width: 80px;
619
+ height: 100%;
620
+ color: #cccccc;
621
+ display: flex;
622
+ justify-content: center;
623
+ align-items: center;
624
+ font-size: 12px;
625
+ }
626
+ .tipsBar .svg:hover {
627
+ color: #666fff;
628
+ background-color: #e9e9e9;
629
+ }
630
+
631
+ .toolStyle {
632
+ width: 100%;
633
+ display: flex;
634
+ flex-direction: column;
635
+ }
636
+ .toolStyle .styleSlider .title {
637
+ min-width: 60px;
638
+ margin-right: 10px;
639
+ font-size: 12px;
640
+ display: flex;
641
+ align-items: center;
642
+ }
643
+ .toolStyle .styleSlider .title .icon {
644
+ margin-right: 5px;
645
+ }
646
+ .toolStyle .styleSlider .slider {
647
+ flex: 1;
648
+ }
649
+
650
+ .generalOperation {
651
+ display: flex;
652
+ align-items: center;
653
+ background-color: #fff;
654
+ width: 100%;
655
+ height: 80px;
656
+ border-top: 1px solid #eee;
657
+ box-shadow: 0 15px 10px 0 #eee;
658
+ -moz-user-select: none;
659
+ -webkit-user-select: none;
660
+ -ms-user-select: none;
661
+ user-select: none;
662
+ }
663
+ .generalOperation .item {
664
+ text-align: center;
665
+ flex: 1;
666
+ box-sizing: border-box;
667
+ width: 100%;
668
+ height: 100%;
669
+ display: flex;
670
+ flex-direction: column;
671
+ justify-content: center;
672
+ cursor: pointer;
673
+ }
674
+ .generalOperation .icon {
675
+ margin-bottom: 7px;
676
+ }
677
+ .generalOperation .toolName {
678
+ font-size: 12px;
679
+ }
680
+
681
+ .tagOperationMenu .main {
682
+ padding: 8px 8px;
683
+ overflow: auto;
684
+ -moz-user-select: none;
685
+ -webkit-user-select: none;
686
+ -ms-user-select: none;
687
+ user-select: none;
688
+ }
689
+ .tagOperationMenu .main::-webkit-scrollbar {
690
+ width: 0;
691
+ }
692
+ .tagOperationMenu .keyDownIcon {
693
+ display: inline-block;
694
+ text-align: center;
695
+ line-height: 20px;
696
+ width: 20px;
697
+ height: 20px;
698
+ border-radius: 2px;
699
+ border: 1px solid rgb(204, 204, 204);
700
+ }
701
+ .tagOperationMenu .keyDownIconActive {
702
+ display: inline-block;
703
+ text-align: center;
704
+ line-height: 20px;
705
+ width: 20px;
706
+ height: 20px;
707
+ border-radius: 2px;
708
+ border: 1px solid rgb(204, 204, 204);
709
+ background: #6371ff;
710
+ color: white;
711
+ }
712
+ .tagOperationMenu .level {
713
+ margin: 0px 0 0 -6px;
714
+ }
715
+ .tagOperationMenu .level .radioOption {
716
+ width: 100%;
717
+ margin-bottom: 10px;
718
+ display: flex;
719
+ padding: 4px 16px 4px 20px;
720
+ cursor: pointer;
721
+ justify-content: space-between;
722
+ }
723
+ .tagOperationMenu .level .radioOption .labelMouseClick {
724
+ margin: 0 26px;
725
+ }
726
+ .tagOperationMenu .level .radioOption:hover {
727
+ background: rgba(158, 158, 158, 0.18);
728
+ }
729
+ .tagOperationMenu .level .radioOption:active {
730
+ color: #666fff;
731
+ background: none;
732
+ }
733
+ .tagOperationMenu .singleBar {
734
+ padding: 0 3px 0 8px;
735
+ }
736
+ .tagOperationMenu .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
737
+ padding-top: 4px;
738
+ }
739
+ .tagOperationMenu .ant-collapse-content > .ant-collapse-content-box {
740
+ padding: 0;
741
+ }
742
+ .tagOperationMenu .ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
743
+ padding-right: 40px;
744
+ }
745
+ .tagOperationMenu .ant-collapse-borderless > .ant-collapse-item {
746
+ border-bottom: 0px;
747
+ }
748
+
749
+ .sensebee-checkbox-group .ant-checkbox-group {
750
+ display: flex;
751
+ flex-direction: column;
752
+ }
753
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper {
754
+ padding: 10px 5px 10px 12px;
755
+ margin: 0;
756
+ display: flex;
757
+ flex: 1;
758
+ flex-direction: row;
759
+ align-content: center;
760
+ }
761
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .ant-checkbox {
762
+ align-self: center;
763
+ }
764
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper:hover {
765
+ background: #f3f4ff;
766
+ }
767
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper > span:nth-child(2) {
768
+ flex: 1;
769
+ justify-content: space-between;
770
+ display: flex;
771
+ align-self: center;
772
+ overflow: hidden;
773
+ }
774
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-num {
775
+ width: 20px;
776
+ height: 20px;
777
+ border: 1px solid rgb(204, 204, 204);
778
+ opacity: 1;
779
+ border-radius: 2px;
780
+ text-align: center;
781
+ }
782
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-label {
783
+ flex: 1;
784
+ overflow: hidden;
785
+ text-overflow: ellipsis;
786
+ }
787
+
788
+ ::-webkit-scrollbar {
789
+ width: 8px;
790
+ height: 8px;
791
+ }
792
+
793
+ ::-webkit-scrollbar-thumb {
794
+ width: 8px;
795
+ height: 8px;
796
+ background: rgb(204, 204, 204);
797
+ opacity: 1;
798
+ border-radius: 10px;
799
+ }
800
+
801
+ .textField {
802
+ margin-bottom: 24px;
803
+ position: relative;
804
+ text-align: left;
805
+ }
806
+ .textField .label {
807
+ margin-bottom: 8px;
808
+ font-size: 12px;
809
+ font-family: SourceHanSansCN-Medium;
810
+ }
811
+ .textField .label .required::before {
812
+ display: inline-block;
813
+ margin-right: 4px;
814
+ color: #ff4d4f;
815
+ font-size: 14px;
816
+ font-family: SimSun, sans-serif;
817
+ line-height: 1;
818
+ content: "*";
819
+ }
820
+
821
+ .textInputContainer {
822
+ padding: 20px;
823
+ height: 100%;
824
+ overflow-y: scroll;
825
+ }
826
+
827
+ .textField {
828
+ margin-bottom: 24px;
829
+ position: relative;
830
+ text-align: left;
831
+ }
832
+ .textField .label {
833
+ margin-bottom: 8px;
834
+ font-size: 12px;
835
+ font-family: SourceHanSansCN-Medium;
836
+ }
837
+ .textField .label .required::before {
838
+ display: inline-block;
839
+ margin-right: 4px;
840
+ color: #ff4d4f;
841
+ font-size: 14px;
842
+ font-family: SimSun, sans-serif;
843
+ line-height: 1;
844
+ content: "*";
845
+ }
846
+
847
+ .textToolOperationMenu {
848
+ padding: 20px;
849
+ height: 100%;
850
+ overflow-y: scroll;
851
+ }
852
+
853
+ .textareaContainer {
854
+ position: relative;
855
+ padding: 0;
856
+ padding-bottom: 36px;
857
+ }
858
+ .textareaContainer .textAreaFooter {
859
+ position: absolute;
860
+ width: 100%;
861
+ bottom: 0;
862
+ font-weight: 400;
863
+ opacity: 1;
864
+ font-size: 12px;
865
+ color: rgb(204, 204, 204);
866
+ display: flex;
867
+ padding: 0 10px;
868
+ }
869
+ .textareaContainer .textAreaFooter > span {
870
+ line-height: 16px;
871
+ }
872
+ .textareaContainer .textAreaFooter .warning {
873
+ color: #ff0000;
874
+ }
875
+ .textareaContainer .textAreaFooter .hotkeyTip {
876
+ font-size: 12px;
877
+ opacity: 0;
878
+ text-align: left;
879
+ display: flex;
880
+ flex-direction: column;
881
+ transition: opacity 0.3s ease-in-out;
882
+ }
883
+ .textareaContainer .textAreaFooter .wordCount {
884
+ flex: 1;
885
+ text-align: right;
886
+ align-self: flex-end;
887
+ }
888
+ .textareaContainer.focus {
889
+ border-color: #40a9ff;
890
+ }
891
+ .textareaContainer.focus .textAreaFooter .hotkeyTip {
892
+ opacity: 1;
893
+ }
894
+ .textareaContainer.invalid {
895
+ border-color: #ff4d4f;
896
+ }
897
+ .textareaContainer.invalid.focus {
898
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
899
+ }
900
+ .textareaContainer .warning {
901
+ outline-color: #ff0000;
902
+ border-color: #ff0000;
903
+ }
904
+ .textareaContainer .inputCount {
905
+ position: absolute;
906
+ bottom: 0;
907
+ right: 5px;
908
+ font-weight: 400;
909
+ line-height: 20px;
910
+ opacity: 1;
911
+ font-size: 12px;
912
+ color: rgb(204, 204, 204);
913
+ }
914
+ .textareaContainer .inputCount .warning {
915
+ color: #ff0000;
916
+ }
917
+ .textareaContainer .notify {
918
+ font-size: 12px;
919
+ color: rgb(204, 204, 204);
920
+ }
921
+
922
+ .clearText {
923
+ width: 13px;
924
+ height: 13px;
925
+ margin-left: 8px;
926
+ display: inline-block;
927
+ vertical-align: text-top;
928
+ background-repeat: no-repeat;
929
+ background-position: center;
930
+ background-image: url("../dist/assets/icons/25541b4d.svg");
931
+ cursor: pointer;
932
+ }
933
+ .clearText:not(.disabled):hover {
934
+ background-image: url("../dist/assets/icons/dc9b6bfc.svg");
935
+ }
936
+ .clearText.disabled {
937
+ cursor: not-allowed;
938
+ }
939
+
940
+ .switchItem {
941
+ margin-top: 20px;
942
+ display: flex;
943
+ justify-content: space-between;
944
+ font-size: 12px;
945
+ font-family: SourceHanSansCN-Medium;
946
+ }
947
+ .switchItem .notify {
948
+ font-size: 12px;
949
+ color: rgb(204, 204, 204);
950
+ }
951
+
952
+ .textarea-outline {
953
+ border: 1px solid #d9d9d9;
954
+ border-radius: 2px;
955
+ }
956
+ .textarea-outline.disabled {
957
+ color: rgba(0, 0, 0, 0.25);
958
+ background-color: #f5f5f5;
959
+ cursor: not-allowed;
960
+ }
961
+
962
+ .bee-component__iconWithText {
963
+ display: flex;
964
+ flex-direction: column;
965
+ justify-content: space-between;
966
+ align-items: center;
967
+ height: auto;
968
+ }
969
+ .bee-component__iconWithText .iconGroup {
970
+ color: #666666;
971
+ cursor: pointer;
972
+ display: flex;
973
+ align-items: center;
974
+ -moz-user-select: none;
975
+ -webkit-user-select: none;
976
+ -ms-user-select: none;
977
+ user-select: none;
978
+ margin: 0px 21px 4px;
979
+ }
980
+ .bee-component__iconWithText .iconGroup .icon {
981
+ font-size: 18px;
982
+ }
983
+ .bee-component__iconWithText .name {
984
+ font-size: 12px;
985
+ color: #999999;
986
+ }
987
+ .bee-component__iconWithText:hover .bee-component__iconWithText__iconGroup {
988
+ color: #666fff;
989
+ }
990
+ .bee-component__iconWithText:hover .bee-component__iconWithText__name {
991
+ color: #666fff;
992
+ }
993
+ .bee-component__annotationStepPopover {
994
+ padding: 12px 30px;
995
+ background: white;
996
+ }
997
+ .bee-component__annotationStepPopover .step {
998
+ margin-bottom: 24px;
999
+ }
1000
+ .bee-component__annotationStepPopover .step:last-child {
1001
+ margin-bottom: 0px;
1002
+ }
1003
+ .bee-component__annotationStepPopover .step:hover {
1004
+ color: #666fff;
1005
+ cursor: pointer;
1006
+ }
1007
+ .bee-component__annotationStepPopover .step .name {
1008
+ margin-bottom: 6px;
1009
+ font-size: 14px;
1010
+ }
1011
+ .bee-component__annotationStepPopover .step .progress {
1012
+ font-size: 12px;
1013
+ }
1014
+ .bee-component__annotationStepPopover .step .highlight {
1015
+ color: #666fff;
1016
+ }
1017
+ .bee-component__annotationStepPopover .isNotStart {
1018
+ color: #cccccc;
1019
+ }
1020
+ .bee-component__annotationStepPopover .isNotStart:hover {
1021
+ color: #cccccc;
1022
+ }
1023
+
1024
+ /** VideoPlayer样式 start */
1025
+ .bee-video-wrapper {
1026
+ width: 100%;
1027
+ height: 100%;
1028
+ display: flex;
1029
+ flex-direction: column;
1030
+ background-color: black;
1031
+ overflow: hidden;
1032
+ }
1033
+ .bee-video-wrapper .bee-video-container {
1034
+ flex: 1;
1035
+ overflow: hidden;
1036
+ position: relative;
1037
+ }
1038
+
1039
+ .bee-video-progress {
1040
+ position: absolute;
1041
+ width: 100%;
1042
+ height: 10px;
1043
+ top: -3px;
1044
+ align-items: center;
1045
+ display: flex;
1046
+ cursor: pointer;
1047
+ }
1048
+ .bee-video-progress:hover .bee-video-slider-bar {
1049
+ height: 15px;
1050
+ width: 15px;
1051
+ }
1052
+ .bee-video-progress .bee-video-slider {
1053
+ background-color: rgba(115, 133, 159, 0.5);
1054
+ height: 4px;
1055
+ width: 100%;
1056
+ position: relative;
1057
+ }
1058
+ .bee-video-progress .bee-video-slider__loaded, .bee-video-progress .bee-video-slider__played, .bee-video-progress .bee-video-slider__holder {
1059
+ position: absolute;
1060
+ left: 0;
1061
+ height: 100%;
1062
+ }
1063
+ .bee-video-progress .bee-video-slider__loaded {
1064
+ background-color: rgb(115, 133, 159);
1065
+ }
1066
+ .bee-video-progress .bee-video-slider__played {
1067
+ background-color: #fff;
1068
+ }
1069
+ .bee-video-progress .bee-video-slider-bar {
1070
+ cursor: pointer;
1071
+ content: "";
1072
+ height: 9px;
1073
+ width: 9px;
1074
+ background-color: #fff;
1075
+ display: inline-block;
1076
+ border-radius: 50%;
1077
+ position: absolute;
1078
+ top: 50%;
1079
+ transform: translate(-50%, -50%);
1080
+ left: 0;
1081
+ }
1082
+
1083
+ .bee-video-controller__wrapper {
1084
+ position: relative;
1085
+ }
1086
+
1087
+ .bee-video-controller {
1088
+ height: 80px;
1089
+ background-color: #222;
1090
+ color: white;
1091
+ display: flex;
1092
+ align-items: center;
1093
+ padding: 8px 16px;
1094
+ }
1095
+ .bee-video-controller .anticon {
1096
+ cursor: pointer;
1097
+ }
1098
+ .bee-video-controller__holder {
1099
+ flex: 1;
1100
+ }
1101
+ .bee-video-controller__playButton {
1102
+ font-size: 32px;
1103
+ }
1104
+ .bee-video-controller__time {
1105
+ font-size: 16px;
1106
+ }
1107
+ .bee-video-controller__speed {
1108
+ display: flex;
1109
+ align-items: center;
1110
+ }
1111
+ .bee-video-controller__speedNum {
1112
+ display: inline-block;
1113
+ width: 32px;
1114
+ text-align: center;
1115
+ }
1116
+ .bee-video-controller__speedButton {
1117
+ display: inline-flex;
1118
+ flex-direction: column;
1119
+ justify-content: space-between;
1120
+ }
1121
+ .bee-video-controller__pagination {
1122
+ display: flex;
1123
+ align-items: center;
1124
+ }
1125
+ .bee-video-controller__pagination .anticon {
1126
+ font-size: 20px;
1127
+ }
1128
+ .bee-video-controller__pageAll {
1129
+ margin: 0 5px;
1130
+ }
1131
+ .bee-video-controller__pagination, .bee-video-controller__time, .bee-video-controller__playButton {
1132
+ margin-right: 16px;
1133
+ }
1134
+ .bee-video-controller__hotkey {
1135
+ display: inline-flex;
1136
+ align-items: center;
1137
+ cursor: pointer;
1138
+ }
1139
+ .bee-video-controller__hotkey img {
1140
+ margin-right: 4px;
1141
+ }
1142
+
1143
+ /** VideoPlayer样式 end */
1144
+ /** PointCloud样式 start */
1145
+ .bee-point-cloud-footer {
1146
+ height: 40px;
1147
+ }
1148
+
1149
+ .bee-point-cloud-layout {
1150
+ display: flex;
1151
+ flex-direction: column;
1152
+ overflow: hidden;
1153
+ flex: 1;
1154
+ }
1155
+
1156
+ .bee-point-cloud-wrapper {
1157
+ display: flex;
1158
+ height: 100%;
1159
+ width: 100;
1160
+ overflow: hidden;
1161
+ flex: 1;
1162
+ }
1163
+ .bee-point-cloud-wrapper .bee-point-cloud-container {
1164
+ position: relative;
1165
+ }
1166
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header {
1167
+ background-color: #444;
1168
+ color: white;
1169
+ height: 40px;
1170
+ padding: 0 16px;
1171
+ line-height: 40px;
1172
+ display: flex;
1173
+ justify-content: space-between;
1174
+ }
1175
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-title {
1176
+ flex: 1;
1177
+ overflow: hidden;
1178
+ text-overflow: ellipsis;
1179
+ font-weight: 700;
1180
+ }
1181
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar {
1182
+ display: flex;
1183
+ align-items: center;
1184
+ font-size: 12px;
1185
+ }
1186
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__rotate-reserve {
1187
+ display: inline-block;
1188
+ height: 24px;
1189
+ width: 24px;
1190
+ background-repeat: no-repeat;
1191
+ cursor: pointer;
1192
+ margin-right: 16px;
1193
+ background-image: url("../dist/assets/icons/7eadb9c4.svg");
1194
+ transform: rotateY(180deg);
1195
+ }
1196
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__rotate {
1197
+ display: inline-block;
1198
+ height: 24px;
1199
+ width: 24px;
1200
+ background-repeat: no-repeat;
1201
+ cursor: pointer;
1202
+ margin-right: 16px;
1203
+ background-image: url("../dist/assets/icons/7eadb9c4.svg");
1204
+ }
1205
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__rotate-180 {
1206
+ display: inline-block;
1207
+ height: 24px;
1208
+ width: 24px;
1209
+ background-repeat: no-repeat;
1210
+ cursor: pointer;
1211
+ background-image: url("../dist/assets/icons/9d70807.svg");
1212
+ }
1213
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__next {
1214
+ font-size: 24px;
1215
+ cursor: pointer;
1216
+ }
1217
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__prev {
1218
+ font-size: 24px;
1219
+ cursor: pointer;
1220
+ margin-right: 16px;
1221
+ }
1222
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left {
1223
+ width: 40%;
1224
+ display: flex;
1225
+ flex-direction: column;
1226
+ border-right: 1px solid #fff;
1227
+ height: 100%;
1228
+ overflow: hidden;
1229
+ }
1230
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-2d-container {
1231
+ flex: 1;
1232
+ flex-direction: column;
1233
+ display: flex;
1234
+ overflow: hidden;
1235
+ }
1236
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-2d-container .bee-point-cloud-2d-image {
1237
+ flex: 1;
1238
+ display: flex;
1239
+ align-items: center;
1240
+ background-color: #4c4c4c;
1241
+ overflow: hidden;
1242
+ }
1243
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-2d-container .bee-point-cloud-2d-image > img {
1244
+ object-fit: scale-down;
1245
+ width: 100%;
1246
+ height: 100%;
1247
+ }
1248
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container {
1249
+ height: 55%;
1250
+ display: flex;
1251
+ flex-direction: column;
1252
+ overflow: hidden;
1253
+ min-height: 400px;
1254
+ }
1255
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content {
1256
+ display: flex;
1257
+ flex: 1;
1258
+ overflow: hidden;
1259
+ }
1260
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar {
1261
+ padding-left: 16px;
1262
+ height: 100%;
1263
+ background-color: #4c4c4c;
1264
+ width: 36px;
1265
+ box-sizing: content-box;
1266
+ display: flex;
1267
+ flex-direction: column;
1268
+ justify-content: flex-end;
1269
+ }
1270
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__reset {
1271
+ display: inline-block;
1272
+ height: 36px;
1273
+ width: 36px;
1274
+ background-repeat: no-repeat;
1275
+ cursor: pointer;
1276
+ background-image: url("../dist/assets/icons/25ef334b.svg");
1277
+ margin: 16px 0;
1278
+ font-size: 36px;
1279
+ background-position: center;
1280
+ background-color: #444;
1281
+ border-radius: 4px;
1282
+ }
1283
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__top, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__front, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__left, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__right, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__back, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__bottom, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__lft, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__rbt {
1284
+ display: inline-block;
1285
+ height: 36px;
1286
+ width: 36px;
1287
+ background-repeat: no-repeat;
1288
+ cursor: pointer;
1289
+ background-image: url("../dist/assets/icons/c5b4262e.png");
1290
+ margin-bottom: 8px;
1291
+ }
1292
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__top.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__front.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__left.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__right.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__back.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__bottom.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__lft.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__rbt.active {
1293
+ background-image: url("../dist/assets/icons/e4f0b7fe.png");
1294
+ }
1295
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__top {
1296
+ background-position: 0 0;
1297
+ }
1298
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__front {
1299
+ background-position-y: -44px;
1300
+ }
1301
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__left {
1302
+ background-position-y: -88px;
1303
+ }
1304
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__back {
1305
+ background-position-y: -132px;
1306
+ }
1307
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__right {
1308
+ background-position-y: -176px;
1309
+ }
1310
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__bottom {
1311
+ background-position-y: -220px;
1312
+ }
1313
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__lft {
1314
+ background-position-y: -264px;
1315
+ }
1316
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__rbt {
1317
+ background-position-y: -308px;
1318
+ margin-bottom: 0px;
1319
+ }
1320
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-view {
1321
+ flex: 1;
1322
+ overflow: hidden;
1323
+ }
1324
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right {
1325
+ flex: 1;
1326
+ display: flex;
1327
+ flex-direction: column;
1328
+ }
1329
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__top-view {
1330
+ height: 62.5%;
1331
+ border-bottom: 1px solid #fff;
1332
+ overflow: hidden;
1333
+ display: flex;
1334
+ flex-direction: column;
1335
+ }
1336
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__empty-page {
1337
+ position: absolute;
1338
+ left: 0;
1339
+ top: 40px;
1340
+ flex: 1;
1341
+ background: black;
1342
+ color: #666666;
1343
+ display: flex;
1344
+ justify-content: center;
1345
+ align-items: center;
1346
+ font-size: 16px;
1347
+ z-index: 20;
1348
+ }
1349
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom {
1350
+ flex: 1;
1351
+ display: flex;
1352
+ overflow: hidden;
1353
+ }
1354
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__side-view {
1355
+ border-right: 1px solid white;
1356
+ }
1357
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__side-view,
1358
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__back-view {
1359
+ position: relative;
1360
+ flex: 1;
1361
+ background: black;
1362
+ }
1363
+
1364
+ /** PointCloud样式 end */