/* src/components/CozeNodeSdk/CozeNodeSdk.css */
.coze-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: transparent;
  overflow: hidden;
}

.chat-header {
  height: 56px;
  min-height: 56px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
  position: relative;
  height: 100%;
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: block;
  margin: auto 0;
}

.header-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2329;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  transition: all 0.3s ease;
  margin: auto 0;
  padding: 0;
  line-height: normal;
}



.message-item {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.message-item {
  margin-right: auto;
}

.message-item.user {
  flex-direction: row-reverse;
  margin-left: auto;
}

.message-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin-top: auto;
}

.message-nickname {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #86909c;
  white-space: nowrap;
  min-width: 60px;
  text-align: left;
  transform: none;
  left: 0;
}

.message-content {
  flex: 0 1 auto;
  min-width: calc(100%);
  max-width: calc(100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  padding-top: 20px;
  overflow-x: visible;
}

.message-bubble {
  padding: 12px 16px;
  background: #f7f8fa;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: fit-content;
  max-width: 75%;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2329;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.message-bubble>div {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.message-bubble>div::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

.message-bubble>div::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.message-bubble>div::-webkit-scrollbar-track {
  background: transparent;
}

.message-item.user .message-bubble>div::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

.message-bubble p {
  margin: 0;
  padding: 0;
}

.message-bubble p+p {
  margin-top: 8px;
}

.message-item.user {
  flex-direction: row-reverse;
}

.message-item.user .message-bubble {
  background: #4c6fff;
  color: #fff;
  margin-left: auto;
  border-radius: 16px 16px 4px 16px;
}

.suggestion-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.suggestion-btn {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 16px;
  font-size: 13px;
  color: #4c6fff;
  cursor: pointer;
  transition: all 0.2s;
}

.suggestion-btn:hover {
  background: #f0f3ff;
}

.input-wrapper {
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.input-actions>button,
.input-actions>label {
  width: 32px;
  height: 32px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}


.send-btn {
  background: #4c6fff;
  color: #fff;
}

.send-btn:hover:not(:disabled) {
  background: #3d5cff;
}

.send-btn:disabled {
  background: #e5e6eb;
  cursor: not-allowed;
}

.send-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.recommend-questions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  margin: 6px 0 0 0;
}

.recommend-question-btn {
  text-align: left;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  font-size: 16px;
  color: #1f2329;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  width: fit-content;
  max-width: 75%;
  display: block;
  font-size: 14px;
  font-family: "PingFang SC", "Microsoft YaHei", SimHei;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}

.recommend-question-btn:hover {
  background: #f7f8fa;
  border-color: #4c6fff;
  color: #4c6fff;
}

.recommend-question-btn:active {
  background: #f0f3ff;
}

.message-item.user .message-content {
  align-items: flex-end;
}

/* 调整加载中的消息气泡样式 */
.message-bubble.loading {
  min-width: 40px;
  height: 32px;
  padding: 0 12px;
  margin-top: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 加载图标样式 */
.loading-icon {
  width: 20px;
  height: 20px;
  fill: #4c6fff;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

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

.footer-tip {
  font-size: 12px;
  color: #86909c;
  text-align: center;
  padding: 8px 16px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.message-item.user .message-nickname {
  text-align: right;
  left: auto;
  right: 0;
}

/* 推荐问题骨架屏 */
.recommend-question-skeleton {
  width: 200px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.skeleton-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(190, 190, 190, 0.1) 25%,
      rgba(190, 190, 190, 0.2) 37%,
      rgba(190, 190, 190, 0.1) 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

/* 底部区域样式 */
.bottom-area {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  gap: 12px;
  flex-shrink: 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

/* 输入区域容器 */
.input-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* 输入框和按钮区域 */
.input-area {
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: #f7f8fa;
  border-radius: 8px;
  box-sizing: border-box;
}


/* 输框样式 */
.chat-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #1f2329;
  min-height: 45px;
  max-height: 120px;
  line-height: 20px;
  resize: none;
  overflow-y: auto;
  word-break: break-word;
  white-space: pre-wrap;
}

.chat-input::placeholder {
  color: #86909c;
}


/* 按钮基础样式 */
.input-actions>button,
.input-actions>label {
  width: 32px;
  height: 32px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;

}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .bottom-area {
    padding: 12px;
  }

  .input-actions {
    height: 28px;
  }
}


/* 上传文件预览区域 */
.uploaded-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
  width: 100%;
}

.uploaded-file-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  width: 40%;
  max-width: 200px;
}

.uploaded-image-preview {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}

.file-info {
  display: flex;
  flex: 1;
  min-width: 0;
}

.file-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  margin-left: 8px;
}

.file-name {
  font-size: 16px;
  color: #1f2329;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-size {
  font-size: 14px;
  color: #86909c;
}

.remove-file-btn {
  width: 20px;
  height: 20px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #86909c;
  transition: all 0.2s;
  border-radius: 4px;
  flex-shrink: 0;
}

.remove-file-btn:hover {
  color: #f53f3f;
  background: rgba(245, 63, 63, 0.1);
}

/* 输入框容器样式 */
.input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* 输入区域和按钮的容器 */
.input-area {
  display: flex;
  align-items: flex-end;
  width: 100%;
}



/* 按钮组样式 */
.input-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  /* 确保按钮靠右 */
}

/* 上传文件预览区域 */
.uploaded-files {
  display: flex;
  flex-wrap: wrap;
  /* 加一个底部边框 */
  border-bottom: .1px solid rgba(76, 111, 255, 0.3);
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  order: -1;
  /* 确保文件预览在输入框上方 */
}

/* 图片预览区域 */
.uploaded-images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 0;
  /* 加一个底部边框 */
  border-bottom: .1px solid rgba(76, 111, 255, 0.3);
  padding-bottom: 8px;
  box-sizing: border-box;
}

.uploaded-image-item {
  position: relative;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  box-sizing: border-box;
  width: 22%;
  max-width: 100px;
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}

.uploaded-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
  min-width: 0;
}

