/* 调整 SweetAlert2 弹窗的基本样式 */
.swal2-popup {
  font-size: 1.6rem !important; /* 统一弹窗内文字大小 */
  background-color: #fff !important; /* 确保背景色不受影响 */
}

/* 增强 SweetAlert2 弹窗标题和内容的可读性 */
.swal2-title {
  font-size: 2rem !important; /* 弹窗标题字体大小 */
}

.swal2-content {
  font-size: 1.6rem !important; /* 弹窗内容字体大小 */
}

/* 调整 SweetAlert2 按钮的大小、边距和字体大小 */
.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
  font-size: 1.8rem !important; /* 按钮字体大小 */
  padding: 10px 20px; /* 按钮内部填充 */
  margin: 0 10px; /* 按钮之间的间距 */
}

/* 调整按钮的高度和宽度以适应较大的文字 */
.swal2-styled {
  height: auto; /* 自动调整高度 */
  width: auto;  /* 自动调整宽度 */
  line-height: 1.5; /* 调整行高以适应较大的文字 */
}