@charset "UTF-8";

.zForm_hide {
  display: none !important;
}

.zForm_item {
  position: relative;
  padding: 10px 0 10px 115px;
  margin: 0;
  font-size: 0;
}

.zForm_item.zForm_inChildForm {
  padding-left: 0;
}

.zForm_item[data-behavior="hide"] {
  display: none;
}

.zForm_item::after,
.zForm_item::before {
  display: table;
  content: "";
}

.zForm_item::after {
  clear: both;
}

.zForm_label {
  text-align: right;
  width: 85px;
  font-size: 14px;
  font-weight: normal;
  color: #333;
  box-sizing: border-box;
  position: absolute;
  left: 15px;
  top: 18px;
}

.zForm_label>i{
  margin-left: 4px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  top: 1px;
  color: #999;
}

.zForm_item__tip{
  display: block;
  background: rgba(0, 0, 0, 0.65);
  padding:  8px 12px;
  border-radius: 4px;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  word-wrap: break-word;
  word-break: break-all;
  position: absolute;
  top: 100%;
  width: 200px;
  z-index: 100;
  text-align: left;
  display: none;
}

.zForm_label_more {
  top: 9px;
}

.zForm_item.zForm_inChildForm .zForm_label {
  display: none;
}

.zForm_item[data-required="1"]>.zForm_label:before {
  content: "*";
  color: #ff0000;
  position: absolute;
  margin-left: -8px;
}

.zForm_content {
  line-height: 36px;
  position: relative;
  font-size: 14px;
}

.zForm_errorMsg {
  color: #e34d59;
  line-height: 20px;
  font-size: 12px;
  /* display: none; */
  opacity: 0;
  transform: scaleY(0);
}

.zForm_error .zForm_errorMsg {
  /* display: block; */
  opacity: 1;
  transform: scaleY(1);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center top;
}

/* text 单行文本  */

.zForm_input {
  position: relative;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}

.zForm_input input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  height: 36px;
  line-height: 34px;
  outline: none;
  padding: 0 35px 0 10px;
  margin: 0;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}

.zForm_input input:read-only {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
  padding: 0 10px !important;
}

