/* 弹窗容器 */
.modal-notice {
  display: none; /* 默认隐藏 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* 遮罩样式 */
.modal-overlay-notice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  z-index: 1000;
}

/* 弹窗内容样式 */
.modal-content-notice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  padding: 20px;
  z-index: 1001;
  text-align: center;
}

/* 关闭按钮样式 */
.close-button-notice {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close-button-notice:hover {
  color: red;
}

/* 广告图片样式 */
.ad-image-notice {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.ad-image-close-notice {
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.ad-image-notice-pe {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.ad-image-close-notice-pe {
  width: 30px;
  height: 30px;
  cursor: pointer;
}