.main {
  display: block;
  height: 100vh;
  padding: 0 !important;
  box-sizing: border-box;
  flex: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  overflow: auto;
  unicode-bidi: isolate;
}

.main>.content {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  overflow: hidden;
  min-width: 1158px;
}

.round-full {
  border-radius: 100%;
}
.wrap {
  display: flex;
}
::-webkit-scrollbar {
  display: none;
}
.chat-list {
  border-right: 1px solid #d7d7d7;
  width: 200px;
  height: 100vh;
  top: 135px;
  background-color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.chat-list-header {
  padding: 16px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chat-list-title {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.chat-list-title .text {
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.history-container .new-chat-button-wrap {
  padding-top: 16px;
}

.history-container .new-chat-button-wrap .new-chat-button {
  cursor: pointer;
  width: 168px;
  height: 40px;
  background: #2454ff;
  border-radius: 8px;
  text-align: center;
}

.history-container .new-chat-button-wrap .new-chat-button img {
  color: #fff;
  width: 20px;
  height: 20px;
  margin-bottom: -4px;
  margin-right: 8px;
}

.history-container .new-chat-button-wrap .new-chat-button span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
}

.history-container .new-chat-button-wrap .new-chat-button:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)), #2454ff;
}

.chat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 15px;
}

.chat-item:hover,
.chat-item.active  {
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 6px 0 rgba(113, 127, 167, .28);
}

.chat-item:hover,
.chat-item.active  {
  background-color: #f8f8f8;
}

.chat-item.disabled {
  color: #999;
  cursor: not-allowed;
  border-left-width: 0;
  background-color: initial;
}


.chat-item .title {
  width: 100%;
  margin-bottom: 5px;
  height: 20px;
  text-align: left;
}

.chat-item .title span {
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-item .time {
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666;
  position: relative;
  width: 100%;
  height: 16px;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
}

.dot, .dots {
  text-overflow: ellipsis;
  overflow: hidden;
}
.dot {
  white-space: nowrap;
}

.chat-item:hover:before,
.chat-item.active:before  {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #3e6ffb;
  top: 0;
  left: 0;
}

.chat-item:hover .title {
  color: #3e6ffb;
}

.chat-item .time .btn-box {
  display: flex;
  width: fit-content;
  font-size: 16px;
  opacity: 0;
}

.chat-item:hover .btn-box {
  opacity: 1;
}

.chat-item .delete {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.chat-container {
    box-sizing: border-box;
    height: 100%;
    display: flex;
    justify-content: center;
    align-self: flex-start;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
    background-color: #f6f7f9;
    flex: auto;
    position: relative;
    align-items: flex-start;
}

.chat-container .chat-box {
    width: 100%;
    padding-top: 12px;
    overflow: scroll;
    box-sizing: content-box;
    height: 100%;
}
.chat-container .chat-box {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chat-container .chat-box::-webkit-scrollbar {
  display: none;
}

.init-page.pc {
  width: 100%;
  flex: auto;
  display: flex;
}

.init-page.pc .warp {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  min-width: 500px;
  padding: 0 36px;
  overflow: hidden;
}

.init-page.pc .warp .inner {
  width: 100%;
  padding: 17px 20px 20px 20px;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  background-color: #fff;
}

.init-page.pc .warp .init-logo img {
  border-radius: 16px;
  width: 32px;
  height: 32px;
}

.init-page.pc .warp .init-text {
  text-align: left;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.init-page.pc .warp .init-text .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1a2029;
  padding-bottom: 8px;
}

.init-page.pc .warp .init-text .content {
  font-size: 15px;
  line-height: 27px;
  color: #1a2029;
}

.init-page.pc .warp .init-text .example {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
}

.init-page.pc .warp .init-text .example .example-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 27px;
  color: #1a2029;
}

.init-page.pc .warp .init-text .example .example-content {
  margin-top: 20px;
}

.init-page.pc .warp .init-text .example .example-content .title {
  font-weight: 600;
  font-size: 15px;
  line-height: 27px;
  color: #1a2029;
  padding-bottom: 0;
}

.init-page.pc .warp .init-text .example .example-content .desc {
  margin-top: 4px;
  position: relative;
  left: -8px;
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: #2454ff;
  padding: 0 8px;
}

.chat-container .search-box {
  padding-bottom: 12px;
  box-sizing: border-box;
  align-self: flex-end;
  width: 100%;
  padding-top: 20px;
}

.chat-container  .search-box .component-box,
.chat-container  .search-box .footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.chat-container .search-box .component-box {
  max-width: 872px;
  min-width: 572px;
  padding: 0 36px;
  margin: 0 auto;
}
.chat-container .search-box>div {
  background: transparent !important;
}
.search-container {
  position: relative;
}

.search{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.search .input-box {
  padding: 11px 12px 11px 16px;
  display: flex;
  width: 100%;
  flex-direction: column;
  transition: padding .6s ease;
  background-color: #fff;
  border: 1px solid #d3d7dd;
  border-radius: 12px;
  box-sizing: border-box;
  line-height: 30px;
  align-items: center;
}

.search .input-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}


.search .input-box .upload-image-wrap {
    align-self: flex-end;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    height: 32px;
}

.search .input-box .input-box-inner{
  flex: 1;
}

.search textarea {
  height: 25px;
  caret-color: #2454ff;
  margin: 0;
  width: calc(100% - 16px);
  flex: 1;
  height: 20px;
  margin: 5px 0;
  transition: all .6s ease;
  display: block;
  box-sizing: border-box;
  background-color: hsla(0, 0%, 100%, 0);
  padding-right: 5px;
  color: #000;
  outline: none;
  border: none;
  resize: none;
  font-size: 15px;
  line-height: 25px;
  font-family: PingFang SC;
  font-style: normal;
  caret-color: #2454ff;
}

.search .enter{
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    align-self: flex-end;
}

.search .enter .enter_icon {
    width: 36px;
    height: 36px;
}

.policy-wrap {
  padding-top: 12px;
  text-align: center;
}

.policy-wrap a,
.policy-wrap span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #b0b7c0;
}

.policy-wrap a:hover {
  color: #838a95;
  text-decoration-line: underline;
}

.prompt-container {
  background-color: #f6f7f9;
  position: relative;
  z-index: 5;
  min-width: 50px;
  flex: none;
}

.prompt-side-container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 56px;
  height: 340px;
  padding: 15px 10px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  display: none;
  flex-direction: column;
  align-items: center;
}

