.chatDiv {
	z-index: 999999;
}

.iconBox {
	position: fixed;
	bottom: 60px;
	right: 5px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 6px;
	background: #FFF;
	color: #0090FF;
	box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
	z-index: 999999;
	cursor: pointer;
}

.iconBox:hover {
	opacity: 0.8;
}

.iconBox .chatIcon {
	font-size: 20px;
}

/*角标样式*/
.chatNumber {
	display: none;
	position: absolute;
	top: -8px;
	right: -8px;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	background: red;
	border-radius: 50%;
	z-index: 999;
}

/*头像框*/
.chatHead {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	color: #FFF;
	font-size: 18px;
	border-radius: 50%;
	background-size: 100%;
	pointer-events: none;
}

.chatHead.themeBC {
	background: #0066FF;
}

.chatHead.chatIcon {
	font-size: 24px;
}

/*聊天框样式*/
.chatDialog {
	width: 1030px;
	height: 690px;
	user-select: text;
	overflow: visible;
	box-shadow: none;
	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
}

.chatDialog.full {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

.chatDialog.aside {
	border-radius: 8px 0 0 8px;
}

.chatDialog .chatCnt {
	position: relative;
	display: flex;
	height: 100%;
	background: #fff;
	border-radius: 8px;
	z-index: 9;
	overflow: hidden;
}

/*左侧功能选择栏*/
.chatCnt .leftNav {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 52px;
	border-right: 1px solid #D4D4D4;
}

.chatCnt .leftNav .chatHead {
	margin-top: 36px;
}

.chatCnt .leftNav .chatIcon {
	margin-top: 24px;
	font-size: 24px;
	cursor: pointer;
}

.chatCnt .leftNav .chatIcon.active {
	color: #0066FF;
}

.chatCnt .leftNav .chatNumber {
	top: 90px;
	right: 8px;
}

/*聊天人员列表/通讯录列表*/
.chatCnt .contactDiv {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 248px;
	height: 100%;
	border-right: 1px solid #e5e5e5;
	z-index: 2;
}

.chatCnt .contactDiv .timiSearchDiv {
	display: flex;
	align-items: center;
	padding: 0 50px 0 20px;
	height: 60px;
	border-bottom: 1px solid #e5e5e5;
}

.timiSearchDiv .chatIcon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	color: #999;
}

.timiSearchDiv input {
	width: 100%;
}

.chatCnt .contactDiv .timiSearchDiv .chat-menu-search {
	left: 30px;
}

.chatCnt .contactDiv .timiSearchDiv .chat-close {
	display: none;
	right: 60px;
	cursor: pointer;
}

.chatCnt .contactDiv .timiSearchDiv .chatHead {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 30px;
	height: 30px;
	font-size: 16px;
	box-shadow: 0px 3px 6px 0px rgb(64 64 64 / 16%);
	pointer-events: auto;
	cursor: pointer;
}

.chatCnt .contactDiv .cList {
	position: relative;
	width: 100%;
	height: calc(100% - 60px);
	overflow: auto;
}

.contactDiv .chatItem {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 20px;
	cursor: pointer;
}

.contactDiv .chatItem:hover,
.contactDiv .chatItem.active {
	background: #f8f8f8;
}

.chatItem .chatHead {
	margin-right: 10px;
}

.chatItem .chat-msg-success {
	position: absolute;
	color: #00ff4e;
	bottom: 8px;
	left: 45px;
	font-size: 14px;
}

.chatList .chatItem .chatContent {
	width: calc(100% - 95px);
	pointer-events: none;
}

.chatItem .chatContent .chatMsg {
	margin-top: 3px;
	display: inline-block;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	font-size: 12px;
	height: 16px;
}

.chatList .chatItem .chatOther {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	width: 50px;
	font-size: 12px;
	pointer-events: none;
}

.chatItem .chatOther .chatNum {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18px;
	height: 18px;
	color: #fff;
	background: #ff0000;
	border-radius: 50%;
}

.chatItem .chatOther .chatNum.notShow {
	visibility: hidden;
}

.contactList .chatItem {
	height: 60px;
	border-bottom: 1px solid #e5e5e5;
}

.contactList .chatItem p {
	width: calc(100% - 61px);
}

/*聊天框主体*/
.chatCnt .chatMain {
	position: relative;
	width: calc(100% - 300px);
	height: 100%;
}

.chatCnt .chatMain .chatHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	background: #f8f8f8;
	border-bottom: 1px solid #e5e5e5;
}