.image-info .file-name {
  font-size: 12px;
  color: #1f2329;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
  max-width: 100%;
}

.image-info .file-size {
  font-size: 11px;
  color: #86909c;
  line-height: 1.2;
}

.remove-file-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #4e5969;
}

.remove-file-btn:hover {
  background: #fff;
  border-color: #ff4d4f;
  color: #ff4d4f;
}

/* 上传中的加载状态 */
.uploading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* 删除按钮悬浮效果 */
.uploaded-image-item .remove-file-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}

.uploaded-image-item:hover .remove-file-btn {
  opacity: 1;
}


/* 传中的加载状态 */
.uploading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.uploading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* 上传的图片项样式 */
.uploaded-image-item.uploading {
  background: #f7f8fa;
  border: 1px dashed #e5e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploaded-image-item.uploading .uploading-overlay {
  position: static;
  background: none;
}

.uploaded-image-item.uploading .uploading-spinner {
  border-color: #4c6fff;
  border-top-color: transparent;
}

/* 上传中的文件项样式 */
.uploaded-file-item.uploading {
  background: #f7f8fa;
  border: 1px dashed #e5e6eb;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploaded-file-item.uploading .uploading-overlay {
  position: static;
  background: none;
}

.uploaded-file-item.uploading .uploading-spinner {
  border-color: #4c6fff;
  border-top-color: transparent;
}

/* 消息中的图片样式 */

.message-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 8px;
  object-fit: contain;
}

/* 消息中的文件样式 */
.message-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f7f8fa;
  border-radius: 4px;
  margin: 4px 0;
  width: 100%;
  max-width: 300px;
}

.message-file a {
  color: #4c6fff;
  text-decoration: none;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-file a:hover {
  text-decoration: underline;
}

/* 多内容间的间距 */
.message-bubble>*+* {
  margin-top: 8px;
}

/* 消息内容包装器 */
.message-content-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}



