hx-live-client-plus 1.0.17 → 1.0.18
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 +0 -79
- package/lib/hx-live-client-plus.css +1 -1
- package/lib/hx-live-client-plus.js +6337 -6446
- package/lib/hx-live-client-plus.umd.cjs +60 -56
- package/package.json +45 -45
package/README.md
CHANGED
@@ -1,82 +1,3 @@
|
|
1
|
-
# HX Live Client Plus
|
2
|
-
|
3
|
-
基于 Vue3 的会议系统组件库
|
4
|
-
|
5
|
-
## 安装
|
6
|
-
|
7
|
-
```bash
|
8
|
-
npm install hx-live-client-plus
|
9
|
-
```
|
10
|
-
|
11
|
-
## 使用
|
12
|
-
|
13
|
-
### 全局注册
|
14
|
-
|
15
|
-
```js
|
16
|
-
import { createApp } from 'vue'
|
17
|
-
import App from './App.vue'
|
18
|
-
import HxLiveClientPlus from 'hx-live-client-plus'
|
19
|
-
import 'hx-live-client-plus/lib/hx-live-client-plus.css'
|
20
|
-
|
21
|
-
const app = createApp(App)
|
22
|
-
app.use(HxLiveClientPlus)
|
23
|
-
app.mount('#app')
|
24
|
-
```
|
25
|
-
|
26
|
-
### 按需引入
|
27
|
-
|
28
|
-
```js
|
29
|
-
import { createApp } from 'vue'
|
30
|
-
import App from './App.vue'
|
31
|
-
import { LivePoint, LiveCallBoard } from 'hx-live-client-plus'
|
32
|
-
import 'hx-live-client-plus/lib/hx-live-client-plus.css'
|
33
|
-
|
34
|
-
const app = createApp(App)
|
35
|
-
app.use(LivePoint)
|
36
|
-
app.use(LiveCallBoard)
|
37
|
-
app.mount('#app')
|
38
|
-
```
|
39
|
-
|
40
|
-
## 资源路径配置
|
41
|
-
|
42
|
-
组件库内部使用的图片和字体等资源文件会自动被打包到 npm 包中,通常情况下,组件库会自动检测正确的资源路径。但如果您的应用部署在特殊环境或需要自定义资源路径,可以通过以下方式配置:
|
43
|
-
|
44
|
-
### 方法一:设置全局资源路径
|
45
|
-
|
46
|
-
在您的应用入口文件(如 main.js)中设置全局资源路径变量:
|
47
|
-
|
48
|
-
```js
|
49
|
-
// 设置组件库资源路径(确保在引入组件库之前设置)
|
50
|
-
window.ASSET_PATH = '/your-custom-path/';
|
51
|
-
|
52
|
-
// 然后再引入组件库
|
53
|
-
import HxLiveClientPlus from 'hx-live-client-plus'
|
54
|
-
import 'hx-live-client-plus/lib/hx-live-client-plus.css'
|
55
|
-
```
|
56
|
-
|
57
|
-
### 方法二:复制资源到您的公共目录
|
58
|
-
|
59
|
-
如果您希望完全控制资源文件,可以将组件库的资源文件复制到您的项目的 public 目录下:
|
60
|
-
|
61
|
-
1. 从 `node_modules/hx-live-client-plus/lib/assets` 复制所有文件到您项目的 `public/assets` 目录
|
62
|
-
2. 这样组件库将自动使用您项目中的资源文件
|
63
|
-
|
64
|
-
## 组件列表
|
65
|
-
|
66
|
-
- LivePoint - 点对点会议组件
|
67
|
-
- LiveCallBoard - 拨号盘组件
|
68
|
-
- LivePointMeeting - 点对点会议功能组件
|
69
|
-
- LiveAddressBook - 通讯录组件
|
70
|
-
- LiveMulti - 多方会议组件
|
71
|
-
- LiveMultipleMeeting - 多方会议功能组件
|
72
|
-
- LiveMultipersonMeeting - 多人会议组件
|
73
|
-
|
74
|
-
## 注意事项
|
75
|
-
|
76
|
-
1. 组件库需要 Vue 3.x 环境
|
77
|
-
2. 组件库依赖 Element Plus,请确保您的项目中已安装 Element Plus
|
78
|
-
3. 如果资源文件无法正常加载,请检查控制台错误信息,并参考上述"资源路径配置"部分进行配置
|
79
|
-
|
80
1
|
# meeting-system-component
|
81
2
|
|
82
3
|
|
@@ -1 +1 @@
|
|
1
|
-
@charset "UTF-8";.live-call-board[data-v-47cc5da5]{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);z-index:2000;width:270px;background:#000;box-shadow:0 0 8px #00000040;border-radius:0;padding:0 12px 12px;font-family:PingFang SC;font-weight:500;font-size:14px;color:#fff}.live-call-board-title[data-v-47cc5da5]{width:100%;height:40px;display:flex;align-items:center;justify-content:space-between;background:#212222b3;margin-bottom:12px}.live-call-board-title .title-close-icon[data-v-47cc5da5]{width:14px;height:14px;cursor:pointer}.live-call-board-list[data-v-47cc5da5]{width:100%;margin-top:12px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 12px;margin-bottom:10px}.live-call-board-list-item[data-v-47cc5da5]{cursor:pointer;height:36px;line-height:36px;text-align:center;font-weight:600;font-size:24px;background:#1c242f99;border-radius:6px}.live-call-board-foot[data-v-47cc5da5]{width:100%;display:flex;align-items:center;justify-content:space-between}.live-call-board-foot-btn[data-v-47cc5da5]{width:74px;height:36px;display:flex;align-items:center;justify-content:center;background:#1c242f99;border-radius:6px}.live-call-board-foot-btn .btn-icon[data-v-47cc5da5]{width:22px;height:22px;cursor:pointer}.live-call-board-foot .voice-btn .btn-icon[data-v-47cc5da5]{background:var(--686535b7) no-repeat center/100% 100%}.live-call-board-foot .video-btn .btn-icon[data-v-47cc5da5]{background:var(--7f5e7540) no-repeat center/100% 100%}.live-call-board-foot .mini-btn .btn-icon[data-v-47cc5da5]{background:var(--6980ff26) no-repeat center/100% 100%}.live-call-board .del-icon[data-v-47cc5da5]{width:20px;height:20px;cursor:pointer}.live-call-board[data-v-47cc5da5] .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.live-call-board[data-v-47cc5da5] .el-input__wrapper .el-input__inner{color:#fff;height:36px;line-height:36px;box-shadow:none;border:none}.receive-board[data-v-4bf1a66f]{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);z-index:2000;width:330px;background:#000;box-shadow:0 0 8px #00000040;border-radius:0;padding:0 12px;font-family:PingFang SC;font-weight:500;font-size:14px;color:#fff}.receive-board-title[data-v-4bf1a66f]{width:100%;height:40px;display:flex;align-items:center;justify-content:space-between;background:#212222b3}.receive-board-title .title-close-icon[data-v-4bf1a66f]{width:14px;height:14px;cursor:pointer}.receive-board-msg[data-v-4bf1a66f]{width:100%;height:108px;display:flex;align-items:center;justify-content:center}.receive-board-msg .receive-type-icon[data-v-4bf1a66f]{width:22px;height:22px;margin-right:5px}.receive-board-msg span[data-v-4bf1a66f]{line-height:22px;font-size:16px}.receive-board-foot[data-v-4bf1a66f]{width:100%;display:flex;align-items:center;justify-content:center;margin-bottom:26px}.receive-board-foot-btn[data-v-4bf1a66f]{padding:0 30px;height:36px;display:flex;align-items:center;border-radius:6px;cursor:pointer}.receive-board-foot-btn .btn-icon[data-v-4bf1a66f]{width:20px;height:20px;margin-right:10px}.receive-board-foot-btn[data-v-4bf1a66f]:not(:last-child){margin-right:12px}.receive-board-foot .accept-btn[data-v-4bf1a66f]{background:#019a22;color:#fff}.receive-board-foot .refuse-btn[data-v-4bf1a66f]{border:1px solid #F64238;color:#f64238}.point-meeting[data-v-8f0b9e10]{width:564px;height:492px;position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:2000;background:#000;font-family:PingFang SC;font-weight:400;font-size:14px;color:#fff;overflow:hidden;transform:translate(0)}.point-meeting-top[data-v-8f0b9e10]{background:#212222b3;width:100%;display:flex;align-items:center;height:36px;justify-content:space-between;padding:0 12px}.point-meeting-top .top-group[data-v-8f0b9e10]{display:flex;align-items:center}.point-meeting-top .top-group .duration-icon[data-v-8f0b9e10]{width:14px;height:14px;background:var(--3751949e) no-repeat center/100% 100%;margin-right:4px}.point-meeting-top .top-group span[data-v-8f0b9e10]{white-space:nowrap}.point-meeting-top .top-group .full-screen-btn[data-v-8f0b9e10]{cursor:pointer;width:16px;height:16px;background:var(--39a59786) no-repeat center/100% 100%;margin-right:12px}.point-meeting-top .top-group .close-btn[data-v-8f0b9e10]{cursor:pointer;width:20px;height:20px;background:var(--39517c62) no-repeat center/100% 100%}.point-meeting-wrapper[data-v-8f0b9e10]{width:100%;height:calc(100% - 36px)}.point-meeting-foot[data-v-8f0b9e10]{position:absolute;bottom:-44px;left:0;width:100%;height:44px;display:flex;align-items:center;justify-content:space-around;background:#212222b3;z-index:200;transition:bottom .2s}.point-meeting-foot-show[data-v-8f0b9e10]{bottom:0}.point-meeting-foot-btn[data-v-8f0b9e10]{display:flex;flex-direction:column;align-items:center;cursor:pointer}.point-meeting-foot-btn .icon[data-v-8f0b9e10]{width:18px;height:18px;margin-bottom:2px}.point-meeting-foot-btn .title[data-v-8f0b9e10]{font-size:10px;white-space:nowrap}.point-meeting-foot .mic-on .icon[data-v-8f0b9e10]{background:var(--4b7fc586) no-repeat center/100% 100%}.point-meeting-foot .mic-off .icon[data-v-8f0b9e10]{background:var(--97625cce) no-repeat center/100% 100%}.point-meeting-foot .cam-on .icon[data-v-8f0b9e10]{background:var(--cc442a76) no-repeat center/100% 100%}.point-meeting-foot .cam-off .icon[data-v-8f0b9e10]{background:var(--2f2a95de) no-repeat center/100% 100%}.point-meeting-foot .speaker-on .icon[data-v-8f0b9e10]{background:var(--4cd46af5) no-repeat center/100% 100%}.point-meeting-foot .speaker-off .icon[data-v-8f0b9e10]{background:var(--d7778a3e) no-repeat center/100% 100%}.point-meeting-foot .screen-share .icon[data-v-8f0b9e10]{background:var(--9257e3ee) no-repeat center/100% 100%}.point-meeting-foot .preview .icon[data-v-8f0b9e10]{background:var(--18d9ca32) no-repeat center/100% 100%}.point-meeting-foot .cancel .icon[data-v-8f0b9e10]{width:22px;height:22px;background:var(--68761f04) no-repeat center/100% 100%}.meeting-contain{width:100%;height:100%;position:relative;background:#000}.meeting-contain .waiting-mask-video{width:100%;height:100%;left:0;top:0;position:absolute;z-index:60;background:#000;display:flex;align-items:center;justify-content:center;font-weight:400;font-size:16px}.meeting-contain-audio{display:flex;align-items:center;justify-content:center}.meeting-contain-audio .participant{width:140px;display:flex;flex-direction:column;align-items:center}.meeting-contain-audio .participant-icon{width:45%;height:auto;aspect-ratio:1/1;border-radius:50%;margin-bottom:10px;background:url(/assets/img/point/tx.png) no-repeat center/100% 100%}.meeting-contain-audio .participant-title{display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-audio .participant-title-text{white-space:nowrap;margin-right:2px;font-weight:400;font-size:14px}.meeting-contain-audio .participant-title .microphone{width:16px;height:16px;cursor:pointer}.meeting-contain-audio .participant-title .microphone-active{background:url(/assets/img/point/mic-mini-on.png) no-repeat center/100% 100%}.meeting-contain-audio .participant-title .microphone-inactive{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.meeting-contain-video .layout-blur{width:26.6%;height:auto;aspect-ratio:16/9;position:absolute;z-index:100;top:.8%;right:.7%}.meeting-contain-video .layout-blur .participant .describe{height:24%;left:1%;bottom:2%}.meeting-contain-video .layout-blur .participant .describe-left .avatar{width:auto;height:75%;aspect-ratio:1/1}.meeting-contain-video .layout-blur .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:12px;color:#fff}.meeting-contain-video .layout-blur .participant .describe .tools .microphone{width:auto;height:60%;aspect-ratio:1/1}.meeting-contain-video .layout-normal{width:100%;height:100%;position:absolute;z-index:50;left:0;top:0}.meeting-contain-video .layout-normal .participant .describe{height:4.3%;left:.4%;bottom:.4%}.meeting-contain-video .layout-normal .participant .describe-left .avatar{width:auto;height:75%;aspect-ratio:1/1}.meeting-contain-video .layout-normal .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:12px;color:#fff}.meeting-contain-video .layout-normal .participant .describe .tools .microphone{width:auto;height:60%;aspect-ratio:1/1}.meeting-contain-video .participant{width:100%;height:100%;position:relative;border-radius:6px;background:#000}.meeting-contain-video .participant .p-video{position:absolute;width:100%;height:100%;left:0;top:0;z-index:10;object-fit:contain;border-radius:6px}.meeting-contain-video .participant .describe{position:absolute;z-index:50;display:flex;align-items:center;flex-wrap:nowrap;padding:0 6px;background:#0000004d;border-radius:6px}.meeting-contain-video .participant .describe-left{height:100%;display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-video .participant .describe-left .avatar{margin-right:10px;background:url(/assets/img/point/avatar_icon.png) no-repeat center/100% 100%}.meeting-contain-video .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:12px;color:#fff}.meeting-contain-video .participant .describe .tools{height:100%;padding-left:10px;display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-video .participant .describe .tools .microphone{cursor:pointer}.meeting-contain-video .participant .describe .tools .microphone-active{background:url(/assets/img/point/mic-mini-on.png) no-repeat center/100% 100%}.meeting-contain-video .participant .describe .tools .microphone-inactive{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.meeting-contain-video .participant .board{position:absolute;width:100%;height:100%;left:0;top:0;z-index:30;display:flex;flex-direction:column;align-items:center;justify-content:center}.meeting-contain-video .participant .board-icon{width:25%;height:auto;aspect-ratio:1/1;border-radius:50%;margin-bottom:10px;background:url(/assets/img/point/tx.png) no-repeat center/100% 100%}.meeting-contain-video .participant .board-title{display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-video .participant .board-title-text{white-space:nowrap;margin-right:2px;font-weight:400;font-size:14px}.meeting-contain-video .participant .board-title .microphone{width:16px;height:16px;cursor:pointer}.meeting-contain-video .participant .board-title .microphone-active{background:url(/assets/img/point/mic-mini-on.png) no-repeat center/100% 100%}.meeting-contain-video .participant .board-title .microphone-inactive{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.telephone-invite[data-v-21301fcc] .el-dialog{width:460px;height:325px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFangSC}.telephone-invite[data-v-21301fcc] .el-dialog .el-dialog__header{padding:10px!important}.telephone-invite[data-v-21301fcc] .el-dialog .el-dialog__body{padding:0 20px!important}[data-v-21301fcc] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-21301fcc] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-21301fcc] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-21301fcc] .el-input{width:100%}[data-v-21301fcc] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-21301fcc] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-21301fcc] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-21301fcc] .el-form-item__label-wrap{align-items:center}.telephoneInvit .CustomHeader[data-v-21301fcc]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-21301fcc]{width:25px;height:25px;background:var(--067f3bde) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-21301fcc]{margin-top:20px}.isokmul[data-v-21301fcc]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-21301fcc]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-21301fcc]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.close-icon[data-v-21301fcc]{width:18px;height:18px;background:var(--067f3bde) no-repeat center/100% 100%;cursor:pointer}[data-v-9cc3a766] .el-dialog{width:460px;margin:25vh auto 50px!important;height:325px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFangSC-Medium}[data-v-9cc3a766] .el-dialog .el-dialog__header{padding:10px}[data-v-9cc3a766] .el-dialog .el-dialog__body{padding:0 20px}[data-v-9cc3a766] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-9cc3a766] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-9cc3a766] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-9cc3a766] .el-input{width:100%}[data-v-9cc3a766] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-9cc3a766] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-9cc3a766] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-9cc3a766] .el-form-item__label-wrap{align-items:center}[data-v-9cc3a766] .el-input-number{width:100%!important}[data-v-9cc3a766] .el-input-number .el-input__inner{text-align:left}[data-v-9cc3a766] .el-input-number .el-input-number__increase,[data-v-9cc3a766] .el-input-number .el-input-number__decrease{background:#1c242f99;border:none;color:#fff}.telephoneInvit .CustomHeader[data-v-9cc3a766]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-9cc3a766]{width:25px;height:25px;background:var(--31ce8a30) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-9cc3a766]{margin-top:20px}.isokmul[data-v-9cc3a766]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-9cc3a766]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-9cc3a766]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.close-icon[data-v-9cc3a766]{width:18px;height:18px;background:var(--31ce8a30) no-repeat center/100% 100%;cursor:pointer}[data-v-b2109403] .el-dialog{width:460px;margin:25vh auto 50px!important;height:325px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFang SC}[data-v-b2109403] .el-dialog .el-dialog__header{padding:10px}[data-v-b2109403] .el-dialog .el-dialog__body{padding:0 20px}[data-v-b2109403] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-b2109403] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-b2109403] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-b2109403] .el-input{width:100%}[data-v-b2109403] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-b2109403] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-b2109403] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-b2109403] .el-form-item__label-wrap{align-items:center}[data-v-b2109403] .el-input-number{width:100%!important}[data-v-b2109403] .el-input-number .el-input__inner{text-align:left}[data-v-b2109403] .el-input-number .el-input-number__increase,[data-v-b2109403] .el-input-number .el-input-number__decrease{background:#1c242f99;border:none;color:#fff}.telephoneInvit .CustomHeader[data-v-b2109403]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-b2109403]{width:25px;height:25px;background:var(--18c993cd) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-b2109403]{margin-top:20px}.isokmul[data-v-b2109403]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-b2109403]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-b2109403]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.close-icon[data-v-b2109403]{width:18px;height:18px;background:var(--18c993cd) no-repeat center/100% 100%;cursor:pointer}.addressbox[data-v-b18366d9] .el-dialog{width:878px;height:549px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:0}.addressbox[data-v-b18366d9] .el-dialog .el-dialog__header{padding:0}.addressbox[data-v-b18366d9] .el-dialog .el-dialog__body{padding:0 20px}.addresslogClass[data-v-b18366d9]{font-family:PingFang SC}.addresslogClass .CustomHeader[data-v-b18366d9]{padding:0 20px;height:70px;display:flex;align-items:center;justify-content:space-between}.addresslogClass .CustomHeader .tabs[data-v-b18366d9]{display:flex;font-size:16px;color:#fff}.addresslogClass .CustomHeader .tabs .tabItem[data-v-b18366d9]{margin-right:15px;line-height:22px;cursor:pointer}.addresslogClass .CustomHeader .tabs .activeBorder[data-v-b18366d9]{position:relative}.addresslogClass .CustomHeader .tabs .activeBorder[data-v-b18366d9]:after{content:"";display:block;position:absolute;left:4px;bottom:-12px;width:60px;height:3px;background:#1f63fb;border-radius:8px 8px 0 0}.addresslogClass .CustomHeader .close[data-v-b18366d9]{width:25px;height:25px;cursor:pointer;background:var(--6f97d19f) no-repeat center/100% 100%}.addresslogClass .fgx[data-v-b18366d9]{margin:10px 0 20px;height:2px;background:#1c242f99}.addresslogClass .checkBox[data-v-b18366d9]{display:flex;justify-content:space-between}.addresslogClass .checkBox .userLeft[data-v-b18366d9]{padding:14px;width:414px;height:350px;border-radius:6px;border:2px solid rgba(67,85,110,.4);overflow-y:auto}.addresslogClass .checkBox .userLeft[data-v-b18366d9]::-webkit-scrollbar{display:none}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-input{width:100%;margin-bottom:10px}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-input .el-input__wrapper .el-input__inner{height:36px;line-height:36px;border:none;box-shadow:none;font-size:14px!important;color:#fff!important;font-family:PingFang SC;font-weight:400}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-input .el-input__wrapper .el-input__icon{display:inline-block;width:20px;height:20px;background:var(--80272452) no-repeat center/100% 100%}.addresslogClass .checkBox .userLeft .tree-content[data-v-b18366d9]{width:100%;height:calc(100% - 46px);overflow:auto}.addresslogClass .checkBox .userLeft .tree-content[data-v-b18366d9]::-webkit-scrollbar{width:2px;height:2px}.addresslogClass .checkBox .userLeft .tree-content[data-v-b18366d9]::-webkit-scrollbar-track{background:transparent}.addresslogClass .checkBox .userLeft .tree-content[data-v-b18366d9]::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node[data-v-b18366d9]{font-weight:400;font-size:16px;color:#fff;width:100%;padding-left:10px;text-align:left}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable[data-v-b18366d9]{width:100%;display:flex;align-items:center;justify-content:space-between;padding-right:35px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .custom-tree-node-label[data-v-b18366d9]{max-width:100px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .node-options[data-v-b18366d9]{display:flex;align-items:center;justify-content:center;flex-wrap:nowrap}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .node-options .node-option[data-v-b18366d9]{font-family:PingFang SC;font-weight:500;font-size:14px;color:#5fa7fd;cursor:pointer}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .node-options .node-option[data-v-b18366d9]:not(:last-child){margin-right:10px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-label[data-v-b18366d9]{display:inline-block;width:fit-content;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-num[data-v-b18366d9]{font-size:12px;color:#76b2ff}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user[data-v-b18366d9]{display:flex;justify-content:flex-start;align-items:center}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .custom-tree-node-icon[data-v-b18366d9]{flex-shrink:0;display:inline-block;width:20px;height:20px;margin-right:10px;background:var(--cff79358) no-repeat center/100% 100%}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .custom-tree-node-label[data-v-b18366d9]{max-width:200px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .custom-tree-node-status[data-v-b18366d9]{flex-shrink:0;display:inline-block;font-weight:400;font-size:10px;height:16px;line-height:16px;text-align:center;width:36px;border-radius:10px;margin-left:10px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .status-online[data-v-b18366d9]{background:#1f63fb;color:#fff}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .status-offline[data-v-b18366d9]{background:#4b525b;color:#fff6}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree-node__content:hover{background-color:transparent}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree-node:focus>.el-tree-node__content{background-color:transparent}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree-node .is-expanded .is-focusable{margin-bottom:0}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree{background:transparent!important}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content{position:relative;height:36px}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .is-leaf{opacity:0}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content:not(:last-child){margin-bottom:0}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-tree-node__label{font-weight:400;font-size:16px;color:#fff}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-checkbox{position:absolute;margin:0;font-size:17px;top:6px;right:12px}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-checkbox .el-checkbox__inner{border:1px solid #cbe5ff;background:transparent}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-checkbox .is-checked .el-checkbox__inner{background-color:#409eff!important}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-tree-node__expand-icon{display:inline-block;width:2px!important;height:2px!important;background:var(--63e94eca) no-repeat center/100% 100%;margin-bottom:0}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-tree-node__expand-icon:before{content:""}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .el-tree-node__expand-icon svg{display:none}.addresslogClass .checkBox .userLeft[data-v-b18366d9] .el-tree .el-tree-node__content .expanded{transform:rotate(0)!important;background:var(--839f47a2) no-repeat center/100% 100%!important}.addresslogClass .checkBox .userRight[data-v-b18366d9]{padding:14px;width:414px;height:350px;border-radius:6px;border:2px solid rgba(67,85,110,.4);overflow-y:auto}.addresslogClass .checkBox .userRight .checkUse[data-v-b18366d9]{display:flex;align-items:center}.addresslogClass .checkBox .userRight .checkUse div[data-v-b18366d9]{margin-right:15px}.addresslogClass .checkBox .userRight .checkUse .titl[data-v-b18366d9]{font-size:16px;color:#fff}.addresslogClass .checkBox .userRight .checkUse .count[data-v-b18366d9]{width:30px;height:18px;background:#1f63fb;border-radius:9px;font-size:16px;color:#fff;text-align:center;line-height:18px}.addresslogClass .checkBox .userRight .checkUse .adds[data-v-b18366d9]{cursor:pointer}.addresslogClass .checkBox .checkutl[data-v-b18366d9]{height:calc(100% - 22px);overflow:auto}.addresslogClass .checkBox .checkutl[data-v-b18366d9]::-webkit-scrollbar{width:2px;height:2px}.addresslogClass .checkBox .checkutl[data-v-b18366d9]::-webkit-scrollbar-track{background:transparent}.addresslogClass .checkBox .checkutl[data-v-b18366d9]::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}.addresslogClass .checkBox .checkutl .userFlex[data-v-b18366d9]{margin-top:5px;display:flex;align-items:center;justify-content:space-between;padding:5px}.addresslogClass .checkBox .checkutl .userFlex .label[data-v-b18366d9]{font-size:16px;color:#fff}.addresslogClass .checkBox .checkutl .userFlex .label img[data-v-b18366d9]{width:20px;height:20px;vertical-align:middle;margin-right:5px}.addresslogClass .checkBox .checkutl .userFlex .close[data-v-b18366d9]{cursor:pointer;width:16px;height:16px;background:var(--47449bb3) no-repeat center/100% 100%}.addresslogClass .footersFull[data-v-b18366d9]{margin-top:30px;display:flex;justify-content:space-between;align-items:center;font-family:PingFangSC-Medium;font-size:16px;color:#fff}.addresslogClass .footersFull .addfz[data-v-b18366d9]{display:flex;align-items:center;justify-content:center;width:120px;height:40px;background:#1c242f99;border-radius:8px;cursor:pointer}.addresslogClass .footersFull .addfz img[data-v-b18366d9]{margin-right:5px}.addresslogClass .footersFull .isokmul[data-v-b18366d9]{display:flex}.addresslogClass .footersFull .isokmul div[data-v-b18366d9]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.addresslogClass .footersFull .isokmul div[data-v-b18366d9]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.more-option[data-v-a2b8a447]{width:140px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #313d51;padding:16px 15px;position:absolute;z-index:1000}.more-option-item[data-v-a2b8a447]{width:100%;height:40px;line-height:40px;text-align:center;white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;cursor:pointer}.more-option-item[data-v-a2b8a447]:hover{background:#1f63fb;border-radius:8px}.more-option-item[data-v-a2b8a447]:not(:last-child){margin-bottom:8px}.more-option-item-danger[data-v-a2b8a447]{color:#ef5b56}.mask[data-v-a89d8f2a]{width:100%;height:100%;position:absolute;left:0;top:0;z-index:1000;font-family:PingFang SC;font-weight:500;font-size:18px;color:#fff;background:#00000080}.mask .dialog[data-v-a89d8f2a]{position:absolute;z-index:1005;left:50%;top:50%;transform:translate(-50%,-50%);background:#252e3d;border-radius:16px;border:2px solid #798ba4}.mask .dialog-head[data-v-a89d8f2a]{width:calc(100% - 40px);height:50px;display:flex;align-items:center;justify-content:space-between;margin:0 20px;border-bottom:2px solid rgba(28,36,47,.6)}.mask .dialog-head-group[data-v-a89d8f2a]{display:flex;flex-wrap:nowrap;align-items:center}.mask .dialog-head-group .dialog-logo[data-v-a89d8f2a]{width:30px;height:30px;margin-right:10px}.mask .dialog-head-group .close-icon[data-v-a89d8f2a]{width:18px;height:18px;cursor:pointer;background:var(--87572f6a) no-repeat center/100% 100%}.mask .dialog-contain[data-v-a89d8f2a]{padding:20px;display:flex;justify-content:space-between}.mask .dialog-contain .box-form[data-v-a89d8f2a]{width:100%}.mask .dialog-contain .box-form .foot-btns[data-v-a89d8f2a]{width:100%;display:flex;align-items:center;justify-content:center}.mask .dialog-contain .box-form .foot-btns .btn[data-v-a89d8f2a]{width:100px;height:40px;line-height:40px;box-shadow:0 2px 12px #2a68f626;border-radius:8px;text-align:center;font-family:PingFang SC;font-weight:500;font-size:16px;cursor:pointer}.mask .dialog-contain .box-form .foot-btns .btn-cancel[data-v-a89d8f2a]{border:1px solid #798ba4;color:#798ba4;margin-right:16px}.mask .dialog-contain .box-form .foot-btns .btn-confirm[data-v-a89d8f2a]{color:#fff;background:#1f63fb}.customForm .yaoq[data-v-a89d8f2a]{margin-top:28px;margin-bottom:28px;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between}.customForm .yaoq-title[data-v-a89d8f2a]{font-size:16px;text-align:right;flex-shrink:0;width:100px;white-space:nowrap;padding-right:10px;margin-right:0}.customForm .yaoq .invite-list[data-v-a89d8f2a]{width:calc(100% - 100px);display:flex;flex-wrap:nowrap;align-items:center}.customForm .yaoq .invite-list-item[data-v-a89d8f2a]{width:30px;height:30px}.customForm .yaoq .invite-list-item[data-v-a89d8f2a]:not(:last-child){margin-right:15px}.customForm .yaoq .invite-list-item-user[data-v-a89d8f2a]{background:var(--49c3a410) no-repeat center/100% 100%}.customForm .yaoq .invite-list-item-system[data-v-a89d8f2a]{cursor:pointer;width:40px;height:40px;background:#1c242f99;border-radius:8px;display:flex;align-items:center;justify-content:center}.customForm .yaoq .invite-list-item-system .icon[data-v-a89d8f2a]{width:18px;height:18px;background:var(--2d28a840) no-repeat center/100% 100%}.customForm .yaoq .invite-list .split[data-v-a89d8f2a]{font-family:PingFang SC;font-weight:500;font-size:14px;color:#9ca3ac;margin-right:15px}.customForm .yaoq .invite-list .badge[data-v-a89d8f2a]{margin-right:15px;padding:0 6px;line-height:22px;background:#1f63fb;border-radius:24px;white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:12px;color:#fff}.customForm .time-range[data-v-a89d8f2a]{display:flex;width:100%;flex-wrap:nowrap;align-items:center}.customForm .time-range[data-v-a89d8f2a] .el-date-editor{flex-shrink:0;width:90px;height:48px;line-height:48px}.customForm .time-range[data-v-a89d8f2a] .el-date-editor .el-input__inner{padding:0 2px 0 5px}.customForm .time-range[data-v-a89d8f2a] .el-date-editor .el-input__prefix{display:none}.customForm .meeting-remind[data-v-a89d8f2a]{width:100%;display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:nowrap}.customForm .meeting-remind-wrap .meeting-remind-list[data-v-a89d8f2a]{display:flex;align-items:center;height:48px;flex-wrap:nowrap}.customForm .meeting-remind-wrap .meeting-remind-list .del-btn[data-v-a89d8f2a]{font-family:PingFang SC;font-weight:500;font-size:14px;color:#5fa7fd;cursor:pointer;padding:0 8px}.customForm .meeting-remind-wrap .meeting-remind-list[data-v-a89d8f2a]:not(:last-of-type){margin-bottom:10px}.customForm .meeting-remind .btn-add[data-v-a89d8f2a]{background:#1c242f99;cursor:pointer;border-radius:8px;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:14px;color:#fff;line-height:48px;padding:0 13px 0 41px;position:relative}.customForm .meeting-remind .btn-add[data-v-a89d8f2a]:before{content:"";width:20px;height:20px;position:absolute;left:12px;top:15px;background:var(--c13f3ffe) no-repeat center/100% 100%}.customForm .meeting-setter[data-v-a89d8f2a]{width:100%;display:flex;flex-direction:column;align-items:flex-start;padding-top:8px}.customForm .meeting-setter[data-v-a89d8f2a] .el-checkbox .el-checkbox__label{font-family:PingFang SC;font-weight:500;font-size:14px;color:#fff;line-height:22px}.customForm .meeting-setter[data-v-a89d8f2a] .el-checkbox:not(:last-child){margin-bottom:14px}[data-v-a89d8f2a] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-a89d8f2a] .el-form-item__label{width:100px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-a89d8f2a] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-a89d8f2a] .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;background-color:#1c242f99!important;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-a89d8f2a] .el-form-item__label-wrap{align-items:center}[data-v-a89d8f2a] .is-disabled .el-input__wrapper,[data-v-a89d8f2a] .el-input__wrapper{background:#1c242f99;border-radius:8px;border:none;box-shadow:none}[data-v-a89d8f2a] .el-select{width:100%;flex-shrink:0}[data-v-a89d8f2a] .el-select .el-select__wrapper{background:#1c242f99;border-radius:8px;border:none;box-shadow:none;height:48px;line-height:48px;padding:4px 5px 4px 7px}[data-v-a89d8f2a] .el-select .el-select__wrapper .el-select__prefix{display:none}[data-v-a89d8f2a] .el-select .el-select__wrapper .el-select__placeholder{color:#fff}[data-v-a89d8f2a] .el-select .el-select__wrapper .is-transparent{color:#a8abb2!important}.person-list-item-avatar-user[data-v-a89d8f2a]{background:var(--49c3a410) no-repeat center/100% 100%}.person-list-item-avatar-system[data-v-a89d8f2a]{cursor:pointer;width:40px;height:40px;background:#1c242f99;border-radius:8px;display:flex;align-items:center;justify-content:center}.person-list-item-avatar-system .icon[data-v-a89d8f2a]{width:18px;height:18px;background:var(--2d28a840) no-repeat center/100% 100%}.btn-add[data-v-a89d8f2a]{background:#1c242f99;cursor:pointer;border-radius:8px;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:14px;color:#fff;line-height:48px;padding:0 13px 0 41px;position:relative}.btn-add[data-v-a89d8f2a]:before{content:"";width:20px;height:20px;position:absolute;left:12px;top:15px;background:var(--c13f3ffe) no-repeat center/100% 100%}.check-dialog[data-v-bb74c39c]{width:174px;padding-bottom:20px;position:absolute;z-index:1000}.check-dialog-inner[data-v-bb74c39c]{width:100%;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:9px 14px}.check-dialog-inner .control-list[data-v-bb74c39c]{width:100%;font-family:PingFang SC;font-weight:500;color:#fff}.check-dialog-inner .control-list-title[data-v-bb74c39c]{text-align:left;font-size:16px;line-height:22px;margin-bottom:19px}.check-dialog-inner .control-list-item[data-v-bb74c39c]{width:100%;height:40px;cursor:pointer;font-size:16px;display:flex;align-items:center;flex-wrap:nowrap;justify-content:space-between;padding:0 12px;margin-bottom:10px}.check-dialog-inner .control-list-item-checked[data-v-bb74c39c],.check-dialog-inner .control-list-item[data-v-bb74c39c]:hover{background:#1f63fb;border-radius:8px}.check-dialog-inner .control-list-item-value[data-v-bb74c39c]{width:fit-content;max-width:100px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.check-dialog-inner .control-list-item .check[data-v-bb74c39c]{width:20px;height:20px}.check-dialog-inner .control-list-item .is-checked[data-v-bb74c39c]{background:var(--72384d9b) no-repeat center/100% 100%}.check-dialog-inner .control-footer[data-v-bb74c39c]{width:100%;padding:10px 0 3px}.check-dialog-inner .control-footer .control-link[data-v-bb74c39c]{width:100%;text-align:left;cursor:pointer;white-space:nowrap;color:#5fa7fd;font-size:16px}.check-icon[data-v-bb74c39c]{width:20px;height:20px;background:var(--72384d9b) no-repeat center/100% 100%}.mask[data-v-c701babd]{width:100%;height:100%;position:absolute;left:0;top:0;z-index:1000;font-family:PingFang SC;font-weight:500;font-size:18px;color:#fff;background:#00000080}.mask .dialog[data-v-c701babd]{width:750px;height:550px;position:absolute;z-index:1005;left:50%;top:50%;transform:translate(-50%,-50%);background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4}.mask .dialog-head[data-v-c701babd]{width:100%;height:50px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;border-bottom:2px solid #1c242f}.mask .dialog-head .search-input[data-v-c701babd]{width:150px}.mask .dialog-head .close-icon[data-v-c701babd]{width:17px;height:17px;cursor:pointer;background:var(--611bf4f6) no-repeat center/100% 100%}.mask .dialog-contain[data-v-c701babd]{width:100%;height:calc(100% - 50px);padding:20px}.mask .dialog-contain .video-contain[data-v-c701babd]{width:100%;height:400px;border-radius:8px;position:relative;display:flex;align-items:center;justify-content:center;margin-bottom:20px}.mask .dialog-contain .video-contain .avatar[data-v-c701babd]{width:100px;height:100px;border-radius:50%;background:var(--ec41c92a) no-repeat center/100% 100%}.mask .dialog-contain .video-contain .mirror-switch[data-v-c701babd]{cursor:pointer;position:absolute;top:23px;right:17px;background:#1c242f99;border-radius:8px;display:flex;align-items:center;height:40px;padding:0 10px;font-weight:400;font-size:12px;z-index:10}.mask .dialog-contain .video-contain .mirror-switch-icon[data-v-c701babd]{width:16px;height:14px;margin-right:6px}.mask .dialog-contain .video-contain .video-ele[data-v-c701babd]{position:absolute;width:100%;height:100%;border-radius:8px;left:0;top:0;object-fit:cover}.mask .dialog-contain .tool-bar[data-v-c701babd]{width:100%;height:calc(100% - 420px);display:flex;align-items:center;justify-content:space-between}.mask .dialog-contain .tool-bar-group[data-v-c701babd]{display:flex;align-items:center}.mask .dialog-contain .tool-bar-group .imgsf[data-v-c701babd]{margin-right:16px;background:#1c242f99;border-radius:8px;padding:10px 12px;display:flex;align-items:center;cursor:pointer;position:relative}.mask .dialog-contain .tool-bar-group .imgsf .xian[data-v-c701babd]{width:1px;height:20px;background:#fff6;margin:0 8px}.mask .dialog-contain .tool-bar-group .imgsf .img-icon[data-v-c701babd]{width:18px;height:18px}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-mic-on[data-v-c701babd]{background:var(--1d4c244e) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-mic-off[data-v-c701babd]{background:var(--282ea6c9) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-cam-on[data-v-c701babd]{height:11px!important;background:var(--17ec302a) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-cam-off[data-v-c701babd]{height:18px!important;background:var(--7b7deef7) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-btn[data-v-c701babd]{background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:6px;cursor:pointer;padding:0 18px;line-height:40px;font-size:16px;color:#fff}.mask[data-v-c701babd] .el-input{width:100%}.mask[data-v-c701babd] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.mask[data-v-c701babd] .el-input .el-input__wrapper .el-input__inner{height:36px;line-height:36px;border:none;box-shadow:none;font-size:14px!important;color:#fff!important;font-family:PingFang SC;font-weight:400}.mask[data-v-c701babd] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}.mask[data-v-c701babd] .el-input .el-input__wrapper .el-input__icon{display:inline-block;width:20px;height:20px;background:var(--4e8456a4) no-repeat center/100% 100%}.live-address-book[data-v-5849a734]{width:1355px;height:822px;background:#252e3d;border-radius:8px;border:2px solid #798ba4;position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:2000;font-family:PingFang SC;font-weight:500;font-size:20px;color:#fff}.live-address-book-head[data-v-5849a734]{height:60px;width:100%;display:flex;align-items:center;justify-content:space-between;padding:0 20px;background:#181f29e6}.live-address-book-head .head-btn-group[data-v-5849a734]{display:flex;align-items:center}.live-address-book-head .head-btn-group .head-btn[data-v-5849a734]{width:25px;height:25px;cursor:pointer}.live-address-book-head .head-btn-group .head-btn[data-v-5849a734]:not(:last-child){margin-right:16px}.live-address-book-head .head-btn-group .head-btn-screen[data-v-5849a734]{background:var(--2c13d7f9) no-repeat center/100% 100%}.live-address-book-head .head-btn-group .head-btn-close[data-v-5849a734]{background:var(--7004ad02) no-repeat center/100% 100%}.live-address-book-content[data-v-5849a734]{width:100%;height:calc(100% - 60px);display:flex;padding:16px 0}.live-address-book-content .content-left-side[data-v-5849a734]{width:336px;height:100%;border-right:1px solid rgba(67,85,110,.4);padding:0 20px}.live-address-book-content .content-left-side .enter-list[data-v-5849a734]{width:100%;height:80px;display:flex;align-items:center;justify-content:space-between;font-size:16px;margin-bottom:20px}.live-address-book-content .content-left-side .enter-list-item[data-v-5849a734]{display:flex;flex-direction:column;align-items:center;cursor:pointer}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon[data-v-5849a734]{width:46px;height:46px;margin-bottom:10px}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon-quick[data-v-5849a734]{background:var(--0e7b60b4) no-repeat center/100% 100%}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon-join[data-v-5849a734]{background:var(--400bc8f7) no-repeat center/100% 100%}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon-preview[data-v-5849a734]{background:var(--a5a1b7e2) no-repeat center/100% 100%}.live-address-book-content .content-left-side .enter-list-item .enter-item-title[data-v-5849a734]{line-height:22px;white-space:nowrap}.live-address-book-content .content-left-side .left-item[data-v-5849a734]{width:100%;height:calc(100% - 100px)}.live-address-book-content .content-left-side .left-item-title[data-v-5849a734]{width:100%;font-size:20px;line-height:24px;margin-bottom:16px;text-align:left}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734]{width:100%;height:calc(100% - 40px)}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-5849a734]{width:100%;margin-bottom:20px}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-5849a734] .el-input{width:100%}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-5849a734] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-5849a734] .el-input .el-input__wrapper .el-input__inner{height:36px;line-height:36px;border:none;box-shadow:none;font-size:14px!important;color:#fff!important;font-family:PingFang SC;font-weight:400}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-5849a734] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-5849a734] .el-input .el-input__wrapper .el-input__icon{display:inline-block;width:20px;height:20px;background:var(--448d9492) no-repeat center/100% 100%}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-5849a734]{width:100%;height:calc(100% - 148px);overflow:auto}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-5849a734]::-webkit-scrollbar{width:2px;height:2px}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-5849a734]::-webkit-scrollbar-track{background:transparent}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-5849a734]::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node[data-v-5849a734]{font-weight:400;font-size:16px;color:#fff;width:100%;padding-left:10px;text-align:left}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-label[data-v-5849a734]{display:inline-block;width:fit-content;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-num[data-v-5849a734]{font-size:12px;color:#76b2ff}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user[data-v-5849a734]{display:flex;justify-content:flex-start;align-items:center}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-icon[data-v-5849a734]{flex-shrink:0;display:inline-block;width:20px;height:20px;margin-right:10px;background:var(--48217634) no-repeat center/100% 100%}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-prefix-icon[data-v-5849a734]{flex-shrink:0;width:14px;height:14px;margin-right:15px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-label[data-v-5849a734]{max-width:200px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-status[data-v-5849a734]{flex-shrink:0;display:inline-block;font-weight:400;font-size:10px;height:16px;line-height:16px;text-align:center;width:36px;border-radius:10px;margin-left:10px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .status-online[data-v-5849a734]{background:#1f63fb;color:#fff}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .status-offline[data-v-5849a734]{background:#4b525b;color:#fff6}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree-node__content:hover{background-color:transparent}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree-node:focus>.el-tree-node__content{background-color:transparent}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree-node .is-expanded .is-focusable{margin-bottom:10px}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree{background:transparent!important}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content{position:relative;height:36px}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .is-leaf{opacity:0}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content:not(:last-child){margin-bottom:0}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-tree-node__label{font-weight:400;font-size:16px;color:#fff}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-checkbox{position:absolute;margin:0;font-size:17px;top:6px;right:12px}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-checkbox .el-checkbox__inner{border:1px solid #cbe5ff;background:transparent}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-checkbox .is-checked .el-checkbox__inner{background-color:#409eff!important}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-tree-node__expand-icon{display:inline-block;width:2px!important;height:2px!important;background:var(--183e72ea) no-repeat center/100% 100%;margin-bottom:0}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-tree-node__expand-icon:before{content:""}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .el-tree-node__expand-icon svg{display:none}.live-address-book-content .content-left-side .left-item-content[data-v-5849a734] .el-tree .el-tree-node__content .expanded{transform:rotate(0)!important;background:var(--1696340f) no-repeat center/100% 100%!important}.live-address-book-content .content-left-side .left-item-content .chosen[data-v-5849a734]{width:100%;margin-bottom:16px}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title[data-v-5849a734]{width:100%;height:36px;display:flex;align-items:center}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title-label[data-v-5849a734]{font-size:16px;color:#fff;margin-right:10px}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title-num[data-v-5849a734]{line-height:18px;border-radius:9px;padding:0 9px;background:#1f63fb;font-size:12px;margin-right:10px}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title-icon[data-v-5849a734]{cursor:pointer;width:18px;height:18px;background:var(--00af08b6) no-repeat center/100% 100%}.live-address-book-content .content-left-side .left-item-content .options[data-v-5849a734]{width:100%;display:flex;align-items:center;justify-content:space-between}.live-address-book-content .content-left-side .left-item-content .options .option[data-v-5849a734]{width:120px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:16px;border-radius:8px}.live-address-book-content .content-left-side .left-item-content .options .option-icon[data-v-5849a734]{width:20px;height:20px;margin-right:9px}.live-address-book-content .content-left-side .left-item-content .options .option-reset[data-v-5849a734]{box-shadow:0 2px 12px #2a68f626;border:1px solid #798ba4;color:#798ba4}.live-address-book-content .content-left-side .left-item-content .options .option-launch[data-v-5849a734]{color:#fff;background:#1f63fb}.live-address-book-content .content-right-side[data-v-5849a734]{width:calc(100% - 336px);height:100%;padding:0 20px}.live-address-book-content .content-right-side .meeting-entry-right-head[data-v-5849a734]{width:100%;height:70px;display:flex;align-items:center;border-bottom:2px solid #1c242f;font-weight:500;font-size:20px;color:#fff;margin-bottom:30px}.live-address-book-content .content-right-side .meeting-entry-right-head .logo[data-v-5849a734]{width:26px;height:26px;margin-right:10px}.live-address-book-content .content-right-side .meeting-entry-right-content[data-v-5849a734]{width:100%;height:calc(100% - 100px);overflow-y:auto}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list[data-v-5849a734]{width:100%;height:84px;padding:0 24px;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between;background:#1c242f99;border-radius:10px;font-weight:500;color:#fff}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary[data-v-5849a734]{display:flex;align-items:center;margin-bottom:9px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-logo[data-v-5849a734]{width:24px;height:24px;background:var(--7545e40b) no-repeat center/100% 100%;margin-right:10px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-name[data-v-5849a734]{font-size:16px;white-space:nowrap;margin-right:14px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-status[data-v-5849a734]{border-radius:4px;padding:0 5px;line-height:18px;white-space:nowrap;font-size:12px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-status-unstart[data-v-5849a734]{background:#f90}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-status-start[data-v-5849a734]{background:#1f63fb}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-sub[data-v-5849a734]{display:flex;align-items:center}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-sub .meeting-message-item[data-v-5849a734]{font-size:14px;color:#798ba4;display:flex;align-items:center}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-sub .meeting-message-item[data-v-5849a734]:not(:last-child){margin-right:40px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-right[data-v-5849a734]{display:flex;align-items:center;flex-wrap:nowrap}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-right .enter-btn[data-v-5849a734]{font-size:16px;line-height:36px;padding:0 18px;background:#1f63fb;border-radius:6px;margin-right:16px;cursor:pointer}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-right .more-btn[data-v-5849a734]{width:24px;height:24px;cursor:pointer;background:var(--2dcd5a5e) no-repeat center/100% 100%}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list[data-v-5849a734]:not(:last-child){margin-bottom:16px}.live-address-book-content .content-right-side .meeting-entry-right-content .empty-box[data-v-5849a734]{display:flex;flex-direction:column;align-items:center}.live-address-book-content .content-right-side .meeting-entry-right-content .empty-box .empty-logo[data-v-5849a734]{width:384px;height:223px;background:var(--466f384a) no-repeat center/100% 100%;margin-bottom:10px}.live-address-book-content .content-right-side .meeting-entry-right-content .empty-box .empty-text[data-v-5849a734]{background:#1c242f99;border-radius:10px;line-height:42px;padding:0 24px;white-space:nowrap;font-weight:500;font-size:16px;color:#fff}.live-address-book-content .content-right-side .meeting-entry-right-content-empty[data-v-5849a734]{padding-top:80px;display:flex;justify-content:center}.live-address-book-content .content-right-side .meeting-entry-right-content[data-v-5849a734]::-webkit-scrollbar{display:none}.theme-dialog[data-v-509ccc0d]{position:absolute;top:60px;left:0;z-index:1000;width:500px;padding:24px;background:#252e3d;box-shadow:0 0 18px #0006;border-radius:10px}.theme-dialog .dialog-item[data-v-509ccc0d]{width:100%;line-height:30px;display:flex;align-items:center;margin-bottom:24px}.theme-dialog .dialog-item-title[data-v-509ccc0d]{font-family:PingFang SC;font-weight:500;font-size:16px;color:#f6f7f9;width:112px;text-align:right}.theme-dialog .dialog-item-content[data-v-509ccc0d]{display:flex;align-items:center;margin-left:24px;width:calc(100% - 124px)}.theme-dialog .dialog-item-content .dialog-item-name[data-v-509ccc0d]{font-family:PingFang SC;font-weight:400;font-size:14px;color:#c8d6e5;display:inline-block;width:calc(100% - 36px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.theme-dialog .dialog-item-content .copy-icon[data-v-509ccc0d]{width:16px;height:16px;margin-left:10px;cursor:pointer}.theme-dialog .dialog-item[data-v-509ccc0d]:last-child{margin-bottom:0}.dialog[data-v-c7fcde8d]{position:absolute;z-index:100;padding-top:31px;width:236px}.dialog-inner[data-v-c7fcde8d]{background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;width:100%;min-height:172px;height:auto;padding:27px 25px}.dialog-inner .mark-list[data-v-c7fcde8d]{width:100%;display:flex;align-items:flex-start;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:16px;margin-bottom:15px}.dialog-inner .mark-list-title[data-v-c7fcde8d]{width:100px;line-height:22px;color:#798ba4;text-align:left}.dialog-inner .mark-list-value[data-v-c7fcde8d]{color:#fff;width:calc(100% - 100px);white-space:wrap;line-height:22px}.dialog-inner .mark-link[data-v-c7fcde8d]{white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:16px;color:#5fa7fd;cursor:pointer}.layout-list[data-v-165828ca]{position:absolute;top:36px;left:0;width:120px;background:#323c4d;box-shadow:0 0 8px #00000040;border-radius:8px;padding:9px 6px;z-index:100}.layout-list .layout-item[data-v-165828ca]{cursor:pointer;width:108px;display:flex;justify-content:flex-start;align-items:center;padding:0 8px;margin-bottom:9px;position:relative}.layout-list .layout-item[data-v-165828ca]:last-child{margin-bottom:0}.layout-list .layout-item span[data-v-165828ca]{color:#fff;font-family:PingFang SC;font-weight:500;line-height:39px;font-size:14px}.layout-list .layout-item[data-v-165828ca]:after{position:absolute;content:"";width:39px;height:39px;right:8px;top:0}.layout-list .layout-item-active[data-v-165828ca],.layout-list .layout-item-active span[data-v-165828ca]{color:#2080f7!important}.layout-list .layout1[data-v-165828ca]:after{background:var(--692c11a2) no-repeat center/100% 100%}.layout-list .layout1.layout-item-active[data-v-165828ca]:after{background:var(--e68d6c74) no-repeat center/100% 100%!important}.layout-list .layout-disable[data-v-165828ca]{opacity:.6;cursor:not-allowed}.layout-list .layout-disable.layout1.layout-item-active[data-v-165828ca]:after{background:var(--e68d6c74) no-repeat center/100% 100%!important}.layout-list .layout2[data-v-165828ca]:after{background:var(--80992f64) no-repeat center/100% 100%}.layout-list .layout2.layout-item-active[data-v-165828ca]:after{background:var(--fdfa8a36) no-repeat center/100% 100%!important}.layout-list .layout-disable.layout2.layout-item-active[data-v-165828ca]:after{background:var(--fdfa8a36) no-repeat center/100% 100%!important}.layout-list .layout3[data-v-165828ca]:after{background:var(--98064d26) no-repeat center/100% 100%}.layout-list .layout3.layout-item-active[data-v-165828ca]:after{background:var(--754c2c04) no-repeat center/100% 100%!important}.layout-list .layout-disable.layout3.layout-item-active[data-v-165828ca]:after{background:var(--754c2c04) no-repeat center/100% 100%!important}.layout-list .layout4[data-v-165828ca]:after{background:var(--af736ae8) no-repeat center/100% 100%}.layout-list .layout4.layout-item-active[data-v-165828ca]:after{background:var(--69959d23) no-repeat center/100% 100%!important}.layout-list .layout-disable.layout4.layout-item-active[data-v-165828ca]:after{background:var(--69959d23) no-repeat center/100% 100%!important}.member-manage[data-v-c21c7e59]{width:440px;height:100%;padding:0 20px;background:#252e3d;box-shadow:0 0 8px #00000040;border:2px solid #798ba4;position:relative}.member-manage-head[data-v-c21c7e59]{width:100%;height:70px;border-bottom:2px solid #1c242f;display:flex;align-items:center;justify-content:space-between}.member-manage-head-left[data-v-c21c7e59]{display:flex;align-items:center;flex-wrap:nowrap}.member-manage-head-left .logo[data-v-c21c7e59]{width:25px;height:25px;background:var(--10ea0e4d) no-repeat center/100% 100%;margin-right:14px}.member-manage-head-left .title[data-v-c21c7e59]{font-family:PingFang SC;font-weight:500;font-size:20px;color:#fff;white-space:nowrap;margin-right:10px}.member-manage-head-left .num[data-v-c21c7e59]{line-height:18px;height:18px;padding:0 11px;background:#1f63fb;border-radius:9px;font-family:PingFang SC;font-weight:500;font-size:12px;color:#fff}.member-manage-head .close[data-v-c21c7e59]{cursor:pointer;width:25px;height:25px;background:var(--1a2f7012) no-repeat center/100% 100%}.member-manage-contain[data-v-c21c7e59]{width:100%;height:calc(100% - 70px)}.member-manage-contain .tab-content[data-v-c21c7e59]{width:100%;height:100%}.member-manage-contain .tab-content[data-v-c21c7e59] .el-input{line-height:36px;margin-bottom:20px}.member-manage-contain .tab-content[data-v-c21c7e59] .el-input .el-input__wrapper{background:#1c242f99!important;border-radius:4px!important;box-shadow:none}.member-manage-contain .tab-content[data-v-c21c7e59] .el-input .el-input__inner{height:34px;line-height:34px;color:#fff}.member-manage-contain .tab-content[data-v-c21c7e59] .el-input .el-input__inner::placeholder{font-family:PingFang SC;font-weight:500;font-size:14px;color:#43556e}.member-manage-contain .tab-content[data-v-c21c7e59] .el-input .input-suffix-icon{width:20px;height:20px;background:var(--d35dd2a4) no-repeat center/100% 100%}.member-manage-contain .tab-content-foot[data-v-c21c7e59]{width:100%;padding:12px 0 24px;display:flex;flex-wrap:nowrap;align-items:center;justify-content:center}.member-manage-contain .tab-content-foot-btn[data-v-c21c7e59]{cursor:pointer;height:40px;display:flex;align-items:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;background:#1c242f99}.member-manage-contain .tab-content-foot-btn[data-v-c21c7e59]:nth-child(1){padding:0 38px}.member-manage-contain .tab-content-foot-btn[data-v-c21c7e59]:nth-child(2){padding:0 14px}.member-manage-contain .tab-content-foot-btn[data-v-c21c7e59]:not(:last-child){margin-right:20px}.member-manage-contain .tab-content-foot-btn .btn-icon[data-v-c21c7e59]{width:20px;height:20px;margin-right:10px}.member-manage-contain .tab-content-foot-btn span[data-v-c21c7e59]{white-space:nowrap}.member-manage-contain .tab-content .member-list[data-v-c21c7e59]{width:100%;height:calc(100% - 132px);overflow-y:auto}.member-manage-contain .tab-content .member-list[data-v-c21c7e59]::-webkit-scrollbar{width:2px}.member-manage-contain .tab-content .member-list[data-v-c21c7e59]::-webkit-scrollbar-thumb{border-radius:2px;background-color:#00000040}.member-manage-contain .tab-content .member-list[data-v-c21c7e59]::-webkit-scrollbar-track{box-shadow:none!important;background:transparent!important;border-radius:5px}.member-manage-contain .tab-content .member-list-item[data-v-c21c7e59]{width:100%;display:flex;align-items:center;flex-wrap:nowrap;justify-content:space-between}.member-manage-contain .tab-content .member-list-item[data-v-c21c7e59]:not(:last-of-type){margin-bottom:20px}.member-manage-contain .tab-content .member-list-item-group[data-v-c21c7e59]{display:flex;align-items:center;flex-wrap:nowrap;flex-shrink:0}.member-manage-contain .tab-content .member-list-item-group .avatar[data-v-c21c7e59]{width:26px;height:26px;margin-right:12px}.member-manage-contain .tab-content .member-list-item-group .name[data-v-c21c7e59]{display:inline-block;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;white-space:nowrap;width:fit-content;max-width:148px;overflow:hidden;text-overflow:ellipsis}.member-manage-contain .tab-content .member-list-item-group .host[data-v-c21c7e59]{background:#f90;border-radius:4px;line-height:18px;padding:0 5px;color:#fff;font-family:PingFang SC;font-weight:500;font-size:12px;margin-left:15px}.member-manage-contain .tab-content .member-list-item-group .icon-btn[data-v-c21c7e59]{width:26px;height:26px;cursor:pointer}.member-manage-contain .tab-content .member-list-item-group .icon-btn[data-v-c21c7e59]:not(:last-of-type){margin-right:16px}.member-manage-contain .tab-content .member-list-item-group .icon-btn-option[data-v-c21c7e59]{background:var(--7b353a40) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-mic-on[data-v-c21c7e59]{background:var(--d61e0b3c) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-mic-off[data-v-c21c7e59]{background:var(--13fc6b10) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-cam-on[data-v-c21c7e59]{background:var(--6ab6beda) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-cam-off[data-v-c21c7e59]{background:var(--4e16d600) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .text-btn[data-v-c21c7e59]{width:80px;height:32px;line-height:32px;text-align:center;border-radius:8px;cursor:pointer;font-family:PingFang SC;font-weight:500;font-size:16px}.member-manage-contain .tab-content .member-list-item-group .text-btn[data-v-c21c7e59]:not(:last-of-type){margin-right:16px}.member-manage-contain .tab-content .member-list-item-group .text-btn-remove[data-v-c21c7e59]{border:1px solid #ef5b56;color:#ef5b56}.member-manage-contain .tab-content .member-list-item-group .text-btn-invite[data-v-c21c7e59]{background:#1f63fb;color:#fff}.member-manage[data-v-c21c7e59] .el-tabs__header{margin:0 0 20px}.member-manage[data-v-c21c7e59] .el-tabs__header .el-tabs__nav-wrap:after{background-color:transparent;bottom:0;content:"";height:2px;left:0;position:absolute;width:100%}.member-manage[data-v-c21c7e59] .el-tabs__header .el-tabs__nav-wrap .el-tabs__item{font-family:PingFang SC!important;font-weight:500!important;font-size:16px!important;color:#43556e!important}.member-manage[data-v-c21c7e59] .el-tabs__header .el-tabs__nav-wrap .is-active{color:#fff!important}.member-manage[data-v-c21c7e59] .el-tabs__content .el-tab-pane{height:100%}.chat[data-v-c27d5f79]{width:440px;height:100%;padding:0 20px;background:#252e3d;box-shadow:0 0 8px #00000040;border:2px solid #798ba4}.chat-head[data-v-c27d5f79]{width:100%;height:70px;border-bottom:2px solid #1c242f;display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}.chat-head-left[data-v-c27d5f79]{display:flex;align-items:center;flex-wrap:nowrap}.chat-head-left .logo[data-v-c27d5f79]{width:25px;height:25px;background:var(--6a97c9ea) no-repeat center/100% 100%;margin-right:14px}.chat-head-left .title[data-v-c27d5f79]{font-family:PingFang SC;font-weight:500;font-size:20px;color:#fff;white-space:nowrap}.chat-head .close[data-v-c27d5f79]{cursor:pointer;width:25px;height:25px;background:var(--0e5765fb) no-repeat center/100% 100%}.chat-foot[data-v-c27d5f79]{width:100%;padding:12px 0 24px}.chat-foot[data-v-c27d5f79] .el-input{line-height:50px;margin-bottom:20px}.chat-foot[data-v-c27d5f79] .el-input .el-input__wrapper{background:#1c242f99!important;border-radius:4px!important;box-shadow:none}.chat-foot[data-v-c27d5f79] .el-input .el-input__inner{height:48px;line-height:48px;color:#fff}.chat-foot[data-v-c27d5f79] .el-input .el-input__inner::placeholder{font-family:PingFang SC;font-weight:500;font-size:14px;color:#43556e}.chat-foot .prefix-btns[data-v-c27d5f79]{display:flex;align-items:center}.chat-foot .prefix-btns .btn[data-v-c27d5f79]:not(:last-child){margin-right:12px}.chat-foot .btn[data-v-c27d5f79]{cursor:pointer;width:20px;height:20px}.chat-foot .btn-emoji[data-v-c27d5f79]{background:var(--03bcce3f) no-repeat center/100% 100%}.chat-foot .btn-emoji+div[data-v-c27d5f79]{width:20px;height:20px;background:var(--58f8fc43) no-repeat center/100% 100%}.chat-foot .btn-pic[data-v-c27d5f79]{background:var(--58f8fc43) no-repeat center/100% 100%}.chat-foot .btn-send[data-v-c27d5f79]{background:var(--eba65cba) no-repeat center/100% 100%}.chat-foot .emotion-list[data-v-c27d5f79]{display:flex;flex-wrap:wrap;padding:10px}.chat-foot .emotion-list .emotion-item[data-v-c27d5f79]{width:20px;font-size:18px;text-align:center;line-height:20px}.chat-content[data-v-c27d5f79]{width:100%;height:calc(100% - 182px);overflow-y:auto}.chat-content[data-v-c27d5f79]::-webkit-scrollbar{width:2px}.chat-content[data-v-c27d5f79]::-webkit-scrollbar-thumb{border-radius:2px;background-color:#00000040}.chat-content[data-v-c27d5f79]::-webkit-scrollbar-track{box-shadow:none!important;background:transparent!important;border-radius:5px}.chat-content .message-item[data-v-c27d5f79]{width:100%;display:flex;align-items:flex-start}.chat-content .message-item[data-v-c27d5f79]:not(:last-child){margin-bottom:20px}.chat-content .message-item-avatar[data-v-c27d5f79]{width:50px;height:50px}.chat-content .message-item-content[data-v-c27d5f79]{width:calc(100% - 80px);display:flex;flex-direction:column}.chat-content .message-item-content-top[data-v-c27d5f79]{display:flex;flex-wrap:nowrap;align-items:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;margin-bottom:8px}.chat-content .message-item-content-top span[data-v-c27d5f79]{white-space:nowrap;line-height:22px}.chat-content .message-item-content-top .name[data-v-c27d5f79]{max-width:126px;overflow:hidden;text-overflow:ellipsis;display:inline-block}.chat-content .message-item-content-value[data-v-c27d5f79]{border-radius:8px 16px;padding:6px 20px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#181f29;line-height:24px;word-break:break-all}.chat-content .message-item-content-value img[data-v-c27d5f79]{max-width:100%}.chat-content .message-item .message-image[data-v-c27d5f79]{width:calc(100% - 80px)}.chat-content .message-item-local[data-v-c27d5f79]{justify-content:flex-end}.chat-content .message-item-local .message-item-avatar[data-v-c27d5f79]{margin-left:20px}.chat-content .message-item-local .message-item-content[data-v-c27d5f79]{align-items:flex-end}.chat-content .message-item-local .message-item-content-top[data-v-c27d5f79]{justify-content:flex-end}.chat-content .message-item-local .message-item-content-top .name[data-v-c27d5f79]{margin-right:16px}.chat-content .message-item-local .message-item-content-value[data-v-c27d5f79]{color:#fff;background:#1f63fb}.chat-content .message-item-other[data-v-c27d5f79]{justify-content:flex-start}.chat-content .message-item-other .message-item-avatar[data-v-c27d5f79]{margin-right:20px}.chat-content .message-item-other .message-item-content[data-v-c27d5f79]{align-items:flex-start}.chat-content .message-item-other .message-item-content-top[data-v-c27d5f79]{justify-content:flex-start}.chat-content .message-item-other .message-item-content-top .name[data-v-c27d5f79]{margin-right:16px}.chat-content .message-item-other .message-item-content-value[data-v-c27d5f79]{background:#fff}.check-dialog[data-v-e06551cc]{width:160px;position:absolute;z-index:100}.check-dialog-inner[data-v-e06551cc]{width:100%;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:20px 25px}.check-dialog-inner .control-list[data-v-e06551cc]{width:100%;font-family:PingFang SC;font-weight:500;color:#fff}.check-dialog-inner .control-list-item[data-v-e06551cc]{width:100%;height:40px;line-height:40px;cursor:pointer;font-size:16px;text-align:center}.check-dialog-inner .control-list-item[data-v-e06551cc]:not(:last-child){margin-bottom:10px}.check-dialog-inner .control-list-item[data-v-e06551cc]:hover{background:#ef5b56;border-radius:8px}.appoint-dialog[data-v-77c8933a]{width:220px;position:absolute;z-index:100;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFang SC;font-weight:500;color:#fff;padding:0 12px 12px}.appoint-dialog-title[data-v-77c8933a]{width:100%;line-height:40px;padding-left:12px;white-space:nowrap;font-size:16px;font-weight:500;border-bottom:1px solid #1c242f}.appoint-dialog .member-list[data-v-77c8933a]{width:100%;height:121px;overflow-y:auto;padding:10px 12px}.appoint-dialog .member-list .member-item[data-v-77c8933a]{width:100%;height:32px;cursor:pointer;font-size:14px;font-weight:400;display:flex;align-items:center;flex-wrap:nowrap;padding-left:8px}.appoint-dialog .member-list .member-item[data-v-77c8933a]:not(:last-child){margin-bottom:12px}.appoint-dialog .member-list .member-item-avatar[data-v-77c8933a]{flex-shrink:0;width:18px;height:18px;margin-right:9px}.appoint-dialog .member-list .member-item-name[data-v-77c8933a]{display:inline-block;flex-shrink:0;white-space:nowrap;width:calc(100% - 45px);max-width:calc(100% - 45px);overflow:hidden;text-overflow:ellipsis}.appoint-dialog .member-list .member-item-checked .member-item-check[data-v-77c8933a]{background:var(--0f1be441) no-repeat center/100% 100%;border:none}.appoint-dialog .member-list .member-item[data-v-77c8933a]:hover{background:#1f63fb;border-radius:8px}.appoint-dialog .member-list .member-item-check[data-v-77c8933a]{flex-shrink:0;width:16px;height:16px}.appoint-dialog-foot[data-v-77c8933a]{width:100%}.appoint-dialog-foot .foot-btn[data-v-77c8933a]{background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer;line-height:40px;text-align:center;font-weight:500;font-size:16px}.more-option[data-v-b0b8ebaf]{width:140px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #313d51;padding:16px 15px;position:absolute;z-index:100}.more-option-item[data-v-b0b8ebaf]{width:100%;height:40px;line-height:40px;text-align:center;white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;cursor:pointer}.more-option-item[data-v-b0b8ebaf]:hover{background:#1f63fb;border-radius:8px}.more-option-item[data-v-b0b8ebaf]:not(:last-child){margin-bottom:8px}.more-option-item-danger[data-v-b0b8ebaf]{color:#ef5b56}.call-board[data-v-16c6df77]{position:absolute;z-index:100;width:260px;background:#252e3d;border-radius:8px}.call-board-title[data-v-16c6df77]{width:100%;height:38px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #384055;padding:0 12px}.call-board-title-text[data-v-16c6df77]{font-family:PingFang SC;font-weight:500;font-size:14px;line-height:18px;color:#fff}.call-board-title-close[data-v-16c6df77]{width:14px;height:14px;margin-top:2px;cursor:pointer}.call-board-content[data-v-16c6df77]{width:100%;padding:12px}.call-board-content .call-board-input[data-v-16c6df77]{width:100%;height:36px;margin-bottom:20px}.call-board-content .call-board-input[data-v-16c6df77] .el-input__wrapper{background-color:#1c242f99;border-radius:8px;box-shadow:none}.call-board-content .call-board-input[data-v-16c6df77] .el-input__wrapper .el-input__inner{color:#fff;box-shadow:none;border:none}.call-board-content .call-board-btns[data-v-16c6df77]{display:flex;justify-content:space-between}.call-board-content .call-board-btns .call-board-btn[data-v-16c6df77]{cursor:pointer;padding:10px 0;text-align:center;width:108px;height:60px;background:#1c242f99;border-radius:8px}.call-board-content .call-board-btns .call-board-btn .call-board-btn-icon[data-v-16c6df77]{width:20px;height:20px;margin:0 auto 8px}.call-board-content .call-board-btns .call-board-btn .call-board-btn-icon.call-icon[data-v-16c6df77]{background:var(--536f4667) no-repeat center/100% 100%}.call-board-content .call-board-btns .call-board-btn .call-board-btn-icon.mini-icon[data-v-16c6df77]{background:var(--2f07c48e) no-repeat center/100% 100%}.call-board-content .call-board-btns .call-board-btn .call-board-btn-text[data-v-16c6df77]{font-family:PingFang SC;font-weight:500;font-size:12px;color:#fff}.chat-wrap[data-v-d493db42]{position:absolute;bottom:100px;z-index:99;left:10px;width:260px;height:180px}.chat-wrap .chat-content[data-v-d493db42]{width:100%;height:calc(100% - 35px);overflow-y:auto;display:flex;flex-direction:column;margin-bottom:5px}.chat-wrap .chat-content[data-v-d493db42]::-webkit-scrollbar{display:none}.chat-wrap .chat-content .chat-message[data-v-d493db42]{font-family:PingFang SC;font-weight:400;font-size:16px;background:#0003;border-radius:5px;width:fit-content;max-width:100%;padding:0 10px;line-height:30px;color:#fff}.chat-wrap .chat-content .chat-message .msg-content[data-v-d493db42]{word-break:break-all}.chat-wrap .chat-content .chat-message[data-v-d493db42]:first-child{margin-top:auto}.chat-wrap .chat-content .chat-message[data-v-d493db42]:not(:last-of-type){margin-bottom:6px}[data-v-dda6fa3b] .el-dialog{width:460px;margin:25vh auto 50px!important;height:225px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFangSC-Medium}[data-v-dda6fa3b] .el-dialog .el-dialog__header{padding:10px}[data-v-dda6fa3b] .el-dialog .el-dialog__body{padding:0 20px}[data-v-dda6fa3b] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-dda6fa3b] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-dda6fa3b] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-dda6fa3b] .el-input{width:100%}[data-v-dda6fa3b] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-dda6fa3b] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-dda6fa3b] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-dda6fa3b] .el-form-item__label-wrap{align-items:center}.telephoneInvit .CustomHeader[data-v-dda6fa3b]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-dda6fa3b]{width:25px;height:25px;background:var(--7d2eb6bf) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-dda6fa3b]{margin-top:20px}.isokmul[data-v-dda6fa3b]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-dda6fa3b]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-dda6fa3b]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.close-icon[data-v-dda6fa3b]{width:18px;height:18px;background:var(--7d2eb6bf) no-repeat center/100% 100%;cursor:pointer}.meeting-room[data-v-7ca14f9a]{width:1355px;height:822px;position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:2000;overflow:hidden}.meeting-room-top-bar[data-v-7ca14f9a]{width:100%;height:60px;display:flex;justify-content:space-between;align-items:center;background:#181f29;padding:0 24px}.meeting-room-top-bar .bar-group[data-v-7ca14f9a]{display:flex;align-items:center;flex-wrap:nowrap}.meeting-room-top-bar .bar-group .meeting-theme[data-v-7ca14f9a]{position:relative;flex-shrink:0;width:120px;height:36px;background:#252e3d;border-radius:8px;display:flex;align-items:center;justify-content:center;font-family:PingFang SC;font-weight:500;font-size:16px;margin-right:16px;color:#fff}.meeting-room-top-bar .bar-group .meeting-theme-logo[data-v-7ca14f9a]{width:20px;height:20px;background:var(--561b6f97) no-repeat center/100% 100%;margin-right:10px}.meeting-room-top-bar .bar-group .meeting-name[data-v-7ca14f9a]{cursor:pointer;flex-shrink:0;display:flex;flex-wrap:nowrap;align-items:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;position:relative}.meeting-room-top-bar .bar-group .meeting-name-text[data-v-7ca14f9a]{white-space:nowrap;margin-right:10px}.meeting-room-top-bar .bar-group .meeting-name-icon[data-v-7ca14f9a]{width:24px;height:24px;background:var(--b858eb22) no-repeat center/140% 140%}.meeting-room-top-bar .bar-group .meeting-signal[data-v-7ca14f9a]{position:relative;cursor:pointer;flex-shrink:0;width:25px;height:25px;background:var(--738bb230) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .btn[data-v-7ca14f9a]{width:25px;height:25px;cursor:pointer;position:relative}.meeting-room-top-bar .bar-group .btn[data-v-7ca14f9a]:not(:last-child){margin-right:16px}.meeting-room-top-bar .bar-group .layout[data-v-7ca14f9a]{background:var(--81fc4b44) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .layout-active[data-v-7ca14f9a]{background:var(--ac1aa46e) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .full-screen[data-v-7ca14f9a]{background:var(--5ee11cec) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .close-meeting-icon[data-v-7ca14f9a]{background:var(--611a1194) no-repeat center/100% 100%}.meeting-room-top-bar .meeting-duration[data-v-7ca14f9a]{width:150px;height:40px;background:#252e3d;border-radius:8px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;display:flex;align-items:center;justify-content:center;flex-wrap:nowrap}.meeting-room-top-bar .meeting-duration-logo[data-v-7ca14f9a]{width:20px;height:20px;background:var(--66f0e784) no-repeat center/100% 100%;margin-right:12px}.meeting-room-top-bar .meeting-duration span[data-v-7ca14f9a]{white-space:nowrap}.meeting-room-contain[data-v-7ca14f9a]{width:100%;height:calc(100% - 60px);display:flex;align-items:flex-start;flex-wrap:nowrap}.meeting-room-contain-left[data-v-7ca14f9a]{flex-shrink:0;width:100%;height:100%;position:relative}.meeting-room-contain-left-slide[data-v-7ca14f9a]{width:calc(100% - 440px)}.meeting-room-contain-left .meeting[data-v-7ca14f9a]{width:100%;height:100%;background:#252e3d;padding:5px;overflow-y:auto}.meeting-room-contain-left .meeting[data-v-7ca14f9a]::-webkit-scrollbar{display:none}.meeting-room-contain-left .meeting-control-bar[data-v-7ca14f9a]{width:100%;height:60px;padding:0 24px;background:#252e3de6;display:flex;align-items:center;justify-content:space-between;position:absolute;z-index:100;bottom:-60px;left:0;transition:all .2s ease}.meeting-room-contain-left .meeting-control-bar-show[data-v-7ca14f9a]{bottom:0}.meeting-room-contain-left .meeting-control-bar .bar-group[data-v-7ca14f9a]{display:flex;align-items:center;flex-wrap:nowrap}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select[data-v-7ca14f9a]{position:relative;background:#1c242f99;border-radius:8px;height:40px;display:flex;flex-wrap:nowrap;align-items:center;padding:0 0 0 13px;cursor:pointer;margin-right:16px}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select-btn[data-v-7ca14f9a]{width:18px;height:18px;margin-right:13px}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select-right[data-v-7ca14f9a]{width:36px;height:20px;position:relative;border-left:1px solid rgba(255,255,255,.4)}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select-right .arrow-icon[data-v-7ca14f9a]{width:12px;height:6px;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) rotate(0);background:var(--32bbc835) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .mic-on[data-v-7ca14f9a]{background:var(--2453fc4e) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .mic-off[data-v-7ca14f9a]{background:var(--8995da6e) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .cam-on[data-v-7ca14f9a]{background:var(--41b5582a) no-repeat center/100% 60%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .cam-off[data-v-7ca14f9a]{background:var(--185ffa12) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .theme-icon[data-v-7ca14f9a]{width:24px;height:24px;background:var(--561b6f97) no-repeat center/100% 100%;margin-right:12px}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .theme-text[data-v-7ca14f9a]{font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;white-space:nowrap;margin-right:12px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn[data-v-7ca14f9a]{cursor:pointer;display:flex;flex-wrap:nowrap;align-items:center;padding:0 11px;height:40px;background:#1c242f99;border-radius:8px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn[data-v-7ca14f9a]:not(:last-child){margin-right:16px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn span[data-v-7ca14f9a]{white-space:nowrap;margin-left:10px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn-icon[data-v-7ca14f9a]{width:22px;height:22px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn-qtm[data-v-7ca14f9a]{width:40px;padding:0;background:var(--8510b28e) no-repeat center/100% 100%;position:relative}.meeting-room-contain-left .meeting-control-bar .exit-btn[data-v-7ca14f9a]{cursor:pointer;width:100px;height:40px;line-height:40px;background:#ef5b56;box-shadow:0 2px 12px #2a68f626;border-radius:8px;text-align:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff}.meeting-room-contain-right[data-v-7ca14f9a]{flex-shrink:0;height:100%}.meeting .participant{background:#000;position:relative;font-family:PingFang SC;border-radius:16px;margin:5px}.meeting .participant .p-video{position:absolute;width:100%;height:100%;left:0;top:0;z-index:10;object-fit:contain;border-radius:16px}.meeting .participant .board{position:absolute;width:100%;height:100%;left:0;top:0;z-index:30;display:flex;align-items:center;justify-content:center;background:url(/assets/img/meeting/board-bg.png) no-repeat center/100% 100%}.meeting .participant .board .board-icon{width:20%;height:auto;aspect-ratio:1/1;background:url(/assets/img/index/tx.png) no-repeat center/100% 100%}.meeting .participant .screen-share-suspension:before{content:"";position:absolute;left:11px;top:10px;width:20px;height:20px;background:url(/assets/img/meeting/share.png) no-repeat center/100% 100%}.meeting .participant .screen-share-suspension{position:absolute;left:24px;top:20px;z-index:50;padding:9px 13px 9px 41px;background:#1c242f99;border-radius:8px;white-space:nowrap;font-weight:500;font-size:16px;color:#fff}.meeting .participant .describe{position:absolute;left:10px;bottom:0;z-index:50;height:40px;display:flex;align-items:center;flex-wrap:nowrap;padding:0 10px;background:#1c242f99;border-radius:8px}.meeting .participant .describe-left{display:flex;align-items:center;flex-wrap:nowrap;padding-right:10px;border-right:1px solid rgba(255,255,255,.4)}.meeting .participant .describe-left .avatar{width:20px;height:20px;margin-right:10px;background:url(/assets/img/meeting/des-ava.png) no-repeat center/100% 100%}.meeting .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:16px;color:#fff}.meeting .participant .describe .tools{padding-left:10px;display:flex;align-items:center;flex-wrap:nowrap}.meeting .participant .describe .tools .microphone{width:18px;height:18px;cursor:pointer}.meeting .participant .describe .tools .microphone-active{background:url(/assets/img/meeting/mic-on-small.png) no-repeat center/100% 100%}.meeting .participant .describe .tools .microphone-inactive{background:url(/assets/img/meeting/mic-off-small.png) no-repeat center/100% 100%}.meeting .participant .signal-icon{position:absolute;top:20px;left:24px;z-index:50;width:40px;height:40px;visibility:hidden}.meeting .participant .signal-icon-good{background:url(/assets/img/meeting/signal_good.png) no-repeat center/100% 100%}.meeting .participant .signal-icon-poor{background:url(/assets/img/meeting/signal_poor.png) no-repeat center/100% 100%}.meeting .participant .more-icon{visibility:hidden;cursor:pointer;position:absolute;top:20px;right:24px;z-index:50;width:40px;height:40px;background:url(/assets/img/meeting/more_icon.png) no-repeat center/100% 100%}.grid1{display:flex;justify-content:center;align-items:center}.grid1 .participant{width:100%;height:98%}.grid1 .participant .p-video{object-fit:cover!important}.grid1 .describe{transform:scale(1.3)}.grid2{display:flex;justify-content:center;align-items:center;flex-wrap:nowrap}.grid2 .participant{width:calc(50% - 10px);height:auto;aspect-ratio:16/9}.grid2 .describe{transform:scale(1.1)}.grid3{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid3 .participant{width:calc(50% - 10px);height:auto;max-height:calc(50% - 10px);aspect-ratio:16/9}.grid3 .describe{transform:scale(1.1)}.grid4{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid4 .participant{width:calc(33.33% - 10px);height:auto;aspect-ratio:16/9}.grid4 .describe{transform:scale(.9)}.grid5{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid5 .participant{width:calc(33.33% - 10px);height:auto;max-height:calc(33.33% - 10px);aspect-ratio:16/9}.grid5 .describe{transform:scale(.9)}.grid6{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid6 .participant{width:calc(25% - 10px);height:auto;max-height:calc(33.33% - 10px);aspect-ratio:16/9}.grid6 .describe{transform:scale(.75)}.grid7{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid7 .participant{width:calc(25% - 10px);height:auto;max-height:calc(25% - 10px);aspect-ratio:16/9}.grid7 .describe{transform:scale(.75)}.grid8{display:flex;flex-wrap:wrap;justify-content:center}.grid8 .participant{width:calc(25% - 10px);height:auto;aspect-ratio:16/9}.rightSide{display:flex;align-items:flex-start;flex-wrap:nowrap}.rightSide .layout-leftside{flex-shrink:0;display:flex;align-items:center;width:77.1%;height:100%;padding-right:5px}.rightSide .layout-leftside .participant{width:100%;height:auto;aspect-ratio:16/9;max-height:100%}.rightSide .layout-rightside{flex-shrink:0;width:22.9%;height:100%;overflow:auto;padding:10px 0 0}.rightSide .layout-rightside::-webkit-scrollbar{display:none}.rightSide .layout-rightside .participant{width:100%;height:auto;aspect-ratio:16/9;margin:5px 0}.rightSide .layout-rightside .participant .describe{left:2px;bottom:2px}.point-turn{display:flex;flex-direction:column;justify-content:center;align-items:center}.point-turn-top{width:100%;height:25%;display:flex;align-items:center;justify-content:flex-start;flex-wrap:nowrap}.point-turn-top .participant{flex-shrink:0;width:calc(20% - 10px);height:calc(100% - 10px)}.point-turn-center{width:100%;height:50%;display:flex;align-items:center;flex-wrap:nowrap}.point-turn-center .participant{flex-shrink:0;width:calc(50% - 10px);height:calc(100% - 10px)}.point-turn-bottom{width:100%;height:25%;display:flex;justify-content:flex-start;align-items:center;flex-wrap:nowrap}.point-turn-bottom .participant{flex-shrink:0;width:calc(20% - 10px);height:calc(100% - 10px)}.point-turn-other{display:none}:root{--hx-font-path: "/assets/font/PingFang-Medium.ttf";--hx-image-path: "/assets"}*{box-sizing:border-box}body{width:100%;padding:0;margin:0}ul{padding:0;margin:0}li{margin:0;padding:0;list-style:none}a:focus,a:active,button:active,div:focus,span:focus{outline:none}a,a:focus,a:hover{cursor:pointer;color:inherit;text-decoration:none}::-webkit-scrollbar{width:2px;height:2px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}@font-face{font-family:PingFang SC;src:url(var(--hx-font-path))}:export{fontPath:var(--hx-font-path);imagePath:var(--hx-image-path)}
|
1
|
+
.live-call-board[data-v-187ab67a]{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);z-index:2000;width:270px;background:#000;box-shadow:0 0 8px #00000040;border-radius:0;padding:0 12px 12px;font-family:PingFang SC;font-weight:500;font-size:14px;color:#fff}.live-call-board-title[data-v-187ab67a]{width:100%;height:40px;display:flex;align-items:center;justify-content:space-between;background:#212222b3;margin-bottom:12px}.live-call-board-title .title-close-icon[data-v-187ab67a]{width:14px;height:14px;cursor:pointer}.live-call-board-list[data-v-187ab67a]{width:100%;margin-top:12px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 12px;margin-bottom:10px}.live-call-board-list-item[data-v-187ab67a]{cursor:pointer;height:36px;line-height:36px;text-align:center;font-weight:600;font-size:24px;background:#1c242f99;border-radius:6px}.live-call-board-foot[data-v-187ab67a]{width:100%;display:flex;align-items:center;justify-content:space-between}.live-call-board-foot-btn[data-v-187ab67a]{width:74px;height:36px;display:flex;align-items:center;justify-content:center;background:#1c242f99;border-radius:6px}.live-call-board-foot-btn .btn-icon[data-v-187ab67a]{width:22px;height:22px;cursor:pointer}.live-call-board-foot .voice-btn .btn-icon[data-v-187ab67a]{background:url(/assets/img/point/voice_icon.png) no-repeat center/100% 100%}.live-call-board-foot .video-btn .btn-icon[data-v-187ab67a]{background:url(/assets/img/point/video_icon.png) no-repeat center/100% 100%}.live-call-board-foot .mini-btn .btn-icon[data-v-187ab67a]{background:url(/assets/img/point/mini_icon.png) no-repeat center/100% 100%}.live-call-board .del-icon[data-v-187ab67a]{width:20px;height:20px;cursor:pointer}.live-call-board[data-v-187ab67a] .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.live-call-board[data-v-187ab67a] .el-input__wrapper .el-input__inner{color:#fff;height:36px;line-height:36px;box-shadow:none;border:none}.receive-board[data-v-380eda98]{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);z-index:2000;width:330px;background:#000;box-shadow:0 0 8px #00000040;border-radius:0;padding:0 12px;font-family:PingFang SC;font-weight:500;font-size:14px;color:#fff}.receive-board-title[data-v-380eda98]{width:100%;height:40px;display:flex;align-items:center;justify-content:space-between;background:#212222b3}.receive-board-title .title-close-icon[data-v-380eda98]{width:14px;height:14px;cursor:pointer}.receive-board-msg[data-v-380eda98]{width:100%;height:108px;display:flex;align-items:center;justify-content:center}.receive-board-msg .receive-type-icon[data-v-380eda98]{width:22px;height:22px;margin-right:5px}.receive-board-msg span[data-v-380eda98]{line-height:22px;font-size:16px}.receive-board-foot[data-v-380eda98]{width:100%;display:flex;align-items:center;justify-content:center;margin-bottom:26px}.receive-board-foot-btn[data-v-380eda98]{padding:0 30px;height:36px;display:flex;align-items:center;border-radius:6px;cursor:pointer}.receive-board-foot-btn .btn-icon[data-v-380eda98]{width:20px;height:20px;margin-right:10px}.receive-board-foot-btn[data-v-380eda98]:not(:last-child){margin-right:12px}.receive-board-foot .accept-btn[data-v-380eda98]{background:#019a22;color:#fff}.receive-board-foot .refuse-btn[data-v-380eda98]{border:1px solid #F64238;color:#f64238}.point-meeting[data-v-b9eaa40a]{width:564px;height:492px;position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:2000;background:#000;font-family:PingFang SC;font-weight:400;font-size:14px;color:#fff;overflow:hidden;transform:translate(0)}.point-meeting-top[data-v-b9eaa40a]{background:#212222b3;width:100%;display:flex;align-items:center;height:36px;justify-content:space-between;padding:0 12px}.point-meeting-top .top-group[data-v-b9eaa40a]{display:flex;align-items:center}.point-meeting-top .top-group .duration-icon[data-v-b9eaa40a]{width:14px;height:14px;background:url(/assets/img/point/duration_icon.png) no-repeat center/100% 100%;margin-right:4px}.point-meeting-top .top-group span[data-v-b9eaa40a]{white-space:nowrap}.point-meeting-top .top-group .full-screen-btn[data-v-b9eaa40a]{cursor:pointer;width:16px;height:16px;background:url(/assets/img/point/full_screen_icon.png) no-repeat center/100% 100%;margin-right:12px}.point-meeting-top .top-group .close-btn[data-v-b9eaa40a]{cursor:pointer;width:20px;height:20px;background:url(/assets/img/point/close_icon.png) no-repeat center/100% 100%}.point-meeting-wrapper[data-v-b9eaa40a]{width:100%;height:calc(100% - 36px)}.point-meeting-foot[data-v-b9eaa40a]{position:absolute;bottom:-44px;left:0;width:100%;height:44px;display:flex;align-items:center;justify-content:space-around;background:#212222b3;z-index:200;transition:bottom .2s}.point-meeting-foot-show[data-v-b9eaa40a]{bottom:0}.point-meeting-foot-btn[data-v-b9eaa40a]{display:flex;flex-direction:column;align-items:center;cursor:pointer}.point-meeting-foot-btn .icon[data-v-b9eaa40a]{width:18px;height:18px;margin-bottom:2px}.point-meeting-foot-btn .title[data-v-b9eaa40a]{font-size:10px;white-space:nowrap}.point-meeting-foot .mic-on .icon[data-v-b9eaa40a]{background:url(/assets/img/point/mic-on.png) no-repeat center/100% 100%}.point-meeting-foot .mic-off .icon[data-v-b9eaa40a]{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.point-meeting-foot .cam-on .icon[data-v-b9eaa40a]{background:url(/assets/img/point/cam-on.png) no-repeat center/100% 100%}.point-meeting-foot .cam-off .icon[data-v-b9eaa40a]{background:url(/assets/img/point/cam-off.png) no-repeat center/100% 100%}.point-meeting-foot .speaker-on .icon[data-v-b9eaa40a]{background:url(/assets/img/point/speaker-on.png) no-repeat center/100% 100%}.point-meeting-foot .speaker-off .icon[data-v-b9eaa40a]{background:url(/assets/img/point/speaker-off.png) no-repeat center/100% 100%}.point-meeting-foot .screen-share .icon[data-v-b9eaa40a]{background:url(/assets/img/point/share_icon.png) no-repeat center/100% 100%}.point-meeting-foot .preview .icon[data-v-b9eaa40a]{background:url(/assets/img/point/preview_icon.png) no-repeat center/100% 100%}.point-meeting-foot .cancel .icon[data-v-b9eaa40a]{width:22px;height:22px;background:url(/assets/img/point/cancel_icon.png) no-repeat center/100% 100%}.meeting-contain{width:100%;height:100%;position:relative;background:#000}.meeting-contain .waiting-mask-video{width:100%;height:100%;left:0;top:0;position:absolute;z-index:60;background:#000;display:flex;align-items:center;justify-content:center;font-weight:400;font-size:16px}.meeting-contain-audio{display:flex;align-items:center;justify-content:center}.meeting-contain-audio .participant{width:140px;display:flex;flex-direction:column;align-items:center}.meeting-contain-audio .participant-icon{width:45%;height:auto;aspect-ratio:1/1;border-radius:50%;margin-bottom:10px;background:url(/assets/img/point/tx.png) no-repeat center/100% 100%}.meeting-contain-audio .participant-title{display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-audio .participant-title-text{white-space:nowrap;margin-right:2px;font-weight:400;font-size:14px}.meeting-contain-audio .participant-title .microphone{width:16px;height:16px;cursor:pointer}.meeting-contain-audio .participant-title .microphone-active{background:url(/assets/img/point/mic-mini-on.png) no-repeat center/100% 100%}.meeting-contain-audio .participant-title .microphone-inactive{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.meeting-contain-video .layout-blur{width:26.6%;height:auto;aspect-ratio:16/9;position:absolute;z-index:100;top:.8%;right:.7%}.meeting-contain-video .layout-blur .participant .describe{height:24%;left:1%;bottom:2%}.meeting-contain-video .layout-blur .participant .describe-left .avatar{width:auto;height:75%;aspect-ratio:1/1}.meeting-contain-video .layout-blur .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:12px;color:#fff}.meeting-contain-video .layout-blur .participant .describe .tools .microphone{width:auto;height:60%;aspect-ratio:1/1}.meeting-contain-video .layout-normal{width:100%;height:100%;position:absolute;z-index:50;left:0;top:0}.meeting-contain-video .layout-normal .participant .describe{height:4.3%;left:.4%;bottom:.4%}.meeting-contain-video .layout-normal .participant .describe-left .avatar{width:auto;height:75%;aspect-ratio:1/1}.meeting-contain-video .layout-normal .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:12px;color:#fff}.meeting-contain-video .layout-normal .participant .describe .tools .microphone{width:auto;height:60%;aspect-ratio:1/1}.meeting-contain-video .participant{width:100%;height:100%;position:relative;border-radius:6px;background:#000}.meeting-contain-video .participant .p-video{position:absolute;width:100%;height:100%;left:0;top:0;z-index:10;object-fit:contain;border-radius:6px}.meeting-contain-video .participant .describe{position:absolute;z-index:50;display:flex;align-items:center;flex-wrap:nowrap;padding:0 6px;background:#0000004d;border-radius:6px}.meeting-contain-video .participant .describe-left{height:100%;display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-video .participant .describe-left .avatar{margin-right:10px;background:url(/assets/img/point/avatar_icon.png) no-repeat center/100% 100%}.meeting-contain-video .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:12px;color:#fff}.meeting-contain-video .participant .describe .tools{height:100%;padding-left:10px;display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-video .participant .describe .tools .microphone{cursor:pointer}.meeting-contain-video .participant .describe .tools .microphone-active{background:url(/assets/img/point/mic-mini-on.png) no-repeat center/100% 100%}.meeting-contain-video .participant .describe .tools .microphone-inactive{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.meeting-contain-video .participant .board{position:absolute;width:100%;height:100%;left:0;top:0;z-index:30;display:flex;flex-direction:column;align-items:center;justify-content:center}.meeting-contain-video .participant .board-icon{width:25%;height:auto;aspect-ratio:1/1;border-radius:50%;margin-bottom:10px;background:url(/assets/img/point/tx.png) no-repeat center/100% 100%}.meeting-contain-video .participant .board-title{display:flex;align-items:center;flex-wrap:nowrap}.meeting-contain-video .participant .board-title-text{white-space:nowrap;margin-right:2px;font-weight:400;font-size:14px}.meeting-contain-video .participant .board-title .microphone{width:16px;height:16px;cursor:pointer}.meeting-contain-video .participant .board-title .microphone-active{background:url(/assets/img/point/mic-mini-on.png) no-repeat center/100% 100%}.meeting-contain-video .participant .board-title .microphone-inactive{background:url(/assets/img/point/mic-off.png) no-repeat center/100% 100%}.telephone-invite[data-v-aa1de33f] .el-dialog{width:460px;height:325px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFangSC}.telephone-invite[data-v-aa1de33f] .el-dialog .el-dialog__header{padding:10px!important}.telephone-invite[data-v-aa1de33f] .el-dialog .el-dialog__body{padding:0 20px!important}[data-v-aa1de33f] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-aa1de33f] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-aa1de33f] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-aa1de33f] .el-input{width:100%}[data-v-aa1de33f] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-aa1de33f] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-aa1de33f] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-aa1de33f] .el-form-item__label-wrap{align-items:center}.telephoneInvit .CustomHeader[data-v-aa1de33f]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-aa1de33f]{width:25px;height:25px;background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-aa1de33f]{margin-top:20px}.isokmul[data-v-aa1de33f]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-aa1de33f]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-aa1de33f]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}[data-v-c23caf5b] .el-dialog{width:460px;margin:25vh auto 50px!important;height:325px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFangSC-Medium}[data-v-c23caf5b] .el-dialog .el-dialog__header{padding:10px}[data-v-c23caf5b] .el-dialog .el-dialog__body{padding:0 20px}[data-v-c23caf5b] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-c23caf5b] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-c23caf5b] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-c23caf5b] .el-input{width:100%}[data-v-c23caf5b] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-c23caf5b] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-c23caf5b] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-c23caf5b] .el-form-item__label-wrap{align-items:center}[data-v-c23caf5b] .el-input-number{width:100%!important}[data-v-c23caf5b] .el-input-number .el-input__inner{text-align:left}[data-v-c23caf5b] .el-input-number .el-input-number__increase,[data-v-c23caf5b] .el-input-number .el-input-number__decrease{background:#1c242f99;border:none;color:#fff}.telephoneInvit .CustomHeader[data-v-c23caf5b]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-c23caf5b]{width:25px;height:25px;background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-c23caf5b]{margin-top:20px}.isokmul[data-v-c23caf5b]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-c23caf5b]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-c23caf5b]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}[data-v-1174fbdd] .el-dialog{width:460px;margin:25vh auto 50px!important;height:325px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFang SC}[data-v-1174fbdd] .el-dialog .el-dialog__header{padding:10px}[data-v-1174fbdd] .el-dialog .el-dialog__body{padding:0 20px}[data-v-1174fbdd] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-1174fbdd] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-1174fbdd] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-1174fbdd] .el-input{width:100%}[data-v-1174fbdd] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-1174fbdd] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-1174fbdd] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-1174fbdd] .el-form-item__label-wrap{align-items:center}[data-v-1174fbdd] .el-input-number{width:100%!important}[data-v-1174fbdd] .el-input-number .el-input__inner{text-align:left}[data-v-1174fbdd] .el-input-number .el-input-number__increase,[data-v-1174fbdd] .el-input-number .el-input-number__decrease{background:#1c242f99;border:none;color:#fff}.telephoneInvit .CustomHeader[data-v-1174fbdd]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-1174fbdd]{width:25px;height:25px;background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-1174fbdd]{margin-top:20px}.isokmul[data-v-1174fbdd]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-1174fbdd]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-1174fbdd]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.addressbox[data-v-76ca3ac8] .el-dialog{width:878px;height:549px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:0}.addressbox[data-v-76ca3ac8] .el-dialog .el-dialog__header{padding:0}.addressbox[data-v-76ca3ac8] .el-dialog .el-dialog__body{padding:0 20px}.addresslogClass[data-v-76ca3ac8]{font-family:PingFang SC}.addresslogClass .CustomHeader[data-v-76ca3ac8]{padding:0 20px;height:70px;display:flex;align-items:center;justify-content:space-between}.addresslogClass .CustomHeader .tabs[data-v-76ca3ac8]{display:flex;font-size:16px;color:#fff}.addresslogClass .CustomHeader .tabs .tabItem[data-v-76ca3ac8]{margin-right:15px;line-height:22px;cursor:pointer}.addresslogClass .CustomHeader .tabs .activeBorder[data-v-76ca3ac8]{position:relative}.addresslogClass .CustomHeader .tabs .activeBorder[data-v-76ca3ac8]:after{content:"";display:block;position:absolute;left:4px;bottom:-12px;width:60px;height:3px;background:#1f63fb;border-radius:8px 8px 0 0}.addresslogClass .CustomHeader .close[data-v-76ca3ac8]{width:25px;height:25px;cursor:pointer;background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%}.addresslogClass .fgx[data-v-76ca3ac8]{margin:10px 0 20px;height:2px;background:#1c242f99}.addresslogClass .checkBox[data-v-76ca3ac8]{display:flex;justify-content:space-between}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8]{padding:14px;width:414px;height:350px;border-radius:6px;border:2px solid rgba(67,85,110,.4);overflow-y:auto}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8]::-webkit-scrollbar{display:none}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-input{width:100%;margin-bottom:10px}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-input .el-input__wrapper .el-input__inner{height:36px;line-height:36px;border:none;box-shadow:none;font-size:14px!important;color:#fff!important;font-family:PingFang SC;font-weight:400}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-input .el-input__wrapper .el-input__icon{display:inline-block;width:20px;height:20px;background:url(/assets/img/multi/search.png) no-repeat center/100% 100%}.addresslogClass .checkBox .userLeft .tree-content[data-v-76ca3ac8]{width:100%;height:calc(100% - 46px);overflow:auto}.addresslogClass .checkBox .userLeft .tree-content[data-v-76ca3ac8]::-webkit-scrollbar{width:2px;height:2px}.addresslogClass .checkBox .userLeft .tree-content[data-v-76ca3ac8]::-webkit-scrollbar-track{background:transparent}.addresslogClass .checkBox .userLeft .tree-content[data-v-76ca3ac8]::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node[data-v-76ca3ac8]{font-weight:400;font-size:16px;color:#fff;width:100%;padding-left:10px;text-align:left}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable[data-v-76ca3ac8]{width:100%;display:flex;align-items:center;justify-content:space-between;padding-right:35px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .custom-tree-node-label[data-v-76ca3ac8]{max-width:100px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .node-options[data-v-76ca3ac8]{display:flex;align-items:center;justify-content:center;flex-wrap:nowrap}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .node-options .node-option[data-v-76ca3ac8]{font-family:PingFang SC;font-weight:500;font-size:14px;color:#5fa7fd;cursor:pointer}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-editable .node-options .node-option[data-v-76ca3ac8]:not(:last-child){margin-right:10px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-label[data-v-76ca3ac8]{display:inline-block;width:fit-content;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-num[data-v-76ca3ac8]{font-size:12px;color:#76b2ff}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user[data-v-76ca3ac8]{display:flex;justify-content:flex-start;align-items:center}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .custom-tree-node-icon[data-v-76ca3ac8]{flex-shrink:0;display:inline-block;width:20px;height:20px;margin-right:10px;background:url(/assets/img/multi/user.png) no-repeat center/100% 100%}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .custom-tree-node-label[data-v-76ca3ac8]{max-width:200px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .custom-tree-node-status[data-v-76ca3ac8]{flex-shrink:0;display:inline-block;font-weight:400;font-size:10px;height:16px;line-height:16px;text-align:center;width:36px;border-radius:10px;margin-left:10px}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .status-online[data-v-76ca3ac8]{background:#1f63fb;color:#fff}.addresslogClass .checkBox .userLeft .tree-content .custom-tree-node-user .status-offline[data-v-76ca3ac8]{background:#4b525b;color:#fff6}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree-node__content:hover{background-color:transparent}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree-node:focus>.el-tree-node__content{background-color:transparent}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree-node .is-expanded .is-focusable{margin-bottom:0}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree{background:transparent!important}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content{position:relative;height:36px}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .is-leaf{opacity:0}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content:not(:last-child){margin-bottom:0}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-tree-node__label{font-weight:400;font-size:16px;color:#fff}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-checkbox{position:absolute;margin:0;font-size:17px;top:6px;right:12px}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-checkbox .el-checkbox__inner{border:1px solid #cbe5ff;background:transparent}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-checkbox .is-checked .el-checkbox__inner{background-color:#409eff!important}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-tree-node__expand-icon{display:inline-block;width:2px!important;height:2px!important;background:url(/assets/img/multi/tree_expand.png) no-repeat center/100% 100%;margin-bottom:6px}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-tree-node__expand-icon:before{content:""}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .el-tree-node__expand-icon svg{display:none}.addresslogClass .checkBox .userLeft[data-v-76ca3ac8] .el-tree .el-tree-node__content .expanded{transform:rotate(0)!important;background:url(/assets/img/multi/tree_slide.png) no-repeat center/100% 100%!important}.addresslogClass .checkBox .userRight[data-v-76ca3ac8]{padding:14px;width:414px;height:350px;border-radius:6px;border:2px solid rgba(67,85,110,.4);overflow-y:auto}.addresslogClass .checkBox .userRight .checkUse[data-v-76ca3ac8]{display:flex;align-items:center}.addresslogClass .checkBox .userRight .checkUse div[data-v-76ca3ac8]{margin-right:15px}.addresslogClass .checkBox .userRight .checkUse .titl[data-v-76ca3ac8]{font-size:16px;color:#fff}.addresslogClass .checkBox .userRight .checkUse .count[data-v-76ca3ac8]{width:30px;height:18px;background:#1f63fb;border-radius:9px;font-size:16px;color:#fff;text-align:center;line-height:18px}.addresslogClass .checkBox .userRight .checkUse .adds[data-v-76ca3ac8]{cursor:pointer}.addresslogClass .checkBox .checkutl[data-v-76ca3ac8]{height:calc(100% - 22px);overflow:auto}.addresslogClass .checkBox .checkutl[data-v-76ca3ac8]::-webkit-scrollbar{width:2px;height:2px}.addresslogClass .checkBox .checkutl[data-v-76ca3ac8]::-webkit-scrollbar-track{background:transparent}.addresslogClass .checkBox .checkutl[data-v-76ca3ac8]::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}.addresslogClass .checkBox .checkutl .userFlex[data-v-76ca3ac8]{margin-top:5px;display:flex;align-items:center;justify-content:space-between;padding:5px}.addresslogClass .checkBox .checkutl .userFlex .label[data-v-76ca3ac8]{font-size:16px;color:#fff}.addresslogClass .checkBox .checkutl .userFlex .label img[data-v-76ca3ac8]{width:20px;height:20px;vertical-align:middle;margin-right:5px}.addresslogClass .checkBox .checkutl .userFlex .close[data-v-76ca3ac8]{cursor:pointer;width:16px;height:16px;background:url(/assets/img/multi/item_close.png) no-repeat center/100% 100%}.addresslogClass .footersFull[data-v-76ca3ac8]{margin-top:30px;display:flex;justify-content:space-between;align-items:center;font-family:PingFangSC-Medium;font-size:16px;color:#fff}.addresslogClass .footersFull .addfz[data-v-76ca3ac8]{display:flex;align-items:center;justify-content:center;width:120px;height:40px;background:#1c242f99;border-radius:8px;cursor:pointer}.addresslogClass .footersFull .addfz img[data-v-76ca3ac8]{margin-right:5px}.addresslogClass .footersFull .isokmul[data-v-76ca3ac8]{display:flex}.addresslogClass .footersFull .isokmul div[data-v-76ca3ac8]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.addresslogClass .footersFull .isokmul div[data-v-76ca3ac8]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.more-option[data-v-a2b8a447]{width:140px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #313d51;padding:16px 15px;position:absolute;z-index:1000}.more-option-item[data-v-a2b8a447]{width:100%;height:40px;line-height:40px;text-align:center;white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;cursor:pointer}.more-option-item[data-v-a2b8a447]:hover{background:#1f63fb;border-radius:8px}.more-option-item[data-v-a2b8a447]:not(:last-child){margin-bottom:8px}.more-option-item-danger[data-v-a2b8a447]{color:#ef5b56}.mask[data-v-9260c48f]{width:100%;height:100%;position:absolute;left:0;top:0;z-index:1000;font-family:PingFang SC;font-weight:500;font-size:18px;color:#fff;background:#00000080}.mask .dialog[data-v-9260c48f]{position:absolute;z-index:1005;left:50%;top:50%;transform:translate(-50%,-50%);background:#252e3d;border-radius:16px;border:2px solid #798ba4}.mask .dialog-head[data-v-9260c48f]{width:calc(100% - 40px);height:50px;display:flex;align-items:center;justify-content:space-between;margin:0 20px;border-bottom:2px solid rgba(28,36,47,.6)}.mask .dialog-head-group[data-v-9260c48f]{display:flex;flex-wrap:nowrap;align-items:center}.mask .dialog-head-group .dialog-logo[data-v-9260c48f]{width:30px;height:30px;margin-right:10px}.mask .dialog-head-group .close-icon[data-v-9260c48f]{width:17px;height:17px;cursor:pointer;background:url(/assets/img/meeting/close.png) no-repeat center/100% 100%}.mask .dialog-contain[data-v-9260c48f]{padding:20px;display:flex;justify-content:space-between}.mask .dialog-contain .box-form[data-v-9260c48f]{width:100%}.mask .dialog-contain .box-form .foot-btns[data-v-9260c48f]{width:100%;display:flex;align-items:center;justify-content:center}.mask .dialog-contain .box-form .foot-btns .btn[data-v-9260c48f]{width:100px;height:40px;line-height:40px;box-shadow:0 2px 12px #2a68f626;border-radius:8px;text-align:center;font-family:PingFang SC;font-weight:500;font-size:16px;cursor:pointer}.mask .dialog-contain .box-form .foot-btns .btn-cancel[data-v-9260c48f]{border:1px solid #798ba4;color:#798ba4;margin-right:16px}.mask .dialog-contain .box-form .foot-btns .btn-confirm[data-v-9260c48f]{color:#fff;background:#1f63fb}.customForm .yaoq[data-v-9260c48f]{margin-top:28px;margin-bottom:28px;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between}.customForm .yaoq-title[data-v-9260c48f]{font-size:16px;text-align:right;flex-shrink:0;width:100px;white-space:nowrap;padding-right:10px;margin-right:0}.customForm .yaoq .invite-list[data-v-9260c48f]{width:calc(100% - 100px);display:flex;flex-wrap:nowrap;align-items:center}.customForm .yaoq .invite-list-item[data-v-9260c48f]{width:30px;height:30px}.customForm .yaoq .invite-list-item[data-v-9260c48f]:not(:last-child){margin-right:15px}.customForm .yaoq .invite-list-item-user[data-v-9260c48f]{background:url(/assets/img/index/xtx.png) no-repeat center/100% 100%}.customForm .yaoq .invite-list-item-system[data-v-9260c48f]{cursor:pointer;width:40px;height:40px;background:#1c242f99;border-radius:8px;display:flex;align-items:center;justify-content:center}.customForm .yaoq .invite-list-item-system .icon[data-v-9260c48f]{width:18px;height:18px;background:url(/assets/img/index/yq.png) no-repeat center/100% 100%}.customForm .yaoq .invite-list .split[data-v-9260c48f]{font-family:PingFang SC;font-weight:500;font-size:14px;color:#9ca3ac;margin-right:15px}.customForm .yaoq .invite-list .badge[data-v-9260c48f]{margin-right:15px;padding:0 6px;line-height:22px;background:#1f63fb;border-radius:24px;white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:12px;color:#fff}.customForm .time-range[data-v-9260c48f]{display:flex;width:100%;flex-wrap:nowrap;align-items:center}.customForm .time-range[data-v-9260c48f] .el-date-editor{flex-shrink:0;width:90px;height:48px;line-height:48px}.customForm .time-range[data-v-9260c48f] .el-date-editor .el-input__inner{padding:0 2px 0 5px}.customForm .time-range[data-v-9260c48f] .el-date-editor .el-input__prefix{display:none}.customForm .meeting-remind[data-v-9260c48f]{width:100%;display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:nowrap}.customForm .meeting-remind-wrap .meeting-remind-list[data-v-9260c48f]{display:flex;align-items:center;height:48px;flex-wrap:nowrap}.customForm .meeting-remind-wrap .meeting-remind-list .del-btn[data-v-9260c48f]{font-family:PingFang SC;font-weight:500;font-size:14px;color:#5fa7fd;cursor:pointer;padding:0 8px}.customForm .meeting-remind-wrap .meeting-remind-list[data-v-9260c48f]:not(:last-of-type){margin-bottom:10px}.customForm .meeting-remind .btn-add[data-v-9260c48f]{background:#1c242f99;cursor:pointer;border-radius:8px;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:14px;color:#fff;line-height:48px;padding:0 13px 0 41px;position:relative}.customForm .meeting-remind .btn-add[data-v-9260c48f]:before{content:"";width:20px;height:20px;position:absolute;left:12px;top:15px;background:url(/assets/img/entry/add_icon.png) no-repeat center/100% 100%}.customForm .meeting-setter[data-v-9260c48f]{width:100%;display:flex;flex-direction:column;align-items:flex-start;padding-top:8px}.customForm .meeting-setter[data-v-9260c48f] .el-checkbox .el-checkbox__label{font-family:PingFang SC;font-weight:500;font-size:14px;color:#fff;line-height:22px}.customForm .meeting-setter[data-v-9260c48f] .el-checkbox:not(:last-child){margin-bottom:14px}[data-v-9260c48f] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-9260c48f] .el-form-item__label{width:100px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-9260c48f] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-9260c48f] .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;background-color:#1c242f99!important;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-9260c48f] .el-form-item__label-wrap{align-items:center}[data-v-9260c48f] .is-disabled .el-input__wrapper,[data-v-9260c48f] .el-input__wrapper{background:#1c242f99;border-radius:8px;border:none;box-shadow:none}[data-v-9260c48f] .el-select{width:100%;flex-shrink:0}[data-v-9260c48f] .el-select .el-select__wrapper{background:#1c242f99;border-radius:8px;border:none;box-shadow:none;height:48px;line-height:48px;padding:4px 5px 4px 7px}[data-v-9260c48f] .el-select .el-select__wrapper .el-select__prefix{display:none}[data-v-9260c48f] .el-select .el-select__wrapper .el-select__placeholder{color:#fff}[data-v-9260c48f] .el-select .el-select__wrapper .is-transparent{color:#a8abb2!important}.check-dialog[data-v-c12bddcb]{width:174px;padding-bottom:20px;position:absolute;z-index:1000}.check-dialog-inner[data-v-c12bddcb]{width:100%;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:9px 14px}.check-dialog-inner .control-list[data-v-c12bddcb]{width:100%;font-family:PingFang SC;font-weight:500;color:#fff}.check-dialog-inner .control-list-title[data-v-c12bddcb]{text-align:left;font-size:16px;line-height:22px;margin-bottom:19px}.check-dialog-inner .control-list-item[data-v-c12bddcb]{width:100%;height:40px;cursor:pointer;font-size:16px;display:flex;align-items:center;flex-wrap:nowrap;justify-content:space-between;padding:0 12px;margin-bottom:10px}.check-dialog-inner .control-list-item-checked[data-v-c12bddcb],.check-dialog-inner .control-list-item[data-v-c12bddcb]:hover{background:#1f63fb;border-radius:8px}.check-dialog-inner .control-list-item-value[data-v-c12bddcb]{width:fit-content;max-width:100px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.check-dialog-inner .control-list-item .check[data-v-c12bddcb]{width:20px;height:20px}.check-dialog-inner .control-list-item .is-checked[data-v-c12bddcb]{background:url(/assets/img/meeting/check-icon.png) no-repeat center/100% 100%}.check-dialog-inner .control-footer[data-v-c12bddcb]{width:100%;padding:10px 0 3px}.check-dialog-inner .control-footer .control-link[data-v-c12bddcb]{width:100%;text-align:left;cursor:pointer;white-space:nowrap;color:#5fa7fd;font-size:16px}.mask[data-v-86006f4b]{width:100%;height:100%;position:absolute;left:0;top:0;z-index:1000;font-family:PingFang SC;font-weight:500;font-size:18px;color:#fff;background:#00000080}.mask .dialog[data-v-86006f4b]{width:750px;height:550px;position:absolute;z-index:1005;left:50%;top:50%;transform:translate(-50%,-50%);background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4}.mask .dialog-head[data-v-86006f4b]{width:100%;height:50px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;border-bottom:2px solid #1c242f}.mask .dialog-head .search-input[data-v-86006f4b]{width:150px}.mask .dialog-head .close-icon[data-v-86006f4b]{width:17px;height:17px;cursor:pointer;background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%}.mask .dialog-contain[data-v-86006f4b]{width:100%;height:calc(100% - 50px);padding:20px}.mask .dialog-contain .video-contain[data-v-86006f4b]{width:100%;height:400px;border-radius:8px;position:relative;display:flex;align-items:center;justify-content:center;margin-bottom:20px}.mask .dialog-contain .video-contain .avatar[data-v-86006f4b]{width:100px;height:100px;border-radius:50%;background:url(/assets/img/index/tx.png) no-repeat center/100% 100%}.mask .dialog-contain .video-contain .mirror-switch[data-v-86006f4b]{cursor:pointer;position:absolute;top:23px;right:17px;background:#1c242f99;border-radius:8px;display:flex;align-items:center;height:40px;padding:0 10px;font-weight:400;font-size:12px;z-index:10}.mask .dialog-contain .video-contain .mirror-switch-icon[data-v-86006f4b]{width:16px;height:14px;margin-right:6px}.mask .dialog-contain .video-contain .video-ele[data-v-86006f4b]{position:absolute;width:100%;height:100%;border-radius:8px;left:0;top:0;object-fit:cover}.mask .dialog-contain .tool-bar[data-v-86006f4b]{width:100%;height:calc(100% - 420px);display:flex;align-items:center;justify-content:space-between}.mask .dialog-contain .tool-bar-group[data-v-86006f4b]{display:flex;align-items:center}.mask .dialog-contain .tool-bar-group .imgsf[data-v-86006f4b]{margin-right:16px;background:#1c242f99;border-radius:8px;padding:10px 12px;display:flex;align-items:center;cursor:pointer;position:relative}.mask .dialog-contain .tool-bar-group .imgsf .xian[data-v-86006f4b]{width:1px;height:20px;background:#fff6;margin:0 8px}.mask .dialog-contain .tool-bar-group .imgsf .img-icon[data-v-86006f4b]{width:18px;height:18px}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-mic-on[data-v-86006f4b]{background:url(/assets/img/meeting/mic-on-small.png) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-mic-off[data-v-86006f4b]{background:url(/assets/img/meeting/mic-off-small.png) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-cam-on[data-v-86006f4b]{height:11px!important;background:url(/assets/img/meeting/camera-on-small.png) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-group .imgsf .img-icon-cam-off[data-v-86006f4b]{height:18px!important;background:url(/assets/img/meeting/camera-off-small.png) no-repeat center/100% 100%}.mask .dialog-contain .tool-bar-btn[data-v-86006f4b]{background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:6px;cursor:pointer;padding:0 18px;line-height:40px;font-size:16px;color:#fff}.mask[data-v-86006f4b] .el-input{width:100%}.mask[data-v-86006f4b] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.mask[data-v-86006f4b] .el-input .el-input__wrapper .el-input__inner{height:36px;line-height:36px;border:none;box-shadow:none;font-size:14px!important;color:#fff!important;font-family:PingFang SC;font-weight:400}.mask[data-v-86006f4b] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}.mask[data-v-86006f4b] .el-input .el-input__wrapper .el-input__icon{display:inline-block;width:20px;height:20px;background:url(/assets/img/multi/search.png) no-repeat center/100% 100%}.live-address-book[data-v-9f994395]{width:1355px;height:822px;background:#252e3d;border-radius:8px;border:2px solid #798ba4;position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:2000;font-family:PingFang SC;font-weight:500;font-size:20px;color:#fff}.live-address-book-head[data-v-9f994395]{height:60px;width:100%;display:flex;align-items:center;justify-content:space-between;padding:0 20px;background:#181f29e6}.live-address-book-head .head-btn-group[data-v-9f994395]{display:flex;align-items:center}.live-address-book-head .head-btn-group .head-btn[data-v-9f994395]{width:25px;height:25px;cursor:pointer}.live-address-book-head .head-btn-group .head-btn[data-v-9f994395]:not(:last-child){margin-right:16px}.live-address-book-head .head-btn-group .head-btn-screen[data-v-9f994395]{background:url(/assets/img/multi/screen_icon.png) no-repeat center/100% 100%}.live-address-book-head .head-btn-group .head-btn-close[data-v-9f994395]{background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%}.live-address-book-content[data-v-9f994395]{width:100%;height:calc(100% - 60px);display:flex;padding:16px 0}.live-address-book-content .content-left-side[data-v-9f994395]{width:336px;height:100%;border-right:1px solid rgba(67,85,110,.4);padding:0 20px}.live-address-book-content .content-left-side .enter-list[data-v-9f994395]{width:100%;height:80px;display:flex;align-items:center;justify-content:space-between;font-size:16px;margin-bottom:20px}.live-address-book-content .content-left-side .enter-list-item[data-v-9f994395]{display:flex;flex-direction:column;align-items:center;cursor:pointer}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon[data-v-9f994395]{width:46px;height:46px;margin-bottom:10px}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon-quick[data-v-9f994395]{background:url(/assets/img/multi/quick_icon.png) no-repeat center/100% 100%}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon-join[data-v-9f994395]{background:url(/assets/img/multi/join_icon.png) no-repeat center/100% 100%}.live-address-book-content .content-left-side .enter-list-item .enter-item-icon-preview[data-v-9f994395]{background:url(/assets/img/multi/preview_icon.png) no-repeat center/100% 100%}.live-address-book-content .content-left-side .enter-list-item .enter-item-title[data-v-9f994395]{line-height:22px;white-space:nowrap}.live-address-book-content .content-left-side .left-item[data-v-9f994395]{width:100%;height:calc(100% - 100px)}.live-address-book-content .content-left-side .left-item-title[data-v-9f994395]{width:100%;font-size:20px;line-height:24px;margin-bottom:16px;text-align:left}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395]{width:100%;height:calc(100% - 40px)}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-9f994395]{width:100%;margin-bottom:20px}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-9f994395] .el-input{width:100%}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-9f994395] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-9f994395] .el-input .el-input__wrapper .el-input__inner{height:36px;line-height:36px;border:none;box-shadow:none;font-size:14px!important;color:#fff!important;font-family:PingFang SC;font-weight:400}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-9f994395] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}.live-address-book-content .content-left-side .left-item-content .search-bar[data-v-9f994395] .el-input .el-input__wrapper .el-input__icon{display:inline-block;width:20px;height:20px;background:url(/assets/img/multi/search.png) no-repeat center/100% 100%}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-9f994395]{width:100%;height:calc(100% - 148px);overflow:auto}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-9f994395]::-webkit-scrollbar{width:2px;height:2px}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-9f994395]::-webkit-scrollbar-track{background:transparent}.live-address-book-content .content-left-side .left-item-content .tree-content[data-v-9f994395]::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node[data-v-9f994395]{font-weight:400;font-size:16px;color:#fff;width:100%;padding-left:10px;text-align:left}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-label[data-v-9f994395]{display:inline-block;width:fit-content;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-num[data-v-9f994395]{font-size:12px;color:#76b2ff}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user[data-v-9f994395]{display:flex;justify-content:flex-start;align-items:center}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-icon[data-v-9f994395]{flex-shrink:0;display:inline-block;width:20px;height:20px;margin-right:10px;background:url(/assets/img/multi/user.png) no-repeat center/100% 100%}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-prefix-icon[data-v-9f994395]{flex-shrink:0;width:14px;height:14px;margin-right:15px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-label[data-v-9f994395]{max-width:200px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .custom-tree-node-status[data-v-9f994395]{flex-shrink:0;display:inline-block;font-weight:400;font-size:10px;height:16px;line-height:16px;text-align:center;width:36px;border-radius:10px;margin-left:10px}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .status-online[data-v-9f994395]{background:#1f63fb;color:#fff}.live-address-book-content .content-left-side .left-item-content .tree-content .custom-tree-node-user .status-offline[data-v-9f994395]{background:#4b525b;color:#fff6}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree-node__content:hover{background-color:transparent}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree-node:focus>.el-tree-node__content{background-color:transparent}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree-node .is-expanded .is-focusable{margin-bottom:10px}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree{background:transparent!important}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content{position:relative;height:36px}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .is-leaf{opacity:0}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content:not(:last-child){margin-bottom:0}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-tree-node__label{font-weight:400;font-size:16px;color:#fff}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-checkbox{position:absolute;margin:0;font-size:17px;top:6px;right:12px}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-checkbox .el-checkbox__inner{border:1px solid #cbe5ff;background:transparent}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-checkbox .is-checked .el-checkbox__inner{background-color:#409eff!important}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-tree-node__expand-icon{display:inline-block;width:2px!important;height:2px!important;background:url(/assets/img/multi/tree_expand.png) no-repeat center/100% 100%;margin-bottom:0}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-tree-node__expand-icon:before{content:""}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .el-tree-node__expand-icon svg{display:none}.live-address-book-content .content-left-side .left-item-content[data-v-9f994395] .el-tree .el-tree-node__content .expanded{transform:rotate(0)!important;background:url(/assets/img/multi/tree_slide.png) no-repeat center/100% 100%!important}.live-address-book-content .content-left-side .left-item-content .chosen[data-v-9f994395]{width:100%;margin-bottom:16px}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title[data-v-9f994395]{width:100%;height:36px;display:flex;align-items:center}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title-label[data-v-9f994395]{font-size:16px;color:#fff;margin-right:10px}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title-num[data-v-9f994395]{line-height:18px;border-radius:9px;padding:0 9px;background:#1f63fb;font-size:12px;margin-right:10px}.live-address-book-content .content-left-side .left-item-content .chosen .chosen-title-icon[data-v-9f994395]{cursor:pointer;width:18px;height:18px;background:url(/assets/img/multi/add_user_icon.png) no-repeat center/100% 100%}.live-address-book-content .content-left-side .left-item-content .options[data-v-9f994395]{width:100%;display:flex;align-items:center;justify-content:space-between}.live-address-book-content .content-left-side .left-item-content .options .option[data-v-9f994395]{width:120px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:16px;border-radius:8px}.live-address-book-content .content-left-side .left-item-content .options .option-icon[data-v-9f994395]{width:20px;height:20px;margin-right:9px}.live-address-book-content .content-left-side .left-item-content .options .option-reset[data-v-9f994395]{box-shadow:0 2px 12px #2a68f626;border:1px solid #798ba4;color:#798ba4}.live-address-book-content .content-left-side .left-item-content .options .option-launch[data-v-9f994395]{color:#fff;background:#1f63fb}.live-address-book-content .content-right-side[data-v-9f994395]{width:calc(100% - 336px);height:100%;padding:0 20px}.live-address-book-content .content-right-side .meeting-entry-right-head[data-v-9f994395]{width:100%;height:70px;display:flex;align-items:center;border-bottom:2px solid #1c242f;font-weight:500;font-size:20px;color:#fff;margin-bottom:30px}.live-address-book-content .content-right-side .meeting-entry-right-head .logo[data-v-9f994395]{width:26px;height:26px;margin-right:10px}.live-address-book-content .content-right-side .meeting-entry-right-content[data-v-9f994395]{width:100%;height:calc(100% - 100px);overflow-y:auto}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list[data-v-9f994395]{width:100%;height:84px;padding:0 24px;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between;background:#1c242f99;border-radius:10px;font-weight:500;color:#fff}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary[data-v-9f994395]{display:flex;align-items:center;margin-bottom:9px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-logo[data-v-9f994395]{width:24px;height:24px;background:url(/assets/img/entry/icon_room.png) no-repeat center/100% 100%;margin-right:10px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-name[data-v-9f994395]{font-size:16px;white-space:nowrap;margin-right:14px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-status[data-v-9f994395]{border-radius:4px;padding:0 5px;line-height:18px;white-space:nowrap;font-size:12px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-status-unstart[data-v-9f994395]{background:#f90}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-primary .preview-meeting-status-start[data-v-9f994395]{background:#1f63fb}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-sub[data-v-9f994395]{display:flex;align-items:center}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-sub .meeting-message-item[data-v-9f994395]{font-size:14px;color:#798ba4;display:flex;align-items:center}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-left-sub .meeting-message-item[data-v-9f994395]:not(:last-child){margin-right:40px}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-right[data-v-9f994395]{display:flex;align-items:center;flex-wrap:nowrap}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-right .enter-btn[data-v-9f994395]{font-size:16px;line-height:36px;padding:0 18px;background:#1f63fb;border-radius:6px;margin-right:16px;cursor:pointer}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list-right .more-btn[data-v-9f994395]{width:24px;height:24px;cursor:pointer;background:url(/assets/img/entry/icon_more.png) no-repeat center/100% 100%}.live-address-book-content .content-right-side .meeting-entry-right-content .preview-meeting-list[data-v-9f994395]:not(:last-child){margin-bottom:16px}.live-address-book-content .content-right-side .meeting-entry-right-content .empty-box[data-v-9f994395]{display:flex;flex-direction:column;align-items:center}.live-address-book-content .content-right-side .meeting-entry-right-content .empty-box .empty-logo[data-v-9f994395]{width:384px;height:223px;background:url(/assets/img/entry/empty_logo.png) no-repeat center/100% 100%;margin-bottom:10px}.live-address-book-content .content-right-side .meeting-entry-right-content .empty-box .empty-text[data-v-9f994395]{background:#1c242f99;border-radius:10px;line-height:42px;padding:0 24px;white-space:nowrap;font-weight:500;font-size:16px;color:#fff}.live-address-book-content .content-right-side .meeting-entry-right-content-empty[data-v-9f994395]{padding-top:80px;display:flex;justify-content:center}.live-address-book-content .content-right-side .meeting-entry-right-content[data-v-9f994395]::-webkit-scrollbar{display:none}.dialog[data-v-445aafba]{position:absolute;z-index:100;padding-top:26px;width:300px;height:auto}.dialog-inner[data-v-445aafba]{background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;width:100%;min-height:220px;height:auto;padding:27px 25px 12px}.dialog-inner-foot[data-v-445aafba]{width:100%;display:flex;justify-content:center;align-items:center}.dialog-inner-foot-btn[data-v-445aafba]{background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;line-height:30px;padding:0 34px;cursor:pointer}.dialog .mark-list[data-v-445aafba]{width:100%;display:flex;align-items:flex-start;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:16px}.dialog .mark-list[data-v-445aafba]:not(:last-child){margin-bottom:15px}.dialog .mark-list-title[data-v-445aafba]{width:100px;line-height:22px;color:#798ba4;text-align:left}.dialog .mark-list-value[data-v-445aafba]{color:#fff;width:calc(100% - 100px);word-break:break-all;line-height:22px}.dialog .mark-list-value .mark-icon[data-v-445aafba]{display:inline-block;width:22px;margin-left:14px;cursor:pointer;padding-top:4px}.dialog .mark-list-value .mark-icon img[data-v-445aafba]{width:18px;height:18px}.dialog[data-v-c7fcde8d]{position:absolute;z-index:100;padding-top:31px;width:236px}.dialog-inner[data-v-c7fcde8d]{background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;width:100%;min-height:172px;height:auto;padding:27px 25px}.dialog-inner .mark-list[data-v-c7fcde8d]{width:100%;display:flex;align-items:flex-start;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:16px;margin-bottom:15px}.dialog-inner .mark-list-title[data-v-c7fcde8d]{width:100px;line-height:22px;color:#798ba4;text-align:left}.dialog-inner .mark-list-value[data-v-c7fcde8d]{color:#fff;width:calc(100% - 100px);white-space:wrap;line-height:22px}.dialog-inner .mark-link[data-v-c7fcde8d]{white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:16px;color:#5fa7fd;cursor:pointer}.dialog[data-v-75b60137]{position:absolute;z-index:100;padding-top:31px;width:175px;height:auto}.dialog-inner[data-v-75b60137]{background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;width:100%;height:92px;display:flex;align-items:center;justify-content:space-between;padding:0 16px}.dialog-inner .layout-list[data-v-75b60137]{display:flex;flex-direction:column;align-items:center}.dialog-inner .layout-list .icon[data-v-75b60137]{width:50px;height:26px;margin-bottom:6px}.dialog-inner .layout-list .title[data-v-75b60137]{font-family:PingFang SC;font-weight:500;font-size:16px;color:#798ba4;line-height:22px;white-space:nowrap}.dialog-inner .layout-list-grid .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout1.png) no-repeat center/100% 100%}.dialog-inner .layout-list-grid:hover .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active1.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-grid:hover .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-grid-active .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active1.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-grid-active .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-rightSide .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout2.png) no-repeat center/100% 100%}.dialog-inner .layout-list-rightSide:hover .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active2.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-rightSide:hover .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-rightSide-active .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active2.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-rightSide-active .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-ring .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout3.png) no-repeat center/100% 100%}.dialog-inner .layout-list-ring:hover .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active3.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-ring:hover .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-ring-active .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active3.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-ring-active .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-downLSide .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout4.png) no-repeat center/100% 100%}.dialog-inner .layout-list-downLSide:hover .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active4.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-downLSide:hover .title[data-v-75b60137]{color:#5fa7fd}.dialog-inner .layout-list-downLSide-active .icon[data-v-75b60137]{background:url(/assets/img/meeting/layout-active4.png) no-repeat center/100% 100%!important}.dialog-inner .layout-list-downLSide-active .title[data-v-75b60137]{color:#5fa7fd}.member-manage[data-v-381cc0c1]{width:440px;height:100%;padding:0 20px;background:#252e3d;box-shadow:0 0 8px #00000040;border:2px solid #798ba4;position:relative}.member-manage-head[data-v-381cc0c1]{width:100%;height:70px;border-bottom:2px solid #1c242f;display:flex;align-items:center;justify-content:space-between}.member-manage-head-left[data-v-381cc0c1]{display:flex;align-items:center;flex-wrap:nowrap}.member-manage-head-left .logo[data-v-381cc0c1]{width:25px;height:25px;background:url(/assets/img/meeting/member-large.png) no-repeat center/100% 100%;margin-right:14px}.member-manage-head-left .title[data-v-381cc0c1]{font-family:PingFang SC;font-weight:500;font-size:20px;color:#fff;white-space:nowrap;margin-right:10px}.member-manage-head-left .num[data-v-381cc0c1]{line-height:18px;height:18px;padding:0 11px;background:#1f63fb;border-radius:9px;font-family:PingFang SC;font-weight:500;font-size:12px;color:#fff}.member-manage-head .close[data-v-381cc0c1]{cursor:pointer;width:25px;height:25px;background:url(/assets/img/meeting/close.png) no-repeat center/100% 100%}.member-manage-contain[data-v-381cc0c1]{width:100%;height:calc(100% - 70px)}.member-manage-contain .tab-content[data-v-381cc0c1]{width:100%;height:100%}.member-manage-contain .tab-content[data-v-381cc0c1] .el-input{line-height:36px;margin-bottom:20px}.member-manage-contain .tab-content[data-v-381cc0c1] .el-input .el-input__wrapper{background:#1c242f99!important;border-radius:4px!important;box-shadow:none}.member-manage-contain .tab-content[data-v-381cc0c1] .el-input .el-input__inner{height:34px;line-height:34px;color:#fff}.member-manage-contain .tab-content[data-v-381cc0c1] .el-input .el-input__inner::placeholder{font-family:PingFang SC;font-weight:500;font-size:14px;color:#43556e}.member-manage-contain .tab-content[data-v-381cc0c1] .el-input .input-suffix-icon{width:20px;height:20px;background:url(/assets/img/meeting/search-input-icon.png) no-repeat center/100% 100%}.member-manage-contain .tab-content-foot[data-v-381cc0c1]{width:100%;padding:12px 0 24px;display:flex;flex-wrap:nowrap;align-items:center;justify-content:center}.member-manage-contain .tab-content-foot-btn[data-v-381cc0c1]{cursor:pointer;height:40px;display:flex;align-items:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;background:#1c242f99}.member-manage-contain .tab-content-foot-btn[data-v-381cc0c1]:nth-child(1){padding:0 38px}.member-manage-contain .tab-content-foot-btn[data-v-381cc0c1]:nth-child(2){padding:0 14px}.member-manage-contain .tab-content-foot-btn[data-v-381cc0c1]:not(:last-child){margin-right:20px}.member-manage-contain .tab-content-foot-btn .btn-icon[data-v-381cc0c1]{width:20px;height:20px;margin-right:10px}.member-manage-contain .tab-content-foot-btn span[data-v-381cc0c1]{white-space:nowrap}.member-manage-contain .tab-content .member-list[data-v-381cc0c1]{width:100%;height:calc(100% - 132px);overflow-y:auto}.member-manage-contain .tab-content .member-list[data-v-381cc0c1]::-webkit-scrollbar{width:2px}.member-manage-contain .tab-content .member-list[data-v-381cc0c1]::-webkit-scrollbar-thumb{border-radius:2px;background-color:#00000040}.member-manage-contain .tab-content .member-list[data-v-381cc0c1]::-webkit-scrollbar-track{box-shadow:none!important;background:transparent!important;border-radius:5px}.member-manage-contain .tab-content .member-list-item[data-v-381cc0c1]{width:100%;display:flex;align-items:center;flex-wrap:nowrap;justify-content:space-between}.member-manage-contain .tab-content .member-list-item[data-v-381cc0c1]:not(:last-of-type){margin-bottom:20px}.member-manage-contain .tab-content .member-list-item-group[data-v-381cc0c1]{display:flex;align-items:center;flex-wrap:nowrap;flex-shrink:0}.member-manage-contain .tab-content .member-list-item-group .avatar[data-v-381cc0c1]{width:26px;height:26px;margin-right:12px}.member-manage-contain .tab-content .member-list-item-group .name[data-v-381cc0c1]{display:inline-block;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;white-space:nowrap;width:fit-content;max-width:148px;overflow:hidden;text-overflow:ellipsis}.member-manage-contain .tab-content .member-list-item-group .host[data-v-381cc0c1]{background:#f90;border-radius:4px;line-height:18px;padding:0 5px;color:#fff;font-family:PingFang SC;font-weight:500;font-size:12px;margin-left:15px}.member-manage-contain .tab-content .member-list-item-group .icon-btn[data-v-381cc0c1]{width:26px;height:26px;cursor:pointer}.member-manage-contain .tab-content .member-list-item-group .icon-btn[data-v-381cc0c1]:not(:last-of-type){margin-right:16px}.member-manage-contain .tab-content .member-list-item-group .icon-btn-option[data-v-381cc0c1]{background:url(/assets/img/meeting/more.png) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-mic-on[data-v-381cc0c1]{background:url(/assets/img/meeting/mic-on-large.png) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-mic-off[data-v-381cc0c1]{background:url(/assets/img/meeting/mic-off-large.png) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-cam-on[data-v-381cc0c1]{background:url(/assets/img/meeting/camera-on-large.png) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .icon-btn-cam-off[data-v-381cc0c1]{background:url(/assets/img/meeting/camera-off-large.png) no-repeat center/100% 100%}.member-manage-contain .tab-content .member-list-item-group .text-btn[data-v-381cc0c1]{width:80px;height:32px;line-height:32px;text-align:center;border-radius:8px;cursor:pointer;font-family:PingFang SC;font-weight:500;font-size:16px}.member-manage-contain .tab-content .member-list-item-group .text-btn[data-v-381cc0c1]:not(:last-of-type){margin-right:16px}.member-manage-contain .tab-content .member-list-item-group .text-btn-remove[data-v-381cc0c1]{border:1px solid #ef5b56;color:#ef5b56}.member-manage-contain .tab-content .member-list-item-group .text-btn-invite[data-v-381cc0c1]{background:#1f63fb;color:#fff}.member-manage[data-v-381cc0c1] .el-tabs__header{margin:0 0 20px}.member-manage[data-v-381cc0c1] .el-tabs__header .el-tabs__nav-wrap:after{background-color:transparent;bottom:0;content:"";height:2px;left:0;position:absolute;width:100%}.member-manage[data-v-381cc0c1] .el-tabs__header .el-tabs__nav-wrap .el-tabs__item{font-family:PingFang SC!important;font-weight:500!important;font-size:16px!important;color:#43556e!important}.member-manage[data-v-381cc0c1] .el-tabs__header .el-tabs__nav-wrap .is-active{color:#fff!important}.member-manage[data-v-381cc0c1] .el-tabs__content .el-tab-pane{height:100%}.chat[data-v-5dd4cec6]{width:440px;height:100%;padding:0 20px;background:#252e3d;box-shadow:0 0 8px #00000040;border:2px solid #798ba4}.chat-head[data-v-5dd4cec6]{width:100%;height:70px;border-bottom:2px solid #1c242f;display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}.chat-head-left[data-v-5dd4cec6]{display:flex;align-items:center;flex-wrap:nowrap}.chat-head-left .logo[data-v-5dd4cec6]{width:25px;height:25px;background:url(/assets/img/meeting/chat-large.png) no-repeat center/100% 100%;margin-right:14px}.chat-head-left .title[data-v-5dd4cec6]{font-family:PingFang SC;font-weight:500;font-size:20px;color:#fff;white-space:nowrap}.chat-head .close[data-v-5dd4cec6]{cursor:pointer;width:25px;height:25px;background:url(/assets/img/meeting/close.png) no-repeat center/100% 100%}.chat-foot[data-v-5dd4cec6]{width:100%;padding:12px 0 24px}.chat-foot[data-v-5dd4cec6] .el-input{line-height:50px;margin-bottom:20px}.chat-foot[data-v-5dd4cec6] .el-input .el-input__wrapper{background:#1c242f99!important;border-radius:4px!important;box-shadow:none}.chat-foot[data-v-5dd4cec6] .el-input .el-input__inner{height:48px;line-height:48px;color:#fff}.chat-foot[data-v-5dd4cec6] .el-input .el-input__inner::placeholder{font-family:PingFang SC;font-weight:500;font-size:14px;color:#43556e}.chat-foot .prefix-btns[data-v-5dd4cec6]{display:flex;align-items:center}.chat-foot .prefix-btns .btn[data-v-5dd4cec6]:not(:last-child){margin-right:12px}.chat-foot .btn[data-v-5dd4cec6]{cursor:pointer;width:20px;height:20px}.chat-foot .btn-emoji[data-v-5dd4cec6]{background:url(/assets/img/meeting/emoji-logo.png) no-repeat center/100% 100%}.chat-foot .btn-emoji+div[data-v-5dd4cec6]{width:20px;height:20px;background:url(/assets/img/meeting/pic-logo.png) no-repeat center/100% 100%}.chat-foot .btn-pic[data-v-5dd4cec6]{background:url(/assets/img/meeting/pic-logo.png) no-repeat center/100% 100%}.chat-foot .btn-send[data-v-5dd4cec6]{background:url(/assets/img/meeting/send-logo.png) no-repeat center/100% 100%}.chat-foot .emotion-list[data-v-5dd4cec6]{display:flex;flex-wrap:wrap;padding:10px}.chat-foot .emotion-list .emotion-item[data-v-5dd4cec6]{width:20px;font-size:18px;text-align:center;line-height:20px}.chat-content[data-v-5dd4cec6]{width:100%;height:calc(100% - 182px);overflow-y:auto}.chat-content[data-v-5dd4cec6]::-webkit-scrollbar{width:2px}.chat-content[data-v-5dd4cec6]::-webkit-scrollbar-thumb{border-radius:2px;background-color:#00000040}.chat-content[data-v-5dd4cec6]::-webkit-scrollbar-track{box-shadow:none!important;background:transparent!important;border-radius:5px}.chat-content .message-item[data-v-5dd4cec6]{width:100%;display:flex;align-items:flex-start}.chat-content .message-item[data-v-5dd4cec6]:not(:last-child){margin-bottom:20px}.chat-content .message-item-avatar[data-v-5dd4cec6]{width:50px;height:50px}.chat-content .message-item-content[data-v-5dd4cec6]{width:calc(100% - 80px);display:flex;flex-direction:column}.chat-content .message-item-content-top[data-v-5dd4cec6]{display:flex;flex-wrap:nowrap;align-items:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;margin-bottom:8px}.chat-content .message-item-content-top span[data-v-5dd4cec6]{white-space:nowrap;line-height:22px}.chat-content .message-item-content-top .name[data-v-5dd4cec6]{max-width:126px;overflow:hidden;text-overflow:ellipsis;display:inline-block}.chat-content .message-item-content-value[data-v-5dd4cec6]{border-radius:8px 16px;padding:6px 20px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#181f29;line-height:24px;word-break:break-all}.chat-content .message-item-content-value img[data-v-5dd4cec6]{max-width:100%}.chat-content .message-item .message-image[data-v-5dd4cec6]{width:calc(100% - 80px)}.chat-content .message-item-local[data-v-5dd4cec6]{justify-content:flex-end}.chat-content .message-item-local .message-item-avatar[data-v-5dd4cec6]{margin-left:20px}.chat-content .message-item-local .message-item-content[data-v-5dd4cec6]{align-items:flex-end}.chat-content .message-item-local .message-item-content-top[data-v-5dd4cec6]{justify-content:flex-end}.chat-content .message-item-local .message-item-content-top .name[data-v-5dd4cec6]{margin-right:16px}.chat-content .message-item-local .message-item-content-value[data-v-5dd4cec6]{color:#fff;background:#1f63fb}.chat-content .message-item-other[data-v-5dd4cec6]{justify-content:flex-start}.chat-content .message-item-other .message-item-avatar[data-v-5dd4cec6]{margin-right:20px}.chat-content .message-item-other .message-item-content[data-v-5dd4cec6]{align-items:flex-start}.chat-content .message-item-other .message-item-content-top[data-v-5dd4cec6]{justify-content:flex-start}.chat-content .message-item-other .message-item-content-top .name[data-v-5dd4cec6]{margin-right:16px}.chat-content .message-item-other .message-item-content-value[data-v-5dd4cec6]{background:#fff}.check-dialog[data-v-e06551cc]{width:160px;position:absolute;z-index:100}.check-dialog-inner[data-v-e06551cc]{width:100%;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:20px 25px}.check-dialog-inner .control-list[data-v-e06551cc]{width:100%;font-family:PingFang SC;font-weight:500;color:#fff}.check-dialog-inner .control-list-item[data-v-e06551cc]{width:100%;height:40px;line-height:40px;cursor:pointer;font-size:16px;text-align:center}.check-dialog-inner .control-list-item[data-v-e06551cc]:not(:last-child){margin-bottom:10px}.check-dialog-inner .control-list-item[data-v-e06551cc]:hover{background:#ef5b56;border-radius:8px}.appoint-dialog[data-v-d94e806c]{width:220px;position:absolute;z-index:100;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFang SC;font-weight:500;color:#fff;padding:0 12px 12px}.appoint-dialog-title[data-v-d94e806c]{width:100%;line-height:40px;padding-left:12px;white-space:nowrap;font-size:16px;font-weight:500;border-bottom:1px solid #1c242f}.appoint-dialog .member-list[data-v-d94e806c]{width:100%;height:121px;overflow-y:auto;padding:10px 12px}.appoint-dialog .member-list .member-item[data-v-d94e806c]{width:100%;height:32px;cursor:pointer;font-size:14px;font-weight:400;display:flex;align-items:center;flex-wrap:nowrap;padding-left:8px}.appoint-dialog .member-list .member-item[data-v-d94e806c]:not(:last-child){margin-bottom:12px}.appoint-dialog .member-list .member-item-avatar[data-v-d94e806c]{flex-shrink:0;width:18px;height:18px;margin-right:9px}.appoint-dialog .member-list .member-item-name[data-v-d94e806c]{display:inline-block;flex-shrink:0;white-space:nowrap;width:calc(100% - 45px);max-width:calc(100% - 45px);overflow:hidden;text-overflow:ellipsis}.appoint-dialog .member-list .member-item-checked .member-item-check[data-v-d94e806c]{background:url(/assets/img/meeting/check-icon.png) no-repeat center/100% 100%}.appoint-dialog .member-list .member-item[data-v-d94e806c]:hover{background:#1f63fb;border-radius:8px}.appoint-dialog .member-list .member-item-check[data-v-d94e806c]{flex-shrink:0;width:16px;height:16px}.appoint-dialog-foot[data-v-d94e806c]{width:100%}.appoint-dialog-foot .foot-btn[data-v-d94e806c]{background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer;line-height:40px;text-align:center;font-weight:500;font-size:16px}.more-option[data-v-b0b8ebaf]{width:140px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #313d51;padding:16px 15px;position:absolute;z-index:100}.more-option-item[data-v-b0b8ebaf]{width:100%;height:40px;line-height:40px;text-align:center;white-space:nowrap;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;cursor:pointer}.more-option-item[data-v-b0b8ebaf]:hover{background:#1f63fb;border-radius:8px}.more-option-item[data-v-b0b8ebaf]:not(:last-child){margin-bottom:8px}.more-option-item-danger[data-v-b0b8ebaf]{color:#ef5b56}.call-board[data-v-f68f1812]{position:absolute;width:270px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;padding:0 12px;font-family:PingFang SC,PingFang SC;font-weight:500;font-size:16px;color:#fff;z-index:20000}.call-board-title[data-v-f68f1812]{width:100%;height:50px;display:flex;align-items:center;justify-content:space-between;border-bottom:2px solid #1c242f;margin-bottom:12px}.call-board-title .title-close-icon[data-v-f68f1812]{width:14px;height:14px;cursor:pointer}.call-board-list[data-v-f68f1812]{width:100%;margin-top:12px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 12px;margin-bottom:10px}.call-board-list-item[data-v-f68f1812]{cursor:pointer;height:36px;line-height:36px;text-align:center;font-weight:600;font-size:24px;background:#1c242f99;border-radius:6px}.call-board-foot[data-v-f68f1812]{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}.call-board-foot-btn[data-v-f68f1812]{width:117px;height:36px;display:flex;align-items:center;justify-content:center;background:#1c242f99;border-radius:6px}.call-board-foot-btn .btn-icon[data-v-f68f1812]{width:24px;height:24px;cursor:pointer}.call-board-foot .call-btn .btn-icon[data-v-f68f1812]{background:url(/assets/img/meeting/btn_icon_call.png) no-repeat center/100% 100%}.call-board-foot .mini-btn .btn-icon[data-v-f68f1812]{background:url(/assets/img/meeting/btn_icon_mini.png) no-repeat center/100% 100%}.call-board[data-v-f68f1812] .el-input__inner{color:#fff;height:36px;line-height:36px}.call-board[data-v-f68f1812] .el-input__wrapper{background-color:#1c242f99;box-shadow:none}.chat-wrap[data-v-d493db42]{position:absolute;bottom:100px;z-index:99;left:10px;width:260px;height:180px}.chat-wrap .chat-content[data-v-d493db42]{width:100%;height:calc(100% - 35px);overflow-y:auto;display:flex;flex-direction:column;margin-bottom:5px}.chat-wrap .chat-content[data-v-d493db42]::-webkit-scrollbar{display:none}.chat-wrap .chat-content .chat-message[data-v-d493db42]{font-family:PingFang SC;font-weight:400;font-size:16px;background:#0003;border-radius:5px;width:fit-content;max-width:100%;padding:0 10px;line-height:30px;color:#fff}.chat-wrap .chat-content .chat-message .msg-content[data-v-d493db42]{word-break:break-all}.chat-wrap .chat-content .chat-message[data-v-d493db42]:first-child{margin-top:auto}.chat-wrap .chat-content .chat-message[data-v-d493db42]:not(:last-of-type){margin-bottom:6px}[data-v-68022380] .el-dialog{width:460px;margin:25vh auto 50px!important;height:225px;background:#252e3d;box-shadow:0 0 8px #00000040;border-radius:8px;border:2px solid #798ba4;font-family:PingFangSC-Medium}[data-v-68022380] .el-dialog .el-dialog__header{padding:10px}[data-v-68022380] .el-dialog .el-dialog__body{padding:0 20px}[data-v-68022380] .el-form-item{align-items:center;margin-bottom:28px;display:flex;align-items:flex-start}[data-v-68022380] .el-form-item__label{width:60px;font-size:16px;color:#fff;height:48px;line-height:48px}[data-v-68022380] .el-form-item__content{padding-right:20px;width:calc(100% - 100px)}[data-v-68022380] .el-input{width:100%}[data-v-68022380] .el-input .el-input__wrapper{background-color:#1c242f99;box-shadow:none}[data-v-68022380] .el-input .el-input__wrapper .el-input__inner{height:48px;line-height:48px;color:#fff;border:none;border-radius:8px;font-size:14px!important;font-family:PingFang SC;font-weight:400}[data-v-68022380] .el-input .el-input__wrapper .el-input__inner::placeholder{color:#43556e}[data-v-68022380] .el-form-item__label-wrap{align-items:center}.telephoneInvit .CustomHeader[data-v-68022380]{display:flex;justify-content:space-between}.telephoneInvit .CustomHeader .close[data-v-68022380]{width:25px;height:25px;background:url(/assets/img/multi/close_icon.png) no-repeat center/100% 100%;cursor:pointer}.telephoneInvit .contentsinit[data-v-68022380]{margin-top:20px}.isokmul[data-v-68022380]{margin-top:20px;width:100%;justify-content:center;align-items:center;display:flex;font-family:PingFangSC-Medium;color:#fff;font-size:16px}.isokmul div[data-v-68022380]:nth-child(1){width:100px;height:40px;line-height:40px;text-align:center;box-shadow:0 2px 12px #2a68f626;border-radius:8px;border:1px solid #798ba4;margin-right:15px;cursor:pointer}.isokmul div[data-v-68022380]:nth-child(2){width:100px;height:40px;line-height:40px;text-align:center;background:#1f63fb;box-shadow:0 2px 12px #2a68f626;border-radius:8px;cursor:pointer}.meeting-room[data-v-16094375]{width:1355px;height:822px;position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:2000;overflow:hidden}.meeting-room-top-bar[data-v-16094375]{width:100%;height:60px;display:flex;justify-content:space-between;align-items:center;background:#181f29;padding:0 24px}.meeting-room-top-bar .bar-group[data-v-16094375]{display:flex;align-items:center;flex-wrap:nowrap}.meeting-room-top-bar .bar-group .meeting-theme[data-v-16094375]{position:relative;flex-shrink:0;width:120px;height:36px;background:#252e3d;border-radius:8px;display:flex;align-items:center;justify-content:center;font-family:PingFang SC;font-weight:500;font-size:16px;margin-right:16px;color:#fff}.meeting-room-top-bar .bar-group .meeting-theme-logo[data-v-16094375]{width:20px;height:20px;background:url(/assets/img/meeting/theme_logo.png) no-repeat center/100% 100%;margin-right:10px}.meeting-room-top-bar .bar-group .meeting-name[data-v-16094375]{cursor:pointer;flex-shrink:0;display:flex;flex-wrap:nowrap;align-items:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;position:relative}.meeting-room-top-bar .bar-group .meeting-name-text[data-v-16094375]{white-space:nowrap;margin-right:10px}.meeting-room-top-bar .bar-group .meeting-name-icon[data-v-16094375]{width:24px;height:24px;background:url(/assets/img/meeting/to-bottom.png) no-repeat center/140% 140%}.meeting-room-top-bar .bar-group .meeting-signal[data-v-16094375]{position:relative;cursor:pointer;flex-shrink:0;width:25px;height:25px;background:url(/assets/img/meeting/signal.png) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .btn[data-v-16094375]{width:25px;height:25px;cursor:pointer;position:relative}.meeting-room-top-bar .bar-group .btn[data-v-16094375]:not(:last-child){margin-right:16px}.meeting-room-top-bar .bar-group .layout[data-v-16094375]{background:url(/assets/img/meeting/layout-logo.png) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .layout-active[data-v-16094375]{background:url(/assets/img/meeting/layout-active-logo.png) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .full-screen[data-v-16094375]{background:url(/assets/img/meeting/screen.png) no-repeat center/100% 100%}.meeting-room-top-bar .bar-group .close-meeting-icon[data-v-16094375]{background:url(/assets/img/meeting/close.png) no-repeat center/100% 100%}.meeting-room-top-bar .meeting-duration[data-v-16094375]{width:150px;height:40px;background:#252e3d;border-radius:8px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;display:flex;align-items:center;justify-content:center;flex-wrap:nowrap}.meeting-room-top-bar .meeting-duration-logo[data-v-16094375]{width:20px;height:20px;background:url(/assets/img/meeting/clock.png) no-repeat center/100% 100%;margin-right:12px}.meeting-room-top-bar .meeting-duration span[data-v-16094375]{white-space:nowrap}.meeting-room-contain[data-v-16094375]{width:100%;height:calc(100% - 60px);display:flex;align-items:flex-start;flex-wrap:nowrap}.meeting-room-contain-left[data-v-16094375]{flex-shrink:0;width:100%;height:100%;position:relative}.meeting-room-contain-left-slide[data-v-16094375]{width:calc(100% - 440px)}.meeting-room-contain-left .meeting[data-v-16094375]{width:100%;height:100%;background:#252e3d;padding:5px;overflow-y:auto}.meeting-room-contain-left .meeting[data-v-16094375]::-webkit-scrollbar{display:none}.meeting-room-contain-left .meeting-control-bar[data-v-16094375]{width:100%;height:60px;padding:0 24px;background:#252e3de6;display:flex;align-items:center;justify-content:space-between;position:absolute;z-index:100;bottom:-60px;left:0;transition:all .2s ease}.meeting-room-contain-left .meeting-control-bar-show[data-v-16094375]{bottom:0}.meeting-room-contain-left .meeting-control-bar .bar-group[data-v-16094375]{display:flex;align-items:center;flex-wrap:nowrap}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select[data-v-16094375]{position:relative;background:#1c242f99;border-radius:8px;height:40px;display:flex;flex-wrap:nowrap;align-items:center;padding:0 0 0 13px;cursor:pointer;margin-right:16px}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select-btn[data-v-16094375]{width:18px;height:18px;margin-right:13px}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select-right[data-v-16094375]{width:36px;height:20px;position:relative;border-left:1px solid rgba(255,255,255,.4)}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select-right .arrow-icon[data-v-16094375]{width:12px;height:6px;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) rotate(0);background:url(/assets/img/meeting/to-top.png) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .mic-on[data-v-16094375]{background:url(/assets/img/meeting/mic-on-small.png) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .mic-off[data-v-16094375]{background:url(/assets/img/meeting/mic-off-small.png) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .cam-on[data-v-16094375]{background:url(/assets/img/meeting/camera-on-small.png) no-repeat center/100% 60%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .cam-off[data-v-16094375]{background:url(/assets/img/meeting/camera-off-small.png) no-repeat center/100% 100%}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .theme-icon[data-v-16094375]{width:24px;height:24px;background:url(/assets/img/meeting/theme_logo.png) no-repeat center/100% 100%;margin-right:12px}.meeting-room-contain-left .meeting-control-bar .bar-group .custom-select .theme-text[data-v-16094375]{font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff;white-space:nowrap;margin-right:12px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn[data-v-16094375]{cursor:pointer;display:flex;flex-wrap:nowrap;align-items:center;padding:0 11px;height:40px;background:#1c242f99;border-radius:8px;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn[data-v-16094375]:not(:last-child){margin-right:16px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn span[data-v-16094375]{white-space:nowrap;margin-left:10px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn-icon[data-v-16094375]{width:22px;height:22px}.meeting-room-contain-left .meeting-control-bar .bar-group .t-btn-qtm[data-v-16094375]{width:40px;padding:0;background:url(/assets/img/meeting/call_board_icon.png) no-repeat center/100% 100%;position:relative}.meeting-room-contain-left .meeting-control-bar .exit-btn[data-v-16094375]{cursor:pointer;width:100px;height:40px;line-height:40px;background:#ef5b56;box-shadow:0 2px 12px #2a68f626;border-radius:8px;text-align:center;font-family:PingFang SC;font-weight:500;font-size:16px;color:#fff}.meeting-room-contain-right[data-v-16094375]{flex-shrink:0;height:100%}.meeting .participant{background:#000;position:relative;font-family:PingFang SC;border-radius:16px;margin:5px}.meeting .participant .p-video{position:absolute;width:100%;height:100%;left:0;top:0;z-index:10;object-fit:contain;border-radius:16px}.meeting .participant .board{position:absolute;width:100%;height:100%;left:0;top:0;z-index:30;display:flex;align-items:center;justify-content:center;background:url(/assets/img/meeting/board-bg.png) no-repeat center/100% 100%}.meeting .participant .board .board-icon{width:20%;height:auto;aspect-ratio:1/1;background:url(/assets/img/index/tx.png) no-repeat center/100% 100%}.meeting .participant .screen-share-suspension:before{content:"";position:absolute;left:11px;top:10px;width:20px;height:20px;background:url(/assets/img/meeting/share.png) no-repeat center/100% 100%}.meeting .participant .screen-share-suspension{position:absolute;left:24px;top:20px;z-index:50;padding:9px 13px 9px 41px;background:#1c242f99;border-radius:8px;white-space:nowrap;font-weight:500;font-size:16px;color:#fff}.meeting .participant .describe{position:absolute;left:10px;bottom:0;z-index:50;height:40px;display:flex;align-items:center;flex-wrap:nowrap;padding:0 10px;background:#1c242f99;border-radius:8px}.meeting .participant .describe-left{display:flex;align-items:center;flex-wrap:nowrap;padding-right:10px;border-right:1px solid rgba(255,255,255,.4)}.meeting .participant .describe-left .avatar{width:20px;height:20px;margin-right:10px;background:url(/assets/img/meeting/des-ava.png) no-repeat center/100% 100%}.meeting .participant .describe-left .identity{white-space:nowrap;font-weight:500;font-size:16px;color:#fff}.meeting .participant .describe .tools{padding-left:10px;display:flex;align-items:center;flex-wrap:nowrap}.meeting .participant .describe .tools .microphone{width:18px;height:18px;cursor:pointer}.meeting .participant .describe .tools .microphone-active{background:url(/assets/img/meeting/mic-on-small.png) no-repeat center/100% 100%}.meeting .participant .describe .tools .microphone-inactive{background:url(/assets/img/meeting/mic-off-small.png) no-repeat center/100% 100%}.meeting .participant .signal-icon{position:absolute;top:20px;left:24px;z-index:50;width:40px;height:40px;visibility:hidden}.meeting .participant .signal-icon-good{background:url(/assets/img/meeting/signal_good.png) no-repeat center/100% 100%}.meeting .participant .signal-icon-poor{background:url(/assets/img/meeting/signal_poor.png) no-repeat center/100% 100%}.meeting .participant .more-icon{visibility:hidden;cursor:pointer;position:absolute;top:20px;right:24px;z-index:50;width:40px;height:40px;background:url(/assets/img/meeting/more_icon.png) no-repeat center/100% 100%}.grid1{display:flex;justify-content:center;align-items:center}.grid1 .participant{width:100%;height:98%}.grid1 .participant .p-video{object-fit:cover!important}.grid1 .describe{transform:scale(1.3)}.grid2{display:flex;justify-content:center;align-items:center;flex-wrap:nowrap}.grid2 .participant{width:calc(50% - 10px);height:auto;aspect-ratio:16/9}.grid2 .describe{transform:scale(1.1)}.grid3{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid3 .participant{width:calc(50% - 10px);height:auto;max-height:calc(50% - 10px);aspect-ratio:16/9}.grid3 .describe{transform:scale(1.1)}.grid4{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid4 .participant{width:calc(33.33% - 10px);height:auto;aspect-ratio:16/9}.grid4 .describe{transform:scale(.9)}.grid5{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid5 .participant{width:calc(33.33% - 10px);height:auto;max-height:calc(33.33% - 10px);aspect-ratio:16/9}.grid5 .describe{transform:scale(.9)}.grid6{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid6 .participant{width:calc(25% - 10px);height:auto;max-height:calc(33.33% - 10px);aspect-ratio:16/9}.grid6 .describe{transform:scale(.75)}.grid7{display:flex;flex-wrap:wrap;justify-content:center;align-content:center}.grid7 .participant{width:calc(25% - 10px);height:auto;max-height:calc(25% - 10px);aspect-ratio:16/9}.grid7 .describe{transform:scale(.75)}.grid8{display:flex;flex-wrap:wrap;justify-content:center}.grid8 .participant{width:calc(25% - 10px);height:auto;aspect-ratio:16/9}.rightSide{display:flex;align-items:flex-start;flex-wrap:nowrap}.rightSide .layout-leftside{flex-shrink:0;display:flex;align-items:center;width:77.1%;height:100%;padding-right:5px}.rightSide .layout-leftside .participant{width:100%;height:auto;aspect-ratio:16/9;max-height:100%}.rightSide .layout-rightside{flex-shrink:0;width:22.9%;height:100%;overflow:auto;padding:10px 0 0}.rightSide .layout-rightside::-webkit-scrollbar{display:none}.rightSide .layout-rightside .participant{width:100%;height:auto;aspect-ratio:16/9;margin:5px 0}.rightSide .layout-rightside .participant .describe{left:2px;bottom:2px}.point-turn{display:flex;flex-direction:column;justify-content:center;align-items:center}.point-turn-top{width:100%;height:25%;display:flex;align-items:center;justify-content:flex-start;flex-wrap:nowrap}.point-turn-top .participant{flex-shrink:0;width:calc(20% - 10px);height:calc(100% - 10px)}.point-turn-center{width:100%;height:50%;display:flex;align-items:center;flex-wrap:nowrap}.point-turn-center .participant{flex-shrink:0;width:calc(50% - 10px);height:calc(100% - 10px)}.point-turn-bottom{width:100%;height:25%;display:flex;justify-content:flex-start;align-items:center;flex-wrap:nowrap}.point-turn-bottom .participant{flex-shrink:0;width:calc(20% - 10px);height:calc(100% - 10px)}.point-turn-other{display:none}@font-face{font-family:PingFang SC;src:url(/assets/font/PingFang-Medium.ttf)}*{box-sizing:border-box}body{width:100%;padding:0;margin:0}ul{padding:0;margin:0}li{margin:0;padding:0;list-style:none}a:focus,a:active,button:active,div:focus,span:focus{outline:none}a,a:focus,a:hover{cursor:pointer;color:inherit;text-decoration:none}::-webkit-scrollbar{width:2px;height:2px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#3170ed;border-radius:4px}
|