
/* 细线表格核心样式 */
.editorContent table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 6px;              /* 圆角效果 */
  /*overflow: hidden;*/                /* 隐藏溢出部分 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 柔和阴影提升层次感 */
}

/* 单元格细线 */
.editorContent td, .editorContent th {
  border: 1px solid #e8e8e8;
  padding: 10px 15px;
  text-align: center;
  transition: all 0.2s ease;
}

.editorContent img {
	max-width: 100% !important;
	height: auto; 
	overflow-clip-margin: content-box;
	overflow: clip;
}