/* 单个图片容器样式 */
.message-image {
  width: fit-content;
  /* 改为适应内容宽度 */
  max-width: 100%;
  /* 最大不超过容器宽度 */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
}

/* 图片本身的样式 */
.message-image img {
  max-width: 100%;
  width: auto;
  /* 使用图片原始宽度 */
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  box-sizing: border-box;
  margin: 0;
}

/* 富文本中的图片样式 */
.message-bubble img:not(.clickable-image) {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 8px auto;
  display: block;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  padding: 4px;
}

.clickable-image {
  cursor: zoom-in;
  transition: opacity 0.2s;
}

.clickable-image:hover {
  opacity: 0.9;
}

/* 图片预览遮罩层样式优化 */
.image-preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  backdrop-filter: blur(5px);
  animation: fade-in 0.2s ease;
}

.preview-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-out;
  animation: zoom-in 0.2s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoom-in {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1);
  }
}

/* 上传片预览样式 */
.uploaded-image-preview.clickable-image {
  cursor: zoom-in;
  transition: transform 0.2s;
}

.uploaded-image-preview.clickable-image:hover {
  transform: scale(1.05);
}

/* 览遮罩层样式调整 */
.image-preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  animation: fade-in 0.2s ease-out;
  backdrop-filter: blur(2px);
  /* 添加背景模糊效果 */
}

.preview-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  animation: zoom-in 0.2s ease-out;
  cursor: default;
  /* 预览片使用默认指针 */
}

/* 消息气泡内的文本样式 */
.message-bubble {
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #1f2329;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  word-break: break-word;
  max-width: 600px;
  width: fit-content;
}

/* 富本段落样式 */
.message-bubble p {
  margin: 0;
  padding: 0;
}

/* 富文本段落间距 */
.message-bubble p+p {
  margin-top: 8px;
}

/* 表格样式 */
.message-bubble ul,
.message-bubble ol {
  margin: 4px 0;
  padding-left: 20px;
}

.message-bubble li {
  margin: 2px 0;
}

/* 标样式 */
.message-bubble h1,
.message-bubble h2,
.message-bubble h3,
.message-bubble h4,
.message-bubble h5,
.message-bubble h6 {
  margin: 8px 0 4px;
  line-height: 1.4;
}

/* 引用样式 */
.message-bubble blockquote {
  margin: 8px 0;
  padding-left: 12px;
  border-left: 3px solid #e5e6eb;
  color: #86909c;
}

/* 代码块样式 */
.message-bubble pre {
  margin: 8px 0;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

/* SyntaxHighlighter 容器样式 */
.message-bubble pre>div {
  margin: 0 !important;
  padding: 12px !important;
  background: #f7f8fa !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}

/* 行内代码样式 */
.message-bubble code:not([class*="language-"]) {
  font-family: monospace;
  font-size: 12px;
  padding: 2px 4px;
  background: #f7f8fa;
  border-radius: 4px;
  color: #e91e63;
}

/* 用户消息中的代码样式 */
.message-item.user .message-bubble pre>div {
  background: rgba(255, 255, 255, 0.1) !important;
}

.message-item.user .message-bubble code:not([class*="language-"]) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* 表格样式 */
.message-bubble table {
  border-collapse: collapse;
  margin: 8px 0;
  width: 100%;
}

.message-bubble th,
.message-bubble td {
  border: 1px solid #e5e6eb;
  padding: 6px 8px;
  text-align: left;
}

.message-bubble th {
  background: #f7f8fa;
}

/* 消息操作按钮容器 - 基础样式 */
.message-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e5e6eb;
}

/* 用户消息中的操作按容器 - 浮样式 */
.message-item.user .message-actions {
  position: absolute;
  bottom: -36px;
  right: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding: 8px;
  background: #4c6fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

/* 户消息中悬时显示操作按钮 */
.message-item.user .message-content:hover .message-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 复制按钮样式 */
.copy-message-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #f7f8fa;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #86909c;
  font-size: 12px;
  transition: all 0.2s;
}

.copy-message-btn:hover {
  background: #e5e6eb;
  color: #4c6fff;
}

/* 用户消息中的复制按钮样式 */
.message-item.user .copy-message-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.message-item.user .copy-message-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* 代码块容器样式 */
.code-block-wrapper {
  position: relative;
  margin: 8px 0;
  border-radius: 8px;
  overflow: hidden;
}

/* 代码块头部样式 */
.code-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f2f3f5;
  border-bottom: 1px solid #e5e6eb;
}