.zForm_input input:not(:read-only):hover {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_input input:not(:read-only):focus {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_input input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_input .clearBtn {
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
}

.zForm_input .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input>input {
  border-color: #e34d59;
}

.zForm_input_associate>p {
  display: none !important;
}

.zFormInputAssociateList {
  position: fixed;
  z-index: 1070;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 6px 0;
  max-height: 130px;
  overflow: auto;
}

.zFormInputAssociateList li {
  padding: 8px 10px;
  cursor: pointer;
}

.zFormInputAssociateList li:hover {
  background: #f5f5f5;
}

.zFormInputAssociateList font {
  color: var(--color-theme);
}

/* textarea 多行文本  */

.zForm_textarea {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  font-size: 14px;
}

.zForm_textarea textarea {
  display: block;
  resize: vertical;
  padding: 8px 10px;
  line-height: 1.5;
  box-sizing: border-box;
  width: 100%;
  min-height: 80px;
  font-size: inherit;
  color: #333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  resize: none;
}

.zForm_textarea textarea:read-only {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_textarea textarea:not(:read-only):hover {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_textarea textarea:not(:read-only):focus {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_textarea textarea::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_item.zForm_error .zForm_textarea>textarea {
  border-color: #e34d59;
}

/* number 数字  */

.zForm_input_number {
  position: relative;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}

.zForm_input_number input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  height: 36px;
  line-height: 34px;
  outline: none;
  padding: 0 10px;
  margin: 0;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}

.zForm_input_number input:read-only {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_input_number input:not(:read-only):hover {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_input_number input:not(:read-only):focus {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_input_number input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

/* 谷歌 */
.zForm_input_number input::-webkit-outer-spin-button,
.zForm_input_number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* 火狐 */
.zForm_input_number input {
  -moz-appearance: textfield;
}

.zForm_input_number .clearBtn {
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
}

.zForm_input_number .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input_number>input {
  border-color: #e34d59;
}

.zForm_input_number .zForm__suffix {
  display: inline-block;
  position: absolute;
  right: 0;
  padding: 0 12px;
  text-align: right;
  max-width: 86px;
}

/* money 金额  */

.zForm_money {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fff;
  line-height: 34px;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_money {
  cursor: no-drop;
  border-color: #dcdcdc;
  background-color: #eee;
}

.zForm_money.focus {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_money input {
  -webkit-appearance: none;
  background-color: inherit;
  background-image: none;
  border-radius: 4px;
  border: 0px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  height: 34px;
  line-height: 34px;
  outline: none;
  padding: 0 10px;
  margin: 0;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  font-size: 14px;
}

.zForm_money input::-webkit-outer-spin-button,
.zForm_money input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* 火狐 */
.zForm_money input {
  -moz-appearance: textfield;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_money>input {
  cursor: no-drop;
  background-color: #eee;
}

.zForm_money>span {
  display: block;
  padding: 0 10px;
  font-size: 12px;
  color: #999;
  line-height: 20px;
}

.zForm_money>p {
  display: block;
  padding: 0 10px;
  font-size: 12px;
  color: #999999;
  line-height: 20px;
  /* margin-top: 8px; */
  margin-bottom: 8px;
}

.zForm_money input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_item[data-behavior="edit"].zForm_error .zForm_money {
  border-color: #e34d59;
}

/* month 日期 */

.zForm_input_month {
  position: relative;
}

.zForm_input_month>input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 35px 0 10px;
  font-size: 14px;
  display: inline-block;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_input_month>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
  padding: 0 10px !important;
}

.zForm_input_month>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_input_month>i {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.zForm_input_month>i.clearBtn {
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_input_month .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input_month>input {
  border-color: #e34d59;
}

/* year 日期 */

.zForm_input_year {
  position: relative;
}

.zForm_input_year>input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 35px 0 10px;
  font-size: 14px;
  display: inline-block;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_input_year>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
  padding: 0 10px !important;
}

.zForm_input_year>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_input_year>i {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.zForm_input_year>i.clearBtn {
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_input_year .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input_year>input {
  border-color: #e34d59;
}

/* date 日期 */

.zForm_input_date {
  position: relative;
}

.zForm_input_date>input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 35px 0 10px;
  font-size: 14px;
  display: inline-block;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_input_date>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
  padding: 0 10px !important;
}

.zForm_input_date>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_input_date>i {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.zForm_input_date>i.clearBtn {
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_input_date .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input_date>input {
  border-color: #e34d59;
}

/* date_time 日期时间 */

.zForm_input_dateTime {
  position: relative;
}

.zForm_input_dateTime>input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 32px 0 10px;
  font-size: 14px;
  display: inline-block;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_input_dateTime>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_input_dateTime>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_input_dateTime>i {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.zForm_input_dateTime>i.clearBtn {
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_input_dateTime .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input_dateTime>input {
  border-color: #e34d59;
}

/* time 时间 */

.zForm_input_time {
  position: relative;
}

.zForm_input_time>input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  display: inline-block;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_input_time>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_input_time>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_input_time>i {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.zForm_input_time>i.clearBtn {
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_input_time .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_input_time>input {
  border-color: #e34d59;
}

/* data_interval 日期区间 */

.zForm_date_interval {
  position: relative;
}

.zForm_date_interval>input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  display: inline-block;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_date_interval>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_date_interval>i {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.zForm_date_interval>i.clearBtn {
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_date_interval .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_date_interval>input {
  border-color: #e34d59;
}

.set-hover-color{
  background-color: #ddf1f9;
}

/* radio 单选 */

.zForm_radiogroup {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  font-size: 0;
}

.zForm_radiogroup .zForm_radio_item {
  color: #333;
  font-weight: 500;
  line-height: 1;
  position: relative;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  outline: none;
  font-size: 14px;
  margin-top: 9px;
  margin-right: 20px;
  margin-bottom: 9px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.zForm_radiogroup .zForm_radio__input {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
}

.zForm_radiogroup .zForm_radio__label {
  font-size: 14px;
  padding-left: 8px;
  color: #191919;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_radiogroup .zForm_radio__label {
  color: #dcdcdc;
  cursor: no-drop;
}

.zForm_radiogroup .zForm_radio__input_inner {
  border: 1px solid #dcdfe6;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_radiogroup .zForm_radio__input_inner {
  border-color: #dcdcdc;
  background-color: #eeeeee;
  cursor: no-drop;
}

.zForm_radiogroup .zForm_radio__input input {
  opacity: 0;
  outline: none;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.zForm_radiogroup .zForm_radio_item .zForm_radio__input_inner>i {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--color-theme);
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.1s ease-in;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_radiogroup .zForm_radio_item .zForm_radio__input_inner>i {
  background-color: #bdbdbd;
  cursor: no-drop;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_radiogroup .zForm_radio_item:hover .zForm_radio__input_inner {
  border-color: var(--color-theme);
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_radiogroup .zForm_radio_item.active .zForm_radio__input_inner {
  border-color: var(--color-theme);
}

.zForm_radiogroup .zForm_radio_item.active .zForm_radio__input_inner>i {
  transform: translate(-50%, -50%) scale(2);
}

.zForm_radio_desc {
  font-size: 12px;
  color: #999;
  display: inline-block;
  position: relative;
  line-height: 22px;
  word-break: break-all;
}

/* checkbox 多选 */

.zForm_checkboxgroup {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  font-size: 0;
  width: 100%;
}

.zForm_checkboxgroup .zForm_checkbox_child {
  color: #333;
  font-weight: 500;
  line-height: 1;
  position: relative;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  outline: none;
  font-size: 14px;
  margin-top: 9px;
  margin-right: 20px;
  margin-bottom: 9px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_checkboxgroup .zForm_checkbox__input {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  margin-left: 1px;
}

.zForm_checkboxgroup .zForm_checkbox__label {
  font-size: 14px;
  padding-left: 8px;
}

.zForm_checkbox__input_inner {
  display: inline-block;
  position: relative;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background-color: #fff;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
}

.zForm_checkboxgroup .zForm_checkbox__input input {
  opacity: 0;
  outline: none;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.zForm_checkboxgroup .zForm_checkbox_child .zForm_checkbox__input_inner>i {
  box-sizing: content-box;
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform 0.15s ease-in 0.05s;
  transform-origin: center;
}

.zForm_checkboxgroup .zForm_checkbox_child.active .zForm_checkbox__input_inner {
  border-color: var(--color-theme);
  background-color: var(--color-theme);
}

.zForm_checkboxgroup .zForm_checkbox_child.active .zForm_checkbox__input_inner>i {
  transform: rotate(45deg) scaleY(1);
}

/* select 单选下拉 */

.zForm_select {
  position: relative;
}

.zForm_select>input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  height: 36px;
  line-height: 34px;
  outline: none;
  padding: 0 32px 0 10px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_select>input {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_select>input:hover {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_select.focus>input {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_select>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_select.focus>input {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_select .zForm_select_suffix {
  position: absolute;
  height: 100%;
  right: 10px;
  top: 0;
  text-align: center;
  transition: all 0.3s;
  pointer-events: none;
  color: #a3a3a3;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_select.focus .zForm_select_suffix {
  transform: rotate(180deg);
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_select.focus .zForm_select_suffix {
  color: var(--color-theme);
}

.zForm_select .zForm_select_dropdown {
  display: none;
  /* position: absolute; */
  position: fixed;
  z-index: 1055;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 5px 0;
  width: 100%;
  max-height: 256px;
  overflow-x: hidden;
  overflow-y: auto;
}

.zForm_select .zForm_select_dropdown>ul {
  list-style: none;
  padding: 8px;
  margin: 0;
  box-sizing: border-box;
}

.zForm_select .zForm_select_dropdown>ul>li {
  font-size: 14px;
  padding: 0px 8px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 3px;
}

.zForm_select .zForm_select_dropdown>ul>li.zForm_select_dropdown__item-none {
  text-align: center;
  color: #999;
  cursor: text;
}

.zForm_select .zForm_select_dropdown>ul>li:not(.zForm_select_dropdown__item-none):hover {
  background-color: var(--color-secondary);
}

.zForm_select .zForm_select_dropdown>ul>li:not(.zForm_select_dropdown__item-none).selected {
  color: var(--color-theme);
  background: var(--color-secondary);
}

.zForm_select>i.clearBtn {
  position: absolute;
  right: 32px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
  top: 0;
}

.zForm_select .clearBtn.active {
  display: block;
}

.zForm_item.zForm_error .zForm_select>input {
  border-color: #e34d59 !important;
}

/* select_checkbox 下拉多选 */

.zForm_multiple_select {
  position: relative;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_multiple_select {
  cursor: no-drop;
}

.zForm_multiple_select .zForm_multiple_select_inner {
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  color: #333;
  display: block;
  font-size: inherit;
  line-height: 34px;
  min-height: 36px;
  outline: none;
  margin: 0;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}

.zForm_item.zForm_error>.zForm_content>.zForm_multiple_select>.zForm_multiple_select_inner {
  border-color: #e34d59;
}

.zForm_item[data-behavior="read_only"]>.zForm_multiple_select_inner {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_multiple_select .zForm_multiple_select_inner:hover {
  border-color: #c0c4cc;
  /* transition: 0.3s; */
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_multiple_select.focus .zForm_multiple_select_inner {
  border-color: var(--color-theme);
}

.zForm_multiple_select .zForm_multiple_select_tags {
  z-index: 1;
  width: calc(100% - 36px);
  top: 50%;
  padding-bottom: 4px;
}

.zForm_multiple_select .zForm_multiple_select_tags>span {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.zForm_multiple_select .zForm_multiple_select_tags>span .zForm_selectcheckbox__search_input {
  height: 26px;
  line-height: 26px;
  min-width: 60px;
  margin: 4px 0 0 10px;
  padding: 0;
  color: #606266;
  outline: none;
  box-sizing: border-box;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  flex-grow: 1;
}

.zForm_multiple_select .zForm_multiple_select_tags>span .zForm_selectcheckbox__search_input::placeholder {
  color: #999;
}

.zForm_multiple_select .zForm_multiple_select_tags>span .select_tag__item {
  background-color: #e5e5e5;
  display: flex;
  height: 26px;
  padding: 0 8px;
  margin: 4px 0 0px 6px;
  line-height: 26px;
  font-size: 12px;
  color: #333;
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_multiple_select .zForm_multiple_select_tags>span .select_tag__item {
  color: #999;
  background-color: #d9d9d9;
}

.zForm_multiple_select .zForm_multiple_select_tags>span .select_tag__item>span {
  display: block;
  font-size: inherit;
  color: inherit;
  vertical-align: top;
  line-height: 26px;
}

.zForm_multiple_select .zForm_multiple_select_tags>span .select_tag__item>i {
  color: #999;
  margin-left: 8px;
  vertical-align: middle;
  cursor: pointer;
}

.zForm_multiple_select .zForm_multiple_select_placeholder {
  color: #8c8c8c;
  font-size: 13px;
  padding: 0 10px;
  margin-top: -4px;
}

.zForm_multiple_select .zForm_multiple_select_placeholder.hide {
  display: none;
}

.zForm_multiple_select .zForm_multiple_select_suffix {
  position: absolute;
  height: 100%;
  right: 10px;
  top: 0;
  text-align: center;
  transition: all 0.3s;
  pointer-events: none;
  color: #a3a3a3;
  line-height: 38px;
}

.zForm_multiple_select .zForm_multiple_select_suffix.rotate {
  transform: rotate(180deg);
}

.zForm_multiple_select .zForm_multiple_select_suffix>i {
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  height: 100%;
  text-align: center;
}

.zForm_multiple_select .zForm_multiple_select_suffix>i:after {
  content: "";
  height: 100%;
  width: 0;
  display: inline-block;
  vertical-align: middle;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_multiple_select.focus .zForm_multiple_select_suffix {
  transform: rotate(180deg);
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_multiple_select.focus .zForm_multiple_select_suffix {
  color: var(--color-theme);
}

.zForm_multiple_select .zForm_multiple_select_dropdown {
  display: none;
  /* position: absolute; */
  position: fixed;
  z-index: 1055;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 5px 0;
  width: 100%;
  max-height: 256px;
  overflow-x: hidden;
  overflow-y: auto;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul {
  list-style: none;
  padding: 8px;
  margin: 0;
  box-sizing: border-box;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li {
  font-size: 14px;
  padding: 0 8px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 3px;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li:hover {
  background-color: #f5f7fa;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li.active {
  color: var(--color-theme);
  background: var(--color-secondary);
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li>label {
  color: #606266;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  user-select: none;
  margin-right: 0;
  margin-bottom: 0;
  float: left;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li>span {
  display: inline-block;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li .multiple_select_input {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li .multiple_select_input_inner {
  display: inline-block;
  position: relative;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background-color: #fff;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li .multiple_select_input_inner::after {
  content: "";
  box-sizing: content-box;
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform 0.15s ease-in 0.05s;
  transform-origin: center;
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li.active .multiple_select_input_inner {
  border-color: var(--color-theme);
  background-color: var(--color-theme);
}

.zForm_multiple_select .zForm_multiple_select_dropdown>ul>li.active .multiple_select_input_inner::after {
  transform: rotate(45deg) scaleY(1);
}

.zForm_item[data-behavior="edit"].zForm_error .zForm_multiple_select .zForm_multiple_select_input>input {
  border-color: #e34d59;
}

.zForm_item[data-behavior="edit"].zForm_error .zForm_multiple_select .zForm_multiple_select_suffix {
  color: #e34d59;
}

/* select_group 下拉多选 分组 */

.zForm_multiple_select_dropdown_group {
  display: none;
  position: fixed;
  z-index: 1055;
  box-sizing: border-box;
  margin: 5px 0;
  width: auto;
  max-width: 100%;
  max-height: 256px;
  overflow-x: hidden;
  overflow-y: auto;
}

.zForm_multiple_select_dropdown_group>div {
  display: flex;
  max-width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.zForm_multiSelect_category {
  width: 160px;
  padding: 8px;
}

.zForm_multiSelect_datalist {
  display: none;
  width: auto;
  max-width: calc(100% - 160px);
  border-left: 1px solid #eee;
  padding: 8px;
}

.zForm_multiSelect_category_item,
.zForm_multiSelect_datalist_item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 22px 0 12px;
  height: 34px;
  line-height: 34px;
  outline: none;
  min-width: 144px;
  cursor: pointer;
}

.zForm_multiSelect_category_item.in_active_path {
  color: var(--color-theme);
}

.zForm_multiSelect_category_item.active {
  background: var(--color-secondary);
}

.zForm_multiSelect_category_item>span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_multiSelect_category_item>i {
  position: absolute;
  right: 10px;
}

.zForm_multiSelect_datalist_item .zForm_multiSelect_datalist_checkbox__input {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  margin-left: 1px;
}

.zForm_multiSelect_datalist_item .zForm_multiSelect_datalist_checkbox__input .zForm_multiSelect_datalist_checkbox__input_inner {
  display: inline-block;
  position: relative;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background-color: #fff;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
}

.zForm_multiSelect_datalist_item .zForm_multiSelect_datalist_checkbox__input .zForm_multiSelect_datalist_checkbox__input_inner>i {
  box-sizing: content-box;
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  /* transition: transform 0.15s ease-in 0.05s; */
  transform-origin: center;
}

.zForm_multiSelect_datalist_item.active .zForm_multiSelect_datalist_checkbox__input_inner {
  border-color: var(--color-theme);
  background-color: var(--color-theme);
}

.zForm_multiSelect_datalist_item.active .zForm_multiSelect_datalist_checkbox__input_inner>i {
  transform: rotate(45deg) scaleY(1);
}

.zForm_multiSelect_datalist_item .zForm_multiSelect_datalist_label {
  flex: 1;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_multiSelect_datalist_item.active .zForm_multiSelect_datalist_label {
  color: var(--color-theme);
}

/* img&file 图片、附件 */

.zForm_upload_img .zForm_upload-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zForm_upload_img .zForm_upload-list--picture-card {
  margin: 0;
  display: inline;
  vertical-align: top;
}

.zForm_upload_img .zForm_upload {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.zForm_upload_img .zForm_upload--picture-card {
  border-radius: 3px;
  box-sizing: border-box;
  width: 112px;
  height: 112px;
  background: #eee;
  border: 1px dashed #dcdcdc;
  cursor: pointer;
  line-height: 110px;
  vertical-align: top;
  position: relative;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_upload_file>div>.zForm_upload--picture-card {
  /* background: #EEE; */
  cursor: no-drop;
}

.zForm_upload_img .zForm_upload--picture-card i {
  position: absolute;
  font-size: 18px;
  color: #333;
  top: 40px;
  left: 50%;
  line-height: 1;
  transform: translateX(-50%);
}

.zForm_upload_img .zForm_upload--picture-card p {
  font-size: 12px;
  color: #999;
  padding-top: 62px;
  line-height: 20px;
  display: -webkit-box;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.zForm_upload_img .zForm_upload__input {
  display: none;
}

.zForm_upload_file .zForm_upload--button-box {
  display: block;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.zForm_upload_file .zForm_upload--button-box>div:first-child {
  margin-right: 10px;
}

.zForm_upload_file .zForm_upload--file-card,
.zForm_upload_file .zForm_upload--file-uploaded {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
  -webkit-appearance: none;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  transition: 0.1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 10px 13px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 3px;
}

.zForm_inChildForm .zForm_upload_file .zForm_upload--file-card {
  margin-bottom: 0px;
}

.zForm_inChildForm .zForm_upload_file .zForm_upload--file-uploaded {
  margin-bottom: 0px;
  margin-top: 3px;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_upload_file>div>.zForm_upload--button-box>.zForm_upload--file-card,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_upload_file>div>.zForm_upload--button-box>.zForm_upload--file-uploaded {
  background: #eee;
  cursor: no-drop;
}

.zForm_upload_file .zForm_upload--file-card i,
.zForm_upload_file .zForm_upload--file-uploaded i {
  font-size: 14px;
  color: #666;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}

.zForm_upload_file .zForm_upload--file-card span,
.zForm_upload_file .zForm_upload--file-uploaded span {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}

.zForm_upload_file .zForm_upload--file-uploaded>span>em {
  color: #999;
  margin-left: 8px;
}

/* .zForm_upload_file .zForm_upload--file-uploaded {
    width: 134px;
  } */

.zForm_upload_file>div>p {
  font-size: 12px;
  color: #999999;
  line-height: 28px;
  padding-top: 12px;
}

.zForm_upload_file .zForm_upload__input {
  display: none;
}

.zForm_upload-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zForm_upload-list__item {
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-size: 14px;
  color: #606266;
  line-height: 1.8;
  margin-top: 5px;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
}

.zForm_upload-list__item:first-child {
  margin-top: 10px;
}

.zForm_upload-list__item-img .zForm_upload_img_error_icon{
  color: #e34d59;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 110px;
}

.zForm_upload-list .zForm_upload-list__item-img.is-exception .zForm_upload-list__item-actions:hover {
  opacity: 1;
}

.zForm_upload-list .zForm_upload-list__item-img.is-exception .zForm_upload-list__item-actions:hover span.zForm_upload-list__item-delete {
  display: inline-block;
  margin-left: 0;
}

.zForm_upload-list__item-img .zForm_upload_img_error_icon i{
  font-size: 24px;
}

.zForm_upload-list__item-img>div{
  width: 100%;
  height: 100%;
}

.zForm_upload-list__item-img>div img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zForm_upload-list--picture-card .zForm_upload-list__item {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  box-sizing: border-box;
  width: 112px;
  height: 112px;
  margin: 0 8px 8px 0;
  display: inline-block;
}

.zForm_upload-list--picture-card .zForm_upload-list__item-thumbnail {
  width: 100%;
  height: 100%;
}

.zForm_upload-list--picture-card .zForm_upload-list__item-actions {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: default;
  text-align: center;
  color: #fff;
  opacity: 0;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}

.zForm_upload-list .zForm_upload-list__item.is-finish .zForm_upload-list__item-actions:hover {
  opacity: 1;
}

.zForm_upload-list .zForm_upload-list__item-actions span {
  display: none;
  cursor: pointer;
}

.zForm_upload-list .zForm_upload-list__item-actions span+span {
  margin-left: 25px;
}

.zForm_upload-list .zForm_upload-list__item-actions .zForm_upload-list__item-delete {
  position: static;
  font-size: inherit;
  color: inherit;
}

.zForm_upload-list .zForm_upload-list__item.is-finish .zForm_upload-list__item-actions:hover span {
  display: inline-block;
}

.zForm_upload-list .zForm_upload-list__item-actions:after {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}

.zForm_upload-list .zForm_upload-list__item-file {
  width: 100%;
  /* height: 44px; */
  /* line-height: 44px; */
  border: 0;
  padding: 0 15px;
  margin: 8px 0 0;
  background: #fafafa;
  overflow: hidden;
}

.zForm_upload-list .zForm_upload-list__item-file:first-child {
  margin-top: 10px;
}

.zForm_upload-list .zForm_upload-list__item-file>div {
  float: left;
  width: 100%;
  padding: 10px 34px 10px 0;
  transition: 0.1s;
}

.zForm_upload-list .zForm_upload-list__item-file.is-process>div {
  padding-right: 0;
}

.zForm_upload-list .zForm_upload-list__item-file.is-process .zForm_upload-list__item-delete {
  display: none;
}

.zForm_upload-list .zForm_upload-list__item-file .zForm_upload-list__item-file-name {
  float: left;
  width: calc(100% - 30px);
  /* width: 100%; */
  line-height: 24px;
  color: #222;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zForm_upload-list .zForm_upload-list__item-file.is-exception .zForm_upload-list__item-file-name {
  width: calc(100% - 80px);
}

.zForm_upload-list .zForm_upload-list__item-file .zForm_upload-list__item-delete {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.zForm_upload-list .zForm_upload-list__item-file.is-process .zForm_upload-list__item-delete {
  display: none;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_upload_file>div>.zForm_upload-list .zForm_upload-list__item-file .zForm_upload-list__item-delete {
  float: right;
  cursor: pointer;
  display: none;
}

.zForm_upload-list.undelete .zForm_upload-list__item-file.is-finish .zForm_upload-list__item-delete {
  display: none;
}

.zForm_upload-list .zForm_upload-list__item-file .zForm_upload-list__item-file_preview {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.zForm_upload-list .zForm_upload-list__item-file.is-process .zForm_upload-list__item-file_preview {
  display: none;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_upload_file>div>.zForm_upload-list .zForm_upload-list__item-file .zForm_upload-list__item-file_preview {
  float: right;
  cursor: pointer;
  display: none;
}


.zForm_item[data-behavior="read_only"][data-type="file"]>.zForm_content>.zForm_upload_file>div>.zForm_upload-list .zForm_upload-list__item-file .zForm_upload-list__item-file_preview {
  display: block;
}

.zForm_upload-list.undelete .zForm_upload-list__item-file.is-finish .zForm_upload-list__item-file_preview {
  display: block;
  right: 15px;
}

.zForm_upload-list.undelete .zForm_upload-list__item-file>div{
  padding-right: 30px;
}

.zForm_upload-loading-spinner {
  top: 0;
  padding-top: 24px;
  width: 100%;
  text-align: center;
  position: absolute;
}

.zForm_upload-loading-spinner .circular {
  height: 26px;
  width: 26px;
  animation: loading-rotate 2s linear infinite;
}

.zForm_upload-loading-spinner .path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 89, 150;
  stroke-dashoffset: 0;
  stroke-width: 3px;
  stroke: #307af3;
  stroke-linecap: round;
}

.zForm_upload-progress__text {
  font-size: 13px;
  color: #999;
}

.zForm_item[data-behavior="read_only"][data-type="file"].hide_btn .zForm_upload_file .zForm_upload--button-box{
  display: none;
}

.zForm_item[data-behavior="read_only"][data-type="file"].hide_btn .zForm_upload-list .zForm_upload-list__item-file:first-child{
  margin-top: 0;
}

/* image preview */

.zForm_image-viewer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1056;
}

.zForm_image-viewer__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: #000;
}

.zForm_image-viewer__btn {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
  box-sizing: border-box;
  user-select: none;
}

.zForm_image-viewer__actions {
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 92px;
  height: 44px;
  padding: 0 23px;
  background-color: #606266;
  border-color: #fff;
  border-radius: 22px;
}

.zForm_image-viewer__actions__inner {
  width: 100%;
  height: 100%;
  text-align: justify;
  cursor: default;
  font-size: 23px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.zForm_image-viewer__actions i {
  cursor: pointer;
}

.zForm_image-viewer__actions i.zForm_icon-refresh-left {
  transform: scaleX(-1);
}

.zForm_image-viewer__close {
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  background-color: #606266;
}

.zForm_image-viewer__canvas {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zForm_image-viewer__canvas img.transition {
  transition: 0.3s;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}

/* file progress */

.zForm_progress {
  position: relative;
  line-height: 1;
}

.zForm_progress.zForm_progress--line {
  width: 100%;
}

.zForm_progress-bar {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  box-sizing: border-box;
}

.zForm_progress-bar__outer {
  height: 4px;
  border-radius: 100px;
  background-color: #ebeef5;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

.zForm_progress-bar__inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--color-theme);
  text-align: right;
  border-radius: 100px;
  line-height: 1;
  white-space: nowrap;
  transition: width 0.6s ease;
}

.zForm_progress__text {
  font-size: 14px;
  color: #606266;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 24px;
  position: absolute;
  top: 0px;
  right: 0;
}

.zForm_progress__text>p,
.zForm_progress__text>p>span {
  color: inherit;
  display: inline-block;
}

.zForm_progress__text>p>span {
  padding-right: 5px;
  vertical-align: middle;
  line-height: 20px;
}

.zForm_progress__text .zForm_upload-list__item_re {
  border: 0px;
  background: transparent;
  vertical-align: middle;
}

.zForm_upload-list__item.is-exception .zForm_progress-bar__outer,
.zForm_upload-list__item.is-exception .zForm_progress-bar__inner {
  background-color: #ff5562;
}

.zForm_upload-list__item.is-exception .zForm_progress__text {
  color: #ff5562;
}

/* uploaded select popover */

.zForm_upload--file-popover {
  display: none;
  position: fixed;
  background: #fff;
  min-width: 150px;
  border-radius: 4px;
  margin: 5px 0;
  border: 1px solid #ebeef5;
  padding: 12px;
  z-index: 2000;
  color: #606266;
  line-height: 1.4;
  text-align: justify;
  font-size: 14px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  word-break: break-all;
}

.zForm_upload--file-popover>div {
  width: 520px;
}

.zForm_upload--file-popover_top {
  width: auto;
  display: flex;
  padding-bottom: 12px;
}

.zForm_upload--file-popover_top>span {
  flex: 3;
  display: block;
  max-width: calc(100% - 60px);
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_upload--file-popover_btns {
  flex: 1;
  text-align: right;
}

.zForm_upload--file-popover_btns button {
  width: 51px;
  height: 27px;
  color: #fff;
  border: 1px solid var(--color-theme);
  background: var(--color-theme);
  border-radius: 3px 3px 3px 3px;
  opacity: 1;
  margin-left: 12px;
}

.zForm_upload--file-popover_btns button:first-child {
  margin-left: 0;
}

.zForm_upload--file-popover_btns .zForm_upload--file-popover_cancel {
  color: rgba(0, 0, 0, 0.9);
  border: 1px solid #dcdcdc;
  background: #fff;
}

.zForm_upload--file-popover_btns .zForm_upload--file-popover_cancel:hover {
  color: var(--color-theme);
  border-color: var(--color-theme);
}

/* uploaded select table */

.zForm_filetable {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  font-size: 14px;
  color: #606266;
}

.zForm_filetable table {
  width: 100%;
}

.zForm_filetable thead {
  color: #909399;
  font-weight: 400;
}

.zForm_filetable th.zForm_filetable__cell {
  overflow: hidden;
  user-select: none;
  color: #333;
  background-color: #f9f9f9;
}

.zForm_filetable tr {
  display: flex;
}

.zForm_filetable th:first-child,
.zForm_filetable td:first-child {
  /* width: 72px; */
  flex: 1;
}

.zForm_filetable th:nth-child(2),
.zForm_filetable td:nth-child(2) {
  /* width: 340px; */
  flex: 4;
}

.zForm_filetable th:last-child,
.zForm_filetable td:last-child {
  /* width: 118px; */
  flex: 1.5;
}

.zForm_filetable thead th,
.zForm_filetable tbody td {
  padding: 10px 0;
  min-width: 0;
  box-sizing: border-box;
  text-overflow: ellipsis;
  vertical-align: middle;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #ebeef5;
}

.zForm_filetable thead th>span,
.zForm_filetable tbody td>span {
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  line-height: 22px;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  max-width: 300px;
}

.zForm_filetable__body-wrapper {
  max-height: 200px;
  overflow: auto;
}

.zForm_filetable .zForm_filetable_check {
  display: inline-block;
  position: relative;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background-color: #fff;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  cursor: pointer;
  vertical-align: middle;
}

.zForm_filetable .zForm_filetable_check::after {
  content: "";
  box-sizing: content-box;
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform 0.15s ease-in 0.05s;
  transform-origin: center;
}

.zForm_filetable tr.checked .zForm_filetable_check {
  border-color: var(--color-theme);
  background-color: var(--color-theme);
}

.zForm_filetable tr.checked .zForm_filetable_check::after {
  transform: rotate(45deg) scaleY(1);
}

/* check_confirm 勾选确认 */

.zForm_item[data-type="check_confirm"]>.zForm_label:before {
  content: "" !important;
}

.zForm_confirm {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  font-size: 0;
}

.zForm_confirm .zForm_confirm_item {
  color: #333;
  font-weight: 500;
  line-height: 1;
  position: relative;
  cursor: pointer;
  display: inline-block;
  /* white-space: nowrap; */
  outline: none;
  font-size: 14px;
  margin-top: 9px;
  margin-right: 20px;
  margin-bottom: 9px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  width: 100%;
}

.zForm_confirm .zForm_confirm__input {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: top;
  margin-top: 4px;
}

.zForm_confirm .zForm_confirm__label {
  display: inline-block;
  font-size: 14px;
  padding-left: 8px;
  color: #191919;
  word-break: break-word;
  width: calc(100% - 20px);
  line-height: 24px;
}

.zForm_confirm .zForm_confirm__label span {
  color: var(--color-theme);
  margin: 0 2px;
  text-decoration: none;
  cursor: pointer;
}

.zForm_confirm .zForm_confirm__label a {
  color: var(--color-theme);
  margin: 0 2px;
  text-decoration: none;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_confirm .zForm_confirm__label {
  color: #dcdcdc;
  cursor: no-drop;
}

.zForm_confirm .zForm_confirm__input_inner {
  border: 1px solid #dcdfe6;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_confirm .zForm_confirm__input_inner {
  border-color: #dcdcdc;
  background-color: #eeeeee;
  cursor: no-drop;
}

.zForm_confirm .zForm_confirm__input input {
  opacity: 0;
  outline: none;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.zForm_confirm .zForm_confirm_item .zForm_confirm__input_inner>i {
  box-sizing: content-box;
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform 0.15s ease-in 0.05s;
  transform-origin: center;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_confirm .zForm_confirm_item .zForm_confirm__input_inner>i {
  background-color: #bdbdbd;
  cursor: no-drop;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_confirm .zForm_confirm_item:hover .zForm_confirm__input_inner {
  border-color: var(--color-theme);
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_confirm .zForm_confirm_item.active .zForm_confirm__input_inner {
  border-color: var(--color-theme);
  background: var(--color-theme);
}

.zForm_confirm .zForm_confirm_item.active .zForm_confirm__input_inner>i {
  transform: rotate(45deg) scaleY(1);
}

/* relation_form 关联表单 */
/* 
  .zForm_relateForm {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    padding: 0 8px;
    min-width: 108px;
    user-select: none;
  }
  
  .zForm_error .zForm_relateForm {
    border-color: #e34d59;
  }
  
  .zForm_item[data-behavior="read_only"] .zForm_relateForm {
    background: #eee;
    cursor: not-allowed;
  }
  
  .zForm_item[data-behavior="edit"] .zForm_relateForm:hover {
    border-color: #c0c4cc;
  }
  
  .zForm_relateForm a {
    display: inline-block;
    line-height: 26px;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    padding: 0 6px;
    margin-right: 8px;
    cursor: pointer;
  }
  
  .zForm_item[data-behavior="read_only"] .zForm_relateForm a {
    color: #999;
    cursor: not-allowed;
  }
  
  .zForm_item[data-behavior="edit"] .zForm_relateForm a:hover {
    border-color: #c0c4cc;
  }
  
  .zForm_relateForm i {
    font-size: 13px;
    margin-right: 6px;
  }
  
  .zForm_relateForm p {
    display: inline-block;
    color: #999;
  }
  
  .zForm_relateForm span {
    background: #e6e6e6;
    display: inline-block;
    padding: 0 8px;
    margin-right: 8px;
    line-height: 28px;
    border-radius: 4px;
    white-space: nowrap;
  }
  
  .zForm_relateForm b {
    font-size: 16px;
    font-weight: normal;
    margin: 0 -4px 0 3px;
    vertical-align: middle;
    cursor: pointer;
  }
  
  .zForm_item[data-behavior="read_only"] .zForm_relateForm b {
    display: none;
  }
  
  .zFormRelateFormModal .modal-dialog {
    width: 1102px;
    user-select: none;
  }
  
  .zFormRelateFormModal .modal-header {
    padding: 16px 24px 0;
    border: 0;
    color: #333;
    font-weight: normal;
    font-size: 16px;
  }
  
  .zFormRelateFormModal_handle {
    text-align: right;
    margin-top: 10px;
    padding: 0 24px;
  }
  
  .zFormRelateFormModal_handle button {
    display: inline-block;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-theme);
    color: var(--color-theme);
    padding: 0 16px;
    border-radius: 4px;
    line-height: 30px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
  }
  
  .zFormRelateFormModal_handle button:first-child {
    background: var(--color-theme);
    color: #fff;
  }
  
  .zFormRelateFormModal_component {
    width: 33.3333%
  }
  
  .zFormRelateFormModal_component .zForm_item {
    padding: 10px 10px 10px 0;
  }
  
  .zFormRelateFormModal_component .zForm_item label {
    position: relative;
    display: block;
    width: 100%;
    top: auto;
    text-align: left;
  }
  
  .zFormRelateFormModal_component .zForm_item label::before {
    display: none;
  } */

/* fields_group 表单组 */

.zForm_fieldsGroup {
  opacity: 1;
}

.zForm_fieldsGroup_data {
  display: none;
}

.zForm_fieldsGroup_title {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_fieldsGroup .zForm_fieldsGroup_title {
  display: none;
}

.zForm_fieldsGroup_title p {
  height: 36px;
  color: #999;
  line-height: 20px;
  padding: 8px 15px 8px 0;
  flex-grow: 1;
  /* 填充剩余空间 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zForm_fieldsGroup_title>div {
  white-space: nowrap;
  font-size: 0;
}

.zForm_fieldsGroup .zForm_fieldsGroup_addbtn,
.zForm_fieldsGroup_export,
.zForm_fieldsGroup_download {
  /* position: absolute; */
  top: 2px;
  right: 0;
  display: inline-block;
  text-align: center;
  background: var(--color-theme);
  border: 1px solid var(--color-theme);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  padding: 0 10px;
  vertical-align: middle;
  line-height: 30px;
  max-width: 162px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 8px;
}

.zForm_fieldsGroup_export.plain,
.zForm_fieldsGroup_download.plain {
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #333;
  transition: 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.zForm_fieldsGroup_export.plain:hover,
.zForm_fieldsGroup_download.plain:hover {
  border: 1px solid var(--color-theme);
  background: #fff;
  color: var(--color-theme)
}

.zForm_fieldsGroup_content {
  margin-left: -100px;
}

.zForm_fieldsGroup_content label {
  line-height: 19px;
}

.zForm_fieldsGroup_content .zForm_template li {
  background: #fff;
}



.zForm_fieldsGroup_item {
  background: #fafafa;
  padding: 12px;
  /* display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
    align-items: flex-start; */
}

.zForm_fieldsGroup_item:not(:last-child) {
  margin-bottom: 12px;
}

.zForm_fieldsGroup_item-title {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

.zForm_fieldsGroup_item-title .zForm_fieldsGroup_delbtn {
  font-weight: 400;
}

.zForm_fieldsGroup_item-title i {
  font-size: 14px;
  font-weight: 400;
  padding: 0 5px;
  cursor: pointer;
}

.zForm_fieldsGroup_item-title .zForm_fieldsGroup_delbtn:hover {
  color: var(--color-theme);
}

.zForm_fieldsGroup_hide_param{
  display: none;
}

/* fields_pop 组件弹窗 */

.zForm_item[data-type="fields_pop"]>.zForm_label {
  display: none;
}

.zForm_item[data-type="fields_pop"] {
  padding-left: 0;
}

.zForm_item[data-type="fields_pop"] .zForm_label {
  line-height: 18px;
}

.zForm_fieldsPop {
  opacity: 1;
}

.zForm_fieldsPop_json {
  display: none;
}

.zForm_fieldsPop_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgb(0, 0, 0, 0.43);
}

.zForm_fieldsPop_modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(0, 0, 0, 0.48);
  outline: 0;
  background: #ffffff;
  box-shadow: 0px 12px 42px 0px rgba(38, 38, 38, 0.24);
  border-radius: 4px;
  z-index: 1;
  animation-name: fieldsPopModal;
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

@keyframes fieldsPopModal {
  from {
    transform: translate3d(-50%, calc(-50% - 40px), 0);
    opacity: 0.3;
  }

  to {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
}

.zForm_fieldsPop_modal-head {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  padding: 5px 12px;
  border-bottom: 1px solid #eee;
}

.zForm_fieldsPop_modal-close {
  position: absolute;
  top: 5px;
  right: 20px;
  text-shadow: none;
  font-weight: 100;
  opacity: 1;
  color: #666;
  font-size: 21px;
  cursor: pointer;
}

.zForm_fieldsPop_modal-body {
  padding: 16px 50px;
  max-height: 80vh;
  overflow-x: hidden;
}

.zForm_fieldsPop_modal-foot {
  border-top: 1px solid #f0f0f0;
  padding: 10px 20px;
  margin: 0;
  text-align: right;
}

.zForm_fieldsPop_modal-foot button {
  display: inline-block;
  text-align: center;
  background: var(--color-theme);
  border: 1px solid var(--color-theme);
  color: #fff;
  border-radius: 4px;
  line-height: 32px;
  font-size: 14px;
  cursor: pointer;
  padding: 1px 20px;
  margin-left: 8px;
}

.zForm_fieldsPop_modal-foot button.zForm_fieldsPop_modal-cancel {
  background: transparent;
  color: #333;
  border-color: #ddd;
}

.zForm_fieldsPop_table {
  display: none;
  overflow-x: auto;
  margin-left: 100px;
  padding-bottom: 5px;
}

.zForm_fieldsPop_tr {
  display: flex;
  align-items: center;
  position: relative;
  width: max-content;
  min-width: 100%;
  padding-right: 80px;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
}

.zForm_fieldsPop_tr:first-child {
  line-height: 44px;
  background: #ebebeb;
  border: 0;
}

.zForm_fieldsPop_td {
  width: 160px;
  padding: 0 10px;
  word-break: break-word;
}

.tr_head .zForm_fieldsPop_td {
  color: #222222;
}

.zForm_fieldsPop_td_handle {
  display: flex;
  align-items: center;
  width: 80px;
  position: absolute;
  z-index: 1;
  height: 100%;
  background: #fff;
}

.zForm_fieldsPop_tr:first-child .zForm_fieldsPop_td_handle {
  background: #ebebeb;
}

.zForm_fieldsPop_edit {
  color: var(--color-theme);
}

.zForm_item[data-behavior="read_only"] .zForm_fieldsPop_edit {
  color: #999;
  cursor: not-allowed;
}

.zForm_fieldsPop_edit_data {
  display: none !important;
}

/* customer 客户 */

.zForm_customer {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  /* padding: 0 6px; */
  padding-bottom: 4px;
  min-width: 108px;
  user-select: none;
  min-height: 36px;
  display: flex;
  flex-wrap: wrap;
}

.zForm_error .zForm_customer,
.zForm_error .zForm_customer:hover {
  border-color: #e34d59;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_customer {
  background: #eee;
  cursor: not-allowed;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_customer:hover {
  border-color: #c0c4cc;
}

.zForm_customer .add_customer {
  display: inline-block;
  line-height: 24px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0px 6px 0 22px;
  margin-left: 6px;
  margin-top: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  height: 26px;
  font-size: 12px;
}

.zForm_customer .add_customer::before {
  position: absolute;
  left: 5px;
  font-family: iconfont;
  content: "\e683";
  font-size: 13px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_customer>.add_customer {
  display: none;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_customer a {
  color: #999;
  cursor: not-allowed;
}

.zForm_item[data-behavior="edit"]>.zForm_content>.zForm_customer a:hover {
  border-color: #c0c4cc;
}

/* .zForm_customer i {
    font-size: 13px;
    margin-right: 6px;
  } */

.zForm_customer p {
  color: #999;
  line-height: 26px;
  margin-top: 4px;
  padding-left: 8px;
}

.zForm_customer span {
  background: #E5E5E5;
  display: inline-block;
  padding: 0 8px;
  margin-left: 6px;
  margin-top: 4px;
  line-height: 26px;
  border-radius: 4px;
  max-width: calc(100% - 12px);
  vertical-align: top;
  /* float: left; */
  height: 26px;
  font-size: 12px;
  display: flex;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_customer>span {
  padding: 0 8px;
}

/* .zForm_customer>span:last-child {
  margin-bottom: 3px;
} */

.zForm_customer>span>em {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_customer>span>em {
  width: 100%;
}

.zForm_customer b {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #999;
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_customer b {
  display: none;
}

.zFormCascadarInterest_tips,
.zFormCustomerInterest_tips {
  display: none;
  font-size: 14px;
  line-height: 24px;
  padding: 8px 0;
  color: #e54141;
}
.zFormCascadarInterest_tips i,
.zFormCustomerInterest_tips i {
  vertical-align: bottom;
  margin-right: 5px;
}

.zFormCustomerInterest_tips a {
  color: inherit;
}

.zFormCascadarInterest_tips a{
  cursor: pointer;
  color: #e54141;
}

.zFormCustomer_relatedParties {
  position: relative;
  color: #999;
  display: none;
}

.zFormCustomer_relatedParties .label {
  display: inline-block;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 0;
  width: 86px;
  line-height: 24px;
  vertical-align: top;
}

.zFormCustomer_relatedParties .relateDatas {
  display: none !important;
}

.zFormCustomer_relatedParties .modal_form_linkTips {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  padding: 8px 0;
  max-width: calc(100% - 95px);
}

.zForm_customerModal {
  display: none;
  position: fixed;
  width: auto;
  margin: 5px 0;
  background: #ffffff;
  box-shadow: 0px 3px 14px 6px rgba(0, 0, 0, 0.05), 0px 8px 10px 1px rgba(0, 0, 0, 0.06),
    0px 5px 5px -3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  z-index: 1055;
}

.zFormAddCustomerModal {
  position: fixed;
  z-index: 1056;
  display: none;
  width: auto;
  margin: 5px 0;
  background: #ffffff;
  box-shadow: 0px 3px 14px 6px rgba(0, 0, 0, 0.05), 0px 8px 10px 1px rgba(0, 0, 0, 0.06), 0px 5px 5px -3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  z-index: 1055;
  animation-name: upbit;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.zForm_customerModal .modal_dialog {
  padding: 0 12px;
  font-size: 14px;
  margin: 0;
  width: 100%;
}

.zForm_customerModal .modal_header {
  padding: 12px 0;
}

.zForm_customerModal .modal_header>span {
  position: absolute;
  top: 0px;
  right: 5px;
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #999;
}

.zForm_customerModal .modal_header>span:hover {
  color: #333;
}

.zForm_customerModal .modal_header .search_inner {
  height: 32px;
  line-height: 32px;
  position: relative;
}

.zForm_customerModal .modal_header .search_inner input {
  width: 320px;
  height: 32px;
  padding: 0 5px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  vertical-align: top;
  z-index: 2010;
}

.zForm_customerModal .modal_header .search_inner input:hover {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_customerModal .modal_header .search_inner input:focus {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_customerModal .modal_header .search_inner input::placeholder {
  color: #999999;
}

.zForm_customerModal .modal_header .search_inner i {
  position: absolute;
  left: 295px;
  top: 50%;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  transform: translate(0, -50%);
  display: none;
}

.zForm_customerModal .modal_header .search_inner .clearBtn.active {
  display: block;
}

.zForm_customerModal .modal_header .search_inner .search {
  width: 56px;
  height: 32px;
  line-height: 30px;
  color: #ffffff;
  background: var(--color-theme);
  border-radius: 3px;
  border: 1px solid;
  vertical-align: top;
}

.zForm_customerModal .modal_header .function_inner {
  padding: 4px 0 12px;
  margin: 12px 0 0;
  line-height: 20px;
  color: #666666;
}

.zForm_customerModal .modal_header .function_inner i {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  color: var(--color-theme);
}

.zForm_customerModal .modal_header .function_inner span {
  display: inline-block;
  padding-left: 5px;
  vertical-align: middle;
}

.zForm_customerModal .modal_header .function_inner .zForm_customerModal_add {
  display: inline-block;
  color: var(--color-theme);
  border: 0;
  background: transparent;
  vertical-align: middle;
}

.zForm_customerModal .modal_header .list_inner {
  height: 175px;
}

.zForm_customerModal .modal_header .list_inner ul {
  height: 175px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.zForm_customerModal .modal_header .list_inner ul li {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  padding: 12px 5px;
  border-top: 1px solid #e8e8e8;
  cursor: pointer;
}

.zForm_customerModal .modal_header .list_inner ul li.li_nodata {
  text-align: center;
  line-height: 120px;
  color: #999999;
  border-top: 0;
}

.zForm_customerModal .modal_header .list_inner ul li:hover {
  background: #f3f8ff;
}

.zForm_customerModal .modal_header .list_inner ul li.li_nodata:hover {
  background: transparent;
}

.zForm_customerModal .modal_header .list_inner ul li.li_loading:hover {
  background: transparent;
}

.zForm_customerModal .modal_header .list_inner ul li.li_loading {
  padding: 80px calc(50% - 10px);
}

.zForm_customerModal .list_inner .loading_1 {
  position: absolute;
  left: calc(50% - 10px);
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: var(--color-theme);
  animation: back-and-forth 1s ease-in-out infinite alternate;
}

.zForm_customerModal .list_inner .loading_2 {
  position: absolute;
  left: calc(50% + 10px);
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #eee;
  animation: forth-and-back 1s ease-in-out infinite alternate;
}

@keyframes back-and-forth {
  0% {
    left: calc(50% - 10px);
  }

  100% {
    left: calc(50% + 10px);
  }
}

@keyframes forth-and-back {
  0% {
    left: calc(50% + 10px);
  }

  100% {
    left: calc(50% - 10px);
  }
}

.zFormAddCustomerModal .modal_dialog {
  padding: 0;
}

.zFormAddCustomerModal .modal_content {}

.zFormAddCustomerModal .modal_header {
  padding: 10px 24px 0;
  border: 0;
  color: #333;
  font-weight: normal;
  font-size: 16px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.zFormAddCustomerModal .modal_header>span {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.zFormAddCustomerModal .modal_header .tab_inner {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  line-height: 20px;
  width: calc(100% - 50px);
  float: left;
  text-align: left;
}

.zFormAddCustomerModal .modal_header .tab_inner .tab_item {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  padding: 0 8px 10px;
  cursor: pointer;
  text-align: left;
}

.zFormAddCustomerModal .modal_header .tab_inner .tab_item:first-child {
  margin-left: 0;
}

.zFormAddCustomerModal .modal_header .tab_inner .tab_item:hover {
  background: transparent;
}

.zFormAddCustomerModal .modal_header .tab_inner .tab_item.active {
  font-weight: 600;
  color: var(--color-theme);
  line-height: 20px;
  border-bottom: 2px solid var(--color-theme);
}

.zFormAddCustomerModal .modal_body {
  padding-top: 12px;
}

.zFormAddCustomerModal .modal_form_input .clearBtn {
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  z-index: 1;
  transform: translate(0, -50%);
  display: none;
}

.zFormAddCustomerModal .modal_form_input .clearBtn.active {
  display: block;
}

.zForm_customer_formitem {
  position: relative;
  padding: 8px 0px 8px 95px;
  margin: 0px;
  width: 100%;
}

.zForm_customer_formitem.hide_formitem {
  display: none;
}

.zForm_customer_formitem.half_item_l {
  display: inline-block;
  width: 46%;
  margin-right: 8%;
  vertical-align: top;
}

.zForm_customer_formitem.half_item_r {
  display: inline-block;
  width: 46%;
  vertical-align: top;
}

.zForm_customer_formitem .label {
  font-weight: normal;
  display: block;
  width: 76px;
  text-align: right;
  position: absolute;
  top: 19px;
  left: 5px;
  z-index: 1;
  float: left;
  color: #333;
  font-size: 14px;
  padding: 0px;
  line-height: 18px;
  user-select: none;
}

.zForm_customer_formitem[data-req="true"]>.label::before {
  content: "*";
  color: #ff0000;
  position: absolute;
  margin-left: -8px;
}

.zForm_customer_formitem .label.twoLine {
  top: 10px;
}

.zForm_customer_formitem .modal_form_input input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 28px 0 10px;
  font-size: 14px;
  vertical-align: middle;
}

.zForm_customer_formitem .modal_form_input input:hover {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_customer_formitem .modal_form_input input:focus {
  border-color: var(--color-theme);
  transition: 0.3s;
}

.zForm_customer_formitem .modal_form_input input[readonly]:focus {
  border-color: #c0c4cc;
  transition: 0.3s;
}

.zForm_customer_formitem .modal_form_input input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_customer_formitem .placeholder_right input::placeholder {
  text-align: right;
}

.zForm_customer_formitem .modal_form_input {
  /* position: relative; */
}

.zForm_customer_formitem .customerModalForm_select {
  position: relative;
}

.zForm_customer_formitem .customerModalForm_select input {
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 40px 0 10px;
  font-size: 14px;
  background: url(/static/Public/images/lawFirm/projectList_03.svg) no-repeat #fff;
  background-size: 14px 14px;
  background-position: right 10px center;
  cursor: pointer;
}

.zForm_customer_formitem .customerModalForm_select input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_customer_formitem .customerModalForm_select_dropdown {
  position: fixed;
  width: 100%;
  max-height: 216px;
  display: none;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 5px 0;
  transform-origin: center top;
  z-index: 2010;
}

.zForm_customer_formitem .customerModalForm_select_dropdown ul {
  list-style: none;
  padding: 6px 0;
  margin: 0;
  box-sizing: border-box;
  max-height: 216px;
  overflow: auto;
}

.zForm_customer_formitem .customerModalForm_select_dropdown ul>li {
  font-size: 13px;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  cursor: pointer;
  list-style: none;
}

.zForm_customer_formitem .customerModalForm_select_dropdown ul>li:hover {
  background-color: #f5f7fa;
}

.zForm_customer_formitem .customerModalForm_select_dropdown ul>li.selected {
  color: var(--color-theme);
  font-weight: 700;
  background-color: #fff;
}

.zForm_customer_formitem .customerModalForm_select_dropdown ul>li>textarea {
  display: none;
}

.zFormAddCustomerModal .modal_inner_wrap {
  padding: 0 20px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 280px;
}

.zFormAddCustomerModal .zFormCustomerModal_handle {
  padding: 12px 20px;
  text-align: right;
  border-top: 1px solid #eee;
}

.zFormCustomerModal_handle button {
  display: inline-block;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 0 16px;
  border-radius: 4px;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

.zFormCustomerModal_handle button:first-child {
  background: var(--color-theme);
  color: #fff;
}

.zFormAddCustomerModal_close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  float: right;
  font-size: 21px;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  text-shadow: none;
  font-weight: 100;
  opacity: 1;
  color: #666;
}

/* sex_select */

.zForm_customer_formitem .sex_select {
  position: relative;
}

.zForm_customer_formitem .sex_select>ul {
  position: fixed;
  width: 100%;
  top: auto;
  font-size: 14px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 5px 0;
  padding: 5px 0;
  transform-origin: center top;
  z-index: 2010;
  animation-name: upbit;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.zForm_customer_formitem .sex_select>ul>li {
  font-size: 13px;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  cursor: pointer;
  list-style: none;
}

.zForm_customer_formitem .sex_select>ul>li:hover {
  background-color: #f5f7fa;
}

.zForm_customer_formitem .sex_select>ul>li.selected {
  color: var(--color-theme);
  font-weight: 700;
  background-color: #fff;
}

/* 工商信息联想 */

.business_info_dropdown {
  display: none;
  position: absolute;
  z-index: 2010;
  max-height: 250px;
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(0, 0, 0, 0.05), 0px 16px 24px 2px rgba(0, 0, 0, 0.04),
    0px 8px 10px -5px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  animation-name: upbit;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.dropdown_inner_wrap {
  padding: 10px 0;
}

.dropdown_list_inner>ul {
  max-height: 190px;
  padding: 0 12px;
  overflow-x: hidden;
  overflow-y: auto;
}

.dropdown_list_inner>ul>li {
  line-height: 22px;
  padding: 9px 8px;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
}

.dropdown_list_inner>ul>li .hit_word {
  color: var(--color-theme);
}

.form_div_input,
.form_input_add_btn,
.customerModalForm_select input,
.date_input input {
  cursor: pointer;
}

.zFormRelateParties_modal .modal-dialog {
  margin: 60px auto;
}

.zFormRelateParties_modal .modal-header {
  padding: 15px 15px 5px;
}

.zFormRelateParties_modal .relate_parties_list_wrap {
  padding: 20px;
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.zFormRelateParties_modal .relate_parties_list_wrap table {
  width: 100%;
}

.zFormRelateParties_modal th {
  background: #f9f9f9;
  color: #666;
  white-space: nowrap;
  line-height: 44px;
  text-align: left;
  width: 90px;
}

.zFormRelateParties_modal th:first-child {
  width: 120px;
}

.zFormRelateParties_modal th:first-child,
.zFormRelateParties_modal td:first-child {
  text-align: left;
  padding-left: 20px;
}

.zFormRelateParties_modal td {
  text-align: left;
  border-bottom: 1px solid #f6f6f6;
  padding: 12px 0;
}

@media (max-height: 768px) {

  .zForm_customerModal {
    font-size: 13px;
  }

  .zForm_customerModal .modal_header .function_inner {
    padding: 2px 0 8px;
    margin: 8px 0 0;
    font-size: 13px;
  }

  .zForm_customerModal .modal_header .list_inner {
    height: 125px
  }

  .zForm_customerModal .modal_header .list_inner ul {
    height: 125px;
  }

  .zForm_customerModal .modal_header .list_inner ul li {
    font-size: 13px;
    padding: 8px 3px;
  }

  /* 客户组件新增弹窗 */
  .zFormAddCustomerModal .modal_inner_wrap {
    padding: 0 16px;
    height: 170px;
    overflow-x: hidden;
  }

  .zFormAddCustomerModal .modal_header {
    padding: 8px 18px 0;
    font-size: 15px;
  }

  .zFormAddCustomerModal .modal_body {
    padding-top: 8px
  }

  .zFormAddCustomerModal .zFormCustomerModal_handle {
    padding: 8px 16px;
  }

  .dropdown_list_inner>ul {
    max-height: 120px;
  }

  .zForm_customer_formitem .customerModalForm_select_dropdown {
    max-height: 115px;
  }

  .zForm_customer_formitem .customerModalForm_select_dropdown ul {
    max-height: 115px;
  }
}


/* customer 客户组件 新利冲 */

.zFormCustomer_interest_detail {
  width: calc(100% + 100px);
  margin-top: 12px;
  margin-left: -100px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 12px 16px;
}

.zFormCustomer_interest_detail_collapse {
  font-size: 14px;
  width: fit-content;
  line-height: 24px;
  cursor: pointer;
  /* margin-bottom: 14px; */
}

.zFormCustomer_interest_detail_collapse:hover {
  color: var(--color-theme);
  transition: 0.1s;
}

.zFormCustomer_interest_detail_collapse>i {
  font-size: 14px;
  transform: rotate(90deg);
  position: absolute;
}

.zFormCustomer_interest_detail_collapse>span {
  padding-left: 20px;
}

.zFormCustomer_interest_detail_tips {
  color: #e54141
}

.zFormCustomer_interest_data {
  margin-top: 14px;
}

.zFormCustomer_interest_type_item {
  display: block;
  position: relative;
}

.zFormCustomer_interest_type_btn {
  font-size: 14px;
  line-height: 32px;
}

.zFormCustomer_interest_type_btn>span {
  font-size: inherit;
  margin-right: 32px;
  color: #9e9e9e;
  cursor: pointer;
}

.zFormCustomer_interest_type_btn>span:last-child {
  margin-right: 0;
}

.zFormCustomer_interest_type_btn>span.active {
  color: #333;
}

.zFormCustomer_interest_table {
  width: 100%;
  overflow-x: auto;
}

.zFormCustomer_interest_table.more {
  margin-bottom: 40px;
}

.zFormCustomer_interest_datatable {
  border: 1px solid #ededed;
  margin: 8px 0 4px;
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
}

.zFormCustomer_interest_datatable thead>tr {
  border-bottom: 1px solid #ededed;
  color: var(--color-theme);
  background: #fef8f1;
}

.zFormCustomer_interest_datatable thead>tr>th {
  text-align: center;
  line-height: 48px;
  font-weight: 400;
  padding: 0 10px;
  border: 1px solid #ededed;
}

.zFormCustomer_interest_datatable tbody>tr {
  border-bottom: 1px solid #ededed;
  color: #333;
  background: transparent;
}

.zFormCustomer_interest_datatable tbody>tr>td {
  text-align: left;
  line-height: 2.769230769230769;
  border: 1px solid #ededed;
  padding: 8px 20px;
  color: var(--c-theme-default-text-color);
}

.zFormCustomer_interest_datatable tbody>tr>td.customer_we,
.zFormCustomer_interest_datatable tbody>tr>td.customer_other {
  padding: 0;
  height: 1px;
}

.zFormCustomer_interest_datatable tbody>tr>td.customer_we>div.flex,
.zFormCustomer_interest_datatable tbody>tr>td.customer_other>div.flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%
}

.zFormCustomer_interest_datatable tbody>tr>td.customer_we>div>div,
.zFormCustomer_interest_datatable tbody>tr>td.customer_other>div>div {
  border-top: 1px solid #ededed;
  padding: 8px 20px;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.zFormCustomer_interest_datatable tbody>tr>td.customer_we>div>div:first-child,
.zFormCustomer_interest_datatable tbody>tr>td.customer_other>div>div:first-child {
  border-top: 0
}

.zFormCustomer_interest_datatable tbody>tr>td.customer_other>div.conflict_negative_customer.danger {
  color: #FF0000;
}

.zFormCustomer_interest_datatable tbody>tr>td.align_center {
  text-align: center;
}

.zFormCustomer_interest_datatable tbody>tr>td.pro_name {
  text-align: left;
}

.zFormCustomer_interest_datatable tbody>tr>td>p {
  line-height: 24px;
  margin-bottom: 8px;
}

.zFormCustomer_interest_datatable tbody>tr>td>p:last-child {
  margin-bottom: 0;
}

.zFormCustomer_interest_datatable tbody>tr>td.pro_name .pro_name_status {
  background: #edfeef;
  color: #038a24;
  padding: 2.5px 8px;
  border-radius: 2px;
  font-size: 12px;
}

.zFormCustomer_interest_datatable tbody>tr>td.pro_name .interest_pro_name {
  color: var(--color-theme);
  cursor: pointer;
}

.zFormCustomer_interest_datatable tbody>tr>td.pro_name .interest_pro_name:hover {
  filter: contrast(1.3);
}

.zFormCustomer_interest_datatable tbody>tr>td.interest_type i {
  color: #999;
  font-size: 14px;
  margin-left: 5px;
  cursor: pointer;
}

.zFormCustomer_interest_datatable tbody>tr>td.interest_type i:hover {
  opacity: 0.8;
}

.zFormCustomer_interest_datatable tr.interest_tr_hide {
  display: none !important;
}

.zFormCustomer_interest_datatable .copy_text {
  position: relative;
  cursor: pointer;
}

.zFormCustomer_interest_datatable p.copy_text {
  line-height: 24px;
  margin: 4px 0;
  width: 100%;
}

.zFormCustomer_interest_datatable .copy_text::after {
  color: var(--color-theme);
  content: "\e6bc";
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  /* position: relative; */
  opacity: 0;
  position: absolute;
}

.zFormCustomer_interest_datatable .copy_text:hover::after {
  transition: 0.2s;
  opacity: 1;
  background: linear-gradient(to right, transparent 5%, #ffffff 50%);
  padding-left: 5px;
}

.zFormCustomer_interest_datatable_collapse {
  position: absolute;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: 8px;
}

.zFormCustomer_interest_datatable_collapse:hover,
.zFormCustomer_interest_datatable_collapse:active {
  color: var(--color-theme);
}

.zFormCustomer_interest_datatable_collapse>span {
  position: relative;
  padding-right: 15px;
}

.zFormCustomer_interest_datatable_collapse>span::after {
  position: absolute;
  right: 0px;
  font-family: iconfont;
  content: "\e60d";
  font-size: 13px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.zFormCustomer_interest_datatable_collapse.active>span::after {
  transform: rotate(180deg)
}

.zFormCustomer_interest_datatable .interest_search_user_duty {
  font-size: 12px;
  color: #737A99;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #737A99;
}

.zFormCustomer_interest_datatable .interest_search_user_percent {
  font-size: 12px;
  color: #E34D59;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #E34D59;
}

.zFormCustomer_interest_datatable .conflict_customer.danger,
.zFormCustomer_interest_datatable .conflict_negative_customer.danger {
  color: #E34D59
}

/* customer 新利冲详情 tooltip */

.zForm_tooltip_popper {
  position: absolute;
  border-radius: 4px;
  padding: 10px;
  z-index: 2000;
  font-size: 12px;
  line-height: 1.2;
  min-width: 10px;
  word-wrap: break-word;
}

.zForm_tooltip_popper.is-dark {
  background: #303133;
  color: #fff;
}

.zForm_tooltip_popper .popper__arrow,
.zForm_tooltip_popper .popper__arrow:after {
  position: absolute;
  display: block;
  left: 50%;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  transform: translateX(-50%);
}

.zForm_tooltip_popper .popper__arrow {
  border-width: 6px;
}

.zForm_tooltip_popper {
  margin-top: 6px;
}

.zForm_tooltip_popper .popper__arrow {
  top: -5px;
  border-top-width: 0;
  border-bottom-color: #303133;
}

.zForm_tooltip_popper .popper__arrow:after {
  top: 1px;
  margin-left: -5px;
  border-top-width: 0;
  border-bottom-color: #303133;
}

/* cascader 级联选择器 */

.zForm_cascader {
  position: relative;
}

.zForm_cascader .zForm_cascader_input>input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  height: 36px;
  line-height: 34px;
  outline: none;
  padding: 0 10px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  vertical-align: top;
}

.zForm_cascader.focus .zForm_cascader_input>input {
  border-color: var(--color-theme);
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_cascader .zForm_cascader_input>input:read-only {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_cascader .zForm_cascader__suffix {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  transition: all 0.3s;
  /* pointer-events: none; */
  color: #a3a3a3;
  z-index: 1;
}

.zForm_cascader.focus .zForm_cascader__suffix {
  color: var(--color-theme);
  transform: translateY(-50%) rotate(180deg);
}

.zForm_cascader_tags {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  min-height: 36px;
  line-height: 34px;
  outline: none;
  padding: 0 30px 4px 0;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  vertical-align: top;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.zForm_cascader__search_input {
  flex: 1;
  height: 26px;
  line-height: 26px;
  min-width: 60px;
  margin: 4px 0 0 10px;
  padding: 0;
  color: #606266;
  border: none;
  outline: none;
  box-sizing: border-box;
  vertical-align: middle;
}

.zForm_cascader_tags input {
  border: 0;
  width: 100%;
}

.zForm_cascader_dropdown {
  display: none;
  position: fixed;
  margin: 5px 0;
  font-size: 14px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 1055;
}

.zForm_cascader__panel {
  display: none;
}

.zForm_cascader__panel--suggestion {
  display: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.zForm_cascader__suggestion_wrap {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}

.zForm_cascader__suggestion_list {
  max-height: 204px;
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  color: #606266;
  text-align: center;
}

.zForm_cascader__suggestion_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
  padding: 0 15px;
  text-align: left;
  outline: none;
  cursor: pointer;
}

.zForm_cascader__suggestion_item:focus,
.zForm_cascader__suggestion_item:hover {
  background: #f5f7fa;
}

.zForm_cascader__suggestion_item.is_checked {
  color: var(--color-theme);
  font-weight: 400;
  transition: 0.1s;
}

.zForm_cascader__suggestion_item>span {
  margin-right: 10px;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_cascader__empty_text {
  margin: 10px 0;
  color: #c0c4cc;
}

.zForm_cascader_tags .select_tag__item {
  background-color: #E5E5E5;
  display: inline-block;
  height: 26px;
  padding: 0 8px;
  margin: 4px 0 0px 6px;
  line-height: 26px;
  font-size: 12px;
  color: #333333;
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
  width: fit-content;
  max-width: 90%;
  overflow: hidden;
  display: flex;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_cascader_tags>input:read-only {
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_cascader_tags .select_tag__item {
  color: #999;
  background-color: #d9d9d9;
}

.zForm_cascader_tags .select_tag__item>span {
  display: block;
  font-size: inherit;
  color: inherit;
  vertical-align: middle;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.zForm_cascader_tags .select_tag__item>i {
  color: #999;
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
  /* float: right; */
}

.zForm_cascader_radio__input {
  border: 1px solid #dcdfe6;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
}

.zForm_cascader_radio__input.active {
  border: 5px solid var(--color-theme);
}

.zForm_cascader_checkbox__input {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  margin-left: 1px;
}

.zForm_cascader_checkbox__input_inner {
  display: inline-block;
  position: relative;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background-color: #fff;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
}

.zForm_cascader_checkbox__input input {
  opacity: 0;
  outline: none;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.zForm_cascader_checkbox__input_inner>i {
  box-sizing: content-box;
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  /* transition: transform 0.15s ease-in 0.05s; */
  transform-origin: center;
}

.zForm_cascader_checkbox__input.all_active .zForm_cascader_checkbox__input_inner,
.zForm_cascader_checkbox__input.half_active .zForm_cascader_checkbox__input_inner {
  border-color: var(--color-theme);
  background-color: var(--color-theme);
}

.zForm_cascader_checkbox__input.all_active .zForm_cascader_checkbox__input_inner>i {
  transform: rotate(45deg) scaleY(1);
}

.zForm_cascader_checkbox__input.half_active .zForm_cascader_checkbox__input_inner>i {
  font-size: 12px;
  border-top: 1px solid #fff;
  border-bottom: 0;
  top: 6px;
  left: 3px;
  width: 7px;
  height: 0px;
  transform: scaleY(1);
}

/* 级联下拉 */

.zForm_cascader__panel {
  display: flex;
  border-radius: 4px;
  font-size: 14px;
}

.zForm_cascader__loading {
  width: 180px;
  height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zForm_cascader__loading img {
  width: 20px;
  height: 20px;
}

.zForm_cascader_menu {
  /* display: none; */
  min-width: 180px;
  box-sizing: border-box;
  color: #606266;
  border-left: 1px solid #dcdcdc;
}

.zForm_cascader_menu:first-child {
  border-left: none;
}

.zForm_cascader_menu_wrap {
  height: 204px;
  overflow: auto;
}

.zForm_cascader__empty-tip {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  color: var(--theme-light-text-color);
}

.zForm_cascader_menu__list {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  box-sizing: border-box;
}

.zForm_cascader_node {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 30px 0 20px;
  height: 34px;
  line-height: 34px;
  outline: none;
  max-width: 200px;
}

.zForm_cascader_node.in_active_path,
.zForm_cascader_node.is_active,
.zForm_cascader_node.is-selectable.in_checked_path {
  color: var(--color-theme);
  font-weight: 700;
}

.zForm_cascader_node.is_selectable.in_active_path {
  color: #606266;
}

.zForm_cascader_node.in_active_path,
.zForm_cascader_node.is_active,
.zForm_cascader_node.is_selectable.in_checked_path {
  color: var(--color-theme);
  font-weight: 700;
}

.zForm_cascader_node:not(.is-disabled) {
  cursor: pointer;
}

.zForm_cascader_node__label {
  flex: 1;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_cascader_node__postfix {
  position: absolute;
  right: 10px;
}

.zForm_cascader_node:not(.is-disabled):focus,
.zForm_cascader_node:not(.is-disabled):hover {
  background: #f5f7fa;
}

.zForm_cascader_otherJson,
.zForm_cascader_node_params {
  display: none !important;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_cascader>.zForm_cascader_tags {
  background-color: #eee;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_cascader>.zForm_cascader_tags>input {
  display: none;
}

/* datetime_interval 日期时间 区间 */

.zForm_datetime_interval {
  width: 100%;
  font-size: 14px;
}

.zForm_datetime_interval>input {
  border: 0;
  outline: 0;
  flex: 1;
  border: none;
  outline: none;
  padding: 0;
  max-width: 100%;
  min-width: 0;
  color: var(--td-text-color-primary);
  font: inherit;
  background-color: transparent;
  box-sizing: border-box;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zForm_datetime_interval_suffix {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  position: relative;
  height: 36px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  border-color: #dcdcdc;
  padding: 4px 9px 4px 6px;
  background-color: #FFF;
  color: #333;
  font-size: 14px;
  box-sizing: border-box;
  transition: all cubic-bezier(.38, 0, .24, 1) .2s;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.zForm_datetime_interval_inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zForm_datetime_interval_inner>input {
  padding: 0px 4px;
  height: 100%;
  border: 0;
  box-shadow: none;
  font-size: inherit;
  border-radius: 4px;
  flex-grow: 1;
}

.zForm_datetime_interval_inner>input::placeholder {
  color: #8c8c8c;
  font-size: 13px;
}

.zForm_datetime_interval_inner>input:hover {
  background-color: #E7E7E7;
}

.zForm_datetime_interval_inner>i {
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

/* ==================================================================================================================================================================================================================== */
/* ==================================================================================================================================================================================================================== */
/* ==================================================================================================================================================================================================================== */

/* template 模板附件 */

.zForm_item[data-type="template"] .zForm_label {
  top: 22px;
}

.zForm_template {
  min-width: 100px;
  user-select: none;
}

.zForm_template li {
  height: 44px;
  line-height: 44px;
  border: 0;
  font-size: 14px;
  padding: 0 42px 0 16px;
  margin-bottom: 8px;
  background: #fafafa;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

.zForm_template li:hover {
  color: #2f82f0;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_template li {
  padding-right: 16px;
}

.zForm_template i {
  position: absolute;
  right: 16px;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_template i {
  display: none;
}

.zForm_template p {
  font-size: 12px;
  color: #999;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* user 成员 + dept 部门 */

.zForm_user,
.zForm_dept {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 8px;
  min-width: 108px;
  user-select: none;
}

.zForm_error .zForm_user,
.zForm_error .zForm_dept {
  border-color: #e34d59;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_user,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_dept {
  background: #eee;
  cursor: not-allowed;
}

.zForm_user a,
.zForm_dept a {
  display: inline-block;
  line-height: 26px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 6px;
  margin-right: 8px;
  cursor: pointer;
  color: #333;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_user a,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_dept a {
  color: #999;
  cursor: not-allowed;
}

.zForm_user i,
.zForm_dept i {
  font-size: 13px;
  margin-right: 6px;
}

.zForm_user p,
.zForm_dept p {
  display: inline-block;
  color: #999;
}

.zForm_user span,
.zForm_dept span {
  background: #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  margin-right: 8px;
  line-height: 28px;
  border-radius: 4px;
  white-space: nowrap;
  max-width: 100%;
}

.zForm_user b,
.zForm_dept b {
  font-size: 16px;
  font-weight: normal;
  margin: 0 -4px 0 3px;
  vertical-align: middle;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_user b,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_dept b {
  display: none;
}

.zForm_item>.zForm_content>.zForm_user font,
.zForm_item>.zForm_content>.zForm_dept font {
  width: calc(100% - 32px);
  flex-grow: 1;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_user font,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_dept font {
  width: 100%;
}

/* user 成员 */
/* dept 部門 */

.zForm_user_data,
.zForm_dept_data {
  display: none;
}

/* user 成员 modal + dept 部门 modal */

.zFormUserModal,
.zFormDeptModal {
  z-index: 1055;
}

.zFormUserModal .modal-dialog,
.zFormDeptModal .modal-dialog {
  width: 740px;
  user-select: none;
}

.zFormUserModal .modal-header,
.zFormDeptModal .modal-header {
  padding: 16px 24px 0;
  border: 0;
  color: #333;
  font-weight: normal;
  font-size: 16px;
}

.zFormUserModal .modal-body,
.zFormDeptModal .modal-body {
  padding: 20px 0 24px;
  display: flex;
}

.zFormUserModal_left,
.zFormDeptModal_left {
  width: 55%;
  padding: 0 24px;
}

.zFormUserModal_right,
.zFormDeptModal_right {
  width: 45%;
  padding: 0 16px;
  border-left: 1px solid #e6e6e6;
}

.zFormUserModal_search,
.zFormDeptModal_search {
  line-height: 32px;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 0 20px;
  margin-bottom: 10px;
}

.zFormUserModal_search i,
.zFormDeptModal_search i {
  font-size: 20px;
  color: #999;
  vertical-align: middle;
}

.zFormUserModal_search input,
.zFormDeptModal_search input {
  width: calc(100% - 28px);
  margin-left: 8px;
  border: 0;
  line-height: 32px;
  background: rgba(0, 0, 0, 0);
  vertical-align: middle;
}

.zFormUserModal_result,
.zFormDeptModal_result {
  height: 480px;
  overflow: auto;
}

.zFormUserModal_result li,
.zFormDeptModal_result li {
  line-height: 40px;
  padding: 0 16px;
}

.zFormUserModal_result li>span,
.zFormDeptModal_result li>span{
  word-wrap:break-word;
  word-break:break-all;
}


.zFormUserModal_result li:hover,
.zFormDeptModal_result li:hover {
  background: #f5f5f5;
}

.zFormUserModal_result i,
.zFormDeptModal_result i {
  float: right;
  cursor: pointer;
  color: #aaa;
  font-size: 20px;
  display: none;
}

.zFormUserModal_result li:hover i,
.zFormDeptModal_result li:hover i {
  display: block;
}

.zFormUserModal_handle,
.zFormDeptModal_handle {
  text-align: right;
  margin-top: 10px;
}

.zFormUserModal_handle button,
.zFormDeptModal_handle button {
  display: inline-block;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 0 16px;
  border-radius: 4px;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

.zFormUserModal_handle button:first-child,
.zFormDeptModal_handle button:first-child {
  background: var(--color-theme);
  color: #fff;
}

/* user 成员 modal */

.zFormUserModal .zUserPhoto,
.zFormUserModal .zUserPhoto img,
.zFormUserModal .zUserPhoto div {
  width: 28px;
  height: 28px;
  line-height: 28px;
  vertical-align: middle;
}

.zFormUserModal_search+div {
  display: flex;
}

.zFormUserModal_list {
  width: 315px;
  height: 480px;
  overflow: auto;
  padding-right: 5px;
  margin-right: -5px;
}

.zFormUserModal_list_tit {
  line-height: 32px;
  background: #f5f5f5;
  border-radius: 4px;
  color: #999;
  padding: 0 12px;
  margin: 8px 0;
}

.zFormUserModal_list_item {
  line-height: 40px;
  padding: 0 16px;
  cursor: pointer;
}

.zFormUserModal_list_item >span{
  word-wrap: break-word;
    word-break: break-all;
}

.zFormUserModal_list_item:hover {
  background: #f5f5f5;
}

.zFormUserModal_list_item i {
  display: inline-block;
  font-size: 14px;
  width: 16px;
  line-height: 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: #fff;
  border-radius: 2px;
  vertical-align: middle;
  text-align: center;
  margin-right: 10px;
  cursor: pointer;
}

.zFormUserModal_list_item i.zForm_active {
  border-color: var(--color-theme);
  background: var(--color-theme);
}

.zFormUserModal_list_item i.zForm_unable {
  background: #dcdcdc;
  border-color: #dcdcdc;
  cursor: not-allowed;
}

.zFormUserModal_list_item .zUserPhoto {
  margin-right: 10px;
}

.zFormUserModal_directory {
  text-align: center;
  margin-left: 24px;
  padding: 5px 0;
}

.zFormUserModal_directory a {
  display: block;
  font-size: 12px;
  margin: 2px 0;
  color: #999;
  cursor: pointer;
}

.zFormUserModal_result .zUserPhoto {
  margin-right: 10px;
}

/* dept 部门 modal */

.zFormDeptModal_list {
  height: 480px;
  overflow: auto;
  padding-right: 5px;
  margin-right: -5px;
}

.zFormDeptModal_list * {
  vertical-align: middle;
}

.zFormDeptModal_list ul {
  padding-left: 16px;
}

.zFormDeptModal_list div {
  line-height: 40px;
  padding: 0 16px;
  cursor: pointer;
}

.zFormDeptModal_list div:hover {
  background: #f5f5f5;
}

.zFormDeptModal_list i {
  display: inline-block;
  font-size: 14px;
  width: 16px;
  line-height: 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: #fff;
  border-radius: 2px;
  text-align: center;
  margin-right: 10px;
  cursor: pointer;
}

.zFormDeptModal_list i.zForm_active {
  border-color: var(--color-theme);
  background: var(--color-theme);
}

.zFormDeptModal_list a {
  font-size: 18px;
  cursor: pointer;
}

.zFormDeptModal_list a.zForm_active {
  display: inline-block;
  transform: rotate(90deg);
}

/* list 子表单 */

.zForm_item[data-type="list"] .zForm_label {
  top: 22px;
}

.zForm_list {
  user-select: none;
}

.zForm_list_data,
.zForm_list_calc_data {
  display: none;
}

.zForm_list_table {
  overflow-x: auto;
  padding-bottom: 5px;
}

.zForm_list_table::-webkit-scrollbar {
  height: 8px;
}

.zForm_list_tr {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  /* width: max-content; */
  min-width: 100%;
  padding-right: 80px;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
}

.zForm_list_tr:first-child {
  line-height: 44px;
  background: #ebebeb;
  border: 0;
}

.zForm_list_td {
  width: 160px;
  /* 默认 */
  padding: 0 10px;
  max-width: 400px;
}

.zForm_list_td_handle {
  display: flex;
  align-items: center;
  width: 80px;
  position: absolute;
  z-index: 1;
  height: 100%;
  background: #fff;
}

.zForm_list_tr:first-child .zForm_list_td_handle {
  background: #ebebeb;
}

.zForm_item[data-behavior="read_only"] .zForm_list_td_handle {
  display: none;
}

.zForm_list_td_handle a {
  color: #999;
  line-height: 58px;
}

.zForm_list_td[data-type="file"] {
  width: 205px;
  /* 附件 */
}

.zForm_list_td[data-type="date_interval"] {
  width: 250px;
  /* 日期区间 */
}

.zForm_list_td[data-type="user"],
.zForm_list_td[data-type="dept"] {
  width: 220px;
  /* 成员、部门 */
}

.zForm_list_add,
.zForm_list_export,
.zForm_list_download {
  display: inline-block;
  line-height: 26px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 0 6px;
  margin-top: 5px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

.zForm_list_export,
.zForm_list_download {
  margin-left: 5px;
}

.zForm_item[data-behavior="read_only"] .zForm_list_add,
.zForm_item[data-behavior="read_only"] .zForm_list_export,
.zForm_item[data-behavior="read_only"] .zForm_list_download {
  display: none;
}

.zForm_list_add i,
.zForm_list_export i,
.zForm_list_download i {
  font-size: 13px;
  margin-right: 6px;
}

/* relation_query 关联查询 */

.zForm_relation_query_table {
  overflow-x: auto;
  padding-bottom: 5px;
}

.zForm_relation_query_tr {
  display: flex;
  position: relative;
  width: max-content;
  min-width: 100%;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
}

.zForm_relation_query_tr:first-child {
  background: #d8d8d8;
  border: 0;
}

.zForm_relation_query_td {
  width: 180px;
  padding: 15px 10px;
  line-height: 22px;
}

.zForm_relation_query_tr:first-child .zForm_relation_query_td {
  padding: 0 10px;
  line-height: 44px;
}

.zForm_relation_query_page {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.zForm_relation_query_page_size {
  position: relative;
  background: #fff;
}

.zForm_relation_query_page_size span {
  display: block;
  padding: 0 6px 0 10px;
  line-height: 28px;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  cursor: pointer;
}

.zForm_relation_query_page_size i {
  margin-left: 5px;
}

.zForm_relation_query_page_size ul {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 10;
  padding: 5px 0;
  display: none;
}

.zForm_relation_query_page_size ul.zForm_active {
  top: auto;
  bottom: 30px;
}

.zForm_relation_query_page_size li {
  padding: 0 10px;
  line-height: 28px;
  cursor: pointer;
}

.zForm_relation_query_page_size li:hover {
  color: var(--color-theme);
}

.zForm_relation_query_page_btn {
  margin-left: 16px;
}

.zForm_relation_query_page_btn button,
.zForm_relation_query_page_btn font {
  width: 32px;
  text-align: center;
  margin: 0 4px;
  line-height: 28px;
  color: #888;
}

.zForm_relation_query_page_btn button {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
}

.zForm_relation_query_page_btn button:first-child,
.zForm_relation_query_page_btn button:last-child {
  border-color: #fff;
}

.zForm_relation_query_page_btn button.zForm_active {
  background: var(--color-theme);
  border-color: var(--color-theme);
  color: #fff;
  cursor: not-allowed;
}

.zForm_relation_query_page_btn button.zForm_unable {
  cursor: not-allowed;
}

.zForm_relation_query_page_btn font {
  display: inline-block;
}

/* project 项目 */

.zForm_project div {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_project div {
  cursor: not-allowed;
  background: #eee;
}

/* .zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_project div>span>font{
  color: #8c8c8c;
} */

.zForm_item.zForm_error .zForm_project div {
  border-color: #e34d59;
}

.zForm_project b {
  font-weight: normal;
  color: #999;
}

.zForm_project p {
  display: none;
}

/* project 项目 modal */

.zFormProjectModal {
  z-index: 1055;
}

.zFormProjectModal .modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e6e6e6;
  color: #333;
  font-weight: normal;
  font-size: 16px;
}

.zFormProjectModal .modal-body {
  padding: 0 24px;
}

.zFormProjectModal .modal-body>div:first-child {
  display: flex;
  align-items: center;
}

.zFormProjectModal .modal-body i {
  display: inline-block;
  line-height: 16px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
}

.zFormProjectModal .modal-body i.zForm_active {
  background: var(--color-theme);
  border-color: var(--color-theme);
}

.zFormProjectModal .modal-body i.zForm_unable {
  background: #dcdcdc;
  border-color: #dcdcdc;
  cursor: not-allowed;
}

.zFormProjectModal_check {
  margin: 0 10px;
}

.zFormProjectModal_check.zForm_hide {
  display: inline-block !important;
  visibility: hidden;
}

.zFormProjectModal_status {
  position: relative;
}

.zFormProjectModal_status div {
  display: flex;
  align-items: center;
  line-height: 30px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 10px;
  vertical-align: middle;
  cursor: pointer;
}

.zFormProjectModal_status span {
  width: 100px;
  margin-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zFormProjectModal_status ul {
  width: 100%;
  line-height: 30px;
  max-height: 190px;
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 2;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 6px;
  display: none;
}

.zFormProjectModal_status li {
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding-left: 6px;
  margin: 6px 0;
  cursor: pointer;
}

.zFormProjectModal_status li.zForm_active {
  background: #f9f7f5;
}

.zFormProjectModal_status font {
  margin-left: 6px;
}

.zFormProjectModal_search {
  padding: 16px 0;
}

.zFormProjectModal_search input {
  font-size: 14px;
  line-height: 30px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 10px;
  margin: 0 10px;
  vertical-align: middle;
  width: 240px;
}

.zFormProjectModal_search button {
  display: inline-block;
  background: var(--color-theme);
  border: 1px solid var(--color-theme);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  line-height: 30px;
  padding: 0 15px;
  vertical-align: middle;
}

.zFormProjectModal_nodata {
  text-align: center;
  padding: 60px 0;
  color: #aaa;
}

.zFormProjectModal_list {
  max-height: calc(100vh - 300px);
  overflow: auto;
}

.zFormProjectModal_list div {
  border-top: 1px solid #e6e6e6;
  padding: 10px 10px 10px 40px;
  position: relative;
  display: none;
}

.zFormProjectModal_list div.zForm_active {
  display: block;
}

.zFormProjectModal_list i {
  position: absolute;
  left: 10px;
  top: 23px;
}

.zFormProjectModal_list p {
  padding-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zFormProjectModal_list b {
  font-weight: normal;
  background: #edffed;
  color: #038a24;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 12px;
  vertical-align: middle;
  margin-right: 10px;
}

.zFormProjectModal_list b[data-v="进行中"] {
  background: #edffed;
  color: #038a24;
}

.zFormProjectModal_list b[data-v="已结项"] {
  background: #e9f1ff;
  color: var(--color-theme);
}

.zFormProjectModal_list b[data-v="已删除"] {
  background: #f6f6f6;
  color: #999;
}

.zFormProjectModal_list b[data-v="审批中"] {
  background: #fdf6ec;
  color: #e6a23c;
}

.zFormProjectModal_list b[data-v="被驳回"] {
  background: #fef0f0;
  color: #f56c6c;
}

.zFormProjectModal_list span {
  margin-right: 30px;
  font-size: 12px;
}

.zFormProjectModal_list font {
  color: #999;
}

.zFormProjectModal .modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e6e6e6;
}

.zFormProjectModal .modal-footer button {
  display: inline-block;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 0 16px;
  border-radius: 4px;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

.zFormProjectModal .modal-footer button:last-child {
  background: var(--color-theme);
  color: #fff;
}

/* text_arr 文本组 */

.zForm_text_arr>p {
  display: none;
}

.zForm_text_arr_item {
  padding-right: 25px;
  margin-top: 10px;
  position: relative;
}

.zForm_text_arr_item:first-child {
  margin: 0;
}

.zForm_text_arr_item div {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 0 35px 0 10px;
  position: relative;
}

.zForm_text_arr_item input {
  color: #333;
  background: #fff;
  border: 0;
  font-size: 14px;
  width: 100%;
  line-height: 36px;
  margin: 0;
}

.zForm_text_arr_item i,
.zForm_text_arr_item a {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  cursor: pointer;
}

.zForm_text_arr_item i {
  right: 10px;
  color: #999;
  display: none;
}

.zForm_text_arr_item a.zForm_text_arr_add {
  color: var(--color-theme);
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_text_arr>.zForm_text_arr_item,
.zForm_text_arr[data-mode="0"] .zForm_text_arr_item {
  padding: 0;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_text_arr>.zForm_text_arr_item div,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_text_arr>.zForm_text_arr_item input {
  cursor: not-allowed;
  background: #eee;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_text_arr>.zForm_text_arr_item i,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_text_arr>.zForm_text_arr_item a,
.zForm_text_arr[data-mode="0"] .zForm_text_arr_item a {
  display: none;
}

/* text_arr 文本组 modal */

.zFormTextArrModal {
  position: fixed;
  z-index: 2050;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 6px 0;
  max-height: 130px;
  overflow: auto;
}

.zFormTextArrModal li {
  padding: 8px 10px;
  cursor: pointer;
}

.zFormTextArrModal li:hover {
  background: #f5f5f5;
}

.zFormTextArrModal font {
  color: var(--color-theme);
}

/* zForm_numerical_range 数字区间 */
.zForm_numerical_range {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.zForm_numerical_range_hr {
  height: 2px;
  width: 36px;
  background-color: rgb(235, 235, 235);
}

.zForm_numerical_range_min,
.zForm_numerical_range_max {
  width: calc(50% - 36px - 3%);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  position: relative;
}

.zForm_numerical_range_min input,
.zForm_numerical_range_max input {
  width: 100%;
  border: none;
  /* 针对Firefox */
  -moz-appearance: textfield;
  background-color: transparent;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.zForm_numerical_range_min input::-webkit-inner-spin-button,
.zForm_numerical_range_min input::-webkit-outer-spin-button,
.zForm_numerical_range_max input::-webkit-inner-spin-button,
.zForm_numerical_range_max input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_numerical_range>.zForm_numerical_range_min,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_numerical_range>.zForm_numerical_range_max {
  background-color: #eee;
  color: #8c8c8c;
}

.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_numerical_range>.zForm_numerical_range_min input,
.zForm_item[data-behavior="read_only"]>.zForm_content>.zForm_numerical_range>.zForm_numerical_range_max input {
  cursor: not-allowed;
}

.zForm_item.zForm_error .zForm_numerical_range_min,
.zForm_item.zForm_error .zForm_numerical_range_max {
  border-color: #e34d59;
}

/* modal_table 模态表 */
.zForm_modal_table_flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}

.zForm_modal_table {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 8px;
  box-sizing: border-box;
}

.zForm_modal_table p {
  color: #999;
  display: inline-block;
  line-height: 36px;
  margin: 0;
}

.zForm_modal_table a {
  line-height: 26px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 0 6px;
  cursor: pointer;
  margin: 4px 8px 4px 0;
}

.zForm_modal_table>a>i {
  font-size: 13px;
  margin-right: 6px;
}

.zForm_modal_table span {
  background: #e6e6e6;
  display: inline-block;
  padding: 0 8px;
  line-height: 28px;
  border-radius: 4px;
  white-space: nowrap;
  margin: 4px 8px 4px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  padding-right: 24px;
}

.zForm_modal_table span:last-child {
  margin-right: 0;
}

.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_modal_table span {
  padding-right: 8px;
}

.zForm_modal_table b {
  font-size: 16px;
  font-weight: normal;
  margin: 0 -4px 0 3px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  right: 8px;
}

.zForm_modal_table .zForm_modal_table_data {
  display: none;
}

.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_modal_table {
  background: #eee;
  cursor: not-allowed;
  color: #8c8c8c;
}

.zForm_item.zForm_error .zForm_modal_table {
  border-color: #e34d59;
}

/* modal_table 模态表 modal*/
.zForm_modal_table_modal {
  z-index: 1055;
  color: #333;
}

.zForm_modal_table_modal .modal-dialog {
  max-width: 972px;
}

.zForm_modal_table_modal .modal-header {
  padding: 12px 0;
  box-sizing: border-box;
}

.zForm_modal_table_modal .modal-header .close {
  display: none;
}

.zForm_modal_table_modal .modal-title {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0px;

  color: #262626;
}

.zForm_modal_table_modal .input-group {
  margin-bottom: 16px;
  width: 100%;
}

.zForm_modal_table_modal .input-group .btn {
  border-color: #dcdcdc;
  border-left-color: transparent;
  outline: none;
  border-radius: 0 4px 4px 0;
  margin-left: -1px;
}

.zForm_modal_table_modal .input-group .btn:active,
.zForm_modal_table_modal .input-group .btn:focus {
  box-shadow: none;
  background-color: transparent;
}

.zForm_modal_table_modal .input-group .btn-default:hover {
  background-color: transparent;
  border-left-color: transparent;
}

.zForm_modal_table_modal .input-group input {
  box-shadow: none;
  border-color: #dcdcdc;
  border-right-color: transparent;
}

.zForm_modal_table_modal .clear-btn {
  position: absolute;
  z-index: 3;
  right: 40px;
  top: 6px;
  font-size: 14px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
}

.zForm_modal_table_modal .modal-body {
  background-color: rgb(249, 249, 249);
  padding: 16px 20px;
  box-sizing: border-box;
}

.zForm_modal_table_modal .zForm_modal_table_table {
  overflow: auto;
  border-radius: 8px 8px 0 0;
}

.zForm_modal_table_modal .zForm_modal_table_thead {
  flex-wrap: nowrap;
  overflow: visible;
  width: max-content;
  position: sticky;
  top: 0;
  z-index: 2;
  min-width: 100%;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.zForm_modal_table_modal .zForm_modal_table_thead li {
  border-bottom: none;
  position: relative;
  padding: 10px 16px 13px;
  box-sizing: border-box;
  flex: 1;
  font-size: 14px;
  font-weight: normal;
  line-height: 17px;
  letter-spacing: 0px;
  height: 41px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #333333;
  background-color: #F9F9F9;
}

.zForm_modal_table_modal .zForm_modal_table_thead li::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: rgb(237, 237, 237);
  left: 0;
  top: 8px;
  height: calc(100% - 16px);
}

.zForm_modal_table_modal .zForm_modal_table_thead li:nth-child(1):after {
  background-color: transparent;
}

.zForm_modal_table_modal .zForm_modal_table_content {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px;
  box-sizing: border-box;
}

.zForm_modal_table_modal .zForm_modal_table_tbody {
  max-height: calc(100vh - 315px - 6px);
  overflow: visible;
  z-index: 1;
  position: relative;
  width: max-content;
  min-width: 100%;
}

.zForm_modal_table_modal .zForm_modal_table_tbody li {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.zForm_modal_table_modal .zForm_modal_table_tbody li>div {
  font-size: 14px;
  line-height: 17px;
  border-top: none;
  border-bottom: 1px solid rgb(235, 235, 235);
  padding: 11px 16px 12px;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  height: 41px;
}

.zForm_modal_table_modal_check div {
  border: 1px solid #d1a677;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  text-align: center;
}

.zForm_modal_table_modal_check div span {
  display: none;
}

.zForm_modal_table_active .zForm_modal_table_modal_check div {
  background-color: #d1a677;
}

.zForm_modal_table_active .zForm_modal_table_modal_check div span {
  display: block;
  color: #fff;
  font-size: 8px;
  margin-top: 2px;
}

.zForm_modal_table_modal .zForm_modal_table_thead li:nth-child(1),
.zForm_modal_table_modal .zForm_modal_table_tbody li>div:nth-child(1) {
  width: 48px;
  flex: none;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: visible;
}

.zForm_modal_table_modal .zForm_modal_table_tbody li>div:nth-child(1) {
  background-color: #fff;
}

.zForm_modal_table_modal .zForm_modal_table_tbody .zForm_modal_table_info,
.zForm_modal_table_modal .zForm_modal_table_tbody .zForm_modal_table_info>div:nth-child(1) {
  background-color: #f9f9f9;
}

.zForm_modal_table_scroll .zForm_modal_table_thead li:nth-child(1)::before,
.zForm_modal_table_scroll .zForm_modal_table_modal_check::before {
  content: '';
  width: 15px;
  position: absolute;
  top: -6px;
  right: 0;
  bottom: -6px;
  z-index: 1;
  box-shadow: 8px 0 6px -4px rgba(0, 0, 0, 0.08);
}

.zForm_modal_table_modal .zForm_modal_table_empty {
  text-align: center;
  margin: 32px auto;
}

.zForm_modal_table_modal .zForm_modal_table_empty img {
  width: 122px;
  height: 122px;
  display: block;
  margin: auto;
}

.zForm_modal_table_modal .zForm_modal_table_empty span {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 20px;
}

.zForm_modal_table_modal .zForm_modal_table_empty p {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
}

.zForm_modal_table_modal .modal-footer {
  padding: 8px 0;
  text-align: center;
  position: relative;
}

.zForm_modal_table_modal .modal-footer .btn {
  width: 88px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  padding: 0;
  outline: none;
}

.zForm_modal_table_modal .modal-footer .btn:active {
  box-shadow: none;
}

.zForm_modal_table_modal .modal-footer .btn:nth-child(1) {
  background-color: var(--color-theme);
  border-color: var(--color-theme);
}

.zForm_modal_table_modal .modal-footer .btn:nth-child(2) {
  background-color: #fff;
  border-color: #dcdcdc;
}

/* zForm_date_time_range 日期时间区间 */
.zForm_date_time_range_flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.zForm_date_time_range {
  width: 100%;
  overflow: hidden;
}

.zForm_date_time_range input {
  border: none;
  width: 100%;
  padding: 0 34px 0 8px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zForm_date_time_range>div {
  width: calc(50% - 18px);
  margin-right: 36px;
  position: relative;
}

.zForm_date_time_range>div:last-child {
  margin-right: 0;
}

.zForm_date_time_range>div .icon-calendar,
.zForm_date_time_range>div .icon-time {
  font-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 8px;
  top: 0;
  color: #999;
  z-index: 2;
}

.zForm_date_time_range .zForm_date_time_range_hr {
  width: 32px;
  border: none;
  padding: 0;
  position: relative;
}

.zForm_date_time_range .zForm_date_time_range_hr::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D8D8D8;
  position: absolute;
  left: 0;
  top: 16px;
}

.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_date_time_range_date input,
.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_date_time_range_start_time input,
.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_date_time_range_end_time input {
  cursor: not-allowed;
  background-color: #eee;
  color: #8c8c8c;
}

.zForm_date_time_range>div .clearBtn,
.zForm_numerical_range_min .clearBtn,
.zForm_numerical_range_max .clearBtn {
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 36px;
  color: #dcdcdc;
  display: none;
}

.zForm_date_time_range>div .clearBtn.active,
.zForm_numerical_range_min .clearBtn.active,
.zForm_numerical_range_max .clearBtn.active {
  display: block;
}

/* 日期时间 */
.custom-date-time-tips {
  width: 497px !important;
  height: calc(326px + 14px) !important;
  box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 5%), 0 8px 10px 1px rgba(0, 0, 0, 6%), 0 5px 5px -3px rgba(0, 0, 0, 10%) !important;
  border-radius: 4px !important;
  margin-left: -6px !important;
  overflow: hidden;
}

.custom-date-time-tips .layui-layer-content {
  background-color: #fff !important;
  padding: 0 !important;
}

.custom-date-time-tips .layui-layer-content{
  height: 100%;
}

.custom-date-time-tips i.layui-layer-TipsR,
.custom-date-time-tips i.layui-layer-TipsL,
.custom-date-time-tips i.layui-layer-TipsB,
.custom-date-time-tips i.layui-layer-TipsT {
  display: none;
}

.custom-date-time {
  font-size: 0;
  height: 100%;
}

.custom-date-time-container {
  display: inline-block;
  font-size: 14px;
  height: 100%;
}

.custom-date-time-container .layui-laydate {
  box-shadow: none;
  border: none;
  margin: 0;
  width: 100%;
  height: 100%;
}

.custom-date-time-tips #customDate {
  width: 280px;
  /* height: 100%; */
}

.custom-date-time-tips #customTime {
  width: 216px;
  border-left: 1px solid #ededed;
  /* height: 100%; */
}

.custom-date-time-tips .layui-laydate-header i.laydate-prev-y,
.custom-date-time-tips .layui-laydate-header i.laydate-next-y,
.custom-date-time-tips #customTime .layui-laydate-header i.laydate-prev-y-show,
.custom-date-time-tips #customTime .layui-laydate-header i.laydate-next-y-show {
  display: none !important;
}
.custom-date-time-tips .layui-laydate-header i.laydate-prev-y-show,
.custom-date-time-tips .layui-laydate-header i.laydate-next-y-show {
  display: block !important;
}
.custom-date-time-tips .layui-laydate .layui-laydate-header i.laydate-prev-y{
  position: absolute;
  top: 44px;
  transform: rotate(90deg);
  left: 120px;
  z-index: 2;
  color: #666 !important;
}
.custom-date-time-tips .layui-laydate .layui-laydate-header i.laydate-next-y{
  position: absolute;
  top: 220px;
  transform: rotate(90deg);
  left: 120px;
  z-index: 2;
  color: #666 !important;
}

.custom-date-time-tips .layui-laydate-header {
  border-bottom: none !important;
  padding-bottom: 0;
  padding-top: 12px;
}

.custom-date-time-tips .layui-laydate-main,
.custom-date-time-tips .layui-laydate-content table {
  width: 100%;
  height: calc(100% - 48px);
}

.custom-date-time-tips .laydate-month-list,
.custom-date-time-tips .laydate-year-list {
  width: 80px;
  height: 190px;
  background: #FFFFFF;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.1), 0px 8px 10px 1px rgba(0, 0, 0, 0.06), 0px 3px 14px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px 4px 4px 4px;
  overflow-y: auto;
  top: 7px;
  padding: 6px;
}

.custom-date-time-tips .laydate-month-list {
  left: 12px;
}

.custom-date-time-tips .laydate-year-list {
  left: 100px;
}

.custom-date-time-tips .laydate-month-list>li,
.custom-date-time-tips .laydate-year-list>li {
  width: 100%;
  margin: 0;
  line-height: 28px;
  margin-bottom: 2px;
  height: 28px;
  border-radius: 3px;
  text-align: left;
  padding-left: 8px;
}

.custom-date-time-tips #customDate .layui-laydate-footer {
  position: static;
}

.custom-date-time-tips #customDate .laydate-btns-now {
  font-size: 0;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
}

.custom-date-time-tips #customDate .laydate-footer-btns {
  right: 36px;
  top: 14px;
  line-height: 24px;
}

.custom-date-time-tips #customDate .laydate-btns-now::before {
  content: '';
  width: 9px;
  height: 9px;
  border: 1px solid #333;
  border-radius: 50%;
  position: absolute;
  left: 7.5px;
  top: 7.5px;
}

.custom-date-time-tips .laydate-set-ym {
  position: static;
}

.custom-date-time-tips .layui-laydate .layui-laydate-header i {
  font-size: 9px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  padding: 0;
  margin: 0;
  color: #000 !important;
  top: 15px;
  font-weight: bold;
}

.custom-date-time-tips .layui-laydate-header i.laydate-prev-m {
  left: auto;
  right: 60px;
}

.custom-date-time-tips .layui-laydate-header i.laydate-next-m {
  right: 12px;
}

.custom-date-time-tips .laydate-set-ym span[lay-type="month"],
.custom-date-time-tips .laydate-set-ym span[lay-type="year"] {
  position: absolute;
  left: 0;
  top: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 0 8px;
  box-sizing: border-box;
  width: 80px;
  height: 32px;
  line-height: 32px;
  text-align: left;
}

.custom-date-time-tips .laydate-set-ym span[lay-type="month"] {
  left: 12px;
}

.custom-date-time-tips .laydate-set-ym span[lay-type="year"] {
  left: 100px;
}

.custom-date-time-tips .laydate-time-list p {
  display: none;
}

.custom-date-time-tips .laydate-time-list li ol {
  border: none;
  overflow-y: scroll;
  height: 100%;
}

.custom-date-time-tips .laydate-time-list li ol::-webkit-scrollbar {
  width: 0;
}

.custom-date-time-tips .laydate-time-list ol li {
  padding-left: 0;
  width: calc(100% - 8px);
  text-align: center;
  margin-bottom: 2.3px;
}

.custom-date-time-tips #customTime .layui-this,
.custom-date-time-tips #customDate .layui-this {
  background-color: #F0EDE9 !important;
  color: var(--color-theme) !important;
  border-radius: 3px;
}

.custom-date-time-tips #customTime .layui-laydate-list {
  padding-right: 2px;
  padding-top: 16px;
}

.custom-date-time-tips .laydate-time-text {
  padding: 0;
}

.custom-date-time-tips #customDate .laydate-time-show .laydate-set-ym span[lay-type=month],
.custom-date-time-tips #customDate .laydate-time-show .laydate-set-ym span[lay-type=year],
.custom-date-time-tips #customDate .laydate-time-show .layui-laydate-header .layui-icon,
.custom-date-time-tips #customDate .laydate-ym-show .laydate-set-ym span[lay-type=month],
.custom-date-time-tips #customDate .laydate-ym-show .laydate-next-m,
.custom-date-time-tips #customDate .laydate-ym-show .laydate-prev-m {
  display: block !important;
}

.custom-date-time-tips #customTime .laydate-btns-confirm {
  color: #fff;
  background-color: var(--color-theme);
  border-radius: 4px;
  border-color: var(--color-theme);
  margin-left: 8px;
  width: 40px;
  padding: 0;
  line-height: 22px;
  height: 24px;
  text-align: center;
}

.custom-date-time-tips #customTime .laydate-btns-clear {
  color: var(--color-theme);
  background-color: transparent;
  border-color: transparent;
  width: 40px;
  padding: 0;
  line-height: 22px;
  height: 24px;
  text-align: center;
}

.custom-date-time-tips #customTime .layui-laydate-footer {
  width: calc(100% + 1px);
  left: -1px;
  background-color: #fff;
  z-index: 2;
  height: 48px;
  border-color: #ededed;
}

.custom-date-time-tips .layui-laydate .layui-laydate-content td {
  font-size: 14px;
}

/* 日期 第二种风格 */
.custom-date-style-two {
  width: 272px !important;
}

.custom-date-style-two .layui-laydate-footer {
  padding-right: 15px;
}

.custom-date-style-two .laydate-footer-btns {
  position: static;
  text-align: right;
}

.custom-date-style-two .laydate-btns-now {
  position: absolute;
  top: 15px;
  right: 36px;
}

.custom-date-style-two #customDate .laydate-btns-confirm {
  color: #fff;
  background-color: var(--color-theme);
  border-radius: 4px;
  border-color: var(--color-theme);
  margin-left: 8px;
  width: 40px;
  padding: 0;
  line-height: 22px;
  height: 24x;
  text-align: center;
}

.custom-date-style-two #customDate .laydate-btns-clear {
  color: var(--color-theme);
  background-color: transparent;
  border-color: transparent;
  width: 40px;
  padding: 0;
  line-height: 22px;
  height: 24x;
  text-align: center;
}

.custom-date-style-two #customDate .layui-laydate-footer {
  width: calc(100% + 1px);
  left: -1px;
  background-color: #fff;
  z-index: 2;
  height: 48px;
  border-color: #ededed;
}

.custom-date-style-two .layui-laydate .layui-laydate-content td {
  font-size: 14px;
}

/* 时间 第二种风格 */
.custom-time-style-two {
  width: 216px !important;
}

/* 合同审批 */
.zForm_link_approval_input{
  position: relative;
}
.zForm_link_approval_input i{
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 18px;
  line-height: 36px;
}
.zForm_link_approval_list{
  line-height: 34px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 36px;
  padding: 0 35px 0 10px;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.zForm_link_approval_list span::after{
  content: ',';
}
.zForm_link_approval_list span:last-child::after{
  content: '';
}
.zForm_link_approval_list p{
  color: #999;
}
.zForm_item[data-behavior="read_only"]>.zForm_link_approval_list{
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}
.zForm_item[data-behavior="read_only"] .zForm_link_approval_list{
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}
.zForm_item[data-behavior="read_only"] .zForm_link_approval_input i{
  display: none;
}

.zForm_link_approval_button{
  min-width: 80px;
  display: inline-block;
  text-align: center;
  padding: 0 12px;
  line-height: 34px;
  border-radius: 4px;
  border: 1px solid var(--color-theme);
  background: var(--color-theme);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"] .zForm_link_approval_button{
  border-color: #dcdcdc;
  background-color: #eee;
  color: #8c8c8c;
  cursor: no-drop;
}

/* 合同审批 弹窗 */
.zForm-link-approval-flex{
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
#zFormLinkApprovalModal{
  display: none;
  font-size: 14px;
  line-height: 14px;
}
#zFormLinkApprovalModal .modal-header{
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}
#zFormLinkApprovalModal button span{
  display: block;
}
#zFormLinkApprovalModal .modal-title{
  text-align: left;
}
.zForm-link-approval-header{
  justify-content: space-between;
  padding: 8px 0 16px;
  box-sizing: border-box;
}
.zForm-link-approval-status{
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  position: relative;
  padding: 0 30px 0 12px;
  box-sizing: border-box;
  line-height: 36px;
  width: 120px;
  cursor: pointer;
}
.zForm-link-approval-status i{
  font-size: 18px;
  line-height: 36px;
  position: absolute;
  top: 0;
  right: 12px;
}
.zForm-link-approval-status p{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.zForm-link-approval-search{
  justify-content: space-between;
}
.zForm-link-approval-input{
  width: calc(100% - 72px);
  position: relative;
}
.zForm-link-approval-input input{
  line-height: 36px;
  border: 1px solid #e6e6e6;
  padding: 0 12px;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
}
.zForm-link-approval-input i{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  display: none;
  cursor: pointer;
}
.zForm-link-approval-search button{
  background-color: var(--color-theme);
  border: none;
  line-height: 36px;
  color: #fff;
  width: 60px;
  border-radius: 4px;
  text-align: center;
}
.zForm-link-approval-filter{
  position: relative;
}
.zForm-link-approval-menu{
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e6e6e6;
  border-radius: 0 0 4px 4px;
  display: none;
  padding: 6px 6px 0 6px;
  box-sizing: border-box;
  background-color: #fff;
}
.zForm-link-approval-menu li{
  line-height: 32px;
  padding: 0 6px;
  box-sizing: border-box;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 4px;
  margin-bottom: 6px;
}
.zForm-link-approval-menu li:hover,
.zForm-link-approval-menu li.active{
  background-color: #f9f7f5;
}
.zForm-link-approval-menu li p{
  margin-left: 8px;
}
.zForm-link-approval-check{
  width: 18px;
  height: 18px;
  border: 1px solid #dcdcdc;
  /* border-radius: 50%; */
  border-radius: 4px;
  color: #fff;
  text-align: center;
}
.zForm-link-approval-check i{
  display: none;
  font-size: 16px;
  line-height: 18px;
}
.zForm-link-approval-list{
  min-height: 300px;
  max-height: calc(100vh - 60px - 57px - 84px - 62px - 8px - 32px - 8px);
  overflow-y: auto;
}
#zFormLinkApprovalModal .active .zForm-link-approval-check{
  background-color: var(--color-theme);
  border-color: var(--color-theme);
}
#zFormLinkApprovalModal .active .zForm-link-approval-check i{
  display: block;
}
#zFormLinkApprovalModal[data-mode="1"] .zForm-link-approval-check{
  border-radius: 4px;
}
.zForm-link-approval-list li{
  justify-content: space-between;
  padding: 12px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
}
.zForm-link-approval-content{
  width: calc(100% - 30px);
}
.zForm-link-approval-ps>div{
  display: inline-block;
  margin-right: 30px;
  font-size: 12px;
  line-height: 12px;
  margin-top: 6px;
}
.zForm-link-approval-ps>div p{
  color: #999;
  display: inline-block;
}
.zForm-link-approval-ps>div span{
  color: #333;
}
.zForm-link-approval-title{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}
.zForm-link-approval-title span{
  margin-right: 12px;
  font-size: 12px;
  line-height: 20px;
  color: #4bae62;
  background-color: #edffed;
  border-radius: 4px;
  padding: 0 6px;
  box-sizing: border-box;
  display: inline-block;
}
.zForm-link-approval-title p{
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
  display: inline;
}
.zForm_link_approval p[data-name]{
  display: none;
}

.zForm_link_approval_page{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.zForm_link_approval_page_list{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.zForm_link_approval_page_ellipsis,
.zForm_link_approval_page_prev,
.zForm_link_approval_page_next,
.zForm_link_approval_page_item{
  line-height: 32px;
  min-width: 32px;
  text-align: center;
  background-color: #fafafa;
  border-radius: 4px;
  color: #555;
  margin: 0 2px;
  cursor: pointer;
}
.zForm_link_approval_page_item.active{
  background-color: var(--color-theme);
  color: #fff;
}
.zForm_link_approval_page_ellipsis{
  background: transparent;
  cursor: default;
}

/* 成员组件全选 */
.zFormUserModal_left .select-all{
  display: none;
}
.zform-radio-select-all.zFormUserModal_left{
  font-size: 0;
}
.zform-radio-select-all.zFormUserModal_left>div{
  font-size: 14px;
}
.zform-radio-select-all .zFormUserModal_search{
  display: inline-block;
  width: calc(100% - 60px);
}
.zform-radio-select-all .select-all{
  width: 60px;
  cursor: pointer;
  display: inline-block;
}
.zform-radio-select-all .select-all i{
  color: #ddd;
  font-size: 14px;
  line-height: 14px;
}
.zform-radio-select-all .select-all .icon-icon-weixuanzhongxiang1{
  display: none;
  color: var(--color-theme);
}
.zform-radio-select-all.active .select-all .icon-icon-weixuanzhongxiang1{
  display: inline-block;
}
.zform-radio-select-all.active .select-all .icon-icon-weixuanzhongxiang2{
  display: none;
}

.hide_params{
  display: none !important;
}

/* 富文本组件 */
.zForm_ueditor{
  border: 1px solid #eee;
  border-radius: 8px;
  margin-top: 4px;
  padding: 2px;
  box-sizing: border-box;
  width: 100%;
}
.zForm_ueditor>div:nth-child(2){
  /* height: 110px; */
  height: 260px;
}
.zForm_ueditor .w-e-text-placeholder{
  top: 9px;
}
.zForm_ueditor .w-e-modal button{
  line-height: 27px;
}

/* pdf-preview-container */

.pdf-preview-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: #fff;
}

.pdf-preview-container.fade-out {
  opacity: 0;
}

.pdf-header {
  background-color: white;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pdf-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.pdf-controls {
  display: flex;
  gap: 0.5rem;
}

.pdf-btn {
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  transition: all 0.15s ease;
  background-color: #e5e7eb;
  color: #374151;
  border: 0;
}

.pdf-btn:hover {
  background-color: #d1d5db;
}

.pdf-close-btn{
  background: var(--color-theme);
  color: #fff;
}

.pdf-close-btn:hover{
  background: var(--color-theme);
  color: #fff;
}

.pdf-page-info {
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  color: #374151;
}

.pdf-current-page, .pdf-total-pages {
  font-weight: 500;
}

/* 下拉菜单样式 */
.pdf-page-dropdown {
  position: relative;
}

.pdf-dropdown-button {
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  background-color: #e5e7eb;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pdf-dropdown-button:hover {
  background-color: #d1d5db;
}

.pdf-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 100%;
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem 0;
  z-index: 10;
}

.pdf-dropdown-item {
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  color: #374151;
}

.pdf-dropdown-item:hover {
  background-color: #f3f4f6;
}

.pdf-dropdown-item.active {
  background-color: #e5e7eb;
  font-weight: 500;
}

.hidden {
  display: none;
}

.pdf-viewer-container {
  flex-grow: 1;
  overflow: auto;
  padding: 1rem;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.pdf-canvas {
  /* max-width: 100%;
  max-height: 100%; */
  /* max-width: 595px;
  max-height: 841px; */
}

.text-red-500 {
  color: #ef4444;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
  .pdf-header {
      background-color: #1f2937;
  }
  
  .pdf-title {
      color: white;
  }
  
  .pdf-btn {
      background-color: #374151;
      color: #d1d5db;
  }
  
  .pdf-btn:hover {
      background-color: #4b5563;
  }
  
  .pdf-page-info {
      color: #d1d5db;
  }
  
  .pdf-dropdown-button {
      background-color: #374151;
      color: #d1d5db;
  }
  
  .pdf-dropdown-button:hover {
      background-color: #4b5563;
  }
  
  .pdf-dropdown-menu {
      background-color: #1f2937;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  }
  
  .pdf-dropdown-item {
      color: #d1d5db;
  }
  
  .pdf-dropdown-item:hover {
      background-color: #374151;
  }
  
  .pdf-dropdown-item.active {
      background-color: #4b5563;
  }
  
  .pdf-viewer-container {
      background-color: #111827;
  }
  
  .pdf-loader {
      color: #9ca3af;
  }
}  


.zForm_customer_page{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.zForm_customer_page_list{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.zForm_customer_page_ellipsis,
.zForm_customer_page_prev,
.zForm_customer_page_next,
.zForm_customer_page_item{
  line-height: 32px;
  min-width: 32px;
  text-align: center;
  background-color: #fafafa;
  border-radius: 4px;
  color: #555;
  margin: 0 2px;
  cursor: pointer;
}
.zForm_customer_page_item.active{
  background-color: var(--color-theme);
  color: #fff;
}
.zForm_customer_page_ellipsis{
  background: transparent;
  cursor: default;
}

/* label */
.zForm_label_component{
      width: 100%;
      height: auto;
      background-color: #fff;
      background-image: none;
      border-radius: 4px;
      border: 1px solid #dcdcdc;
      box-sizing: border-box;
      color: #333;
      display: inline-block;
      padding: 0 12px;
}

.zForm_label_component_input {
  display: inline-block;
  position: relative;
  padding-right: 32px;
  /* border: 1px solid #dcdcdc; */
  line-height: 28px;
  border-radius: 4px;
  /* box-shadow: 0px 0px 4px #dcdcdc */
}

.zForm_label_component_input>i{
  position: absolute;
  right: 8px;
  top: 0;
  font-size: 14px;
  line-height: 28px;
  color: #dcdcdc;
  cursor: pointer;
  display: none;
}

.zForm_label_component_input .clearBtn.active {
    display: block;
}

.zForm_label_component input{
  width: 180px;
  line-height: 28px;
  padding: 0 8px;
  padding-left: 0;
  border-radius: 4px;
  /* border: 1px solid #dcdcdc; */
  border: 0;
}

.zForm_label_component .zForm_label_item:last-of-type{
  margin-right: 8px;
}

.zForm_label_item{
    line-height: 28px;
    display: inline-block;
    padding: 0 8px;
    background: #ddd;
    border-radius: 4px;
    margin-right: 4px;
}

.zForm_label_item>i{
  margin-left: 4px;
}

.zForm_label_item>i::after{
  content:'\e62c';
  font-family: "iconfont";
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_label_component_input{
  display: none;
}

.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_label_component_input>input {
    border-color: #dcdcdc;
    background-color: #eee;
    color: #8c8c8c;
    cursor: no-drop;
}

.zForm_item[data-behavior="read_only"]>.zForm_content .zForm_label_item>i {
    display: none;
}