.elementor-7314 .elementor-element.elementor-element-fa27c1a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f5de41a */.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: #444;
  background: #fff;
  box-sizing: border-box;
}

/* 调小第一排主标题文字 */
.article-content h1 {
  font-size: 1.6rem !important;  /* 适度调小标题 */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2em;
  color: #111;
  text-align: left;  /* 如需居中改为 center */
}

/* 段落文字 */
.article-content p {
  font-size: 15px;
  margin-bottom: 1.4em;
  color: #555;
}

/* 图片居中且大小统一 */
.article-content img {
  display: block;
  margin: 2em auto;
  max-width: 100%;
  height: auto;
  width: 100%;         /* 让图片宽度100%适应容器 */
  max-height: 400px;   /* 限制图片最大高度，防止过高 */
  object-fit: contain; /* 保持图片比例，不裁剪 */
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* 链接样式 */
.article-content a {
  color: #0073e6;
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 600px) {
  .article-content {
    padding: 16px 12px;
    font-size: 14px;
  }
  .article-content h1 {
    font-size: 1.4rem !important;
    margin-bottom: 1em;
  }
  .article-content p {
    font-size: 13px;
    margin-bottom: 1.2em;
  }
  .article-content img {
    max-height: 250px;
  }
}/* End custom CSS */