* {
  padding: 0;
  margin: 0;
}

:root {
  background-color: #ededed;
}

.box {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #ededed;
}

.hidden {
  display: none;
}

.iconfont.icon-chat {
  font-size: 30px;
  color: gray;
}

.iconfont.icon-deepseek-copy-copy {
  font-size: 30px;
  color: #5842f2;
}

.iconfont.icon-sangedian {
  font-size: 25px;
  position: sticky;
  left: 815px;
  top: 5px;
  transition: transform .5s ease;
  z-index: 10;
}

.iconfont.icon-sangedian:hover {
  cursor: pointer;
  transform: scale(1.5);
}

.box>.inabstop {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-user-select: none;
  user-select: none;
  z-index: 100;
}

.box>.inabstop>.inabstop-item {
  margin: 10px;
  width: 200px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  padding: 10px 10px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  cursor: pointer;
  background: #ededed;
}

.box>.inabstop>.inabstop-item>span {
  display: inline-block;
  vertical-align: top;
  height: 30px;
  line-height: 30px;
}

.box>.inabstop>.inabstop-item.activate {
  background-color: #fff;
  cursor: default;
}

.inbox {
  position: fixed;
  width: 850px;
  height: 450px;
  border: 1px solid #ccc;
  border-bottom: none;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  overflow: auto;
  background-color: #ededed;
  border-radius: 8px 8px 0 0;
}

.inbox::-webkit-scrollbar {
  display: none;
}

.inbox .content {
  padding: 25px;
  list-style: none;
}

.inbox .content li {
  padding: 10px 0;
  clear: both;
  overflow: hidden;
}

.inbox .content .left {
  display: flex;
}

.inbox .content .left .avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.inbox .content .left .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.inbox .content .left .mainbox {
  margin-left: 15px;
  max-width: 700px;
}

.inbox .content .left .mainbox .name {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
}

.inbox .content .left .mainbox .text {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.6;
  word-wrap: break-word;
  word-break: break-all;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.inbox .content .right {
  display: flex;
  flex-direction: row-reverse;
}

.inbox .content .right .avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.inbox .content .right .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.inbox .content .right .mainbox {
  margin-right: 15px;
  max-width: 600px;
  text-align: right;
}

.inbox .content .right .mainbox .text {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #95ec69;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.input {
  position: fixed;
  width: 800px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  top: 580px;
  border: 1px solid #ccc;
  padding: 15px 25px;
  background: #f5f5f5;
  border-radius: 0 0 8px 8px;

}

.input form {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.input form textarea {
  resize: none;
  width: 85%;
  height: 40px;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  vertical-align: top;
}

.input form button {
  vertical-align: top;
  width: 100px;
  height: 40px;
  line-height: 40px;
  background: #5842f2;
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 5px;
  position: absolute;
  font-size: 16px;
  right: 0;
  bottom: 10px;
  transition: background-color .3s;
}

.input form button:hover {
  background-color: orange;
  transform: scale(1.1);
}

.caidan {
  position: fixed;
  background-color: #fff;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  left: 50%;
  transform: translateX(-30px);
  top: 135px;
  margin-left: 210px;
  display: none;
  z-index: 999;
  padding: 20px;
}

.iconfont.icon-cuocha_kuai {
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  color: #999;
}

.iconfont.icon-cuocha_kuai:hover {
  color: #333;
}

.caidan .userConfig>p {
  margin: 10px 0;
  font-size: 16px;
}

.caidan .userConfig .button {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.caidan .userConfig>.button>button {
  padding: 8px 0;
  border-radius: 5px;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%;
}

.caidan .userConfig>.button>.tabuser {
  background-color: #5842f2;
}

.caidan .userConfig>.button>.outlogin {
  background-color: #ff4d4f;
}