body {
	padding: 0;
	margin: 0;
}

.cori_chat {
	/*width: 720px;*/
	width: 930px;
	height: 630px;
	box-sizing: border-box;
	border-radius: 5px;
	box-shadow: #cacaca 0px 0px 2px 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.cori_chat_head {
	width: 100%;
	height: 50px;
	background-color: #4963F0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 5px 5px 0 0;
}

.cori_chat_avatar {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	margin-right: 6px;
}

.cori_chat_name {
	font-size: 16px;
	line-height: 16px;
}

.cori_chat_icon_close {
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin-right: 10px;
}

.cori_chat_left {
	/*width: 525px;*/
	width: 630px;
}

.cori_chat_right {
	/*width: 195px;*/
	width: 300px;
	border-left: 1px solid #F0F0F0;
	box-sizing: border-box;
	font-size: 12px;
}

.cori_chat_box {
	width: 100%;
	height: 510px;
	background-color: #F0F1F2;
}

.cori_chat_box_list {
	width: 100%;
	height: 474px;
	box-sizing: border-box;
	padding: 10px;
	overflow-y: auto;
}

.cori_chat_box_list::-webkit-scrollbar {
	display: block;
	width: 4px;
}

.cori_chat_box_list::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px #aaa;
	background: rgba(0, 0, 0, 0.2);
}

.cori_chat_box_list::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px #aaa;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.cori_chat_box_list_cell {
	display: flex;
}

.cori_chat_box_list_cell_avatar {
	width: 32px;
	height: 32px;
	margin-right: 6px;
}

.cori_chat_box_list_cell_info {
	width: calc(100% - 38px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.mr6 {
	margin-right: 6px;
}

.cori_chat_box_list_cell_content {
	margin: 6px 0 20px;
	font-size: 14px;
	max-width: 100%;
	background-color: #FFFFFF;
	box-sizing: border-box;
	padding: 6px 10px;
	border-radius: 5px;
}

.cori_chat_box_bottom {
	height: 36px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 10px;
}

.cori_chat_box_bottom_label {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	color: #62778C;
	border-radius: 12px;
	border: 1px solid #CED5E0;
	box-sizing: border-box;
	padding: 4px 10px 3px 9px;
	margin-right: 8px;
	cursor: pointer;
}

.cori_chat_box_bottom_label>img {
	width: 16px;
	height: 16px;
	margin-right: 2px;
}

.cori_chat_footer {
	width: 100%;
	height: 120px;
}

.cori_chat_footer_one {
	height: 30px;
	border-bottom: 1px solid #F0F0F0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.cori_chat_icon_emoji,
.cori_chat_icon_file {
	width: 22px;
	height: 22px;
	margin-left: 10px;
	cursor: pointer;
}

.cori_chat_right_title {
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #F0F0F0;
	box-sizing: border-box;
}

.cori_chat_right p {
	margin: 0;
}

.cori_chat_qrcode {
	width: 75px;
	height: 75px;
	margin-right: 10px;
}

.cori_chat_right_content {
	width: 100%;
	height: 480px;
	overflow-y: auto;
}

.cori_chat_right_content::-webkit-scrollbar {
	display: block;
	width: 4px;
}

.cori_chat_right_content::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px #aaa;
	background: rgba(0, 0, 0, 0.2);
}

.cori_chat_right_content::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px #aaa;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.cori_chat_kefu_name {
	color: #4B5086;
	font-size: 14px;
	font-weight: 500;
}

.cori_chat_right_more_contact_title {
	box-sizing: border-box;
	border-top: 1px solid #F0F0F0;
	border-bottom: 1px solid #F0F0F0;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cori_chat_right_more_contact {
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.cori_chat_icon_wechat,
.cori_chat_icon_tel {
	width: 30px;
	height: 30px;
	margin-bottom: 4px;
}

.cori_chat_input_body {
	height: 90px;
}

.cori_chat_input {
	height: 54px;
}

.cori_chat_input_textarea {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 5px;
	border: 0;
	resize: none;
	outline: none;
}

.cori_chat_input_bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 36px;
	box-sizing: border-box;
	padding-right: 10px;
}

.cori_chat_input_btn {
	width: 57px;
	height: 27px;
	border-radius: 3px 3px 3px 3px;
	background-color: #007AFF;
	color: #fff;
	font-size: 12px;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cori_chat_box_list_cell_content img {
	max-width: 100%;
}

.cori_chat_box_list_cell_content video {
	max-width: 100%;
}

.emoji_body {
	width: 420px;
	height: 240px;
	position: absolute;
	box-shadow: #cacaca 0px 0px 2px 1px;
	background-color: #fff;
	top: -240px;
	left: 0;
	z-index: 99;
	display: flex;
}

.overflow_y {
	overflow-y: auto;
}

.overflow_y::-webkit-scrollbar {
	display: block;
	width: 4px;
}

.overflow_y::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px #aaa;
	background: rgba(0, 0, 0, 0.2);
}

.overflow_y::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px #aaa;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.emoji_body>div {
	box-sizing: border-box;
	padding: 10px;
}

.icon_emoji {
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.information {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 490px;
	background-color: #fff;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}

.information_head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #4571E7;
	color: #fff;
	box-sizing: border-box;
	padding: 15px 20px;
	font-size: 14px;
}

.information_head img {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.information_line {
	margin-top: 20px;
	position: relative;
	font-size: 12px;
	color: #B8B8B8;
}

.information_line::before {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	left: 36px;
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, #EFF3F9 0%, #BFC2C7 54%, #EFF3F9 100%);
}

.information_line::after {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	right: 36px;
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, #EFF3F9 0%, #BFC2C7 54%, #EFF3F9 100%);
}

.information_input {
	box-sizing: border-box;
	padding: 7px 4px;
	width: 210px;
	background: #FFFFFF;
	border: 1px solid #4571E7;
	border-radius: 3px;
}

.information_btn {
	display: inline-block;
	width: 84px;
	height: 32px;
	line-height: 34px;
	border: none;
	background: #4571E7;
	border-radius: 3px;
	color: #FFF;
	font-size: 13px;
	cursor: pointer;
	margin-left: 10px;
}