/* 添加实时预览区的文字填充样式 */
.preview-layer::before {
  content: attr(data-fill-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none; /* 避免干扰鼠标交互 */
}

.icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
}

.style-editor {
  width: 300px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
