.editor-customTip {
  margin-bottom: 16px;
  border: 1px solid rgba(68, 119, 238, 0.2);
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.65);
}
.editor-customTip .titleDiv {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 16px;
  background: rgba(68, 119, 238, 0.1);
}
.editor-customTip .titleDiv .title {
  color: #1C242E;
  font-weight: 500;
}
.editor-customTip .titleDiv a {
  position: absolute;
  right: 16px;
  color: #47e;
}
.editor-customTip .titleDiv a span {
  margin-left: 8px;
  font-size: 12px;
}
.editor-customTip .showContent {
  height: 125px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.editor-customTip .hideContent {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.editor-customTip-item.contentDiv .itemDiv pre {
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  color: rgba(28, 36, 46, 0.75);
  font-family: PingFang SC-Regular, PingFang SC, sans-serif;
}
.editor-customTip-item.showContent {
  height: fit-content;
  padding: 12px 16px;
}
.editor-customTip-list.contentDiv .itemDiv {
  line-height: 24px;
  flex: 0;
  margin: 0;
  padding: 0;
  color: rgba(28, 36, 46, 0.85);
  border-right: 0;
  display: flex;
  align-items: center;
}
.editor-customTip-list .itemDes {
  display: flex;
  align-items: center;
}
.editor-customTip-list.showContent {
  height: fit-content;
  padding: 12px;
}
.editor-customTip .contentDiv .link {
  color: #47e;
  text-decoration: underline;
}
.editor-customTip .contentDiv .strong {
  font-weight: 600;
}
.editor-customTip-card.contentDiv {
  flex-direction: row;
  display: flex;
}
.editor-customTip-card.contentDiv .itemDiv {
  flex: 1;
  margin: 12px 0;
  padding: 0 16px;
}
.editor-customTip-card.contentDiv .itemDiv:not(:last-child) {
  border-right: 1px solid rgba(68, 119, 238, 0.2);
}
.editor-customTip-card.contentDiv .itemDiv .itemTitle {
  margin-bottom: 4px;
  color: rgba(28, 36, 46, 0.85);
  font-weight: 500;
  font-size: 14px;
}
.editor-customTip-card.contentDiv .itemDiv .itemDes {
  color: rgba(28, 36, 46, 0.65);
  font-weight: 400;
  font-size: 12px;
}
.editor-customTip-data .itemDiv {
  display: flex;
}
.editor-customTip-data .itemDiv .itemTitle {
  color: #47e;
  margin-right: 10px;
  height: fit-content;
  user-select: none;
}
.editor-customTip-data .itemDiv .itemDes {
  flex: 1;
  background: #F6F8FA;
  border-radius: 6px;
  padding: 2px 4px;
  max-height: 180px;
  overflow: scroll;
  user-select: text;
  cursor: pointer;
}
.editor-customTip-data .itemDiv .itemDes pre {
  width: fit-content;
  cursor: text;
}
.editor-customTip-data.showContent {
  height: fit-content;
  overflow: hidden;
  padding: 12px;
}
.editor-customTip-small {
  font-size: 12px;
}
.editor-customTip-small .titleDiv {
  padding: 6px 12px;
}
.editor-customTip-small .titleDiv .title {
  line-height: 20px;
}
