bhd-components 0.10.11 → 0.10.13
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.
- package/README.md +1 -1
- package/dist/index.esm.es5.development.css +10 -8
- package/dist/index.esm.es5.development.js +71 -23
- package/dist/index.esm.es5.production.css +1 -1
- package/dist/index.esm.es5.production.js +1 -1
- package/dist/vendor.esm.es5.development.js +1 -1
- package/dist/vendor.esm.es5.production.js +1 -1
- package/es2017/AIMessageList/components/copyIcon/index.module.less +1 -0
- package/es2017/AIMessageList/components/footer/index.js +53 -15
- package/es2017/AIMessageList/components/referencesIcon/index.module.less +1 -0
- package/es2017/AIMessageList/components/virtuosoList/index.js +14 -7
- package/es2017/AIMessageList/type.d.ts +1 -0
- package/es2017/customerService/index.js +3 -0
- package/esm/AIMessageList/components/copyIcon/index.module.less +1 -0
- package/esm/AIMessageList/components/footer/index.js +52 -14
- package/esm/AIMessageList/components/referencesIcon/index.module.less +1 -0
- package/esm/AIMessageList/components/virtuosoList/index.js +14 -7
- package/esm/AIMessageList/type.d.ts +1 -0
- package/esm/customerService/index.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13649,40 +13649,42 @@ strong {
|
|
|
13649
13649
|
display: none;
|
|
13650
13650
|
}
|
|
13651
13651
|
|
|
13652
|
-
.
|
|
13652
|
+
.index_module_msgItemActionCopy__9b012114 {
|
|
13653
13653
|
cursor: pointer;
|
|
13654
13654
|
border-radius: 2px;
|
|
13655
13655
|
display: flex;
|
|
13656
13656
|
line-height: 1;
|
|
13657
13657
|
}
|
|
13658
|
-
.
|
|
13658
|
+
.index_module_msgItemActionCopy__9b012114.index_module_msgItemActionCopySuccess__9b012114 {
|
|
13659
13659
|
color: #f4523b;
|
|
13660
13660
|
background-color: transparent;
|
|
13661
13661
|
}
|
|
13662
|
-
.
|
|
13662
|
+
.index_module_msgItemActionCopy__9b012114.index_module_msgItemActionCopySuccess__9b012114 > i {
|
|
13663
13663
|
color: #f4523b;
|
|
13664
13664
|
font-size: 16px;
|
|
13665
13665
|
transform: scale(0.8);
|
|
13666
13666
|
}
|
|
13667
|
-
.
|
|
13667
|
+
.index_module_msgItemActionCopy__9b012114 > i {
|
|
13668
13668
|
color: #8c8c8c;
|
|
13669
13669
|
font-size: 16px;
|
|
13670
|
+
display: flex;
|
|
13670
13671
|
}
|
|
13671
|
-
.
|
|
13672
|
+
.index_module_msgItemActionCopy__9b012114:hover {
|
|
13672
13673
|
background-color: rgba(0, 0, 0, 0.04);
|
|
13673
13674
|
}
|
|
13674
13675
|
|
|
13675
|
-
.
|
|
13676
|
+
.index_module_msgItemActionReference__9146b29b {
|
|
13676
13677
|
cursor: pointer;
|
|
13677
13678
|
border-radius: 2px;
|
|
13678
13679
|
display: flex;
|
|
13679
13680
|
line-height: 1;
|
|
13680
13681
|
}
|
|
13681
|
-
.
|
|
13682
|
+
.index_module_msgItemActionReference__9146b29b > i {
|
|
13682
13683
|
color: #8c8c8c;
|
|
13683
13684
|
font-size: 16px;
|
|
13685
|
+
display: flex;
|
|
13684
13686
|
}
|
|
13685
|
-
.
|
|
13687
|
+
.index_module_msgItemActionReference__9146b29b:hover {
|
|
13686
13688
|
background-color: rgba(0, 0, 0, 0.04);
|
|
13687
13689
|
}
|
|
13688
13690
|
|
|
@@ -8211,6 +8211,7 @@ var CustomerService = function(props) {
|
|
|
8211
8211
|
var mid = props.userData.mid;
|
|
8212
8212
|
var renderAiAnswerTimer = useRef(null);
|
|
8213
8213
|
var remarkable = new Remarkable({
|
|
8214
|
+
html: true,
|
|
8214
8215
|
highlight: function highlight(str, lang) {
|
|
8215
8216
|
if (lang && HighlightJS.getLanguage(lang)) {
|
|
8216
8217
|
try {
|
|
@@ -8225,6 +8226,7 @@ var CustomerService = function(props) {
|
|
|
8225
8226
|
});
|
|
8226
8227
|
var remarkReplaceKey = function(message, keyWordProblem) {
|
|
8227
8228
|
var newRemarkable = new Remarkable({
|
|
8229
|
+
html: true,
|
|
8228
8230
|
highlight: function highlight(str, lang) {
|
|
8229
8231
|
if (lang && HighlightJS.getLanguage(lang)) {
|
|
8230
8232
|
try {
|
|
@@ -9357,6 +9359,7 @@ var CustomerService = function(props) {
|
|
|
9357
9359
|
console.log("返回中", msg);
|
|
9358
9360
|
content = content + msg.message;
|
|
9359
9361
|
// isPosition.current = true;
|
|
9362
|
+
clearTimeout(renderAiAnswerTimer.current);
|
|
9360
9363
|
renderAiAnswerTimer.current = setTimeout(function() {
|
|
9361
9364
|
if (!finishedRef.current) {
|
|
9362
9365
|
renderAiAnswer(msg, id, type);
|
|
@@ -13022,7 +13025,7 @@ var modules_63b47c51$9 = {"virtuosoList-wrapper":"index_module_virtuosoListWrapp
|
|
|
13022
13025
|
var loading2 = "data:image/gif;base64,R0lGODlhgACAAKIEAN3d3bu7u////5mZmf///wAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NENGQTg4RUY0MTQwMTFFOEEzQjg5QjE4RTZFRjE2NTUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NENGQTg4RjA0MTQwMTFFOEEzQjg5QjE4RTZFRjE2NTUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0Q0ZBODhFRDQxNDAxMUU4QTNCODlCMThFNkVGMTY1NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0Q0ZBODhFRTQxNDAxMUU4QTNCODlCMThFNkVGMTY1NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV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";
|
|
13023
13026
|
var loading2Gif = loading2;
|
|
13024
13027
|
|
|
13025
|
-
var modules_63b47c51$8 = {"msgItem-action-copy":"
|
|
13028
|
+
var modules_63b47c51$8 = {"msgItem-action-copy":"index_module_msgItemActionCopy__9b012114","msgItem-action-copy-success":"index_module_msgItemActionCopySuccess__9b012114"};
|
|
13026
13029
|
|
|
13027
13030
|
var copyIconSvg = /*#__PURE__*/ jsx("i", {
|
|
13028
13031
|
children: /*#__PURE__*/ jsxs("svg", {
|
|
@@ -13096,7 +13099,7 @@ var CopyIcon = function(props) {
|
|
|
13096
13099
|
};
|
|
13097
13100
|
var CopyIcon$1 = CopyIcon;
|
|
13098
13101
|
|
|
13099
|
-
var modules_63b47c51$7 = {"msgItem-action-reference":"
|
|
13102
|
+
var modules_63b47c51$7 = {"msgItem-action-reference":"index_module_msgItemActionReference__9146b29b"};
|
|
13100
13103
|
|
|
13101
13104
|
var referencesIcon = /*#__PURE__*/ jsx("i", {
|
|
13102
13105
|
children: /*#__PURE__*/ jsxs("svg", {
|
|
@@ -14269,6 +14272,7 @@ var VirtuosoList = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
14269
14272
|
sendingId: ""
|
|
14270
14273
|
});
|
|
14271
14274
|
var timeRenderCache = useRef(new Map()).current;
|
|
14275
|
+
var autoScrollBottom = useRef(true);
|
|
14272
14276
|
useRef(new Map()).current;
|
|
14273
14277
|
useImperativeHandle(ref, function() {
|
|
14274
14278
|
return {
|
|
@@ -14362,6 +14366,9 @@ var VirtuosoList = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
14362
14366
|
recordRef.current.dataSource = dataSource;
|
|
14363
14367
|
recordRef.current.maxPage = Math.ceil(total / pageSize);
|
|
14364
14368
|
recordRef.current.sendingId = sendingId;
|
|
14369
|
+
if (!sendingId) {
|
|
14370
|
+
autoScrollBottom.current = true;
|
|
14371
|
+
}
|
|
14365
14372
|
}, [
|
|
14366
14373
|
page,
|
|
14367
14374
|
pageSize,
|
|
@@ -14395,14 +14402,15 @@ var VirtuosoList = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
14395
14402
|
setDataSource(function(data) {
|
|
14396
14403
|
return _to_consumable_array(data).concat(_to_consumable_array(list));
|
|
14397
14404
|
});
|
|
14398
|
-
timerRef.current.scrollTimer = setTimeout(
|
|
14399
|
-
|
|
14400
|
-
|
|
14405
|
+
// timerRef.current.scrollTimer = setTimeout(() => {
|
|
14406
|
+
scrollToBottom();
|
|
14407
|
+
// }, 100);
|
|
14401
14408
|
};
|
|
14402
14409
|
var scrollToBottom = function() {
|
|
14403
|
-
if (!virtuosoRef.current) return;
|
|
14410
|
+
if (!virtuosoRef.current || !autoScrollBottom.current) return;
|
|
14404
14411
|
virtuosoRef.current.scrollToIndex({
|
|
14405
14412
|
index: "LAST",
|
|
14413
|
+
align: "end",
|
|
14406
14414
|
behavior: "auto"
|
|
14407
14415
|
});
|
|
14408
14416
|
};
|
|
@@ -14826,8 +14834,10 @@ var VirtuosoList = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
14826
14834
|
p[0].innerText = "复制代码";
|
|
14827
14835
|
}
|
|
14828
14836
|
};
|
|
14829
|
-
var
|
|
14830
|
-
|
|
14837
|
+
var onWheel = function() {
|
|
14838
|
+
if (recordRef.current.sendingId && recordRef.current.sendingId !== "inputing") {
|
|
14839
|
+
autoScrollBottom.current = false;
|
|
14840
|
+
}
|
|
14831
14841
|
};
|
|
14832
14842
|
return /*#__PURE__*/ jsx("div", {
|
|
14833
14843
|
className: "".concat(getCls("virtuosoList-wrapper")),
|
|
@@ -14854,7 +14864,7 @@ var VirtuosoList = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
14854
14864
|
},
|
|
14855
14865
|
increaseViewportBy: 200,
|
|
14856
14866
|
overscan: 10,
|
|
14857
|
-
|
|
14867
|
+
onWheel: onWheel
|
|
14858
14868
|
})
|
|
14859
14869
|
});
|
|
14860
14870
|
});
|
|
@@ -15430,6 +15440,7 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15430
15440
|
return _object_spread({
|
|
15431
15441
|
setTextValue: setTextValue,
|
|
15432
15442
|
sendMsg: sendMsg,
|
|
15443
|
+
refreshSendMsg: refreshSendMsg,
|
|
15433
15444
|
clearText: function() {
|
|
15434
15445
|
setTextValue("");
|
|
15435
15446
|
},
|
|
@@ -15576,7 +15587,16 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15576
15587
|
});
|
|
15577
15588
|
sendMsgAjax();
|
|
15578
15589
|
};
|
|
15579
|
-
|
|
15590
|
+
// 重新发送消息
|
|
15591
|
+
var refreshSendMsg = function refreshSendMsg(msgId, value, reference, fileList) {
|
|
15592
|
+
sendMsgAjax({
|
|
15593
|
+
id: msgId,
|
|
15594
|
+
value: value,
|
|
15595
|
+
reference: reference || null,
|
|
15596
|
+
fileList: fileList || []
|
|
15597
|
+
});
|
|
15598
|
+
};
|
|
15599
|
+
var sendMsgAjax = function(recordObj) {
|
|
15580
15600
|
var url = sendMsgAjaxParams.url, _sendMsgAjaxParams_method = sendMsgAjaxParams.method, method = _sendMsgAjaxParams_method === void 0 ? "POST" : _sendMsgAjaxParams_method, _sendMsgAjaxParams_headers = sendMsgAjaxParams.headers, headers = _sendMsgAjaxParams_headers === void 0 ? function() {
|
|
15581
15601
|
return {};
|
|
15582
15602
|
} : _sendMsgAjaxParams_headers, _sendMsgAjaxParams_params = sendMsgAjaxParams.params, params = _sendMsgAjaxParams_params === void 0 ? function() {
|
|
@@ -15591,15 +15611,27 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15591
15611
|
console.log("apiRef", apiRef);
|
|
15592
15612
|
var msgId = "inputing";
|
|
15593
15613
|
var createTime = new Date().getTime();
|
|
15594
|
-
|
|
15595
|
-
|
|
15596
|
-
|
|
15597
|
-
|
|
15598
|
-
|
|
15599
|
-
|
|
15600
|
-
|
|
15601
|
-
|
|
15602
|
-
|
|
15614
|
+
if (recordObj) {
|
|
15615
|
+
apiRef.contentApi.addMsg({
|
|
15616
|
+
id: msgId,
|
|
15617
|
+
createTime: createTime,
|
|
15618
|
+
content: "正在输入...",
|
|
15619
|
+
location: "left",
|
|
15620
|
+
reference: recordObj.reference || null,
|
|
15621
|
+
source: null,
|
|
15622
|
+
fileList: recordObj.fileList || []
|
|
15623
|
+
});
|
|
15624
|
+
} else {
|
|
15625
|
+
apiRef.contentApi.addMsg({
|
|
15626
|
+
id: msgId,
|
|
15627
|
+
createTime: createTime,
|
|
15628
|
+
content: "正在输入...",
|
|
15629
|
+
location: "left",
|
|
15630
|
+
reference: null,
|
|
15631
|
+
source: null,
|
|
15632
|
+
fileList: fileListRef.current.getFileList()
|
|
15633
|
+
});
|
|
15634
|
+
}
|
|
15603
15635
|
var msgContent = "";
|
|
15604
15636
|
setSending(true);
|
|
15605
15637
|
setTextValue("");
|
|
@@ -15611,6 +15643,19 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15611
15643
|
recordRef.current.referencesSource,
|
|
15612
15644
|
fileListRef.current ? fileListRef.current.getFileList() : []
|
|
15613
15645
|
];
|
|
15646
|
+
if (recordObj) {
|
|
15647
|
+
arg = [
|
|
15648
|
+
recordObj.value,
|
|
15649
|
+
recordObj.reference || null,
|
|
15650
|
+
recordObj.fileList || []
|
|
15651
|
+
];
|
|
15652
|
+
} else {
|
|
15653
|
+
arg = [
|
|
15654
|
+
recordRef.current.value,
|
|
15655
|
+
recordRef.current.referencesSource,
|
|
15656
|
+
fileListRef.current ? fileListRef.current.getFileList() : []
|
|
15657
|
+
];
|
|
15658
|
+
}
|
|
15614
15659
|
beforeSendMsg.apply(void 0, _to_consumable_array(arg)).then(function(beforeInfo) {
|
|
15615
15660
|
var callback = function() {
|
|
15616
15661
|
var isClose = false;
|
|
@@ -15621,8 +15666,8 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15621
15666
|
setSending(false);
|
|
15622
15667
|
if (recordMsgObj.id) {
|
|
15623
15668
|
apiRef.contentApi.recordMsg(recordMsgObj);
|
|
15624
|
-
apiRef.contentApi.setSendingId(recordMsgObj.id);
|
|
15625
15669
|
}
|
|
15670
|
+
apiRef.contentApi.setSendingId("");
|
|
15626
15671
|
console.log("onclose: ", recordMsgObj);
|
|
15627
15672
|
};
|
|
15628
15673
|
fetchEventSource(url, _object_spread({
|
|
@@ -15648,6 +15693,9 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15648
15693
|
},
|
|
15649
15694
|
onmessage: function(ev) {
|
|
15650
15695
|
var data = onMessage(ev, closeCallback);
|
|
15696
|
+
if (recordObj) {
|
|
15697
|
+
data.id = recordObj.id;
|
|
15698
|
+
}
|
|
15651
15699
|
msgContent += data.content;
|
|
15652
15700
|
var str = msgContent.replace(/\\n/g, "\n");
|
|
15653
15701
|
str = conversionContent(str);
|
|
@@ -15662,9 +15710,9 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
15662
15710
|
apiRef.contentApi.setSendingId(data.id);
|
|
15663
15711
|
apiRef.contentApi.updateMsg(msgId, recordMsgObj);
|
|
15664
15712
|
msgId = data.id;
|
|
15665
|
-
updateMsgRef.current = setTimeout(function() {
|
|
15666
|
-
|
|
15667
|
-
|
|
15713
|
+
// updateMsgRef.current = setTimeout(function () {
|
|
15714
|
+
apiRef.contentApi.scrollToBottom();
|
|
15715
|
+
// }, 100);
|
|
15668
15716
|
},
|
|
15669
15717
|
onclose: function() {
|
|
15670
15718
|
closeCallback();
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
*
|
|
9
9
|
* Date: 2024-04-21T07:43:02.731Z
|
|
10
|
-
*/}.index_module_cropperBox__36cc44f0 .cropper-container{-webkit-touch-callout:none;direction:ltr;font-size:0;line-height:0;position:relative;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.index_module_cropperBox__36cc44f0 .cropper-container img{backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.index_module_cropperBox__36cc44f0 .cropper-canvas,.index_module_cropperBox__36cc44f0 .cropper-crop-box,.index_module_cropperBox__36cc44f0 .cropper-drag-box,.index_module_cropperBox__36cc44f0 .cropper-modal,.index_module_cropperBox__36cc44f0 .cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.index_module_cropperBox__36cc44f0 .cropper-canvas,.index_module_cropperBox__36cc44f0 .cropper-wrap-box{overflow:hidden}.index_module_cropperBox__36cc44f0 .cropper-drag-box{background-color:#fff;opacity:0}.index_module_cropperBox__36cc44f0 .cropper-modal{background-color:#000;opacity:.5}.index_module_cropperBox__36cc44f0 .cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.index_module_cropperBox__36cc44f0 .cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.index_module_cropperBox__36cc44f0 .cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.index_module_cropperBox__36cc44f0 .cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.index_module_cropperBox__36cc44f0 .cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.index_module_cropperBox__36cc44f0 .cropper-center:after,.index_module_cropperBox__36cc44f0 .cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.index_module_cropperBox__36cc44f0 .cropper-center:before{height:1px;left:-3px;top:0;width:7px}.index_module_cropperBox__36cc44f0 .cropper-center:after{height:7px;left:0;top:-3px;width:1px}.index_module_cropperBox__36cc44f0 .cropper-face,.index_module_cropperBox__36cc44f0 .cropper-line,.index_module_cropperBox__36cc44f0 .cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.index_module_cropperBox__36cc44f0 .cropper-face{background-color:#fff;left:0;top:0}.index_module_cropperBox__36cc44f0 .cropper-line{background-color:#39f}.index_module_cropperBox__36cc44f0 .cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.index_module_cropperBox__36cc44f0 .cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.index_module_cropperBox__36cc44f0 .cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.index_module_cropperBox__36cc44f0 .cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.index_module_cropperBox__36cc44f0 .cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.index_module_cropperBox__36cc44f0 .cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.index_module_cropperBox__36cc44f0 .cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.index_module_cropperBox__36cc44f0 .cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.index_module_cropperBox__36cc44f0 .cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.index_module_cropperBox__36cc44f0 .cropper-point.point-se{height:5px;opacity:.75;width:5px}}.index_module_cropperBox__36cc44f0 .cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.index_module_cropperBox__36cc44f0 .cropper-invisible{opacity:0}.index_module_cropperBox__36cc44f0 .cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.index_module_cropperBox__36cc44f0 .cropper-hide{display:block;height:0;position:absolute;width:0}.index_module_cropperBox__36cc44f0 .cropper-hidden{display:none!important}.index_module_cropperBox__36cc44f0 .cropper-move{cursor:move}.index_module_cropperBox__36cc44f0 .cropper-crop{cursor:crosshair}.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-drag-box,.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-face,.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-line,.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-point{cursor:not-allowed}.index_module_cropperBtn__36cc44f0{align-items:center;display:flex;justify-content:space-between;margin-top:24px}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0{align-items:center;display:flex;gap:8px}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0>span{align-items:center;border:1px solid rgba(0,0,0,.15);color:rgba(0,0,0,.65);cursor:pointer;display:flex;padding:4px}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0>span:hover{border-color:#ff7d66;color:#ff7d66}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0 .anticon{cursor:pointer;font-size:14px}.index_module_root__b60b60e0{background:#f5f5f5;display:flex;flex-direction:column;height:100%;overflow:hidden;width:100%}.index_module_root__b60b60e0 .index_module_rootHeader__b60b60e0{flex-shrink:0;width:100%}.index_module_root__b60b60e0 .index_module_rootContent__b60b60e0{flex:1;width:100%}.index_module_root__b60b60e0 .index_module_rootFooter__b60b60e0{flex-shrink:0;width:100%}.index_module_header__3cf37c84{border-bottom:1px solid #ebebeb;box-sizing:border-box;justify-content:space-between;padding:8px 16px;width:100%}.index_module_header__3cf37c84,.index_module_header__3cf37c84 .index_module_headerLeft__3cf37c84{align-items:center;display:flex;gap:8px}.index_module_header__3cf37c84 .index_module_headerLeft__3cf37c84 .index_module_headerIcon__3cf37c84>i{display:flex;font-size:16px;line-height:1}.index_module_header__3cf37c84 .index_module_headerLeft__3cf37c84 .index_module_headerTitle__3cf37c84{color:rgba(0,0,0,.65);font-size:16px;font-weight:600;line-height:1.5}.index_module_header__3cf37c84 .index_module_headerRight__3cf37c84{font-size:16px}.index_module_content__fcd2c97c,.index_module_content__fcd2c97c .index_module_contentList__fcd2c97c,.index_module_virtuosoListWrapper__1f4840d2{height:100%;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_loadingIcon__1f4840d2{align-items:center;box-sizing:border-box;display:flex;justify-content:center;padding:16px 0 24px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_loadingIcon__1f4840d2>img{height:32px;width:32px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgDate__1f4840d2{align-items:center;box-sizing:border-box;color:rgba(0,0,0,.25);display:flex;font-size:14px;gap:16px;justify-content:center;padding:16px 32px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgDate__1f4840d2:after,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgDate__1f4840d2:before{background:#ebebeb;content:"";display:block;flex:1;height:1px;width:50%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2{box-sizing:border-box;display:flex;padding:0 16px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2{color:rgba(0,0,0,.65);display:flex;flex-direction:column;font-size:14px;max-width:80%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2{max-width:100%;position:relative;width:-moz-fit-content;width:fit-content}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2{padding:12px 16px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2{align-items:center;background:rgba(0,0,0,.02);border:1px solid rgba(0,0,0,.06);border-radius:4px 4px 0 0;cursor:pointer;display:flex;font-weight:400;height:37px;justify-content:flex-end;line-height:37px;padding:0 16px 0 0;position:relative;text-align:right;top:6px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copyCodeFun__1f4840d2{display:flex}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2 .index_module_copyCodeText__1f4840d2{line-height:1}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2 .index_module_icon__1f4840d2{color:rgba(0,0,0,.65);display:none;font-size:14px;margin-right:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2 .index_module_icon__1f4840d2.index_module_copy__1f4840d2{display:block}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copyCode__1f4840d2{color:#f4523b}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copy__1f4840d2{display:none}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copy_success_flag__1f4840d2{color:#f4523b;display:inline-block}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copyCodeText__1f4840d2{color:#f4523b}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h1,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h2,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h3,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h4,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h5,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h6{color:rgba(0,0,0,.85)}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div pre::-webkit-scrollbar{background-color:#eaedf1;background-color:transparent;height:4px;width:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div pre::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.25);border-radius:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div p{white-space:break-spaces;word-break:break-all}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div li,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div p{color:rgba(0,0,0,.85);line-height:1.5}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div li{margin-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div li:first-child{margin-top:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>h3{font-size:16px;font-weight:600;padding:10px 0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol{list-style:decimal;padding-inline-start:20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li{list-style-type:auto}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li p{font-size:14px;font-weight:600}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ul li{color:rgba(0,0,0,.85);list-style:inside}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ul li::marker{color:#d9d9d9}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ul li:first-child{padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ol li::marker{color:rgba(0,0,0,.45)}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ol li:first-child{padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol>li:last-of-type pre{margin-bottom:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>:not(pre){padding-bottom:8px;padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>:not(pre):first-child{padding-top:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>:not(pre):last-child{padding-bottom:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>h3,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>h4{padding-bottom:4px;padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>p+p{padding-bottom:4px;padding-top:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>pre:last-of-type{margin-bottom:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>pre:last-of-type+*{margin-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div hr{border:none;height:0;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div table{border-collapse:separate;border-left:1px solid #dfe6ec;border-top:1px solid #dfe6ec;margin:8px 0;padding:0;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div table thead tr th{background-color:#f8f8f9;border-bottom:1px solid #dfe6ec;border-right:1px solid #dfe6ec;padding:8px;text-align:center}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div table tbody tr td{border-bottom:1px solid #dfe6ec;border-right:1px solid #dfe6ec;height:37px;line-height:21px;padding:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div pre{background:#fafafa;border:1px solid rgba(0,0,0,.06);border-radius:0 0 4px 4px;border-top:none;line-height:1.5;margin:4px 0 8px;padding:12px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2{align-items:center;background:#fafafa;border:1px solid #ebebeb;border-radius:8px;display:flex;gap:12px;min-width:216px;padding:8px 12px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2 .index_module_msgItemFileLeft__1f4840d2{align-items:center;display:flex;font-size:24px;justify-content:center;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2 .index_module_msgItemFileLeft__1f4840d2>i{display:flex;font-size:24px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2 .index_module_msgItemFileRight__1f4840d2{color:rgba(0,0,0,.65);font-size:14px;font-weight:400;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2{align-items:center;border-top:1px solid rgba(0,0,0,.06);display:flex;justify-content:space-between;padding:12px 16px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2 .index_module_msgItemActionLeft__1f4840d2,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2 .index_module_msgItemActionRight__1f4840d2{align-items:center;display:flex;gap:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2{height:24px;position:relative}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{background:#fff;border-radius:4px;line-height:1;padding:4px 8px;position:absolute;width:-moz-max-content;width:max-content;z-index:9}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2 .index_module_msgItemActionLeft__1f4840d2,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2 .index_module_msgItemActionRight__1f4840d2{align-items:center;display:flex;gap:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2.index_module_msgItemActionPopoverFloatTop__1f4840d2{bottom:4px;box-shadow:0 4px 10px 0 rgba(0,0,0,.1);right:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2.index_module_msgItemActionPopoverFloatBottom__1f4840d2{box-shadow:0 4px 10px 4px rgba(0,0,0,.1);right:0;top:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceText__1f4840d2{background:#e7e7e7;border-radius:2px;color:rgba(0,0,0,.65);font-size:12px;margin-top:8px;padding:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceText__1f4840d2>div{-webkit-line-clamp:2;-webkit-box-orient:vertical;word-wrap:break-word;display:-webkit-box;max-height:36px;overflow:hidden;text-overflow:ellipsis;width:100%;word-break:break-all}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2{background:#e7e7e7;border-radius:2px;color:rgba(0,0,0,.65);font-size:12px;margin-top:8px;padding:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2{align-items:center;background:#fafafa;border:1px solid #ebebeb;border-radius:8px;display:flex;gap:12px;min-width:216px;padding:8px 12px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2 .index_module_msgItemReferenceFileLeft__1f4840d2{align-items:center;display:flex;font-size:24px;justify-content:center;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2 .index_module_msgItemReferenceFileLeft__1f4840d2>i{display:flex;font-size:24px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2 .index_module_msgItemReferenceFileRight__1f4840d2{color:rgba(0,0,0,.65);font-size:14px;font-weight:400}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2{justify-content:flex-start}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2{align-items:flex-start}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2{background:#fff;border-radius:2px 20px 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2{border-radius:0 0 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2{margin-left:auto}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{display:none}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2{justify-content:flex-end;padding-bottom:24px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2{align-items:flex-end}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2:hover .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{display:flex}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2{background:#d1e4ff;border-radius:20px 2px 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2{border-radius:0 0 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{display:none}.index_module_msgItemActionCopy__4640e67c{border-radius:2px;cursor:pointer;display:flex;line-height:1}.index_module_msgItemActionCopy__4640e67c.index_module_msgItemActionCopySuccess__4640e67c{background-color:transparent;color:#f4523b}.index_module_msgItemActionCopy__4640e67c.index_module_msgItemActionCopySuccess__4640e67c>i{color:#f4523b;font-size:16px;transform:scale(.8)}.index_module_msgItemActionCopy__4640e67c>i{color:#8c8c8c;font-size:16px}.index_module_msgItemActionCopy__4640e67c:hover{background-color:rgba(0,0,0,.04)}.index_module_msgItemActionReference__9d15ef36{border-radius:2px;cursor:pointer;display:flex;line-height:1}.index_module_msgItemActionReference__9d15ef36>i{color:#8c8c8c;font-size:16px}.index_module_msgItemActionReference__9d15ef36:hover{background-color:rgba(0,0,0,.04)}.index_module_downVoteBtn__2e714550,.index_module_upVoteBtn__2e714550{color:rgba(0,0,0,.65);cursor:pointer;display:flex;font-size:16px}.index_module_downVoteBtn__2e714550.index_module_active__2e714550,.index_module_downVoteBtn__2e714550:hover,.index_module_upVoteBtn__2e714550.index_module_active__2e714550,.index_module_upVoteBtn__2e714550:hover{color:#f4523b}.index_module_refreshBtn__e1c5f38f{color:rgba(0,0,0,.65);cursor:pointer;display:flex;font-size:16px}.index_module_refreshBtn__e1c5f38f.index_module_active__e1c5f38f,.index_module_refreshBtn__e1c5f38f:hover{color:#f4523b}.index_module_footer__2287d487{box-sizing:border-box;padding:16px;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:8px;padding-bottom:12px;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487.index_module_footerBodyWarn__2287d487{border-color:#f4523b}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerFile__2287d487{width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerInput__2287d487 .bhd-input{background:transparent;border:none;box-shadow:none;padding:12px 16px}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487{box-sizing:border-box;padding:0 16px;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487 .index_module_footerActionBtn__2287d487{align-items:center;display:flex;justify-content:flex-end;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487 .index_module_footerActionBtn__2287d487 .bhd-divider{border-color:rgba(0,0,0,.06);height:16px;margin:0 16px;top:0}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487 .index_module_footerActionBtn__2287d487 .bhd-upload-wrapper{display:flex}.index_module_sendBtnIcon__d770fbb6{color:#5991ef;cursor:pointer;display:flex;font-size:24px}.index_module_sendBtnIcon__d770fbb6.index_module_disabled__d770fbb6{color:rgba(0,0,0,.25);cursor:not-allowed}.index_module_sendingIcon__d770fbb6{color:#f4523b;cursor:pointer;display:flex;font-size:18px}.index_module_popover__d770fbb6 .bhd-popover-inner-content{color:rgba(0,0,0,.65)!important}.index_module_uploadFileBtn__e41600f2{cursor:pointer;display:flex;font-size:24px}.index_module_footerFileListWrapper__e818c28d{box-sizing:border-box;padding:12px 16px;position:relative;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d{display:flex;flex-direction:column;gap:8px;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d{align-items:center;background:rgba(0,0,0,.02);border:1px solid #ebebeb;border-radius:8px;box-sizing:border-box;display:flex;gap:12px;overflow:hidden;padding:8px 12px;position:relative;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemIcon__e818c28d{flex-shrink:0}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemIcon__e818c28d>i{display:flex;font-size:24px}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemText__e818c28d{color:rgba(0,0,0,.65);flex:1;font-size:14px;font-weight:400;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemStatus__e818c28d{flex-shrink:0}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemDelete__e818c28d{cursor:pointer;display:none;position:absolute;right:0;top:0}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d:hover{background:rgba(0,0,0,.06)}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d:hover .index_module_footerFileListListItemDelete__e818c28d{display:flex}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListPre__e818c28d{display:flex;justify-content:center;left:50%;position:absolute;top:-8px;transform:translateX(-50%);z-index:2}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListPre__e818c28d .anticon-double-right{color:#595959;cursor:pointer;font-size:16px;transform:rotate(-90deg)}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListNext__e818c28d{bottom:-8px;display:flex;justify-content:center;left:50%;position:absolute;transform:translateX(-50%);z-index:2}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListNext__e818c28d .anticon-double-right{color:#595959;cursor:pointer;font-size:16px;transform:rotate(90deg)}.index_module_footerReferences__ef2f2d56{align-items:center;box-sizing:border-box;display:flex;gap:8px;overflow:hidden;padding:0 16px 12px;width:100%}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56{background:#e7e7e7;border-radius:2px;color:rgba(0,0,0,.65);flex:1;font-size:12px;line-height:18px;overflow:hidden;padding:8px}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_text__ef2f2d56{-webkit-line-clamp:2;-webkit-box-orient:vertical;word-wrap:break-word;display:-webkit-box;max-height:36px;overflow:hidden;text-overflow:ellipsis;width:100%;word-break:break-all}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56{align-items:center;border-radius:2px;box-sizing:border-box;display:flex;gap:8px;overflow:hidden;width:100%}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56 .index_module_footerReferences_left_file_icon__ef2f2d56{flex-shrink:0}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56 .index_module_footerReferences_left_file_icon__ef2f2d56>i{font-size:24px}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56 .index_module_footerReferences_left_file_title__ef2f2d56{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_right__ef2f2d56{cursor:pointer;display:flex}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_right__ef2f2d56 .anticon-close-circle{color:#bfbfbf;font-size:20px}
|
|
10
|
+
*/}.index_module_cropperBox__36cc44f0 .cropper-container{-webkit-touch-callout:none;direction:ltr;font-size:0;line-height:0;position:relative;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.index_module_cropperBox__36cc44f0 .cropper-container img{backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.index_module_cropperBox__36cc44f0 .cropper-canvas,.index_module_cropperBox__36cc44f0 .cropper-crop-box,.index_module_cropperBox__36cc44f0 .cropper-drag-box,.index_module_cropperBox__36cc44f0 .cropper-modal,.index_module_cropperBox__36cc44f0 .cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.index_module_cropperBox__36cc44f0 .cropper-canvas,.index_module_cropperBox__36cc44f0 .cropper-wrap-box{overflow:hidden}.index_module_cropperBox__36cc44f0 .cropper-drag-box{background-color:#fff;opacity:0}.index_module_cropperBox__36cc44f0 .cropper-modal{background-color:#000;opacity:.5}.index_module_cropperBox__36cc44f0 .cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.index_module_cropperBox__36cc44f0 .cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.index_module_cropperBox__36cc44f0 .cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.index_module_cropperBox__36cc44f0 .cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.index_module_cropperBox__36cc44f0 .cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.index_module_cropperBox__36cc44f0 .cropper-center:after,.index_module_cropperBox__36cc44f0 .cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.index_module_cropperBox__36cc44f0 .cropper-center:before{height:1px;left:-3px;top:0;width:7px}.index_module_cropperBox__36cc44f0 .cropper-center:after{height:7px;left:0;top:-3px;width:1px}.index_module_cropperBox__36cc44f0 .cropper-face,.index_module_cropperBox__36cc44f0 .cropper-line,.index_module_cropperBox__36cc44f0 .cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.index_module_cropperBox__36cc44f0 .cropper-face{background-color:#fff;left:0;top:0}.index_module_cropperBox__36cc44f0 .cropper-line{background-color:#39f}.index_module_cropperBox__36cc44f0 .cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.index_module_cropperBox__36cc44f0 .cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.index_module_cropperBox__36cc44f0 .cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.index_module_cropperBox__36cc44f0 .cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.index_module_cropperBox__36cc44f0 .cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.index_module_cropperBox__36cc44f0 .cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.index_module_cropperBox__36cc44f0 .cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.index_module_cropperBox__36cc44f0 .cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.index_module_cropperBox__36cc44f0 .cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.index_module_cropperBox__36cc44f0 .cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.index_module_cropperBox__36cc44f0 .cropper-point.point-se{height:5px;opacity:.75;width:5px}}.index_module_cropperBox__36cc44f0 .cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.index_module_cropperBox__36cc44f0 .cropper-invisible{opacity:0}.index_module_cropperBox__36cc44f0 .cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.index_module_cropperBox__36cc44f0 .cropper-hide{display:block;height:0;position:absolute;width:0}.index_module_cropperBox__36cc44f0 .cropper-hidden{display:none!important}.index_module_cropperBox__36cc44f0 .cropper-move{cursor:move}.index_module_cropperBox__36cc44f0 .cropper-crop{cursor:crosshair}.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-drag-box,.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-face,.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-line,.index_module_cropperBox__36cc44f0 .cropper-disabled .cropper-point{cursor:not-allowed}.index_module_cropperBtn__36cc44f0{align-items:center;display:flex;justify-content:space-between;margin-top:24px}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0{align-items:center;display:flex;gap:8px}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0>span{align-items:center;border:1px solid rgba(0,0,0,.15);color:rgba(0,0,0,.65);cursor:pointer;display:flex;padding:4px}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0>span:hover{border-color:#ff7d66;color:#ff7d66}.index_module_cropperBtn__36cc44f0 .index_module_icons__36cc44f0 .anticon{cursor:pointer;font-size:14px}.index_module_root__b60b60e0{background:#f5f5f5;display:flex;flex-direction:column;height:100%;overflow:hidden;width:100%}.index_module_root__b60b60e0 .index_module_rootHeader__b60b60e0{flex-shrink:0;width:100%}.index_module_root__b60b60e0 .index_module_rootContent__b60b60e0{flex:1;width:100%}.index_module_root__b60b60e0 .index_module_rootFooter__b60b60e0{flex-shrink:0;width:100%}.index_module_header__3cf37c84{border-bottom:1px solid #ebebeb;box-sizing:border-box;justify-content:space-between;padding:8px 16px;width:100%}.index_module_header__3cf37c84,.index_module_header__3cf37c84 .index_module_headerLeft__3cf37c84{align-items:center;display:flex;gap:8px}.index_module_header__3cf37c84 .index_module_headerLeft__3cf37c84 .index_module_headerIcon__3cf37c84>i{display:flex;font-size:16px;line-height:1}.index_module_header__3cf37c84 .index_module_headerLeft__3cf37c84 .index_module_headerTitle__3cf37c84{color:rgba(0,0,0,.65);font-size:16px;font-weight:600;line-height:1.5}.index_module_header__3cf37c84 .index_module_headerRight__3cf37c84{font-size:16px}.index_module_content__fcd2c97c,.index_module_content__fcd2c97c .index_module_contentList__fcd2c97c,.index_module_virtuosoListWrapper__1f4840d2{height:100%;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_loadingIcon__1f4840d2{align-items:center;box-sizing:border-box;display:flex;justify-content:center;padding:16px 0 24px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_loadingIcon__1f4840d2>img{height:32px;width:32px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgDate__1f4840d2{align-items:center;box-sizing:border-box;color:rgba(0,0,0,.25);display:flex;font-size:14px;gap:16px;justify-content:center;padding:16px 32px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgDate__1f4840d2:after,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgDate__1f4840d2:before{background:#ebebeb;content:"";display:block;flex:1;height:1px;width:50%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2{box-sizing:border-box;display:flex;padding:0 16px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2{color:rgba(0,0,0,.65);display:flex;flex-direction:column;font-size:14px;max-width:80%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2{max-width:100%;position:relative;width:-moz-fit-content;width:fit-content}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2{padding:12px 16px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2{align-items:center;background:rgba(0,0,0,.02);border:1px solid rgba(0,0,0,.06);border-radius:4px 4px 0 0;cursor:pointer;display:flex;font-weight:400;height:37px;justify-content:flex-end;line-height:37px;padding:0 16px 0 0;position:relative;text-align:right;top:6px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copyCodeFun__1f4840d2{display:flex}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2 .index_module_copyCodeText__1f4840d2{line-height:1}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2 .index_module_icon__1f4840d2{color:rgba(0,0,0,.65);display:none;font-size:14px;margin-right:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2 .index_module_icon__1f4840d2.index_module_copy__1f4840d2{display:block}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copyCode__1f4840d2{color:#f4523b}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copy__1f4840d2{display:none}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copy_success_flag__1f4840d2{color:#f4523b;display:inline-block}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_copyCode__1f4840d2.index_module_copy_success__1f4840d2 .index_module_copyCodeText__1f4840d2{color:#f4523b}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h1,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h2,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h3,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h4,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h5,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div h6{color:rgba(0,0,0,.85)}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div pre::-webkit-scrollbar{background-color:#eaedf1;background-color:transparent;height:4px;width:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div pre::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.25);border-radius:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div p{white-space:break-spaces;word-break:break-all}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div li,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div p{color:rgba(0,0,0,.85);line-height:1.5}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div li{margin-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div li:first-child{margin-top:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>h3{font-size:16px;font-weight:600;padding:10px 0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol{list-style:decimal;padding-inline-start:20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li{list-style-type:auto}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li p{font-size:14px;font-weight:600}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ul li{color:rgba(0,0,0,.85);list-style:inside}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ul li::marker{color:#d9d9d9}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ul li:first-child{padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ol li::marker{color:rgba(0,0,0,.45)}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol li>ol li:first-child{padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div ol>li:last-of-type pre{margin-bottom:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>:not(pre){padding-bottom:8px;padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>:not(pre):first-child{padding-top:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>:not(pre):last-child{padding-bottom:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>h3,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>h4{padding-bottom:4px;padding-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>p+p{padding-bottom:4px;padding-top:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>pre:last-of-type{margin-bottom:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div>pre:last-of-type+*{margin-top:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div hr{border:none;height:0;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div table{border-collapse:separate;border-left:1px solid #dfe6ec;border-top:1px solid #dfe6ec;margin:8px 0;padding:0;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div table thead tr th{background-color:#f8f8f9;border-bottom:1px solid #dfe6ec;border-right:1px solid #dfe6ec;padding:8px;text-align:center}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div table tbody tr td{border-bottom:1px solid #dfe6ec;border-right:1px solid #dfe6ec;height:37px;line-height:21px;padding:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2>div pre{background:#fafafa;border:1px solid rgba(0,0,0,.06);border-radius:0 0 4px 4px;border-top:none;line-height:1.5;margin:4px 0 8px;padding:12px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2{align-items:center;background:#fafafa;border:1px solid #ebebeb;border-radius:8px;display:flex;gap:12px;min-width:216px;padding:8px 12px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2 .index_module_msgItemFileLeft__1f4840d2{align-items:center;display:flex;font-size:24px;justify-content:center;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2 .index_module_msgItemFileLeft__1f4840d2>i{display:flex;font-size:24px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemText__1f4840d2 .index_module_msgItemFile__1f4840d2 .index_module_msgItemFileRight__1f4840d2{color:rgba(0,0,0,.65);font-size:14px;font-weight:400;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2{align-items:center;border-top:1px solid rgba(0,0,0,.06);display:flex;justify-content:space-between;padding:12px 16px;width:100%}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2 .index_module_msgItemActionLeft__1f4840d2,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2 .index_module_msgItemActionRight__1f4840d2{align-items:center;display:flex;gap:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2{height:24px;position:relative}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{background:#fff;border-radius:4px;line-height:1;padding:4px 8px;position:absolute;width:-moz-max-content;width:max-content;z-index:9}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2 .index_module_msgItemActionLeft__1f4840d2,.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2 .index_module_msgItemActionRight__1f4840d2{align-items:center;display:flex;gap:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2.index_module_msgItemActionPopoverFloatTop__1f4840d2{bottom:4px;box-shadow:0 4px 10px 0 rgba(0,0,0,.1);right:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2.index_module_msgItemActionPopoverFloatBottom__1f4840d2{box-shadow:0 4px 10px 4px rgba(0,0,0,.1);right:0;top:4px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceText__1f4840d2{background:#e7e7e7;border-radius:2px;color:rgba(0,0,0,.65);font-size:12px;margin-top:8px;padding:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceText__1f4840d2>div{-webkit-line-clamp:2;-webkit-box-orient:vertical;word-wrap:break-word;display:-webkit-box;max-height:36px;overflow:hidden;text-overflow:ellipsis;width:100%;word-break:break-all}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2{background:#e7e7e7;border-radius:2px;color:rgba(0,0,0,.65);font-size:12px;margin-top:8px;padding:8px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2{align-items:center;background:#fafafa;border:1px solid #ebebeb;border-radius:8px;display:flex;gap:12px;min-width:216px;padding:8px 12px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2 .index_module_msgItemReferenceFileLeft__1f4840d2{align-items:center;display:flex;font-size:24px;justify-content:center;margin:0;padding:0}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2 .index_module_msgItemReferenceFileLeft__1f4840d2>i{display:flex;font-size:24px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2 .index_module_msgItemReferenceFile__1f4840d2 .index_module_msgItemReferenceFileBox__1f4840d2 .index_module_msgItemReferenceFileRight__1f4840d2{color:rgba(0,0,0,.65);font-size:14px;font-weight:400}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2{justify-content:flex-start}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2{align-items:flex-start}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2{background:#fff;border-radius:2px 20px 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2{border-radius:0 0 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2{margin-left:auto}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemLeft__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{display:none}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2{justify-content:flex-end;padding-bottom:24px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2{align-items:flex-end}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2:hover .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{display:flex}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2{background:#d1e4ff;border-radius:20px 2px 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemContent__1f4840d2 .index_module_msgItemAction__1f4840d2{border-radius:0 0 20px 20px}.index_module_virtuosoListWrapper__1f4840d2 .index_module_msgItem__1f4840d2.index_module_msgItemRight__1f4840d2 .index_module_msgItemBox__1f4840d2 .index_module_msgItemActionOperate__1f4840d2 .index_module_msgItemActionPopover__1f4840d2{display:none}.index_module_msgItemActionCopy__9b012114{border-radius:2px;cursor:pointer;display:flex;line-height:1}.index_module_msgItemActionCopy__9b012114.index_module_msgItemActionCopySuccess__9b012114{background-color:transparent;color:#f4523b}.index_module_msgItemActionCopy__9b012114.index_module_msgItemActionCopySuccess__9b012114>i{color:#f4523b;font-size:16px;transform:scale(.8)}.index_module_msgItemActionCopy__9b012114>i{color:#8c8c8c;display:flex;font-size:16px}.index_module_msgItemActionCopy__9b012114:hover{background-color:rgba(0,0,0,.04)}.index_module_msgItemActionReference__9146b29b{border-radius:2px;cursor:pointer;display:flex;line-height:1}.index_module_msgItemActionReference__9146b29b>i{color:#8c8c8c;display:flex;font-size:16px}.index_module_msgItemActionReference__9146b29b:hover{background-color:rgba(0,0,0,.04)}.index_module_downVoteBtn__2e714550,.index_module_upVoteBtn__2e714550{color:rgba(0,0,0,.65);cursor:pointer;display:flex;font-size:16px}.index_module_downVoteBtn__2e714550.index_module_active__2e714550,.index_module_downVoteBtn__2e714550:hover,.index_module_upVoteBtn__2e714550.index_module_active__2e714550,.index_module_upVoteBtn__2e714550:hover{color:#f4523b}.index_module_refreshBtn__e1c5f38f{color:rgba(0,0,0,.65);cursor:pointer;display:flex;font-size:16px}.index_module_refreshBtn__e1c5f38f.index_module_active__e1c5f38f,.index_module_refreshBtn__e1c5f38f:hover{color:#f4523b}.index_module_footer__2287d487{box-sizing:border-box;padding:16px;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:8px;padding-bottom:12px;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487.index_module_footerBodyWarn__2287d487{border-color:#f4523b}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerFile__2287d487{width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerInput__2287d487 .bhd-input{background:transparent;border:none;box-shadow:none;padding:12px 16px}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487{box-sizing:border-box;padding:0 16px;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487 .index_module_footerActionBtn__2287d487{align-items:center;display:flex;justify-content:flex-end;width:100%}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487 .index_module_footerActionBtn__2287d487 .bhd-divider{border-color:rgba(0,0,0,.06);height:16px;margin:0 16px;top:0}.index_module_footer__2287d487 .index_module_footerBody__2287d487 .index_module_footerAction__2287d487 .index_module_footerActionBtn__2287d487 .bhd-upload-wrapper{display:flex}.index_module_sendBtnIcon__d770fbb6{color:#5991ef;cursor:pointer;display:flex;font-size:24px}.index_module_sendBtnIcon__d770fbb6.index_module_disabled__d770fbb6{color:rgba(0,0,0,.25);cursor:not-allowed}.index_module_sendingIcon__d770fbb6{color:#f4523b;cursor:pointer;display:flex;font-size:18px}.index_module_popover__d770fbb6 .bhd-popover-inner-content{color:rgba(0,0,0,.65)!important}.index_module_uploadFileBtn__e41600f2{cursor:pointer;display:flex;font-size:24px}.index_module_footerFileListWrapper__e818c28d{box-sizing:border-box;padding:12px 16px;position:relative;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d{display:flex;flex-direction:column;gap:8px;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d{align-items:center;background:rgba(0,0,0,.02);border:1px solid #ebebeb;border-radius:8px;box-sizing:border-box;display:flex;gap:12px;overflow:hidden;padding:8px 12px;position:relative;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemIcon__e818c28d{flex-shrink:0}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemIcon__e818c28d>i{display:flex;font-size:24px}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemText__e818c28d{color:rgba(0,0,0,.65);flex:1;font-size:14px;font-weight:400;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemStatus__e818c28d{flex-shrink:0}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d .index_module_footerFileListListItemDelete__e818c28d{cursor:pointer;display:none;position:absolute;right:0;top:0}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d:hover{background:rgba(0,0,0,.06)}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListList__e818c28d .index_module_footerFileListListItem__e818c28d:hover .index_module_footerFileListListItemDelete__e818c28d{display:flex}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListPre__e818c28d{display:flex;justify-content:center;left:50%;position:absolute;top:-8px;transform:translateX(-50%);z-index:2}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListPre__e818c28d .anticon-double-right{color:#595959;cursor:pointer;font-size:16px;transform:rotate(-90deg)}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListNext__e818c28d{bottom:-8px;display:flex;justify-content:center;left:50%;position:absolute;transform:translateX(-50%);z-index:2}.index_module_footerFileListWrapper__e818c28d .index_module_footerFileListNext__e818c28d .anticon-double-right{color:#595959;cursor:pointer;font-size:16px;transform:rotate(90deg)}.index_module_footerReferences__ef2f2d56{align-items:center;box-sizing:border-box;display:flex;gap:8px;overflow:hidden;padding:0 16px 12px;width:100%}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56{background:#e7e7e7;border-radius:2px;color:rgba(0,0,0,.65);flex:1;font-size:12px;line-height:18px;overflow:hidden;padding:8px}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_text__ef2f2d56{-webkit-line-clamp:2;-webkit-box-orient:vertical;word-wrap:break-word;display:-webkit-box;max-height:36px;overflow:hidden;text-overflow:ellipsis;width:100%;word-break:break-all}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56{align-items:center;border-radius:2px;box-sizing:border-box;display:flex;gap:8px;overflow:hidden;width:100%}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56 .index_module_footerReferences_left_file_icon__ef2f2d56{flex-shrink:0}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56 .index_module_footerReferences_left_file_icon__ef2f2d56>i{font-size:24px}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_left__ef2f2d56 .index_module_footerReferences_left_file__ef2f2d56 .index_module_footerReferences_left_file_title__ef2f2d56{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_right__ef2f2d56{cursor:pointer;display:flex}.index_module_footerReferences__ef2f2d56 .index_module_footerReferences_right__ef2f2d56 .anticon-close-circle{color:#bfbfbf;font-size:20px}
|