@charset "UTF-8";
#chatApp {
  opacity: 0;
}
#chatApp div::-webkit-scrollbar,
#chatApp textarea::-webkit-scrollbar {
  width: 8px;
}
#chatApp div::-webkit-scrollbar-track,
#chatApp textarea::-webkit-scrollbar-track {
  border-radius: 5px;
}
#chatApp div::-webkit-scrollbar-thumb,
#chatApp textarea::-webkit-scrollbar-thumb {
  width: 8px;
  max-height: 150px;
  background: rgba(26, 166, 167, 0.2);
  border-radius: 5px;
}
#chatApp div::-webkit-scrollbar-thumb:hover,
#chatApp textarea::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 166, 167, 0.8);
}
#chatApp .chatTips {
  width: 68px;
  height: 58px;
  line-height: 58px;
  background: #fff;
  box-shadow: 2px 5px 12px 4px #f7f5e8;
  border-radius: 100px 0 0 100px;
  font-size: 18px;
  font-weight: 300;
  color: #37393d;
  transition: 0.2s linear;
  transition-property: width;
  text-align: center;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 0;
}
#chatApp .chatTips .chatTips-2 {
  display: none;
  opacity: 0;
  transition: 0.5s linear;
}
#chatApp .chatTips .chatTips-1 {
  display: block;
}
#chatApp .chatTips .chatTips-edit {
  display: none;
  width: 18px;
  height: 19px;
  margin-right: 8px;
}
#chatApp .chatTips:hover {
  width: 138px;
  background-color: #6fddde;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  box-shadow: 2px 5px 12px 4px #f7f5e8;
}
#chatApp .chatHint2,
#chatApp .chatLayout .chatHint {
  top: calc(50% - 24px);
  text-align: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.43);
}
#chatApp .chatTips:hover .chatTips-edit {
  display: block;
}
#chatApp .chatTips:hover .chatTips-2 {
  display: block;
  opacity: 1;
}
#chatApp .chatTips:hover .chatTips-1 {
  display: none;
}
#chatApp .chatLayout {
  position: fixed;
  bottom: 10px;
  right: 0;
  width: 382px;
  height: 666px;
  max-height: calc(100vh - 80px);
  z-index: 999;
}
#chatApp .chatLayout .chatHint {
  width: 146px;
  height: 48px;
  line-height: 48px;
  color: #fff;
  background: rgba(29, 35, 42, 0.79);
  border-radius: 4px;
  position: absolute;
  left: calc(50% - 73px);
}
#chatApp .chatLayout .chatLayout-left {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 102px;
  /* background-image: url(../img/chatLayout-left.png); */
  background-size: 100% 100%;
  cursor: pointer;
}
#chatApp .chatLayout .chatLayout-left .chatLayout-left-img {
  width: 18px;
  height: 21px;
  position: absolute;
  right: 4px;
  top: calc(50% - 14px);
}
#chatApp .chatLayout .chatLayout-right {
  width: 340px;
  height: 666px;
  max-height: calc(100vh - 80px);
  background: #fff;
  box-shadow: 2px 5px 12px 4px #f7f5e8;
  border-radius: 10px;
}
#chatApp .chatLayout .chat-tabList {
  width: 100%;
  height: 55px;
  background: linear-gradient(218deg, #68d5d6 0, #72e1e2 51%, #5bd3d4 100%);
  box-shadow: inset 0 3px 7px 1px rgba(255, 250, 250, 0.5);
  border-radius: 4px;
  padding: 4px 6px 0;
}
#chatApp .chatLayout .chat-tabList .tabList-tab {
  width: 164px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  background: 0 0;
  cursor: pointer;
}
#chatApp .chatLayout .chat-tabList .tabList-tab.tabList-tabActive {
  font-size: 20px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  color: #262345;
}
#chatApp .chatLayout .chat-inner {
  padding: 16px;
  max-height: calc(100% - 55px);
  overflow-y: auto;
}
#chatApp .chatLayout .chat-inner .chat-inner-textarea {
  padding: 6px 12px;
  width: 100%;
  height: 116px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(79, 92, 89, 0.4);
  font-size: 18px;
  resize: none;
}
#chatApp .chatLayout .chat-inner .chat-inner-textarea:active,
#chatApp .chatLayout .chat-inner .chat-inner-textarea:focus,
#chatApp .chatLayout .chat-inner .chat-inner-textarea:focus-visible,
#chatApp .chatLayout .chat-inner .chat-inner-textarea:hover {
  box-shadow: 0 0 0 6px rgba(113, 224, 225, 0.17);
  border: 2px solid #72e1e1;
  outline: 0;
}
#chatApp .chatLayout .chat-inner .chat-inner-textarea::-webkit-input-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-textarea:-moz-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-textarea::-moz-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-textarea::-ms-input-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #262345;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list {
  padding-left: 20px;
  margin-top: 20px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-selected {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-line {
  margin-bottom: 18px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-item {
  cursor: pointer;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 300;
  color: #37393d;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-my {
  width: 248px;
  padding-left: 10px;
  height: 25px;
  line-height: 25px;
  background-color: rgba(111, 221, 222, 0.16);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
  color: #37393d;
  margin-left: 26px;
  margin-top: 4px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other {
  margin-top: 15px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input {
  padding-left: 12px;
  width: 100%;
  height: 30px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(79, 92, 89, 0.4);
  font-size: 18px;
  resize: none;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input:active,
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input:focus,
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input:focus-visible,
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input:hover {
  box-shadow: 0 0 0 6px rgba(113, 224, 225, 0.17);
  border: 2px solid #72e1e1;
  outline: 0;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input::-webkit-input-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input:-moz-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input::-moz-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-info .info-list .list-other input::-ms-input-placeholder {
  color: rgba(55, 57, 61, 0.43);
  font-size: 16px;
}
#chatApp .chatLayout .chat-inner .chat-inner-btn {
  margin: 25px auto 0;
  width: 278px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #1aa6a7;
  border-radius: 22px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
#chatApp .chatLayout .chat-question {
  padding: 16px 30px 16px 19px;
  max-height: calc(100% - 60px);
  overflow-y: auto;
}
#chatApp .chatLayout .chat-question .question-item {
  margin-bottom: 40px;
}
#chatApp .chatLayout .chat-question .question-title {
  font-size: 20px;
  font-weight: 500;
  color: #262345;
}
#chatApp .chatLayout .chat-question .question-content {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #37393d;
}
#chatApp .chatHint2 {
  position: fixed;
  left: calc(50% - 102px);
  min-width: 204px;
  padding: 0 10px;
  height: 48px;
  line-height: 48px;
  background: rgba(29, 35, 42, 0.79);
  border-radius: 4px;
  color: #fff;
}