.chatMain .chatHeader .chatLXRDiv {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #333;
	width: calc(100% - 100px);
	pointer-events: none;
}

.chatMain .chatHeader .chatTitle {
	margin-left: 24px;
	width: fit-content;
	max-width: calc(100% - 80px);
	user-select: text;
	pointer-events: auto;
}

.chatMain .chatHeader .icons {
	position: relative;
	display: flex;
	justify-content: flex-end;
	width: 100px;
	height: 100%;
}

.chatMain .chatHeader .icons .chatIcon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.chatMain .chatHeader .icons .chat-text-other {
	position: absolute;
	bottom: 0;
}

.chatMain .chatHeader .icons .chatIcon:not(.chat-text-other):hover {
	background: #E2E2E2;
}

.chatMain .chatHeader .chatIcon {
	color: #666;
}

.chatCnt .chatMain .chatLog {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: calc(100% - 280px);
	padding: 10px 30px;
	background: #f8f8f8;
	overflow-x: hidden;
	overflow-y: scroll;
}

.chatMain .logItem {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	margin: 10px 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.chatMain .logItem .chat-msg-warn {
	font-size: 20px;
	color: #FA5151;
}

.chatMain .logItem .chatHead {
	position: absolute;
	top: 0;
	width: 30px;
	height: 30px;
	font-size: 16px;
	box-shadow: 0px 3px 6px 0px rgba(64, 64, 64, 0.16);
}

.chatMain .chatLog .logTime {
	width: fit-content;
	padding: 4px 8px;
	color: #fff;
	background: #ccc;
	border-radius: 4px;
	margin: 10px auto;
}

.chatMain .chatLog .rightItem {
	justify-content: flex-end;
}

.chatMain .chatLog .msgPop {
	position: relative;
	width: fit-content;
	max-width: 300px;
	padding: 8px;
	margin: 0 10px;
	background: #fff;
	box-shadow: 0px 2px 4px 0px rgba(91, 168, 255, 0.19);
	border-radius: 4px;
	word-wrap: break-word;
}

.chatMain .rightItem .msgPop {
	margin-right: 40px;
}

.chatMain .chatLog .rightItem .msgPop:not(.fileItem):not(.imgItem) {
	background: #89d961;
}

.chatMain .chatLog .msgPop:before {
	content: "";
	position: absolute;
	top: 8px;
	width: 0;
	height: 0;
	border-width: 6px;
	border-style: solid;
	border-color: transparent;
	color: #fff;
}

.chatMain .chatLog .rightItem .msgPop:before {
	left: 100%;
	border-left-width: 6px;
	border-left-color: currentColor;
	color: #89d961;
}

.chatMain .chatLog .rightItem .msgPop.fileItem:before,
.chatMain .chatLog .rightItem .msgPop.imgItem:before {
	color: #fff;
}

.chatMain .leftItem .msgPop {
	margin-left: 40px;
}

.chatMain .chatLog .leftItem .msgPop:before {
	right: 100%;
	border-right-width: 6px;
	border-right-color: currentColor;
}

.chatLog .msgPop.fileItem {
	display: flex;
	padding: 10px;
	cursor: pointer;
}

.chatLog .msgPop.fileItem .msgFile {
	display: flex;
	flex-direction: column;
	max-width: 150px;
	margin-right: 10px;
}

.chatLog .msgPop.fileItem .msgFile p {
	word-break: break-all;
	color: #333;
}

.chatLog .msgPop.fileItem .msgFile span {
	font-size: 12px;
	line-height: 16px;
	color: #999;
}

.chatLog .msgPop.fileItem .msgFile+div {
	position: relative;
	width: 44px;
	height: 44px;
}

.chatLog .msgPop.fileItem .chatIcon {
	font-size: 44px;
}

.chatLog .msgPop.fileItem .f-load {
	position: absolute;
	left: 8px;
	top: 12px;
	width: 30px;
	height: 30px;
}

.chatLog .msgPop.imgItem {
	display: flex;
	padding: 0;
}

.chatLog .msgPop.imgItem img,
.chatLog .msgPop.imgItem video {
	max-width: 200px;
	max-height: 200px;
	cursor: pointer;
}

.chatLog .msgPop.imgItem .chatIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px;
	font-size: 32px;
	color: #fff;
	pointer-events: none;
}

.chatMain .shakeMsg {
	justify-content: center;
}

.chatCnt .chatMain .chatMoreMsg {
	display: none;
	position: absolute;
	top: 60px;
	width: 100%;
	text-align: center;
	color: #0066ff;
	z-index: 2;
}