.prompt-side-container .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36px;
  height: 38px;
  box-sizing: border-box;
  background: #fff;
  padding-top: 0;
  margin-bottom: 20px;
  cursor: pointer;
}

.prompt-side-container .item .text {
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  font-weight: 400;
  color: #4f5866;
}

.prompt-side-container .item:hover .text {
  color: #2454ff;
}

.prompt-side-container .side_expend {
  width: 20px;
  height: 20px;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-image: url(../images/icon/icon_side_expend.png);
  cursor: pointer;
}

.prompt-side-container .side_expend:hover {
  background-image: url(../images/icon/icon_side_expend_hover.png);
}

.prompt-list-container {
  position: relative;
  flex: none;
  height: 100%;
  box-sizing: border-box;
  padding: 16px 16px 0 16px;
  box-shadow: 0 1px 16px rgba(22, 47, 82, .04);
  background: #fff;
  max-width: 510px;
}

.prompt-list-container .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 20px;
  flex: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 36px;
}

.prompt-list-container .title .title-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.prompt-list-container .title .title-left .title-text {
  padding-left: 8px;
  color: #1a2029;
}

.prompt-list-container .title .title-left .icon {
  width: 20px;
  height: 20px;
}

.logo2 {
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-image: url(../images/icon/icon_tools.png);
}

.prompt-list-container .title .title-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.prompt-list-container .title .title-right .share-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.prompt-list-container .title .title-right .share-btn .share-btn-icon {
  height: 16px;
  width: 16px;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  background-image: url(../images/icon/icon_share.png);
}

.prompt-list-container .title .title-right .close-btn {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

.prompt-list-container .title .title-right .close-btn .close-btn-icon {
  height: 16px;
  width: 16px;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  background-image: url(../images/icon/icon_close.png);
}

.prompt-list-container .title .title-right .share-btn:hover,
.prompt-list-container .title .title-right .close-btn:hover {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: rgba(79, 88, 102, .06);
  cursor: pointer;
}

.prompt-list-container .recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
  flex: none;
}

.prompt-list-container .recommend .recommend-list {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
}

.prompt-list-container .recommend .recommend-item {
  display: flex;
  align-items: center;
  padding: 4px 10px;
  box-sizing: border-box;
  height: 32px;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  background: #f8f8f8;
  border-radius: 8px;
  flex: none;
  cursor: pointer;
}

.prompt-list-container .recommend .recommend-item.active {
  background: #2454ff;
  font-weight: 600;
  color: #fff;
}

.prompt-list-container .prompt-list-wide {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 10px;
}

.prompt-list-container .prompt-list-wide.active {
  display: grid;
}

