/* 文章内图片放大 */
.info_content_new img {
  border: 1px solid #cccccc33;
  padding: 5px;
  max-width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease-in-out;
}

/* 模态框样式*/
.modal {
  display: none; /* 隐藏模态框 */
  position: fixed; /* 固定在视口 */
  z-index: 1; /* 置于其他内容之上 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
}

.modal:target {
  display: block; /* 当模态框被目标化（即链接到其id）时显示 */
}