yt-chat-components 1.2.1 → 1.2.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 (41) hide show
  1. package/.idea/sonarlint/issuestore/index.pb +0 -7
  2. package/package.json +78 -80
  3. package/public/index.html +108 -108
  4. package/src/YtChatView/chatWidget/chatWindow/callInterface/index.module.css +50 -50
  5. package/src/YtChatView/chatWidget/chatWindow/callInterface/index.tsx +549 -549
  6. package/src/YtChatView/chatWidget/chatWindow/callInterface/style.ts +44 -44
  7. package/src/YtChatView/chatWidget/chatWindow/chatMessage/index.tsx +501 -501
  8. package/src/YtChatView/chatWidget/chatWindow/chatPlaceholder/index.tsx +23 -23
  9. package/src/YtChatView/chatWidget/chatWindow/controllers/index.ts +249 -249
  10. package/src/YtChatView/chatWidget/chatWindow/index.module.css +196 -196
  11. package/src/YtChatView/chatWidget/chatWindow/index.tsx +1186 -1185
  12. package/src/YtChatView/chatWidget/chatWindow/types/chatWidget/index.ts +50 -50
  13. package/src/YtChatView/chatWidget/index.tsx +2596 -2596
  14. package/src/YtChatView/logoBtn/index.css +3 -3
  15. package/src/YtChatView/logoBtn/index.jsx +103 -103
  16. package/src/YtChatView/logoSplitBtn/index.css +3 -3
  17. package/src/YtChatView/logoSplitBtn/index.jsx +105 -105
  18. package/src/YtChatView/mobileChat/index.jsx +945 -945
  19. package/src/YtChatView/mobileChat/index.module.css +253 -253
  20. package/src/YtChatView/previewDialog/index.jsx +601 -601
  21. package/src/YtChatView/previewDialog/index.module.css +253 -253
  22. package/src/chatWidget/chatWindow/index.tsx +426 -426
  23. package/src/chatWidget/index.tsx +2195 -2195
  24. package/src/index.tsx +127 -11
  25. package/webpack.config.js +50 -50
  26. package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  27. package/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  28. package/.idea/sonarlint/issuestore/9/c/9cfff9a6d27bd6c255aa751213163c7901fb8ce7 +0 -0
  29. package/build/asset-manifest.json +0 -19
  30. package/build/index.html +0 -1
  31. package/build/static/css/main.8ee59d98.css +0 -2
  32. package/build/static/css/main.8ee59d98.css.map +0 -1
  33. package/build/static/js/main.ae39ed55.js +0 -3
  34. package/build/static/js/main.ae39ed55.js.LICENSE.txt +0 -181
  35. package/build/static/js/main.ae39ed55.js.map +0 -1
  36. package/build/static/media/aiavatar.74bafa995cce4c01b804.png +0 -0
  37. package/build/static/media/history-list-empty.1eb65b1550aef4e8c8a4.png +0 -0
  38. package/build/static/media/icon_history_headerbg.50747e81d01257f55346.png +0 -0
  39. package/build/static/media/moreAi.285e66289f838072060c.png +0 -0
  40. package/build/static/media/moreBg.9fc998472925cecd89f2.png +0 -0
  41. package/build/static/media/phone.19bc6f0d2e9eae4863ae.png +0 -0