/* 语言标识样式 */
.code-language {
  font-size: 12px;
  color: #86909c;
  text-transform: uppercase;
}

/* 复制按样式 */
.code-copy-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 4px;
  font-size: 12px;
  color: #4e5969;
  cursor: pointer;
  transition: all 0.2s;
}

.code-copy-btn:hover {
  background: #f7f8fa;
  border-color: #4c6fff;
  color: #4c6fff;
}

/* 用户消息中的代码块样式 */
.message-item.user .code-block-header {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.message-item.user .code-language {
  color: rgba(255, 255, 255, 0.8);
}

.message-item.user .code-copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.message-item.user .code-copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* 调代码块容器样式 */
.message-bubble pre {
  margin: 0;
  padding: 0;
}

.message-bubble pre>div {
  margin: 0 !important;
}

/* 数学公式样式 */
.katex-display {
  margin: 1em 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.katex {
  font-size: 1.1em;
  line-height: 1.2;
  text-indent: 0;
}

.katex-html {
  white-space: nowrap;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

/* 处理长公式的滚动 */
.katex-display>.katex {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: auto;
  text-align: initial;
}

/* 优化公式与文本的间距 */
.message-bubble .katex-display {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 8px;
}

/* 复合消息样式优化 */
.message-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* 小间距 */
}




.message-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f6f7;
  /* 添加背景色 */
}

/* 文件区域样式化 */
.message-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0;
  width: 100%;
  box-sizing: border-box;
}

.message-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f7f8fa;
  /* 改为和输入框预览一致的背景色 */
  border: 1px solid #e5e6eb;
  /* 添加边框 */
  border-radius: 8px;
  transition: all 0.2s ease;
  margin: 4px 0;
  box-sizing: border-box;
}

/* 文件项悬浮效果 */
.message-file:hover {
  background: #f0f2f5;
  /* 悬浮时稍加深 */
  border-color: #d0d3d9;
}

/* 文件信息样式 */
.file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

/* 文件图标样式 */
.file-info svg {
  flex-shrink: 0;
  color: #4c6fff;
  width: 20px;
  height: 20px;
}