.prompt-list-container .prompt-list-wide .prompt-item {
  flex: none;
  width: 100%;
  border-radius: 8px;
  padding: 12px 14px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

.prompt-list-container .prompt-list-wide .prompt-item.style1 {
  background: #f4fafc;
}

.prompt-list-container .prompt-list-wide .prompt-item:first-child {
  margin-top: 0;
}
.prompt-list-container .prompt-list-wide .prompt-item.style1:hover {
  background: #edf8fc;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info {
  color: #1a2029;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .prompt-item__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .prompt-item__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .heatBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  width: 100%;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .heatBottom .heat {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .heatBottom .heat .heatIcon{
  background-position: 50%;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/icon/icon_like.png);
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .heatBottom .heat .heatNum{
  color: #838a95;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.prompt-list-container .prompt-list-wide .prompt-item .prompt-item__info .heatBottom .editContainer .edit:hover {
  width: 28px;
  height: 28px;
  box-shadow: 0 2px 10px 0 rgba(26, 72, 137, .08);
}

.file-list-box {
  width: 100%;
  margin-bottom: 20px;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.file-list-box .file-box {
  width: calc(33.33333% - 5.33333px);
}

.file-list-box .file-box .file {
  width: 100%;
  flex: 1;
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
  display: flex;
  height: 52px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(0deg, #f5f5f5, #f5f5f5);
  position: relative;
}

.file-list-box .file-box .file .icon.icon-img {
  border-radius: 8px;
}
.file-list-box .file-box .file .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.file-list-box .file-box .file .file-info {
  width: calc(100% - 46px);
  display: flex;
  flex-direction: column;
}

.file-list-box .file-box .file .file-info .name {
  width: 100%;
  color: #1a2029;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
}

.file-list-box .file-box .file .file-info .status .success {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  overflow: hidden;
  color: #838a95;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.file-list-box .file-box .file .close {
  width: 16px;
  height: 16px;
  background: url(../images/icon/icon_close_mini.svg) 100% no-repeat;
  position: absolute;
  top: -4px;
  right: -4px;
  margin-top: 0 !important;
  cursor: pointer;
}

.file-list-box .file-box .file .close:hover {
  background-image: url(../images/icon/icon_close_mini_hover.svg)
}

.file-list-box .file-box .file .icon .answer-error-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 8px;
  cursor: pointer;
}

.file-list-box .file-box .file .icon .answer-error-icon .file-retry-icon {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  left: 8px;
  top: 8px;
  background: url(../images/icon/icon_answer_error.png) 50% no-repeat;
  background-size: cover;
}

.file-list-box .file-box .file .file-info .status .retry {
  color: #2454ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
}

.file-list-box .file-box .file .file-info .status .retry:hover {
  color: #204ce5;
}

.file-list-box .status .uploading .loader {
  width: 12px;
  height: 12px;
  padding: 2px;
  display: inline-block;
}

.file-list-box .file-box .file .file-info .status .uploading {
  color: #9f9f9f;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.modal.login-modal {
  display: block;
}
.modal.login-modal .modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  position: unset;
  transform: none;
  border-radius: unset;
}
.modal.login-modal .modal-body {

}

.login-modal .content {
  box-sizing: border-box;
  width: 420px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-image: linear-gradient(#f3f5fa, #fff 40%, #fff);
}

.login-layout-container {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-layout-container .login-logo {
  width: 179px;
  height: 45px;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: border-box;
}
.login-layout-container .login-form {
  padding-top: 30px;
}
.login-container.pc {
  width: 350px;
}

.c-form-item__content {
  line-height: 40px;
  position: relative;
  font-size: 14px;
}

.login-container .c-form-item {
  margin-bottom: 20px;
}

.login-container.pc .c-form-item__label {
  font-weight: 600;
  font-size: 12px;
  line-height: 13px;
  margin-bottom: 6px;
}

.login-container .c-form-item__label {
  font-weight: 400;
  color: #666;
  text-align: right;
  vertical-align: middle;
  float: left;
  font-size: 14px;
  line-height: 40px;
  padding: 0 12px 0 0;
  box-sizing: border-box;
}
.c-form-item.is-required:not(.is-no-asterisk)>.c-form-item__label:before {
  content: "*";
  color: #f56c6c;
  margin-right: 4px;
}
.c-form-item__content {
  line-height: 40px;
  position: relative;
  font-size: 14px;
}
.c-input {
  position: relative;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}
.login-container.pc .c-input__inner {
  height: 40px;
  font-size: 14px;
  font-family: Arial;
  border-radius: 8px;
  color: #333;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  background-image: none;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  line-height: 40px;
  outline: 0;
  padding: 0 15px;
  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  width: 100%;
}
.c-form-item__error {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}
.c-form-item__content:after {
  clear: both;
}

.login-container.pc .code-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.login-container.pc .code-box .code-btn {
  width: 120px;
  height: 40px;
  flex-shrink: 0;
  background-color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid #d9d9d9;
}

.login-container.pc .code-box .code-btn:hover {
  cursor: pointer;
  color: #2a7cff;
  border-color: #2a7cff;
}

.login-container.pc .checkbox-box .c-form-item__content {
  line-height: 15px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 13px;
  line-height: 13px;
  color: #1a2029;
  position: relative;
}

.login-container .c-checkbox-group {
  display: flex;
}

.c-checkbox:last-of-type {
  margin-right: 0px;
}

.login-container.pc .checkbox-box .policy {
  display: flex;
  flex-wrap: wrap;
  margin-left: 6px;
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding-left: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.login-container a {
  color: #3e6ffb;
}

.login-container .c-form-item:last-child {
  margin-bottom: 0;
}

.c-button {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dcdfe6;
  border-color: #dcdfe6;
  color: #606266;
  text-align: center;
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  transition: .1s;
  font-weight: 500;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px;
}

.c-button:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), #2454ff;
}

.login-container.pc .submit-box .submit-btn {
  width: 100%;
  padding: 14px 0;
  border-radius: 8px;
  border-color: #2a7cff;
  color: #fff;
  background-color: #2454ff;
}

.login-container.pc .submit-btn>span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container.pc .arrow_logo {
  width: 13px;
  height: 6px;
  margin-left: 10px;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: border-box;
}

.login-container.pc .c-input__inner:hover,
.login-container.pc .c-input__inner:focus {
  border-color: #2a7cff;
}

.c-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.c-checkbox input {
  opacity: 0;
  position: absolute;
  margin: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  border: 1px solid #2a7cff;
  border-radius: 2px;
}

.c-checkbox input:checked + .checkmark {
  background-color: #2a7cff;
  border-color: #2a7cff;
}

.c-checkbox input:checked + .checkmark:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.c-checkbox-label {
  padding-left: 20px;
  min-width: 80px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.login-modal .c-checkbox {
  margin-top: 4px;
}
.chat-content .item {
  margin: 0 auto;
  max-width: 872px;
  min-width: 572px;
  padding: 0 36px;
  box-sizing: border-box;
  width: 100%;
}
.width_full {
  width: 100%;
}
.pr {
  position: relative;
}
.chat-content .item .question {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 24px;
  padding-bottom: 20px;
  position: relative;
  transition: border 1s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.chat-content .item .question .user-img {
  display: block;
  width: 32px;
  height: 32px;
}

.chat-content .item .question .question-txt {
  padding-top: 0;
  padding-bottom: 5px;
  padding-left: 7px;
  margin-left: 5px;
  padding-right: 5px;
  position: relative;
  cursor: pointer;
  word-break: break-all;
  text-align: justify;
  flex: 1;
  color: #333;
  font-size: 14px;
}

.chat-content .item .question .question-txt span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: #1a2029;
}

.chat-content .item .question .question-txt:hover {
  background: rgba(74, 90, 112, .06);
  border-radius: 8px;
}

.chat-content .item .answer {
  background: transparent;
  position: relative;
  overflow: visible;
  font-size: 15px;
  line-height: 27px;
}

.chat-content .item .answer,
.chat-content .item .answer .panel {
  border-radius: 8px;
}

.chat-content .item .answer .panel {
  background: #fff;
  padding: 17px 20px 20px 16px;
}

.chat-content .item .answer .robotIcon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-content .item .answer .robotIcon .robotEmerge {
  width: 40px;
  height: 40px;
  background-image: url(../images/ai_speed.gif);
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: imageEmergeAnimation .4s forwards;
  -moz-animation: imageEmergeAnimation .4s forwards;
  -o-animation: imageEmergeAnimation .4s forwards;
  animation: imageEmergeAnimation .4s forwards;
}

@keyframes imageEmergeAnimation {
  0% {
      transform: scale(1)
  }

  to {
      transform: scale(.8);
      background-image: url(../images/ai_logo.png)
  }
}

.chat-content .item .answer .code-box {
  padding-left: 8px;
  margin-top: 3px;
  overflow: hidden;
  display: flex;
  width: 100%;
}

.answer-content-wrap {
  font-family: PingFang SC;
  font-style: normal;
}

.chat-content .item .answer .interact {
  margin-top: 16px;
  margin-left: 47px;
  display: flex;
  align-items: center;
  flex-direction: row;
  animation: interactEmergeAnimation .6s forwards;
}

@keyframes interactEmergeAnimation {
  0% {
      opacity: 0
  }

  to {
      opacity: 1
  }
}

.chat-content .item .answer .interact .tip {
  flex: 1;
  text-align: left;
}

.chat-content .item .answer .interact .tip span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #b0b7c0;
}

.chat-content .item .answer .interact .interact-operate,
.chat-content .item .answer .interact .nanual-retry {
  display: flex;
  flex-direction: row;
}

.chat-content .item .answer .interact .interact-operate {
  margin-top: -5px;
}

.chat-content .item .answer .shim {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  cursor: pointer;
  color: #999;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px;
}

.chat-content .item .answer .interact .shim.thumbs-selecting,
.chat-content .item .answer .shim:hover {
  background: rgba(26, 32, 41, .06);
}

.input-msg {
    position: absolute;
    top: -62px;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #f6f7f9;
    padding: 15px 2px 15px 2px;
    font-size: 14px;
    color: #666;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.input-msg .btn {
    height: 32px;
    background: #fff;
    border-radius: 8px;
    color: #1a2029;
    padding: 5px 12px;
    font-size: 14px;
    cursor: pointer;
}

.input-msg .btn:hover {
    color: #2454ff;
}

.input-msg .btn span {
  position: relative;
  top: -5px;
}

.input-msg .btn img {
    width: 20px;
    height: 20px;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    opacity: .8;
}

.input-msg .btn:hover img {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    opacity: 1;
}
.init-page.pc .wrap {
  width: 100%;
}

.init-page.pc .content.ppt-content {
  margin: 0 auto;
  width: 700px;
  max-width: 800px;
  min-width: 550px;
  margin-top: 3vh;
  flex-shrink: 1;
  flex-grow: 1;
}

.init-page.pc .content-prod.ppt-content {
  margin-top: 6vh;
  min-width: 500px;
  max-width: 500px;
}

.init-page.pc .content.ppt-content .title-container.form-title{
  display: flex;
  flex-direction: row;
  margin-left: 0;
  max-width: none;
  margin-right: 32px;
  margin-top: -3vh;
  padding: 0;
  gap: 4px;
  max-width: 800px;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
}

.title-container.form-title .title-logo {
  width: 68px;
  height: 68px;
  border-radius: 484.849px;
  overflow: hidden;
  margin: 0 auto;
}

.title-container .title-right {
  text-align: left;
  margin-left: 16px;
  flex: 1;
}

.title-container .title-right .title-line{
  margin-top: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #1a2029;
  display: flex;
  margin-bottom: 4px !important;
  white-space: nowrap;
  font-family: PingFang SC;
  background: transparent;
  align-items: center;
}

.title-container .title-right .sub-title-line {
  text-align: left;
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 12px !important;
  line-height: 18px !important;
  color:#838a95;
}

.title-container .title-right .title-info {
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}

.title-container .title-info .title-info-item {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 25px;
  color:#838a95;
}

.title-container .title-info .title-info-item img {
  vertical-align: middle;
  transform: translateY(-1px);
}

.init-page.pc .content .actions-container {
  margin-top: 20px;
}

.page-welcome-content-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
}

.page-welcome-content-container.form-content-container {
  width: 100%;
}

.page-welcome-content-container .card-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  column-gap: 16px;
  width: fit-content;
  margin: 0 auto;
}

