.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;

}