.chatCnt .chatMain .chatNewMsg {
	display: none;
	position: absolute;
	right: 0;
	align-items: center;
	padding: 5px 10px;
	margin: 5px 20px;
	background: #fff;
	color: #00807A;
	border-radius: 4px;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
	cursor: pointer;
	z-index: 2;
}

.chatCnt .chatMain .chatNewMsg span {
	margin: 0 10px;
}

.chatCnt .chatMain .chatNewMsg i {
	font-size: 14px;
}

.chatCnt .chatMain .dragLine {
	position: absolute;
	bottom: 220px;
	left: 0;
	width: 100%;
	height: 2px;
	cursor: n-resize;
}

.chatCnt .chatMain .chatInDiv {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 220px;
	box-shadow: 0px -3px 9px 0px rgba(54, 54, 54, 0.05);
}

.chatInDiv .chatBar {
	display: flex;
	align-items: center;
	width: calc(100% - 18px);
	height: 32px;
	padding: 0 9px;
}

.chatInDiv .chatBar .chatIcon {
	margin: 0 10px;
	font-size: 20px;
	cursor: pointer;
}

.chatInDiv .chatBar .chatIcon:hover {
	color: #000;
}

.chatInDiv .chatIn {
	width: 100%;
	height: calc(100% - 90px);
	padding: 0 28px;
	resize: none;
	overflow: auto;
}

.chatInDiv .chatBtn {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 10px 30px;
	background: #fff;
}

.chatInDiv .chatBtn .nullMsg {
	display: none;
	position: absolute;
	bottom: 60px;
	right: 35px;
	width: fit-content;
	padding: 8px 12px;
	background: #fff;
	border-radius: 4px;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}

.chatInDiv .chatBtn .nullMsg:after {
	content: "";
	position: absolute;
	top: 100%;
	right: 24px;
	width: 0;
	height: 0;
	border-width: 8px;
	border-style: solid;
	border-color: transparent;
	border-top-width: 8px;
	border-top-color: currentColor;
	color: #fff;
}

/*聊天记录*/
.chatCnt .chatRecords {
	visibility: hidden;
	position: absolute;
	top: 0;
	right: -430px;
	width: 430px;
	height: 100%;
	background: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.chatRecords .crHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 40px;
	padding: 0 16px;
	font-size: 14px;
	color: #999;
}

.chatRecords .crHeader .chatIcon {
	font-size: 14px;
	cursor: pointer;
}

.chatRecords .timiSearchDiv {
	margin: 20px 35px;
}

.chatRecords .timiSearchDiv .chat-menu-search {
	left: 10px;
}

.chatRecords .timiSearchDiv .chat-close {
	display: none;
	right: 10px;
	cursor: pointer;
}

.chatRecords .crTabbar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}

.chatRecords .crTabbar span {
	margin: 0 22px;
	height: 25px;
	cursor: pointer;
	border-bottom: 2px solid #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.chatRecords .crTabbar span.active {
	color: #06F;
	border-bottom-color: #06F;
}

.chatRecords .crList {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 30px;
	width: 100%;
	height: calc(100% - 152px);
	overflow: auto;
}

.chatRecords .crList .crItem {
	display: flex;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #e5e5e5;
}

.crList .crItem .chatHead {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	font-size: 14px;
}

.crList .crItem .crCnt {
	display: flex;
	flex-direction: column;
	width: calc(100% - 35px);
}

.crItem .crCnt .crInfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.crItem .crCnt .crMsg {
	width: 100%;
	margin-top: 6px;
	color: #333;
	word-wrap: break-word;
}

.crCnt .crMsg.imgItem {
	position: relative;
	display: flex;
	padding: 0;
}

.crCnt .crMsg.imgItem .videoDiv {
	position: relative;
}

.crCnt .crMsg.imgItem img,
.crCnt .crMsg.imgItem video {
	max-width: 200px;
	max-height: 200px;
	cursor: pointer;
}

.crCnt .crMsg.imgItem .chatIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px;
	font-size: 32px;
	color: #fff;
	pointer-events: none;
}

.crCnt .crMsg.fileItem {
	position: relative;
	width: fit-content;
	max-width: 430px;
	padding: 8px;
	background: #fff;
	box-shadow: 0px 2px 4px 0px rgba(91, 168, 255, 0.19);
	border-radius: 4px;
}

.crCnt .crMsg.fileItem {
	display: flex;
	padding: 10px;
	cursor: pointer;
}