.page-welcome-content-container .card-container.form-container {
  box-sizing: border-box;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  padding: 16px 0;
}

.page-welcome-content-container .title {
  text-align: left;
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
}

.page-welcome-content-container .description {
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.form-input .el-input {
  box-sizing: border-box;
  display: inline-flex;
  font-size: 14px;
  line-height: 32px;
  position: relative;
  vertical-align: middle;
  width: 100%;
}

.form-input .el-input__wrapper {
  padding: 0;
  background-color:rgba(79, 88, 102, .08);
  border-radius: 8px;
  align-items: center;
  cursor: text;
  display: inline-flex;
  flex-grow: 1;
  justify-content: center;
  transform: translateZ(0);
  transition: box-shadow 0.2s cubic-bezier(0.645,0.045,0.355,1);
}

.form-input .el-input__inner {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 15px;
  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  width: 100%;
}

.form-input .el-input__inner {
  -webkit-appearance: none;
  background: none;
  border: none;
  box-sizing: border-box;
  color: #606266;
  flex-grow: 1;
  font-size: inherit;
  height: 30px;
  line-height: 30px;
  outline: none;
  padding: 0;
  width: 100%;
}

.page-welcome-content-container  .form-input input {
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d3d7dd;
  display: flex;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  line-height: 24px;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color:#1a2029;
}

.form-input .el-input__wrapper .el-input__inner {
  border: 1px solid transparent;
}

.form-input .el-input__inner:hover {
  border: 1px solid rgba(79, 88, 102, .6);
}

.form-input .el-input__suffix {
  position: absolute;
  height: 100%;
  right: 5px;
  top: 0;
  text-align: center;
  color: #c0c4cc;
  transition: all .3s;
  pointer-events: none;
}

.page-welcome-content-container .form-input .el-input__suffix {
  color: #a8abb2;
  display: inline-flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  height: 100%;
  pointer-events: none;
  text-align: center;
  transition: all .3;
  white-space: nowrap;
}

.form-input .el-input__suffix-inner {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  pointer-events: all;
}

.form-input .el-input .el-input__count {
  align-items: center;
  color: #909399;
  display: inline-flex;
  font-size: 12px;
  height: 100%;
}

.form-input .el-input__suffix-inner>:first-child {
  margin-left: 8px;
}

.page-welcome-content-container .form-input .el-input__count {
  position: absolute;
  top: -25px;
  right: 0;
  height: 24px;
  line-height: 24px;
  background-color: transparent;
}

.form-input .el-input .el-input__count .el-input__count-inner {
  background: #ffffff;
  display: inline-block;
  line-height: normal;
  padding-left: 8px;
}

.page-welcome-content-container .form-input .el-input .el-input__count .el-input__count-inner {
  background-color: transparent;
}

.page-welcome-content-container .card-container.form-container .reset-btn,
.page-welcome-content-container .card-container.form-container .send-btn {
  border-radius: 8px;
  background: #1a2029;
  color: #fff;
  text-align: center;
  font-family: PingFang SC;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  padding: 6px 12px;
  cursor: pointer;
  width: 64px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-welcome-content-container .card-container.form-container .reset-btn {
  background:rgba(79, 88, 102, .08);
  color: #1a2029;
  border: 1px solid transparent;
  margin-right: 12px;
}

.page-welcome-content-container .file-list-box {
  width: 100%;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  max-width: 500px;
}

.page-welcome-content-container .file-list-box .file-box {
  flex: 0 0 160px;
  max-width: 160px;
}

.page-welcome-content-container .ppt-file-list {
  display: flex;
  flex-wrap: wrap;
}

.opening-upload {
  width: 160px;
  height: 56px;
  border-radius: 8px;
  background: rgba(79, 88, 102, .08);
  border: .815px solid transparent;
  overflow: hidden;
  color: #1a2029;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}

.upload-image-btn {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-size: 100% !important;
  background: url(../images/icon/icon_upload_mini.png) no-repeat;
  position: relative;
  cursor: auto;
}

.opening-upload .upload-text {
  overflow: hidden;
  color: #1a2029;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.opening-upload .el-upload--text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-welcome-content-container .file-box .file {
  background: rgba(79, 88, 102, .08);
  border: .815px solid rgba(79, 88, 102, .08);
  cursor: pointer;
}

.page-welcome-content-container .file-box .file:hover,
.opening-upload:hover {
  border: .815px solid rgba(79, 88, 102, .6);
}

.conversation-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.conversation-container .conversation-inner {
  overflow-x: auto;
  width: 100%;
  height: 100%;
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.conversation-list {
  position: relative;
  height: 100%;
  width: 100%;
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  overflow: scroll;
  padding-bottom: 30px;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chat-content .conversation-list .item {
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  min-width: 371px;
  padding: 0 36px;
  max-width: 872px;
}

.chat-content .item .conversation.question {
  position: relative;
  padding: 0 12px 20px;
  transition: border 1s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.chat-content .item .conversation.question .user-img {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: 4px;
}

.conversation .width_full .user-name {
  color: #1a2029;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  margin-left: 12px;
  padding-bottom: 8px;
}

.conversation .question-text-style {
  position: relative;
}

.conversation.question .question-txt {
  padding-top: 0;
  padding-bottom: 5px;
  padding-left: 7px;
  margin-left: 5px;
  padding-right: 5px;
  position: relative;
  cursor: pointer;
}

.conversation.question .question-txt:hover {
  background: #4a5a700f;
  border-radius: 8px;
}

.conversation.question .question-txt:not(:empty) {
  padding-bottom: 0;
}

.conversation.question .question-txt span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: #1a2029;
}

.conversation .question-text-style .copy-btn {
  display: none;
  position: absolute;
  left: 5px;
  bottom: -40px;
  height: 40px;
  box-sizing: border-box;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 4px 12px 0 rgba(17, 49, 95, .08);
}

.conversation .question-text-style .copy-btn .copy-btn-icon {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/icon_copy_mini.png);
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 0 20px;
}

.conversation .question-text-style .copy-btn .copy-btn-text {
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.conversation .question-text-style:hover .copy-btn {
  display: flex;
  cursor: pointer;
}

.conversation-list .item .answer .code-box {
  padding-left: 8px;
  margin-top: 3px;
  display: block;
  overflow: unset;
}

.conversation-list .code-box .new-type {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.conversation-list .item .answer .panel {
    border-radius: 8px;
    padding: 0 12px 20px 12px;
    background: transparent;
}

.conversation-list .item .answer .robotIcon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversation-list .item .answer .robotIcon .glmsChatAvatar {
  width: 24px;
  height: 24px;
  border-radius: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #eff1f4;
}

.conversation-list .answer .answer-content {
  width: calc(100% - 32px);
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  padding-top: 3px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.answer .answer-content .assistant-name {
  line-height: 24px;
  padding-left: 8px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #1a2029;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
}

.answer .answer-content .assistant-name .label {
  margin-left: 4px;
  display: flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 3px;
}

.new_type {
  text-align: left;
  margin-bottom: 10px;
}

.conclusion-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-loading-container {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  gap: 8px;
  margin-bottom: 8px;
}

.search-loading-container:hover {
  cursor: pointer;
  border-radius: 8px;
  background: rgba(79, 88, 102, .08);
}

.search-loading-container .loading-icon {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/icon_loading_check.gif);
  background-repeat: no-repeat;
  background-size: cover;
}

.search-loading-container .loading-text {
  color: #1a2029;
  text-align: center;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
}

.search-loading-container .expand-btn {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/icon/icon_arrow_down_mini.png);
}

.searchinfo-container .search-container {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: rgba(79, 88, 102, .08);
  margin-bottom: 16px;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 116px;
  position: relative;
}

.single-search-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  overflow: hidden;
}

.single-search-container .search-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: calc(100% - 32px);
}

.single-search-container .search-header .search-icon {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/icon_search_mini.png);
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 0 auto;
}

.single-search-container .search-header .search-text {
  color: #1a2029;
  text-align: center;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

.single-search-container .search-title {
  display: flex;
  gap: 10px;
  padding-left: 28px;
  flex-wrap: wrap;
}

.single-search-container .search-title .title {
  display: flex;
  padding: 4px 10px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  box-sizing: border-box;
}

.single-search-container .search-title .title .title-text {
  max-width: 280px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.single-search-container .reference-site {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 28px;
  height: 20px;
}

.single-search-container .reference-site .site-icons {
  display: flex;
  align-items: center;
}

.single-search-container .reference-site .site-icons .site-icon {
  display: flex;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  padding: 0 3px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  background: #d3d7dd;
  margin-right: -3px;
}

.single-search-container .reference-site .site-icons .site-icon img {
  width: 15px;
  height: 15px;
  border-radius: 28px;
  border: 1px solid #fff;
  flex: 0 0 15px;
}

.data-tooltip-html .site-icon img {
  width: 15px;
  height: 15px;
  border-radius: 28px;
  flex: 0 0 15px;
}

.single-search-container .reference-site .site-conclusion {
  color: rgba(79, 88, 102, .6);
  text-align: center;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.sites-cited-list-container {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

.sites-cited-list-container .site-card {
  display: flex;
  flex: 0 1 auto;
  padding: 10px 12px;
  flex-direction: column;
  gap: 6px;
  border-radius: 8px;
  background: rgba(79, 88, 102, .08);
  width: 180px;
  box-sizing: border-box;
  position: relative;
}

.sites-cited-list-container .site-card .site-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1a2029;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  height: 40px;
  word-break: break-word;
}

.sites-cited-list-container .site-card .site-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sites-cited-list-container .site-card .site-info .site-icon {
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/icon/icon_search_star.png);
  border-radius: 7px;
  flex: 0 0 12px;
}

.sites-cited-list-container .site-card .site-info .site-name {
  overflow: hidden;
  color: #838a95;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  flex: 0 1 auto;
  word-break: break-word;
}

.sites-cited-list-container .left-block,
.sites-cited-list-container .right-block {
  position: absolute;
  width: 80px;
  height: 78px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 11.6%, #fff 92.28%);
}

.sites-cited-list-container .left-block {
  left: -2px;
  transform: rotate(90deg);
}

.sites-cited-list-container .right-block {
  right: -2px;
  transform: rotate(-90deg);
}

.sites-cited-list-container .left-btn {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/icon/icon_arrow_prev.png);
  position: absolute;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.sites-cited-list-container .left-btn:hover {
  background-image: url(../images/icon/icon_arrow_prev_hover.png);
  cursor: pointer;
}

.sites-cited-list-container .right-btn {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/icon/icon_arrow_next.png);
  position: absolute;
  right: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.sites-cited-list-container .right-btn:hover {
  background-image: url(../images/icon/icon_arrow_next_hover.png);
  cursor: pointer;
}

.chat-content .item .ppt-answer .interact-container {
  height: 33px;
}

.chat-content .item .ppt-answer .interact {
  display: flex;
  margin-left: 6px;
  margin-top: 0px;
}

.chat-content .item .ppt-answer .interact .interact-operate {
  display: flex;
  flex-direction: row;
  margin-top: -8px;
  justify-content: space-between;
  width: 100%;
  max-width: 742px;
}

.chat-content .item .ppt-answer .regenerate-part-container {
  display: flex;
}

.chat-content .item .ppt-answer .interact-operate {
  display: flex;
}

.chat-content .item .ppt-answer .shim {
  width: auto !important;
  padding: 6px !important;
  display: flex;
  align-items: center;
}

.share .share-text {
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-left: 3px;
}

.chat-content .item .ppt-answer .down {
  display: flex;
  align-items: center;
}

.answer-content-wrap .iframe-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4px 0;
  height: 36px;
  padding: 10px 8px;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #d3d7dd;
}

.answer-content-wrap .iframe-link .iframe-btn-text {
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.answer-content-wrap .iframe-link .iframe-right-arrow {
  width: 9px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/icon/icon_arrow_right_open.png);
}

.answer-content-wrap .iframe-link:hover {
  cursor: pointer;
  border: 1px solid #1a2029;
}

.markdown-body p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 27px;
}

.markdown-body img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  display: block;
  max-width: 400px;
  box-sizing: content-box;
  border-style: none;
  background-color: #fff;
}

.iframe-container {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  background: #fff;
}

.column-layout-container {
  width: 100vw;
  height: 100vh;
  min-height: 630px;
  min-width: 1100px;
  overflow-x: auto;
  overflow-y: auto;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  display: flex
}

.column-layout-container .column-layout-header {
  width: 100%;
  height: 62px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.iframe-container .header-left {
  gap: 8px;
  margin-left: 24px;
  overflow: hidden;
  color: #1a2029;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
  display: flex
}

.iframe-container .header-left img {
  width: 17px;
  height: 24px;
  cursor: pointer;
}

.column-layout-container .column-layout-body {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  height: calc(100vh - 62px);
  min-height: calc(630px - 62px);
  justify-content: space-between;
  display: flex;
}

.column-layout-left {
  padding: 24px 36px;
}

.column-layout-container .column-layout-body .column-layout-left,
.column-layout-container .column-layout-body .column-layout-right {
  box-sizing: border-box;
  height: 100%;
}

.column-layout-container .column-layout-body .column-layout-left {
  height: 100%;
  width: 1200px;
}

.iframe-container .iframe-style {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-container .chat-container .search-box .component-box {
  min-width: auto;
}

.resize__control {
  height: calc(100vh - 62px);
  min-height: 568px;
  max-height: 100%;
  padding-right: 8px;
  cursor: ew-resize;
  position: relative;
  width: 10px;
  background-color: #f6f7f9;
}

.resize__control .drager-line {
  width: 1px;
  height: 100%;
  background-color:#eee;
  transition: background-color .2s;
}

.resize__control .drager-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: 8px;
  height: 20px;
  left: 6px;
}

.resize__control:hover .drager-line {
  width: 2px;
  background-color: #2454ff;
}

.resize__control:hover .drager-icon {
  display: block;
}

.column-layout-container .column-layout-body .column-layout-right {
  position: relative;
  height: 100%;
  width: calc(100% - 1200px);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .04), 0 8px 16px 0 rgba(0, 0, 0, .08);
}

.column-layout-container .iframe-right {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  padding: 24px 24px 0 24px;
  position: relative;
}

.column-layout-container .column-layout-body .column-layout-left,
.column-layout-container .column-layout-body .column-layout-right {
  min-width: 500px;
}

.answer_loading {
  animation: rotation 1s linear infinite;
}

@keyframes rotation {

  from {
      -webkit-transform: rotate(0deg);
  }

  to {
      -webkit-transform: rotate(360deg);
  }

}

.share-footer {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  margin-left: 18px;
}

.share-footer .share-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  margin-left: 12px;
}

