.mr-15 {
  margin-right: 15px;
}

.consult-mask {
  /* 默认隐藏 */
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.consult-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  background-color: white;
  box-sizing: border-box;
  border-radius: 0 8px 8px 0;
}

/* 左边部分 */
.consult-content-left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  background-image: url("/static/img//consultbgimg.png");
  background-size: 100% 100%;
  color: #fff;
}

.consult-icon {
  width: 22px;
}

.arrow-icon {
  width: 6px;
}

.consult-left-items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 5px 5px 5px 5px;
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  font-size: 14px;
  width: 170px;
  height: 50px;
  padding: 0 8px;
  box-sizing: border-box;
  margin-bottom: 18px;
}

.consult-left-items .item-p {
  margin: 0 15px;
}

.consult-left-title {
  width: 170px;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  margin: 25px 0 10px 0;
}

.consult-left-p {
  width: 170px;
  text-align: left;
  font-size: 14px;
  margin-bottom: 15px;
}

/* 右侧 */
.consult-content-right {
  padding: 40px 30px 10px 30px;
  color: #353535;
}

.consult-right-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.col-form-label {
  text-align: right;
  font-size: 14px;
}

.consult-content-right .form-control {
  background-color: #F5F6FA;
  border: none;
}

.textarea-box {
  height: 120px;
  resize: none;
}

/* 按钮 */
.consult-content-right .btn-box {
  display: flex;
}

.consult-content-right .btn {
  width: 100px;
  font-size: 14px;
  color: #fff;
  padding: 10px;
}

.consult-content-right .btn-submit {
  color: #fff;
  background: linear-gradient(270deg, #9D53D6 0%, #1775E7 100%);
}

.consult-content-right.btn-submit:active {
  color: #fff;
  background: linear-gradient(270deg, #9D53D6 0%, #1775E7 100%);
}

.consult-content-right .btn-cancel {
  border: 1px solid #D9ECFF;
  color: #353535;
}

.consult-content-right .btn-cancel:active {
  border: 1px solid #D9ECFF;
  color: #353535;
}

/* 添加弹窗控制样式 */
.consult-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.consult-mask.show {
  display: flex;
}

.consult-content {
  background-color: white;
  width: 80%;
  max-width: 900px;
  border-radius: 8px;
  /* padding: 20px; */
}