.crCnt .crMsg.fileItem .msgFile {
	display: flex;
	flex-direction: column;
	max-width: 150px;
	margin-right: 10px;
}

.crCnt .crMsg.fileItem .msgFile p {
	word-break: break-all;
	color: #333;
}

.crCnt .crMsg.fileItem .msgFile span {
	font-size: 12px;
	line-height: 16px;
	color: #999;
}

.crCnt .crMsg.fileItem .msgFile+div {
	position: relative;
	width: 44px;
	height: 44px;
}

.crCnt .crMsg.fileItem .chatIcon {
	font-size: 44px;
}

.crList .crItem .crDate {
	width: 60px;
	margin-left: 15px;
	text-align: right;
}

/*聊天记录图片列表*/
.crList .crImgDate {
	margin: 5px 0;
	width: 100%;
	font-size: 12px;
	color: #333;
}

/*聊天记录图片列表*/
.crList .crImgs {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.crList .crImgs img {
	width: 70px;
	height: 70px;
	margin: 2.5px;
	cursor: pointer;
}

.crList .crImgs img:nth-child(5n + 1) {
	margin-left: 0;
}

.crList .crImgs img:nth-child(5n + 5) {
	margin-right: 0;
}

/*聊天记录文件列表*/
.crItem.fileItem {
	cursor: pointer;
}

.crItem.fileItem .chatIcon {
	font-size: 40px;
	margin-right: 10px;
}

.crItem.fileItem .crFiles {
	width: calc(100% - 150px);
}

.crItem.fileItem .crFiles .crFilesName {
	line-height: 20px;
	color: #333;
}

.crItem.fileItem .crFiles span {
	font-size: 12px;
	color: #bbb;
}

.crItem.fileItem .crFilesOther {
	width: 100px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-size: 12px;
	color: #bbb;
}

.crItem.fileItem .crFilesOther .crFilesDate {
	line-height: 20px;
}

/*文件图标的颜色值*/
.chat-f-exe {
	color: #8b72f7;
}

.chat-f-other {
	color: #ccc;
}

.chat-f-pdf {
	color: #ff4867;
}

.chat-f-xls {
	color: #45b058;
}

.chat-f-ppt {
	color: #f16c41;
}

.chat-f-html {
	color: #f7622c;
}

.chat-f-zip {
	color: #ffc757;
}

.chat-f-txt {
	color: #4fd397;
}

.chat-f-doc {
	color: #4a7afb;
}

/*图片视频预览框*/
.chatPrevCnt {
	height: calc(100% - 40px);
}

.chatPrevCnt .chatPrevImg {
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	margin: 10px;
	overflow: auto;
}

.chatPrevCnt .chatPrevImg img {
	display: block;
	margin: auto;
}

.chatPrevCnt .chatPrevImg::-webkit-scrollbar {
	width: 0;
}

/*空白*/
.chatBlank {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(100% - 32px);
	background: #f8f8f8;
	z-index: 1;
}

.chatBlank img {
	max-width: 100%;
	max-height: 100%;
}

.chatBlank .l-dialog-close {
	position: absolute;
	right: 24px;
	top: 22px;
}

/*右键菜单*/
.chatMenuBox {
	position: absolute;
	display: flex;
	flex-direction: column;
	width: 176px;
	height: auto;
	background: #FFF;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	z-index: 996;
}

.rightMenu p {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
}

.rightMenu p:not(.disabled):hover {
	color: #FFF;
	background: #0066FF;
}

/*侧边栏*/
.chatAside {
	position: absolute;
	bottom: 0;
	width: 250px;
	user-select: text;
	background: #F8F8F8;
	overflow: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.chatOutAside {
	height: 690px;
	right: 0;
	/* border-left: 1px solid #D4D4D4; */
	border-radius: 0 8px 8px 0;
}

.chatInAside {
	visibility: hidden;
	height: 630px;
	right: -250px;
	box-shadow: 2px 2px 20px rgb(0 0 0 / 10%);
	border-radius: 8px;
	z-index: 10;
}

.chatAside .asideCnt {
	width: 250px;
	height: 100%;
	padding: 0 16px;
	overflow: auto;
}

.chatAside .asideCnt .item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #E5E5E5;
}

.chatAside .asideCnt .item.personList {
	justify-content: flex-start;
}

.asideCnt .personList .perItem {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 9px;
}

.asideCnt .personList .chatHead {
	width: 30px;
	height: 30px;
	box-shadow: 0px 3px 6px 0px rgba(64, 64, 64, 0.16);
}

.asideCnt .personList .perItem span {
	font-size: 12px;
	margin-top: 5px;
}

.asideCnt .personList .perItem .chatIcon {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #666;
	font-size: 16px;
	cursor: pointer;
	pointer-events: auto;
}

.asideCnt .personList .perItem.clk .chatHead {
	cursor: pointer;
	pointer-events: auto;
}

.asideCnt .groupDiv div {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 10px;
	cursor: pointer;
}

.asideCnt .groupDiv .chatIcon {
	margin-left: 5px;
	display: none;
}

.asideCnt .groupDiv span:hover+.chatIcon {
	display: block;
}

.asideCnt .groupDiv input {
	display: none;
	width: 100%;
	height: 20px;
	cursor: pointer;
}

.asideCnt .btn {
	color: #F45454;
	text-align: center;
	padding: 20px 0;
	cursor: pointer;
}

.asideCnt .btn.groupItem {
	border-top: 1px solid #E5E5E5;
}

/*选择/移出群员弹窗*/
.addrDialog {
	display: flex;
	flex-direction: column;
	width: 550px;
	height: 485px;
}

.addrDialog .addrLeft {
	width: 50%;
	height: 100%;
	border-right: 1px solid #E5E5E5;
}

.addrDialog .addrRight {
	width: calc(50% - 1px);
	height: 100%;
}

.addrDialog .addrHeader {
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
}

.addrDialog .addrHeader .timiSearchDiv {
	padding: 0 20px 0 24px;
	width: 50%;
}

.addrHeader .timiSearchDiv .chat-menu-search {
	left: 34px;
}

.addrHeader .timiSearchDiv .chat-close {
	right: 30px;
}

.addrDialog .addrHeader .addrRight {
	display: flex;
	align-items: center;
	margin-left: 24px;
	width: calc(50% - 25px);
}

.addrHeader .addrRight .chat-close {
	position: absolute;
	right: 0;
	top: 0;
	width: 16px;
	height: 16px;
	margin: 8px;
}

.addrHeader .addrRight .chat-close:hover {
	background: #E2E2E2;
}

.addrDialog .addrCnt {
	display: flex;
	width: 100%;
	height: calc(100% - 60px);
}

.addrDialog .addrCnt .list {
	display: flex;
	flex-direction: column;
	overflow: auto;
}

.addrDialog .addrCnt .selectList {
	height: calc(100% - 50px);
}

.addrDialog .addrCnt .item {
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 20px 0 24px;
	cursor: pointer;
}

.addrDialog .addrCnt .item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 100%;
	height: 60px;
	padding: 0 20px 0 24px;
	cursor: pointer;
}

