/*
 * @Author: 天吾
 * @Date: 2019-01-23 16:29:55
 * @Last Modified by: 天吾
 * @Last Modified time: 2019-04-27 19:55:52
 */
/*
    size 统一用  sm base lg  表示,  对于不能满足的情况, 仿照衣服尺寸加上 x(EXTRA) 比如  font-size-xlg 表示特大
*/
.gd-editor-help-content {
  height: 100%;
  width: 512px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
}
.gd-editor-help-content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.gd-editor-help-content::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #e1e5f5;
}
.gd-editor-help-content::-webkit-scrollbar-track {
  border-radius: 3px;
}
.gd-editor-help-content .gd-editor-help-content__html {
  padding: 22px;
  flex: 1 1 auto;
  max-width: 510px;
}
.gd-editor-help-content .gd-editor-help-content__html * {
  max-width: 464px;
  height: auto;
}
.gd-editor-help-content .gd-editor-help-content__footer {
  background: #fff;
  width: 100%;
  color: #666666;
  padding: 0 26px;
  display: flex;
  flex: 0 0 64px;
  align-items: center;
  justify-content: space-between;
}
.gd-editor-help-content .gd-editor-help-content__footer .gd-button {
  font-size: 12px;
  height: 30px;
  min-width: 64px;
}
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--disabled,
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--normal {
  background: #ebecf0;
  border: none;
  color: #666666;
}
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--disabled:hover:not([disabled]),
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--normal:hover:not([disabled]) {
  background-color: #005CF9;
  color: #fff;
}
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--loading {
  background-color: #005CF9;
  color: #fff;
}
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--text {
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.gd-editor-help-content .gd-editor-help-content__footer .gd-button--text .gd-icon {
  margin-left: 4px;
}
.gd-editor-help-content .gd-editor-help-content__panel {
  flex: 1 1 auto;
  overflow: hidden;
}
.gd-editor-help-content .gd-editor-help-content__panel > * {
  transition: all 0.3s ease;
}
.gd-editor-help-content .gd-editor-help-content__panel > * + * {
  margin-left: 16px;
}
.gd-editor-help-content .gd-editor-help-content__fade-enter {
  opacity: 0;
  transform: translateY(30px);
}
.gd-editor-help-content .gd-editor-help-content__fade-leave-to {
  transition: none;
}
