*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html,body{
	width: 100%;
	height: 100%;
	background-color: rgb(22, 22, 23);
}
.bg{
	width: 100%;
	height: 100%;
	background: url(../img/2.jpeg) no-repeat center / cover;
	display: flex;
	flex-direction: column;
	padding-bottom: 62px;
}
header{
	width: 100%;
	line-height: 58px;
	position: relative;
	/* background-color: #fff; */
}
.back{
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.back svg{
	width: 20px;
	height: 20px;
}
.title{
	width: 100%;
	text-align: center;
	font-size: 18px;
	color: rgb(241 241 241);
}
.bottom{
	position: fixed;
	width: 100%;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px 10px 10px;
}
.input{
	width: calc(98% - 30px);
	height: 52px;
	background-color: rgb(78, 73, 75);
	border: none;
	border-radius: 13px;
	padding: 0 10px;
	outline: none;
	color: #fff;
	font-size: 18px;
}
.sent{
	width: 30px;
	height: 30px;
	border: none;
	background-color: transparent;
}
.sent svg{
	width: 100%;
	height: 100%;
}
.content{
	position: relative;
	flex-grow: 1;
}

.chat-list{
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
}
.desc{
	background-color: rgb(35 35 35 / 90%);
	width: 100%;
	margin: 10px auto;
	color: #b9b9b9;
	font-size: 14px;
	padding: 15px;
	border-radius: 10px;
}
.desc-title{
	color: #e3e3e6;
	font-size: 16px;
}
.chatterer{
	background-color: #664b6d;
	border-radius: 15px;
	border-bottom-left-radius: 5px;
	padding: 15px 20px;
	font-size: 16px;
	color: #d4d4d4;
	align-self: flex-start;
	margin-bottom: 15px;
}
.self{
	background-color: #22242e;
	border-radius: 15px;
	border-bottom-right-radius: 5px;
	padding: 15px 20px;
	font-size: 16px;
	color: #e3e3e6;
	align-self: end;
	margin-bottom: 15px;
}