.share-footer .share-right .cancel-btn {
  display: flex;
  box-sizing: border-box;
  width: 100px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #2454ff;
  font-size: 16px;
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #2454ff;
  margin-right: 12px;
}

.share-footer .share-right .cancel-btn:active,
.share-footer .share-right .cancel-btn:hover {
  cursor: pointer;
}

.share-footer .share-right .generate-link {
  display: flex;
  max-width: 280px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #2454ff;
  color: #f9f9f9;
  font-size: 16px;
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  flex: 1;
}

.share-footer .share-right .generate-link .link {
  background-image: url(../images/icon/icon_link.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  height: 20px;
  width: 20px;
  margin-right: 8px;
}

.share-footer .share-right .generate-link:active,
.share-footer .share-right .generate-link:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), #2454ff;
  cursor: pointer;
}

.share-container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100vh;
  overflow-y: hidden;
  overflow-x: auto;
  background: #fff;
}

.share-container .share-content-container {
  display: flex;
  height: 100vh;
  overflow-y: auto;
  color: #1a2029;
  font-family: PingFang SC;
  flex-direction: column;
}

.share-container .share-content-container .share-logo-container {
  padding-top: 12px;
  text-align: left;
  box-sizing: border-box;
  padding-left: 36px;
}

.share-container .share-content-container .share-logo-container .share-logo-container-avatar {
  width: 85px;
}

