/* 名词解释样式 */

/* 名词解释标记样式（前台） */
.mcjs {
    color: blue;
    text-decoration: underline;
    cursor: help;
    position: relative;
    display: inline-block;
}

/* 名词解释标记样式（后台编辑器） */
.mce-content-body .mcjs {
    color: #0073aa;
    text-decoration: underline;
    cursor: help;
    position: relative;
    display: inline-block;
    background-color: #ffe8ca;
    padding: 0px 5px 0px 5px;
    margin: 0px 3px 0px 3px;
    border-radius: 5px;
}

/* 名词解释块样式（编辑器中） */
.mcjsdiv {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    display: block;
}

/* 名词解释弹出窗口样式 */
.mcjs-popup {
    position: absolute;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 300px;
    min-width: 200px;
}

/* 名词解释弹出窗口箭头 */
.mcjs-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

/* 名词解释弹出窗口内容 */
.mcjs-popup-content {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* 编辑器中的名词解释块样式 */
.mce-content-body .mcjsdiv {
    display: block;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
}