.laisee {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

/* 全屏的弹窗样式 */
.modal {
  display: none;
  /* 初始隐藏 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* 半透明背景 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* 弹窗内容样式 */
.modal-content {
  position: relative;
  /* background-color: #fff; */
  border-radius: 24px;
  padding: 20px;
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* 图片样式 */
.modal-content img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* 关闭按钮样式 */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #999;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 21px;
  cursor: pointer;
  text-align: center;
  line-height: 24px;
  display: none;
}

.close::after {
  content: "x";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close:hover {
  background-color: #d32f2f;
}

.closeBth {
  position: relative;
  /* right: 100px !important; */
  top: 0;
  right: -200px;
}