.article_content_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  min-height: 800px;
}
.editor_txt {
  color: #222222;
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
  margin-top: 100px;
}
.article_title {
  color: #000000;
}
.article_title {
  font-size: 34px;
  line-height: 1.3;
  margin: 0 0 16px;
  text-align: center;
}
/* 段落与链接样式 */
.article_content_box .editor_txt p {
  font-size: 18px;
  margin: 0 0 14px;
}
/* 插图尺寸与视觉优化 */
.article_content_box .editor_txt img {
  display: block;
  width: 100%;
  max-width: 880px;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1000px) {
  .article_content_box {
    max-width: 100%;
    width: auto;
  }
  .article_title {
    font-size: 26px;
  }
  .editor_txt {
    padding: 0 2px;
    margin-top: 0;
  }
  .article_content_box .editor_txt img {
    max-width: 100%;
    border-radius: 6px;
  }
}
/* ===== 新增：联系我们页面局部样式 ===== */
.contact_block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact_left,
.contact_right {
  flex: 1;
  min-width: 0; /* 防止子元素在 flex 布局下溢出 */
}
.contact_left h2,
.contact_right h2 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #222;
}
.visit_tips {
  color: #666;
  font-size: 14px;
  margin: 8px 0;
}
.map_link {
  color: #007acc;
  text-decoration: underline;
}
.contact_list dt {
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
  color: #333;
}
.contact_list dd {
  font-size: 14px;
  margin: 4px 0 10px 0;
  color: #444;
  word-break: break-word;
}
.contact_hint {
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}
.contact_actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #fff;
}
.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}
.btn_primary {
  background: #007acc;
  color: #fff;
  border-color: #007acc;
}
.socials {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
}
.socials .iconfont {
  margin-right: 10px;
  font-size: 18px;
  color: #444;
  text-decoration: none;
}

/* 响应式：移动端堆叠显示 */
@media (max-width: 760px) {
  .contact_block {
    flex-direction: column;
    gap: 16px;
  }
  .contact_left,
  .contact_right {
    width: 100%;
  }
  .contact_left img {
    max-width: 100%;
    height: auto;
  }
  .contact_actions {
    justify-content: flex-start;
  }
}
/* ===== End 新增样式 ===== */
