body,
div,
p,
input,
button,
a,
ul,
li,
ol,
img {
    margin: 0;
    padding: 0;
}
button,
input {
    outline: none;
    border: none;
    box-shadow: none;
}
/*ul {
	list-style: none;
}
*/
.flex {
    display: flex;
}
.between {
    justify-content: space-between;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}

/* 整个滚动条 */
::-webkit-scrollbar {
    width: 12px; /* 垂直滚动条宽度 */
    height: 12px; /* 水平滚动条高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道背景色 */
    border-radius: 6px; /* 圆角 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #888; /* 滑块背景色 */
    border-radius: 6px; /* 圆角 */
    border: 3px solid #f1f1f1; /* 滑块边框 */
}

/* 滚动条滑块悬停效果 */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* 悬停时滑块背景色 */
}
/* 序号样式 */
#editor ol {
    counter-reset: item;
    padding-left: 2em;
}

#editor ol > li {
    counter-increment: item;
    margin-bottom: 0.5em;
    position: relative;
    list-style-type: none;
}

#editor ol > li:before {
    content: counter(item) ".";
    position: absolute;
    left: -2em;
    color: #333;
    /* font-weight: bold; */
}

/* 无序列表样式 */
#editor ul {
    padding-left: 2em;
}

#editor ul > li {
    margin-bottom: 0.5em;
    position: relative;
    list-style-type: none;
}

#editor ul > li:before {
    content: "•";
    position: absolute;
    left: -1.5em;
    color: #333;
}

/* 任务列表样式 */
#editor ul.contains-task-list {
    padding-left: 0;
}

#editor .task-list-item {
    list-style-type: none;
    margin-left: 1.5em;
}

#editor .task-list-item input[type="checkbox"] {
    margin-right: 0.5em;
    transform: scale(1.2);
}

.editor-box {
    display: flex;
    display: -ms-flexbox; /* IE 10 */
    flex-direction: column;
    height: 100%;
}

.editor-header {
    padding: 10px 35px;
    display: flex;
    display: -ms-flexbox; /* IE 10 */
}

.editor {
    flex: 1;
    overflow-x: auto;
    overflow-y: auto;
    padding: 10px 35px;
	padding-bottom: 100px;
}

.editor:focus {
    outline: none;
}

.editor table,
.editor tr,
.editor th,
.editor td {
    border: 1px solid #e5e5e5;
    border-collapse: collapse; /* 移除单元格之间的间隔 */
}

.editor th,
.editor td {
    padding: 5px;
}

.editor-exec {
    /* border: 1px solid #ddd; */
    cursor: pointer;
    background: none;
    cursor: default;
    transition: all 0.2s;
    border-radius: 4px;
    margin-right: 4px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.editor-exec img {
    width: 18px;
    height: 18px;
}

.exec-redo img,
.exec-undo img{
	width: 30px;
    height: 26px;
}

.exec-copy img {
	width: 16px;
    height: 16px;
}

.exec-word img {
	width: 23px;
    height: 23px;
}



.editor-exec:hover {
    background: #f0f0f0;
}

.editor-exec.active {
    background: #c8cbcf;
}

.exec-italic,
.exec-redo {
    margin-right: 25px;
}

.editor-exec.disabled {
	cursor: not-allowed;
}

.exec-italic {
}