.share-container .share-content-container .share-container-top {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
}

.share-container .share-content-container .share-container-top .avatar-left {
  width: 56px;
  height: 2px;
  background: linear-gradient(270deg, rgba(199, 205, 215, .8) .02%, rgba(182, 196, 214, .08));
}

.share-container .share-content-container .share-container-top .title {
  display: flex;
  align-items: center;
  justify-content: center;
  color:#4f5866;
  text-align: center;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1px;
}

.share-container .share-content-container .share-container-top .title .share-avatar {
  flex: 0 0 24px;
  height: 24px;
  margin-right: 8px;
  margin-left: 8px;
  border-radius: 50%;
}

.share-container .share-content-container .share-container-top .title .name {
  display: flex;
  flex: 1;
  color: #1a2029;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-right: 8px;
  white-space: nowrap;
  color: #1a2029;
}

.share-container .share-content-container .share-container-top .avatar-right {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, rgba(199, 205, 215, .8) -.43%, rgba(182, 196, 214, .08) 99.57%);
}

.share-container .share-content-container .share-content {
  flex: 1;
  overflow-y: hidden;
}

.share-container .share-content-container .share-container-bottom {
  display: flex;
  width: 100%;
  padding: 12px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 999999999;
}

.share-container .share-content-container .share-container-bottom .share-btn {
  position: absolute;
  width: 280px;
  height: 48px;
  left: 50%;
  top: -8px;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: #2454ff;
  color: #f9f9f9;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.share-container .share-content-container .share-container-bottom .share-btn .share-btn-right {
  width: 14px;
  margin-left: 16px;
}

