.result-default-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.result-default-info .iconfont-old {
  font-size: 40px;
}
.main-container {
  min-height: 570px;
}
.key-list {
  background-color: rgba(0, 0, 0, 0.05);
  max-height: 500px;
  overflow-y: auto;
  border-radius: 6px;
}
.key-list .keyline {
  line-height: 2;
}
.result-content {
  max-height: 500px;
  overflow-y: auto;
}
.result-content .ai-result {
  height: 100%;
  overflow-y: auto;
}
#input-tip {
  min-width: 200px;
}
#url-result {
  overflow: auto;
}
#url-result img {
  min-width: 100% !important;
}
.keywords-null span {
  font-size: 60px;
}
#ai-result {
    white-space: pre-wrap; /* 保留文本中的换行符，并允许自动换行 */
}
#url-loading {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.webui-popover-content {
  width: 90vw;
  max-width: 700px;
  min-height: 500px;
}
.dark-mode .webui-popover-content {
  border-color: #333 !important;
}
.form-check-input {
  width: 16px;
  height: 16px;
}
/* 设置默认的checkbox样式 */
input.form-check-input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  /* 移除默认样式 */
  border: 1px solid #999;
  outline: none;
  border-radius: 2px;
  border: 1px solid #4c4e4f;
  background: #fff;
  position: relative;
}
/* 设置选中状态下的checkbox样式 */
input.form-check-input[type="checkbox"]:checked {
  background-color: #007bff;
  /* 你可以更改这个颜色为你想要的颜色 */
}
.dark-mode input.form-check-input[type="checkbox"]:checked {
  background-color: #3f6791;
  /* 你可以更改这个颜色为你想要的颜色 */
}
/* 显示对勾 */
input.form-check-input[type="checkbox"]:checked::after {
  content: "";
  color: #fff;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  background-image: url("../imgs/svg/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
