
body{
	background-color: rgb(244,246,247);
}
.main{
	width: 100%;
	min-width: 1000px;
	padding: 20px 40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}
.main-name{
	color: #fff;
	text-align: center;
}
.chart-list{
	max-width: 1000px;
	width: 100%;
}
.send-title{
	text-align: right;
	color: #333;
	margin: 10px 0;
}
.msg-title{
	color: cadetblue;
	margin: 10px 0;
	color: rgb(78,69,248);
}
.send-content-box{
	/* width: 100%; */
	max-width: 80%;
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
	/* border: 1px solid #333333; */
	text-align: right;
	background-color: rgb(78,69,248);
	color: #ffffff;
	margin-right: 20px;
}
.back-messagetext{
	/* width: 100%; */
	max-width: 80%;
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
	/* border: 1px solid #333333; */
	text-align: left;
	background-color: #ffffff;
	color: rgb(78,69,248);
	border:1px solid rgb(78,69,248);
	margin-left: 20px;
	line-height: 30px;
}
.status-block{
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: red;
	margin-left: 10px;
}
.main-left-tabs-box{
	padding: 20px;
	background-color: rgb(78,69,248);
	border-radius: 10px;
	display: inline-block;
	box-sizing: border-box;
}
.tabs-icon{
	width: 32px;
	height: 32px;
}
.tab-item-box{
	width: 100%;
	padding: 20px 0px;
	box-sizing: border-box;
	position: relative;
}
.left-icon{
	width: 24px;
	height: 24px;
	position: absolute;
	right: -25px;
}
.tabs-content-list{
	width: 300px;
	height: 100%;
	box-sizing: border-box;
}
.tabs-c-top-box{
	width: 100%;
	height: 32px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}
.tabs-top-title{
	font-size: 20px;
	color: rgb(12,9,37);
	font-weight: bold;
}

.c-line-box{
	width: 1px;
	background-color: #999;
	margin-left: 10px;
}
.news-message{
	width: 30px;
	height: 30px;
	background-color: #ffffff;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.message-abridge-list{
	width: 100%;
}
.message-abridge-item{
	padding: 20px;
	border-bottom: 1px solid #999;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	box-sizing: border-box;
	margin: 0 10px;
}
.message-abridge-itemed{
	padding: 20px;
	/* border-bottom: 1px solid #999; */
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	background-color: #ffffff;
	box-sizing: border-box;
	margin: 0 10px;
	box-shadow: 0 4px 4px rgba(78,69,248,.3);
	border-radius: 10px;
}
.message-head{
	width: 50px;
	height: 50px;
	background-color: rgb(78,69,248);
	display: flex;
	justify-content: center;
	align-items: center;
}
.message-abridge-content{
	flex: 1;
	height:50px;
	text-align: left;
	padding: 0px 10px;
}
.message-abridge-name{
	font-size: 16px;
	font-weight: bold;
	color: rgb(12,9,37);
}
.message-abridge-text{
	font-size: 12px;
	color: rgb(104,101,124);
	margin-top: 4px;
}
.communicate-box{
	flex: 1;
	margin-left: 20px;
}
.communicate-content-box{
	width: 100%;
	min-width: 500px;
	height: 500px;
	border-radius: 20px;
	background-color: #ffffff;
	position: relative;
}
.send-input-box{
	width: 80%;
	min-height: 70px;
	background-color: #ffffff;
	box-shadow: 0 0 10px rgba(78,69,248,.3);
	border-radius: 30px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	bottom: 30px;
	left: 10%;
	padding: 0px 20px;
	box-sizing: border-box;
}
.send-input{
	flex: 1;
	margin: 0 10px;
	border: none;
	min-height: 70px;
	line-height: 70px;
	font-size:16px;
	color: #333;
}
input:focus {
  outline: none;
}
.send-btn{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.send01{
	display: none;
}.send-btn:hover{
	background-color: rgb(78,69,248);
}
.send-btn:hover .send01{
	display: inline;
}
.send-btn:hover .send02{
	display: none;
}
.communicate-content{
	padding: 30px;
	box-sizing: border-box;
}
.send-result-box{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
}
.back-result-box{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}