@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
}

/* --------------- 全局滚动条样式 --------------- */
/* 整个滚动条 */
::-webkit-scrollbar {
  width: 8px; /* 垂直滚动条宽度 */
  height: 8px; /* 水平滚动条高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

/* 滚动条滑块悬停状态 */
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 滚动条滑块激活状态（点击时） */
::-webkit-scrollbar-thumb:active {
  background: #888;
}

/* 滚动条角落（垂直和水平滚动条交汇处） */
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

.file-upload-hover {
  background: rgba(149, 213, 250, 0.8) !important;
  border-color: #0052D9;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .left {
  width: 13.7%;
  height: 100%;
  background: #F4F4F4;
  padding: 40px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.container .left .logo {
  width: 104px;
  height: 86px;
}
.container .left .btn-left {
  width: 100%;
  height: 44px;
  background: linear-gradient(90deg, #0765FF 0%, #8577FF 100%);
  border-radius: 12px 12px 12px 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  padding: 0 12px;
  box-sizing: border-box;
  margin-top: 20px;
  cursor: pointer;
}
.container .left .btn-left img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
.container .left .dh-list {
  width: 100%;
  margin-top: 20px;
}
.container .left .dh-list .title {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  line-height: 34px;
}
.container .left .dh-list .item {
  width: 100%;
  height: 600px;
  margin-top: 27px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
}
.container .left .dh-list .item .item::-webkit-scrollbar {
  display: none;
}
.container .left .dh-list .item .item-list {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 16px;
  cursor: pointer;
}
.container .left .dh-list .item .item-list p {
  font-size: 14px;
  color: #333333;
  width: 181px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.container .left .dh-list .item .item-list img {
  width: 24px;
  height: 24px;
}
.container .left .active {
  background: #D8E7FF;
  color: #1965AC;
}
.container .right {
  width: 86.3%;
  height: 100%;
  background: #fff;
  position: relative;
  /* 定义动画 */
  /* 应用动画 */
}
.container .right .typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.container .right .typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: #9CA3AF;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}
.container .right .typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}
.container .right .typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes typing {
  0% {
    transform: translateY(0px);
  }
  28% {
    transform: translateY(-5px);
  }
  44% {
    transform: translateY(0px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container .right .auto-fade-in {
  /* 动画名称、时长、缓动方式、填充模式（保持最后一帧状态） */
  animation: fadeIn 0.3s ease forwards;
  opacity: 0; /* 初始透明 */
}
.container .right .newLog {
  width: 100%;
  height: 100%;
}
.container .right .newLog .newLog-container {
  width: 804px;
  height: 248px;
  border-radius: 0px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.container .right .newLog .newLog-container .newLog-title {
  width: 100%;
  height: 77px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 189px;
  font-size: 20px;
  color: #0C2E51;
  font-weight: 600;
}
.container .right .newLog .newLog-container .newLog-title img {
  width: 77px;
  height: 77px;
}
.container .right .newLog .newLog-container .newLog-cont {
  width: 100%;
  height: 140px;
  background: #F5F9FF;
  border-radius: 25px 25px 25px 25px;
  border: 1px solid #D8D8D8;
  padding: 16px;
  position: relative;
}
.container .right .newLog .newLog-container .newLog-cont img {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  cursor: pointer;
}
.container .right .newLog .newLog-container .newLog-cont textarea {
  width: 100%;
  height: 100%;
  background: #F5F9FF;
  border: 0;
  resize: none;
}
.container .right .newLog .newLog-container .newLog-cont textarea:focus {
  outline: none;
}
.container .right .newLogList {
  width: 100%;
  height: 100%;
  padding: 104px 498px 40px 355px;
}
.container .right .newLogList .newLogList-container-box {
  width: 100%;
  height: 734px;
  padding-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  overflow-y: auto;
  margin-bottom: 20px;
}
.container .right .newLogList .newLogList-container-box .newLogList-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-my {
  background: #EFF6FF;
  border-radius: 6px 6px 6px 6px;
  padding: 10px 20px;
  line-height: 24px;
  max-width: 90%;
  height: auto;
  float: right;
  margin-right: 20px;
  overflow-wrap: break-word; /* 主流浏览器支持 */
  /* 兼容旧版浏览器 */
  word-wrap: break-word;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-ai {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
  width: 100%;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-ai img {
  width: 34px;
  height: 34px;
  margin-right: 15px;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-ai .container-ai-right-text {
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  width: 90%;
  overflow-wrap: break-word; /* 主流浏览器支持 */
  /* 兼容旧版浏览器 */
  word-wrap: break-word;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-ai .container-ai-right {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 20px;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-ai .container-ai-right .img-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .right .newLogList .newLogList-container-box .newLogList-container .container-ai .container-ai-right .img-box img {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  cursor: pointer;
}
.container .right .newLogList .newLogList-text {
  width: 100%;
  height: 140px;
  background: #F5F9FF;
  border-radius: 25px 25px 25px 25px;
  border: 1px solid #D8D8D8;
  position: relative;
  padding: 16px;
}
.container .right .newLogList .newLogList-text img {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  cursor: pointer;
}
.container .right .newLogList .newLogList-text textarea {
  width: 100%;
  height: 100%;
  background: #F5F9FF;
  border: 0;
  resize: none;
}
.container .right .newLogList .newLogList-text textarea:focus {
  outline: none;
}
.container .right .plan {
  width: 100%;
  height: 100%;
  padding-top: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-left: 182px;
  padding-right: 247px;
}
.container .right .plan .up-container {
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .right .plan .up-container .tit {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #0052D9;
  margin-bottom: 44px;
}
.container .right .plan .up-container .up-left, .container .right .plan .up-container .up-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.container .right .plan .up-container .up-left .tips, .container .right .plan .up-container .up-right .tips {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 20px;
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.container .right .plan .up-container .up-left .tips img, .container .right .plan .up-container .up-right .tips img {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}
.container .right .plan .up-container .up-box {
  width: 585px;
  height: 302px;
  border-radius: 2px 2px 2px 2px;
  border: 2px dotted rgba(236, 234, 234, 0.7058823529);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.container .right .plan .up-container .up-box img {
  width: 113px;
  height: 113px;
  margin-top: 78px;
}
.container .right .plan .up-container .up-box .up-tips {
  width: 166px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 12px;
}
.container .right .plan .up-btn {
  width: 803px;
  height: 60px;
  background: #1961AC;
  border-radius: 6px 6px 6px 6px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 220px;
  cursor: pointer;
}
.container .right .planList {
  width: 100%;
  height: 100%;
  padding: 120px 340px;
  padding-bottom: 110px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.container .right .planList .log-box {
  min-height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.container .right .planList .my-list {
  width: 287px;
  min-height: 142px;
  background: #EFF6FF;
  border-radius: 6px 6px 6px 6px;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  float: right;
}
.container .right .planList .my-list .my-tit {
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  color: #333333;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #D0D0D0;
}
.container .right .planList .my-list .my-list-box {
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.container .right .planList .my-list .my-list-box img {
  width: 32px;
  height: 32px;
}
.container .right .planList .my-list .my-list-box p {
  width: 219px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
}
.container .right .planList .ai-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  float: left;
}
.container .right .planList .ai-list .logo-icon {
  width: 34px;
  height: 34px;
}
.container .right .planList .ai-list .ai-list-right {
  width: 100%;
  height: 100%;
  margin-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 15px;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box .ai-tit {
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  color: #333333;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #D0D0D0;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box .ai-list-item {
  width: 85%;
  height: 32px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #51b30f;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
  padding-right: 16px;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box .type0 {
  color: #f56c6c;
  background: #fef0f0;
  border-color: #fbc4c4;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box .type1 {
  color: #67c23a;
  background: #f0f9eb;
  border-color: #c2e7b0;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box .type2 {
  color: #e6a23c;
  background: #fdf6ec;
  border-color: #f5dab1;
}
.container .right .planList .ai-list .ai-list-right .ai-list-box .type3 {
  color: #409eff;
  background: #ecf5ff;
  border-color: #b3d8ff;
}
.container .right .planList .ai-list .ai-list-right .again-icon {
  width: 24px;
  height: 24px;
  margin-top: 15px;
  cursor: pointer;
}
.container .right .planList .send-btn {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #1961AC;
  border-radius: 6px 6px 6px 6px;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 20px;
}

.pop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pop .pop-container {
  width: 468px;
  height: 234px;
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
  font-weight: 600;
  padding-top: 74px;
}
.pop .pop-container p {
  font-size: 18px;
  color: #090A0A;
  text-align: center;
}
.pop .pop-container .one {
  width: 100%;
  height: 56px;
  line-height: 56px;
  border-radius: 0px 0px 0px 0px;
  text-align: center;
  font-size: 17px;
  color: #1961AC;
  margin-top: 58px;
  border-top: 1px solid #E6E6E6;
}
.pop .pop-container .btn-container {
  width: 100%;
  height: 56px;
  line-height: 56px;
  border-radius: 0px 0px 0px 0px;
  text-align: center;
  font-size: 17px;
  color: #1961AC;
  margin-top: 58px;
  border-top: 1px solid #E6E6E6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pop .pop-container .btn-container p {
  height: 100%;
  width: 1px;
  background: #E6E6E6;
}
.pop .pop-container .btn-container div {
  width: 50%;
  cursor: pointer;
}/*# sourceMappingURL=index.css.map */