/* 图片容器样式 */
.image-container {
  text-align: center;
}

/* 模态窗口样式 */
.modal {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 置于顶层 */
  left: 0;
  top: 0;
  width: 100%; /* 全宽 */
  height: 100%; /* 全高 */
  overflow: auto; /* 允许滚动 */
  background-color: rgb(0,0,0); /* 背景颜色 */
  background-color: rgba(0,0,0,0.9); /* 黑色背景，透明度 */
}

/* 模态内容样式 */
.modal-content {
  margin: 10% auto; /* 居中显示 */
  display: block; /* 显示图片 */
  width: 100%;
  max-width: 1000px;
}

/* 关闭按钮样式 */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}