.ed-flex-1 {
  flex: 1;
}
.ed-row {
  display: flex;
  justify-content: space-between;
}
.ed-margin-top-20 {
  margin-top: 20px;
}
.ed-text-align-center {
  text-align: center;
}
.ed-item-width-3 {
  width: 29% !important;
}
.ed-width-15-rate {
  width: 15% !important;
}
.ed-width-10-rate {
  width: 10% !important;
}
.ed-width-100-rate {
  width: 100% !important;
}
.ed-green {
  color: #29B862;
}
.ed-green-box {
  background: #29B862;
  color: #fff;
  padding: 5 10px;
  border-radius: 5px;
  flex-shrink: 0;
}
.ed-orange {
  color: #F76A01;
}
.ed-orange-box {
  background: #F76A01;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
}
.ed-red {
  color: #E84142;
}
.ed-red-box {
  background: #E84142;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
}
.ed-del-btn {
  background: #E84142;
  color: #fff;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  cursor: pointer;
}
#ed-laydate-range {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ed-general-btn {
  background: #1ab394;
  color: #fff;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
}
.ed-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e7eaec;
}
.ed-textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #e7eaec;
}
.ed-search-form-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .ed-search-form-box .ed-input {
    width: 100% !important;
  }
  .ed-search-form-box .ed-group-btn-box {
    width: 100% !important;
  }
}
.ed-search-form-box .ed-group-btn-box {
  display: flex;
  align-items: center;
}
.ed-search-form-box .ed-group-btn-box .ed-btn {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.ed-search-form-box .ed-group-btn-box .ed-screen-btn {
  background: #1ab394;
  color: #fff;
}
.ed-search-form-box .ed-group-btn-box .ed-reset-btn {
  background: #fff;
  border: 1px solid #e7eaec;
  margin-left: 10px;
}
.agree-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.file-upload-btn {
  flex: 1;
  padding: 10px;
  border: 1px dashed #D9D9D9;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-upload-btn i {
  font-size: 14px;
}
.ed-form-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .ed-form-content .ed-item {
    width: 100% !important;
  }
}
.ed-form-content .ed-item {
  width: calc(50% - 10px);
}
.ed-form-content .ed-item .ed-title {
  color: #666;
  margin-bottom: 5px;
}
.ed-form-content .ed-item .ed-text {
  color: #000;
  font-size: 14px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.ed-form-content .ed-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #1ab394;
  color: #fff;
  cursor: pointer;
}
.ed-form-content .ed-add-btn i {
  font-size: 14px;
}
.ed-form-content .ed-certs-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #e7eaec;
  border-radius: 5px;
}
.ed-form-content .ed-certs-box .ed-certs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #e7eaec;
}
.ed-form-content .ed-certs-box .ed-certs-item:last-child {
  border-bottom: none;
}
.ed-form-content .ed-process-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.ed-form-content .ed-process-box .ed-process-step {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.ed-form-content .ed-process-box .ed-process-step:first-child {
  margin-top: 0;
}
.ed-form-content .ed-process-box .ed-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -20px;
  width: 2px;
  background-color: #e0e0e0;
  z-index: 0;
}
.ed-form-content .ed-process-box .ed-process-step .ed-process-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  position: relative;
  z-index: 1;
}
.ed-form-content .ed-process-box .ed-process-step.ed-completed .ed-process-icon {
  background-color: #5FB878;
  color: white;
}
.ed-form-content .ed-process-box .ed-process-step.ed-pending .ed-process-icon {
  background-color: #ffffff;
  color: #e0e0e0;
  border: 2px solid #e0e0e0;
}
.ed-form-content .ed-process-box .ed-process-step.ed-completed .ed-process-status {
  padding: 4px 8px;
  background-color: #5FB878;
  color: #fff;
  border-radius: 3px;
}
.ed-form-content .ed-process-box .ed-process-step.ed-pending .ed-process-status {
  padding: 4px 8px;
  background-color: #E84142;
  color: #fff;
  border-radius: 3px;
}
.ed-form-content .ed-process-box .ed-process-step .ed-process-item-box {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.ed-form-content .ed-process-box .ed-process-step .ed-process-item-box .ed-process-content {
  display: flex;
  flex-direction: column;
}
.ed-form-content .ed-process-box .ed-process-step .ed-process-item-box .ed-process-content .ed-process-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
}
.ed-form-content .ed-process-box .ed-process-step .ed-process-item-box .ed-process-content .ed-process-desc {
  font-size: 12px;
  color: #666;
}
