
.form-control{
  border-color: #1ab394 !important;
  padding: 6px 6px !important;
}

pre{
  position: relative;
  color: #adbac7;
  background: #2b2a2a;
}

.copy-btn{
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background-color: #0b2f99;
  color: #e2dfea;
  cursor: pointer;
}

.title{
  width: 100%;
}



.answer{
    width: 100%;
    position: relative;
    height: calc(70vh - 165px);
    border-radius: 10px;
    border: solid 1px #dddddd;
}


.answer .function{
  padding: 0 15px;
  width: 100%;
  position: absolute;
  bottom: 20px;
}
.answer .others{
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding: 0 15px;
  height: 30px;
  margin-bottom: 10px;
}

.answer .others .left,.right{
  display: flex;
}

.answer .others .common{
  width: 30px;
  height: 30px;
  display: flex;
}

.answer .others .common .settings-common{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.answer .others .common .settings-common:hover{
  background-color: rgba(148,163,184,.2);
}

.answer .others .common .settings-common:last-child{
  border-bottom: 0;
}

.answer .others .common .settings-common .ipt-common{
  width: 60%;
  opacity: .8;
}

.answer .others .common .settings-common span{
  color: #1ab394;
  cursor: default;
}
.answer .others .common .settings-common a{
  font-size: 14px;
  color: #1ab394;
  cursor: pointer;
  text-decoration: none;
}

/* 按钮样式 */
.chck-btn{
  display: flex;
  justify-content: center;
  width: 60px;
  height: 34px;
}

/* Hide the input */
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.check-trail {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(148,163,184,.4);
  border-radius: 15px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.check-handler {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background: rgb(148 163 184 / 85%);
  border-radius: 50%;
  transition: all 0.5s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.check-handler:before {
  content: "×";
  color: white;
  font-weight: bold;
}

input[type="checkbox"]:checked + .check-trail {
  background: #1ab394a3;
}
input[type="checkbox"]:checked + .check-trail .check-handler {
  margin-left: 26px;
  background: #1ab394;
}
input[type="checkbox"]:checked + .check-trail .check-handler::before {
  content: "✔";
}

.answer .others .right .screenshot{
  margin-right: 10px;
}

.answer .others .icon-style{
  width:30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #1ab394;
  cursor: pointer;
}

.answer .others .icon-style:hover{
  background-color: rgba(26, 179, 148,.1);
}

.answer .ipt{
  display:flex;
  align-items: center;
  padding-right: 15px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgb(199 199 199);
}
.answer .ipt textarea {
  resize: none;
  overflow-y: auto;
  border: none;
  box-shadow:none;
}
.answer .ipt textarea:focus{
  border: none !important;
  box-shadow: none !important;
}

.answer #chatWindow {
  width: 100%;
  max-height: calc(100% - 100px);
  height:auto;
  overflow-y: auto;
}

.message-bubble {
  margin: 10px;
  display: flex;
  align-items: flex-start;
  background-color:#fbfbfb;
  border-radius:10px;

}

.message-bubble .message-text{
  width: auto;
  max-width: calc(100% - 45px);
  font-size: 18px;
  margin-left:15px;
  word-break: break-all;
}

.message-bubble .message-text p{
  white-space: pre-wrap;
}

.message-bubble .response ol,ul{
  padding-left: 2em;
}

/* 错误信息样式 */
.message-bubble .message-text p.error{
  color:red;
  height:auto;
  display: block;
  white-space: normal;
  word-break: break-all;
}

.message-bubble .chat-icon {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.message-bubble .request-icon{
     border-radius:50%;
    background-color: #0b2f99;
   margin: 24px 10px 0px 20px;
   width: 10px;
   height: 10px;
   
}

.message-bubble .response-icon{
 margin-top: 13px;
 background-image: url(https://vxzoo.cn/img/logo-small.png);
 margin: 13px 0px 0px 10px;

}

.message-bubble .response .loading-icon{
  color: #1ab394;
}
.btn-primary {
	color:#fff;
	background-color:#0a2f99;
}
.btn-primary:hover {
	color:#fff;
	background-color:#07153f;
}

.text-center {
	text-align:center
}
.col-xs-12 {
	width:100%
}
.btn {
	display:inline-block;
	padding:6px 12px;
	margin-bottom:0;
	font-size:14px;
	font-weight:400;
	line-height:1.42857143;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	-ms-touch-action:manipulation;
	touch-action:manipulation;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	background-image:none;
	border:1px solid transparent;
	border-radius:4px
}

.form-control {
	display:block;
	width:100%;
	height:34px;
	padding:6px 12px;
	font-size:14px;
	line-height:1.42857143;
	color:#555;
	background-color:#fff;
	background-image:none;
	border:1px solid #ccc;
	border-radius:4px;
	-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
}
.form-control:focus {
	border-color:#66afe9;
	outline:0;
	-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
	box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}
body .comment-container .response {
    padding-bottom: 0px;
}
pre {
	padding:9.5px;
	line-height:1.42857143;
	background-color:#f5f5f5;
	border-radius:4px
}
pre code {
	padding:0;
	font-size:inherit;
	color:inherit;
	white-space:pre-wrap;
	background-color:transparent;
	border-radius:0
}
code {
	padding:2px 4px;
	font-size:90%;
	color:#0b2f99;
	border-radius:4px
}
pre code span {
    font-weight:normal;
}