

.form-group { margin-bottom: 1em; border: 1px dashed #ccc; padding: 1em; border-radius: 8px; }

.subgroup { margin-top: 0.5em; }

.div-wrapper {
  display: flex;
  align-items: center; /* 垂直居中对齐 */
  gap: 8px;             /* 控件间距 */
  margin-bottom: 4px;
}

.id-container {
  display: flex;
  gap: 12px; /* 子项之间的间距 */
  align-items: center; /* 垂直居中，可选 */
}

.el-text-input {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #aaa;
  border-radius: 4px;
  min-width: 100px;
  margin-right: 6px;
}

.select-input {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #aaa;
  border-radius: 4px;
  min-width: 100px;
  margin-right: 6px;
}

.search-select-input {
  width: 300px;
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: border-color 0.3s ease;
}

.custom-dropdown {
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  z-index: 9999;
  display: none;
}

.custom-option {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.custom-option:hover {
  background-color: #f5f5f5;
}

.custom-option strong {
  display: block;
  font-size: 16px;
}

.custom-option span {
  font-size: 13px;
  color: #666;
  display: block;
}

.dropdown-wrapper {
  position: relative;
  /* width: 100%; */
  max-width: 350px;
}



.add-btn, .remove-btn {
  border: none;          /* 去掉边框 */
  background: transparent; /* 背景透明 */
  font-size: 20px;       /* 设置字体大小 */
  cursor: pointer;      /* 鼠标悬停时为手型 */
  padding: 5px 10px;     /* 设置按钮的内边距 */
  margin: 0;             /* 去掉默认外边距 */
  transition: color 0.3s ease; /* 平滑过渡效果 */
}

.arrow-btn {
  margin-right: 0px;
  margin-top: 0px;
  font-size: 18px;
  cursor: pointer;
}


.person-canvas {
  border: 1px solid #999;
  /* margin-top: 10px; */
  /* width: 50px;
  height: 50px; */
}


.form-label {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #007bff;
  outline: none;
}

.form-button {
  margin-top: 30px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #0056b3;
}