.edui-editor {
  position: relative;
  box-shadow: none;
  border-radius: 0;
}

.edui-editor .edui-editor-body {
  background-color: #fff;
}

.edui-editor .edui-editor-body .edui-body-container {
  padding: 10px;
}

/* 基本HTML元素样式 */
.edui-editor p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.edui-editor h1,
.edui-editor h2,
.edui-editor h3,
.edui-editor h4,
.edui-editor h5,
.edui-editor h6 {
  font-weight: bold;
  margin: 10px 0;
}

.edui-editor h1 {
  font-size: 2em;
}

.edui-editor h2 {
  font-size: 1.5em;
}

.edui-editor h3 {
  font-size: 1.17em;
}

.edui-editor h4 {
  font-size: 1em;
}

.edui-editor h5 {
  font-size: 0.83em;
}

.edui-editor h6 {
  font-size: 0.67em;
}

.edui-editor ul,
.edui-editor ol {
  padding-left: 40px;
  margin: 1em 0;
}

.edui-editor ul li {
  list-style-type: disc;
}

.edui-editor ol li {
  list-style-type: decimal;
}

.edui-editor blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}

.edui-editor pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.edui-editor code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

.edui-editor table {
  border-collapse: collapse;
  margin-bottom: 20px;
}

.edui-editor table th,
.edui-editor table td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #ddd;
}

.edui-editor table th {
  font-weight: bold;
  border-top: 1px solid #BBB;
  background-color: #F7F7F7;
}

.edui-editor table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.edui-editor img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.edui-editor a {
  color: #337ab7;
  text-decoration: none;
}

.edui-editor a:hover {
  color: #23527c;
  text-decoration: underline;
}

.edui-editor hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/* 文本对齐 */
.edui-text-align-left {
  text-align: left;
}

.edui-text-align-center {
  text-align: center;
}

.edui-text-align-right {
  text-align: right;
}

.edui-text-align-justify {
  text-align: justify;
}

/* 浮动 */
.edui-float-left {
  float: left;
  margin-right: 10px;
}

.edui-float-right {
  float: right;
  margin-left: 10px;
}

.edui-clearfix::after {
  content: "";
  display: table;
  clear: both;
}