* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* header */
:root {
  --header-height: 63px;
  --primary-color: #1a1a1a;
  /* 高级黑 */
  --accent-color: #e0b36a;
  /* 香槟金 */
  --glass-bg: rgba(255, 255, 255, 0.95);
  /* 毛玻璃背景 */
}

/* 基础结构 */
.header {
  width: 100%;
  height: var(--header-height);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  /* 毛玻璃效果 */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Logo设计 */
.logo {
  font: 700 24px/1 'Helvetica Neue', sans-serif;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  position: relative;
  /* padding-left: 40px; */
  color: #0066cc;
  transition: opacity 0.3s ease;
}

.logo:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  mask: url('data:image/svg+xml,...') no-repeat;
  /* 替换为实际logo的SVG */
}

/* 搜索框增强 */
.search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-box {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 20px;
  border: none;
  /* background: rgba(245, 245, 245, 0.8); */
  border-radius: 20px;
  font: 14px/1.6 'Segoe UI', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-box:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px var(--accent-color);
}

/* 用户菜单 */
.user-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.avatar:hover {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

/* 下拉菜单 */
.dropdown-content {
  position: absolute;
  top: calc(var(--header-height) + 10px);
  right: 0;
  width: 220px;
  background: var(--glass-bg);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  color: var(--primary-color);
  font: 500 14px/1 'Segoe UI', sans-serif;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.03);
  padding-left: 28px;
}

.dropdown-content a:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .header {
    grid-template-columns: 160px 1fr auto;
    padding: 0 3%;
  }

  .search-container {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .header {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }

  .logo {
    font-size: 15px;
    /* 隐藏文字只显示图形 */
    padding-left: 30px;
  }

  .search-box {
    height: 36px;
    font-size: 13px;
  }

  .avatar {
    width: 38px;
    height: 38px;
  }
}

/* 微交互增强 */
.search-box::placeholder {
  color: #999;
  transition: opacity 0.3s ease;
}

.search-box:focus::placeholder {
  opacity: 0.5;
}

@keyframes subtleShine {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 179, 106, 0.3);
  }

  100% {
    box-shadow: 0 0 0 6px rgba(224, 179, 106, 0);
  }
}

.avatar:active {
  animation: subtleShine 0.4s ease;
}

/* 搜素结果显示样式 */
.search-results {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0px;

  color: #eee;
  display: flex;
  background-color: #fff;
  flex-direction: column;
}

.search-results>a {
  text-decoration: noen;
  color: #0077e6;
  font-size: 1rem;
  padding: 6px 0px;
}






/* 文章显示卡片 */
.top-gap {
  margin-top: 68px;
}

.gap-10 {
  width: 100%;
  /* max-width: 410px; */
  padding: 8px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(116, 116, 116, 8%);

}

.left-titl {
  padding: 10px 7px 10px 0;
  width: 100%;
  position: relative;
}

