/*
 * @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 {
  height: 562px;
  width: 244px;
  box-shadow: 4px 6px 8px 0px rgba(98, 100, 109, 0.12);
  display: inline-flex;
  background: #f5f5f5;
  transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
  position: absolute;
  left: 70px;
  bottom: 0;
}
.gd-editor-help * {
  box-sizing: border-box;
}
.gd-editor-help--active {
  width: 756px;
}
.gd-editor-help--active .gd-editor-help-menu-bar {
  border-right: 1px solid #e8ecf2;
}
.gd-editor-help .gd-editor-help-content,
.gd-editor-help .gd-editor-help-menu-bar {
  flex: 0 0 auto;
}
.editor-help-slide-fade-leave-active,
.editor-help-slide-fade-enter-active {
  transform: translateX(0);
  transition: all 0.2s ease-out;
}
.editor-help-slide-fade-enter,
.editor-help-slide-fade-leave-to {
  opacity: 0;
  transform: translateX(-5%);
}
.editor-help-fade-leave-active,
.editor-help-fade-enter-active {
  transition: all 0.2s ease-out;
}
.editor-help-fade-enter,
.editor-help-fade-leave-to {
  opacity: 0;
}
