.popForm{
	/* display: none; */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
}

  /* 遮罩层样式 */
  .overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
  }

   /* 弹出表单样式 */
  .popup-form {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 1001;
  }
  .form-btn{
	   padding: 5px;
	   min-width: 80px;
	   /* background-color: #319400; */
  }
  .form-item{
	 display: flex;flex-direction: row;align-items: center;margin: 10px;
  }
  .form-label{
	  min-width: 100px;
	  padding: 5px;
	  text-align-last: justify;
	  text-align: justify;
	  text-justify: distribute-all-lines;
  }
  .form-text{
	background-color: #fff;
	 padding: 5px;
	
  }

  /* Modal 外部样式 */
  .modal {
	display: none; /* 默认隐藏 */
	position: fixed;
	z-index: 1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.3); /* 半透明背景 */
	animation: slideIn 0.4s; /* 添加动画效果 */
  }

  /* Modal 内容样式 */
  .modal-content {
	background-color: #fff;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 100%;
	max-width: 600px;
	position: absolute;
	bottom: 0; /* 从下部弹出 */
	left: 50%;
	transform: translateX(-50%);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
  }

  /* 进度条样式 */
  .progress-container {
	width: 100%;
	background-color: #f3f3f3;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 15px;
  }

  .progress-bar {
	width: 0;
	height: 30px;
	background-color: #4caf50;
	text-align: center;
	color: white;
	line-height: 30px; /* 垂直居中 */
	border-radius: 5px 0 0 5px;
  }
  /* 动画效果 */
  @keyframes slideIn {
	from { bottom: -100%; }
	to { bottom: 0; }
  }
  
  .modal-tip {
	font-size: 16px
  }