.left-titl .titl-cay {
  /* margin-bottom: 39px; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15.6px;
  white-space: normal;
  transition: .3s;
  color: #000000;
}

/* 作者 */

.ios-model-span {
  position: absolute;
  color: #86868b;
  bottom: 5px;
  width: 100%;
}

/* 文章信息 */
.ios-model-span .list-ios {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  white-space: normal;
  max-width: 60px;
  font-size: 11px;
}

/* 原创 */
.original-tag,.repost-tag {
  background: rgb(41 151 247 / 10%);
  color: #2997f7;
  padding: 4px; 
  font-size: 11px;
}
.repost-tag {
  background:#f5f6f7;
  color: #86868b;
}
/* 封面 */
.cay-imgae {
  width: 270px;
  height: 112px;
  border-radius: 4px;
  background: rgba(224, 224, 224, .253);
  overflow: hidden;
}

.cay-imgae img,
.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.gap-10:hover .cay-imgae img {
  transform: scale(1.05);
}

/* end */
.gap-10:hover .left-titl .titl-cay {
  color: rgb(41 151 247);
}

/* 侧边栏目 */
.demo-flex {
  width: 100%;
  height: auto;
}

/* 推荐博主 */
.demo-flex .user-list {
  background-color: #fff;
}

/* 主容器：用户信息卡片 */
.user-info-card {
  width: 100%;
  max-width: 400px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* 用户信息主容器 - 使用Flex布局 */
.user-container {
  display: flex;
  /* 启用Flex布局 */
  align-items: center;
  /* 垂直居中对齐 */
}

/* 头像样式 */
.user-avatar {
  width: 64px;
  /* 头像尺寸 */
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  /* 圆形头像 */
  background-color: #e0e0e0;
  /* 默认灰色背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  /* 右侧间距 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* 轻微阴影增加深度 */
  font-size: 24px;
  /* 图标大小 */
  color: #888;
  /* 图标颜色 */
}


/* 用户信息区域样式 */
.user-details {
  flex-grow: 1;
  /* 占据剩余空间 */
}

/* 用户名样式 */
.username-tow {
  /* 适当大字号 */
  color: #666;
  /* 深灰色文字 */
  /* 稍粗字体 */
  margin-bottom: 10px;
  /* 下边距 */
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  white-space: normal;
  max-width: 60px;
}

/* 统计信息公共样式 */
.statistic {
  font-size: 0.95rem;
  color: #999;
  /* 浅灰色文字 */
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  /* 行间距 */
}

/* 统计信息图标样式 */
.statistic i {
  margin-right: 8px;
  /* 图标右边距 */
  font-size: 1.1rem;
  /* 稍大的图标 */
}


.social-button i {
  margin-right: 6px;
}

.divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 18px 0;
}

/* 响应式设计：小屏幕调整 */
@media (max-width: 480px) {
  .user-info-card {
    padding: 18px;
  }

  .user-avatar {
    width: 56px;
    height: 56px;
  }

  .username-tow {
    font-size: 1.3rem;
  }
}

/* end */

/* 加载动画 */
@keyframes shimmer {
  100% {
    background-position: 200% 0;
  }
}

.cover-img img[src*="loading"] {
  background: linear-gradient(90deg,
      #f8f9fa 25%,
      #e9ecef 50%,
      #f8f9fa 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}









/* 
 
 
 
 */

/* 代码块容器样式 */
/* 代码编辑容器 */
.code-editor-wrapper {
  position: relative;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 代码内容区 */
.code-content {
  margin: 0;
  padding: 1rem;
  min-height: 50px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  background: #f8f9fa;
}

/* 控制按钮 */
.code-controls {
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.code-editor-wrapper:hover .code-controls {
  opacity: 1;
}

.btn-lock {
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 3px;
}





/* 分类选项框style */

.category-selector {
  --primary-color: #2a6f97;
  --hover-bg: #f8f9fa;
}

.custom-select {
  border: 2px solid #dee2e6;
  border-radius: 10px;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selected-option {
  /* padding: 1rem 1.5rem; */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-option[aria-expanded="true"] .transition-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  /* border: 2px solid var(--primary-color); */
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  z-index: 1000;
}

.search-box {
  position: relative;
  /* padding: 1rem; */
  /* border-bottom: 1px solid #eee; */
}

.search-box input {
  padding-left: 2.5rem;
  border: none;
  box-shadow: none !important;
}

.search-box i {
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

.option-list {
  max-height: 300px;
  overflow-y: auto;
  margin: 0;
  padding: 0.5rem 0;
}

.option {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.option:hover {
  background: var(--hover-bg);
}

.option.selected {
  background: var(--primary-color);
  color: white;
}

.hot-tag {
  margin-left: auto;
  background: #ff6b6b;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8em;
}

/* 图标动态效果 */
.fa-chevron-down {
  transition: transform 0.3s ease;
}

.option i {
  min-width: 20px;
  text-align: center;
}






/* 富文本编辑器style */
#editor u {
  text-decoration: underline !important;
}

/* 优化工具栏按钮状态 */
.editor-btn.active {
  background: #e2e3e5;
  border-color: #d3d4d5;
}

/* 添加CSS样式 */
#editor font[size="1"] {
  font-size: 12px !important;
}

#editor font[size="2"] {
  font-size: 14px !important;
}

#editor font[size="3"] {
  font-size: 16px !important;
}

#editor font[size="4"] {
  font-size: 18px !important;
}

#editor font[size="5"] {
  font-size: 20px !important;
}

#editor font[size="6"] {
  font-size: 24px !important;
}

#editor font[size="7"] {
  font-size: 32px !important;
}

