.form-box {
  display: flex;
  flex-wrap: wrap;
}

.form-item,
.form-label,
.form-con {
  display: flex;
  align-items: center;
}

.form-item {
  width: 280px;
  margin: 5px 10px;
}

.form-con {
  flex: 1;
}

/* 表单样式 */
.search-box .card-body {
  padding: 0 24px;
}

.search-form .search-label {
  /* min-width: 80px; */
  text-align: right;
}

.search-form .d-row,
.more-condition {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}

.search-form .d-row>div,
.more-condition>div {
  /* width: calc(25% - 20px); */
  /* min-width: 330px; */
  margin: 0 10px 10px 0;
}

.search-form .form-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 280px;
}

.search-form .form-item.double {
  width: calc(280px * 2 + 20px);
}

.search-form .form-item.three {
  width: calc(280px * 3 + 20px);
}

.form-item .c-datepicker-date-editor {
  width: 100%;
}

#search-form-box {
  transition: height .1s ease-in-out;
  /* overflow: hidden; */
}

#search-form-box.s-df .more-condition {
  /* height: 38px; */
  display: none;
}

#search-form-box.s-unfold .more-condition {
  /* height: 100%; */
  display: flex;
  margin-right: 0;
}

.search-con {
  position: relative;
  width: 15%;
}

.unfold-btn>button .more-icon {
  display: block;
  background-image: url(../images/query/down.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  margin-left: 3px;
}

.unfold-btn>button .more-icon.up {
  background-image: url(../images/query/up.png);
}

/* 提示信息 */
.tip-info {
  width: 14px;
  height: 14px;
  color: rgb(64, 158, 255);
}

.tip-info::before {
  content: "\e7a4";
}

/* end 提示信息 */

/* 日期时间相关 */
.wrap-time {
  line-height: 32px;
  height: 32px;
  border: 1px solid #dcdfe6;
  width: 100%;
  display: flex;
  transition: border-color .2s;
  border-radius: 4px;
}

.wrap-time:hover {
  border-color: #c0c4cc;
}

.wrap-time:active {
  border-color: #66b1ff;
}

.wrap-time.active {
  border-color: #66b1ff;
}

.wrap-time>div {
  flex: 1;
  padding: 0 10px;
  display: flex;
  cursor: pointer;
}

.wrap-time .ali-iconfont {
  display: inline-block;
  width: 20px;
  text-align: center;
  margin-right: 5px;
}

.wrap-l-starTime,
.wrap-l-endTime {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap-time [name="startTime"],
.wrap-time [name="endTime"] {
  flex: 1;
  width: 100%;
  height: 100%;
}

.wrap-time [name="startTime"],
.wrap-time [name="endTime"],
.wrap-time [name="startTime"]:focus,
.wrap-time [name="endTime"]:focus {
  border: none;
  outline: none;
  cursor: pointer;
  border-width: 0;
  padding: 0;
}

/* end 日期时间相关 */


/* 表单布局 */
/* .el-form {

} */

.el-form-item {
  display: flex;
  /* align-items: center; */
  /* margin-bottom: 22px; */
}

.el-form-item__label {
  width: 150px;
  text-align: right;
  line-height: 32px;
}

.el-form-item__content {
  flex: 1;
  position: relative;
  line-height: 32px;
}

/* .el-form-item__content .describe-text {
  position: absolute;
  top: calc(100% - 1rem);
  left: 0;
} */

/* 输入框样式 */
.el-form-item__content input {
  min-height: 32px;
  max-height: 32px;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 4px;
  border-color: #E6E6E6;
}

.el-form-item__content textarea {
  border-radius: 4px;
}

.el-form-item__content input:hover,
.el-form-item__content textarea:hover {
  border-color: #1890ff;
}

.el-form-item__content input:focus,
.el-form-item__content textarea:focus {
  box-shadow: none;
  border-color: #1890ff;
}

.has-error .help-block,
.has-feedback .help-block {
  position: absolute !important;
  bottom: -1rem !important;
  line-height: 1rem;
}

/* 必填项符号 */
.el-form-item.is-required .el-form-item__label::before {
  content: '*';
  color: red;
  margin-right: 2px;
}

/* 错误信息 */
.el-form-item__error {
  color: red;
  font-size: 12px;
  position: absolute;
  top: 100%;
  padding-left: 2px;
}

/* 错误状态 */
.el-form-item.is-error .el-form-item__content input,
.el-form-item.is-error .el-form-item__content xm-select {
  border-color: red;
}

/* end 表单布局 */