.yy-chatbot-container {
  background: #f5fafd;
  position: relative;
}
.yy-chatbot-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  height: 720px;
}

.yy-chatbot-wrapper .left-container {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.yy-chatbot-wrapper .left-container .chat-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.yy-chatbot-wrapper .left-container .topics {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 10px 0;
  flex-shrink: 0;
}
.yy-chatbot-wrapper .left-container .topics span {
  padding: 3px 10px;
  margin: 0 10px;
  font-size: 14px;
  color: #155489;
  border: 1px dashed #6196c5;
  border-radius: 5px;
  cursor: pointer;
  word-break: keep-all;
}
.yy-chatbot-wrapper .left-container .topics span:hover {
  background: #2a83cf;
  color: #fff;
}
.yy-chatbot-wrapper .left-container .input-box {
  background: #fff;
  padding: 10px 20px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0px 2px 6px 0px #99999930;
  position: relative;
  margin-bottom: 10px;
}
.yy-chatbot-wrapper .left-container .input-box textarea {
  width: 100%;
  margin-bottom: 5px;
  resize: none;
  display: block;
  word-break: break-word;
  white-space: pre-wrap;
  border: none;
  overflow: hidden;
  font-size: 14px;
}
.yy-chatbot-wrapper .left-container .input-box .btns-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.yy-chatbot-wrapper .left-container .input-box .btns-container .deepseek {
  background-color: transparent;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bolder;
  height: 32px;
  flex-shrink: 0;
  /* border-radius: 22px;
  border: solid 1px rgba(0, 0, 0, 0.08);
  color: #757575;
  font-size: 14px; */
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -40px;
  border-radius: 5px;
  border: 1px dashed #6196c5;
  color: #155489;
  font-size: 18px;
}
.yy-chatbot-wrapper .left-container .input-box .btns-container .deepseek:hover {
  background-color: #f9f9f9;
}
.yy-chatbot-wrapper .left-container .input-box .btns-container .deepseek.checked {
  color: #155489;
  border-color: #53a2e1;
  background-color: #b5ddff;
}
.yy-chatbot-wrapper .left-container .input-box .btns-container .input-count {
  flex: 1;
  margin: 0 10px;
  text-align: end;
  font-size: 12px;
  color: #999;
}
.yy-chatbot-wrapper .left-container .input-box .btns-container .send-btn {
  padding: 0 15px;
  background: #2a83cf;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 36px;
  border-radius: 5px;
  cursor: pointer;
}
.yy-chatbot-wrapper .right-container {
  flex-shrink: 0;
  width: 340px;
  margin-left: 60px;
  background: #fff;
  border-left: solid 1px #eeeeee;
  border-right: solid 1px #eeeeee;
  overflow: auto;
}

.yy-chatbot-wrapper .right-container .tabs {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #d4e6f5;
  height: 40px;
}
.yy-chatbot-wrapper .right-container .tabs > div {
  flex: 1;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}
.yy-chatbot-wrapper .right-container .tabs > div.active {
  color: #2a83cf;
}
.yy-chatbot-wrapper .right-container .tabs > div.active::before {
  content: '';
  width: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  background-color: #2a83cf;
  transform: translateX(-50%);
}
.yy-chatbot-wrapper .right-container .tab-contents > div {
  display: none;
  padding: 10px;
}
.yy-chatbot-wrapper .right-container .tab-contents > div.active {
  display: block;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div {
  background-color: #dffdf1;
  padding: 10px 0px 10px 105px;
  position: relative;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div + div {
  margin-top: 15px;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div > img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: auto;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div .card-name {
  font-size: 16px;
  margin-bottom: 10px;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div .items div {
  width: 50%;
  font-size: 14px;
  position: relative;
  color: #888;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  padding-left: 8px;
  box-sizing: border-box;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div .items div::before {
  content: '';
  width: 2px;
  height: 2px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #888;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(1) > div .items div:hover {
  color: #2a83cf;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  cursor: pointer;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div + div {
  margin-top: 15px;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div .num {
  width: 20px;
  text-align: center;
  display: inline-block;
  margin-right: 8px;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div:nth-child(-n + 3) {
  color: #f8aa4a;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div:nth-child(-n + 3) .num {
  border-radius: 3px;
  color: #fff;
  background: #f8aa4a;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div:hover {
  color: #2a83cf !important;
}
.yy-chatbot-wrapper .right-container .tab-contents > div:nth-child(2) > div:nth-child(-n + 3):hover .num {
  background: #2a83cf;
}
.yy-chatbot-wrapper .right-container .bmfw-container {
  margin-top: 10px;
  padding: 0 15px;
}
.yy-chatbot-wrapper .right-container .bmfw-container .section-name {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}
.yy-chatbot-wrapper .right-container .bmfw-container .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.yy-chatbot-wrapper .right-container .bmfw-container .items > div {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  cursor: pointer;
}
.yy-chatbot-wrapper .right-container .bmfw-container .items > div img {
  width: auto;
  height: 32px;
}
.yy-chatbot-wrapper .right-container .bmfw-container .items > div > div {
  font-size: 14px;
  color: #2a83cf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
}

.yy-cartoon {
    position: absolute;
    left: 10px;
    bottom: 30px;
    width: 102.5px;
    height: 130px;
    background: url(https://robot.soeasyit.cn/aicc/ChannelTemplate/2025-03-05/template/zsk_1741166809562/img/aicc-cartoons.gif) right top no-repeat;
    transform-origin: left bottom;
    background-size: 100%;
}

@media (max-width: 992px) {
  .yy-chatbot-wrapper {
    height: 90vh;
  }
  .yy-chatbot-wrapper .left-container {
    width: 100%;
  }
  .yy-chatbot-wrapper .right-container {
    display: none;
  }
  .yy-chatbot-wrapper .left-container .topics span {
    padding: 2px 5px;
    margin: 0 5px;
    font-size: 12px;
    border-radius: 4px;
  }
  .yy-chatbot-wrapper .left-container .input-box {
    padding: 10px;
    border-radius: 0 0 15px 15px;
    margin-bottom: 10px;
  }
  .yy-chatbot-wrapper .left-container .input-box .btns-container .deepseek {
    background-color: transparent;
    padding-left: 10px;
    padding-right: 10px;
    height: 28px;
    border-radius: 18px;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    right: initial;
    top: initial;
    border: 1px dashed #6196c5;
    color: #155489;
  }
  .yy-chatbot-wrapper .left-container .input-box .btns-container .input-count {
    flex: 1;
    margin: 0 5px;
    font-size: 12px;
  }
  .yy-chatbot-wrapper .left-container .input-box .btns-container .send-btn {
    padding: 0 10px;
    font-size: 12px;
    line-height: 32px;
    border-radius: 5px;
  }

  .yy-cartoon {
    display: none;
  }
  .yy-chatbot-wrapper .chat-container {
    padding: 10px 0;
  }
}