.share-container .share-content-container .share-container-bottom .share-btn:hover {
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), #2454ff;
}

.teenager_modal .modal-content {
  max-width: 618px;
  padding: 0;
  border-radius: 10px;
}
.teenager_modal .modal-body {
  margin-bottom: 24px;
}
.teenager_container {
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teenager_container .t_title_icon {
  padding-top: 0;
  padding-bottom: 16.67px;
}

.teenager_container .t_title_icon img {
  width: 93.9px;
  height: 88.33px;
}

.teenager_container .t_title span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #162f52;
}

.teenager_container .t_desc {
  padding-top: 10px;
  width: 481px;
  text-align: center;
}

.teenager_container .t_desc span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #162f52;
}

.teenager_container .t_list {
  padding-top: 4px;
  width: 487px;
  text-align: left;
}

.teenager_container .t_list .t_item1 {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.teenager_container .t_list .t_item1 .img_wrap {
  padding-top: 2px;
  padding-right: 8px;
}

.teenager_container .t_list .t_item1 .img_wrap img {
  width: 20px;
  height: 20px;
}

.teenager_container .t_list .t_item1 .text_wrap span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #162f52;
}

.teenager_container .t_list .t_item2 {
  padding-top: 8px;
}

.teenager_container .t_list .t_item2 span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4a5a70;
}