/* 调整下拉菜单样式 */
.font-size-picker {
  height: 30px;
  /* margin: 0 5px; */
  border-radius: 4px;
  padding: 0 5px;
}




/* 内容部分style */ 

/* 标签样式增强 */
.form-label.text-muted {
  font-family: var(--apple-font);
  font-size: 0.95rem;
  color: #1d1d1f;
  opacity: 0.8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  .fa-font {
    font-size: 0.9em;
    transition: color 0.2s ease;
  }
}

/* 编辑器外框 */ 
 


/* 占位符样式 */


/* 动画增强 */ 


/* 原创设置style */

.original-selector {
  --active-color: #007AFF;
  --hover-bg: rgba(0, 122, 255, 0.04);
  --border-color: rgba(0, 0, 0, 0.1);
  --transition-curve: cubic-bezier(0.25, 0.1, 0.25, 1);

  .option-list {
    display: grid;
    gap: 8px;
  }

  .option-item {
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    transition: all 0.25s var(--transition-curve);

    &:hover {
      background: var(--hover-bg);
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    }

    .form-radio:checked+.option-content {
      .outer-circle {
        border-color: var(--active-color);
        background: rgba(0, 122, 255, 0.1);

        .inner-dot {
          transform: scale(1);
          background: var(--active-color);
        }
      }
    }
  }

  .option-content {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
  }



  .label-group {
    display: flex;
    flex-direction: column;
  }

  .primary-label {
    font: 500 16px/-apple-system, BlinkMacSystemFont, sans-serif;
    color: #1D1D1F;
    line-height: 1.25;
  }

  .secondary-label {
    font: 400 13px/-apple-system, BlinkMacSystemFont, sans-serif;
    color: #86868B;
    margin-top: 2px;
  }

  @media (prefers-color-scheme: dark) {
    .option-item {
      background: #1C1C1E;
      border-color: rgba(255, 255, 255, 0.1);

      .primary-label {
        color: #FFFFFF;
      }
    }
  }
}


/* 发布style */
/* =================== 全局设计系统 =================== */


/* =================== 分类选择器 - Apple 风格 =================== */
.category-selector .form-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 13px;
  color: #6d6d72;
  letter-spacing: -0.08px;
  text-transform: uppercase;
}

.category-selector .select-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.category-selector .select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-size: contain;
  pointer-events: none;
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-selector select:focus+.select-wrapper::after {
  transform: translateY(-50%) rotate(180deg);
}

.category-selector select {
  width: 100%;
  padding: 12px 46px 12px 16px;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  appearance: none;
  font-size: 17px;
  font-weight: 400;
  color: #000;
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.category-selector select:focus {
  border-color: #0071e3;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-selector select:hover {
  border-color: #888;
}

/* =================== 权限设置 - Apple 卡片设计 =================== */
.mb-4 .form-label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 13px;
  color: #6d6d72;
  letter-spacing: -0.08px;
  text-transform: uppercase;
}