package/src/index.tsx CHANGED
@@ -1,11 +1,127 @@
1
- import React from 'react';
2
- import ReactDOM from 'react-dom';
3
- import LogoBtn from './YtChatView/logoBtn/index';
4
- import ToolDialog from "./YtChatView/previewDialog/index";
5
- import LogoSplitBtn from "./YtChatView/logoSplitBtn/index";
6
- import MobileChatPage from "./YtChatView/mobileChat";
7
-
8
- // 手动注入 React 和 ReactDOM 到全局
9
- window.React = React;
10
- window.ReactDOM = ReactDOM;
11
- export {ToolDialog, LogoSplitBtn, LogoBtn, MobileChatPage}
1
+ import React from 'react';
2
+ import ReactDOM from 'react-dom';
3
+ import r2wc from '@r2wc/react-to-web-component';
4
+ import LogoBtn from './YtChatView/logoBtn/index';
5
+ import ToolDialog from "./YtChatView/previewDialog/index";
6
+ import LogoSplitBtn from "./YtChatView/logoSplitBtn/index";
7
+ import MobileChatPage from "./YtChatView/mobileChat";
8
+
9
+ // 手动注入 React ReactDOM 到全局
10
+ window.React = React;
11
+ window.ReactDOM = ReactDOM;
12
+
13
+ customElements.define('yt-chat', r2wc(LogoBtn, {
14
+ shadow: "closed",
15
+ props: {
16
+ left: "number",
17
+ right: "number",
18
+ top: "number",
19
+ bottom: "number",
20
+ width: "number",
21
+ height: "number",
22
+ iconUrl: "string",
23
+ title: "string",
24
+ appId: "string",
25
+ hostUrl: "string",
26
+ userInfo: "json",
27
+ tags: "json",
28
+ isShowSideRight:"boolean",
29
+ isShowSideLeft:"boolean",
30
+ modalIndex:"number",
31
+ dialogIndex:"number",
32
+ agentUrl:"string",
33
+ agentName:"string",
34
+ modalWidth:"number",
35
+ logoWidth:"string",
36
+ logoFontSize:"string",
37
+ logoPosition:"string",
38
+ isTitleSideIcon:"boolean",
39
+ isShowUploadButton:"boolean",
40
+ dropManUrl:"string",
41
+ },
42
+ }));
43
+
44
+ customElements.define('yt-page-chat', r2wc(ToolDialog, {
45
+ shadow: "closed",
46
+ props: {
47
+ title: "string",
48
+ appId: "string",
49
+ hostUrl: "string",
50
+ setDialogVisible: "function",
51
+ userInfo: "json",
52
+ tags: "json",
53
+ boxStyle: "json",
54
+ sceneId: "string",
55
+ isShowSideRight:"boolean",
56
+ isShowSideLeft:"boolean",
57
+ dialogIndex:"number",
58
+ agentUrl:"string",
59
+ agentName:"string",
60
+ logoWidth:"string",
61
+ logoFontSize:"string",
62
+ isTitleSideIcon:"boolean",
63
+ isShowUploadButton:"boolean",
64
+ dropManUrl:"string",
65
+ },
66
+ }));
67
+
68
+ customElements.define('yt-split-modal-chat', r2wc(LogoSplitBtn, {
69
+ shadow: "closed",
70
+ props: {
71
+ left: "number",
72
+ right: "number",
73
+ top: "number",
74
+ bottom: "number",
75
+ width: "number",
76
+ height: "number",
77
+ iconUrl: "string",
78
+ title: "string",
79
+ appId: "string",
80
+ hostUrl: "string",
81
+ userInfo: "json",
82
+ tags: "json",
83
+ sceneId: "string",
84
+ boxStyle: "string",
85
+ isShowSideRight:"boolean",
86
+ isShowSideLeft:"boolean",
87
+ modalIndex:"number",
88
+ dialogIndex:"number",
89
+ agentUrl:"string",
90
+ agentName:"string",
91
+ modalWidth:"number",
92
+ logoWidth:"string",
93
+ logoFontSize:"string",
94
+ logoPosition:"string",
95
+ isTitleSideIcon:"boolean",
96
+ isShowUploadButton:"boolean",
97
+ dropManUrl:"string",
98
+ },
99
+ }));
100
+
101
+ customElements.define('yt-page-chat-mobile', r2wc(MobileChatPage, {
102
+ shadow: "closed",
103
+ props: {
104
+ title: "string",
105
+ appId: "string",
106
+ hostUrl: "string",
107
+ setDialogVisible: "function",
108
+ userInfo: "json",
109
+ tags: "json",
110
+ boxStyle: "json",
111
+ sceneId: "string",
112
+ isShowSideRight:"boolean",
113
+ isShowSideLeft:"boolean",
114
+ isLogin:"boolean",
115
+ isShowLogin:"boolean",
116
+ loginBtnClick: "function",
117
+ dialogIndex:"number",
118
+ agentUrl:"string",
119
+ agentName:"string",
120
+ logoWidth:"string",
121
+ logoFontSize:"string",
122
+ isTitleSideIcon:"boolean",
123
+ isShowUploadButton:"boolean",
124
+ isShowVoiceButton:"boolean",
125
+ dropManUrl:"string",
126
+ },
127
+ }));
package/webpack.config.js CHANGED
@@ -1,51 +1,51 @@
1
- const path = require("path");
2
-
3
- module.exports = {
4
- mode: "production",
5
- entry: "./src/index.tsx",
6
- output: {
7
- filename: "bundle.min.js",
8
- path: path.resolve(__dirname, "build/static/js"),
9
- libraryTarget: "umd",
10
- globalObject: "this",
11
- library: "YtChatComponents", // 可选,定义全局命名空间
12
- },
13
- module: {
14
- rules: [
15
- {
16
- test: /\.(jsx|js|tsx|ts)$/,
17
- exclude: /node_modules/,
18
- use: {
19
- loader: "babel-loader",
20
- options: {
21
- presets: [
22
- "@babel/preset-env",
23
- "@babel/preset-react",
24
- "@babel/preset-typescript",
25
- ],
26
- },
27
- },
28
- },
29
- {
30
- test: /\.css$/,
31
- use: ["style-loader", "css-loader"],
32
- },
33
- {
34
- test: /\.(png|jpg|jpeg|gif|svg)$/,
35
- use: {
36
- loader: "url-loader",
37
- options: {
38
- limit: 1000000,
39
- },
40
- },
41
- },
42
- ],
43
- },
44
- resolve: {
45
- extensions: [".jsx", ".js", ".tsx", ".ts"],
46
- },
47
- optimization: {
48
- minimize: true,
49
- usedExports: false, // 禁用 tree-shaking,避免移除 React
50
- },
1
+ const path = require("path");
2
+
3
+ module.exports = {
4
+ mode: "production",
5
+ entry: "./src/index.tsx",
6
+ output: {
7
+ filename: "bundle.min.js",
8
+ path: path.resolve(__dirname, "build/static/js"),
9
+ libraryTarget: "umd",
10
+ globalObject: "this",
11
+ library: "YtChatComponents", // 可选,定义全局命名空间
12
+ },
13
+ module: {
14
+ rules: [
15
+ {
16
+ test: /\.(jsx|js|tsx|ts)$/,
17
+ exclude: /node_modules/,
18
+ use: {
19
+ loader: "babel-loader",
20
+ options: {
21
+ presets: [
22
+ "@babel/preset-env",
23
+ "@babel/preset-react",
24
+ "@babel/preset-typescript",
25
+ ],
26
+ },
27
+ },
28
+ },
29
+ {
30
+ test: /\.css$/,
31
+ use: ["style-loader", "css-loader"],
32
+ },
33
+ {
34
+ test: /\.(png|jpg|jpeg|gif|svg)$/,
35
+ use: {
36
+ loader: "url-loader",
37
+ options: {
38
+ limit: 1000000,
39
+ },
40
+ },
41
+ },
42
+ ],
43
+ },
44
+ resolve: {
45
+ extensions: [".jsx", ".js", ".tsx", ".ts"],
46
+ },
47
+ optimization: {
48
+ minimize: true,
49
+ usedExports: false, // 禁用 tree-shaking,避免移除 React
50
+ },
51
51
  };
@@ -1,19 +0,0 @@
1
- {
2
- "files": {
3
- "main.css": "/static/css/main.8ee59d98.css",
4
- "main.js": "/static/js/main.ae39ed55.js",
5
- "static/media/moreBg.png": "/static/media/moreBg.9fc998472925cecd89f2.png",
6
- "static/media/history-list-empty.png": "/static/media/history-list-empty.1eb65b1550aef4e8c8a4.png",
7
- "static/media/icon_history_headerbg.png": "/static/media/icon_history_headerbg.50747e81d01257f55346.png",
8
- "static/media/phone.png": "/static/media/phone.19bc6f0d2e9eae4863ae.png",
9
- "static/media/aiavatar.png": "/static/media/aiavatar.74bafa995cce4c01b804.png",
10
- "static/media/moreAi.png": "/static/media/moreAi.285e66289f838072060c.png",
11
- "index.html": "/index.html",
12
- "main.8ee59d98.css.map": "/static/css/main.8ee59d98.css.map",
13
- "main.ae39ed55.js.map": "/static/js/main.ae39ed55.js.map"
14
- },
15
- "entrypoints": [
16
- "static/css/main.8ee59d98.css",
17
- "static/js/main.ae39ed55.js"
18
- ]
19
- }
package/build/index.html DELETED
@@ -1 +0,0 @@
1
- <!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>校园智多星</title><script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script><script defer="defer" src="/static/js/main.ae39ed55.js"></script><link href="/static/css/main.8ee59d98.css" rel="stylesheet"></head><body style="width:100vw;height:100vh;position:relative;margin:unset"><yt-chat right="100" bottom="100" width="50" height="50" title="菜鸟驿站" icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png" host-url="http://localhost:7860" user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }' app-id="0043a683-cef6-4606-b43a-8d1a2f530bf6" is-show-side-left="true" is-show-side-right="false" modal-index="9999999999" modal-width="1200" dialog-index="999999999" agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png" agent-name="医专智能助手" logo-width="42px" logo-font-size="26px" logo-position="fixed" is-title-side-icon="false" is-show-upload-button="true"/></body></html>
@@ -1,2 +0,0 @@
1
- .callInterface_call-interface__eBnLY{background-color:#f0f2f5;display:flex;flex-direction:column;height:100%;justify-content:space-between;width:100%}.callInterface_call-header__-7Kys{padding-top:100px}.callInterface_call-header__-7Kys,.callInterface_contact-info__1rC2n{align-items:center;display:flex;flex-direction:column}.callInterface_contact-info__1rC2n h2{color:#333;font-size:24px;margin-bottom:5px;margin-top:20px}.callInterface_call-status__O7FrY{color:#666;font-size:16px}.callInterface_call-controls__tMyAY{display:flex;justify-content:center;padding-bottom:60px}.callInterface_hangup-button__Wb7Pl{background-color:#ff4d4f;border:none;height:60px;width:60px}.callInterface_hangup-icon__7-1em{color:#fff;font-size:24px}.previewDialog_p_closeImg__ayqkH{cursor:pointer;width:14px}.previewDialog_p_toolDialog__TJAsT{background:url(https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_modal_bg.png);background-size:cover;border-radius:8px;display:flex;height:100%}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I{align-items:center;border-bottom-left-radius:8px;border-top-left-radius:8px;display:flex;flex-direction:column;padding:1.7rem 1.6rem;width:300px}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_toolLogo__bj-71{align-items:center;display:flex;-webkit-user-select:none;user-select:none}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_toolLogo__bj-71 .previewDialog_p_logoImg__G2C6R{width:48px}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_toolLogo__bj-71 .previewDialog_p_logoText__iJu48{-webkit-text-fill-color:#0000;background:linear-gradient(90deg,#1551ff,#8f4bff);-webkit-background-clip:text;font-size:30px;font-weight:700;margin-left:10px}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:linear-gradient(180deg,#ffffff80,#fff0);border-image:linear-gradient(180deg,#fff,#fff0) 1 1;border-radius:10px;flex:1 1;margin-bottom:20px;margin-top:20px;max-height:calc(100% - 5.5rem - 60px);position:relative;-webkit-user-select:none;user-select:none;width:100%}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm ::-webkit-scrollbar-thumb{background:#535353!important;border-radius:10px;-webkit-box-shadow:inset 0 0 5px #0003}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyTitle__IHtp2{align-items:center;display:flex;padding:1.3rem 16px 0}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyTitle__IHtp2 .previewDialog_p_historyImg__wwCiE{width:25px}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyTitle__IHtp2 .previewDialog_p_dialogTitle__A0M3M{color:#333;font-size:18px;font-style:normal;font-weight:500;line-height:16px;margin-left:10px;text-align:left}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyListEmpty__qL0kl{color:#999;font-size:12px;left:50%;max-height:calc(100% - 3rem);position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%)}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE{height:calc(100% - 3rem);margin-top:10px;overflow-y:auto;scrollbar-width:none!important}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE::-webkit-scrollbar{display:none}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE:hover{scrollbar-color:#ced4e3 #0000;scrollbar-width:thin!important}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE .previewDialog_p_historyItem__HXuqJ{padding:7px 16px}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE .previewDialog_p_historyItem__HXuqJ .previewDialog_p_activeHistoryName__fKeKd{color:#1552ff!important}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE .previewDialog_p_historyItem__HXuqJ .previewDialog_p_historyName__-40rw{color:#333;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolLeft__xO96I .previewDialog_p_historyDialog__EGrWm .previewDialog_p_historyList__EXYFE .previewDialog_p_historyItem__HXuqJ .previewDialog_p_historyName__-40rw:hover{color:#171717}.previewDialog_p_toolDialog__TJAsT .previewDialog_p_toolRight__mv8Ni{flex:1 1}.previewDialog_p_toolRightToRight__BJd9O{display:flex;flex-direction:column;padding:2rem 1.6rem 1.8rem;width:300px}.previewDialog_rightInnerContainer__z99dE{display:flex;flex:1 1;flex-direction:column;height:calc(100% - 80px);justify-content:space-between}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSideTitle__0zZsq{align-items:center;display:flex;font-size:18px;font-weight:500;margin-bottom:1.4rem;margin-top:0}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSideTitle__0zZsq img{margin-right:4px}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSideTitle__0zZsq .previewDialog_titleSideColumn__3CIYg{color:#1551ff}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSkillContainer__AbZHZ{min-height:40%}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSkillContainer__AbZHZ .previewDialog_rightSkillList__voux1{display:flex;flex-wrap:wrap;gap:10px;grid-template-columns:repeat(3,1fr)}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSkillContainer__AbZHZ .previewDialog_rightSkillList__voux1 .previewDialog_rightSkillItem__L4kxX{cursor:pointer;text-align:center;width:30%}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSkillContainer__AbZHZ .previewDialog_rightSkillList__voux1 .previewDialog_rightSkillItem__L4kxX img{border-radius:10px;height:40px;width:40px}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightSkillContainer__AbZHZ .previewDialog_rightSkillList__voux1 .previewDialog_rightSkillItem__L4kxX p{color:#333;margin-bottom:4px;margin-top:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightKnowledgeTitle__Ibz8J{nargin-top:2.2rem;align-items:center;display:flex;font-size:18px;font-weight:500;margin-bottom:1.4rem}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightKnowledgeTitle__Ibz8J img{margin-right:4px}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightKnowledgeContainer__4ThIo{position:relative}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightMoreButton__ZGp3h{align-items:flex-end;background:url(/static/media/moreAi.285e66289f838072060c.png);background-position:bottom;background-repeat:no-repeat;background-size:85% auto;bottom:8px;display:flex;height:100%;justify-content:center;left:0;position:absolute;width:100%;z-index:1}.previewDialog_p_toolRightToRight__BJd9O .previewDialog_rightMoreButton__ZGp3h div{color:#fff;cursor:pointer;font-size:12px;font-weight:500;line-height:17px;padding:16px 16px 10px 20px;width:calc(100% - 50px)}.previewDialog_p_newDialog__AW2su{align-items:center;background:linear-gradient(45deg,#1551ff,#8f4bff);border-radius:20px;cursor:pointer;display:flex;height:40px;justify-content:center;margin-top:20px;min-height:40px;width:252px}.previewDialog_p_newDialog__AW2su img{width:18px}.previewDialog_p_newDialog__AW2su .previewDialog_p_newDialogText__lQmsF{color:#fff;margin-left:6px}.yt-chat-modal .ant-modal-content{padding:0!important}.mobileChat_p_closeImg__K3hZF{cursor:pointer;width:14px}.mobileChat_p_toolDialog__xyG5j{background:url(https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_modal_bg.png);background-size:cover;border-radius:8px;display:flex;height:100%}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc{align-items:center;border-bottom-left-radius:8px;border-top-left-radius:8px;display:flex;flex-direction:column;padding:1.7rem 1.6rem;width:300px}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_toolLogo__0q\+p0{align-items:center;display:flex;-webkit-user-select:none;user-select:none}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_toolLogo__0q\+p0 .mobileChat_p_logoImg__Zk\+rK{width:48px}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_toolLogo__0q\+p0 .mobileChat_p_logoText__j8SvQ{-webkit-text-fill-color:#0000;background:linear-gradient(90deg,#1551ff,#8f4bff);-webkit-background-clip:text;font-size:30px;font-weight:700;margin-left:10px}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:linear-gradient(180deg,#ffffff80,#fff0);border-image:linear-gradient(180deg,#fff,#fff0) 1 1;border-radius:10px;flex:1 1;margin-bottom:20px;margin-top:20px;max-height:calc(100% - 5.5rem - 60px);position:relative;-webkit-user-select:none;user-select:none;width:100%}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU ::-webkit-scrollbar-thumb{background:#535353!important;border-radius:10px;-webkit-box-shadow:inset 0 0 5px #0003}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyTitle__wUZK8{align-items:center;display:flex;padding:1.3rem 16px 0}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyTitle__wUZK8 .mobileChat_p_historyImg__sQJ3d{width:25px}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyTitle__wUZK8 .mobileChat_p_dialogTitle__lWHdH{color:#333;font-size:18px;font-style:normal;font-weight:500;line-height:16px;margin-left:10px;text-align:left}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyListEmpty__0ci9m{color:#999;font-size:12px;left:50%;max-height:calc(100% - 3rem);position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%)}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4{height:calc(100% - 3rem);margin-top:10px;overflow-y:auto;scrollbar-width:none!important}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4::-webkit-scrollbar{display:none}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4:hover{scrollbar-color:#ced4e3 #0000;scrollbar-width:thin!important}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4 .mobileChat_p_historyItem__h8cPB{padding:7px 16px}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4 .mobileChat_p_historyItem__h8cPB .mobileChat_p_activeHistoryName__wWvkc{color:#1552ff!important}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4 .mobileChat_p_historyItem__h8cPB .mobileChat_p_historyName__qxMIu{color:#333;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolLeft__LWXzc .mobileChat_p_historyDialog__7vEyU .mobileChat_p_historyList__o-LM4 .mobileChat_p_historyItem__h8cPB .mobileChat_p_historyName__qxMIu:hover{color:#171717}.mobileChat_p_toolDialog__xyG5j .mobileChat_p_toolRight__FVzaA{flex:1 1}.mobileChat_p_toolRightToRight__pddST{display:flex;flex-direction:column;padding:2rem 1.6rem 1.8rem;width:300px}.mobileChat_rightInnerContainer__Lp\+Ty{display:flex;flex:1 1;flex-direction:column;height:calc(100% - 80px);justify-content:space-between}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSideTitle__UDGLy{align-items:center;display:flex;font-size:18px;font-weight:500;margin-bottom:1.4rem;margin-top:0}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSideTitle__UDGLy img{margin-right:4px}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSideTitle__UDGLy .mobileChat_titleSideColumn__YE9dh{color:#1551ff}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSkillContainer__fv6vn{min-height:40%}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSkillContainer__fv6vn .mobileChat_rightSkillList__bufR-{display:flex;flex-wrap:wrap;gap:10px;grid-template-columns:repeat(3,1fr)}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSkillContainer__fv6vn .mobileChat_rightSkillList__bufR- .mobileChat_rightSkillItem__Dl1-D{cursor:pointer;text-align:center;width:30%}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSkillContainer__fv6vn .mobileChat_rightSkillList__bufR- .mobileChat_rightSkillItem__Dl1-D img{border-radius:10px;height:40px;width:40px}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightSkillContainer__fv6vn .mobileChat_rightSkillList__bufR- .mobileChat_rightSkillItem__Dl1-D p{color:#333;margin-bottom:4px;margin-top:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightKnowledgeTitle__DLmeC{nargin-top:2.2rem;align-items:center;display:flex;font-size:18px;font-weight:500;margin-bottom:1.4rem}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightKnowledgeTitle__DLmeC img{margin-right:4px}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightKnowledgeContainer__MB77L{position:relative}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightMoreButton__Oo8zW{align-items:flex-end;background:url(/static/media/moreAi.285e66289f838072060c.png);background-position:bottom;background-repeat:no-repeat;background-size:85% auto;bottom:8px;display:flex;height:100%;justify-content:center;left:0;position:absolute;width:100%;z-index:1}.mobileChat_p_toolRightToRight__pddST .mobileChat_rightMoreButton__Oo8zW div{color:#fff;cursor:pointer;font-size:12px;font-weight:500;line-height:17px;padding:16px 16px 10px 20px;width:calc(100% - 50px)}.mobileChat_p_newDialog__k6jv\+{align-items:center;background:linear-gradient(45deg,#1551ff,#8f4bff);border-radius:20px;cursor:pointer;display:flex;height:40px;justify-content:center;margin-top:20px;min-height:40px;width:252px}.mobileChat_p_newDialog__k6jv\+ img{width:18px}.mobileChat_p_newDialog__k6jv\+ .mobileChat_p_newDialogText__-p9Za{color:#fff;margin-left:6px}
2
- /*# sourceMappingURL=main.8ee59d98.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"file":"static/css/main.8ee59d98.css","mappings":"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","sources":["YtChatView/chatWidget/chatWindow/callInterface/index.module.css","YtChatView/previewDialog/index.module.css","YtChatView/logoSplitBtn/index.css","YtChatView/mobileChat/index.module.css"],"sourcesContent":[".call-interface {\r\n width: 100%;\r\n height: 100%;\r\n background-color: #f0f2f5;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: space-between;\r\n}\r\n\r\n.call-header {\r\n padding-top: 100px;\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n}\r\n\r\n.contact-info {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n}\r\n\r\n.contact-info h2 {\r\n margin-top: 20px;\r\n margin-bottom: 5px;\r\n font-size: 24px;\r\n color: #333;\r\n}\r\n\r\n.call-status {\r\n color: #666;\r\n font-size: 16px;\r\n}\r\n\r\n.call-controls {\r\n padding-bottom: 60px;\r\n display: flex;\r\n justify-content: center;\r\n}\r\n\r\n.hangup-button {\r\n width: 60px;\r\n height: 60px;\r\n background-color: #ff4d4f;\r\n border: none;\r\n}\r\n\r\n.hangup-icon {\r\n font-size: 24px;\r\n color: white;\r\n}",".p_closeImg {\r\n width: 14px;\r\n cursor: pointer;\r\n}\r\n\r\n.p_toolDialog {\r\n display: flex;\r\n height:100%;\r\n background:url('https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_modal_bg.png');\r\n background-size: cover;\r\n border-radius:8px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n width: 300px;\r\n padding: 1.7rem 1.6rem 1.7rem 1.6rem;\r\n\r\n border-top-left-radius: 8px;\r\n border-bottom-left-radius: 8px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_toolLogo {\r\n user-select: none;\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_toolLogo .p_logoImg {\r\n width: 48px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_toolLogo .p_logoText {\r\n font-weight: bold;\r\n margin-left: 10px;\r\n font-size: 30px;\r\n background: linear-gradient(to right, #1551FF, #8F4BFF);\r\n -webkit-background-clip: text;\r\n -webkit-text-fill-color: transparent;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog {\r\n user-select: none;\r\n margin-top: 20px;\r\n margin-bottom: 20px;\r\n border-radius: 10px;\r\n flex: 1;\r\n width: 100%;\r\n background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);\r\n border-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;\r\n backdrop-filter: blur(10px);\r\n position: relative;\r\n max-height:calc(100% - 5.5rem - 60px);\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog ::-webkit-scrollbar-thumb {\r\n border-radius: 10px;\r\n -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);\r\n background: #535353 !important;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyTitle {\r\n padding: 1.3rem 16px 0 16px;\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyTitle .p_historyImg {\r\n width: 25px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyTitle .p_dialogTitle {\r\n margin-left: 10px;\r\n font-weight: 500;\r\n font-size: 18px;\r\n color: #333333;\r\n line-height: 16px;\r\n text-align: left;\r\n font-style: normal;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyListEmpty {\r\n position: absolute;\r\n top: 50%;\r\n left: 50%;\r\n transform: translate(-50%, -50%);\r\n text-align: center;\r\n font-size: 12px;\r\n color: #999999;\r\n max-height: calc(100% - 3rem);\r\n\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList {\r\n height: calc(100% - 3rem);\r\n margin-top: 10px;\r\n overflow-y: auto;\r\n scrollbar-width: none !important; /* firefox */\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList::-webkit-scrollbar{\r\n display:none;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList:hover {\r\n scrollbar-width: thin !important; /* firefox */\r\n scrollbar-color: #ced4e3 transparent;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem {\r\n padding: 7px 16px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem .p_activeHistoryName {\r\n color: #1552FF !important;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem .p_historyName {\r\n color: #333333;\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n cursor: pointer;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem .p_historyName:hover {\r\n color: #171717;\r\n}\r\n\r\n.p_toolDialog .p_toolRight {\r\n flex: 1;\r\n}\r\n\r\n.p_toolRightToRight {\r\n width:300px;\r\n display:flex;\r\n flex-direction:column;\r\n padding:2rem 1.6rem 1.8rem 1.6rem\r\n}\r\n.rightInnerContainer{\r\n height:calc(100% - 80px);\r\n flex:1;\r\n display:flex;\r\n flex-direction:column;\r\n justify-content: space-between;\r\n}\r\n.p_toolRightToRight .rightSideTitle{\r\n margin-bottom:1.4rem;\r\n margin-top:10px;\r\n margin-top:0;\r\n font-size:18px;\r\n font-weight:500;\r\n display:flex;\r\n align-items: center;\r\n}\r\n.p_toolRightToRight .rightSideTitle img{\r\n margin-right:4px;\r\n}\r\n\r\n.p_toolRightToRight .rightSideTitle .titleSideColumn{\r\n color:#1551FF;\r\n}\r\n\r\n.p_toolRightToRight .rightSkillContainer{\r\n min-height:40%;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList{\r\n display: flex;\r\n flex-wrap: wrap;\r\n grid-template-columns: repeat(3, 1fr);\r\n gap: 10px;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList .rightSkillItem{\r\n text-align: center;\r\n cursor:pointer;\r\n width:30%;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList .rightSkillItem img{\r\n width: 40px;\r\n height: 40px;\r\n border-radius:10px;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList .rightSkillItem p{\r\n margin-top:0px;\r\n margin-bottom:4px;\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n color: #333333;\r\n}\r\n.p_toolRightToRight .rightKnowledgeTitle{\r\n nargin-top: 2.2rem;\r\n margin-bottom: 1.4rem;\r\n font-size:18px;\r\n font-weight:500;\r\n display:flex;\r\n align-items: center;\r\n}\r\n\r\n.p_toolRightToRight .rightKnowledgeTitle img{\r\n margin-right:4px;\r\n}\r\n\r\n.p_toolRightToRight .rightKnowledgeContainer{\r\n position:relative;\r\n}\r\n.p_toolRightToRight .rightMoreButton{\r\n background: url('../../assets/aicenter/moreAi.png');\r\n background-size: 85% auto;\r\n background-repeat: no-repeat;\r\n background-position: bottom;\r\n position: absolute;\r\n bottom: 8px;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 1;\r\n display: flex;\r\n justify-content: center;\r\n align-items: flex-end;\r\n}\r\n.p_toolRightToRight .rightMoreButton div{\r\n width:calc(100% - 50px);\r\n padding: 16px 16px 10px 20px;\r\n font-weight: 500;\r\n color: #ffffff;\r\n line-height: 17px;\r\n font-size: 12px;\r\n cursor:pointer;\r\n}\r\n\r\n.p_newDialog {\r\n width: 252px;\r\n height: 40px;\r\n min-height:40px;\r\n background: linear-gradient( 45deg, #1551FF 0%, #8F4BFF 100%);\r\n margin-top: 20px;\r\n border-radius: 20px;\r\n cursor: pointer;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n}\r\n\r\n.p_newDialog img {\r\n width: 18px;\r\n}\r\n\r\n.p_newDialog .p_newDialogText {\r\n color: #fff;\r\n margin-left: 6px;\r\n}","/* Modal 样式 */\r\n.yt-chat-modal .ant-modal-content {\r\n padding: 0 !important;\r\n}",".p_closeImg {\r\n width: 14px;\r\n cursor: pointer;\r\n}\r\n\r\n.p_toolDialog {\r\n display: flex;\r\n height:100%;\r\n background:url('https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_modal_bg.png');\r\n background-size: cover;\r\n border-radius:8px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n width: 300px;\r\n padding: 1.7rem 1.6rem 1.7rem 1.6rem;\r\n\r\n border-top-left-radius: 8px;\r\n border-bottom-left-radius: 8px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_toolLogo {\r\n user-select: none;\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_toolLogo .p_logoImg {\r\n width: 48px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_toolLogo .p_logoText {\r\n font-weight: bold;\r\n margin-left: 10px;\r\n font-size: 30px;\r\n background: linear-gradient(to right, #1551FF, #8F4BFF);\r\n -webkit-background-clip: text;\r\n -webkit-text-fill-color: transparent;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog {\r\n user-select: none;\r\n margin-top: 20px;\r\n margin-bottom: 20px;\r\n border-radius: 10px;\r\n flex: 1;\r\n width: 100%;\r\n background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);\r\n border-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;\r\n backdrop-filter: blur(10px);\r\n position: relative;\r\n max-height:calc(100% - 5.5rem - 60px);\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog ::-webkit-scrollbar-thumb {\r\n border-radius: 10px;\r\n -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);\r\n background: #535353 !important;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyTitle {\r\n padding: 1.3rem 16px 0 16px;\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyTitle .p_historyImg {\r\n width: 25px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyTitle .p_dialogTitle {\r\n margin-left: 10px;\r\n font-weight: 500;\r\n font-size: 18px;\r\n color: #333333;\r\n line-height: 16px;\r\n text-align: left;\r\n font-style: normal;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyListEmpty {\r\n position: absolute;\r\n top: 50%;\r\n left: 50%;\r\n transform: translate(-50%, -50%);\r\n text-align: center;\r\n font-size: 12px;\r\n color: #999999;\r\n max-height: calc(100% - 3rem);\r\n\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList {\r\n height: calc(100% - 3rem);\r\n margin-top: 10px;\r\n overflow-y: auto;\r\n scrollbar-width: none !important; /* firefox */\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList::-webkit-scrollbar{\r\n display:none;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList:hover {\r\n scrollbar-width: thin !important; /* firefox */\r\n scrollbar-color: #ced4e3 transparent;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem {\r\n padding: 7px 16px;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem .p_activeHistoryName {\r\n color: #1552FF !important;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem .p_historyName {\r\n color: #333333;\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n cursor: pointer;\r\n}\r\n\r\n.p_toolDialog .p_toolLeft .p_historyDialog .p_historyList .p_historyItem .p_historyName:hover {\r\n color: #171717;\r\n}\r\n\r\n.p_toolDialog .p_toolRight {\r\n flex: 1;\r\n}\r\n\r\n.p_toolRightToRight {\r\n width:300px;\r\n display:flex;\r\n flex-direction:column;\r\n padding:2rem 1.6rem 1.8rem 1.6rem\r\n}\r\n.rightInnerContainer{\r\n height:calc(100% - 80px);\r\n flex:1;\r\n display:flex;\r\n flex-direction:column;\r\n justify-content: space-between;\r\n}\r\n.p_toolRightToRight .rightSideTitle{\r\n margin-bottom:1.4rem;\r\n margin-top:10px;\r\n margin-top:0;\r\n font-size:18px;\r\n font-weight:500;\r\n display:flex;\r\n align-items: center;\r\n}\r\n.p_toolRightToRight .rightSideTitle img{\r\n margin-right:4px;\r\n}\r\n\r\n.p_toolRightToRight .rightSideTitle .titleSideColumn{\r\n color:#1551FF;\r\n}\r\n\r\n.p_toolRightToRight .rightSkillContainer{\r\n min-height:40%;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList{\r\n display: flex;\r\n flex-wrap: wrap;\r\n grid-template-columns: repeat(3, 1fr);\r\n gap: 10px;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList .rightSkillItem{\r\n text-align: center;\r\n cursor:pointer;\r\n width:30%;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList .rightSkillItem img{\r\n width: 40px;\r\n height: 40px;\r\n border-radius:10px;\r\n}\r\n.p_toolRightToRight .rightSkillContainer .rightSkillList .rightSkillItem p{\r\n margin-top:0px;\r\n margin-bottom:4px;\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n color: #333333;\r\n}\r\n.p_toolRightToRight .rightKnowledgeTitle{\r\n nargin-top: 2.2rem;\r\n margin-bottom: 1.4rem;\r\n font-size:18px;\r\n font-weight:500;\r\n display:flex;\r\n align-items: center;\r\n}\r\n\r\n.p_toolRightToRight .rightKnowledgeTitle img{\r\n margin-right:4px;\r\n}\r\n\r\n.p_toolRightToRight .rightKnowledgeContainer{\r\n position:relative;\r\n}\r\n.p_toolRightToRight .rightMoreButton{\r\n background: url('../../assets/aicenter/moreAi.png');\r\n background-size: 85% auto;\r\n background-repeat: no-repeat;\r\n background-position: bottom;\r\n position: absolute;\r\n bottom: 8px;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 1;\r\n display: flex;\r\n justify-content: center;\r\n align-items: flex-end;\r\n}\r\n.p_toolRightToRight .rightMoreButton div{\r\n width:calc(100% - 50px);\r\n padding: 16px 16px 10px 20px;\r\n font-weight: 500;\r\n color: #ffffff;\r\n line-height: 17px;\r\n font-size: 12px;\r\n cursor:pointer;\r\n}\r\n\r\n.p_newDialog {\r\n width: 252px;\r\n height: 40px;\r\n min-height:40px;\r\n background: linear-gradient( 45deg, #1551FF 0%, #8F4BFF 100%);\r\n margin-top: 20px;\r\n border-radius: 20px;\r\n cursor: pointer;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n}\r\n\r\n.p_newDialog img {\r\n width: 18px;\r\n}\r\n\r\n.p_newDialog .p_newDialogText {\r\n color: #fff;\r\n margin-left: 6px;\r\n}"],"names":[],"sourceRoot":""}