.teenager_container .t_button {
  margin-top: 32px;
  background: #115cf0;
  border-radius: 8px;
  width: 358px;
  height: 50px;
  text-align: center;
  cursor: pointer;
}

.teenager_container .t_button span {
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
}

.teenager_container .t_button_pened {
  background: #f5f5f5;
}

.teenager_container .t_button_pened span {
  color: #162f52;
}

.password_input_group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 24px;
  width: 220px;
}

.password_input_group .pass_input {
  width: 46px;
  height: 52px;
  text-align: center;
  background: #fff;
  border: 1px solid #8b97a8;
  border-radius: 12px;
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #000;
}

.teenager_container .t_pass_commonts {
  height: 220px;
  position: relative;
  width: 300px;
  text-align: center;
}

.teenager_container .t_pass_commonts span {
  width: 300px;
  position: absolute;
  bottom: 19px;
  left: 0;
  font-family: PingFang SC;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #8b97a8;
}
.toast {
  z-index: 10001;
}

.markdown-body a.btn-generate-ppt {
  background: #2454ff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}
.markdown-body a.btn-generate-ppt:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .3)), #2454ff;
  text-decoration: none;
}
/* response */
.prompt-list-container {
  width: 326px;
}

@media screen and (orientation: portrait) and (max-width: 720px) {
  .prompt-list-container {
    display: none;
  }

  .prompt-side-container {
    display: block;
  }
}

@media (width >= 1280px) {
  .prompt-list-container {
    width: 326px;
  }
}
@media (width >= 1536px) {
  .prompt-list-container {
    width: 510px;
  }
}

@media screen and (width <= 1158px) {
  .main>.content {
    min-width: 800px;
  }
}
