.table-wrap {
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
}

.table {
  border: 1px solid #ddd;
}

.item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f5f5fa;
}

.item-wrap + .item-wrap {
  border-top: 1px solid #ddd;
}

.item-wrap .item-title {
  width: 150px;
  padding: 34px 0;
  text-align: center;
  user-select: none;
}

.item-wrap .item-content {
  flex: 1;
  min-height: 23px;
  padding: 34px 20px;
  background-color: #fff;
  border-left: 1px solid #ddd;
  word-break: break-all;
  text-align: justify;
}

.item-wrap .item-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.item-hight-height .item-content {
  padding-top: 27px;
  line-height: 30px;
}
.item-title-left {
  border-left: 1px solid #ddd;
}

.item-input {
  overflow: hidden;
  width: 784px;
  height: 40px;
  /* border-radius: 5px; */
	border: solid 1px #eaeaea;
}

.item-input input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  border: none;
}

.item-select {
  width: 784px;
  height: 40px;
  border: solid 1px #eaeaea;
  background-color: #fff;
}

.item-textarea {
  width: 784px;
  height: 204px;
}

.item-textarea textarea {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #eaeaea;
  resize: none;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-wrap .submit-btn,
.btn-wrap .return-btn {
  display: block;
  width: 158px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  border: none;
}

.btn-wrap .submit-btn {
  margin-right: 23px;
  color: #fff;
  background-color: #b50005;
}


.btn-wrap .return-btn {
  margin-right: 23px;
  background-color: #f7f7f7;
  border: 1px solid #d7d7d7;
}

.item-content .operate {
  margin-left: 10px;
  user-select: none;
  cursor: pointer;
}

.item-content .operate:hover {
  color: #409EFF;
}