 /* 触发按钮样式 */
 .open-modal-btn {
  padding: 10px 20px;
  margin: 50px;
  background: #409eff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.open-modal-btn:hover {
  background: #66b1ff;
}

/* 遮罩层样式 */
.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明黑色遮罩 */
  display: none; /* 默认隐藏 */
  justify-content: center;
  align-items: center;
  z-index: 999; /* 确保遮罩在最上层 */
}

/* 弹出框容器 */
.modal-container {
  width: 400px; /* 弹出框宽度 */
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 弹出框标题栏 */
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.modal-close {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  color: #999;
}
.modal-close:hover {
  color: #666;
}

/* 弹出框内容区 */
.modal-body {
  padding: 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-align: center;
}

/* 弹出框按钮区 */
.modal-footer {
  padding: 10px 20px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.modal-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid #e5e5e5;
}
.modal-btn-cancel {
  color: #666;
  background: #f5f5f5;
}
.modal-btn-cancel:hover {
  background: #e9e9e9;
}
.modal-btn-confirm {
  color: white;
  background: #409eff;
  border-color: #409eff;
}
.modal-btn-confirm:hover {
  background: #66b1ff;
}

.wx-text {
  margin-left: 20px;
  margin-top: 20px;
  margin-right: 10px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.text-blue {
  color: #409eff;
  font-weight: 500;
  transition: opacity 0.3s ease-in-out;
}