body{
	margin: 0;
	padding: 0;
}
.chat{
	width: 100%;
	height: 100vh;
	min-height: 800px;
	position: relative;
	padding-top: 14px;
	background: rgb(188,188,188);
	box-sizing: border-box;
}
.chat-box{
	width: 1180px;
	height: calc(100vh - 88px);
	min-height: 720px;
	position: relative;
	margin: 0 auto;
	background: white;
	box-sizing: border-box;
	border: 1px solid rgb(211,211,211);
	border-radius: 8px;
	top: 30px;
}
.chat-box-left{
	width: 300px;
	height: 100%;
	position: relative;
	float: left;
	box-sizing: border-box;
	border-right: 1px solid rgb(211,211,211);
	background: rgb(233,233,233);
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.chat-box-right{
	width: 878px;
	height: 100%;
	position: relative;
	float: right;
	box-sizing: border-box;
}
.chat-status{
	width: 100%;
	height: 40px;
	position: relative;
	background: rgb(244,244,244);
	border-bottom: 1px solid rgb(211,211,211);
	box-sizing: border-box;
}
.chat-model{
	display: block;
	float: left;
	padding: 0 10px;
	height: 39px;
	text-align: center;
	line-height: 39px;
	font-size: 12px;
	color: black;
	cursor: pointer;
}
.clear-history{
	display: block;
	float: right;
	padding: 0 10px;
	height: 39px;
	text-align: center;
	line-height: 39px;
	font-size: 12px;
	color: rgb(122,122,122);
	cursor: pointer;
}
.clear-history:hover{
	color: black;
}
.chat-box-right-upper{
	width: 100%;
	height: calc(80% - 40px);
	position: relative;
	box-sizing: border-box;
	border-bottom: 1px solid rgb(211,211,211);
	overflow-y: scroll;
	padding: 15px;
	border-top-right-radius: 8px;
}
.chat-box-right-upper-inner{
	width: 100%;
	height: auto;
	position: relative;
}
.chat-box-right-bottom{
	width: 100%;
	height: 20%;
	position: relative;
	box-sizing: border-box;
	border-bottom-right-radius: 8px;
}
/* 滚动条整体样式 */
::-webkit-scrollbar {
	width: 6px; /* 设置滚动条的宽度 */
}

/* 滚动条滑块样式 */
::-webkit-scrollbar-thumb {
	background-color: #888; /* 设置滑块的背景颜色 */
	border-radius: 4px; /* 设置滑块的圆角 */
	height: 3px;
}

/* 滚动条轨道样式 */
::-webkit-scrollbar-track {
	background-color: #f1f1f1; /* 设置轨道的背景颜色 */
	border-radius: 5px; /* 设置轨道的圆角 */
}

/* 鼠标悬停在滚动条上时的样式 */
::-webkit-scrollbar-thumb:hover {
	background-color: rgb(122,122,122); /* 设置滑块的背景颜色 */
}
.chat-send-box{
	width: 100%;
	height: 30px;
	position: relative;
	top: -35px;
	z-index: 100;
	box-sizing: border-box;
	padding: 0 10px;
}
.chat-send-button{
	width: 100px;
	height: 30px;
	position: relative;
	float: right;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	color: white;
	background: #009035;
	border-radius: 5px;
	cursor: pointer;
}
.chat-send-button:hover{
	opacity: 0.8;
}
#chat-text{
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	border: none;
	box-sizing: border-box;
	padding: 5px 10px;
	font-size: 14px;
	color: black;
	line-height: 18px;
	font-family: "Microsoft YaHei";
}
#chat-text:focus{
	outline:none;
}
.answer-box{
	max-width: 70%;
	height: auto;
	padding: 0px 10px 0px 10px;
	box-sizing: border-box;
	margin-top: 40px;
}
.answer-box-inner{
	width: 100%;
	font-size: 14px;
	color: black;
	line-height: 22px;
	background: #f2fffc;
	padding: 15px 10px;
	user-select: text;
	word-break: break-word;
}
.ask-box{
	width: 100%;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
	position: relative;
}
.ask-box-inner{
	max-width: 50%;
	height: auto;
	border-radius: 5px;
	position: relative;
	background: #009035;
	font-size: 14px;
	color: white;
	text-align: left;
	border-radius: 5px;
	float: right;
	padding: 10px;
	user-select: text;
}
.append-mark{
	clear:both;
}
.pre-title{
	width: 100%;
	height: 25px;
	background: rgb(44,44,44);
	box-sizing: border-box;
}
.pre-title-lng{
	display: block;
	position: relative;
	float: left;
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	text-align: left;
	font-size: 13px;
	color: white;
}
.copy-code{
	display: block;
	position: relative;
	font-size: 12px;
	line-height: 25px;
	float: right;
	height: 25px;
	text-align: right;
	padding: 0 5px;
	color: white;
	cursor: pointer;
}
.copy-code:hover{
	font-weight: bolder;
}
.pre-box{
	width: 100%;
	position: relative;
	background: rgb(99,99,99);
	overflow-x: auto;
	padding: 5px;
	font-size: 13px;
	color: white;
	user-select: text;
	white-space: pre;
	font-family: "Microsoft YaHei";
	padding: 5px 14px;
	box-sizing: border-box;
}
.first-prompt{
	max-width: 80%;
	height: auto;
	padding: 20px 10px 30px 10px;
	box-sizing: border-box;
}
.login{
	text-decoration: underline;
	color: #1e169b;
	cursor: pointer;
}
.lng-title{
	width: 100%;
	height: 20px;
	background: rgb(211,211,211);
	font-size: 14px;
	color: black;
	text-align: left;
	line-height: 20px;
}
.copy-all{
	width: auto;
	height: 20px;
	position: relative;
	font-size: 12px;
	color: #1e169b;
	text-align: right;
	line-height: 20px;
	float: right;
	cursor: pointer;
}
.copy-all:hover{
	font-weight: bolder;
}
.chat-model-box{
	width: 100%;
	height: 60%;
	position: relative;
	padding: 14px;
	box-sizing: border-box;
}
.chat-model-box-title{
	width: 100%;
	height: 40px;
	position: relative;
	border-bottom: 1px solid rgb(211,211,211);
}
.model-box-title-header{
	width: 40px;
	height: 40px;
	position: relative;
	display: block;
	float: left;
	text-align: center;
}
.model-box-title-header img{
	width: 28px;
	height: 28px;
	position: relative;
	top: -1px;
	left: 5px;
}
.model-box-title-text{
	width: auto;
	height: 30px;
	position: relative;
	float: left;
	display: block;
	font-size: 16px;
	color: black;
	line-height: 30px;
	padding-left: 5px;
}
.chat-model-box-models{
	width: 100%;
	height: 100%;
	position: relative;
	background: rgb(244,244,244);
	padding:5px 15px 12px 15px;
	box-sizing: border-box;
}
.chat-models-wrapper{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: scroll;
	padding-bottom: 15px;
	box-sizing: border-box;
}
.chat-model-list{
	width: 100%;
	height: 30px;
	position: relative;
	display: block;
	border: 1px solid rgb(211,211,211);
	box-sizing: border-box;
	padding: 0 5px;
	cursor: pointer;
	margin-top: 8px;
}
.chat-model-list:hover{
	border: 1px solid black;
}
.model-list-name{
	width: 75%;
	height: 28px;
	display: block;
	float: left;
	position: relative;
	text-align: left;
	line-height: 28px;
	font-size: 14px;
	color: black;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
}
.model-list-charge{
	width: auto;
	height: 20px;
	float: right;
	padding: 0 5px;
	position: relative;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: rgb(44,44,44);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
	border-radius: 5px;
	margin-top: 4px;
	background: rgb(211,211,211);
}
.chat-user{
	width: 100%;
	height: 25%;
	position: relative;
	padding: 14px 14px 14px 14px;
	box-sizing: border-box;
}
.chat-user-wrapper{
	width: 100%;
	height: 100%;
	position: relative;
	background: rgb(244,244,244);
	padding: 10%;
	box-sizing: border-box;
}
.chat-user-logo{
	width: auto;
	height: 45px;
	position: relative;
	display: block;
	left: 30px;
}
.chat-user-des{
	width: 100%;
	height: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: rgb(44,44,44);
	position: relative;
	margin-top: 14px;
}
.chat-user-img{
	height: 80%;
	position: relative;
	display: block;
	margin-left: 22%;
}
.chat-user-box{
	width: 100%;
	height: 20%;
	position: relative;
	margin-top: 5px;
	font-size: 14px;
	color: rgb(88,88,88);
}
.chat-use-wrapper-upgrade span{
	width: 100px;
	height: 25px;
	position: relative;
	display: block;
	background: #cb7201;
	font-size: 12px;
	color: white;
	text-align: center;
	line-height: 25px;
	border-radius: 5px;
	cursor: pointer;
}
.chat-use-wrapper-upgrade span:hover{
	opacity: 0.8;
}
.chat-promotion{
	width: 100%;
	height: 15%;
	position: relative;
	background: #dae6fb;
	padding: 14px;
	box-sizing: border-box;
}
.chat-promotion-inner{
	width: 100%;
	height: 100%;
	position: relative;
	background:rgba(255,255,255,.8);
	cursor: pointer;
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 16px;
	color: white;
}
.chat-promotion-inner:hover{
	box-shadow: 1px 1px 5px rgba(0,0,0,.5);
}
chat-promotion-inner:hover > .chat-promotion-contact{
	color: rebeccapurple;
}
.chat-promotion-title{
	width: 100%;
	height: 40px;
	position: relative;
	color: #330506;
	font-size: 16px;
	font-weight: bold;
	line-height: 45px;
	text-align: center;
}
.chat-promotion-des{
	width: 100%;
	height: 20px;
	position: relative;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: rgb(88,88,88);
}
.chat-promotion-contact{
	width: 100%;
	height: 30px;
	display: block;
	position: relative;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	color: white;
}
.chat-promotion-contact img{
	width: 20px;
	height: 20px;
	position: relative;
	top: 5px;
}
#model-select{
	cursor: pointer;
	outline: none;
	border: none;
	background: none;
}
.chat-promotion-kefu{
	width: 100%;
	height: 30px;
	position: relative;
	line-height: 30px;
}
.chat-promotion-kefu span{
	font-size: 16px;
	color: black;
}
.chat-promotion-kefu img{
	position: relative;
	width: 18px;
	top: 3px;
}
#tel-kefu{
	display: block;
	text-decoration: none;
	width: 210px;
	height: 30px;
	border-radius: 15px;
	background: #ffad42;
	position: relative;
	line-height: 30px;
	box-shadow: 3px 3px 3px rgba(0,0,0,.5);
	text-align: center;
	font-size: 14px;
	color: white;
}