.contact-dialog {
  width: 525px;
  box-sizing: border-box;
  /* height: 578px; */
  background: #FFFFFF;
  box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 8px 8px;
  position: absolute;
  bottom: 60px;
  z-index: 10;
  display: none;
  padding: 17px 30px 30px 30px;
}
@media screen and (min-width: 1440px) {
  .contact-dialog {
    right: calc((100% - 1258px) / 2);
  }
}
@media screen and (max-width: 1440px) {
  .contact-dialog {
    right: calc((100% - 1048px) / 2);
  }
}
.form-item {
  margin-top: 22px;
}

.item-span {
  font-size: 14px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  display: block;
}

.item-input {
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E0E0E0;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
  padding: 0 12px;
  box-sizing: border-box;
}

.item-textarea {
  overflow: hidden !important;
  height: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  overflow: auto;
  max-width: 463px;
  min-width: 463px;
}
.item-input:focus-visible {
  outline: 1px solid #0071F5;
  border: 0;
}

.form-submit {
  width: 100%;
  height: 40px;
  background: #0071F5;
  border-radius: 4px 4px 4px 4px;
  margin-top: 40px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/*  下拉框 */
.qy-select {
  width: 100%;
  height: 40px;
  color: #666;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  margin-top: 8px;
  position: relative;
  box-sizing: border-box;
}

.qy-select > li,
.qy-select .option > li {
  height: 100%;
  list-style: none;
}

.qy-select .select-head {
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  line-height: 40px;
  padding: 0 12px 0 12px;
  font-size: 14px;
  cursor: pointer;
}

.qy-select .select-head .select-icon {
  float: right;
  width: 10px;
  height: 7px;
  display: flex;
  margin-top: 16px;
  background:url(../assets/arrow-down.png) no-repeat center;
}


.qy-select .option {
  position: absolute;
  top: 48px;
  left: -1px;
  right: 0;
  padding: 5px 0;
  width: 464px;
  color: #666666;
  background: #fff;
  box-shadow: 0px 3px 18px 1px rgba(0,0,0,0.1);
  display: none;
  border-radius: 4px;
}

.qy-select .option .option-item {
  height: 40px;
  line-height: 40px;
  padding-left: 12px;
  font-size: 14px;
}

.qy-select .option-item:hover {
  background: #DDEDFF;
}

.qy-select:hover {
  cursor: default;
}

.qy-select .option .option-item[disabled] {
  cursor: not-allowed;
  color:#cfcfcf
}

