#ClCache {
	display: none !important;
	height: 0 !important;
	width: 0 !important;
	line-height: 0 !important;
	font-size: 0 !important;
	overflow: hidden !important;
}

* {
	box-sizing: border-box;
	/* -webkit-user-select: none; 
	-moz-user-select: none;
	-webkit-touch-callout: none;
	-ms-user-select: none;
	user-select: none; */
}
html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}
::-webkit-scrollbar {
	width: 4px;
	position: absolute;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

#app {
	max-width: 400px;
	height: 100%;
	max-height: 600px;
	color: #1c1e24;
	font-size: 14px;
	font-family: 'PingFang SC', 'Poppins', 'Microsoft YaHei', '雅黑', 'Open Sans', 'Helvetica Neue', 'Helvetica, Arial', 'sans-serif';
}
.body {
	min-width: 320px;
	display: flex;
	flex-direction: column;
	background: #fff;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 8px;
}
.chatIcon {
	margin-left: auto;
	width: 60px;
	height: 60px;
	line-height: 56px;
	background: #0d8bcd;
	font-size: 32px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
}
.chatTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	height: 48px;
	background: #0d8bcd;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
}
.titleBox {
	display: flex;
	align-items: center;
}
.titleBox img {
	margin-right: 5px;
	padding: 4px;
	background: #fff;
	border-radius: 50%;
}
.chatTitle .icon {
	font-size: 18px;
}
.chat-container {
	flex: 1;
	margin: 0 auto;
	padding: 5px 10px 20px 6px;
	width: 100%;
	overflow: auto;
	background: #f1f1f1;
}
.noData {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 16px;
	gap: 20px;
}
.logo {
	width: 80px;
	height: 80px;
	line-height: 76px;
	border-radius: 50%;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	text-align: center;
}
.logo img {
	vertical-align: middle;
}
.dateMsg {
	margin: 10px auto 0;
	padding: 5px 10px;
	width: max-content;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.chat-item {
	margin-top: 15px;
	display: flex;
	max-width: 70%;
}

.chat-item.is-me {
	margin-left: auto;
	justify-content: flex-end;
	align-items: flex-end;
}

.name {
	font-size: 14px;
	color: #666;
	margin-bottom: 4px;
}

.me-tag {
	background: #e8f5e9;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 12px;
	margin-right: 8px;
}

.message {
	margin: 0;
	padding: 8px 12px;
	border-radius: 8px;
	background: #fff;
	line-height: 1.5;
	font-family: Inter, '-apple-system', BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'noto sans', 'Microsoft YaHei', 'Helvetica Neue',
		Helvetica, Arial, sans-serif;
	white-space: pre-wrap;
	word-break: break-all;
}
.sendTime {
	margin-bottom: 5px;
	color: #999;
}

.is-me .message {
	margin-left: auto;
	background: #e3f2fd;
	color: #000;
}
.is-me .sendTime {
	margin-right: 5px;
	text-align: right;
}

.message img {
	max-width: 200px;
	max-height: 200px;
	border-radius: 4px;
}

.send-area {
	padding: 4px 10px;
	background: white;
	border-top: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 10px;
}

textarea {
	flex: 1;
	width: 100%;
	padding: 10px 0 0;
	border: unset;
	background: transparent;
	border-radius: 4px;
	resize: none;
	/* height: 48px; */
	max-height: 80px;
	line-height: 1.5;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
	/* height: 40px; */
}
textarea:focus,
textarea:focus-visible {
	border: unset;
	outline: unset;
}

.send-btn {
	padding: 6px 12px;
	height: 32px;
	background: #1976d2;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.send-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.flicker {
	animation: flicker 0.5s alternate infinite;
}
@keyframes flicker {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