.mb-4 .border {
  border: 0.5px solid #e0e0e0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.mb-4 .form-check {
  padding: 16px 20px;
  border-bottom: 0.5px solid #ebebf5;
  margin: 0;
  position: relative;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.mb-4 .form-check:last-child {
  border-bottom: none;
}

.mb-4 .form-check:hover {
  background-color: rgba(245, 245, 247, 0.6);
}

.form-check-input {
  width: 18px;
  height: 18px;
  border: 1.5px solid #868686;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  margin: 0;
  margin-right: 14px;
}

.form-check-input:checked {
  border-color: #0071e3;
  background-color: #0071e3;
}

.form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  display: block;
}

.form-check-label {
  font-weight: 400;
  font-size: 17px;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
  flex: 1;
}

#articlePassword {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

#articlePassword:focus {
  border-color: #0071e3;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03),
    0 0 0 3px rgba(0, 113, 227, 0.12);
}

/* =================== 原创选择器 - Apple 列表设计 =================== */
.original-selector {
  position: relative;
  margin-top: 16px;
}

.original-selector::before {
  content: "原创类型";
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #6d6d72;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.08px;
}

.original-selector .option-item {
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.5px 3px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
}

.original-selector .option-item:last-child {
  margin-bottom: 0;
}

.original-selector .option-item:hover {
  box-shadow: 0 0.5px 4px rgba(0, 0, 0, 0.06),
    0 6px 20px rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 255, 0.8);
  transform: translateY(-1px);
}

.original-selector input[type="radio"] {
  display: none;
}

.original-selector input[type="radio"]:checked+.option-content {
  background: rgba(0, 113, 227, 0.04);
  border: 0.5px solid rgba(0, 113, 227, 0.15);
}

.original-selector input[type="radio"]:checked+.option-content .primary-label {
  color: #0071e3;
}

.original-selector input[type="radio"]:checked+.option-content::after {
  content: "✓";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 24px;
  height: 24px;
  background-color: #0071e3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  animation: checkIn 0.45s cubic-bezier(.42, .0, .35, 1.45) forwards;
}

.original-selector .option-content {
  position: relative;
  padding-right: 50px;
}

.primary-label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 17px;
  color: #000;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.primary-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.original-selector .option-item:first-child .primary-label::before {
  background-color: #34c759;
}

.original-selector .option-item:last-child .primary-label::before {
  background-color: #ff9500;
}

.secondary-label {
  font-size: 15px;
  color: #86868b;
  line-height: 1.5;
  padding-left: 18px;
  display: block;
}

/* =================== 动画 =================== */
@keyframes checkIn {
  0% {
    transform: scale(0.3) rotate(15deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.1) rotate(-5deg);
    opacity: 1;
  }

  80% {
    transform: scale(0.95) rotate(2deg);
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* =================== 焦点状态 =================== */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.3);
}

/* =================== 响应式调整 =================== */
@media (max-width: 768px) {

  .category-selector select,
  .mb-4 .form-check,
  .original-selector .option-item {
    padding: 14px 16px;
  }

  .mb-4 .form-check {
    padding: 14px 16px;
  }

  .original-selector .option-item {
    padding: 16px;
  }

  .form-check-input {
    margin-right: 12px;
  }

  .category-selector .select-wrapper::after {
    right: 14px;
  }
}

/* =================== 整体布局调整 =================== */
.mb-4 {
  margin-bottom: 28px;
}

.original-selector {
  margin-top: 24px;
}

.category-selector {
  margin-bottom: 28px;
}










/* 全屏样式 */
.editor-area.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: white;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 20px;
  overflow: auto;
}

/* 全屏模式下的退出按钮 */
.fullscreen-mode {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  display: none;
}

/* 针对编辑区域做全屏处理 */
.editor-area.fullscreen .editor-content {
  height: 100%;
}

.editor-area.fullscreen .editor-toolbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.fullscreen-mode:hover {
  background: rgba(0, 0, 0, 0.9);
}


.editor-content img{
        width: 100%;
}