.custom-a {
    text-decoration: none;
    color: #383838;
}

.custom-a:hover {
    font-weight: bold;
    color: #41c9a5;
}

.wd-editor {
    min-width: 400px;
    /* width:800px; */
    /* flex:1; */
    /* 最小宽度 */
    /**overflow: auto;*/
    /* 如果内容溢出，则显示滚动条 */
    /* height: 48vh; */
    transition: width 0.2s;
    /* 宽度变化时的过渡效果 */
    background-color: #e0e0e0;
    border: 1.5px solid #e6e6e6;
    padding: 0px;
    /* 左右内容区域的内边距 */
}

/**去掉他自己的错误显示  支持转移*/
.ace_gutter-cell.ace_error {
    background-image: none !important;
}


/**两个编辑框的共同的样式*/
/** 整个编辑框的文字的大小和行高*/
.ace_editor {
    font-size: 14.4px !important;
    line-height: 22px !important;
}

/**激活行的行头的背景色*/
.ace-chrome .ace_gutter-active-line {
    background-color: #f0f0f0;
}

/**行号框背景色*/
.ace-chrome .ace_gutter {
    background-color: #f0f0f0;
}


/**激活行的编辑器中的背景色*/
.ace-chrome .ace_marker-layer .ace_active-line {
    background-color: transparent;
}

/**活动光标的颜色*/
.ace-chrome .ace_cursor {
    color: #787878;
}

/**非活动光标的透明度*/
.ace_hidden-cursors .ace_cursor {
    opacity: 0;
}


/**右侧样式*/
.right .ace_gutter-layer {
    border-right: none;
    height: 68vh;
}

/**右侧数字的颜色和大小*/
.right .ace_gutter-cell {
    color: #484848;
    font-size: 14.2px;
    font-family: monospace, Tahoma, "微软雅黑", "幼圆";
}

/**行号右侧的线*/
.right .ace_content {
    font-family: monospace, Tahoma, "微软雅黑", "幼圆" !important;
    border-left: 1px solid #e0e0e0;
}

/**key value颜色*/
.right .ace-chrome .ace_variable {
    font-weight: 600;
    color:#41c9a5;
}

/**选中大括号或者中括号后的样式*/
.right .ace_br15 {
    border:none !important;
    border-color: white !important;
}



/**设置内容样式*/
.ace-chrome .ace_variable {
    /* color: red; */
}

/**字体颜色*/
.ace_line{
    color:#525252;
}