.mic-DynamicInput {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.mic-DynamicInput * {
  outline: none;
}
.mic-DynamicInput .left {
  float: left;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
}
.mic-DynamicInput .left .required {
  content: '';
  width: 5px;
  height: 5px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  background-color: #ff666b;
  border-radius: 5px;
}
.mic-DynamicInput .left p {
  text-align: right;
  width: 100%;
}
.mic-DynamicInput .itemWrapper input {
  width: 234px;
}
.mic-DynamicInput .itemWrapper .left {
  width: 0;
  min-width: 0;
  margin: 0;
}
.mic-DynamicInput .itemWrapper .formItem {
  margin: 0 0 20px 0;
}
.mic-DynamicInput .itemWrapper .formItem.error {
  margin: 0 0 20px 0;
}
.mic-DynamicInput .wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.mic-DynamicInput .btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  text-align: center;
  width: 234px;
  height: 34px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 34px;
  border: 1px dashed #e2e2e2;
  cursor: pointer;
  background-color: #f8f8f8;
  color: #03b3b3;
  font-size: 14px;
}
.mic-DynamicInput .btn:hover {
  border: 1px dashed #03b3b3;
}
.mic-DynamicInput .btnDel {
  margin-left: 15px;
  width: 14px;
  height: 14px;
  background-color: #aaaaaa;
  border-radius: 100%;
  display: inline-block;
  font-size: 0;
  position: absolute;
  cursor: pointer;
  left: 240px;
  top: 10px;
  -webkit-appearance: none;
  border: none;
}
.mic-DynamicInput .btnDel::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  top: 6px;
  left: 3px;
  display: block;
  background-color: #fff;
}
.mic-DynamicInput .btnDel:hover {
  background-color: #03b3b3;
}
.mic-DynamicInput .btnAdd {
  position: relative;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  background-color: #03b3b3;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  margin: 9px 10px 0 0;
}
.mic-DynamicInput .btnAdd:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -1px;
  background-color: #fff;
}
.mic-DynamicInput .btnAdd:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 10px;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -5px;
  background-color: #fff;
}