.addrCnt .selectList .item {
	cursor: default;
}

.addrDialog .addrCnt .item:hover,
.addrDialog .addrCnt .item.active {
	background: #F8F8F8;
}

.addrCnt .item .chatHead {
	margin-right: 10px;
}

.addrCnt .item .name {
	width: calc(100% - 75px);
}

.addrCnt .item .chatIcon {
	font-size: 20px;
	margin-left: 10px;
}

.addrCnt .selectList .item .chatIcon {
	color: #DADADA;
	cursor: pointer;
}

.addrDialog .addrCnt .addrBtns {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 50px;
	margin-right: 10px;
}

.timiBtn:hover {
	background: #b5b2b2;
}

/*表情包*/
.chatInDiv .emoji {
	display: flex;
	width: 274px;
	position: absolute;
	height: 173px;
	justify-content: space-around;
	left: 5px;
	top: 294px;
	background: #fff;
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	z-index: 20;
	padding: 3px 2px 2px 2px;
}

.emojiItem {
	width: 30px;
	height: 30px;
	background: url('../images/emoji.png');
	background-size: 400px;
	display: inline-block;
	cursor: pointer;
}

.chatIn .emojiItem {
	margin-bottom: -7px;
}

.msgPop .emojiItem {
	margin-bottom: -7px;
	margin-right: -5px;
	cursor: auto;
}

.chatMsg .emojiItem {
	margin-right: -17px;
	margin-bottom: -17px;
	transform: scale(0.5, 0.5);
	position: relative;
	top: -7px;
	left: -8px;
}

.crMsg .emojiItem {
	margin-right: -14px;
	margin-bottom: -18px;
	transform: scale(0.59, 0.59);
	position: relative;
	top: -7px;
	left: -8px;
}

.chatPrevDialog .chatHeader {
	width: 100%;
}