/* 文件名和大小容器 */
.file-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* 文件名样式 */
.file-name {
  font-size: 16px;
  color: #1f2329;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 文件大小样式 */
.file-size {
  font-size: 14px;
  color: #86909c;
}

/* 用户消息中的文件样式 */
.message-item.user .message-file {
  background: rgba(76, 111, 255, 0.1);
  /* 用户消息中的文件背景色 */
}

.message-item.user .message-file:hover {
  background: rgba(76, 111, 255, 0.15);
  /* 用户消息中悬浮时的背景色 */
}

.message-item.user .file-name {
  color: #fff;
}

.message-item.user .file-size {
  color: rgba(255, 255, 255, 0.7);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .message-images {
    grid-template-columns: repeat(auto-fit, minmax(100px, 150px));
    /* 移动图片更 */
  }

  .message-file {
    max-width: calc(100vw - 100px);
    /* 考虑边距和头像 */
  }
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .coze-container .chat-header {
    height: 56px;
    min-height: 56px;
    padding: 0 16px;
  }

  .coze-container .header-left {
    gap: 12px;
  }

  .coze-container .header-icon {
    width: 32px;
    height: 32px;
  }

  .coze-container .header-title {
    font-size: 16px;
  }
}

/* 超窄屏幕适配 */
@media screen and (max-width: 375px) {
  .coze-container .chat-header {
    padding: 0 12px;
  }

  .coze-container .header-left {
    gap: 8px;
  }

  .coze-container .header-icon {
    width: 28px;
    height: 28px;
  }

  .coze-container .header-title {
    font-size: 15px;
  }
}

/* 底部提示文字样式 */
.footer-tip {
  font-size: 12px;
  color: #86909c;
  text-align: center;
  padding: 8px 16px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  /* 防止被压缩 */
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .footer-tip {
    padding: 6px 12px;
    font-size: 11px;
  }
}


/* 消息内容区域 */
.message-content {
  flex: 0 1 auto;
  min-width: calc(100%);
  max-width: calc(100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  padding-top: 20px;
  overflow-x: visible;
}

/* 消息气泡基础样式 */
.message-bubble {
  padding: 12px 16px;
  background: #f7f8fa;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: fit-content;
  max-width: 75%;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2329;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 用户消息气泡样式 */
.message-item.user .message-bubble {
  background: #4c6fff;
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  margin-left: auto;
}

/* 消息气泡内样式 */
.message-bubble>div {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.message-list-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.message-list {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 滚动条样式优化 */
.message-list::-webkit-scrollbar {
  width: 4px;
  /* 减小滚动条宽度 */
}

.message-list::-webkit-scrollbar-track {
  background: transparent;
}

.message-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  /* 更淡的颜色 */
  border-radius: 2px;
  transition: background 0.2s;
}

.message-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
  /* 悬浮时稍微加深 */
}

/* Firefox 滚动条样式 */
.message-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

/* 代码块滚动条样式优化 */
.message-bubble>div::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

.message-bubble>div::-webkit-scrollbar-track {
  background: transparent;
}

.message-bubble>div::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.message-bubble>div::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* 用户消息中的滚动条样式 */
.message-item.user .message-bubble>div::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

.message-item.user .message-bubble>div::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 复制按钮样式优化 */
.message-actions {
  position: absolute;
  right: 8px;
  bottom: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.message-bubble:hover .message-actions {
  opacity: 1;
}

.copy-message-btn {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e6eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #4e5969;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-message-btn:hover {
  background: #fff;
  border-color: #4c6fff;
  color: #4c6fff;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .message-bubble {
    max-width: 80%;
  }
}

/* 文件区域样式优化 */
.message-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  width: 100%;
  max-width: 250px;
  transition: all 0.2s ease;
  margin: 4px 0;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.file-icon {
  width: 16px;
  height: 16px;
  color: #4e5969;
  flex-shrink: 0;
}

.file-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.file-name {
  font-size: 14px;
  color: #1f2329;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

.file-size {
  font-size: 12px;
  color: #86909c;
  line-height: 1.2;
}

/* 下载按钮样式 */
.download-file-btn {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 4px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #4e5969;
  flex-shrink: 0;
}

.download-file-btn:hover {
  background: #e5e6eb;
  color: #4c6fff;
}

.download-file-btn svg {
  width: 16px;
  height: 16px;
}

/* 用户消息中的文件样式 - 保持和普通文一样的白底黑 */
.message-item.user .message-file {
  background: #f7f8fa;
  border-color: #e5e6eb;
}

.message-item.user .message-file:hover {
  background: #f0f2f5;
  border-color: #d0d3d9;
}

.message-item.user .file-name {
  color: #1f2329;
}

.message-item.user .file-size {
  color: #86909c;
}

.message-item.user .remove-file-btn {
  color: #4e5969;
}

.message-item.user .remove-file-btn:hover {
  background: #e5e6eb;
  color: #4c6fff;
}

/* Toast 样式 */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-message {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  animation: toast-in-out 2s ease;
  opacity: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes toast-in-out {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* 富文本题样式优化 */
.message-bubble h1 {
  font-size: 18px;
  margin: 16px 0 12px;
  line-height: 1.4;
}

.message-bubble h2 {
  font-size: 16px;
  margin: 14px 0 10px;
  line-height: 1.4;
}

.message-bubble h3 {
  font-size: 15px;
  margin: 12px 0 8px;
  line-height: 1.4;
}

.message-bubble h4 {
  font-size: 14px;
  margin: 10px 0 8px;
  line-height: 1.4;
}

.message-bubble h5,
.message-bubble h6 {
  font-size: 13px;
  margin: 8px 0 6px;
  line-height: 1.4;
}

/* 第一个标题去掉上边距 */
.message-bubble>*:first-child {
  margin-top: 0;
}

/* 最后一个元素去掉下边距 */
.message-bubble>*:last-child {
  margin-bottom: 0;
}

/* 底部区域样式优化 */
.bottom-area {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  position: relative;
  box-shadow: 0 -1px 20px rgba(0, 0, 0, 0.05);
}

/* 输入框容器样式优化 */
.input-container {
  background: rgba(247, 248, 250, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.input-container:hover {
  background: rgba(247, 248, 250, 0.9);
  border-color: rgba(76, 111, 255, 0.3);
}

/* 底部提示文字样式优化 */
.footer-tip {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* 修改滚动到底部按钮样式 */
.scroll-to-bottom {
  position: absolute;
  right: 12px;
  bottom: 90px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

.scroll-to-bottom.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-bottom:hover {
  background: #fff;
  border-color: #4c6fff;
  color: #4c6fff;
  transform: translateY(-1px) translateX(-2px);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .scroll-to-bottom {
    right: 12px;
    width: 36px;
    height: 36px;
  }
}

/* 富文本中的图片样式控制 */
.message-bubble img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 8px 0;
}

/* 确保消息气泡内的所有内容都不会溢出 */
.message-bubble>div {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  /* 防止垂直滚动条 */
}

/* 消息内容包装器样式 */
.message-content-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}


/* 图片容器样式 */
.message-images {
  display: flex;
  /* 减小图片间距 */
  margin: 0;
  /* 减小外边距 */
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

/* 单个图片容器样式 */
.message-image {
  width: fit-content;
  /* 改为适应内容宽度 */
  max-width: 120px;
  height: fit-content;
  /* 最大不超过容器宽度 */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
}

/* 图片本身的样式 */
.message-image img {
  max-width: 100%;
  width: auto;
  /* 使用图片原始宽度 */
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  box-sizing: border-box;
  margin: 0;
}

/* 富文本中的图片样式 */
.message-bubble img:not(.clickable-image) {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 8px auto;
  display: block;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  padding: 4px;
}

.clickable-image {
  cursor: zoom-in;
  transition: opacity 0.2s;
}

.clickable-image:hover {
  opacity: 0.9;
}

/* 图片预览遮罩层样式优化 */
.image-preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  backdrop-filter: blur(5px);
  animation: fade-in 0.2s ease;
}

.preview-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-out;
  animation: zoom-in 0.2s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoom-in {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1);
  }
}

/* 新建会话按钮和上传文件按钮的基础样式 */
.new-chat-btn {
  margin-right: auto;
}

.new-chat-btn,
.upload-btn {
  background: rgba(76, 111, 255, 0.1);
  /* 使用半透明的主题色 */
  color: #4c6fff;
  /* 文字使用题色 */
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(76, 111, 255, 0.15);
  /* 添加淡淡的边框 */
}

/* 悬浮效果 */
.new-chat-btn:hover:not(.disabled),
.upload-btn:hover:not(.disabled) {
  background: rgba(76, 111, 255, 0.15);
  /* 稍微加深背景 */
  color: #4c6fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(76, 111, 255, 0.1);
  border-color: rgba(76, 111, 255, 0.3);
}

/* 点击效果 */
.new-chat-btn:active:not(.disabled),
.upload-btn:active:not(.disabled) {
  background: rgba(76, 111, 255, 0.2);
  /* 点击时更深 */
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(76, 111, 255, 0.1);
}

/* 禁用状态 */
.new-chat-btn.disabled,
.upload-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f6f7;
  color: #a9aeb8;
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* 图标颜色 */
.new-chat-btn svg,
.upload-btn svg {
  transition: transform 0.3s ease;
  fill: currentColor;
}@font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url(/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2) format("woff2"),url(/assets/KaTeX_AMS-Regular-DMm9YOAa.woff) format("woff"),url(/assets/KaTeX_AMS-Regular-DRggAlZN.ttf) format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf) format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf) format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff) format("woff"),url(/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf) format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff) format("woff"),url(/assets/KaTeX_Fraktur-Regular-CB_wures.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Main-Bold-Cx986IdX.woff2) format("woff2"),url(/assets/KaTeX_Main-Bold-Jm3AIy58.woff) format("woff"),url(/assets/KaTeX_Main-Bold-waoOVXN0.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2) format("woff2"),url(/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff) format("woff"),url(/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2) format("woff2"),url(/assets/KaTeX_Main-Italic-BMLOBm91.woff) format("woff"),url(/assets/KaTeX_Main-Italic-3WenGoN9.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Main-Regular-B22Nviop.woff2) format("woff2"),url(/assets/KaTeX_Main-Regular-Dr94JaBh.woff) format("woff"),url(/assets/KaTeX_Main-Regular-ypZvNtVU.ttf) format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2) format("woff2"),url(/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff) format("woff"),url(/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf) format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Math-Italic-t53AETM-.woff2) format("woff2"),url(/assets/KaTeX_Math-Italic-DA0__PXp.woff) format("woff"),url(/assets/KaTeX_Math-Italic-flOr_0UB.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url(/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff) format("woff"),url(/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url(/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff) format("woff"),url(/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url(/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff) format("woff"),url(/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf) format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Script-Regular-D3wIWfF6.woff2) format("woff2"),url(/assets/KaTeX_Script-Regular-D5yQViql.woff) format("woff"),url(/assets/KaTeX_Script-Regular-C5JkGWo-.ttf) format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2) format("woff2"),url(/assets/KaTeX_Size1-Regular-C195tn64.woff) format("woff"),url(/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf) format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2) format("woff2"),url(/assets/KaTeX_Size2-Regular-oD1tc_U0.woff) format("woff"),url(/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf) format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url(data:font/woff2;base64,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) format("woff2"),url(/assets/KaTeX_Size3-Regular-CTq5MqoE.woff) format("woff"),url(/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf) format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2) format("woff2"),url(/assets/KaTeX_Size4-Regular-BF-4gkZK.woff) format("woff"),url(/assets/KaTeX_Size4-Regular-DWFBv043.ttf) format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2) format("woff2"),url(/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff) format("woff"),url(/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf) format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.18"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:-webkit-min-content;width:-moz-min-content;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .mathsfit,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.2777777778em;margin-right:-.5555555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.1666666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.6666666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.4566666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.1466666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.7142857143em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.8571428571em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.1428571429em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.2857142857em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.4285714286em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.7142857143em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.0571428571em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.4685714286em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.9628571429em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.5542857143em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.7777777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.8888888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.1111111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.3044444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.7644444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.5833333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.7283333333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.0733333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.4861111111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.4402777778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.7277777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.2893518519em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.4050925926em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.462962963em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.5208333333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.2002314815em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.4398148148em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.2410800386em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.2892960463em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.337512054em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.3857280617em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.4339440694em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.4821600771em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.5785920926em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.6943105111em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.8331726133em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.1996142719em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.2009646302em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.2411575563em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.2813504823em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.3215434084em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.3617363344em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.4019292605em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.4823151125em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.578778135em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.6945337621em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.8336012862em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo}
#root {
  height: 100%;
  width: 100%;
  margin: 0;
}html,
body {
  height: 100%;
  width: 100%;
  margin: 0px;
}
